CSV 데이터

자, 그럼 제가 모은 트윗 데이터를 자료실에 올려두었는데요. 각자 다운로드 받도록 하겠습니다. 각자 컴퓨터에 다운로드 받은 파일을 RStudio의 Working Directory 즉, 작업 폴더에 옮기도록 하겠습니다. 이제, load() 함수를 이용해서, 해당 파일을 불러오겠습니다. 자 여기에서 본인이 사용하고 있는 컴퓨터에서 RStudio 세션의 working directory를 확인하는 방법은?

getwd()
## [1] "D:/Dropbox/2020_Class/spring/IntroTM/Rscripts"
load("covid19_tw_sample.RData")

만약, 다른 방법으로 다운로드 받은 파일을 RStudio에 불러오고 싶다면, 위쪽에 위치한 메뉴 탭 중 파일을 선택하고 거기에서 Open File을 선택한 후, 컴퓨터의 Downloads 폴더에 저장이 되어있을 “covid19_tw_sample.RData”파일을 찾아 열기 버튼을 누르면, 지정한 R Data file을 현재 R 환경에 Load할 것인지를 묻는 팝업 메뉴가 뜹니다. 확인 버튼을 누르면, 트윗 5000개를 모아 저장한 R Data File이 로드가 되죠. 이 데이터는 covid19_tw_sample이라는 이름의 객체에 할당이 되어 있습니다.

데이터 파일이 잘 로드가 되었는지 그리고 객체의 구조를 확인하기 위해서, dim()이라는 함수를 이용해서 covid19_tw_sample객체의 규모 즉, 열과 행의 규모를 확인해보겠습니다.

covid19_tw_sample
##                  user_id           status_id          created_at
## 1              435422713 1243582392390029315 2020-03-27 16:55:21
## 2              171475447 1243630694561128452 2020-03-27 20:07:17
## 3               50371199 1243589730194862081 2020-03-27 17:24:31
## 4              594244296 1243383641310244866 2020-03-27 03:45:35
## 5               15878218 1243608134595338240 2020-03-27 18:37:39
## 6               21093744 1243571257884409857 2020-03-27 16:11:06
## 7               19819089 1243315545962840064 2020-03-26 23:15:00
## 8               61206610 1243317053026680834 2020-03-26 23:20:59
## 9               14884156 1243242635134939136 2020-03-26 18:25:17
## 10   1195051598914998273 1243620718958518281 2020-03-27 19:27:39
## 11             459359865 1243233162412556288 2020-03-26 17:47:38
## 12              72123099 1243317490509381632 2020-03-26 23:22:44
## 13             162260868 1243300530140692485 2020-03-26 22:15:20
## 14             937629272 1243598003803324416 2020-03-27 17:57:23
## 15              37512303 1243329796215656450 2020-03-27 00:11:38
## 16             937623794 1243375650557366272 2020-03-27 03:13:50
## 17            2785592623 1243235698091704320 2020-03-26 17:57:43
## 18            2443550978 1243255619252965376 2020-03-26 19:16:52
## 19              35009978 1243585919136997381 2020-03-27 17:09:22
## 20             773750426 1243380469678239746 2020-03-27 03:32:59
## 21            2522474733 1243235323506757632 2020-03-26 17:56:13
## 22              41172853 1243334806173126656 2020-03-27 00:31:32
## 23               2048741 1243595860274864128 2020-03-27 17:48:52
## 24             329907869 1243695392593776641 2020-03-28 00:24:22
## 25   1223011949513990148 1243716807996903427 2020-03-28 01:49:28
## 26             213142146 1243632006325551105 2020-03-27 20:12:30
## 27            2726875124 1243234147931389952 2020-03-26 17:51:33
## 28    915814768325414917 1243264807589077001 2020-03-26 19:53:23
## 29            1979386550 1243602051134672896 2020-03-27 18:13:28
## 30   1052258216695001094 1243624834397061122 2020-03-27 19:44:00
## 31             375268433 1243809103694225408 2020-03-28 07:56:13
## 32             245649240 1243723375320739846 2020-03-28 02:15:34
## 33             580211436 1243355064594358273 2020-03-27 01:52:02
## 34              41611947 1243646223938129927 2020-03-27 21:09:00
## 35             432699294 1243391158992039938 2020-03-27 04:15:28
## 36              22233169 1243815975700627457 2020-03-28 08:23:32
## 37             428844272 1243817568114298880 2020-03-28 08:29:51
## 38             837703676 1243589199728726021 2020-03-27 17:22:24
## 39   1190858816356634625 1243676970317164546 2020-03-27 23:11:10
## 40             180512314 1243343346312998912 2020-03-27 01:05:28
## 41            1146470090 1243310203862310912 2020-03-26 22:53:46
## 42             612320569 1243713870641815552 2020-03-28 01:37:48
## 43             268416076 1243331733757366272 2020-03-27 00:19:19
## 44   1162222854772944899 1243619424759771136 2020-03-27 19:22:30
## 45             154842200 1243747288427532288 2020-03-28 03:50:35
## 46    876770842339938304 1243355076476858368 2020-03-27 01:52:05
## 47             154909077 1243293630154059776 2020-03-26 21:47:55
## 48            3068106785 1243229036526088193 2020-03-26 17:31:15
## 49             321367569 1243288988191993856 2020-03-26 21:29:28
## 50              15183127 1243696292901146626 2020-03-28 00:27:57
## 51             917901427 1243696532542705665 2020-03-28 00:28:54
## 52            2193224916 1243288206344433665 2020-03-26 21:26:22
## 53   1196459980108550145 1243359856590860289 2020-03-27 02:11:04
## 54             102384575 1243334440937545733 2020-03-27 00:30:05
## 55   1239198522962042881 1243265204869349377 2020-03-26 19:54:58
## 56   1212966062666305536 1243379553986170880 2020-03-27 03:29:21
## 57            3266967512 1243350528572059649 2020-03-27 01:34:01
## 58    950870120565493761 1243347865667133440 2020-03-27 01:23:26
## 59    895814938995957760 1243226475823857664 2020-03-26 17:21:04
## 60   1230646848215486465 1243616960769908736 2020-03-27 19:12:43
## 61             118172761 1243340400779239424 2020-03-27 00:53:46
## 62    766017503072059392 1243291113043222528 2020-03-26 21:37:55
## 63              17089636 1243364653280800768 2020-03-27 02:30:08
## 64              17161553 1243240133911965696 2020-03-26 18:15:20
## 65             136717606 1243577240132018177 2020-03-27 16:34:53
## 66              16481866 1243668846504030211 2020-03-27 22:38:53
## 67            2731914666 1243776103849828352 2020-03-28 05:45:06
## 68              28021382 1243580620950966273 2020-03-27 16:48:19
## 69              22703339 1243267436062916608 2020-03-26 20:03:50
## 70   1105762607938633729 1243825473756573698 2020-03-28 09:01:16
## 71              14133036 1243344006249095174 2020-03-27 01:08:05
## 72             742613408 1243276045618253824 2020-03-26 20:38:02
## 73    743286898173435904 1243341092315152389 2020-03-27 00:56:31
## 74   1228117525763895296 1243612093930143746 2020-03-27 18:53:23
## 75              32279577 1243742940415041536 2020-03-28 03:33:19
## 76              17446176 1243724112935161856 2020-03-28 02:18:30
## 77    959127129341472768 1243692943766106117 2020-03-28 00:14:39
## 78    969188033349259264 1243566324212785159 2020-03-27 15:51:30
## 79             364336025 1243309252799860747 2020-03-26 22:50:00
## 80              18339274 1243239807226204160 2020-03-26 18:14:02
## 81             194009086 1243795008404291585 2020-03-28 07:00:13
## 82    718102690321010688 1243239387741270017 2020-03-26 18:12:22
## 83             461554757 1243283524662239237 2020-03-26 21:07:46
## 84             346640207 1243319779554885632 2020-03-26 23:31:49
## 85              14632629 1243632536116277248 2020-03-27 20:14:36
## 86    918780298820808704 1243630837003956225 2020-03-27 20:07:51
## 87             317710469 1243747932748288000 2020-03-28 03:53:09
## 88             333402741 1243674284826021889 2020-03-27 23:00:30
## 89              25360410 1243691274131169282 2020-03-28 00:08:01
## 90   1157576861234319360 1243808572460265474 2020-03-28 07:54:07
## 91             159514232 1243582484173946880 2020-03-27 16:55:43
## 92    828582307355295746 1243589488682717185 2020-03-27 17:23:33
## 93              17895820 1243628859188113408 2020-03-27 20:00:00
## 94              26047067 1243631404744916992 2020-03-27 20:10:07
## 95    970115109681967104 1243314463731638272 2020-03-26 23:10:42
## 96             542557834 1243225539059556352 2020-03-26 17:17:21
## 97    907559431184846848 1243711536243167238 2020-03-28 01:28:31
## 98            2304116028 1243228815574196227 2020-03-26 17:30:22
## 99    986637310367322112 1243823496540479489 2020-03-28 08:53:25
## 100            558758387 1243731683385446407 2020-03-28 02:48:35
## 101  1153618720889212929 1243813938007072769 2020-03-28 08:15:26
## 102            104048294 1243820525924823040 2020-03-28 08:41:37
## 103  1193207262749372416 1243718567847243776 2020-03-28 01:56:28
## 104            123767078 1243780263395590146 2020-03-28 06:01:37
## 105  1216132023661756416 1243636434461954052 2020-03-27 20:30:06
## 106             34320023 1243632624393805825 2020-03-27 20:14:57
## 107   762894551375765505 1243768045845098496 2020-03-28 05:13:04
## 108            306507855 1243276204863602689 2020-03-26 20:38:40
## 109            225671444 1243289658462588928 2020-03-26 21:32:08
## 110   900995846673649665 1243818202381144064 2020-03-28 08:32:23
## 111            225456833 1243643446142930949 2020-03-27 20:57:57
## 112           2987491773 1243231575040561157 2020-03-26 17:41:20
## 113              5917472 1243766427456339968 2020-03-28 05:06:39
## 114   770068612308692994 1243628927396036610 2020-03-27 20:00:16
## 115             47086949 1243802106852761601 2020-03-28 07:28:25
## 116  1241418685643972608 1243613963994226690 2020-03-27 19:00:48
## 117             30264308 1243689276124073984 2020-03-28 00:00:04
## 118   849289425418891266 1243583720705200128 2020-03-27 17:00:38
## 119           2291781381 1243381114749632512 2020-03-27 03:35:33
## 120            484171825 1243321970701357063 2020-03-26 23:40:32
## 121  1126844144788357120 1243247696451952640 2020-03-26 18:45:23
## 122            364382778 1243586973391937536 2020-03-27 17:13:33
## 123            334405652 1243664326075936768 2020-03-27 22:20:56
## 124             14705603 1243581674039971849 2020-03-27 16:52:30
## 125  1227179005352271872 1243232376592969729 2020-03-26 17:44:31
## 126            356605038 1243323024457322498 2020-03-26 23:44:43
## 127  1146642659521355776 1243567043087159297 2020-03-27 15:54:22
## 128            340491651 1243317445705662465 2020-03-26 23:22:33
## 129           3068709523 1243262643865034752 2020-03-26 19:44:47
## 130             24576083 1243614496335237121 2020-03-27 19:02:55
## 131             74444935 1243613981954187264 2020-03-27 19:00:53
## 132  1037016197777125381 1243829989268533249 2020-03-28 09:19:13
## 133            150754332 1243236667462475777 2020-03-26 18:01:34
## 134   884435361421721605 1243245393321828357 2020-03-26 18:36:14
## 135            528065896 1243228493112057857 2020-03-26 17:29:05
## 136           2283049465 1243801026936725504 2020-03-28 07:24:08
## 137  1039012592801337346 1243311743775805442 2020-03-26 22:59:53
## 138           4886454527 1243231200459624448 2020-03-26 17:39:50
## 139            175472066 1243594078840934401 2020-03-27 17:41:47
## 140             53095822 1243584826613080066 2020-03-27 17:05:02
## 141           1593789164 1243590771703312385 2020-03-27 17:28:39
## 142             52428360 1243643832400519169 2020-03-27 20:59:30
## 143           2868080531 1243248323768864769 2020-03-26 18:47:53
## 144   919002031775510528 1243701488297353216 2020-03-28 00:48:36
## 145             85040636 1243261713245323267 2020-03-26 19:41:05
## 146            254248720 1243258992916381698 2020-03-26 19:30:17
## 147   887330821580914688 1243715620010508289 2020-03-28 01:44:45
## 148           2722067677 1243579143943487488 2020-03-27 16:42:27
## 149            268859974 1243326845136879618 2020-03-26 23:59:54
## 150             29828177 1243654868503597061 2020-03-27 21:43:21
## 151            384028278 1243370358448820225 2020-03-27 02:52:48
## 152             14317810 1243288849893273601 2020-03-26 21:28:55
## 153             48479381 1243244544491167744 2020-03-26 18:32:52
## 154             62809462 1243292504713072642 2020-03-26 21:43:27
## 155             40961354 1243243251068334081 2020-03-26 18:27:44
## 156             46983316 1243273156791537665 2020-03-26 20:26:34
## 157            200146902 1243566227404054529 2020-03-27 15:51:07
## 158             20187873 1243391586362208256 2020-03-27 04:17:09
## 159             15729315 1243666679407808512 2020-03-27 22:30:17
## 160             52282776 1243229907301412865 2020-03-26 17:34:42
## 161            564133801 1243604693466722305 2020-03-27 18:23:58
## 162             38733200 1243627576435892225 2020-03-27 19:54:54
## 163   876146616255860737 1243259237331013633 2020-03-26 19:31:15
## 164             11913522 1243690222719766529 2020-03-28 00:03:50
## 165             45413198 1243765083525779457 2020-03-28 05:01:18
## 166             29828364 1243244258137702402 2020-03-26 18:31:44
## 167  1222153993863880704 1243819252521418752 2020-03-28 08:36:33
## 168           1332482671 1243740261487988736 2020-03-28 03:22:40
## 169           2961880449 1243826678004166656 2020-03-28 09:06:03
## 170  1199709005662367746 1243257699325919237 2020-03-26 19:25:08
## 171            268473477 1243337671667146752 2020-03-27 00:42:55
## 172           4637470482 1243241756537155585 2020-03-26 18:21:47
## 173            139481065 1243281614018404353 2020-03-26 21:00:10
## 174  1191855720855044096 1243747330852941825 2020-03-28 03:50:46
## 175             20470916 1243570430365007873 2020-03-27 16:07:49
## 176           2331266952 1243737293816508416 2020-03-28 03:10:53
## 177             40081852 1243238810747465731 2020-03-26 18:10:05
## 178           2520873516 1243774550644408325 2020-03-28 05:38:55
## 179             24776576 1243349531338723330 2020-03-27 01:30:03
## 180             31268233 1243648743163006976 2020-03-27 21:19:00
## 181  1066013022437617664 1243255519206408199 2020-03-26 19:16:29
## 182  1242485438163501057 1243625543393828864 2020-03-27 19:46:49
## 183             19565264 1243661741248016384 2020-03-27 22:10:39
## 184             88904418 1243742716825141251 2020-03-28 03:32:25
## 185  1154704679328260096 1243239741236981760 2020-03-26 18:13:47
## 186            879023041 1243786030068662273 2020-03-28 06:24:32
## 187           4916875623 1243361477962031104 2020-03-27 02:17:31
## 188             19252684 1243340602122665988 2020-03-27 00:54:34
## 189           2620903078 1243764864587309058 2020-03-28 05:00:26
## 190            124416668 1243236928058789894 2020-03-26 18:02:36
## 191   837930591702102016 1243272148350914563 2020-03-26 20:22:33
## 192             15849872 1243668890946805761 2020-03-27 22:39:04
## 193             58366671 1243796177897865216 2020-03-28 07:04:52
## 194  1010292108878544896 1243676958950653952 2020-03-27 23:11:08
## 195           3102057259 1243262244743286784 2020-03-26 19:43:12
## 196   873190778910253056 1243231798194081792 2020-03-26 17:42:13
## 197  1170465404625522690 1243287588728782848 2020-03-26 21:23:54
## 198  1083601888795344897 1243748957186150401 2020-03-28 03:57:13
## 199  1230329059072073729 1243385575555530761 2020-03-27 03:53:16
## 200            578745372 1243368061496745984 2020-03-27 02:43:41
## 201           3305847006 1243823955758194689 2020-03-28 08:55:14
## 202             50534490 1243313262562705408 2020-03-26 23:05:56
## 203           4917960324 1243295458946097153 2020-03-26 21:55:11
## 204  1158854621848322048 1243694603045179392 2020-03-28 00:21:14
## 205   710609605395673088 1243636532147294214 2020-03-27 20:30:29
## 206              9970972 1243708156523335681 2020-03-28 01:15:06
## 207             21119632 1243257918868381701 2020-03-26 19:26:01
## 208  1241862877448818688 1243259216120311808 2020-03-26 19:31:10
## 209            308963594 1243714839236595712 2020-03-28 01:41:39
## 210            327503844 1243734593666154499 2020-03-28 03:00:09
## 211  1042167518377332741 1243757730315161602 2020-03-28 04:32:05
## 212             18999809 1243566753277452288 2020-03-27 15:53:12
## 213             66031088 1243649654094475270 2020-03-27 21:22:38
## 214             18936284 1243312576391348224 2020-03-26 23:03:12
## 215             22481834 1243682481359945730 2020-03-27 23:33:04
## 216             19174660 1243592852036345861 2020-03-27 17:36:55
## 217           2994794890 1243728299194540033 2020-03-28 02:35:08
## 218            431486478 1243264356067889152 2020-03-26 19:51:35
## 219             24972442 1243274952054394880 2020-03-26 20:33:42
## 220           1131197072 1243659296363016192 2020-03-27 22:00:56
## 221             12837932 1243258406011432961 2020-03-26 19:27:57
## 222            321070496 1243646787220410368 2020-03-27 21:11:14
## 223            163635873 1243779847215886336 2020-03-28 05:59:58
## 224           3318450085 1243226712676036609 2020-03-26 17:22:00
## 225  1238202493907189760 1243572032656281603 2020-03-27 16:14:11
## 226             19724392 1243567897148100610 2020-03-27 15:57:45
## 227  1186213480161898498 1243363291100930049 2020-03-27 02:24:43
## 228             51273193 1243708909594062848 2020-03-28 01:18:05
## 229  1210084108543516672 1243243054141595649 2020-03-26 18:26:57
## 230  1241570905731391489 1243713539778334720 2020-03-28 01:36:29
## 231            151967576 1243617338706067462 2020-03-27 19:14:13
## 232            243032876 1243259984764338176 2020-03-26 19:34:13
## 233   891419221716066304 1243692863554232321 2020-03-28 00:14:20
## 234            341688379 1243345314788061185 2020-03-27 01:13:17
## 235  1070863316686270464 1243751085849718786 2020-03-28 04:05:41
## 236             57059492 1243616655667859456 2020-03-27 19:11:30
## 237           1541369246 1243251390652256256 2020-03-26 19:00:04
## 238           1089597794 1243226053289693184 2020-03-26 17:19:23
## 239            279799224 1243695868781506560 2020-03-28 00:26:16
## 240             22346160 1243266561936363520 2020-03-26 20:00:21
## 241            167017165 1243612197797969927 2020-03-27 18:53:47
## 242   713147129594707968 1243685160035291136 2020-03-27 23:43:43
## 243           4520371468 1243647127127052290 2020-03-27 21:12:35
## 244             37597603 1243351151715606528 2020-03-27 01:36:29
## 245  1142935828332797953 1243229441247129602 2020-03-26 17:32:51
## 246  1103571889686040577 1243239973425500167 2020-03-26 18:14:42
## 247            574595794 1243353255247106048 2020-03-27 01:44:51
## 248             14494281 1243652397198540800 2020-03-27 21:33:32
## 249            331371205 1243244500753027080 2020-03-26 18:32:42
## 250           3091314307 1243591859450064899 2020-03-27 17:32:58
## 251             18726395 1243238669554769921 2020-03-26 18:09:31
## 252            232995380 1243615945739898880 2020-03-27 19:08:41
## 253             83483205 1243271115780358144 2020-03-26 20:18:27
## 254  1147192973039480832 1243774944405786626 2020-03-28 05:40:29
## 255             15033673 1243593643841204230 2020-03-27 17:40:04
## 256           2858116756 1243718575107555328 2020-03-28 01:56:30
## 257   788751900036431873 1243271891244048384 2020-03-26 20:21:32
## 258           1665323814 1243261120187531265 2020-03-26 19:38:44
## 259            133785245 1243626182467354624 2020-03-27 19:49:22
## 260             98546373 1243282132828487682 2020-03-26 21:02:14
## 261            170921358 1243301356791681024 2020-03-26 22:18:37
## 262           4895614001 1243765063904907265 2020-03-28 05:01:13
## 263  1132607455752544256 1243608271094718465 2020-03-27 18:38:11
## 264           1084599271 1243241503117508616 2020-03-26 18:20:47
## 265             60841112 1243665449738539014 2020-03-27 22:25:24
## 266   824780295203336192 1243572064906358787 2020-03-27 16:14:19
## 267             15149988 1243260859805323266 2020-03-26 19:37:42
## 268           2153200177 1243666789751566338 2020-03-27 22:30:43
## 269            348911248 1243301459250180096 2020-03-26 22:19:01
## 270           2290143631 1243660710602772480 2020-03-27 22:06:34
## 271            375678020 1243589858318311428 2020-03-27 17:25:01
## 272           2605043372 1243243325043474434 2020-03-26 18:28:01
## 273           2209767718 1243240220159438848 2020-03-26 18:15:41
## 274           1869834144 1243725175167660032 2020-03-28 02:22:43
## 275  1037387581787394048 1243287982326665218 2020-03-26 21:25:28
## 276   979664132935839744 1243590768289353729 2020-03-27 17:28:38
## 277  1191989431089057793 1243331368953806853 2020-03-27 00:17:52
## 278             31131277 1243616441125011457 2020-03-27 19:10:39
## 279             52072055 1243751312283463681 2020-03-28 04:06:35
## 280           2700221964 1243579440245997568 2020-03-27 16:43:37
## 281            197526241 1243331358321192960 2020-03-27 00:17:50
## 282  1151934548747403264 1243594012910653443 2020-03-27 17:41:32
## 283   944423886854144000 1243728115202797568 2020-03-28 02:34:24
## 284           2216090436 1243647456539271171 2020-03-27 21:13:54
## 285   976345683681619968 1243579350634676228 2020-03-27 16:43:16
## 286             30506859 1243611561974837248 2020-03-27 18:51:16
## 287            172056723 1243348447278895105 2020-03-27 01:25:44
## 288   936352804695707648 1243319405947129856 2020-03-26 23:30:20
## 289             15678167 1243576991216959491 2020-03-27 16:33:53
## 290   771293699301109760 1243808821790806022 2020-03-28 07:55:06
## 291   876540130538008576 1243660572320768000 2020-03-27 22:06:01
## 292  1048455864066215936 1243643373942116355 2020-03-27 20:57:40
## 293  1122851613989834753 1243335035039744001 2020-03-27 00:32:27
## 294  1134189787953467393 1243631369583984641 2020-03-27 20:09:58
## 295            590064664 1243727317404471297 2020-03-28 02:31:14
## 296             18943058 1243640658579132416 2020-03-27 20:46:53
## 297             19752354 1243350854117117953 2020-03-27 01:35:18
## 298             48441949 1243644667218059264 2020-03-27 21:02:49
## 299           1867026396 1243328440486551556 2020-03-27 00:06:14
## 300   946974201981931522 1243755036938813440 2020-03-28 04:21:23
## 301           1921727274 1243602116553379842 2020-03-27 18:13:44
## 302  1226899095417217025 1243747789848403969 2020-03-28 03:52:35
## 303  1177288337360609280 1243672218283974663 2020-03-27 22:52:17
## 304             17625521 1243702437086666755 2020-03-28 00:52:22
## 305           1284092696 1243826970787549184 2020-03-28 09:07:13
## 306   737358310303662081 1243278151121162240 2020-03-26 20:46:24
## 307             30882481 1243740525901070349 2020-03-28 03:23:43
## 308            482269226 1243613894704279552 2020-03-27 19:00:32
## 309   897944126536200192 1243636933806428163 2020-03-27 20:32:05
## 310           2565943630 1243269286203924484 2020-03-26 20:11:11
## 311             18815472 1243686062930530304 2020-03-27 23:47:18
## 312   962153417400602624 1243690784156610560 2020-03-28 00:06:04
## 313            312102273 1243647564252983296 2020-03-27 21:14:19
## 314            619705965 1243616519310815232 2020-03-27 19:10:58
## 315             22793955 1243345949893611522 2020-03-27 01:15:49
## 316  1121761443970342912 1243701503665135621 2020-03-28 00:48:39
## 317           1280644147 1243263497959608325 2020-03-26 19:48:11
## 318           2843104535 1243303477943496704 2020-03-26 22:27:03
## 319           3378440735 1243273975603646465 2020-03-26 20:29:49
## 320   903617884206776320 1243731264965718017 2020-03-28 02:46:55
## 321           2698417466 1243602734387007489 2020-03-27 18:16:11
## 322            202133896 1243236919384969217 2020-03-26 18:02:34
## 323  1098907233151258624 1243647506354966531 2020-03-27 21:14:06
## 324   915163384894672897 1243583739210465288 2020-03-27 17:00:42
## 325  1219934191628046336 1243628590278860800 2020-03-27 19:58:56
## 326            352731312 1243631885642862592 2020-03-27 20:12:01
## 327             59811707 1243269837700333569 2020-03-26 20:13:22
## 328   914760457365442560 1243339225111711745 2020-03-27 00:49:06
## 329           2848281329 1243258354354589697 2020-03-26 19:27:44
## 330  1235930179630821378 1243263400966270986 2020-03-26 19:47:48
## 331            278867539 1243392124185243648 2020-03-27 04:19:18
## 332   854857120457641984 1243314917589037061 2020-03-26 23:12:30
## 333   738894827413086208 1243592021673226241 2020-03-27 17:33:37
## 334            400181671 1243312954898100229 2020-03-26 23:04:42
## 335             26086971 1243632599341232128 2020-03-27 20:14:51
## 336   820469374620307457 1243582017398140928 2020-03-27 16:53:52
## 337   702367729588768768 1243331716464275456 2020-03-27 00:19:15
## 338             98008000 1243637562893389833 2020-03-27 20:34:35
## 339             68545047 1243651785987932165 2020-03-27 21:31:06
## 340  1227091571516067841 1243648322541404160 2020-03-27 21:17:20
## 341            338489286 1243779543015571456 2020-03-28 05:58:46
## 342            196707379 1243652247705149441 2020-03-27 21:32:56
## 343            637220899 1243304288073515014 2020-03-26 22:30:16
## 344             43086506 1243585703738511361 2020-03-27 17:08:31
## 345  1202427390212730882 1243809483354062850 2020-03-28 07:57:44
## 346   845150211248861185 1243773185352400896 2020-03-28 05:33:30
## 347             30233748 1243636878282305536 2020-03-27 20:31:52
## 348  1177951741284892672 1243740365309521923 2020-03-28 03:23:05
## 349  1239085454592442371 1243809305146646529 2020-03-28 07:57:01
## 350             33540786 1243638907704610816 2020-03-27 20:39:55
## 351  1192670568962830336 1243701197963476993 2020-03-28 00:47:27
## 352            270827963 1243602615386148865 2020-03-27 18:15:43
## 353             42756539 1243581476719022082 2020-03-27 16:51:43
## 354             45578720 1243264206650011648 2020-03-26 19:51:00
## 355             70529694 1243583733942366209 2020-03-27 17:00:41
## 356             51452048 1243578921532211200 2020-03-27 16:41:34
## 357             64989443 1243683749440569344 2020-03-27 23:38:07
## 358             15094527 1243797559669215234 2020-03-28 07:10:21
## 359           2148553704 1243599675946647558 2020-03-27 18:04:02
## 360           2555293819 1243255485266104330 2020-03-26 19:16:20
## 361            332545073 1243574318854033413 2020-03-27 16:23:16
## 362   893098663530053636 1243712247031050251 2020-03-28 01:31:21
## 363            481665779 1243326555633434624 2020-03-26 23:58:45
## 364  1156802882332704768 1243613738600747009 2020-03-27 18:59:55
## 365            103074428 1243649707353743368 2020-03-27 21:22:50
## 366            405775404 1243365072929353728 2020-03-27 02:31:48
## 367  1147244238612180993 1243646554822660104 2020-03-27 21:10:19
## 368           3310138153 1243568991148240902 2020-03-27 16:02:06
## 369             25925601 1243700244782526464 2020-03-28 00:43:39
## 370  1176819019682373632 1243607654745980928 2020-03-27 18:35:44
## 371             74123918 1243385173946667011 2020-03-27 03:51:41
## 372   968472594524639232 1243268337867657217 2020-03-26 20:07:25
## 373             54683181 1243717873396260866 2020-03-28 01:53:42
## 374            130065700 1243308382871785474 2020-03-26 22:46:32
## 375           1704625693 1243615476099530753 2020-03-27 19:06:49
## 376            713935231 1243824716470763522 2020-03-28 08:58:16
## 377  1152253907512332288 1243574607208161282 2020-03-27 16:24:25
## 378  1215257565099065344 1243597812056690689 2020-03-27 17:56:37
## 379             48839997 1243566473202843649 2020-03-27 15:52:06
## 380            237152177 1243579579056500739 2020-03-27 16:44:10
## 381             16288328 1243743248205504512 2020-03-28 03:34:32
## 382           1268221555 1243582806816460801 2020-03-27 16:57:00
## 383   853636526667964416 1243830068801044480 2020-03-28 09:19:32
## 384   936844184639520768 1243751422056747008 2020-03-28 04:07:01
## 385           1005675566 1243335023547293698 2020-03-27 00:32:24
## 386             72130786 1243830775507795968 2020-03-28 09:22:20
## 387            416057727 1243719517928173570 2020-03-28 02:00:14
## 388   889896058578456576 1243329232366960643 2020-03-27 00:09:23
## 389  1115711945309429760 1243286338423738368 2020-03-26 21:18:56
## 390  1136063449379811328 1243646628587884551 2020-03-27 21:10:36
## 391             74369402 1243265300184698880 2020-03-26 19:55:20
## 392   969816332848963584 1243346818160680960 2020-03-27 01:19:16
## 393            757712983 1243591167301861379 2020-03-27 17:30:13
## 394  1161651929644183552 1243569848963289090 2020-03-27 16:05:31
## 395  1239689957888987138 1243289864285474816 2020-03-26 21:32:57
## 396            387498274 1243575767314956288 2020-03-27 16:29:02
## 397            250289285 1243236876389158913 2020-03-26 18:02:24
## 398             31417682 1243336052754067459 2020-03-27 00:36:29
## 399              7009472 1243373017884839936 2020-03-27 03:03:22
## 400             16683014 1243653826189672455 2020-03-27 21:39:12
## 401              9627102 1243232513901899778 2020-03-26 17:45:04
## 402  1197981808811552768 1243611412745859072 2020-03-27 18:50:40
## 403            634380263 1243580413660053504 2020-03-27 16:47:29
## 404            475693475 1243621361593077762 2020-03-27 19:30:12
## 405           3957997120 1243232979050102784 2020-03-26 17:46:55
## 406             96857244 1243635179953979392 2020-03-27 20:25:07
## 407             40316307 1243253269683523585 2020-03-26 19:07:32
## 408            254051666 1243256026792472578 2020-03-26 19:18:30
## 409            290145392 1243281759065669632 2020-03-26 21:00:45
## 410            117610607 1243326770884956162 2020-03-26 23:59:36
## 411   727465726810968064 1243312601267830789 2020-03-26 23:03:18
## 412            207920978 1243606900178067457 2020-03-27 18:32:44
## 413             37888932 1243799574755639296 2020-03-28 07:18:21
## 414  1072907567440060418 1243243957670338563 2020-03-26 18:30:32
## 415  1059695815566942208 1243356335841800193 2020-03-27 01:57:05
## 416            398752432 1243638223370440713 2020-03-27 20:37:12
## 417            889926660 1243668037162729478 2020-03-27 22:35:40
## 418           2232476503 1243663300304326657 2020-03-27 22:16:51
## 419             70961675 1243227039097856001 2020-03-26 17:23:18
## 420            469569460 1243245539459825664 2020-03-26 18:36:49
## 421           1486521546 1243664198279647232 2020-03-27 22:20:25
## 422            318355178 1243279211994976261 2020-03-26 20:50:37
## 423             87822212 1243740488265609216 2020-03-28 03:23:34
## 424  1111014031123341313 1243628881321455616 2020-03-27 20:00:05
## 425            252751061 1243789932998660097 2020-03-28 06:40:03
## 426  1104563671076868103 1243700568599793664 2020-03-28 00:44:57
## 427   918541886377390080 1243272845347688448 2020-03-26 20:25:19
## 428           2838250020 1243632665418510342 2020-03-27 20:15:07
## 429             14604658 1243292920251375619 2020-03-26 21:45:06
## 430             82114365 1243795575956484097 2020-03-28 07:02:28
## 431            502018096 1243679329730494464 2020-03-27 23:20:33
## 432             97191869 1243275299086831629 2020-03-26 20:35:04
## 433   876770484691419137 1243702104868282374 2020-03-28 00:51:03
## 434            117327100 1243248187823075332 2020-03-26 18:47:21
## 435             18149465 1243255713536696320 2020-03-26 19:17:15
## 436  1106834028794130433 1243231125255806976 2020-03-26 17:39:33
## 437  1211648405207781378 1243229324632707073 2020-03-26 17:32:23
## 438             61546809 1243718075226226696 2020-03-28 01:54:30
## 439  1214232500664295424 1243288382857285632 2020-03-26 21:27:04
## 440             40298894 1243669390999949312 2020-03-27 22:41:03
## 441            909334512 1243737859347165190 2020-03-28 03:13:07
## 442            538369738 1243586596231929857 2020-03-27 17:12:03
## 443           1354354465 1243684584732180480 2020-03-27 23:41:26
## 444            247574410 1243607516141031426 2020-03-27 18:35:11
## 445             90163861 1243389085852381186 2020-03-27 04:07:13
## 446            148199050 1243243769106812928 2020-03-26 18:29:47
## 447             15828062 1243650239027916802 2020-03-27 21:24:57
## 448   980847169153335296 1243581644088299520 2020-03-27 16:52:23
## 449             17810687 1243590690946183168 2020-03-27 17:28:20
## 450             90711842 1243310842168426497 2020-03-26 22:56:19
## 451             54608984 1243253736006455301 2020-03-26 19:09:23
## 452           1576931762 1243369434284081157 2020-03-27 02:49:08
## 453            176355348 1243232849278337025 2020-03-26 17:46:24
## 454            394169629 1243263031271923724 2020-03-26 19:46:20
## 455            194786961 1243297272798027778 2020-03-26 22:02:23
## 456  1219986871511650304 1243662592490516482 2020-03-27 22:14:02
## 457  1241032823806582786 1243589400698802179 2020-03-27 17:23:12
## 458   909794221267341312 1243612615194132480 2020-03-27 18:55:27
## 459            326997574 1243360608159797248 2020-03-27 02:14:04
## 460  1234312660247830528 1243260787495485440 2020-03-26 19:37:25
## 461             21924543 1243804285265117186 2020-03-28 07:37:05
## 462            954329887 1243392318025035780 2020-03-27 04:20:04
## 463  1144597668326531072 1243625052869926920 2020-03-27 19:44:52
## 464             46483916 1243667106031448067 2020-03-27 22:31:58
## 465           1118767826 1243289726511013888 2020-03-26 21:32:24
## 466             65968759 1243637137691545601 2020-03-27 20:32:53
## 467             50279781 1243368896469454849 2020-03-27 02:47:00
## 468   817415480856248322 1243306224784945152 2020-03-26 22:37:58
## 469  1240718895067127809 1243719468381089794 2020-03-28 02:00:03
## 470            128447885 1243734921492852736 2020-03-28 03:01:27
## 471            414027725 1243644315429208070 2020-03-27 21:01:25
## 472   867937150217715713 1243724758249807872 2020-03-28 02:21:04
## 473           2330484144 1243362375278854146 2020-03-27 02:21:05
## 474             23314228 1243588718331658241 2020-03-27 17:20:29
## 475            268637592 1243261417991606273 2020-03-26 19:39:55
## 476             14912552 1243691785697845249 2020-03-28 00:10:03
## 477            894807590 1243712696341667840 2020-03-28 01:33:08
## 478  1194935266097672193 1243617876264783872 2020-03-27 19:16:21
## 479           1319200555 1243252767105462272 2020-03-26 19:05:32
## 480  1212637220743462912 1243645928671547392 2020-03-27 21:07:49
## 481            215201388 1243565253113327618 2020-03-27 15:47:15
## 482  1215544938164817920 1243643879779454979 2020-03-27 20:59:41
## 483             86401623 1243745141053104128 2020-03-28 03:42:03
## 484            202780974 1243679808640495621 2020-03-27 23:22:27
## 485           1617287714 1243257089293770753 2020-03-26 19:22:43
## 486   908576901697900544 1243740592451891200 2020-03-28 03:23:59
## 487            292719488 1243628590312255488 2020-03-27 19:58:56
## 488             93187905 1243328361541189632 2020-03-27 00:05:55
## 489             14459159 1243338964490244097 2020-03-27 00:48:03
## 490   871574222966898688 1243283841122353153 2020-03-26 21:09:01
## 491           1629880675 1243809254340952064 2020-03-28 07:56:49
## 492  1243572938374332417 1243589634652848135 2020-03-27 17:24:08
## 493           2951263410 1243275984842838016 2020-03-26 20:37:48
## 494            269581619 1243660701270298624 2020-03-27 22:06:31
## 495           3201152602 1243294127762145284 2020-03-26 21:49:54
## 496             27123426 1243707233399123969 2020-03-28 01:11:26
## 497             14568315 1243802907721355265 2020-03-28 07:31:36
## 498           3295465776 1243238415660974080 2020-03-26 18:08:31
## 499             22221730 1243604703998590976 2020-03-27 18:24:01
## 500             17499004 1243226153306841089 2020-03-26 17:19:47
## 501  1221302912946790400 1243253449195696134 2020-03-26 19:08:15
## 502            247631603 1243235914513559552 2020-03-26 17:58:34
## 503             89754038 1243374478782091270 2020-03-27 03:09:11
## 504             14712548 1243626317217742853 2020-03-27 19:49:54
## 505             19581053 1243691117876576257 2020-03-28 00:07:23
## 506            588645499 1243611673849671700 2020-03-27 18:51:42
## 507  1152238701835116545 1243743051845177346 2020-03-28 03:33:45
## 508           2581075469 1243284858417315841 2020-03-26 21:13:04
## 509   946924990020009985 1243392305198845954 2020-03-27 04:20:01
## 510   944047168188432386 1243353735910191105 2020-03-27 01:46:45
## 511           2195850319 1243817271228862464 2020-03-28 08:28:41
## 512  1038746010984570880 1243653162445213698 2020-03-27 21:36:34
## 513           3043765295 1243598871235833859 2020-03-27 18:00:50
## 514  1221243765526093824 1243244287233593344 2020-03-26 18:31:51
## 515            351130607 1243287292694888448 2020-03-26 21:22:44
## 516  1032989915305324544 1243357027700592641 2020-03-27 01:59:50
## 517             21234787 1243569003932667904 2020-03-27 16:02:09
## 518  1096081984261144578 1243657728591085585 2020-03-27 21:54:43
## 519            746205583 1243773244261400576 2020-03-28 05:33:44
## 520   993101890291298304 1243276385860247553 2020-03-26 20:39:24
## 521              8241232 1243697282874253312 2020-03-28 00:31:53
## 522  1185794056812716034 1243312776858071046 2020-03-26 23:04:00
## 523            779913055 1243746008120557568 2020-03-28 03:45:30
## 524            841114604 1243588764301242368 2020-03-27 17:20:40
## 525           2256333007 1243628438923214856 2020-03-27 19:58:19
## 526  1242414893321650178 1243596922293813248 2020-03-27 17:53:05
## 527           3157050373 1243809738497781762 2020-03-28 07:58:45
## 528   943968730723311616 1243277585758519296 2020-03-26 20:44:10
## 529              7210512 1243725545818349569 2020-03-28 02:24:12
## 530             72628479 1243816453880467456 2020-03-28 08:25:26
## 531  1049288911321800704 1243304069512429580 2020-03-26 22:29:24
## 532  1053058626699624448 1243597094444773385 2020-03-27 17:53:46
## 533   988794545113522176 1243313772585877504 2020-03-26 23:07:57
## 534            284532654 1243597448825749506 2020-03-27 17:55:11
## 535             55963152 1243663030799331328 2020-03-27 22:15:47
## 536             18216752 1243259472094433280 2020-03-26 19:32:11
## 537            288992814 1243766263651995649 2020-03-28 05:05:59
## 538   917551134390317057 1243750712452026368 2020-03-28 04:04:12
## 539  1217622758735085569 1243586286155268096 2020-03-27 17:10:49
## 540  1113747196099399680 1243725618400747520 2020-03-28 02:24:29
## 541             61180382 1243380458643054592 2020-03-27 03:32:56
## 542  1181600449633439744 1243382587214585856 2020-03-27 03:41:24
## 543   920249159604719617 1243272928541773824 2020-03-26 20:25:39
## 544             30297423 1243232103132811278 2020-03-26 17:43:26
## 545   791569205380444161 1243264654685736961 2020-03-26 19:52:47
## 546           4180602754 1243234606855393281 2020-03-26 17:53:23
## 547           2749977957 1243579903410417667 2020-03-27 16:45:28
## 548           2976824781 1243770921388826624 2020-03-28 05:24:30
## 549           3023007756 1243607374578868224 2020-03-27 18:34:37
## 550             21337411 1243587596451811331 2020-03-27 17:16:02
## 551             24428174 1243233137649504257 2020-03-26 17:47:32
## 552             17761521 1243668360094724102 2020-03-27 22:36:57
## 553            119132427 1243591587382337538 2020-03-27 17:31:53
## 554  1243674858359336961 1243705507338223617 2020-03-28 01:04:34
## 555           2865763619 1243240369845940233 2020-03-26 18:16:17
## 556            535643852 1243348410092175361 2020-03-27 01:25:35
## 557            176355348 1243761944051372032 2020-03-28 04:48:50
## 558   932582436390633472 1243374385953529857 2020-03-27 03:08:49
## 559            145351229 1243675905953796097 2020-03-27 23:06:57
## 560             25033748 1243639741242695680 2020-03-27 20:43:14
## 561   979389638422028288 1243648982531870725 2020-03-27 21:19:57
## 562             79242170 1243273888773144578 2020-03-26 20:29:28
## 563            388368711 1243605775135752194 2020-03-27 18:28:16
## 564           4734965658 1243627853087899656 2020-03-27 19:56:00
## 565   744696897902776320 1243639943366205441 2020-03-27 20:44:02
## 566           2819224958 1243294143838687232 2020-03-26 21:49:57
## 567           4313247499 1243350866003783681 2020-03-27 01:35:21
## 568  1078347082220486656 1243226485965479936 2020-03-26 17:21:06
## 569             61180382 1243797844323995648 2020-03-28 07:11:29
## 570  1090442109952446464 1243790150980653056 2020-03-28 06:40:55
## 571             22240612 1243306401679753225 2020-03-26 22:38:40
## 572             38678036 1243332407849254914 2020-03-27 00:22:00
## 573  1243768315345920000 1243774850209996808 2020-03-28 05:40:07
## 574            990056731 1243652528681570304 2020-03-27 21:34:03
## 575            432064754 1243342769847816192 2020-03-27 01:03:11
## 576  1154171516755546112 1243601216334172161 2020-03-27 18:10:09
## 577             80900937 1243564689851850753 2020-03-27 15:45:01
## 578           4881899464 1243745367541157891 2020-03-28 03:42:57
## 579            237026147 1243670798528737280 2020-03-27 22:46:39
## 580  1129477055202988032 1243600882597392384 2020-03-27 18:08:50
## 581   763797399227686912 1243600775139356672 2020-03-27 18:08:24
## 582            176404629 1243698057147043841 2020-03-28 00:34:58
## 583             15484279 1243280913363906561 2020-03-26 20:57:23
## 584  1143217251803422721 1243648099492474881 2020-03-27 21:16:27
## 585            281920387 1243738607052939266 2020-03-28 03:16:06
## 586           1599384764 1243301920007045121 2020-03-26 22:20:51
## 587           1952690670 1243571856432660490 2020-03-27 16:13:29
## 588            245631096 1243276943241314305 2020-03-26 20:41:36
## 589            791617578 1243254552612102144 2020-03-26 19:12:38
## 590            278123550 1243309848193892357 2020-03-26 22:52:22
## 591            108707115 1243624934754136067 2020-03-27 19:44:24
## 592            371617164 1243823639411093506 2020-03-28 08:53:59
## 593           3075778335 1243608218661765120 2020-03-27 18:37:59
## 594             58064184 1243333718313443328 2020-03-27 00:27:13
## 595            121490412 1243649231572701184 2020-03-27 21:20:57
## 596           3084365322 1243272801982779396 2020-03-26 20:25:09
## 597           4928513381 1243338150673596421 2020-03-27 00:44:49
## 598            104182491 1243275225510412288 2020-03-26 20:34:47
## 599   984538659234828289 1243315383236526084 2020-03-26 23:14:21
## 600            571642322 1243819930648264705 2020-03-28 08:39:15
## 601            255655450 1243706383071170560 2020-03-28 01:08:03
## 602  1196502812114456577 1243683011348107271 2020-03-27 23:35:11
## 603  1171370567091597314 1243592308479725571 2020-03-27 17:34:45
## 604             29746546 1243606276275425282 2020-03-27 18:30:16
## 605  1166693963207757824 1243652012929056768 2020-03-27 21:32:00
## 606            340790187 1243825978960424966 2020-03-28 09:03:17
## 607            259890242 1243370162994081792 2020-03-27 02:52:02
## 608           2153294767 1243701823510380544 2020-03-28 00:49:56
## 609            535635363 1243631946099503105 2020-03-27 20:12:16
## 610            228436342 1243326140162412544 2020-03-26 23:57:06
## 611           2574179264 1243286865576419328 2020-03-26 21:21:02
## 612  1234002448903221249 1243577957312069634 2020-03-27 16:37:44
## 613            372430736 1243568973310025730 2020-03-27 16:02:02
## 614            497305362 1243711581210341377 2020-03-28 01:28:42
## 615            475260383 1243257870621315073 2020-03-26 19:25:49
## 616             72577990 1243697788308852738 2020-03-28 00:33:54
## 617            406442515 1243572430293123072 2020-03-27 16:15:46
## 618   899761782163746816 1243587262748790819 2020-03-27 17:14:42
## 619              8759292 1243372579613577216 2020-03-27 03:01:38
## 620           2273515344 1243225385292226560 2020-03-26 17:16:44
## 621  1242134066977050624 1243569827857543171 2020-03-27 16:05:26
## 622            149462249 1243824253213999105 2020-03-28 08:56:25
## 623              9601512 1243682543754502144 2020-03-27 23:33:19
## 624           1547457408 1243252697920417794 2020-03-26 19:05:16
## 625           3951404777 1243335348773666816 2020-03-27 00:33:41
## 626           3003376699 1243630342864543749 2020-03-27 20:05:53
## 627            141827890 1243704090430849024 2020-03-28 00:58:56
## 628            370014526 1243228800424476674 2020-03-26 17:30:18
## 629   970708045742387200 1243570987322544128 2020-03-27 16:10:02
## 630           3153282534 1243362823586992129 2020-03-27 02:22:52
## 631             17697584 1243579807763316736 2020-03-27 16:45:05
## 632           2264754072 1243247365869445120 2020-03-26 18:44:05
## 633   838484669981163520 1243338145875152897 2020-03-27 00:44:48
## 634            878700938 1243662261354409985 2020-03-27 22:12:43
## 635  1188482503688019968 1243322558373486593 2020-03-26 23:42:52
## 636            197420040 1243620647504359427 2020-03-27 19:27:22
## 637           2513627167 1243646007088492544 2020-03-27 21:08:08
## 638             17461631 1243686987908780032 2020-03-27 23:50:59
## 639  1017887879064932353 1243375439852298240 2020-03-27 03:13:00
## 640  1243054144530681861 1243723651741929472 2020-03-28 02:16:40
## 641   895331622572183552 1243800053136965632 2020-03-28 07:20:16
## 642   946808606585950208 1243368365281775617 2020-03-27 02:44:53
## 643   860536322968219648 1243616137604206597 2020-03-27 19:09:27
## 644            889349226 1243269038987304960 2020-03-26 20:10:12
## 645  1127379536000294913 1243299239461093382 2020-03-26 22:10:12
## 646  1078907489138094080 1243627491010342912 2020-03-27 19:54:33
## 647             20439040 1243361706618703874 2020-03-27 02:18:26
## 648             21951777 1243271346538401792 2020-03-26 20:19:22
## 649  1083796041097506816 1243300556669464578 2020-03-26 22:15:26
## 650           2382793933 1243628650009952268 2020-03-27 19:59:10
## 651             18999261 1243716939677138944 2020-03-28 01:50:00
## 652            138933898 1243640540828229633 2020-03-27 20:46:25
## 653   946873717874978817 1243661566957977602 2020-03-27 22:09:58
## 654            139092161 1243758875557261314 2020-03-28 04:36:38
## 655             16882835 1243698865812975616 2020-03-28 00:38:11
## 656   862190872829362177 1243610787643412481 2020-03-27 18:48:11
## 657  1108357496471576576 1243673788752908289 2020-03-27 22:58:32
## 658            112303384 1243280117834498048 2020-03-26 20:54:13
## 659            176355348 1243757495958421505 2020-03-28 04:31:09
## 660   831982169253937152 1243707293679656960 2020-03-28 01:11:40
## 661           4842325334 1243274524654809088 2020-03-26 20:32:00
## 662           2690112467 1243616714669150209 2020-03-27 19:11:44
## 663            311276757 1243382882392928256 2020-03-27 03:42:34
## 664             15466126 1243295470400798720 2020-03-26 21:55:14
## 665            142338949 1243613233703006214 2020-03-27 18:57:54
## 666             30815695 1243673308077289473 2020-03-27 22:56:37
## 667           3298353607 1243255846282264576 2020-03-26 19:17:46
## 668           1340486389 1243286876217319427 2020-03-26 21:21:05
## 669  1095010434913050632 1243636410067742720 2020-03-27 20:30:00
## 670   803215340381630464 1243569829455544321 2020-03-27 16:05:26
## 671  1233250695169503234 1243338092934647809 2020-03-27 00:44:36
## 672            394859323 1243271817705533440 2020-03-26 20:21:14
## 673             26333596 1243286969582596097 2020-03-26 21:21:27
## 674             14834066 1243292413877256193 2020-03-26 21:43:05
## 675            181650392 1243345121342611463 2020-03-27 01:12:31
## 676  1237031278492307460 1243677677921472514 2020-03-27 23:13:59
## 677   794654107231539203 1243785017127579648 2020-03-28 06:20:31
## 678           2888010194 1243653359523037186 2020-03-27 21:37:21
## 679   734973553477570560 1243234937479847944 2020-03-26 17:54:41
## 680             18480977 1243235168040689665 2020-03-26 17:55:36
## 681   751885664283602944 1243796482177687554 2020-03-28 07:06:04
## 682  1214232500664295424 1243289256866353152 2020-03-26 21:30:32
## 683             65594489 1243824568281845767 2020-03-28 08:57:40
## 684            230477177 1243579619325902852 2020-03-27 16:44:20
## 685             16672272 1243799052866801665 2020-03-28 07:16:17
## 686           1117483992 1243370036259160065 2020-03-27 02:51:31
## 687             42085971 1243575557540810752 2020-03-27 16:28:12
## 688             29147175 1243249174411243521 2020-03-26 18:51:16
## 689   701596920628772866 1243647598302461957 2020-03-27 21:14:27
## 690            186890864 1243269839915024387 2020-03-26 20:13:23
## 691  1231668158722822144 1243282639156588544 2020-03-26 21:04:14
## 692              7663702 1243368513202339841 2020-03-27 02:45:28
## 693   890297769096876034 1243609682566135814 2020-03-27 18:43:48
## 694            858947179 1243661163419693058 2020-03-27 22:08:22
## 695            294641087 1243656645504270338 2020-03-27 21:50:24
## 696            232215936 1243274909972926475 2020-03-26 20:33:32
## 697           2382515425 1243632506328346624 2020-03-27 20:14:29
## 698           1287327240 1243345787029008385 2020-03-27 01:15:10
## 699   902766566244220929 1243346548039266305 2020-03-27 01:18:11
## 700             82279998 1243307649136902144 2020-03-26 22:43:37
## 701             21766435 1243598895709642755 2020-03-27 18:00:56
## 702  1233447068879990785 1243239062108016642 2020-03-26 18:11:05
## 703   826129656856207360 1243679444708941824 2020-03-27 23:21:00
## 704   818142705075167232 1243274157824999424 2020-03-26 20:30:32
## 705            148122322 1243743958754193408 2020-03-28 03:37:22
## 706  1174049491340496896 1243647807682162690 2020-03-27 21:15:17
## 707  1174848727741292544 1243227493479395328 2020-03-26 17:25:07
## 708            409505983 1243651450493751296 2020-03-27 21:29:46
## 709   966507449955094528 1243350355322138624 2020-03-27 01:33:19
## 710             58198180 1243667982779375618 2020-03-27 22:35:27
## 711  1017262982416527360 1243629326362427393 2020-03-27 20:01:51
## 712           1520851111 1243570618265522177 2020-03-27 16:08:34
## 713           3251297965 1243614274775285764 2020-03-27 19:02:02
## 714           4150093918 1243325639610023942 2020-03-26 23:55:07
## 715              6721522 1243676856462839808 2020-03-27 23:10:43
## 716             15756056 1243573259335094275 2020-03-27 16:19:04
## 717            808172400 1243338092011876352 2020-03-27 00:44:35
## 718   826185096189210625 1243673662785327104 2020-03-27 22:58:02
## 719           2954252804 1243311153671032834 2020-03-26 22:57:33
## 720            115123623 1243696030891347969 2020-03-28 00:26:55
## 721            109188899 1243337859341455363 2020-03-27 00:43:40
## 722             16632172 1243736885081427974 2020-03-28 03:09:15
## 723             63362429 1243724145034031106 2020-03-28 02:18:38
## 724            152366061 1243795207277117443 2020-03-28 07:01:00
## 725           1899140628 1243738548882141184 2020-03-28 03:15:52
## 726             20467031 1243664351673884672 2020-03-27 22:21:02
## 727           3018120709 1243245235683147779 2020-03-26 18:35:37
## 728            387164450 1243282261912551428 2020-03-26 21:02:44
## 729             16889506 1243681594071752704 2020-03-27 23:29:33
## 730            143840324 1243660400287256584 2020-03-27 22:05:20
## 731            852189290 1243761947121778688 2020-03-28 04:48:50
## 732  1242507725520732161 1243825426016894976 2020-03-28 09:01:05
## 733            479872233 1243709574227603458 2020-03-28 01:20:44
## 734   751054430770958336 1243231154636980224 2020-03-26 17:39:40
## 735             16796529 1243229730582802433 2020-03-26 17:34:00
## 736            482704360 1243682889910255617 2020-03-27 23:34:42
## 737  1088501349325639682 1243708055637897216 2020-03-28 01:14:42
## 738  1230977514073403407 1243227284452061184 2020-03-26 17:24:17
## 739             20014055 1243697653617053697 2020-03-28 00:33:22
## 740           2613870120 1243607497769979904 2020-03-27 18:35:07
## 741              9183902 1243736696232931329 2020-03-28 03:08:30
## 742             23990068 1243230909693902853 2020-03-26 17:38:41
## 743           1562600388 1243794505339490305 2020-03-28 06:58:13
## 744   717911401499471873 1243807200604073984 2020-03-28 07:48:40
## 745             17033050 1243338404693065728 2020-03-27 00:45:50
## 746             14790524 1243624002138112005 2020-03-27 19:40:42
## 747            138168578 1243260388789178372 2020-03-26 19:35:50
## 748  1101879644310200327 1243701064559472641 2020-03-28 00:46:55
## 749            131503213 1243590389405233153 2020-03-27 17:27:08
## 750             21234664 1243348054750760960 2020-03-27 01:24:11
## 751   757042689380458496 1243308674015055873 2020-03-26 22:47:42
## 752   781756436284145664 1243604184399831043 2020-03-27 18:21:57
## 753            337730660 1243393307671068679 2020-03-27 04:24:00
## 754             15867461 1243290805382586368 2020-03-26 21:36:41
## 755            146227634 1243637524075085825 2020-03-27 20:34:26
## 756           3003234454 1243791682128117761 2020-03-28 06:47:00
## 757  1164681827703017475 1243286649645289474 2020-03-26 21:20:11
## 758  1151693240648626176 1243638826725146624 2020-03-27 20:39:36
## 759             14469820 1243243264079056896 2020-03-26 18:27:47
## 760  1238084781591547910 1243387454050037766 2020-03-27 04:00:44
## 761   729807046229565442 1243252857698160641 2020-03-26 19:05:54
## 762   920370467382419456 1243228248743559173 2020-03-26 17:28:07
## 763            280690372 1243311276463398912 2020-03-26 22:58:02
## 764           1453600256 1243311437776211968 2020-03-26 22:58:41
## 765           4622667867 1243233395158605824 2020-03-26 17:48:34
## 766   878820871971889153 1243229842453061633 2020-03-26 17:34:27
## 767   737651626803105792 1243347466499559427 2020-03-27 01:21:50
## 768             15533832 1243239801589022720 2020-03-26 18:14:01
## 769            357833234 1243310081942249472 2020-03-26 22:53:17
## 770           2173459784 1243375933073096715 2020-03-27 03:14:57
## 771           2256257457 1243591558806548486 2020-03-27 17:31:47
## 772  1240759936721858561 1243589321317396480 2020-03-27 17:22:53
## 773  1180476655262937089 1243632403450605568 2020-03-27 20:14:05
## 774   980026120694325248 1243621919242563588 2020-03-27 19:32:25
## 775  1173165534805975041 1243372742591774721 2020-03-27 03:02:17
## 776  1076062184554356736 1243571982937067522 2020-03-27 16:13:59
## 777             62841945 1243231172861231108 2020-03-26 17:39:44
## 778  1212599905132273665 1243291833389608961 2020-03-26 21:40:46
## 779            988489190 1243781645200773121 2020-03-28 06:07:07
## 780           1039296595 1243582871161405445 2020-03-27 16:57:15
## 781   764829119175622656 1243774014868402176 2020-03-28 05:36:48
## 782  1188214399456006144 1243596248650661889 2020-03-27 17:50:25
## 783           3251355932 1243292514578305026 2020-03-26 21:43:29
## 784           1685150023 1243810822242988037 2020-03-28 08:03:03
## 785           4452838720 1243227296452001792 2020-03-26 17:24:20
## 786            251898204 1243660345308258308 2020-03-27 22:05:07
## 787            330606437 1243759498134720512 2020-03-28 04:39:06
## 788             48968299 1243800874654109701 2020-03-28 07:23:31
## 789            247027241 1243667373179244544 2020-03-27 22:33:02
## 790           1408451995 1243691432239661056 2020-03-28 00:08:38
## 791   974889080193519617 1243740690477170688 2020-03-28 03:24:22
## 792   904802908520177664 1243609176099586048 2020-03-27 18:41:47
## 793  1069852763494981633 1243225899664846854 2020-03-26 17:18:47
## 794            442664736 1243647141870030849 2020-03-27 21:12:39
## 795             28605294 1243589485654351877 2020-03-27 17:23:32
## 796  1227568195898310658 1243828144538337281 2020-03-28 09:11:53
## 797            292715926 1243656880972578817 2020-03-27 21:51:21
## 798             68883683 1243372595665403904 2020-03-27 03:01:42
## 799           1270650092 1243653389025710082 2020-03-27 21:37:28
## 800             25843801 1243232296473448450 2020-03-26 17:44:12
## 801   733380624904421376 1243686265049903106 2020-03-27 23:48:06
## 802            240710605 1243235639035744257 2020-03-26 17:57:29
## 803           3060174289 1243228102815145989 2020-03-26 17:27:32
## 804             56404068 1243699725917917184 2020-03-28 00:41:36
## 805            120120773 1243571467985485825 2020-03-27 16:11:57
## 806   825084934113079296 1243372974864039936 2020-03-27 03:03:12
## 807             20016443 1243326917979312131 2020-03-27 00:00:11
## 808   937186564580560896 1243692834114453505 2020-03-28 00:14:13
## 809             55049762 1243270325116317699 2020-03-26 20:15:19
## 810            621976657 1243310765785985024 2020-03-26 22:56:00
## 811            238911107 1243341989346717696 2020-03-27 01:00:05
## 812             18633036 1243653766957719552 2020-03-27 21:38:58
## 813             33801942 1243322763391029248 2020-03-26 23:43:41
## 814           1600858730 1243321233992814592 2020-03-26 23:37:36
## 815            185568256 1243656727276539908 2020-03-27 21:50:44
## 816           1551979855 1243327026087550976 2020-03-27 00:00:37
## 817            118666965 1243258038418538497 2020-03-26 19:26:29
## 818           1658956214 1243658529153507328 2020-03-27 21:57:54
## 819  1164304446899347457 1243369787427819521 2020-03-27 02:50:32
## 820   829864120413462528 1243339171449786368 2020-03-27 00:48:53
## 821             30374920 1243569986867793922 2020-03-27 16:06:03
## 822           1359213752 1243234310246760449 2020-03-26 17:52:12
## 823             55089660 1243574803157712908 2020-03-27 16:25:12
## 824            134196475 1243696251322765314 2020-03-28 00:27:47
## 825             25156409 1243642835737260032 2020-03-27 20:55:32
## 826            333235146 1243390676122755072 2020-03-27 04:13:32
## 827   826375817441718272 1243364388309856256 2020-03-27 02:29:05
## 828            216524202 1243338786316091393 2020-03-27 00:47:21
## 829               814233 1243618123061886979 2020-03-27 19:17:20
## 830            335701222 1243600052645486593 2020-03-27 18:05:32
## 831            535351290 1243828830147473409 2020-03-28 09:14:36
## 832             20937779 1243371177818685441 2020-03-27 02:56:04
## 833             33805112 1243616033950310410 2020-03-27 19:09:02
## 834  1243291782084878336 1243293435504644096 2020-03-26 21:47:08
## 835           1011896054 1243748967197954050 2020-03-28 03:57:16
## 836           2323116235 1243750762926260224 2020-03-28 04:04:24
## 837   943018733068435456 1243593945818390528 2020-03-27 17:41:16
## 838             35950699 1243723514135355393 2020-03-28 02:16:07
## 839           1008984373 1243671454035652608 2020-03-27 22:49:15
## 840            373439919 1243274426327666688 2020-03-26 20:31:36
## 841            252076966 1243753778060222464 2020-03-28 04:16:23
## 842   868019668132347905 1243251829162438657 2020-03-26 19:01:49
## 843            465888475 1243305354642980865 2020-03-26 22:34:30
## 844           1252945921 1243773930814332929 2020-03-28 05:36:27
## 845            146533106 1243345358845087744 2020-03-27 01:13:28
## 846           1390318944 1243283393267335179 2020-03-26 21:07:14
## 847            294479557 1243375294720946177 2020-03-27 03:12:25
## 848  1219576960927588353 1243712545585795074 2020-03-28 01:32:32
## 849            216862411 1243619734605705219 2020-03-27 19:23:44
## 850            734184572 1243728244186234881 2020-03-28 02:34:55
## 851            193036771 1243828636114919424 2020-03-28 09:13:50
## 852             24829612 1243632580815196164 2020-03-27 20:14:47
## 853             14191823 1243659810761060358 2020-03-27 22:02:59
## 854             24790428 1243301555392122882 2020-03-26 22:19:24
## 855           1565447557 1243825590127362049 2020-03-28 09:01:44
## 856  1230143800548286464 1243623280344305664 2020-03-27 19:37:50
## 857             72743396 1243669542594699264 2020-03-27 22:41:39
## 858           1128888726 1243272708550463504 2020-03-26 20:24:47
## 859             22879437 1243722185384112128 2020-03-28 02:10:50
## 860             17205366 1243798064810332165 2020-03-28 07:12:21
## 861             38172071 1243234723419369473 2020-03-26 17:53:50
## 862   995499280067514370 1243725711879188480 2020-03-28 02:24:51
## 863             14465282 1243260515364691968 2020-03-26 19:36:20
## 864                12898 1243630985960251392 2020-03-27 20:08:27
## 865            549076236 1243669934984454144 2020-03-27 22:43:13
## 866            995502204 1243627397850726400 2020-03-27 19:54:11
## 867             62620861 1243226714014179329 2020-03-26 17:22:01
## 868           2557012136 1243594633743151110 2020-03-27 17:44:00
## 869           2470674174 1243239425963745280 2020-03-26 18:12:32
## 870   992026123809837056 1243363595221487616 2020-03-27 02:25:56
## 871   842235649298112513 1243664302784925696 2020-03-27 22:20:50
## 872   886319291489894400 1243351204379291648 2020-03-27 01:36:42
## 873             29174698 1243332900965060608 2020-03-27 00:23:58
## 874  1185279016548347905 1243620754824011779 2020-03-27 19:27:47
## 875            569873665 1243628225059860482 2020-03-27 19:57:29
## 876           1628901756 1243239351926034432 2020-03-26 18:12:14
## 877   961638138165817345 1243664538643378177 2020-03-27 22:21:46
## 878   833444611796369411 1243610782623039495 2020-03-27 18:48:10
## 879             92653916 1243337840517398528 2020-03-27 00:43:35
## 880           1175284032 1243565904346128384 2020-03-27 15:49:50
## 881            282716700 1243695956815572992 2020-03-28 00:26:37
## 882             15405628 1243285233002328070 2020-03-26 21:14:33
## 883   731418950907641856 1243243213986713600 2020-03-26 18:27:35
## 884            125907895 1243392120020320257 2020-03-27 04:19:17
## 885           1907783000 1243798295190876170 2020-03-28 07:13:16
## 886            141469339 1243243634075582464 2020-03-26 18:29:15
## 887  1155312569361547264 1243638666959949831 2020-03-27 20:38:58
## 888  1037112108675198977 1243737116787474432 2020-03-28 03:10:10
## 889  1176884023039336449 1243339398902689794 2020-03-27 00:49:47
## 890  1196463984104345602 1243249453546553347 2020-03-26 18:52:22
## 891           2532446543 1243594214899884032 2020-03-27 17:42:20
## 892            116141566 1243720592093659137 2020-03-28 02:04:31
## 893           4819616115 1243232497737109505 2020-03-26 17:45:00
## 894  1057942141484318721 1243281947595603968 2020-03-26 21:01:30
## 895  1168611088533004294 1243708096800796674 2020-03-28 01:14:51
## 896            375686410 1243319416848363521 2020-03-26 23:30:23
## 897  1203462567861084160 1243663820637097985 2020-03-27 22:18:55
## 898           4282993872 1243298271449305088 2020-03-26 22:06:21
## 899           1626142758 1243716487409369089 2020-03-28 01:48:12
## 900            242324142 1243304715460509698 2020-03-26 22:31:58
## 901            526066352 1243328985414750214 2020-03-27 00:08:24
## 902   728499529624879104 1243779679447736326 2020-03-28 05:59:18
## 903             90617546 1243335488540377088 2020-03-27 00:34:15
## 904   799744031127441410 1243640189089710081 2020-03-27 20:45:01
## 905   865941026980147200 1243302985620426752 2020-03-26 22:25:05
## 906            223919511 1243585953861701634 2020-03-27 17:09:30
## 907             88751152 1243368592428519424 2020-03-27 02:45:47
## 908            462027865 1243571455343890436 2020-03-27 16:11:54
## 909            596800229 1243669598920151040 2020-03-27 22:41:53
## 910           1379469558 1243272493219164166 2020-03-26 20:23:55
## 911   925373571286863873 1243578684667240461 2020-03-27 16:40:37
## 912             36145689 1243240309108002816 2020-03-26 18:16:02
## 913            103323813 1243791594697809921 2020-03-28 06:46:39
## 914  1191441878698397700 1243594521256083459 2020-03-27 17:43:33
## 915  1135600464299474944 1243654463975567360 2020-03-27 21:41:44
## 916            423237314 1243384663852208132 2020-03-27 03:49:39
## 917           1675910472 1243330967378579456 2020-03-27 00:16:17
## 918  1184025479084331008 1243568515845632000 2020-03-27 16:00:13
## 919   760863598243479553 1243769664649465862 2020-03-28 05:19:30
## 920            418256456 1243335178228912128 2020-03-27 00:33:01
## 921              8083542 1243342571650367490 2020-03-27 01:02:23
## 922            419559896 1243618848051519490 2020-03-27 19:20:13
## 923           2414136888 1243273036641587208 2020-03-26 20:26:05
## 924            413440921 1243243315581145089 2020-03-26 18:27:59
## 925            818224573 1243228031075975169 2020-03-26 17:27:15
## 926  1176013903899156482 1243282129842245640 2020-03-26 21:02:13
## 927           1920625123 1243822758196371457 2020-03-28 08:50:29
## 928           1219767846 1243590609035759622 2020-03-27 17:28:00
## 929   892132134844071937 1243641795067641859 2020-03-27 20:51:24
## 930  1171467279877279747 1243377511632781313 2020-03-27 03:21:14
## 931           3136970222 1243653296683810816 2020-03-27 21:37:06
## 932            804177050 1243575850794201100 2020-03-27 16:29:22
## 933            501372903 1243566422787125249 2020-03-27 15:51:54
## 934           2243566598 1243809717916520450 2020-03-28 07:58:40
## 935  1132542712195026944 1243267260602617856 2020-03-26 20:03:08
## 936           1275722959 1243585478009421824 2020-03-27 17:07:37
## 937             16102208 1243699323587588096 2020-03-28 00:40:00
## 938             64827786 1243600420729163776 2020-03-27 18:06:59
## 939             21969215 1243634304925741058 2020-03-27 20:21:38
## 940             43596804 1243230952614133760 2020-03-26 17:38:51
## 941  1118763194145759232 1243278314204250112 2020-03-26 20:47:03
## 942             31310158 1243274091362242562 2020-03-26 20:30:16
## 943            395213954 1243225836339310594 2020-03-26 17:18:32
## 944           3065924818 1243591355605102594 2020-03-27 17:30:58
## 945  1114303846426263559 1243247414837940226 2020-03-26 18:44:16
## 946             41243579 1243383716933558275 2020-03-27 03:45:53
## 947   938533034659168256 1243733098396659712 2020-03-28 02:54:12
## 948           3219528732 1243306027124002817 2020-03-26 22:37:11
## 949   827247504215375874 1243358046127919106 2020-03-27 02:03:53
## 950            582306752 1243761280755716096 2020-03-28 04:46:11
## 951           3184319732 1243817650578493440 2020-03-28 08:30:11
## 952            273678873 1243253950050164737 2020-03-26 19:10:14
## 953   723200908855775232 1243636817724944386 2020-03-27 20:31:37
## 954           2982269822 1243827927768166401 2020-03-28 09:11:01
## 955   804785625400418304 1243230930350694400 2020-03-26 17:38:46
## 956  1045078084028788736 1243293808827207680 2020-03-26 21:48:37
## 957            321436678 1243580549727432707 2020-03-27 16:48:02
## 958  1201220349028900865 1243615244443889675 2020-03-27 19:05:54
## 959            534036081 1243764377163096066 2020-03-28 04:58:30
## 960            115220086 1243297778379309061 2020-03-26 22:04:24
## 961           2480083422 1243268266467958784 2020-03-26 20:07:08
## 962             22283739 1243367091257786368 2020-03-27 02:39:49
## 963            316042195 1243267128461008902 2020-03-26 20:02:36
## 964           3246958814 1243588350222536705 2020-03-27 17:19:02
## 965             16292218 1243274524646232064 2020-03-26 20:32:00
## 966             13525132 1243591045226496000 2020-03-27 17:29:44
## 967             15221967 1243783027282436096 2020-03-28 06:12:36
## 968           3309371255 1243355932584628224 2020-03-27 01:55:29
## 969           3328053011 1243284820383408137 2020-03-26 21:12:54
## 970            318656894 1243636218170138625 2020-03-27 20:29:14
## 971           1298796487 1243592789373444105 2020-03-27 17:36:40
## 972            299858424 1243668844083924992 2020-03-27 22:38:53
## 973   827936164841562112 1243311996839305216 2020-03-26 23:00:54
## 974           3271119145 1243571572935397376 2020-03-27 16:12:22
## 975   777927231658004480 1243594083337043968 2020-03-27 17:41:48
## 976  1027727439487631360 1243612796576829441 2020-03-27 18:56:10
## 977           2319111437 1243250406437732352 2020-03-26 18:56:10
## 978  1025002772025012225 1243810800122449922 2020-03-28 08:02:58
## 979  1151178924577058816 1243666467083530240 2020-03-27 22:29:26
## 980           4180433547 1243580691046191109 2020-03-27 16:48:36
## 981  1215516320529362944 1243330380381458433 2020-03-27 00:13:57
## 982           1969422174 1243644170721517569 2020-03-27 21:00:50
## 983            235906919 1243362689067311104 2020-03-27 02:22:20
## 984           2201331817 1243595266512556034 2020-03-27 17:46:31
## 985            424531030 1243299701060857856 2020-03-26 22:12:02
## 986  1242190381988667392 1243228186621681666 2020-03-26 17:27:52
## 987            852096720 1243571653927460866 2020-03-27 16:12:41
## 988            169154930 1243246586911772674 2020-03-26 18:40:59
## 989  1217568931680006144 1243256788599877634 2020-03-26 19:21:31
## 990           2882493896 1243290876614492161 2020-03-26 21:36:58
## 991  1048558756810948608 1243781161287024641 2020-03-28 06:05:11
## 992             66659124 1243362915622633472 2020-03-27 02:23:14
## 993             20794340 1243617587445010432 2020-03-27 19:15:12
## 994  1231765598239154177 1243339818202955776 2020-03-27 00:51:27
## 995  1098106957683019776 1243624349728456704 2020-03-27 19:42:05
## 996            164730435 1243754470246354944 2020-03-28 04:19:08
## 997  1237064625625223168 1243593098908839937 2020-03-27 17:37:54
## 998            426690145 1243298396095594497 2020-03-26 22:06:51
## 999   893299346367692800 1243336640455561217 2020-03-27 00:38:49
## 1000 1001769760596676609 1243280550711955471 2020-03-26 20:55:56
## 1001            79986022 1243356354175053824 2020-03-27 01:57:09
## 1002           376480957 1243754540375080960 2020-03-28 04:19:24
## 1003            48568247 1243773212430708739 2020-03-28 05:33:36
## 1004           915496224 1243714587570008069 2020-03-28 01:40:39
## 1005 1043389291110572033 1243586412462714882 2020-03-27 17:11:20
## 1006            17374056 1243245084956655617 2020-03-26 18:35:01
## 1007            36012258 1243624307349237762 2020-03-27 19:41:54
## 1008  845418693689405441 1243288725787836417 2020-03-26 21:28:26
## 1009  970140879393579009 1243599629188583424 2020-03-27 18:03:51
## 1010  728259667906809858 1243649166166786049 2020-03-27 21:20:41
## 1011          2716509897 1243694776270143488 2020-03-28 00:21:56
## 1012  749977594301480966 1243732706183262208 2020-03-28 02:52:39
## 1013          1968262034 1243646340350926848 2020-03-27 21:09:28
## 1014 1039350034293112832 1243743174012604416 2020-03-28 03:34:14
## 1015          2837863005 1243276678278905856 2020-03-26 20:40:33
## 1016           296939072 1243240787212713990 2020-03-26 18:17:56
## 1017          2238576392 1243814595363401731 2020-03-28 08:18:03
## 1018            57597564 1243578688656019459 2020-03-27 16:40:38
## 1019           473605659 1243390767550189568 2020-03-27 04:13:54
## 1020          1068742092 1243576799084371969 2020-03-27 16:33:08
## 1021            25927615 1243296854672125958 2020-03-26 22:00:44
## 1022           840979597 1243361208343728128 2020-03-27 02:16:27
## 1023  829685651071180802 1243587676361629697 2020-03-27 17:16:21
## 1024           616740164 1243646030710620160 2020-03-27 21:08:14
## 1025 1097694473952342022 1243661559613644800 2020-03-27 22:09:56
## 1026            15483495 1243241819950940160 2020-03-26 18:22:02
## 1027 1210806479898333185 1243330702055108610 2020-03-27 00:15:13
## 1028          2432037522 1243675304788361217 2020-03-27 23:04:33
## 1029            18217470 1243656035354783745 2020-03-27 21:47:59
## 1030  823987589623455745 1243574727534313473 2020-03-27 16:24:54
## 1031            22594051 1243810583339622400 2020-03-28 08:02:06
## 1032 1234827786587660289 1243661723153747969 2020-03-27 22:10:35
## 1033            26276678 1243349272424321024 2020-03-27 01:29:01
## 1034 1068147338789748738 1243261898663084032 2020-03-26 19:41:49
## 1035           295459753 1243608265373745155 2020-03-27 18:38:10
## 1036  823158574041985024 1243822800189763585 2020-03-28 08:50:39
## 1037            34332773 1243287863443230720 2020-03-26 21:25:00
## 1038 1199766623298768900 1243597899960848397 2020-03-27 17:56:58
## 1039          3624846559 1243694047547387905 2020-03-28 00:19:02
## 1040           135243332 1243297965327802368 2020-03-26 22:05:08
## 1041  752214047744004098 1243573478864846849 2020-03-27 16:19:56
## 1042           174361370 1243300644506808326 2020-03-26 22:15:47
## 1043           123343056 1243291623175446529 2020-03-26 21:39:56
## 1044 1013959574221721604 1243796990233804800 2020-03-28 07:08:05
## 1045          2266427203 1243266281152950273 2020-03-26 19:59:14
## 1046           385531917 1243348351522750465 2020-03-27 01:25:21
## 1047            15577279 1243299987389329409 2020-03-26 22:13:11
## 1048          3276766916 1243777340305551362 2020-03-28 05:50:00
## 1049          2440688198 1243354031981916160 2020-03-27 01:47:56
## 1050           302765078 1243234747884634113 2020-03-26 17:53:56
## 1051 1221294634514690049 1243742473333157889 2020-03-28 03:31:27
## 1052 1237929400898813953 1243349919731195904 2020-03-27 01:31:35
## 1053 1240789666388783104 1243659281230172160 2020-03-27 22:00:53
## 1054 1208762598738538496 1243639042790604800 2020-03-27 20:40:28
## 1055 1131977471295754240 1243585109548285954 2020-03-27 17:06:09
## 1056           259740746 1243612025072345089 2020-03-27 18:53:06
## 1057           369560707 1243789580781916160 2020-03-28 06:38:39
## 1058           188006317 1243228741217771532 2020-03-26 17:30:04
## 1059           446398099 1243318905621413890 2020-03-26 23:28:21
## 1060  970716252179136514 1243307995569647616 2020-03-26 22:45:00
## 1061 1060609814248779777 1243265394489667586 2020-03-26 19:55:43
## 1062           555437217 1243679547448590336 2020-03-27 23:21:25
## 1063          1226387426 1243283205685268480 2020-03-26 21:06:29
## 1064          1931443988 1243592549677367296 2020-03-27 17:35:43
## 1065           392594553 1243598040734326784 2020-03-27 17:57:32
## 1066  730440421768310784 1243256725358227458 2020-03-26 19:21:16
## 1067 1238161158647005187 1243253040502759425 2020-03-26 19:06:38
## 1068  842791717501898754 1243343513682677760 2020-03-27 01:06:08
## 1069  714592222994259968 1243291285647028224 2020-03-26 21:38:36
## 1070             2467791 1243585895871262726 2020-03-27 17:09:16
## 1071            16950863 1243254936164540417 2020-03-26 19:14:09
## 1072           145232128 1243572476405153792 2020-03-27 16:15:57
## 1073 1107101863751499776 1243354314036244483 2020-03-27 01:49:03
## 1074           256487479 1243570559042105347 2020-03-27 16:08:20
## 1075           333134880 1243759975865790471 2020-03-28 04:41:00
## 1076           448315371 1243243529389957120 2020-03-26 18:28:50
## 1077            90760905 1243363734686281728 2020-03-27 02:26:29
## 1078            75475601 1243745949748310018 2020-03-28 03:45:16
## 1079          3381890295 1243331101889900546 2020-03-27 00:16:49
## 1080            14712659 1243263768815075328 2020-03-26 19:49:15
## 1081           565159518 1243309938379837440 2020-03-26 22:52:43
## 1082          1251717146 1243760058468573184 2020-03-28 04:41:20
## 1083            30567521 1243691008291823616 2020-03-28 00:06:57
## 1084 1203462567861084160 1243597129785815040 2020-03-27 17:53:55
## 1085             1265161 1243800420247465984 2020-03-28 07:21:43
## 1086 1084984854096289793 1243242358646419458 2020-03-26 18:24:11
## 1087           111721601 1243325623604359169 2020-03-26 23:55:03
## 1088           705122902 1243752623166992384 2020-03-28 04:11:47
## 1089            43295161 1243584407127994368 2020-03-27 17:03:21
## 1090            46045975 1243233214745006085 2020-03-26 17:47:51
## 1091          1717028534 1243321005889609728 2020-03-26 23:36:42
## 1092           137643740 1243639865666949120 2020-03-27 20:43:44
## 1093            70797655 1243230712892764162 2020-03-26 17:37:54
## 1094          1930148504 1243625261570154496 2020-03-27 19:45:42
## 1095           379200688 1243249729091391491 2020-03-26 18:53:28
## 1096           495274213 1243630103847895040 2020-03-27 20:04:56
## 1097           501107987 1243308043682619398 2020-03-26 22:45:11
## 1098          2377450226 1243636422931820545 2020-03-27 20:30:03
## 1099 1236006332299436034 1243826786808578048 2020-03-28 09:06:29
## 1100  851848462576562180 1243623641151086592 2020-03-27 19:39:16
## 1101           454138567 1243261546622484485 2020-03-26 19:40:26
## 1102          2631976283 1243642384682037249 2020-03-27 20:53:44
## 1103  725371772481077248 1243565292011368448 2020-03-27 15:47:24
## 1104 1240641096431964166 1243271018195505153 2020-03-26 20:18:04
## 1105           492736486 1243327389377146885 2020-03-27 00:02:04
## 1106           214631950 1243279869808644105 2020-03-26 20:53:14
## 1107            16247920 1243330178727714819 2020-03-27 00:13:09
## 1108           237520337 1243628529490812931 2020-03-27 19:58:41
## 1109 1010481312157896707 1243589655943094274 2020-03-27 17:24:13
## 1110 1054332434630799363 1243632386396561409 2020-03-27 20:14:01
## 1111  772178581929590784 1243268038805336064 2020-03-26 20:06:13
##          screen_name
## 1            tjhend1
## 2    RedPlacementLvl
## 3              ashic
## 4         EdAsante77
## 5        JeremyShorr
## 6       MensHealthUK
## 7         WALBNews10
## 8        npquarterly
## 9        bradpatrick
## 10    TheCommunityON
## 11   CityofPickering
## 12         Patty0987
## 13      food4thaught
## 14      jbrownie2218
## 15       AnastasiaTS
## 16      BethECBailey
## 17     Lumindustries
## 18   SahirRahaman203
## 19       kevinerdman
## 20          hanoiXan
## 21         DanHinz65
## 22          CVRecord
## 23           shreyas
## 24     AmbitiousChou
## 25           Moespi1
## 26              phre
## 27          CMHAWECB
## 28           DNYimga
## 29     Ellenr49Ellen
## 30      cissysmith13
## 31           Chisi86
## 32      brandondarby
## 33      HowertonNews
## 34            pcmahq
## 35     barbarajwells
## 36       shalini_das
## 37           MSalimu
## 38         EFFAT_org
## 39           Opeeka1
## 40       Stuart_Wood
## 41      100Concerned
## 42       7NewsMackay
## 43          Raffi_RC
## 44     IConcealCarry
## 45       AshTheTenor
## 46      Comm_Bonilla
## 47            Ognir2
## 48     RonaMackayMSP
## 49    FirstChoiceVeg
## 50   JessicaShumaker
## 51           Sumol67
## 52      permabear_uk
## 53   ProjectValhall1
## 54   NoahsArkHospice
## 55       magpietail1
## 56   Vanessa46876415
## 57      danya_suzuki
## 58          Q2i_CASA
## 59   threadreaderapp
## 60   adamcha17729360
## 61         Kasliwala
## 62      kate_depalma
## 63   NewsfromScience
## 64       PeeJayAitch
## 65          Aintropy
## 66           dhnaves
## 67     SoberTool_App
## 68        bPositive_
## 69   AustinKellerman
## 70    tabisah_thabie
## 71     SportBusiness
## 72           amogh_c
## 73          curogram
## 74   Gabriel77899712
## 75       killavillas
## 76      johnbachtell
## 77          KimHaydo
## 78       richwithtea
## 79       deehfairley
## 80      CivicScience
## 81        WycliffeJb
## 82         BUCompSci
## 83          Nickala5
## 84      SankofaQueen
## 85            tjmule
## 86       joh_adeniyi
## 87   DaBajaurGuloona
## 88   ColumbiaDoctors
## 89         DLA_Piper
## 90    Gaurav67949350
## 91    SenYahuzasaadu
## 92     UneisIbnmalik
## 93     Daily_Express
## 94   personalliberty
## 95      ElainaCScott
## 96      WITBANK_NEWS
## 97      Charlie_APWS
## 98   MyositisSupport
## 99          LandGLab
## 100           tjbtts
## 101         RefeKids
## 102           caggly
## 103  KaleemA09420978
## 104          BDCal64
## 105      sarbazseffr
## 106         gailloos
## 107  solanheadlines1
## 108    UWBadgerPilot
## 109    alexinbulimba
## 110    KhosroKalbasi
## 111  IsraelAdemola19
## 112       EllypopArt
## 113  librarythingtim
## 114       lincconard
## 115       jlitwinetz
## 116   TheRealROLAND2
## 117         KGETnews
## 118  PADOBSsecretary
## 119        SwapneelF
## 120     MichaudScott
## 121  _HotGalNextDoor
## 122        akoroma08
## 123     sawsawsawwas
## 124          680NEWS
## 125        DrKenVick
## 126  AlmuraikhiNihal
## 127   CrazyPotato863
## 128      shah_sheikh
## 129     readfrontier
## 130      tonyevans88
## 131           ErollB
## 132    universesrini
## 133       Agent99XXX
## 134       Antoniopu_
## 135     faluyikayode
## 136          opa1420
## 137  yellowjacket226
## 138         CDRFidel
## 139   DrDanielGillis
## 140            gcboe
## 141  ShashiGangadhar
## 142        MerriamKS
## 143          basetax
## 144         Bossina8
## 145         mainak13
## 146       kevdenny23
## 147      Ankushjha99
## 148    rfpearson2004
## 149    bazecitymedia
## 150          Klepto0
## 151      KenzieWynne
## 152     brosandprose
## 153         SenateAR
## 154    SirLolsworthy
## 155  chandlerchamber
## 156    foxxiebrown67
## 157      ColmJDawson
## 158   CynthiaBenjamn
## 159           Venafi
## 160        leonardkl
## 161  christophernay1
## 162   SuccessfulFarm
## 163     RuntaAqoonta
## 164     CaroleTurner
## 165    KrauseForIowa
## 166      CityofMiami
## 167   Candra52847858
## 168     Muhammadaoad
## 169    SAFoundationN
## 170         NWMOInfo
## 171         lykaboss
## 172   VanaparthiMahi
## 173      thomkenrick
## 174   Suresh17104120
## 175   HeidiCreighton
## 176        rg_duncan
## 177      QuesnelNews
## 178     sabapathyram
## 179          salnews
## 180          cbloggy
## 181   MayorofBurnaby
## 182         Santyna2
## 183         nessie12
## 184         Mbengei_
## 185         TxID_Edu
## 186       SoTemitope
## 187   mikemerlinator
## 188    andreharris89
## 189      horlabhankz
## 190     claresturges
## 191     ChapiEtChapo
## 192       maryfshort
## 193   TheWilsonTimes
## 194     pietroodelli
## 195       coolbuzz23
## 196  koreanjewcrypto
## 197        UFOgigolo
## 198  BrendaP84760115
## 199       PayneWynne
## 200            TapMr
## 201           rpfwr1
## 202    1coralharbour
## 203     JohnGBaresky
## 204       AcronisSCS
## 205       WWECritics
## 206       jeffalgera
## 207  IndependentInst
## 208   serina98010207
## 209         wagygirl
## 210   ShannonBarber1
## 211  chicago2arizona
## 212       CBCCalgary
## 213         deswixon
## 214        v_shakthi
## 215        Beleafer1
## 216  AnthonyTilghman
## 217       bydeaddude
## 218       EmbacubaNZ
## 219      cupidalaska
## 220        raebyung1
## 221        csgazette
## 222      honestduane
## 223       nimrazulfi
## 224  juliamarblefaun
## 225      TheAgeOfAGs
## 226  BluePRintBrands
## 227         Aly_Dar8
## 228         Ayonadre
## 229        sunidhii_
## 230    coronalivebot
## 231    AttorneyCrump
## 232        jsrailton
## 233  InsideNo9Tweets
## 234   taylordiciocco
## 235  GlobalNewsJapan
## 236        TomBewick
## 237    halfeatenmind
## 238     SceneSallard
## 239  Buckersquiteold
## 240            ukSJS
## 241       Allchanges
## 242        LikeSmize
## 243    jj_sandoval18
## 244        NoorHudaa
## 245     Act4Palestin
## 246        xBallsyxx
## 247         hunterei
## 248    IanStruckhoff
## 249        lanielans
## 250     angelswithbr
## 251         ANERAorg
## 252       playfulraf
## 253        Puttyhead
## 254       BFilenames
## 255          LFPress
## 256  juliecasperroth
## 257  Animal_Genetics
## 258     SeeHearSmell
## 259        drsmadden
## 260       synapse101
## 261      always_vote
## 262     Alicia_Akeys
## 263          CYPStNN
## 264        maxbone55
## 265          Only4RM
## 266      paranoidpal
## 267            ZAmmi
## 268    BrunswickGovt
## 269      LaKingsDB23
## 270   Silent_deserts
## 271     jrdothoughts
## 272      YashdeepRaj
## 273  SabyasachiRath3
## 274           jplum2
## 275       Josh220345
## 276         ShSPDER1
## 277   Mayankkrsinghr
## 278      carsonmaryc
## 279      sid20022019
## 280       MahycoGrow
## 281  wordoftheday411
## 282      RoyceWestTX
## 283       Lex_Jurgen
## 284     normallen958
## 285     colemarisa49
## 286       CubSwanson
## 287      mikebuckham
## 288     TrendingAtoZ
## 289    MelissaOnline
## 290     HafsaZahid10
## 291       myasin_law
## 292  TheR4experience
## 293      CJtheDJ3791
## 294        pdartesia
## 295        wendylfps
## 296     PtboExaminer
## 297     JamesSAtkins
## 298     MarcSkulnick
## 299         MABRN999
## 300     WenZhang2018
## 301        NuniSasYu
## 302   MovingMarkets_
## 303         sn00pdad
## 304        diane7thh
## 305           SKosgy
## 306            e_gow
## 307    Bacon4Spinner
## 308  ServproHaverhil
## 309         RainMaki
## 310         hine_hin
## 311     floraisadora
## 312        BBC_Hyung
## 313     iproposethis
## 314           dcbahr
## 315         indiacom
## 316     AlbertaPress
## 317      trustam1278
## 318  sjwilliams19671
## 319    wonderz_adepa
## 320        HOLYSMKES
## 321   SteveSReynolds
## 322            Gzaxs
## 323        BisciariP
## 324         Arizton2
## 325     juicyupdate1
## 326         Bakerdun
## 327  perfectpolished
## 328      minizter669
## 329    HMRCcustomers
## 330   theworldinnews
## 331      bhumilpatel
## 332        Brintha_M
## 333    cuppediavenia
## 334      GHMansfield
## 335       nevikjames
## 336      eswarkanchu
## 337      aFathersLog
## 338           dmraci
## 339   africanaffairs
## 340  TheCons58568059
## 341     thecraftykat
## 342         JMHUSTLE
## 343    StuartShanker
## 344          abbylog
## 345   elle_josephine
## 346     Bitcollector
## 347        shaojiang
## 348  BenjaminMatth12
## 349     Inno_Ochieng
## 350     Greensfelder
## 351   trvlyblessed__
## 352    northglennews
## 353   davidmotsinger
## 354   northwaleslive
## 355       JanesINTEL
## 356           tv6tnt
## 357        kirosamin
## 358         fmhansen
## 359   DrumChronicles
## 360     EdwardKallon
## 361    TravisLAdkins
## 362     RogerJComte2
## 363      ShaulTurner
## 364     whymethodamn
## 365   MetroByTMobile
## 366    AwaisRizvi313
## 367     EvansShallom
## 368        texan2you
## 369       mamabigdog
## 370      AntoniaGiro
## 371       JAMMULINKS
## 372       MsVWebster
## 373         Bob_Grip
## 374     CeciliaBTory
## 375   DimitriEynikel
## 376          nanaibm
## 377          BikhamT
## 378  JohnOke87997547
## 379        diannebee
## 380   JasonPuckettTV
## 381           espudo
## 382         bradnull
## 383         NEU_left
## 384  BHARATS66169558
## 385      victory1261
## 386     dj_blue_eyes
## 387     MrNixonsWife
## 388  Johnnie23378734
## 389      ChesterGlyn
## 390    letspawsfirst
## 391      kaytyleslie
## 392  HedofLettuce777
## 393   DanGriffinWLWT
## 394         IWNGwent
## 395     CountyPitkin
## 396   She_twoDjbreal
## 397    trianglesides
## 398       YaleGlobal
## 399      popthestack
## 400        allafrica
## 401        FOX61News
## 402   Cert_Listeners
## 403   JohnTerryTresh
## 404        11sandy71
## 405          JRBinSV
## 406            41NBC
## 407  SimilkameenNews
## 408      chasbrennan
## 409  Saving4XtraRice
## 410        rangegrrl
## 411         FrogNews
## 412    ClockhouseEN2
## 413    johnnybravo37
## 414         chat_owl
## 415    AdjanorMensan
## 416         Cinnaire
## 417       utaustin04
## 418  sergiovivas1398
## 419   GoodDayAtlanta
## 420  HannaBoysCenter
## 421      TRANS_W0MAN
## 422    Current_Knewz
## 423        EllenKoko
## 424      Ricky_D_PDX
## 425        QuickTake
## 426       brandi__yo
## 427       TTomkins22
## 428    salariandeals
## 429  georgiastraight
## 430         Udit_Eco
## 431     CranTownsman
## 432  NationalJeweler
## 433      Maria707377
## 434     eyesonfoxorg
## 435          KNX1070
## 436  Champ1Diversity
## 437         apwc2020
## 438     AlamoudManal
## 439  PandemicCovid20
## 440    SicamousEagle
## 441    andinthiscalm
## 442         DHIN_HIE
## 443         KiMira76
## 444       ThugDogg94
## 445      pawankverma
## 446     ESilvermanMD
## 447       writerlane
## 448    ImamHussainGC
## 449    pen_is_mighty
## 450          mairkrh
## 451           bjork5
## 452       RekhaCBabu
## 453      airtelindia
## 454  ShallimaMaharaj
## 455          kojman1
## 456  ChanningCarrin8
## 457   holy_scribbler
## 458       tokenstate
## 459          p_greze
## 460  Jennife25073649
## 461          1jiska1
## 462      PortsideOrg
## 463   SalemMedCenter
## 464          pmaya47
## 465      leoncekealy
## 466           KathTX
## 467  FinancialXpress
## 468   WildsidePhotog
## 469    AmericanJedi3
## 470         izaanfly
## 471  realitycheckme1
## 472      Tom_E_Angel
## 473          bre77co
## 474      thalesgroup
## 475        horchak77
## 476         PaulGelb
## 477      vfarrellart
## 478         WTFSahil
## 479      TheCocamama
## 480  _TanyaRobinson_
## 481          AareAgo
## 482  Hypemanmaxload1
## 483          AFAofPA
## 484       TheSJTobin
## 485   YoutubeCherrie
## 486     Solidus316YT
## 487         Briizzll
## 488   Sou_HotWhopper
## 489           Conga1
## 490     PhysiosforPA
## 491    Ahmadzai_rooh
## 492  Mohitka93905897
## 493    aClearOutlook
## 494    7NewsAdelaide
## 495          emkent5
## 496      xanaicastro
## 497         julianpo
## 498        SumaMzee2
## 499           soitiz
## 500      ItMustBeJim
## 501        BuckForPA
## 502          vijansi
## 503       tinadetelj
## 504       markhughes
## 505    AllisonPapson
## 506    lanallawrence
## 507       mocarski_p
## 508       KeaneJodie
## 509    HitpalSingh10
## 510     NineDragons2
## 511  ChrisTrikomitis
## 512  theofficialmadj
## 513          umtroII
## 514  coronavirus2019
## 515       pennyarnie
## 516        fikriwiki
## 517          BioMath
## 518  AdelekeOmobori1
## 519      MissSumaiya
## 520        shall_try
## 521  AnthonyQuintano
## 522  DragonDigitalM1
## 523    BernardDmello
## 524       Sistergetu
## 525       MztaSlimzy
## 526     BrookeLagana
## 527  duskywhalerkate
## 528        TwistElly
## 529       josephaleo
## 530        JewelDole
## 531  CitizenofNHaven
## 532           koefod
## 533        al7gaming
## 534         cirewebb
## 535       johnfamous
## 536        PursuitHQ
## 537        Manyisanb
## 538     TestaduraNGO
## 539  RachelH94559094
## 540    thefirstindia
## 541       VodafoneIN
## 542     Dave62286427
## 543    IvebeenTaylor
## 544      nathanworks
## 545      mynewsghana
## 546        altus_inc
## 547    iamloeyfelipe
## 548      NRT_English
## 549           Nax33r
## 550  TheRoyalGazette
## 551        dashainez
## 552          biltron
## 553      RaymondBowe
## 554       elect2020_
## 555     Paulhaider74
## 556  JordanSchachtel
## 557      airtelindia
## 558   PankajDakhare5
## 559  RedCrossBloodNC
## 560      PourHomme80
## 561     GregoryGLake
## 562    MiriamFogarty
## 563     ChimpReports
## 564   clarkfornorman
## 565       WomensAlly
## 566        IHLawless
## 567   ThisIsMohit777
## 568   DrStubblefield
## 569       VodafoneIN
## 570        rinsled05
## 571    AlArabiya_Eng
## 572       mwithrow02
## 573  DonateAtDrivers
## 574   MicheleONeilAU
## 575  macdonald_julie
## 576       _jermarcus
## 577    TravelMaestro
## 578  AbileneAdvisors
## 579      scampbell15
## 580      MegapixelSf
## 581    Makayla_Ponce
## 582     AmelieSpeaks
## 583        seacology
## 584      Charrrrrr97
## 585         davejmck
## 586      kevinwinker
## 587       jdaIrymple
## 588     stephanie_ip
## 589   _DeepakSharma_
## 590     JayJaramillo
## 591         dru_star
## 592           Eme_si
## 593   makeplanetnice
## 594  GodKingAlmighty
## 595    DervishWaking
## 596      thespectcle
## 597          _AA_021
## 598         ICGPnews
## 599    paulfrinkbhhs
## 600       GhanaYouth
## 601  ResearchForGood
## 602   fluffiluff_ssb
## 603  Truthma81128749
## 604    kristenworley
## 605          LHGorby
## 606  venus_home_appl
## 607        sosolaval
## 608   WilliamGotimer
## 609   sassygenealogy
## 610      jjburquhart
## 611   FatherFrizzell
## 612     DaveTheCat17
## 613     CICRAcharity
## 614      GagneRenaud
## 615       Justin_SCF
## 616  SarahEOlson2009
## 617         ambarrio
## 618       WildRushes
## 619        KayOddone
## 620       JohnLowe56
## 621  AlissaA33893940
## 622           effwun
## 623         KPBSnews
## 624          eandiyo
## 625           psdxoh
## 626     kinkykaitIin
## 627      kvandeburgt
## 628          nhsswft
## 629            109qk
## 630    abideisprayer
## 631    Sportnewsbuzz
## 632        PFIpolicy
## 633     saltieone808
## 634       SteedFiona
## 635  RoselinRosario3
## 636  racehorsereport
## 637   ArjunVishalRai
## 638     KristenObaid
## 639     CSSDPRyerson
## 640  isaacortega2900
## 641     SelfdrivingC
## 642         herebegb
## 643       IUntrapped
## 644         DrJSaini
## 645    Johan15109896
## 646  Ignacio68380157
## 647       beachkatie
## 648  AllisonGallaway
## 649           GGCPAs
## 650   Thepurplelilac
## 651     FOX10Phoenix
## 652     JohnMaddenTV
## 653         musty527
## 654          yadavhr
## 655         dafyddkw
## 656  PlatypiPolitics
## 657     onlyafewcows
## 658      Richiee1991
## 659      airtelindia
## 660      iamLisaHunt
## 661        theappeal
## 662        NHSG_PEFs
## 663      MrMikeBlake
## 664         nzlabour
## 665  Process2Succeed
## 666          Mpeople
## 667  singhaniasubh12
## 668         mils_xxx
## 669        RuhiSleep
## 670      richiesauls
## 671         IliganCa
## 672      Rocky_Coles
## 673        EmBrownDC
## 674        clickeric
## 675  TheNotoriousBTB
## 676  BIDMCTransplant
## 677   EarnRespectDon
## 678   candacemickey1
## 679       MikroSundq
## 680           KWCH12
## 681  BiswapriyaMisra
## 682  PandemicCovid20
## 683    airlinegossip
## 684   DeeLovelyone79
## 685      ShadiYazdan
## 686      TheMaxWhite
## 687   MiaStJohnBoxer
## 688        LowyatNET
## 689       e_greulach
## 690           mthrel
## 691  VishalG31703954
## 692        fox32news
## 693   SABronchoscopy
## 694       ccoreynews
## 695  SyedHamzaRasool
## 696      kathrynmcxo
## 697    msrkshahnawaz
## 698      syd_masingi
## 699   GilvanR_Guedes
## 700   MelissaSweetDr
## 701      SPECNewsCNY
## 702      VIIIVMMXIII
## 703       jj_talking
## 704      JackRevered
## 705         axcollie
## 706     TheresaZ2019
## 707         doogilla
## 708     SheriBettine
## 709      KrishnaNall
## 710       smsaideman
## 711         zibra422
## 712      newsconover
## 713    swanikmaharaj
## 714    realnikoraray
## 715         intifada
## 716            KREM2
## 717  Delawarenewsrep
## 718        MadaneTom
## 719      ShePradaEli
## 720     Sanjayolewis
## 721     RickCAllen62
## 722  thejasminebrand
## 723   7NewsAustralia
## 724   Coach___Wheels
## 725   jwindsordesign
## 726         Nick_Kay
## 727   peace_peterson
## 728      jamijturner
## 729        matwilcox
## 730      Decembermum
## 731        SmoothD64
## 732        rhukkey_3
## 733  RepRoybalAllard
## 734  OfficialNetslab
## 735      michelle_ad
## 736     ArnaudPrevot
## 737  lexymarienitzel
## 738      BntAlaqsa20
## 739          ixtumea
## 740    insights_west
## 741    alexmacleanio
## 742     travelweekly
## 743     JMutinda_snr
## 744        VirusGood
## 745  ClintBuytenhuys
## 746          WGNNews
## 747        c4atlanta
## 748          rapulu_
## 749      semusmurphy
## 750       KateGIaser
## 751  PoliticRealitic
## 752        swiftix24
## 753  omaralabdullah2
## 754       derekpoore
## 755          gnoto62
## 756  CapitalMidsNews
## 757  SimoMachiLmryol
## 758        oberon_le
## 759      _TatTvamAsi
## 760       mwamnogi46
## 761  OFFICIALPETEST1
## 762     Bottlecapps1
## 763         ampablos
## 764    CurzonRichard
## 765     RecHeadlines
## 766     pennewstweet
## 767      imtiaz_gold
## 768             NCRC
## 769      tallandtrue
## 770  MainEventZombie
## 771    Sue_Clement68
## 772   ConsultingSior
## 773      UMSocCogLab
## 774     Tough_Muller
## 775  GaGirlCindyDawn
## 776     WorldCabrini
## 777           emc597
## 778    carbonivorous
## 779   EngrIkramDawar
## 780         meobaldo
## 781    MichellSchyff
## 782  ArenaSportsView
## 783   MukhtarSomalia
## 784          c_dabbz
## 785  MacburyKristina
## 786          05HAWKI
## 787       sherkhantx
## 788       uncannybal
## 789        HeraldWPG
## 790    Kay_Alamia_78
## 791         N_Rainer
## 792   PetrasFreeMuse
## 793       HolliRingo
## 794          EvaBS14
## 795      CityNewsWPG
## 796      RyshayKiera
## 797      opeoluway2k
## 798       rjtownsend
## 799          KallGov
## 800            lau56
## 801       HanksMom44
## 802        DanMidd84
## 803     CarrieSchwab
## 804   jkr_on_the_web
## 805      US_TRANSCOM
## 806    aplebeianlife
## 807     ChiNewsBench
## 808       kevl_jones
## 809           whylek
## 810    ghostfacezach
## 811      Libyan4life
## 812   IndieGoDesigns
## 813       _westfest_
## 814  Nobodyknowsme49
## 815       247nigeria
## 816   onufreyonboard
## 817   Samsonprolific
## 818  DanceLikeTatixo
## 819  DigitaliveWorld
## 820     HoosierBlues
## 821      bret_martin
## 822          UoBarts
## 823     LTerrellKCCI
## 824      divaonline1
## 825     marksbuckley
## 826       JimmyUmesh
## 827    LylaAliceLane
## 828   locsandloaded_
## 829             revo
## 830            MogeV
## 831          aertrip
## 832       mcnorman57
## 833          mabueno
## 834   XavierQuinlan1
## 835   truthteller_rk
## 836     realiansaint
## 837           AVT198
## 838         bove_avg
## 839        DowneyK65
## 840    DanielPNugent
## 841        chasbuduo
## 842       Tweet2PBee
## 843   simoncollins10
## 844      eveRIAthing
## 845      JerseyDan18
## 846     Defend_Trump
## 847      DTBbyTheSea
## 848       ChemConnon
## 849       malcolmsym
## 850   TheRealQSavage
## 851       Carmenable
## 852      JessieLives
## 853        rcslayton
## 854         xileenie
## 855  rajeevbhaskarht
## 856      MrS78135612
## 857  DebbieLaskeyMBA
## 858      ABousquette
## 859           graddy
## 860           chubbm
## 861           rmn935
## 862       justBTSpop
## 863     kevinpurcell
## 864           dajobe
## 865     WesternUNews
## 866     HarddiskDisk
## 867  Vic_toriaBailey
## 868      ruruemawere
## 869      nineycudjo1
## 870    micha23484381
## 871    ExpendabLegos
## 872   psravenscroft1
## 873       sethbannon
## 874         PAltpere
## 875      boateng__kb
## 876      JeffMifflin
## 877   True_govcritic
## 878      NeverGetGot
## 879   TheGrumpyBitch
## 880    slunewsonline
## 881  JoanneSpruceC21
## 882  JakeLeonardWPMD
## 883    DrMohd_Frdous
## 884      iambhoopalm
## 885    atripathi5193
## 886      mscenalover
## 887    dailydigger19
## 888        KHetrific
## 889   carlie76552864
## 890      leo_mulvany
## 891          EMahosi
## 892        Thai_Talk
## 893    ProMarket_org
## 894  LifelineEducat1
## 895     SellThePlace
## 896       BostnEddie
## 897    naija_reports
## 898     HolyDivine98
## 899          nvg1372
## 900     Edgar_Vieira
## 901     IAmCalebHart
## 902      imSGaharwar
## 903           KGonot
## 904    ParkerClimate
## 905   MeansNefarious
## 906     ashevillejam
## 907         pcwalton
## 908  EastHertsPolice
## 909      hahn_jessie
## 910     SCRIPTCentre
## 911  Judith_Mesquita
## 912    TudorRoseLass
## 913  Airtel_Presence
## 914     SaraBethNot1
## 915     lindoscott14
## 916    daputsetyadii
## 917          ALCCNYC
## 918    mehabecapital
## 919      VictorHolyO
## 920    Jason_T_Green
## 921     masteradrian
## 922      13DavidAlan
## 923          amarula
## 924  DreamStateDigit
## 925        AJGershTV
## 926  AngelofJustice9
## 927  VicMorenoGarcia
## 928          DCUC_HQ
## 929  PalmdaleMedical
## 930        itskarugu
## 931        Vtrain365
## 932    JonesandClark
## 933  jeremiahturner3
## 934    defencealerts
## 935         lilm0ldy
## 936         BradvanL
## 937          Local12
## 938       Brightidea
## 939         ximena86
## 940  ImnotaREALgamer
## 941  cazenave_franck
## 942  USNationalGuard
## 943       MC_PATODIN
## 944       bat_biomes
## 945     MommyMagen00
## 946            ECADF
## 947    openletterbot
## 948   InlandRegional
## 949  AmazingDouglass
## 950        boyrishan
## 951     employmentin
## 952         PHSAofBC
## 953         mgotoo16
## 954         TheQuint
## 955       Sanvers_TV
## 956           NASWCO
## 957   TheBindingSite
## 958     SDReedAuthor
## 959        pee_nocle
## 960  TeacherKimKanof
## 961       Gwydion620
## 962        Queendode
## 963         JCoops84
## 964        rpodyssey
## 965        insideHPC
## 966  StandUpAgainOrg
## 967     Skol_Lockyer
## 968      LauraBockov
## 969      Greg_Russak
## 970      dgldemocrat
## 971     espactonline
## 972           smbubb
## 973    Evelyn1234515
## 974  sadiqsiddiqui98
## 975    thenglishpost
## 976       oniisalmon
## 977           gltmcl
## 978    ABari47910292
## 979      SandiCanada
## 980         Ged_2345
## 981         aightdom
## 982  LegalAidChicago
## 983         syahirmk
## 984       MontaudPro
## 985   InHealthPolicy
## 986  WaleedA91786682
## 987        TomJawetz
## 988        juliakim6
## 989  ariyanalove_art
## 990     RetireMeASAP
## 991      PatNkongori
## 992      techxtrader
## 993  CityofRoseville
## 994         GusSaima
## 995      misskatiele
## 996           nikrdc
## 997     ISDFPR_Watch
## 998       frog_happy
## 999     realMJSharma
## 1000     mass_marion
## 1001       POWLaroid
## 1002           deyjy
## 1003         ZeliaLH
## 1004     julesbasham
## 1005  AndrewGarbutt7
## 1006          vtnews
## 1007  fionamceachran
## 1008   mandafredette
## 1009 Susan_Larson_TN
## 1010  CHPBaldwinPark
## 1011 lorirambojones1
## 1012    yp_hollywood
## 1013  insidethebadge
## 1014 tripuranewslive
## 1015      AmahPepple
## 1016        tris1962
## 1017     CatFenneman
## 1018          Okizle
## 1019          rizzdj
## 1020   danagagliotti
## 1021     FLSpacePort
## 1022        MT_Strat
## 1023 meldewey_photos
## 1024     jorgeclave7
## 1025 SundanceConstr1
## 1026      mxvizcaino
## 1027   GBatschkewitz
## 1028    LuthWestland
## 1029 Chem_Processing
## 1030         Ezee_EP
## 1031      staronline
## 1032       WayneRTS1
## 1033    TaylorVecsey
## 1034  EnlivenmentNow
## 1035      ZahraNajaf
## 1036     SueDudasova
## 1037           NYAIL
## 1038        Maan0078
## 1039        Leah_CBR
## 1040        daraojo_
## 1041    grant_nissly
## 1042    BethWarrenCJ
## 1043      RamyRefaey
## 1044      WhatNibber
## 1045        _MP_COM_
## 1046 angelikastalman
## 1047  pride_ub_inOKC
## 1048  apinchofkinder
## 1049  BrickWallDef63
## 1050 amelievondollar
## 1051 JustAGirlInAWo1
## 1052  masculinehairs
## 1053    rural_remote
## 1054   VariousStrata
## 1055  _General_Chris
## 1056    enterprisem3
## 1057   CCLeicsPolice
## 1058 kendall_downing
## 1059       kwmcnamee
## 1060    SpectatorUSA
## 1061     caitlinpwll
## 1062     milmilarski
## 1063     BootStrap40
## 1064      Kilroy0826
## 1065     GASANTWITER
## 1066       Buzzicati
## 1067      Mdalawize2
## 1068    eatrightchef
## 1069   jj_fishsticks
## 1070  washingtonpost
## 1071            KRLD
## 1072         BBabaya
## 1073   OurRevBoulder
## 1074   pharmacistbob
## 1075   TovarRasputin
## 1076   Hannah__Maire
## 1077 clickonthisshow
## 1078    answeringlaw
## 1079   Greasy_Boiler
## 1080          WOODTV
## 1081       JaronSpor
## 1082         erikrex
## 1083        JeWellen
## 1084   naija_reports
## 1085         borwick
## 1086      ByeDon2020
## 1087 GovernorBullock
## 1088   RichardKNaidu
## 1089         drWilda
## 1090      SteadyRiot
## 1091        grovesdj
## 1092       akaadiele
## 1093     lesterleesm
## 1094      mamacriJKS
## 1095 Sheikabirtapawi
## 1096  mikehewritesit
## 1097    Truthers4USA
## 1098       WTVYNews4
## 1099    007maverick1
## 1100      duygumssuu
## 1101 HealthyOklahoma
## 1102   JacquesLouisa
## 1103 cananewsonline2
## 1104 Sharath69919177
## 1105   alandrummond2
## 1106    poppyred2002
## 1107    ananewsflash
## 1108    xoxo_beautee
## 1109   lorna19319201
## 1110 MichiganAdvance
## 1111   sharliebrooks
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               text
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hopefully when the White House reopens we’ll  have new owners in there too !!!! https://t.co/1EkTXt8nkW
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                            All governments in the world are trying to manipulate the COVID-19 statistics. I trust countries that allow for free speech and free media. That doesnt mean trust media always being accurate. Question everything, but be open minded and come to your own fact driven conclusions.
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "No health service in the world would be able to deal with #coronavirus if the public don't stay indoors..." Stay in, muppets.
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wow!\nCovid-19 Deaths per million:\nGermany: 3\nUSA.         4\n\nWhy is the default in the media, America is bad? https://t.co/MlXSa38wSG
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Best quick summary I’ve read of the (temporary) changes to the Ohio educational system due to #COVID19 and HB197. #ohedchat https://t.co/IPjKqwD0UE
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Does fitness play a part in the recovery process? Here's what happened https://t.co/UvpOGd26CX
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            South Georgia Medical Center, like many other Southwest Georgia hospital systems, are releasing their COVID-19 numbers daily. https://t.co/rLV1idTNv9
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Although the world should be focusing on how to solve #COVID19, Asian-American advocacy groups and researchers confirm that they have seen a surge of verbal and physical assaults. This needs to stop! https://t.co/bVBxt9kIfd #coronavirus #racism
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RIP COVID-19 Hero. #covidfallen https://t.co/8SjgVqlRpA
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                               3. @unusual4tune could you tell us a little about the symptoms of COVID-19?\n\nPatients with COVID-19 may have mild to severe respiratory \nillness with symptoms of\n     <U+0001F912>  Fever \n\n  <U+0001F62B>  Cough\n    \n<U+0001F975>  Shortness of breath
## 11                                                                                                                                                                                                                                                                                                                                                                                                Our firefighters, along with #firstresponders &amp; #healthcareworkers throughout the Region, continue to serve our communities every day.  \nDo your part - #stayhome and be safe.\nHelp prevent the spread of #COVID19.\n<U+0001F692> If you do go outside - keep a fire truck width apart! (2 m/6 ft) https://t.co/AjrMprEZYA
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Day 4 of #onlineschool - the new TA managed to convince me to take a nap with her. <U+0001F926><U+0001F3FB><U+200D>♀<U+FE0F> It was a good one. #coronavirus #StayHome https://t.co/RRlalxxGl1
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @StephenKing Apparently working doesn’t mean much to investing. Building, growing, healing, producing are all just platitudes in the age of Covid-19 #TwistedLogic
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @RudyGiuliani @jeffgiesea @charliekirk11 Preventative measures that succeed in preventing people from getting COVID-19 have a 100% "effective" rate. I'd rather not get sick in the first place, thank you, Doctor G, Rudy.
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hospitals urgently need Personal Protective Equipment (PPE) to help fight #COVID19. You or your company can help by donating supplies. #Toronto let’s keep our healthcare workers safe. We are in this together. https://t.co/a2hmhmI8l3 #thePPEdrive
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Immensely proud of my #community  #kwawesome -View from the ‘Loo: When Waterloo Region helps A distinguished history of lending a hand is coming to bear for good during the COVID-19 crisis https://t.co/cPrTPeRA1Y
## 17                                                                                                                                                                                                                                                                                                                                                                                                                   Even if the #quarantine forces us to #StayAtHome, our #LumipocketLT multifunctional #3Dprinter engraves with the #laser always new materials, such as this colored #chalk!\n#colors #coronavirus #customization #lumindustries #engraving #laserengraving #print3D #3D #allinone #DIY https://t.co/8rr4aG6IZ7
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now coronavirus is playing Bigg Boss with the whole nation #covid19 #lockdown #janatacurfew #India #ckmkb
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                   and on the basis of such determination, the Secretary of HHS then declared on March 24, 2020, that circumstances exist justifying the authorization of emergency use of medical devices, including alternative products used as medical devices, during the COVID-19 pandemic
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                         The fog is creeping in on bloody tiger's feet. Direct news from a friend he's had a friend die from NYC COVID-19. Wifey's feverish sister can only get a test because her Long Island employer is restricting plant access. It's coming. #dumpTrump and #lyingGOP before they kill you.
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bahrain, Belgium Report COVID-19 Treatment Touted By Trump Is Working For Patients | Zero Hedge https://t.co/s33ko7weA4
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Should non-violent offenders be released from prison to avoid COVID-19 spread? https://t.co/LlCiGxCk4q
## 23                                                                                                                                                                                                                                                                                                                                                                                                                          Open invitation for Sr. PMs &amp; PM leaders:\n\nI'll be doing Zoom sessions (1:1 &amp; small groups) with folks who are looking for a new role due to COVID-19.\n\nI clearly can't promise a great new job, but am happy to assist you with PM skills development &amp; job search prep.\n\nDMs open.
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How you laughing it up &amp; working along side a fellow RN &amp; next thing you hear is that they coded &amp; died from COVID-19?!?
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #CoronaVirus update \n \n Total Cases= 596,723 +702\n Total Deaths= 27,352 +11\n Total Recovered= 133,355 +298\n\n Active Cases: 436,016\n Closed Cases: 160,707\n \n Next update in 30 mins
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I've just got a text from my mom saying her cousin just died due to COVID<U+2014>19.\n\nDidn't know him well, but what I know is that he was a *healthy* 47-year-old man.\n\nStay home guys, stay safe. It ain't no joke.
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Join us for another free webinar series next week - March 30th 3pm &amp; March 31st - 10am. Click link to register - https://t.co/hEWg9XKzjp suitable for youth &amp; adults #YQGStandsStrong #COVID2019 #mentalhealth https://t.co/y4REXp8XAj
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The #coronavirus (COVID-19) #pandemic has changed life across the country. The #IRS and Congress have responded with some #tax and financial relief. Here’s a brief rundown of what’s been provided so far. https://t.co/rf2l3q7uU4 https://t.co/3R3CFoA1kc
## 29                                                                                                                                                                                                                                                                                                                                                                                                                     So while everyone is scrambling for masks and respirators this is going on behind the curtains in Oz! What a gigantic waste of dollars when Trump &amp; Co. won’t cover the Covid-19 Pandemic? What the Hell is going on here.....<U+0001F621><U+0001F92C><U+0001F6D1><U+0001F921><U+0001F3AA><U+0001F6D1>
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We thank all nurses for standing up against COVID-19 during this time. Sign our card to thank your local nurse:  https://t.co/3QUbglO8sC
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @PrinceMolekga @kulanicool My people please the vaccine doesn’t exist apparently it’s there to kill us soo please I plea with you don’t take vaccine for Covid-19 that’s a death penalty for those who take it
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thank you. Hated seeing so many people get this story wrong. https://t.co/PWL6sG3uuo
## 33                                                                                                                                                                                                                                                                                                                                                                                                            ***JUST IN***\n\nCollin County @JudgeChrisHill reacts to a statement made earlier tonight by Dallas County @JudgeClayJ. \n\nJenkins said there was a call today between medical officials and 10 other regional county judges to unify COVID-19 approaches and that Hill wasn't on the call. https://t.co/de4psxyTNq
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How can business leaders manage the stress and uncertainty surrounding the #coronavirus pandemic? Embrace the fear instead of rejecting it, says @RebootHQ CEO @jerrycolonna: https://t.co/g9oIuFwEtd #eventprofs #covid19 #teammanagement
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     New employer content on COVID-19 on Capell &amp; Howard's website feed. Check it out. \n\nhttps://t.co/y4FPJDrMZB\n\n#humanresources #EmpLawGods #employmentlaw #Covid19usa #businessadvice
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Beautifully explained - simple reason for social distancing. \nThank you #bbcnews \n#COVID19 https://t.co/XO6yv79ujQ
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @Pontifex with no congregation because of #COVID19 \n\nBut back home bado tunaambiwa  twende kanisani. https://t.co/zcU9Q0S1IT
## 38                                                                                                                                                                                                                                                                                                                                                                                              Alarmed by <U+0001F1ED><U+0001F1F7> govt plan to reduce protection for workers amid #COVID19. Outbreak cant be a pretext for nullifying labor legislation re: remuneration, working hours, sickness and holiday provision. @IUFglobal &amp; #EFFAT wrote to Andrej Plenkovi<U+0107>  to urge drop of plans https://t.co/krtFLaIsap
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   COVID-19: Behavioral Health Core Crisis Continuum as Essential Services - #CrisisTalk https://t.co/z0wPNruhBh
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                       I'm working on the #BuildforCOVID19 global hackathon &amp; wondering if there are resources for developers that are discounted/free during #coronavirus pandemic that would help to build /deploy ? I'll compile a list @sundarpichai @awscloud @Microsoft #tech @lessin @FrontendMasters
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                        3/25 CoVID-19 cases were 62, 045-today 3/26 cases are 80,000 +day isn't over... Deaths up over 1100 but the day isn't over ! \nTESTING: NOT EVEN CLOSE TO BEING ADEQUATE\nbut is why we're beginning to see the tip of those exposed-GET THE VENTILATORs+SAFETY mat'ls to front line NOW
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A further 70 cases of coronavirus have been reported in Queensland. #coronavirus #7NEWS \n\nhttps://t.co/ikPk1lwttk
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   this is the fake president that CNN has enabled (via mostly uncritical coverage) for years. the man is a pathological liar, at the very worst moment. #TrumpVirus #COVID19 #StayHome #FlattenTheCurve https://t.co/HRIkVYVExn
## 44                                                                                                                                                                                                                                                                                                                                                                                                                    <U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C>\n\nSOMETHING MORE HAPPENS \n\nIs China hiding COVID-19 death toll? 21 million cell phones disappeared, why? https://t.co/ctFCBSD9Av
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       lets be real, so far the real winners of the damn #coronavirus are #JoeExotic and everyone who bought #zoom stock last year<U+0001F937><U+200D>♂<U+FE0F>
## 46                                                                                                                                                                                                                                                                                                                                                                                                              Please join us, Friday, 3/27/2020 at 6:30 P.M. to speak with an expert in infectious diseases and immunology. Dr. Valerie E. Cadet will answer questions you have on the current pandemic and give an in-depth explanation of COVID-19.\n\nClick here to register: https://t.co/vHmdhLfYqd https://t.co/KSWprgXAC2
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Queen Pissed After MI5 Infect The Wrong Son With Covid-19 https://t.co/7szQFn1tk3 via @TheunAustralia
## 48                                                                                                                                                                                                                                                                                                                                                                                                                I appreciate it's a complex situation and there are plenty of questions still to be asked. However:\n\n<U+2022> The self-employed in my constituency cannot wait until June to receive support. \n\n<U+2022> It's as simple as that. \n\n<U+2022> We need to expedite this support. \n\nImmediately #coronavirus
## 49                                                                                                                                                                                                                                                                                                                                              YEAH <U+0001F973> we’re back up &amp; running<U+0001F3C3><U+200D>♀<U+FE0F>a more powerful &amp; stronger website big thankyou for your patience it’s been tough for all but behind the scenes we haven’t stopped just take a look 24/7 totally committed <U+0001F44A><U+0001F44D> #COVID2019 @thechefsforum @BBCLondonNews @SabrinaGhayour @MGaletti01 https://t.co/VhuirS7Esq
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @CodyThorn They’re out of control. And COVID-19 spread there is gonna be really bad. Calling it now.
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Death rates in the UK from #coronavirus go up by a whopping 31 percent to 759! https://t.co/DD55NNcOcK
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @Reboticant Both. \nThe email is real. \nGo take a look...\nhttps://t.co/EF5T5n7Gvh
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                 @Alienware I am taking my 7yr old for COVID-19 testing tomorrow!!...  He has pneumonia right now and hes scared to death...  Send your extraterrestrial help!!..\n\nYou never think it can happen to you.... Until it does.... <U+0001F637><U+0001F637><U+0001F62D><U+0001F62D>
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Alesha is extremely vulnerable to #Coronavirus. Children like Alesha - and their families<U+00A0>- need our support more than ever. Please help us to care for seriously unwell children - https://t.co/G1s2t2YPQ7 <U+2764> https://t.co/5z3YX2PzVP
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        hoarding raid  \ntwo weeks later  \nstill empty shelves  \n#haiku #coronavirus #pandemic
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Did President Trump Call COVID-19 A Hoax? NO!!\n\nhttps://t.co/gk3VPrjOdg @wbcknews
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How different countries are reacting to the COVID-19 risk and their governments’ responses. https://t.co/wPJ1u7ne8I https://t.co/wPJ1u7ne8I @cambridge_uniより
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               #AddictionTreatment Centers Make Adjustments During #COVID-19 Pandemic https://t.co/PrajNhCplf #fightaddiction #addictionrecovery
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @angryablib Hi, you can read it here: Thread by @RobWarrenMD: @JasonNixonAB. We expect we will have our first COVID-19 case in Sundre next week. Your… https://t.co/bGInn0Eqm5. Share this if you think it's interesting. <U+0001F916>
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #COVID19 please help ushttps://www.gofundme.com/f/1w340aamlc?utm_medium=copy_link&amp;utm_source=customer&amp;utm_campaign=p_na+share-sheet&amp;rcid=2c3278c725b04fcd8863e6c18d802ded
## 61                                                                                                                                                                                                                                                                                                                                                                                                                    This is not an Olympic, showing the medals by country Gold, Silver, Bronze, this is the most difficult tragedy on humanity, which we are seeing/facing, can’t believe ppl are dying and we are watching/counting live. May God bless/protect us and forgive us. Ameen. #coronavirus https://t.co/iNNkAJRW4d
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hey @HomaTav, look what popped up in @PublishersWkly!\n\nhttps://t.co/4p9oKAQPx9
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Confronting the possibility of extreme animal care shortages and disruptions to research in the wake of the #coronavirus, U.S. universities across the country have asked labs to think hard about the mice they actually need. https://t.co/O6YE6eZDRC
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A glimmer of #COVID-19 optimism via @ty_olsen  https://t.co/wZsYM8xbKF
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @BenjaminNorton A carrier has to head to shore over coronavirus. \n\nPompeo is such an idiot he thought the aggressor 7,000 miles away has an advantage during a pandemic!\n\nhttps://t.co/bG0HHYnd38
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Part of me was really hoping that the sheer number of people wearing masks and gloves would help illustrate social responsibility to those with more of an... uncouth style.\n\n#maybenot #gross #publichealth #covid19… https://t.co/A2cBV89aKp
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Heal:    https://t.co/pJgGxUrt8K …\n\n#addiction #alcoholism #recovery #RecoveryPosse #coronavirus #sober #sobriety #treatment #addictionrecovery  #bipolar #coronapocolypse https://t.co/yvuAuNxgnY
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                            #RememberTheTime just the other day, #impeached #Trump announced the #USA only had 15 confirmed cases of #Coronavirus exposures &amp; predicted zero cases quickly, 19,800 cases ago. #HeLied #YouBeenConned #DrinkingTheKoolAid #TrumpLiesPeriod #WhenWordsAreEaten
## 69                                                                                                                                                                                                                                                                                                                             #BREAKING: At the current rate, #COVID19 cases in Italy and the United States will surpass China in the next 24 hours.\n\nThursday PM Update:\n\n<U+0001F310> 521,000 cases worldwide\n\n▶<U+FE0F> 81,800 China <U+0001F1E8><U+0001F1F3> \n▶<U+FE0F> 80,500 Italy <U+0001F1EE><U+0001F1F9> \n▶<U+FE0F> 79,700 USA <U+0001F1FA><U+0001F1F8> \n\n(data from @JohnsHopkins) https://t.co/GUH37mtpYB
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @News24 Let’s not rejoice when people get #COVID19 no matter the race, class, social standing,political view or nationality. Once this thing hits the townships, all hell will break loose #CoronavirusSouthAfrica #COVID19SouthAfrica
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indy 500 shifted to August due to Covid-19 https://t.co/HWgZI6ySBB https://t.co/FFchjBpieW
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                        @BSYBJP @narendramodi Most H'nble and Respected Sir,\nI just have a very small idea to share with you sir. we have thousands of State transport buses off from sevices.  we can transform them into mini moving isolated wards to test &amp; treat the affected people from  covid - 19.
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Curogram Streamlines COVID-19 Testing Process for United Memorial Medical Center https://t.co/WvhOfIS85G https://t.co/sr778BlgJv
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @lampert_poliana Covid-19
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                            End Apartheid now\n#coronaviruspalestine #coronavirus #endapartheid #endoccupation\nGantz will block annexation, Palestinians are at last a ‘player’ <U+2014> J Street sees upside in Israeli politics <U+2013> Mondoweiss https://t.co/xs0CIqs8OD
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is an #EmergencyAlert #DPANow #CoronavirusOutbreak #COVID2019 https://t.co/Do6uSWwDbD https://t.co/PYsuhwicZZ
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In memory of all those who have lost their lives due to #COVID19 &amp; to all the family &amp; friends who couldn't be present at their loved ones funerals @PallCare_Nurse #pallicovid https://t.co/X0MSmPLzfl
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Just to say: I was baking #bread from scratch before #coronavirus made it cool. So back off gays, stop stealing my niche. https://t.co/L6JhtAKxlU
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is called a marshmallow hug  took food up to my grandchildren staying safe. #coronavirus https://t.co/fpjn2FX1tD
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         61% of U.S. Adults Are Stressed About #COVID19: https://t.co/Y1EHDdfV1h
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This kind of police brutality in this country is un called for the police are fighting the citizen of kenya and not Covid 19 the only solution is a revolution @MigunaMiguna @RobertAlai @NelsonHavi https://t.co/LmwDRM7vn7
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Join a live panel discussion on COVID-19 with BU Health Experts tomorrow from 1-1:30 pm. \nGet details here: https://t.co/cKOGqn0pys
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                          @socialfoodhour @Reddylane who I've been supporting this year has had the challenge of increased demand for her amazing fresh fruit and veg from their #socent Market Garden .... deliveries have had to increase and services increase due to #covid19 #SocentCovid19
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        “A beautiful day.” The POTUS’ first words during a task force briefing during a pandemic. #COVIDIDIOT #potus #trumpvirus #coronavirus
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                 Our demo system in @securedatakit is called Rid Our World of Disease....Yesterday so all of the #covid19 datasets we've created start with "rowdy" and every time I write a query I think of Rowdy Roddy Piper. \n\nI've spent too much time with this data. Send help. https://t.co/J0QIT8T3Y4
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why can't Buhari administration pay salary for civil servants in all 36states to have someone to buy foods at home for Covid-19 pandemic problem???@eggheader @ProfOsinbajo @kfayemi @APCNigeria @OfficialPDPNig @DigiCommsNG @NCDCgov
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stop smoking <U+0001F6AB>\nStop alcohol drinking <U+0001F6AB>\nEat healthy foods <U+0001F375>\nDrink water<U+0001F4A6>\nWalk, run, ride, exercise <U+0001F3C3><U+0001F6B6><U+0001F6B2>\nMaintain.    social       distancing\n#Coronavirus is not invincible!!
## 88                                                                                                                                                                                                                                                                                                                                                                                                                             Please take a moment to join us in thanking our amazing #HealthCareHeroes on the front line of the #COVID19 pandemic. Your strength and bravery have not gone unnoticed by the world! #NYC #WeStayHereForYou #PleaseStayHomeForUs #ClapBecauseWeCare @nyphospital @Columbia https://t.co/5ZlQ5s7NYz
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             #Coronavirus: strategic considerations for investment advisers considering whether to apply for temporary relief from filing obligations due to COVID-19 https://t.co/inCWvQ39Oe #investmentadviser #FormPF https://t.co/SkSwZ62vkV
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #AskZee\n\nAs REMDESIVIR  and FAVIPIRAVIR shown effctive treatment against #COVID19 in china , japan and south korea then why india is not considering those drugs ????
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                             Covid-19 is real and seeking protection against it , is allowed religiously or secularly ...\nTry to know its symptoms..\nAnd don't just go to hospitals  endeavors to contact NCDC or any relevant agency in your state #CovidNGR #StayAtHomeAndStaySafe #StaySafeNigeria #COVID19
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Kenya government has launched war against  it's people in the name of fighting COVID-19. Look what is happening in Mombasa.
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Some #DisneyPlus shows have been called off due to #coronavirus https://t.co/SbhqkEYnIc https://t.co/6Zylggaa62
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            China bans entry of foreigners in move to curb the spread of virus #tcot #tlot #teaparty #MAGA #coronavirus\nhttps://t.co/v9hvtf19Fk
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Just listening to an epidemiologist who gives daily updates, and he is confirming that COVID-19 is indeed comorbid with the loss of taste and smell.  Just some info to keep an eye out for.  Also, apparently, the virus can cause conjunctivitis, so PPE!
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Infographic] Covid-19 update: 927 confirmed cases in South Africa. Our infographic also indicates current global numbers: https://t.co/rwmKI0rKOO https://t.co/rk1DCFluX1
## 97                                                                                                                                                                                                                                                                                                                                                                                                                Wife: I don’t care. Just entertain the kids.                                                           Me: Noted                                        #dadsinselfisolation #StayAtHome #COVID #COVID19 #COVIDIDIOT #CoronaLockdown #CoronavirusOutbreak @curnwah158 #covid19australia https://t.co/jmeN5x2csK
## 98                                                                                                                                                                                                                                                                                                                                                                                                                 #Myositis patients, join us TONIGHT, Thurs., Mar. 26th, at 7 PM for COVID-19 and Myositis, a Patient Video Support session. Let's discuss what we are feeling and support each other. Add to your calendar. See details  https://t.co/Wt1pcWorS7 #inflammatorymyopathy #myositissupport https://t.co/DcfecA3aFl
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Filtering ODE with Random coefficients #COVID19 #mftg https://t.co/XBHt1BhPJr
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Favorite @Simpsons meme I’ve found so far related to work and #COVID<U+30FC>19 https://t.co/Di8otjSMXJ
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Coronavirus COVID-19 FREE\nPrintable ESL Lesson!<U+0001F9A0> <U+0001F637>\nDownload link: <U+0001F447><U+0001F447><U+0001F447><U+0001F447><U+0001F447> https://t.co/Xamzjtw5lf https://t.co/v41CuZqlmt
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Various #COVID19 reports include the prohibitive cost of ventilation &amp; ECMO in the US....so proud to work for &amp; always grateful for our NHS   <U+2764><U+FE0F><U+0001F9E1><U+0001F49B><U+0001F49A><U+0001F499><U+0001F49C>
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Salute to our that Doctors who are continuously trying to save our lives. <U+0001F614><U+0001F613><U+0001F62A>\n#coronavirusinpakistan #CoronaLockdown #COVID2019
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @sal_castaneda Could become a Post-Wuhan Coronavirus (COVID-19) Outbreak option. <U+0001F60E>
## 105                                                                                                                                                                                                                                                                                                                                                                                                              I learned from #COVID19:\nThe man of the 21century,with all his claims and a wave of disbelief in God,has become so powerless that he cannot even guarantee the lives of the leaders of the developed countries against a virus that is not even visible to the eye.\n#ThePromisedSaviour https://t.co/epgdnVvYBN
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                @RepKenBuck Sir, who owns "Washington's Opera House"? Answer: the United States people. While you may not care about the maintenance of our assets, I do. Your disingenuous criticism here is only equaled by your dangerous downplay of the COVID-19 pandemic. You, sir, are bad for Colorado.
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Double Mask Industrial Supplied Anti-COVID-19 Face Masks for Medical Experts and General Public https://t.co/kFBam4NIVq https://t.co/uUXVWRqqVO
## 108                                                                                                                                                                                                                                                                                                                                                                                                                              @RudyGiuliani @RealCandaceO Rudy! It was so nice not seeing or hearing from you for quite a while! So, the 1,000 casualties so far due to COVID-19, and those we will see in the future, are acceptable, correct? If that is indeed your perspective, here’s to seeing you among the next 1,000.
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               @DerbysPolice @DerPolDroneUnit Haven't you got better things to to do than make fancy videos? Maybe arrest the man who said you can't catch covid-19 on the tube then proceeded to pack people in like sardines?
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                   Talks are underway between #Iran guild of fuel station owners and the government to partially shut the stations, the guild’s secretary says adding, “High number of our employees have been infected with #COVID19... Gasoline sales have plummeted 70% as well.” https://t.co/eWVWy8kX3W
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                 @NCDCgov would later visit the hospital to inform them that the patient tested positive to #coronavirus &amp; has since been moved to Yaba.\n\n@NCDCgov has ordered immediate shutdown of the hospital but the source says this order has not be fully carried out by the hospital management.
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Another Greetings Card Commission for a PCSO that is leaving to become a PC! Extra poignant to create something nice for our key workers during the #COVID2019 lockdown in the UK. <U+0001F46E><U+200D>♂<U+FE0F><U+0001F3A8> https://t.co/67AppPJ6eA
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Does anyone know (or have) their employers' Covid-19 policy? We're trying to write one, which goes past our normal extended-sickness policy, but IANAL and I'm unclear if, for example, we can treat caring for a relative like sick leave, or what.
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Prevent the Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/6VeOo0vFOM
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        COVID-19 Is Not Even Close To America's Biggest Problem https://t.co/Mw5tEE91IP https://t.co/GqG2RJircj
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Look at Italy #COVID19 \nYesterday's death toll in Italy Rose to #724 https://t.co/yTva4mX2D7
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Christmas lights shining hope for people amid the COVID-19 pandemic https://t.co/jnowQfVScu
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Scammers using COVID-19...@CNBC 'Coronavirus fraudsters prey on fear and confusion with fake products, email scams' https://t.co/VTzPMmmBVu https://t.co/hqrUmpzp25
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Clot-busting drug may work in Covid-19 emergency: Researchers - india news - Hindustan Times https://t.co/piI2wzlPPj @PMOIndia @ICMRDELHI @atulkasbekar @RahulGandhi @LilavatiHRC @HospitalHinduja @ndtv
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Superstar! #coronavirus https://t.co/sGigLveqxS
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @PatriqKanyomozi <U+0001F606><U+0001F606><U+0001F606><U+0001F606><U+0001F606>Ba wa Lucky, Bebe will send you goons harder than #COVID2019. #StaySafeStayHome
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We are really about to hit 1000 covid-19 deaths in a matter of days \n#bbcnews
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                  PLEASE STOP GOING ON FLIGHTS. \n\nThe Uber driver who picked up NY’s 1st identified CoVid-19 patient is dead. He died Tuesday am. It was a 20 min ride. \n\nFor 3 months I’ve been trying to halt flights. look who is still traveling. east coast will be ravaged. https://t.co/deXuwR3Brw
## 124                                                                                                                                                                                                                                                                                                                                                                                                                  Ontario confirms another 135 cases of #coronavirus, and Prime Minister @JustinTrudeau announces an increased payroll subsidy for #smallbusiness\n\nAll this and more 680 NEWS TO GO with @SteveRobertsTO and @SarahParrott7\n\nWe're here for you anytime at\nhttps://t.co/h9p45U4Tka https://t.co/uW720zoAjr
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                               Currently we are just waiting for Mr.President to announce that "all registered  Kenyans citizens to expect a massage from mpesa....\nConfirmed you have received Ksh......... From the government of Kenya....your mpesa balance Ksh......\nThis will help you counter Covid_19
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Speechless <U+0001F494><U+0001F614> #COVID19 #London #CoronavirusOubreak #CoronavirusOubreak https://t.co/IYvIg4DimG
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I swear we are fighting two pandemics Covid 19 and RSS .
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cyber Version of 'Justice League' Launches to Fight COVID-19 Related Hacks: Goal is to help organizations - especially healthcare entities - protect against cybercriminals trying to take advantage of the pandemic. https://t.co/RpaYhDRYi2 https://t.co/10hFmHmEre
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On today’s episode of COVID-19 in Oklahoma, host @benfelder_okc speaks with State Superintendent Joy Hofmeister @joy4ok about the decision to pivot to distance learning and what led her to make this proposal. #oklaed\n\nhttps://t.co/E40ww9Sjw2
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          With a symphony of sound from the Port and Bay of #Gibraltar the salute commences...thank you to all of our essential services on the Rock\n\n#COVID19 #ClapForTheGHA
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will be sharing 1 film from #DokuFest production, each day during the #COVID<U+30FC>19 #QuarantineAndChill #OneFilmADayKeepsDoctorAway\nFilm #14 THE LONGEST SUMMER by Gentiana Gashi\n#DokuFest #SweetAndShortQuarantine https://t.co/PUtAfr6xIr
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @Vijayabaskarofl \nSir,please read this article,got a good news for corona virus infected people,Thank you\nhttps://t.co/OT1WlqGAJw
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fauci says #US needs to be prepared for #coronavirus to be cyclical https://t.co/ZWZNPmyBtm
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 "Coronavirus cuts: Airlines slash snacks, drinks and middle seats during pandemic": Major airlines in the U.S. are adjusting their in-flight practices and policies to help fight the spread of COVID-19 in the skies.,https://t.co/2CXvE0RN7P
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @googlepodcast has been helpful during this period. #COVID<U+30FC>19 #StayHomeSaveLives #LetsFightCovid19 https://t.co/MnNwSAPpjZ
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Farmers offer safe haven for grey nomads with nowhere to go due to COVID-19 https://t.co/JarCpdhL3f
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Heard Joe Biden is having SNIFF withdrawal symptoms. COVID 19 sure has a way of messing with someone's life
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @realDonaldTrump I know you don’t read much about historical lessons learned, but please give this a scan:\nhttps://t.co/ts92Hg4mnX
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                     Introducing The Monitoring COVID-19 In Canada Dashboard.\nA #COVID19 viz tool for Canada - designed with @theresabernardo &amp; Kurtis Sobkowich (@OntVetCollege).\nRegardless of what data suggest - follow health expert guidelines; stay home; wash your hands. https://t.co/257gWLZnMH
## 140                                                                                                                                                                                                                                                                                                                                                                               A fantastic resource from the GC Health Dept for helping children, teens &amp; adults alike process what’s going on in the world around us right now. Staying<U+00A0>#HealthyatHome<U+00A0>includes mind as well as body. Take a listen<U+00A0>https://t.co/4lBwXOlkA1 #WeAreGCconnectEd<U+00A0>on<U+00A0>#TeamKentucky https://t.co/Y7nATRLxvX
## 141                                                                                                                                                                                                                                                                                                                                                                                                @BJP4India @narendramodi @nsitharaman @ianuragthakur Sirji, pls send emergency buses to Delhi UP Highway. \nPoor women &amp; children are walking to their hometown.\nThey are migrant labourers, not well educated to understand COVID-19.\nPls do it on compassionate grounds.\nOne time emergency service only\n<U+0001F64F>
## 142                                                                                                                                                                                                                                                                                                                                                                                                        The March 27 issue of e-Merriam News is now available!\n\n- See how many of your neighbors have already filled out the 2020 Census! \n\n- Get updates on COVID-19 in JoCo.\n\n- The Merriam Community Center opens in June. Sign up now to become a charter member!\n\n https://t.co/Iqjs7j6Rop https://t.co/uWxznu4FyW
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Anyone who missed the 31 January deadline has four weeks from 26 March to file their 2018-19 return and benefit from the self employment support scheme #COVID2019 #selfemployed
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                          Kathy Griffin was hospitalized for an abdominal infection #Coronavirus symptoms include dry cough/tightness/pain in the chest, trouble breathing and a fever.The hospital was following CDC guidelines which is why they didn’t test her\nhttps://t.co/QjoCiuyAoE via @gatewaypundit
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Creative way to fight Corona!  <U+0001F64F>\n\nhttps://t.co/5NfnkUIcKB\n\n#ChineseVirus19 #CoronavirusOubreak #IndiaBattlesCoronavirus \n\n@narendramodi Sir, @PMOIndia \n@ZeeNewsHindi @aajtak @indiatvnews @republic
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This a really good article and puts some perspective to a very difficult time for all. \nThe evidence on Covid-19 is not as clear as we think | The Spectator https://t.co/BE8RiMX1pa
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                   #IndiaFightsCorona do follow the rule of the government. Just stay 21 days at your home to see your 42 years <U+2795>ahead future. You can do lots of work at your home like you can take care of your family. You can help them in their works. You can share your past with them. #COVID19
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @realDonaldTrump \nPlease answer this Mr. President. \nWill sole proprietors get a check? We are business people that cannot conduct business if the economy is locked. \nWe need to pay bills too. Utility bills are not stopping because of COVID-19.
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sowore Alleges Plan By FGN To Inject Him With COVID-19 Over Abba Kyari News Report. https://t.co/EJSTlLQI5z https://t.co/58xhTVT6x3
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Request a swab kit to register as a potential blood stem cell donor #COVID19 #\n<U+2066>@DKMS_uk<U+2069>  https://t.co/1G7fNQntrZ
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cried a lot tonight for a really beautiful show that no one will see. Tonight I am not ok. And that’s ok. Tomorrow will be new and tomorrow will be beautiful and God is always good. But Covid-19 can suck a dick. And that is all.
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It's okay to feel heartbroken. \n\nIt's okay to be angry.\n\nIt's okay to mourn the life you knew before COVID-19. \n\nThis pandemic is disrupting everyone's "normal" in so many ways. Give yourself time to grieve.
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Senator Jimmy Hickey, Jr. presenting an amendment: \n\nSB2 #1 <U+2013> An act to create the COVID-19 Rainy Day Fund; to transfer funds to the COVID-19 Rainy\nDay Fund; and declare an emergency.
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          good thread about the #covid19 situation WRT to the working class vs the interests of capital https://t.co/E99fqDdSFg
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                          The Governor issued an EO ensuring AZ hospitals increase capacity for a potential influx of patients due to COVID-19. The order requires hospitals to increase bed capacity in the state by April 10, take steps to optimize staffing and maximize resources. https://t.co/lGpwdJlu1g
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                               @CNN @andersoncooper @drsanjaygupta Are the face masks and gowns that are being made from polyester or other material safe for use during Covid-19? I saw where Fanatics is turning the material that they would use to make uniforms into face masks and gowns.
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Make no mistake, now more than ever, stay home. #covid19 https://t.co/5MOoBKjp4a
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Monroe County coronavirus cases now include young child; fourth person dies https://t.co/jAWAhIr4we via @DandC #ROC
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We must maintain vigilance that the current global #pandemic is not used as an excuse to unnecessarily erode #encryption and #privacy laws and permanently remove our protections.\n\nhttps://t.co/dCjcS1OZ1x\n\n#infosec #COVID19 https://t.co/K2FderhGyA
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                             The $2 trillion stimulus gives #hospitals $100B to help treat #COVID19 patients but also to make up for lost revenue.\n\nThere are other provisions dealing with patient privacy and over-the-counter drugs.\n\nSubscribe to @BIPrime for all the details: https://t.co/5LwvfM0Eao
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I just herd about a cookout. WHY tf you outside DH having a cookout. YOU supposed to be inside. #Blackpeople #CoronaLockdown  #coronavirus
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                             Farmers seeking to find any good news revolving around the new coronavirus disease 2019 (COVID-19) will find some regarding 2020 supplies of seed, agricultural chemicals, and fertilizer. In most cases, supplies should be adequate and even plentiful.  https://t.co/mC5bkuGWwg
## 163                                                                                                                                                                                                                                                                                                                                                                                                                              BREAKING NEWS: Burundi is the only African country without any case of coronavirus. When the Minister Of Health was asked about the secret behind the zero case of covid-19, this is what he had to say; "It is very simple. We don't have the testing kits."<U+0001F923><U+0001F923><U+0001F923>
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      #covid_19 rant, #neworleans #mardigras #louisiana https://t.co/1L0idKreNh
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                  Is this the kind of stuff of which #CivilWar is made? #Trump did it to #PuertoRico after the disasters there -- now #Washington &amp; #Michigan? Says he told Pence not to call "governors who aren’t ‘appreciative’ of White House #coronavirus efforts" #covid19 https://t.co/xd0EJJdTsE
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If you are a City of Miami resident over the age of 65 or older &amp; are experiencing symptoms of #COVID19, please call 305-499-8767 to schedule an appointment to be tested at Marlins Park. #InThisTogether https://t.co/RMj16Rqo49
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @LaraLeaTrump @realDonaldTrump Is Covid -19 biologic weapon from usa?? To kill chinna and irak?? I heard that
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #COVID_19 : Chinese health authorities confirm patient zero 'had sex with bats' https://t.co/fU3c1WMNXi
## 169                                                                                                                                                                                                                                                                                                                                                                                                        Global chairman @SAFoundationN Mr. @SAfridiOfficial nominates Mr. @iamamirofficial , Mr. @harbhajan_singh and Mr. @CJordan for #DonateKaroNa Challenge to tackle #Covid19 pandemic, support the needy &amp; ensuring #HopeNotOut for all! #Stayhometosavelives &amp; #DonateKaroNa to the cause https://t.co/cO2FvADhW2
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Additional Information Released on SW Iowa COVID-19 Case https://t.co/J8Poeai6Ua
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Me when I see my next electricity bill\n\n#wfm #coronavirus #COVID19 #QuarantineLife #Quarantine #workingfromhome #workfromhome https://t.co/0rrW34bYVy
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                   Many Thank You  #Darling  @PrabhasRaju  @BTR_KTR  @KTRTRS  @TelanganaCMO  @alluarjun  @ssrajamouli  @JAGANTRS @JAYANAVEENTRS @Dr_RakeshTRS @trsharish \nEach And Every One Person  Plz Help This Our India \n#JaiHind\n#COVID2019 \n#caronavirus2020 https://t.co/kxReyWVRHP
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our MoneySense materials are not just for teachers - there's loads for parents and kids too! #StayHome #COVID2019 #financialeducation https://t.co/8pYop4aIx7
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+0001F4A5>All in One about COVID-19<U+0001F331><U+0001F331><U+0001F331><U+0001F64F> https://t.co/nK313jlJPe
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We're gonna kick coronavirus'es ass and save lives, says @NYGovCuomo ! <U+0001F64F> #COVID19 #coronavirus
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         COVID-19 model https://t.co/X7ryLz4S9r
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         COLUMN: Four reasons to hope that B.C. will win COVID-19 fight https://t.co/Sdtj8ItoPI
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @TheOfficialSBI \nThe Position at RUSU branches is critical after announcement of package by Govt.  Take more steps to protect staff and customers.  Gondhia Branch already closed by govt and all staff under self  quarantine. Protect staff from COVID-19.
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Coronavirus is sweeping the globe and the nation, here's what it looks like in California. https://t.co/SRGJ7qzbkh
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                           i realize many of you loathe The War Machine -- I'm not a huge fan myself -- but in an honest analysis sailors are workers, and you will be hard-pressed to argue that two floating nuclear-powered virus factories is a welcome development https://t.co/bDiK5TXQWn
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Mayor Hurley toured businesses on Kingsway with bylaw officers today, and was pleased to see that they are getting the physical distancing message. \n\n#PhysicalDistancingEqualsSocialResponsibility #COVID19 https://t.co/X9WAjSOOvb
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          could you please release prisoners from UK HMP PRISONS due to COVID-19\nPrisoner's\nPrison Officer's \nVisitor's\nAre at risk to get infected with Covid-19 There was a case in HMP .
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @rfeenstra2 @JanetBrown980 @CKNW @GlobalBC @jillreports @steeletalk Covid-19. Why isn’t there an edit option?
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #Covid_19 Reincarnation is Real and Loading.. This is going to be messy, as next Generation viral Nucleotide (protein) sequence maybe resist Alcohol effect ..\n\n@alykhansatchu https://t.co/dPkTKOvFXD
## 185                                                                                                                                                                                                                                                                                                                                                                                                   #COVID19 \n\n1524 pts with cancer\n- 12/1524 (0.79%) had SARSCoV2\n- median age 66\n- 7/12 had NSCLC\n- 5 (41.7%) treated with either chemo w/ or w/o immuno (3) or XRT (2)\n\nPt w/ cancer have higher risk (OR 2.3) \n\nAdmission and recurrent visits are risk factors\n\nhttps://t.co/b7lTk3L8iE https://t.co/V61ZDGcW5f
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hmmm, the conspiracy theory that this virus is a bioweapon is forming shape day by day... We'll see how it goes...\n#StaySafeNigeria #COVID19 #PresidentCovikk #TBJoshua https://t.co/AbIFsP9DdI
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                           Quick story:\nWife was using the bathroom.\nDidn't want to go and use upstairs 1.\nOpened door\nPeed a stream in which my cat Jack went right through said stream\nJack is...pissed.\nMoral of the story? Never piss outside with cats during a pandemic\n#COVID2019
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              me running home to #selfquarantine when I saw the #coronavirus coming\n\n https://t.co/XqR8QxP49w
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @SaharaReporters @followlasg @jidesanwoolu What am seeing in the picture is not even enough  for a local  government, talk less of a whole  state, I don't want to hear story after the covid 19 saying  the project is executed with so so so billion naira
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @CGBadley @ZoeHowerska @BeverleyHughes1 @Alan_Haselhurst @davegoddardsk2 How terribly deflating. People who operate through a personal service company will receive vanishingly small amounts through this scheme.\n\nhttps://t.co/wdmbphpcbq
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wildlife consumption ban is insufficient\n\n#wildlife #COVID2019 https://t.co/2fxfNMsihG
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is a true leader. #ThankYouGovCuomo #COVID19\n#coronavirus\nhttps://t.co/LTT0Oao4F2
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Free tax help postponed #coronavirus #COVID19NC  https://t.co/jw1xfIV2pE
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bad bunny #CoronaLockdown #StarTrekPicard #COVID19 #DeborahBirx #CoronaUpdate https://t.co/5taMFzVAWt
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       26/3: COVID19 death rate continues climbing\n\nWorld wide:  4.5%\n\nDeath rate comparison (and still rising in each of these countries)\n\nItaly:      10.2%\nUK:         4.95%\nUSA:         1.4%\nAus<U+0001F998>:   0.46%\n\n#covid19
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #coronavirus confusion... wtf is going on??? https://t.co/prgdpMqC4m
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @ElmaAksalic Anyone who dies from here on out will be blamed on the #COVID<U+30FC>19
## 198                                                                                                                                                                                                                                                                                                                                                                                                                           Published on: 03/27/2020\n\nThis Message Is Especially For\n"The Make America Great Again \nSupporters!"\nHow Would You Feel, If I Told You\nThat "The MAGA Campaign" Didn't\n "Include YOU?  That You Would Become Part Of The"Casualty Of\n #CORONAVIRUS, Making Room \nFor Rich &amp; Young Only?
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Somethings to ponder..There are things in the Covid-19 virus that didn’t happen in “nature”. With that said, they tried to get Trump with Russian collusion, then impeachment and now they are trying to crash his economy. They will stop at nothing.
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @IAGovernor The optics on your press conferences from a National Guard bunker everyday feels like a cowardly contradiction to Iowans who are still going to work everyday?\nThe covid-19 numbers will not be falling off next week or the following. Wake up.
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @PrabhatChandrat @RPF_INDIA @rpfcr @CMOMaharashtra @PiyushGoyal @PiyushGoyalOffc @narendramodi @PMOIndia @HMOIndia All type of training has been postponed till further order at Valsad training centre due to COVID-19 from 22.03.2020.
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ontario Libs/NDP must really hate this:   Doug Ford rises to the occasion again &amp; is ahead of the curve\n\nhttps://t.co/HL8QA6i4iw\n\nhttps://t.co/HE3a9ZslKh
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Introducing The COVID-19 High Performance Computing Consortium\nhttps://t.co/9L8Wn0Z2Ms #supercomputing #washington
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Maze hackers didn't live up to their word to stop targeting medical organizations... surprise, surprise. The #ransowmare victim this time? A #COVID vaccine test lab. #StayCyberFit #cybersecurity #healthcare \nhttps://t.co/fApYtt3zFf
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            With superstars pulling back and the situation around COVID-19 continuing to cause huge uncertainty, should #Wrestlemania go ahead?
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I’ve accumulated data around COVID-19 spread in Long Beach and created a chart that will update daily. Hope you find it helpful.\nhttps://t.co/tM5leU8sG8\n#coronavirus #longbeach #COVID19
## 207                                                                                                                                                                                                                                                                                                                                                                                                                             How will leviathan expand<U+2014>temporarily and then permanently via the ratchet effect<U+2014>in response to #COVID19? It’s too early to make any definite predictions, but we can make educated guesses based on experience and our knowledge of how governments work. https://t.co/0GkLqtPsZW
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Coronavirus could be controlled in 13 weeks if 80 per cent of people stay home, data sugges…STAY HOME https://t.co/9oh4ZdbaC0
## 209                                                                                                                                                                                                                                                                                                                                                                                                           More people RECOVERING from #COVID2019 than dying from it GLOBALLY and in the US. Here are the numbers from the CDC (updated every few hours).\nDon't trust the failed testing!!\nDon't believe the economy driven left msm panic!\n#LiberalHypocrisy \n#DemsDontCare \n#ChinaLiedPeopleDied https://t.co/HyYYNPhYof
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                          @e3_waitfor NOPE! Good grief, dude. Math - currently, there are 27, 352 COVID-19 DEATHS in the US. That's beginning in April 2020, so about three months. That's twice the cases of COVID-19 in half the about of time as H1N1. \nsource: https://t.co/lLHmsRjfs9\nI'm done with you.
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @dougducey Arizona has reported 665 cases of COVID-19 and 13 deaths as of Friday (March 27), according to the Arizona Department of Health Services (ADHS).
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Government boosts wage subsidy to 75% for small, medium businesses to avoid layoffs during COVID-19 crisis https://t.co/oHwxAcZcjO https://t.co/03Wq3sX4D8
## 213                                                                                                                                                                                                                                                                                                                                                                                                                         @SylvesterTurner Mayor, you are right that we need to band together. But not for the same reasons. \nWe need to band together to fight the robbing of freedoms at an unprecedented level during this crisis. \nCovid 19 so far has been a fear based mind game tricking us into giving up our freedoms
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What are early #coronavirus drug trials showing?\n\nAn HIV pill had little benefit in drug trials on #COVID2019 patients in China while a flu medication showed some promise. More via @business: https://t.co/z472EV3w1H https://t.co/5Gonl5rzzF
## 215                                                                                                                                                                                                                                                                                                            @felipem_jose @pinewoodsdojo @HewittNewton @njterrie @john_godish @sdauwm @foggybottomgal @gumboqueen3030 @airbagmoments @RockyMountViews @MarilynT4 @Ironyrulesall @Irishgawdess @tess_tess2 @JamesEFinch @StevePPhill @matbo2 @Out5p0ken @InhellJourney @shossy2 @JustWhatNowWhy @BreSta7 @dougducey That's great! Is there a problem with COVID-19 in Mexico? \n<U+0001F60E><U+270C><U+FE0F><U+270A><U+0001F44D>
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Finally <U+0001F44F><U+0001F3FE> The House just passed historic $2 trillion stimulus bill by voice vote. President Trump is expected to sign it this afternoon. @WashInformer  #StimulusPackage2020 #coronavirus
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On Fri 3/20/20\n10000+ new confirmed\n100+ deaths\n*\n1 week later TO DAY\n*\nOn Fri 3/27/20\n20000+ new confirmed\n500+ deaths\n\n#covid19\n#coronavirus\n\nwish i could tell you what im thinking(probably wouldn't matter)
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                               At the begining of the Cuban Revolution there were 3 000 doctors left, most of them in Havana. Now there are 95 487 active doctors &amp; 85 732 nurses all over the country.That is why #CubaSalvaVidas,#COVID2019,#Cuba https://t.co/w2oufdUQQD
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                      I’m starting to get the feeling that a lot of people don’t know or haven’t realised that a ventilator is more commonly known as life support. AKA, a medically induced coma. AKA the machine is keeping you alive. This is not a drill, STAY AT HOME. #COVID19 https://t.co/QpyQNml3lJ
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @HillaryClinton Don’t you have the #coronavirus  to catch or something?? #goaway #shhhh
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Callers flood dispatch lines to report those not following stay-at-home-order: police (via @oliviaprentzel)\nhttps://t.co/bmTOycv0yb\n#COVID19Colorado #coronavirus
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                         By my math #COVID19 will be around and be a risk for at least 4 more years minimal.  Probably more 5-7. And 3 years after its gone is when the economy starts to come back.  I don't think it will only take a year to kill #COVID19, people are too greedy and so it will spread etc.
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @umerjaffer You need to see what elitist Lahoris are doing in covid-19 times? So so disgusting
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now that it’s been a bit longer, \n\nthose who thought there would be babies\n\nbc of #COVID2019 , you standing by that? \n\nNo haircuts, sweatpants, overeating, too much time together...<U+0001F616>\n\n#trainwreck #teamdivorce
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                  In Missouri @BigElad Elad Gross is running an agressive bid to become the state's Dem nominee #attorneygeneral -- focused lately on criticizing the Governor of the state over #coronavirus #covid19 response more than the incumbent AG.  Is the Gov being too slow? https://t.co/97hsfDc8Kb
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ready to seize an opportunity! <U+0001F923><U+0001F923><U+0001F923> #SpreadCheerNotFear #COVID19 https://t.co/CwfoVQaVpy
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We're living in some weird times, folks. This is at a Subway.\n#COVID19 #CoronavirusUSA https://t.co/l9vAOlWsX4
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                              Fox Business said it had “parted ways” with the anchor Trish Regan, weeks after she dismissed #coronavirus concerns as a “scam” fueled by enemies of President Donald J. Trump.\nTrish Regan, Fox Business Host Who Dismissed Virus Concerns, Departs https://t.co/3ZBTTbONGM
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     can't believe that we are experiencing future history<U+0001F937><U+0001F3FB><U+200D>♀<U+FE0F> \n#COVID2019 #PrayForWorld
## 230  <U+0001D5D6><U+0001D5FC><U+0001D5FF><U+0001D5FC><U+0001D5FB><U+0001D5EE><U+0001D603><U+0001D5F6><U+0001D5FF><U+0001D602><U+0001D600> <U+0001D604><U+0001D5FC><U+0001D5FF><U+0001D5F9><U+0001D5F1><U+0001D604><U+0001D5F6><U+0001D5F1><U+0001D5F2> <U+0001D5F9><U+0001D5F6><U+0001D603><U+0001D5F2> <U+0001D600><U+0001D601><U+0001D5EE><U+0001D601><U+0001D5F6><U+0001D600><U+0001D601><U+0001D5F6><U+0001D5F0><U+0001D600> <U+0001F30E>\n<U+0001F1FA><U+0001F1F2>   <U+0001F1EE><U+0001F1F9>   <U+0001F1E8><U+0001F1F3>\nTotal Cases:  596,350\nNew Cases:  +64,485\nDeaths:          27,343\nNew Deaths: +3,270\nRecovered:  133,057\n #CoronavirusOutbreak #covid19 #GoCorona #hope @who @nytimes @timesofindia\n18:36 PST
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                             No prisoners deserve to contract COVID-19 because of prisons’ lack of access to proper hygiene. Especially those kept in prison because they can’t make bail.\n \nHelp @RFKHumanRights and the @bailfundnetwork to provide #MassBailOut! https://t.co/aNn5abmCsV
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A new startup @JupeInc is pitching a modular building solution to the #COVID19 crisis. Looks great, right?  I am going to be as constructive as I can. (1/x) https://t.co/EdHqUNlpVd
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It’s important to be honest at the moment. Please don’t unnecessarily add to the fear lots of people are feeling right now. #COVID2019 <U+0001F427> https://t.co/ZHbhkcWvgC
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                    So many Canadians couldn’t understand “go home and stay home for 14 days if you’ve travelled” Trudeau had to make it law and impose punishments. \n\nIt’s not that hard. Stay home and you could be saving lives.   \n\n#StayHome #coronavirus https://t.co/o8U2TO0q6R
## 235                                                                                                                                                                                                                                                                                                         #COVID19 #CORONAVIRUS PANDEMIC\nLast updated: March 28, 2020, 03:41 GMT\nCase Graphs<U+00A0>-<U+00A0>Death Graphs<U+00A0>-<U+00A0>Countries<U+00A0>-<U+00A0>Death Rate<U+00A0>-<U+00A0>Incubation<U+00A0>-<U+00A0>Age<U+00A0>-<U+00A0>Symptoms<U+00A0>-<U+00A0>News\n\nCoronavirus Cases: 597,267 view by country\nDeaths: 27,365 <U+0001F480>\nRecovered: 133,363\n@WORLDOMETERS<U+0001F4CB>\nhttps://t.co/au1t4HcfCE
## 236                                                                                                                                                                                                                                                                                                                                                                                                                        I’d be amazed if @educationgovuk<U+2069> stuck to the Wave 1 T-Level delivery timetable. It is not only a question of college delivery. Employers will struggle to provide quality work placements post-#CoronaCrisis @GavinWilliamson<U+2069> <U+2066>@GillianKeegan<U+2069>  https://t.co/hVOhWrPsQ9
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IT services sector faces armageddon as COVID-19 lockdown forces project cancellations <U+2013> analysts \nhttps://t.co/mkLk39Uzvu
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                             More than 100 workers at Boston area hospitals have tested positive for COVID-19.\n\nStory is paywalled--I bought 6-month intro subscription last week--but fear is that these infections are from community spread, *not* from contact with patients. \n\nhttps://t.co/qLEqXRwLrl
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @brianmoore666 They are all 6’6” away from Trump. He’s probably the only one with BSE. As for Covid-19...?!
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thank You NHS <U+0001F469><U+200D><U+2695><U+FE0F> <U+0001F468><U+200D><U+2695><U+FE0F> <U+0001F3E5> \nTo all frontline health &amp; care staff.\n#coronavirus #NHSThankyou https://t.co/wEqKeHxttO
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @peterdaou @RebeccaforWA #coronavirus #COVID19 is the opportunity to make shedloads of money <U+0001F4B0> <U+0001F4B0> <U+0001F4B0> that Right Wing Capitalists have been waiting for and manipulating things towards. \n\nThey are ecstatic. It is chilling.
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How to distinguish COVID-19 symptoms from allergies and the common cold  https://t.co/t1ZLtGMtAi
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gotta watch out now Im sure they are going to spread COVID-19 too https://t.co/xUkaTLJQWJ
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Looks like the Mexicans will build the wall. \n\nCovid-19: Mexicans demand Americans stop crossing border as it spreads coronavirus https://t.co/kqFboE8eDQ
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The blockade of Gaza is collective punishment which is illegal under International law. #SaveGazaFromCorona #COVID_19 #Act4Palestine  https://t.co/WQtb0JNaof
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       France to use the antimalarial - antibiotic regimen as a cure for covid-19.\n\nThank god
## 247                                                                                                                                                                                                                                                                                                                                                                                             @MaamSyj @ArbetBernardo In a live interview, duque said Marikina testing center is at 6th floor of cityhall. That's #FakeNews. Mrkna cityhall has no 6th flr and their #COVID19 Testing lab is at city health center bldg with own elevator. New bldg yan. Kulang na lng pasyente, ospital mag-operate yan https://t.co/H7mSnSZvjW
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                      It’s hard to imagine how this crisis won’t be the end of Conservatism.\n\nLook at every piece of Coronavirus news from the USA and UK;\n\nFearing facts kills. Austerity kills. Unfettered capitalism kills.\n\n#COVID19 #Covid_19 #coronavirus \n\n#ResignTrump #Resign45 #ResignBoris
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Take allyuh boff. \n\nOnly a set of games....political games. \n\n#COVID<U+30FC>19
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/yAUElNulUe via @YouTube
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                           The #COVID<U+30FC>19 pandemic has managed to do what various wars could not: close restaurants and entertainment spots across #Lebanon. It's an economic gut punch at a time when the country is already mired in the worst financial crisis in its history. https://t.co/Dw24jcCLuX
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #c4news gove will take over he is the Manchurian candidate of covid 19..
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       There will come a point in the next week when there will be no chocolate in my house. This may be a problem.\n#QuarantineLife #COVID2019
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  covid 19.webm
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Guest host @moniquebeaudin is joined by health reporter @sharon_kirkey on the latest @TenThreePodcast: Why a COVID-19 vaccine is a moral responsibility \nhttps://t.co/P63TvNraFf
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is hitting the medical community particularly hard. Probably due to viral load. To everyone on the front lines: we appreciate you so much. Pls stay safe. #COVID19 https://t.co/0w0xoQVDFT
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A possible treatment for COVID-19 and an approach for developing others https://t.co/YkulvpoHBP
## 258                                                                                                                                                                                                                                                                                                                                                                                                                               This is pathetic. During a time of crisis a real POTUS doesn’t act like this. Trump is president in name only. \n\nThe media is reporting facts about COVID-19, &amp; all he can do is gloss it over lie &amp; complain like a petulant child. \n\nHe needs to grow up! https://t.co/wdWywlo8mi
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                         I have a student (@AshleyKSmalls) looking at how live streaming is fostering participatory communities during #COVID19. She’s looking to interview people who live stream themselves playing video games on Twitch for a class project. @stephanieorme @ferchauda @FusRoDoc @Nerd_901
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Their launch &amp; book tour is cancelled due to COVID-19\nBut at least we all have time to work our way through lists like this now... maybe @eatlikeanimals will spend lock down on a sequel! https://t.co/hJdIu0ttTm
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @danitasteinberg Fun Fact: Ferrets have respiratory systems very similar to #COVID19 which is why scientists are using them to test potential vaccines. Not sure if ferrets can get #coronavirus but it sounds like they may be able to <U+0001F914> *shrug*
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Even if COVID-19 doesn't kill you, it leaves you with significant damage to your lungs. We have no choice but adhere to GoK directives and orders. Coronavirus is worse than #PoliceBrutality folks, I have seen it first hand. https://t.co/Eo0Pif9iJn
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                              You are not alone. It’s ok to be feeling anxious and worried. Please keep your eyes peeled for your uni providers guidance and stance and for up to date information keep checking back with the NMC covid 19 for students guidance. #COVID2019 #CYPStNN https://t.co/etLNcCpA6o
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This action by Dr. @Akwangaderek is commendable. The last thing Southern Cameroons needs now is more transmissions of #coronavirus. I hope the (many) other Ambazonian groups follow his lead. \nhttps://t.co/L0EEsvJtn6
## 265                                                                                                                                                                                                                                                                                                                                                                                 Imagine Trump thinking our superhero would want to step into the <U+2623><U+FE0F>HOT ZONE<U+2623><U+FE0F> formerly known as the WH. \n\nShe'll take the benefits for workers + families and the provisions preventing Trump + his progeny from getting their grubby little fingers on the funds, TYVM.\n\n#coronavirus https://t.co/pSXRgZjlqq
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @RepThomasMassie \nResign now!\nYou can try to kill off the Dems who will vote for the bill by forcing them to appear. #Covid-19 won't save your party. \nThe #GOP is extinct the American people will kill it in the next two elections.
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    me struggling to juggle all the different #covid19 instructions from the government https://t.co/IZCOLHlfpB
## 268                                                                                                                                                                                                                                                                                                                                                                                                  Read our March 27 #coronavirus update: https://t.co/mDGFiymOp6\n\nThere are 12 positive cases &amp; 170 confirmed negative tests in #Brunsco. @CDCgov recommends that those who think they have #COVID19 &amp; have mild symptoms stay home &amp; call their doctor for advice. Read update for more. https://t.co/VOMqnzGllP
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                       hey Liberals, as far as mocking the fact that We’re number one for most Covid-19 cases, how about practicing social distancing by staying the fuck off of Twitter. You are not helping anybody by any means. By showing your TDS, you’re more dangerous at the moment.
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It means @ImranKhanPTI decision to hand over each daily wager a amount of 3000/ Rs was correct? #imrankhanPTI \n#coronavirusinpakistan \n#COVID2019 https://t.co/XWAz7LxnMK
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   if you read AI new media these days...you might get the impression that #COVID19 is the only use case in the entire industry
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Top Pandemic Related Games on the Internet #coronavirus #covid19 #pandemic #internet #games https://t.co/IEUejlzoRp
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                           Here is my query on counter ticket cancellation during the restriction days due to COVID 19. As I have booked a counter ticket on 9th April 2020, do I need to visit railway counter in between these days or shall I be able to do so even after the date of journey passed? #IRCTC
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An American tragedy,#POTUS lying birther #Trump an incompetent tool, completely void of human decency.  #MSNBC #Resist #COVID19  #CoronaVirusUpdate #LastWord
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The us about to be hit real hard #COVID2019
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Glasses Ned needs to wear with no glass in them. They have tape on the inside near his nose to help his eyes focus until he sees the optometrist...after this covid-19 is done https://t.co/E6S3oAXZX4
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @DrEtiquette @gaye_gallops You need to see this. And this is also the reason why the US <U+0001F1FA><U+0001F1F8> MSM wants @realDonaldTrump not to say #COVID2019 as the #ChineseVirus. https://t.co/Bdm6ZsfaLR
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Codewords and advice for women trapped in abusive relationships during #Isolation from @SolaceWomensAid #Coronavirus #COVID19 #DomesticAbuse https://t.co/qRUzW2Pn1R
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               While the masses are watching #Ramayan and getting drugged on religion , poorly established methods in #COVID2019 treatment and red-tape will kill millions. While demo will ask everyone to #ThaliBajao https://t.co/BHeHiHYbQs
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We are delivering seeds all over the country so that food production does not come to a halt, and are doing our part during this pandemic, we request you to do yours. Stay at home! (2/2)\n\n#Mahyco #COVID19 #CoronaVirus #SocialDistancing
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Question for @drsanjaygupta or dr Fauci #CNNTownHall . Are people with the history of pneumonia, frequent bronchitis or asthma more susceptible to COVID-19?
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Our broken immigration system has resulted in a human rights crisis at our Southern border -- with detainees at Texas immigration facilities especially vulnerable to #COVID19. https://t.co/117YO954kB
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                        Remember how everybody bitches about no real public transportation options in LA and how everybody drives alone in cars instead? In contrast the NYC subways carries 5.5 million riders per DAY and remains open to this day. NY Metro area has half the #COVID19 cases in the country.
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Virginia Pastor Who Said COVID-19 Was Anti-Trump “Mass Hysteria” Dies of Virus https://t.co/e8amqrxJYi
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @deedeedagumby1 @agoodson93 @KajiDousa So, give me a link to the people who went blind or died when treated by a doctor with Chloroquine for COVID 19. I want a link now.
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                             @DerekBrunson @AungLANsang @danhardymma @DavidcBranchMMA @AngieOverkill Top 5 cheat meals during #coronavirus answer &amp; tag 5 \n1. Cookies \n2. My Kids Snacks\n3. Ice Cream\n4. Cereal with Protein \n5. Jalapeno Cheetos \n@KendaPerez @jarchmma @IKEVF @heroheber @georgimma
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yep. Well done, @realDonaldTrump. USA is winning again - #1 Total Cases #COVID19 #TrumpVirus https://t.co/x0gjYSiewb
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PM Modi Deploys Ministers On COVID-19 Frontline To Defeat Pandemic: Report - https://t.co/II6XsDHiXb
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Small businesses hit by #coronavirus: '#SharkTank' star @BarbaraCorcoran answers common questions to help via @GMA https://t.co/1MpVLhQCNC #SmallBiz #SmallBizRelief #SmallBusiness #COVID19
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @SyedaMahinu @KaleechBaig There's no established correlation between the variations in temp &amp; spread of covid-19.
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business leaders and entrepreneurs in these difficult times should display the following qualities:\n\n1- display optimism\n2- motivate people from inside out\n3- have a vision\n4- practice empathy\n\n#leadershipadvice \n#COVID2019 \n#Startup_lawyer
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When will it slow down? #coronavirus https://t.co/GPgt1C83LY
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   More US citizens have the virus than in China.  We won!! #coronavirus #Trump
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                       We’re still open online! Place a custom order, or snag one of our Stronger Together t-shirts! Five dollars from every stronger tee sold will be donated to organizations helping families effected by covid-19! Visit https://t.co/ff1MYXEQeI to get one today! https://t.co/slL0pu6nes
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               @LoveLoriM I asked the same question yesterday in anticipation of the smaller stimulus we will receive.  https://t.co/82ly58RwR7
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       City of Kawartha Lakes now has 27 COVID-19 cases https://t.co/t2imJxJlpW
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                           Seriously <U+2066>@TALaustralia<U+2069> ?  As a long term customer I, and I bet many others, will change insurers once we are through this storm ...Insurance giant TAL moves to exclude people who die from COVID-19, leaked policy reveals https://t.co/sZtZLoiO7d
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I think our Sadie might be taking self-isolation a little too literally. Still, better to be safe than sorry! #HamOnt #selfisolation #sociallydistant #Covid_19 #StayHome https://t.co/pzZW6quu56
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #bloomerg article is lie  the study's "Conclusions: The prognosis of common COVID-19 patients is good" Did they even read it?  #warroom2020 @Potus @thegreatawakening https://t.co/f91q072BDg https://t.co/fwVIcdkRwh
## 300                                                                                                                                                                                                                                                                                                                                                                                                                 @LucPicat @JeremyKonyndyk Yes. This is the core measure. Also they eventually sent healthcare teams from other provinces to help Wuhan, as well as expanding COVID-19 screening and treatment facilities (the 1000-bed makeshifts). Commitment in all levels of the government, money, as well as speed count.
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @MrAndyNgo Trudeau cares more about the UN than about Canada. #wuflu  #coronavirus https://t.co/OgEpdoTes4
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               #US #coronavirus #cases #top 100,000, #doubling in three days\n\nhttps://t.co/0tdWv7CKR9 https://t.co/Sn9ygXwd5g
## 303                                                                                                                                                                                                                                                                                                                                                                                                               "I've never signed anything with a 'T' on it," #Trump said while signing the $2.2 trillion bill, with the federal government attempting to stabilize the economy and with millions of Americans suddenly out of work amid the #coronaviruspandemic. #coronavirus #covid19 #usa #congress https://t.co/zks0PgnltG
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Give Our Brave First Responders Support While They Fight COVID-19! https://t.co/iv8jSYdeK7
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @waluwande @EtalePhilip Plus all barbers have a lot of stories to keep your attention thus spitting a lot .Me after the eradication of Covid-19 I go shave https://t.co/1XNZ61iiKl
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                   One of the most telling things in this #COVID2019 crisis is that Americans are buying guns and ammo. Look at us. We are a nation overfed and wasteful people. There is obviously enough of any necessity to go around, but people are hoarding &amp; preparing to kill to defend their hoard
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @brithume Hey Brit, I've eaten Lucky Charms for breakfast every day to ward of Covid 19. So far I'm okay.
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It won't prevent the coronavirus, but it is a nice way to relax. #COVID19 https://t.co/1dIvXJnhOP
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Finally Trump "invokes" the #DefenseProductionAct #COVID19 #coronavirus #CoronavirusOutbreak #StayHome #WhiteHouseBriefing #TrumpPressConf #deadlinewh #MSNBC #TheBeat #CNN #FoxNews #cspan #OANN
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                      I haven’t been outside for 9 days but this I just had to do. @NHSuk you are amazing thank you for everything you are doing we owe you everything. From the bottom of our hearts thank you! #clapforourcarers #thankyou #coronavirus #carers #nhs https://t.co/RULzqybHEM
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unequivocal unanimous opinion: base decisions on science, not the stock market. Keep isolating, stay home. This is not a time for political rhetoric, this is a time to listen to the scientists. #coronavirus #medicalpanel #streamthebern
## 312                                                                                                                                                                                                                                                                                                                                                                                                                           <U+2066>@hanitweet<U+2069> has visited the most impoverished areas in Korea to see how they’re coping w #Covid19\n“The people pushed back in this world were dragged to the frontlines and got stabbed first. Invisible virus exposed the invisible people...” it writes. https://t.co/XmPzUBRYTy
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                              The myth that COVID-19 kills only vulnerable/old ppl is getting people killed.\n\nYoung ppl taking risks they shouldn't - ignoring social distancing orders &amp; not taking care of themselves when they get sick. \n\nThis dad didn't deserve this. \n\nhttps://t.co/2YNTsrqqON
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                               @KDVR  Can I please come on your show and talk about #covid19 as a blind person? About how much more stuff I have to touch in the world and therefore how much more I could be exposed to this virus? People need to hear these perspectives. I can do a skype video chat. #pwds
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #FWICE President BN Tiwari writes a mail to #AmitabhBachchan seeking financial help in the times of #lockdown due to #coronavirus. The actor is yet to reply. @SrBachchan \n\nhttps://t.co/grxeEZrmN7
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #Calfrac cuts capital spending  almost in half and workforce by 40% due to #COVID-19 and oil price war #abpoli https://t.co/OHS3TXQDa0 via @albertapress
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The latest video sent from the Government &amp; NHS.\nStay Home, Save Lives\n#coronavirus #doncaster #bassetlaw #mexborough https://t.co/jdMgvbpLqq
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                         @kathygriffin @latimes @TheCDZ Have you ever seen a woman in full blown labor (w/o drugs) take a selfie &amp; tweet? The answer is no. That’s bearable pain, but while in “unbearable pain” you managed to do that? #Attention #COVID2019 #liar #neverwas #notfunny
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Well done NHS <U+0001F49A><U+0001F44F><U+0001F3FD><U+0001F1EC><U+0001F1E7> #NHSheroes #COVID2019
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @Leroy_Brown7 @ComfortablySmug LOL!! It's either the COVID-19 or the beers, but either way, I'm a sappy Irishman.
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               @shannonrwatts Jared was in charge so we could become #1 in COVID-19 cases.  Now he's working on the death part.
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Very sad that Kenya joined the "statistics" when 1st #COVID19 related death was confirmed.
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      #Covid19 <U+0001F1EC><U+0001F1E7> support schemes https://t.co/KaT4U8CZRf
## 324                                                                                                                                                                                                                                                                                                                                                                                                              During these testing times, #EuropeOnlinePharmacy market is experiencing an exponential surge in demand. Read more about this market https://t.co/4JPq2yOfhC\n#MarketResearch #MarketAnalysis #OnlinePharmacy #Telehealth #OnlinePharma #COVID19 #Coronavirus #ZurRoseGroup #SHOPAPOTHEKE https://t.co/OmVXF0stOM
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     COVID-19: Nnamdi Kanu announces donation of N50m to fight COVID-19 https://t.co/z5R00lFCac
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                       WHEN YOUR AT WORK REPPING THE KEYWORKER LIFE TRYING TO ENJOY AS MUCH AS YOU CAN WHILST OUT... #COVID19 \n\n#TAAARKDATINNG #SKINTUUTEEET #BIGUYAAHCHESST #THATMOMENT <U+0001F601><U+0001F44A><U+0001F3FD><U+0001F44F><U+0001F3FD> https://t.co/Naxes4ZJrl
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thank you to all the key workers <U+0001F499><U+0001F31F><U+0001F44F><U+0001F3FB> #NHS #Grateful #ClapForCarers #Britain #COVID2019 #CommunitySpirit https://t.co/PDkE7Dyf8C
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All this #Covid19 got me thinking if the series @Gotham. For some strange reason it keeps floating in my head.
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @leeds24hrlocks Hi, you can find information on this here: https://t.co/3hl6kV3FG8. Darryl
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  COVID-19 India: This is how local police punish anyone who violates nation’s 21-day lockdown https://t.co/G2QNzHvb2r https://t.co/jhNvuB4XRe
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                            Importance of why social distancing and isolation matters if you may have been exposed to the COVID-19. Stay safe and stay indoors to prevent the spread and don't be that one person who may be the reason thousands others got sick.\n#COVID19 #StayHome\nhttps://t.co/Chiunbl7TR
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is important to practice kindness during the COVID-19 pandemic because due to the uncertainty of outcomes, it may cause many people to experience anxiety and fear #TEARtalk
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A sore throat isn't a symptom to Covid-19 ;  he probably just has a sore throat.\n\n                                          <U+275B>   Yes.   <U+275C> https://t.co/QGyKwHemXv
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #COVID19 #CripTheVote\nDisability Rights Activist @missrusset2006 Shares Concerns About Coronavirus Rhetoric, Crisis Care Plans http://https://t.co/MNvL0bJCVT
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       About to break 100k COVID19+ cases in the USA! Are we great again yet? I can't take all this fucking #winning\n\n#COVID19 #TrumpPandemic
## 336                                                                                                                                                                                                                                                                                                                                                                                   @VisakhapatnamJn @GVMC_OFFICIAL @GummallaSrijana @GVMC_OFFICIAL @vizagcitypolice &amp; team are sensitive on precautions to be taken on #coronavirus On behalf public, I salute their motivation, hardworking in hot summer, appreciate their devotion to duty @vizagcollector @vizaggoap @AndhraPradeshCM @OfficialMvv @MoHUA_India @dgp_ap
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                 In 2016, <U+2066>@realDonaldTrump<U+2069> promised to #MAGA. He said he would win so much, we’d ask him to stop. Now he’s won the race to the bottom in the #COVID19 #pandemic.\n\nI’m asking: stop winning so much. #PeopleOverProfit #TOBT #UsNotMe #FeelTheBern  https://t.co/iNdLq1Dyx1
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @tribelaw One person can on average pass it to 3.\nLack of water to wash hands, access to common disinfectants. 1 penny, double that to 2, double that to 4, double over and over for 30 days, 1,073,741,825,now substitute person for penny.\n#coronavirus
## 339                                                                                                                                                                                                                                                                                                                                                                                                                Too much chaos in the World right now. I need to share this random-ideology II right now. Follow @africanaffairs @_AfricanUnion you've been on peace keeping mission for too long. What's up with that? #coronavirus #CoronaLockdown #COVID2019 #Africa Unite for your people. Unite!!! https://t.co/hGfvARhGqB
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @CCrowe90 @stclairashley I've been told North Korea has ZERO cases now. Granted they execute anyone who is even expected having COVID-19, which technically still makes a it true. I think we should all go to North Korea!
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masks for the parents (who still venture out for burgers from a drive-thru now and then), featuring openings for adding removable filters. #StayHomeSaveLives #COVID19 https://t.co/qnM9OoKFm6
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ‘Perfectly healthy’ Texas dad with coronavirus dies from COVID-19, family says https://t.co/UlM7gtcXdV
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                     I'll be chatting with @susanhopkins5, @pcjurczak &amp; @Self_Reg in an hour (7:30pm EST) for a special #TMCTalks about #SelfReg &amp; Parenting In The Times of #COVID19. We hope you can join us. Learn how to join here: https://t.co/kwCnwKvTny https://t.co/BgGGtmIOAJ
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Watched the interview on how South Korea managed to beat Covid-19. So amazed at how prepared they are. Kudos to their leaders and their government!
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                               "Pandemic COVID19 is a Global Challenge Needs a Global Response" #Virology #microbiologycoronavirus #ChinaHow come the virus COVID 19 originated!!! Is it naturally originated or human-created??? Let's discuss pandemics in this meet. https://t.co/w3GQOyRJfJ
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How many people had a job BEFORE and after the #coronavirus?\n\nAre you still working, either at home or at the job? Or, are you laid off either temporarily or permanently?
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Offline: COVID-19 and the NHS<U+2014>“a national scandal” https://t.co/IueCkfTJxq
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @ogajazzyk It's Covid-19 not Codiv-19 olodo
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                  How the @NPSOfficial_KE conducted themselves yesterday is uncalled-for and primitive to say the least. I wonder even if they know and take into practice the basic measures of preventing #COVID19. They are even increasing the possibility of the spread. I'm disappointed.
## 350                                                                                                                                                                                                                                                                                                                                                                                                                  With governments requiring social distancing, the normal rules that require a signer of legal documents to be in the “presence” of a notary or witness have been put into question. For those in Illinois,  guidance is now provided. #COVID19 #coronavirus https://t.co/xjoPqoFWSA https://t.co/lVKUpqLAPl
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I’m not a surgeon fr. Covid-19 starting to get real so we gotta suit up even more now.
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                Covid-19 Chronicles <U+2013> Living in Lockdown: Our cameras recorded the moment of lockdown. We also hear from Dr Mohamed Irhuma, a clinical pharmacologist and medical specialist as he unpacks the psychological impact a lockdown might have on us: https://t.co/k7pm0AIJMF
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Great clip of an interview with Bill Gates about our response to the coronavirus crisis.\n#CoronaLockdown #coronavirus #CoronaUpdate #COVID19 #COVID #COVID2019 \nhttps://t.co/B61iN0rx5u
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Staff member at Homebase store in North Wales tests positive for Covid-19 #coronavirusuk cases: https://t.co/XASDMq3tpj
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Covid-19: #Boeing halts dividend to help it survive virus https://t.co/3NWzPLnhJA @BoeingDefense #COVID19 https://t.co/8oFnrrOlAX
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Minister Young: Walk with identification (ID card, driver's permit) including your work ID. #COVID_19 #COVID19 #COVID<U+30FC>19 https://t.co/9d51008gll
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bill Gates wants to capitalise on the Chinese #Coronavirus pandemic by proposing that vaccines now contain nano-chips that will ENABLE YOU TO BE TRACKED.
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Covid 19 continues to supply more March madness in the Stock Market #coronavirus #covid 19 #dowjones #stockmarket #bailout #socialdistancing #quarantine #isolation #editorialcartoon #cintiq #clipstudiopaint https://t.co/BKonxqXAvR
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                           #Zimbabwe lockdown on Monday, 30th<U+00A0>March - Essential services will be remain open - Funerals exempt 50 people only - hospital visits one person one patient - Food markets allowed to operate non food markets closed - private mass transport suspended coronavirus #COVID19
## 360                                                                                                                                                                                                                                                                                                                                                                                                            I wash my hands regularly &amp; thoroughly to fight the spread of #coronavirus #COVID19. @WHO says "Washing your hands with soap and water or using alcohol-based hand rub kills viruses that may be on your hands.' Accept the #SafeHands Challenge. @AminaJMohammed @UN_Piper @RonKayanja https://t.co/KecYPts2i8
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A powerful piece from <U+2066>@Essence<U+2069> on what it means to be Black, Southern, Rural and Poor in the age of #COVID19  https://t.co/fvcDLRCz5d
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    COVID-19 closures: It's as if Ottawa has fallen off the electricity grid https://t.co/7qMB6pq3QI Oh!Duhhhh!
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Scammers picked the wrong person to mess with!  What you need to know about coronavirus testing scams tonight 9pm @KDVR #coronavirus #elderly #scamalert https://t.co/SJ1x6OCV57
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <U+26A0><U+FE0F> Attention <U+26A0><U+FE0F> group masturbation has been postponed due to covid-19 we will keep updated until further notice
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @ChrisMBiggs We understand our customers are relying on our network to ensure they have connection w/ loved ones &amp; emergency service providers. Check here for more details on how we are helping in response to COVID-19 https://t.co/reGthF81zd - Isaac
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               WWlll is very very close.\n#usaCoronavirus #COVID2019 #FelizJueves #USA #America
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Y’all should stay safe and calm covid-19 has been cut off \nGame over\n#PastorChris #COVID19 https://t.co/22nvBjOJQI
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @jerome_corsi @QsentMeToo @realDonaldTrump I suppose I am sheltered but I have never personally known \nanyone who died from the flu. Now  ~~~ I have known someone who died of Covid 19.
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @rebeccaballhaus @JohnJHarwood @AndrewRestuccia Great, let's keep him busy personally signing every single check so the real adults that science can take over the COVID-19 response!
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @tayokun @JosepBorrellF @eu_eeas Who you're asking for?\n\nHuawei to 'scale down' supply of COVID-19 masks, after Borrell comments https://t.co/lIaTky9qfG
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JMC puts more men, machinery to fight COVID-19\n@jmcjammu @CMGuptaOfficial \n\nRead more at: https://t.co/TG7e6uiDpg https://t.co/e8zTW5zXMr
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We can't thank you enough! (apologies for the rubbish video) #clapforourcarers #NHSheroes #COVID2019 #NotAllHeroesWearCapes https://t.co/OqGhAIdrUy
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UPDATE: 639 confirmed #COVID19 cases in Alabama https://t.co/KrBsuHhwAV
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @Ianblackford_MP Are you sure you're not just using #coronavirus as  an excuse to spend some time on your own? I know many husbands and wives  doing this ! I'm one of them ! <U+0001F602> #SelfIsolation
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                     After @abbvie now @Roche gives up a de facto monopoly, in this case for a diagnostic reagent for #COVID19. A harmful monopoly which should never have been a reality.\n\nSay no to profiteering of this pandemic\nSay to no patents and monopolies https://t.co/AJdTwRKLqZ
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       May Allah help us... Ameen #StaySafeNigeria #StayAtHome #COVID19 https://t.co/Sn3Uf2EVja
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When gaming is the only way to quarantine! \n\n#bikham #onlinegaming \n#facts #steam #technology \n#covid19 #quarantine https://t.co/088Jt9DF7B
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @Jane_nkyalo And sadly enough in the comfort of her bungalow in the USA. She should let us alone to solve our problems the best way we can. Btw advise the New York mayor on how to fight covid-19
## 379                                                                                                                                                                                                                                                                                                                                                                               @realDonaldTrump @WhiteHouse You've had THREE YEARS to get stuff done. You piddle-farted around playing golf ALL THE TIME. \n\nYou threw the pandemic handbook on a shelf and figured it couldn't happen. Well, it has. You piddle-farted around on #Covid19 too. \n\nAll you do is blame EVERYONE ELSE. This is on you. https://t.co/wvteMYRkhO
## 380                                                                                                                                                                                                                                                                                                                                                                                                   COVID-19 stands for "Coronavirus Disease 2019."\n\nCO-rona\nVI-rus\nD-isease\n\nThe WHO guidelines say they can't name a virus after a geographic location or group of people. \n\nSo no - it doesn't stand for "Chinese Originated Viral Infectious Disease."\n\nhttps://t.co/kjgy0N1aXJ\n\n#VERIFY https://t.co/GqjEmi9IxK
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                   Wii Sports Resort released June of 2009...BUT...I am now the Table Tennis Champ!!! #TodayInHistory \n\nThanks #COVID19, none of this would've been possible w'out you.  Through boredom &amp; determination, I was able to finally defeat the table tennis champion. https://t.co/n89GPeA2hr
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #DataScience vs COVID-19 pandemic: Flattening the curve -- but how? https://t.co/DMTUbj0RWZ via @ZDNet &amp; @linked_do
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                               Help Cuba fight the coronavirus and the US blockade. Sign the open letter calling on the US government to lift its inhuman blockade and allow Cuba to fight COVID-19 at home and abroad.\nSign your name here https://t.co/EeVPnFOora #CubaVScoronavirUSblockade
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Watching Ramayna with family . Thanks to everyone  #StayHomeStaySafe  #COVID19  #Ramayana  @narendramodi  @DDNational  @BJP4India  @myogiadityanath #IndiaFightsCorona #StayHome https://t.co/kM5KmzRDD5
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            "Coronavirus: US leads the world in number of confirmed cases" #Coronavirus https://t.co/D2m8LtjPW5
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <U+0001F914><U+0001F914><U+0001F914> #CoronaLockdown #coronavirus #lockdown #SaturdayMorning #SaturdayThoughts #SaturdayMotivation have a great day everyone ♥<U+0001F60A><U+0001F618> https://t.co/FjQgQBoAlB
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I think we all now know who was responsible for the  #TrumpPressConf, hmm @katemclennan1 and @katemccccartney ?\n#Covid_19 #auspol https://t.co/ObYrBl4vGT
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @gtconway3d Excuse me but the US doesn’t call the virus that . The US calls it by its given name , Covid-19 . It’s our ass of a president  and his followers that calls it  by  what ever flows out of their mouths .
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                    Now we’ve had a taste of what it’s like to be caged, Will we finally abolish zoos<U+0001F91E><U+0001F91E> and then stop having ‘pets’ <U+0001F937><U+200D>♀<U+FE0F>- free the animals!! #SelfIsolation #IsolationLife #lockdown #COVID2019 #afterthequarantine https://t.co/nZhffCI8nE
## 390                                                                                                                                                                                                                                                                                                                                                          Spread the love! Hope you all have a pawesome day! <U+0001F431><U+0001F970><U+0001F43E>\nFollow <U+0001F449>@letspawsfirst<U+0001F448>\n-\n-\n-\n#GoodMorning #FridayMotivation #FridayVibes #FridayMorning #FridayFun #friyay #FridayWin #StayHome #COVID19 #hometasking #amazon #shopping #CatsOfTwitter #kitty #cats #pets #love #followme https://t.co/oNdx90xUkX
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Number of confirmed cases of COVID-19 jumps to 54 in SLO County https://t.co/O7J9zzG8lP
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I think that by the time we have a vaccine most people would have gotten COVID-19 and either have died or gotten over it.
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #BREAKING: House passes historic $2 trillion aid package hoping to curb COVID-19’s economic impact #WashingtonDC #wlwt @wlwt  https://t.co/weatms3ofI
## 394                                                                                                                                                                                                                                                                                                                                                                                                       Who’s staying home this weekend <U+0001F64B><U+0001F3FC><U+200D>♀<U+FE0F><U+0001F64B><U+0001F3FB><U+200D>♂<U+FE0F>\n\nWho’s up for creating some videos to say ‘Thank you’ for staying at home this weekend?\n\nLet’s help keep everyone safe during this time #COVID19 #SocialDistancing https://t.co/d3i9MklTv8
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         “Our hearts are heavy having learned of this first death in our community’s struggle against the spread of COVID-19."\nPitkin County Public Health director Karen Koenemann\nhttps://t.co/zxj4lkfj5L
## 396                                                                                                                                                                                                                                                                                                                                                                                                             What a time to be alive  \n               27\n               03 \n             2020 \n\nTB. Joshua's covid-19 cure revelation\nImamOfPeace vs covid 1-9\nBorisJohnson  Vs  COVID19\n\nAnd the day isn't over yet o anything can still happen maybe presidential briefing <U+0001F602> <U+0001F923>\n\n#ImamOfPeace
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Loudoun County school staffer dies from COVID-19 @InsideNoVA https://t.co/msEVzytIs5
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Devil in the details: US Congress reaches deal on $2 trillion rescue bill, which still requires House vote and president's signature\nhttps://t.co/XX6Wmy9Gpc https://t.co/boI0Y6siXL
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I learned some things watching this. Everyone should watch.\n\nPSA Safe Grocery Shopping in COVID-19 Pandemic\n\nhttps://t.co/hwnTQ8uBCg
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UCT Confirms Fifth Case of Covid-19: https://t.co/OtUFEEn56J #SouthAfrica #Day1 #StayHomeSA #CoronavirusSouthAfrica #CoronavirusInSouthAfrica #COVID19SouthAfrica #21DayLockdown #Coronavirus #COVID19 https://t.co/t6M6LmpUlL
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indy 500 postponed until August because of COVID-19\nhttps://t.co/bdgJ2rfHB0 https://t.co/EfAGANG0aH
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                     350 #virtualvolunteer registrations so far; we need 1,000. Can you share this post to help us? We need #volunteers to provide #EmotionalSupport to people in #isolation due to the #COVID19 Pandemic. Register here https://t.co/nWxbnx1fsh\nThanks, to @CharityVillage &amp; @VolunteerTO
## 403                                                                                                                                                                                                                                                                                                                                                                                                          Bold journalist @benkoku of @Citi973\n@CitiTVGH ...\nA word to @NAkufoAddo .\nInfact untill the president sacks NIA BOSS , no other mitigating move will save him from this disgrace!!\n\n#COVID2019Ghana  #StopGhanaCard #COVID19 #coronavirus #CoronaLockdown #StayAtHomeChallenge #Eastern https://t.co/36N7QTtzfM
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Parents v Teachers Minions Style Coronavirus Covid-19 - Stay Safe Stay A... https://t.co/RbLTERIFwc via @YouTube
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                  It brings us hope to see Mayor @sliccardo &amp; Council acting to ensure people on front lines of this crisis can stay home and seek care if they get sick. Paid sick policy gets Council vote 4/1. Also TY @CM_Magdalena @SylviaArenas @MayaEsparza3 for your lead!\nhttps://t.co/DOuRoPejaw
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Macon restaurant offers free lunch to kids amid COVID-19 outbreak https://t.co/RUAlOAaVg9
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       COVID-19 closes North Okanagan convenience store https://t.co/5Xh3dgDfZQ
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                #Boulder County has rescinded its stay at home #coronavirus order, simply to adopt the similar measure issued by Gov. Jared Polis. The gov's has planned expiration date of April 11, versus county's April 17. https://t.co/E7MciQwVwL https://t.co/9gIgmfTDQF
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Are we going to be ok? When will this end? #COVID2019
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As Montana's confirmed (tested) COVID-19 cases jumped from 71-90 and Gallatin County's jumped from 24-38 today, Governor Bullock has issued a Stay at Home order. #coronavirus #COVID #COVID2019 #Montana \n\nhttps://t.co/2P36lkYxW9
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So if you're in the 99% of people that had #coronavirus and survived.. does that mean you can go anywhere you want??
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Latest #Covid19 update from David Mills\nPLEASE SHARE AS MUCH AS POSSIBLE.\n\n#clockhousenursery #enfield #garden #gardening 27/03/20 https://t.co/4SN5bJqojH
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I hope when the country has healed from this devastating plague whoever is is in charge will bring back full uk production of essential items instead of giving business overseas #COVID19 #makeukgreat
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                             Our experiences today, will help us grow and get through tomorrow.\n\n#coronavirus\n#covid19\n#mentalhealth\n#resilience \n#yougotthis\n#depression\n#BPD\n#anxiety\n#mentalillness\n#stayhome\n#quarantine \n#chatowl\n#therapist\n#inspo https://t.co/GE2Yd3DylT
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Are Advil and Tylenol good to reduce fever in covid -19 treatments?#CNNTownHall
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Plans this weekend? Tune in to the latest episode of Cinnaire's #AdvancingCommunities #Podcast which focuses on the #COVID19 crisis &amp; its impact on the affordable housing &amp; community development industries: https://t.co/MeLWQAsEAT
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  #nationalscribbleday Reece’s assignment for Mrs. Gonzalez’ online class today @Stewart_Creek \n#ThanksHealthHeroes @Roms_10 #nursesareheroes #CoronaLockdown #stayhome #coronavirus @KHOU #scribble @imnotascribble https://t.co/axLR9wcesV
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Canvas (online school portal) update makes it look more like the fucking #Coronavirus https://t.co/10jXLnza0S
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #BREAKING ROME (AP) -- Italy reports 6,153 new coronavirus infections, taking global total over 500,000. #COVID19 #coronavirus #fox5atl
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <U+0001F4DA>A great read on how to support and protect children’s emotional well-being during the pandemic. This is targeted at younger kids but there are great suggestions here that apply to teens as well.\n\nhttps://t.co/Nl0z3s2QBs
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @null Woj Pod: Burke reveals COVID-19 diagnosis ESPN NBA Analyst Doris Burke joins The  https://t.co/BQjS0iQ0x5
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Coping With COVID-19 Crisis: Craig’s Owner On Keeping Hollywood Hot Spot Going, Staff Employed &amp; Some Ice Cream Smiles https://t.co/JC5cIFV742 https://t.co/pOhK4C8Jip
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                      "On Thursday, the Navy, without specifically mentioning the USS Theodore Roosevelt, reported that "17 Sailors assigned to a ship underway in the Pacific have also tested positive for COVID-19.""\n\n(It's onboard the USS Ronald Reagan too)\n\nhttps://t.co/cl3pipXFnZ
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @davidaxelrod @JoeBiden @LarryRasky So there's a 99.99% chance that his death is unrelated to Covid-19.\n\nI hope Tara Reade doesn't catch it.
## 425                                                                                                                                                                                                                                                                                                                                                                                                             Options available to victims of domestic violence during the #coronavirus quarantine\n\n-Some Shelters are putting survivors up in hotels.\n-Local programs are helping victims make plans to stay safe.\n-The National Domestic Violence Hotline is available via chat, email, and phone. https://t.co/eNwM2EQNvY
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let’s examine the facts:\n\nTB Joshua said that on the 27th of March, a heavy rain will fall in Wuhan, China which would begin the end of the Coronavirus. Fact: There was a rain in Wuhan on the 27th of March. \n\nLet’s be patient and hope for the best. #COVID19
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @bbcquestiontime @bbcquestiontime \n\nQuestion from Tad Tomkinson\n\nWhy is the government refusing to test frontline healthcare professionals for covid-19?
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                    Buyers, sellers and agents grapple with a housing market shaped by coronavirus.\n\nLand registration services, real estate agent services and moving services may all continue to operate.\n\nLearn more here:\n\n#realestate #toronto #covid19\n\n https://t.co/mh15WvWg6Z
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COVID-19: Zoos, pawnshops, newspapers, parks for sheltering homeless included in B.C. list of essential services #COVID19Vancouver #COVID19BC #BC #Vancouver\nhttps://t.co/osftCNYgdh
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PIIE: The banking system is critical to society and requires due attention and support. But in doing so, tough love is preferable to complacency. By nicolas_veron: https://t.co/v9QItYEEpf #finance #money
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/qr9rWuTcyB
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Due to travel #restrictions imposed during the #coronavirus #pandemic, #Alrosa announced it is selling its largest rough #diamonds via digital tender.\n\nhttps://t.co/J5f9XGDjAr
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The COVID-19 pandemic has put in fast forward our slow-motion crises, including economic inequality, food insecurity and xenophobia. Give today to support our neighbors, because we all depend on one another to survive. https://t.co/0RqkT0rIQ3
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Jimmy #Kimmel Gives Savage New Nickname To #Trump In #Coronavirus Era. #SmartNews #KAG #MAGA #FoxNews @FoxNews #TrumpIsAnIdiot  https://t.co/EQl7SsCxsL
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                             The #coronavirus pandemic has forced a lot of changes across our community. A former #KNXHero of the Week is adapting his food kitchen to help keep thousands of people nourished during this time of uncertainty. https://t.co/Vq87UtkWtR https://t.co/KxjGlBnXvb
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                 A reminder that 'Clap for our Carers' is taking place in the UK tonight at 8 PM.\n\nPlease join us in clapping and cheering on all those heroes and heroines fighting #Covid19 in the #NHS across the UK!\n\n#clapforourcarers https://t.co/tHsyMqORQR https://t.co/IbivWXqA0j
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sorry - we can't find that page https://t.co/jx4s7AbXYy
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is what my loving country did for me<U+2764><U+FE0F> proud to be a Saudi citizen #saudiarabia #COVID19 https://t.co/rhk9TVUJuu
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Coronavirus: Nigeria reports chloroquine poisonings after Donald Trump touts antimalarial drug as treatment | South China Morning Post https://t.co/IM31VeEEi6 #coronavirus #covid19 #pandemic https://t.co/iniT806tnm
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Food Banks BC already seeing surge in demand due to COVID-19 pandemic https://t.co/t7lh20zGnI
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I was scheduled to get an IUD at the beginning of March. I cancelled due to COVID-19 anxiety (I’ve been following it since late December) and decided I would go on the pill when I felt necessary
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PLEASE RETWEET: We all need to do our part to flatten the curve, so please stay at home as much as possible. #Coronavirus #CoronavirusDelaware #COVID19 #deCOVID #COVID19Delaware @Delaware_DHSS https://t.co/GGNLpEBL9C
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                               @Khanoisseur This admin can't even deal with the #COVID19 crisis. There's no way anyone in that den of thieves is thinking about the next looming crisis. I can't believe we continue to treat this admin with any amount of respect or legitimacy. They haven't earned it EVER.
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     i hope @selenagomez @ladygaga get #COVID19
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                         Don't wait for GOI to call the #coronavirus as #ChineseVirus . Govts have compulsions. Hence it's got to be people's movement. China has blood on its hands and world must punish it - ban entry of Chinese people to their countries, isolate their companies, throw it out of UNSC..
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @ZLevyMD @ercowboy Stay safe. Also, we are building an oral history of #COVID19; consider lending your voice. https://t.co/gvqN8KzIn7
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Oh, Wired covers one of my favorite Twitch heroes! Though this goes against keeping him in our secret back pocket. #kitboga #coronavirus #scammers https://t.co/abthLjTthQ
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @KTRTRS sir we permitted many grocery and other shops for public but if we do not have a monitor mechanism for retailers health, these platforms could be sources of #COVID2019 so some taskforce should be deployed for the same.
## 449                                                                                                                                                                                                                                                                                                                                                                                                                            Public leaders &amp; health officials: The only thing that matters right now is the speed of your response.\n\nThis model predicts the last day each state can act before the point of no return.\n\n@govhawaii @KHONnews @kauai\n #kauaimayor #hawaii #COVID19  #kauai \n\nhttps://t.co/p9W7vrSf5O
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Well. The covid-19 #StayAtHome order has everyone doing puzzles &amp; bettering themselves &amp; I’m over here matching up the @nfl teams for a new 17th inter conference rivialry game via @BarstoolBigCat @PardonMyTake https://t.co/h8H0HC2G4J
## 451                                                                                                                                                                                                                                                                                                                                                                                                                My wife is a full time nurse at MGH in Boston so this is very real for my family. I don’t do politics on Twitter but please let’s protect the healthcare workers taking care of patients. #coronavirus #PPE @KeithSpiro @jeffpulver @TedRubin @BonnieHunt_real @BobSocci @BobCoughlin https://t.co/kUKRiwy6Hv
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                   “Data analysis- validation of wishful correlations.  \nAnalysis and interpretation of data using tools and techniques that are available in the present”\n#rcbquotes \n#changemanagement #lifeinthetimeofcovid #COVID2019 #coronavirusindia #DataAnalytics
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @The_vijju Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests.
## 454                                                                                                                                                                                                                                                                                                                                                                                                                       #UPDATE on coronavirus cases in Ontario via @gabbyrodriguess\nfor @globalnews \n\nREAD MORE: https://t.co/wUw3xvTW6P\n\n-&gt;170 new cases in Ontario\n-&gt;provincial total rises to 837 active cases\n-&gt;province's largest single-day spike\n-&gt;38,000+ people tested so far in Ontario\n#COVID19
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @POTUS still talking #tariffs? American businesses need parts and products from #China to be sustainable.\n\n#CNN #MSNBC #coronavirus #CoronavirusPandemic #SocialDistancing
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief https://t.co/9vNzx1BXim
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lord do not leave us at the mercy of the storm #PopeFrancis #UrbietOrbi #CatholicTwitter #COVID19
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @InDarknessShine @eosfanatic Covid-19 is the new way to control masses like the church did back in those days. This is why separation of church and State is so essential.
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                  "Due to the spread of COVID-19, application for the 1st JLPT in 2020(July) is currently suspended and the test execution is now under consideration.\nPlease confirm the further information announced on the JLPT website on Monday, April 6."\n<U+0001F62D>
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Stay safe and be careful! Don't go out unless it's necessary! #Coronavirus https://t.co/KyZ5hMwfyr
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                             Trump wil 100.000 extra beademingsmachines in 100 dagen https://t.co/KTdvwrFvyr via @NUnl thank you, all countries must ... #usa #uk #asia #china #africa #america #americas #oceania #australia #be #de #nl #rutte3 #rivm #ggd #spain #france #italy #portugal #covid19 #everyone
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trump to New York: Drop Dead  #Coronavirus #Pandemic #NewYorkCity #NewYork #DonaldTrump #TrumpKills #Federalpolicy #healthcare #Federalintervention #unifiedationalresponse #Andrew Cuomo https://t.co/Funl1Ge1To
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                    To help keep the community updated on COVID-19, we’ve created a series of videos featuring perspective from SMC physicians. Here, Dr. Angela Oates, Infectious Disease Specialist, addresses whether pets can be infected with the COVID-19 virus. https://t.co/VqwbVFarEw
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Slant | Paul B. Preciado on life after COVID-19 https://t.co/negRwtagVe @artforum
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Donald Trump, COVID-19 Task Force Hold Press Briefing on Coronavirus Pandemic - Video: https://t.co/GcB5QS68Mg via @SputnikInt
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is new / cool -- GoogleScholar linking to academic journal coverage of #COVID19 on the front page: https://t.co/CN6XYMyd2d
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #Sharemarket LIVE: Sensex, #Nifty set for gap-up opening; #RBI Governor @DasShaktikanta Das press meet at 10am amid #CoronavirusLockdown  https://t.co/4J9b3KijPc
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Congratulations @realDonaldTrump, the US is now OFFICIALLY IN FIRST PLACE with the most reported cases of COVID-19 in the ENTIRE WORLD. You must be so proud to have set yet another amazing record! https://t.co/q53wqvnjsI
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So, China reports NO new #coronavirus cases in the past week?!  How can that be?
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Last night cerita this year confirm kami tidak travel and most probably next year pun tidak. Tunggu vaccine #COVID19 ini developed baru travel la.
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                 #login Just watched Trump sign the Covid-19 bill. Big group and no one was 6 feet apart. Sad to watch Dr. Fauchi pander and praise Trump. Can't count on him. The only channel allowed to show signing was FOX. Listened to Trump bash Governors. The man is unstable. #JoeDay
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                              Seeing a 70 plus couple dance to some Desi Arnaz from their youth durning this #coronavirus has made my night. Great food, great music and great family time has blessed me so much! One day at a time y’all! \nMuch Love Tommy <U+0001F918><U+0001F3FB><U+0001F918><U+0001F3FB>
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Things just got really serious! Pray for the ones that are suffering <U+0001F64F><U+0001F3FB> and as for the others, STAY AT HOME FFS! #coronavirus #CoronaPandemic https://t.co/pQVJ36OT3C
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Video] : How to protect yourself from the explosion of #cybersecurity risks during a crisis\n#coronavirus #covid19 https://t.co/axKseOQHZq
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         One of latest 18 new death’s to Covid-19 was a 17 year old according to @LouisianaGov
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How to distinguish COVID-19 symptoms from allergies and the common cold  https://t.co/I833ZIJt0k
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @trish_regan @realDonaldTrump @VP @SecPompeo @JuanGuaido You deserve to be fired! Stop spreading the lies, hoax theories while America prepares to be the largest epicenter for #COVID19 . This virus kills and sickens republicans and Democrats equally.
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Here’s a great video to make sense of all the #Covid_19 data out there. One thing is certain, humanity will prevail and we will recover, but how soon and where will we get to before that happens. \n\nhttps://t.co/hIIfZIgxFB https://t.co/FK53HEhhEc
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Latest Inspiration from Tim Ferriss! Dr. Vivek Murthy <U+2014> Former Surgeon General on Combatting COVID-19, Loneliness, and More (#417) https://t.co/I0u825FVK8 TheCocamama
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It seems that Covid-19, has had another effect. It shrinks the brain cells of Right-whinge New Zealanders, who drink the QAnUS DIPSHITTERY CRAZYade! Thoughts and prayers that they recover their sanity.
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                  Dear citizens, \nPlease protect yourselves. Those that won't protect you when there was calm &amp; they had the time, will most likely not protect you now that they are also struggling for their own lives. Whatever they tell you, hold with a pinch of salt. Protect yourselves. #COVID19
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                      @davido's fiance @thechefchii Test Positive to #CoronaVirus after returning from London.\n\n _Please Note they are two types of Corona Virus, one is Non symptomatic which implies you won't have any symptoms till after a said period of time_\n#StayAtHomeAndStaySafe #StaySafeNigeria
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tucker: Opposition to Trump is fueling media lies about chloroquine, a potential COVID-19 treatment | News | LifeSite https://t.co/Ad39bJy1mG
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My pal @KarlDDawson has the right idea... It's two weeks people; we can do this.<U+0001F64C> #StayHomeSaveLives #coronavirus #COVID19 \n\n"https://t.co/lNtipy74ga"
## 485                                                                                                                                                                                                                                                   Make me famous \nHaha jk,, unless <U+0001F440>\n\n#tiktok #anime #otaku #artist #art #<U+0641><U+0639><U+0627><U+0644><U+064A><U+0627><U+062A>_<U+0627><U+0644><U+062D><U+062C><U+0631>_<U+0627><U+0644><U+0645><U+0646><U+0632><U+0644><U+064A> #StayHome #QuarantineLife #<U+0631><U+0633><U+0645><U+064A> #followforfollow #follow #commission #commissions #artstyle #COVID2019 #tiktokchallenge #AnimeArt #love #pastel #ocs #originalcharacter https://t.co/TVZ1JRAWod
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                     @JarredProvich @geracechris @StocksAllUp @mitchellvii Now take this tidbit into account.\nFlu has a vaccine and still produces those numbers.\nCOVID-19 has nothing but a hoe on two meds that are not approved and has produced LESS cases and deaths statistically over the same period.
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How much does it cost for one COVID-19 test again?
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                       @noplaceforsheep @NickThiwerspoon @D_LittleproudMP It's a Health Minister responsibility under the Act. (Has Covid-19 been listed yet? I assume it has. The listed human disease page goes to "not found")\n\nhttps://t.co/LATTwWFr9v\n\nhttps://t.co/C6OOAJllJ4 https://t.co/q1e9hVjCzE
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @ASlobComesClean Hi! Thanx for the Like. Glad I kept a few iffy items that I might have tossed out. They will come in handy during stay-at-home in the time of COVID-19.
## 490                                                                                                                                                                                                                                                                                                                                                                                                                         How to stay #fit and #active at home during the #coronavirus #SelfIsolation\nGreat tips by @M_Stamatakis @docandrewmurray @fiona_bull and @DrKateEds <U+0001F44F><U+0001F4AA><U+0001F938><U+200D>♀<U+FE0F>\n#COVID #FlattenTheCurve #CoronavirusOutbreak https://t.co/W8FyLbzJAf via @ConversationEDU
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #Coronavirus #sanitizer #Nature  #kunar province https://t.co/ctY4VCKBHo
## 492                                                                                                                                                                                                                                                                                                                                                                                                                 We are here stuck due to #coronavirus,cases are getting doubled everyday and here only one patient recorded,our parents are also very disturb,UA is sending flight to call ukrainians from DEL,we request us to go back in india @PMOIndia @AmitShah @AjTakNews @ABPNews @narendramodi https://t.co/g7wAgNnRRZ
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Good tips to remember. @accellres @CDAA_inc #Workingfromhome #wfh #mentalhealth #wellbeing\nhttps://t.co/XKdE9gyOnE
## 494                                                                                                                                                                                                                                                                                                                                                                                                                      .@MYER has announced it will be closing 60 stores and standing down 10,000 staff for at least a month in the wake of the coronavirus crisis. Meanwhile, @Coles says it has hired more than 7,000 people in just two weeks to meet customer demand. https://t.co/dvNbHV2ctR #7NEWS https://t.co/h36FT78Pu6
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  it’s called that break up diet &amp; 100 crunches a day #coronavirus https://t.co/ER3mCCbp52
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Portugal created a corona virus test <U+270C><U+FE0F><U+0001F1F5><U+0001F1F9>\nWe have everything we need for producing a credited COVID-19 test in house.\n\n#CoronaUpdate #COVID19 #Covid_19 #TestingForCovid19 https://t.co/W4ZNTUAz3a
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After COVID-19 is over @govsingapore should just scrap the whole DORSCON framework. It does nothing but fuel anticipatory but unnecessary overreactions. It’s like some people keep wanting you to declare red, but for what leh?!
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @Salym God protect us from the #coronavirus https://t.co/L9DY8PynWc
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Muslim groups in #UK band together to combat #coronavirus - https://t.co/vqwqKxgtK6 on @The_newarab #MuslimHandsUK #SavingLives https://t.co/CRALkuGmPY
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @realDonaldTrump @WhiteHouse We'd all be better off reading Dr. Seuss than listening to your blather.\n\nThis morning: 69,684 COVID-19 cases in the U.S.\nStill not "going to zero" and considerably more than 15.\n1,049 American deaths from COVID-19.
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Tonight, I will host Penn State epidemiologist Drs. Nita Bharti and Beth McGraw from Penn State's Center for Infectious Disease Dynamics to share information about the #Coronavirus / #COVID19. Join us. \nhttps://t.co/s4yRMSoRVA https://t.co/MeGJPfUMIV
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Govt must listen to the plight of indian doctors who don't even have basic gears to combat Corona virus.  #COVID2019 #IndiaFightsCorona https://t.co/1eZCcnY1ri
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          https://t.co/FURHpjQd5Q Hear from the #Niantic family who put up a holiday display to spread some joy during this challenging time #EastLyme #COVID19
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Slothful, slow to act, complacent: Johnson has probably infected hundreds, thousands, tens of thousands according to his own government information.\n\n'Nonchalant': Boris Johnson accused of Covid-19 complacency https://t.co/xGMhQb5g3j
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                           #Breaking A member of the Maryland Army National Guard recently tested positive for COVID-19. The Soldier is in isolation. About 20 additional soldiers from the Soldier's unit are quarantined as a precaution to limit the spread of the virus. -Maryland National Guard spokesman
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UN System urges Guyana Gov&amp;#8217;t to take more stringent measures to stem COVID-19 https://t.co/T27qpvFmrL via @stabroeknews
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hey @SenateGOP @senatemajldr  @HouseGOP @GOPLeader,\nWith his signing statement @realDonaldTrump admits he will violate the law you just passed. When are your going to get spines and stop him? #GOPSlushFund #CoronavirusOutbreak #TrumpLiesAmericansDie #COVID19 #DoYourJob
## 508                                                                                                                                                                                                                                                                                                                                                                                                                          #SVEs responses to economic impacts of COVID-19 pandemic as of 26/03 show focus on fiscal +monetary measures to adapt. But much lower average value of stimulus measures: 1% of GDP on av. compared to + 8% for #G20 members  \n.@DWteVelde .@deodat_maharaj .@sherillyn_raga https://t.co/ZfIZIkRBcH
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                       Many people facing problem in Andhra Pradesh they all belonging to rajasthan many of them people are workers they all living in room due to covid-19 your honerable PM Mr narendra modi make lock down 21 days that’s why yours income are stop I am requestingAndhra Pradesh governmen
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                   Latest: 531,684 confirmed cases &amp; 24,054 deaths.\nIt's in 173 countries/territories, 93 with 100+ cases, 34 with 1,000+, 9 with 10,000+.\n453 cases in #HongKong, 4 deaths.\n\n#COVID19\n#WuhanPneumonia\n#WuhanCoronavirus\n#WuhanSARS\n#2019nCoV\n#CoronavirusOutbreak
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A message from FXPrimus regarding Covid19 \nPlease take care during this terrible situation. Remember that we care and wish you all health and happiness. And please stay home and stay safe\n#stayhomestaysafe #covid19… https://t.co/bjA5Xm2Wpu
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                             @DiamondandSilk China Makes Virus. China Spreads Virus world over. China recovers from Virus. The rest of the world starts experiencing the Virus. China closes off its entry points. \nInteresting scenario! #COVID19 #CoronaLockdown #COVID #CoronaVillains #LockdownWithoutPlan
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mortality rate in italy is 10.5% but ignorant buffoons will still swear up and down that covid-19 is just another flu https://t.co/pFXmDMLKmU
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As of 26 Mar 20 @ 09:00\n\nAccording to the UK’s Department of Health and Social Care\n\n11,658 Confirmed Cases\n578 Dead\n\n104,866 Total Tested\n93,208 Tested Negative\n\n#coronavirus #UnitedKingdom #covid19UK #UK19CVD \n\nhttps://t.co/F72rlJx3y7
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @ErinMPerrine @DanaPerino @realDonaldTrump I don’t understand how somebody’s “where can I make a quick buck” analysis of the Covid 19 virus briefing is more important than the doctors and scientists.”
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It's true tho. When you have force majeure clause in your contract, your financial situation will be protected. Thus, it is important to have this in your tenancy agreement.\n\nhttps://t.co/cFu7J5y9ev
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The number and quality of #COVID19 parody songs is heart warming and a great way to spend quarantine lunch break  https://t.co/sHP2ltEqMh
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @Zlatan_Ibile Says we shall not die of covid 19 StayAtHome and.........? Fill in the gaps ibile ayiiiiiii <U+0001F341><U+0001F607><U+0001F4AF>
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My cousins daughter who is just four is so fed up of watching TV these days. She always asks  "Mom, why are all channels talking about Macaroona" She thinks that COVID-19 is food.
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @randlight Yeah something is definitely not right there... there is NO WAY, he can be applauded for abysmal response to #COVID2019.\n\nWho concluded this &amp; how/where did they get their information???\n\n#ImNotBuyingItForOneMinute #TrumpVirusCoverup
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Kim just got her #COVID19 test results.... she’s negative.
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                         If you’re interested in joining a community where we #SmallBusinesses share helpful resources, exchange our thoughts and feelings, and swap ideas about #COVID19 join the Small Business Survivors Facebook Group.\n\nhttps://t.co/0Y4Q9S3DEJ https://t.co/sqFLig90WC
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @TVMohandasPai @BDUTT @ShekharGupta @sardesairajdeep @ndtv Pie brained.\nIndia is testing 1 person in a million 4 #COVID19 what a shame.\n#GaribiHaatov by starving or beating to death by Tadipar #CoronaLockdown https://t.co/Z6kJ3vOulJ
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who believes her??\nLook, we've seen this before: people propping up Trump because they feel they serve the greater good.  It hasn't worked yet.\n#COVID19  #Trump https://t.co/08CzSuL98n
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Never say think "POSITIVE" to someone waiting for their COVID-19 test results.\n\nNo say I no warn you ooo<U+0001F602><U+0001F923><U+0001F602>
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Y’all still using clocks? #COVID19
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                       #COVID19 has stolen the opportunity for a good death.  Contagion means that many patients die alone without their child holding their hand or kissing them gently goodbye.  HCWs are kind to the dying but they too fear the illness.  #StayAtHome please.  This tragedy has many facets
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Please if you can offer a counselling service during this pandemic (covid-19) please sign up with the link below <U+0001F447> https://t.co/AAQ34KUdzQ
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I thought I would get SOOO much reading done while staying at home during Corona. Nope. Nada. Just have had no urge. But tonight I'm going to crack open my Kindle and dive in. #CoronaVirus
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In two weeks, COVID-19 has claimed more lives in New York City than homicides did there in all of 2019.\n\nhttps://t.co/YfAUx55ayv
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                         The nation is seeing @realDonaldTrump for who he really is: a spineless pussy.  He threatened law suits, &amp; never followed through.  He only fired people if it was on a reality tv show.  And now he refuses to use the Defense Production Act to build ventilators.  #coronavirus
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                         These entrepreneurs are incredible and working so hard to print 3D supplies for those on the front line. Let’s spread this far and wide and get them help in their fight against Covid-19. #covid19 #3Dprinting #coronavirushelp #PPEshortage https://t.co/PyIxfjh526
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To all my Montana people out there. https://t.co/AjBlSVXiba
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COVID-19 Face Shields Now at AlphaGraphics Cary https://t.co/NQdcbqwdbM https://t.co/I1HJzXrSav
## 535                                                                                                                                                                                                                                                                                                                                                                                                                         Tiger King 16x20 inch painting by #JohnFamousArt #Netflix #TigerKing #JoeExotic #BigTiger #Tigers #Lions #NetflixAndChill #netflixandquarantine #quarantine #covid_19 #CoronaVirus #StayHome#StaySafe #StayHome #tigerkingfanart #CountryMusicStar #CountryMusic #Zoo #Redneck https://t.co/UeMGURrnlG
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             “If you find yourself in a more abundant position then others (aka, you have more than $400 in your bank account) this is your time to shine baby. You are the minority American here.”\nhttps://t.co/ylXP0997PH
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                  Technically life is not as easy for all of us \n\nThe sad part is if retailers reduce their trading hours we will automatically get paid less\n\nMost of us can't even afford to pay #DStv can't even afford the same services we offer to others daily \n\n#CoronavirusSouthAfrica #Covid_19
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Again, we welcome these initiatives by @NGRPresident @CorrectionsNg @raufaregbesola However, time is of the essence. #COVID19 is spreading. There is no time for the usual Bureaucracy. Immediate action is required.
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Oh my goodness <U+0001F62D><U+0001F62D><U+0001F62D>\nWhen will this stop !!!!\n\nCovid-19: Highest daily death toll as 919 die in Italy https://t.co/sQqTJ8NJ3J
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            #Jaipur |  Oman return tests positive in city\n\n#RajasthanLockDown #CoronaLockdown #Coronavirus #Stage3 #COVID19 #coronavirusindia #CoronavirusPandemic #CoronavirusOutbreak #CoronaUpdate https://t.co/KgH1dxNXTY
## 541                                                                                                                                                                                                                                                                                                                                                                                                                            @AnkitRawat98075 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs.
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the first time I’ve asked for shares. This is life or death. Please make the 3P tweet go viral  to help beat the virus. The situation is evolving quickly. Only community action can help NHS staff get the #PPE they deserve #COVID19 #covid19UK #Masks4All #PPEshortage
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That mpempe hun was so loud she woke Covid-19 up
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hackers that target agencies working on COVID-19 cures should be given the virus if caught. This kind of callous behavior is simply unconscionable.
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COVID-19: Akufo-Addo to meet NDC’s coronavirus response team https://t.co/3tO48Nxjg5
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thank you @NickLaFave from @wzzm13 for the interview on Altus' production of #ventilator carts. Check it out below <U+2935><U+FE0F> #COVID19\nhttps://t.co/fdLdGUUtiR
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SOME POSITIVE NEWS on #coronavirus : Dept. of @USNavy hospital ship "USNS Comfort" will arrive in New York on Monday - three weeks ahead of schedule. #CoronavirusNewYork #CoronaVirusNYC #CoronaLockdown
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              World Bank, IMF urge debt relief for poorer countries hit by coronavirus\n\nhttps://t.co/8an5qXT3fW #NRTnews #WorldBank #IMF #Coronavirus https://t.co/2GXmMsy3zS
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               **** IMRAN KHAN TEST COVID-19 POSITIVE***\nWhy our media Hide???? Like and share my page https://t.co/PbmQzcRLlx
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Bermuda Cricket Board has held several “virtual” meetings to discuss possible changes for the new cricket season because of the Covid-19 pandemic. https://t.co/yfic5sCObv
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            if/when a COVID-19 vaccine is developed...should it be free to all?
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Manu Dibango - Electric Africa (1985) full album https://t.co/UcNBlPm60T via @YouTube RIP covid-19
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @TeamRVH president and CEO Janice Skot updates the community on the situation at the #Barrie hospital regarding #COVID19. https://t.co/w9nUSVteUp
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When talking about #COVID19 #JoeBiden sounded professional and offered honest guidance with empathy and compassion. That’s why I’m #TeamJoe
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump’s new chief of staff still serving in Congress and trying to learn new role as COVID-19 threatens millions https://t.co/wtGbUlpFxQ
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                          Everywhere that COVID-19 hits hardest, this is a very common theme. \n\nMulti-generational families living together:\n\nWuhan, Lombardy, Spain, Queens, etc.\n\nRemember, COVID-19 spreads in confined spaces. \n\nLockdown is the antithesis to stopping the spread.
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                  @BRIJESH40374114 Hi, in purview of COVID-19, we are currently operating at reduced strength. We might take a little longer than usual to respond back. While we are doing all we can to ensure that our services are running, we encourage you to use #AirtelThanks app for service requests.
## 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Great job ma'am,\nSelfish Bollywood should learn from this. \nSirf social media pe ghar pe rahne aur hat dhone k msg viral karne k liye hi nahi hai ye celibities.\n\n#PMReliefFund #COVID2019 https://t.co/z8NXeONtIH
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Patients are counting on lifesaving blood throughout this pandemic. If you're healthy, schedule an appointment to give in the days ahead: https://t.co/Cjp3HW9FPm #coronavirus https://t.co/PgP72jqkHL
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Please visit https://t.co/dv9BqgCINX to find out if you are eligible for free COVID-19 testing by the City of L.A. Schedule an appointment now.   \n#COVID19 #CoronaOutbreak #TrumpVirusCoverup #TrumpPlague
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #Trump signs $2 trillion #Coronavirus Economic Relief Bill = Cheques for #Americans - Too LATE for #UK and @10DowningStreet\n#BorisJohnson ££'s ...\n\n https://t.co/xUgSKv0aZj
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #COVID2019 #ThursdayThoughts UK eligible to take part in EU ventilator plan despite missed email https://t.co/JiKfy3g1pu
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PART TWO: Alternative Options that Uganda Can Adopt to Cushion Citizens During the Covid-19 Pandemic. - #COVID19\nhttps://t.co/b8ZmAo8DUE https://t.co/UqHx8rlCvk
## 564                                                                                                                                                                                                                                                                                                                                                                                                               I submitted my form today confirming my (and Norman's) participation in this initiative. If we're not going to get meaningful guidance from the state on how to handle this pandemic, I'll get it from my peers. Thanks for the help, @BloombergDotOrg! #COVID19 #localgov #OklaStayHoma https://t.co/6Ty4aIiJEy
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @marklewismd Entitlement of health needs re-assessment in leadership @ #COVID19 public health. <U+0001F34E><U+0001F34B><U+0001F34A><U+0001F34F>
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is what one day of quarantine can look like in our house. #offwork #corona #coronvirus #covid_19 #covıd19 #quarantine #home #projects #parenting #motherhood #parenthood #stayhome #survive #stayhealthy… https://t.co/KPc3D7OFqH
## 567                                                                                                                                                                                                                                                                                                                                                                                                      #StayAwareStaySafe\n\nBenefits of social distancing :-\n\nEach one of us needs to maintain social distance, it will help flatten the curve &amp; slow down the rate of spread of #CoronaVirus!\nWith less patients, hospitals will be able to batter handle critical patients!\n#FridayMotivation https://t.co/twVlZoJRiL
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Watch "Reporter Accuses Trump of Playing Politics with COVID-19. He BURNS Her!" on YouTube https://t.co/4buta1o07x
## 569                                                                                                                                                                                                                                                                                                                                                                                                                             @Tirath89123746 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs.
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Courtesy of Asian Boss on youtube, leading infectious disease expert Professor Kim from South Korea shares his knowledge about COVID-19. Informative, detailed, and transparent; I highly, highly recommend it. \n\nhttps://t.co/IkSHOPEHnl
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Some 1,500 passengers from Algeria, Tunisia, and Jordan stranded at #Istanbul airport by the #coronavirus pandemic have been taken to a dormitory in northern Turkey, according to local media. \n https://t.co/6jSakhuKjp
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Save Lives with Face Shields - my nephew’s company is making these at $1/each! Plz donate if you can! #COVID19 #1dollarequals1faceshield  https://t.co/NFASM7AQ3C.
## 573                                                                                                                                                                                                                                                                                                                                                                                                                        DONATION FOR DRIVERS\n\nWe plan to give a financial support or relief goods to workers who's daily income are just enough for a day particularly trycycle and jeepney drivers.\n\nKindly repost this photo! Thank you! <U+2764><U+FE0F>\n\n#Covid_19 #CoronaLockdown #Donations https://t.co/bI7ztFe02p
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            On <U+2066>@sunriseon7<U+2069> at 8.45am talking about how a wage subsidy will help us avoid mass unemployment #wagesubsidynow #coronavirus https://t.co/WmbeeiPTIn
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Coronavirus Australia news: NSW confirms 186 new cases as Victoria pushes for stage 3 lockdown <U+2013> live updates https://t.co/ZyzL8J5Uo3
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      House passes $2 trillion COVID-19 emergency bill  https://t.co/DOK8mDMelR
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Four Seasons Hotel on 57th Street, New York City will provide FREE lodging to doctors, nurses &amp; medical personnel currently working to respond to the #COVID19 pandemic. Way to step up @FourSeasons! #TogetherWeCan
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Necessity is the mother of invention !!!\n#covid19 #savelives https://t.co/eoLvvnny7y
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Armageddon is their business. And business is good. How survivalists are prepping for a windfall. My latest for @5280Magazine https://t.co/k9rtuWiv98
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Life at home cause of covid: 80% sleep, 10% gaming, 10% bsing on my phone.\n\nI am okay with this. #Quarantine #coronavirus
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How do you think things are being handled with the #coronavirus?\n#covid19 #quarantine\n@PragerU #PragerFORCE @DennisPrager https://t.co/RZRsMYsfFA
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @Oochka3 @CTVNews ppl in the states died of chloroquine overdose after Trump said it was a covid-19 cure. \nwe're thinning the herd
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While we've had to make significant changes to our daily lives to protect ourselves and our communities from the #covid19 pandemic, Seacology's work continues to move forward. This includes some major plans in the coming months.\nhttps://t.co/D6jCAz8BtW
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              People need to take the COVID-19 virus seriously, I can't work if there are customers who don't give a f*ck about it and don't follow the rules..
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you’re in the business of growing grain - check out latest @GrainGrowersLtd farm guide for COVID-19 - plenty of tips and practical advice for helping manage the risks on farm @theGRDC @NationalFarmers #letsalldoourpart #COVID2019AU #agchatoz  https://t.co/wRMzlQLAzm
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Oof. The U.S. just became the global epicenter of COVID-19:\n\nhttps://t.co/Hd1VeGSmKw
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Nope. Apple launches new COVID-19 screening app and website in partnership with CDC https://t.co/u1tHxkU3E2
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #Vancouver's #Roundhouse and #CoalHarbour CC will be converted to referral only response centres, housing those who do not have #COVID19 or housing and need to isolate. More to come: https://t.co/qmBS4cRRQT
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #Coronavirus pandemic:\n\nFrom 0 to 250,000 cases: 4 months\n\nFrom 250,000 to 500,000 cases: 1 week\n\n#ChineseVirus19 #COVID2019 https://t.co/TPRgXFCsz4
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What @realDonaldTrump is REALLY saying here is:\n“Yes, President Xi Did ask me to stop saying “Chinavirus” and like a good boy I complied.”\n\n#Coronavirus #TrumpLies\n#TrumpPandemic https://t.co/eXwT1as1Mo
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Looking for factual, local Miami-Dade County coronavirus (COVID-19) information? Testing, Curfews, Closures, etc...\n\nLatest Updates:\nhttps://t.co/bUE9vnWfWR\n\nMiami-Dade County Departments &amp; Services:\nhttps://t.co/mKVlNckp4B
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                      This has bugged me for years. On the pilot episode of #Frasier, just before Martin enters Frasier is sitting at the piano playing a song then stops when the door bell rings. Can anyone name that song? #Covid19 #californialockdown #bingemywaythrucovid #Imstayinghome
## 593                                                                                                                                                                                                                                                                                                                                                                                                                             @mkraju TRAGEDY:\n\n5959 new cases of #Coronavirus in #Italy with 919 new deaths. Taking tally to 86,498 confirmed cases &amp; 9134 deaths in total.\n\n46 doctors have died to date (with 4 additional deaths today). 6414 health workers have tested positive. #COVID19 #COVID2019 #coronaitalia
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                           With this #coronavirus pretty much putting almost everything on hold, why is @24hourfitness still collecting membership fees? I think it’s time to cancel my membership if they don’t have the decency to put memberships on hold during this pandemic especially in cities with a
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @purtheil @realDonaldTrump Covid-19 what not to do: Oval Office edition.
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Zamfara State will shut down its borders as from Saturday, 28th March, 2020 which is a measure against spread of Covid-19. This was announced by Governor @Bellomatawalle1 in a state wide broadcast this evening.\nhttps://t.co/1nR1OtLtyu
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They’re even saying covid 19 will struggle in Europe and America because of the hot weather in the summer. I’m going out this summer I really couldn’t give a fuck wallahi
## 598                                                                                                                                                                                                                                                                                                                                                                                                                      #COVIDWATCH graph for 26/3 from @mikey0callaghan with @UL + @ICGPnews. We are the vectors for #COVID19. It can't spread if we stay in our family units and stay home. YOU can save lives in your own community. So now, more than ever, please play your part #PhysicalDistancing https://t.co/Wu0uThXWYJ
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                 The impact of the new coronavirus disease, COVID-19, is being felt around the world. We believe we are better when we work together. \n.\n.\n.\n#WeSelNwDreams #Bhhsnwre #Bhsnwrefw #Covid19 #StayAtHome #DoYourPart #StayHealthy #StaySafe #WashYourHands #Washington https://t.co/qzIXbMiGjH
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Kindly take note:\n\nIf you are British visitor in Ghana and affected by COVID-19 please contact:  ConsularAccraEnquiries@fco.gov.uk @ukinghana https://t.co/yIhDwccqwk
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                             "The human ingenuity and ability to adapt and innovate in a time of crisis continues to astound and inspire me each and every day" - Co-founder @BaillieForGood shares her thoughts on #insights in the time of #COVID19  https://t.co/GAZOzEbByA #MRX #MR https://t.co/yfc48xMPhk
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hello yes it is I the deserving 10th seed of COVID-19 week 3.
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    No wait are they... lying?\n\n#CoronaLockdown #coronavirus #CoronaUpdate #COVID19 #COVID2019 #Brexit #BrexitBeforeBreathing #BorisJohnson #ToriesFault #BorisResign https://t.co/CcFxjvjgnW
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dozens of elephants 'set free' as chairs used to carry tourists are scrapped in wake of COVID-19 downturn [Video] https://t.co/UY8tI2K5Ah
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                     We could easily actually have half a million or more COVID-19 cases in the U.S. by now. \n\nIf people are still being told not to get tested unless they have symptoms, and more people still aren’t getting tested if they have mild symptoms, the current 99k case count is inaccurate.
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Corona Kavach: Indian Government launches location-based COVID-19 tracking app. #coronavirus #ceilingfansale #homedecor #CeilingFans  #design #TableFans #interior #PedestalFans #wallfans #ExhaustFans #Cool… https://t.co/58Sf3hoDwu
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Leading VCs discuss how COVID-19 is impacting real estate &amp; proptech https://t.co/ojK2GfR4s3
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                  @EMD4ME Fox News just said Covid 19 is being unfairly blamed. People are actually dying of underlying health problems. That is what it is now down to. By mid-April we will have a 9/11 like death count every other day. (Hey but there’s a carryover at Oaklawn and the market is up! Yay)
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Loss of smell may be an important clue in COVID-19 infection - The Daily Memphian  - https://t.co/zI98subOKJ  #COVID19 d19
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rush Hour. Friendship Heights Metro Station. #coronavirus https://t.co/RXKYrEQa9T
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Covid-19: Christians, Jews and Muslims join in prayer in Jerusalem - Vatican News https://t.co/gaPdVW983J
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @nazifaz_ @WarwickLabour please investigate this hateful tweet celebrating Boris Johnson getting  #coronavirus <U+0001F44D>
## 613                                                                                                                                                                                                                                                                                                                                                                                                                            Here is The British Society of Gastroenterology's guidance and advice regarding #COVID19 #coronavirus. The advice for children is the same as for adults. There is a grid at end of this guidance which gives specific advice on self-isolation: https://t.co/4GSdZWDLo3 … https://t.co/79mRNctgne
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               #Canada - MPs poised to score pay hike amid COVID-19 crisis https://t.co/iEbBxdjRkx This is outrageous. #Cdnpoli
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My family is packing wildflower seeds to share with people in our village and inviting donations to @Somerset_CF #coronavirus appeal https://t.co/IjkNSrI8ke https://t.co/zCKPXYKUyj
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thx @SenateGOP for forcing this sociopath upon our country in its hour of greatest need. #ShamSenateTrial #WeWillRememberInNovember #COVID19 https://t.co/ZGwH5sBV5Z
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The irony of it. These money now will need to be spent to save jobs and lifes.\n#COVID19 #StayHomeSaveLives https://t.co/JECECN4NXW
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                       People congratulating Boris Johnson's handling of #COVID19, I have to ask. Don't you think we'd have been in a much stronger position if we hadn't had more than a decade of austerity and cuts? The fact that front line workers can't get correct PPE is scandalous...
## 619                                                                                                                                                                                                                                                                                                                                                                                                                 #Copyright in schools has been changing fast with the rapid move to #OnlineLearning. Here's an #infographic for teachers which may assist. Based on Australian law, but the principles will be the same everywhere; hope it's useful in this #Covid2019 world! https://t.co/zhfh8CbGdN https://t.co/UoLoY6OuJA
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @beholdcosmicwav Don't forget that if a state does more to check the incidence the fatality rate will tend towards its true value. Germany has tested 120,000 people in a month:\nhttps://t.co/dSTuCszjbS
## 621                                                                                                                                                                                                                                                                                                                                                                                                    2nd World Conference on #Vaccine &amp; #Immunology | October 19-20, 2020 | #Helsinki #Finland\n\nIf you are interested to be a part of this event as a speaker or delegate!\n\nE: meevents@memeetings.com\n\nVisit: https://t.co/C8L1REAeJd\n\n#Immunity #Childhealth #Infection #Coronavirus #Care https://t.co/0WK7Sd9gho
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                            "A Washington Post poll this week found 48% of Americans approve of the president's work"\n\nHow tf is this possible?\nAre they awake?\nAre they paying attention?\nWhat 10 feet below the bottom of the barrel benchmark are they using?\n#COVID19
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     WATCH LIVE: San Diego Mayor Kevin Faulconer provides his daily update on the response to the #coronavirus. https://t.co/NWy9IhglxL https://t.co/91kKz9nQcl
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         More than befores,, Glued to the books indoors slowly become a lifestyle during this Covid-19 times... I guess after this I can look back a count a positive attitude that was gained!
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @SamsClub 9 days later... No response. @SamsClub doesn’t care about #coronavirus safety! Wrong time to send a survey! https://t.co/tGHWQqB8LP
## 626                                                                                                                                                                                                                                                                                                                                                                                                                              @tanamongeau $ktbugg13 Just signed the lease to my apartment last month and am currently laid off due to covid-19 because I’m a waitress and my landlord basically said I have to pay rent by the 1st or I have to get out even tho this is affecting thousands of people. Anything would help:(
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @californiapuc Californians need relief. They are being told to stay home and running up their electricity bills. Please direct utility companies like @SDGE @PGE4Me to reduce rates and/or eliminate high usage charges during #COVID19
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                             At 8pm tonight we are going to be joining in with the #ClapForOurCarers!<U+0001F499> In everyday life they go above and beyond but even more so while they work hard in the fight against #Coronavirus!<U+0001F499>\n\nWill you be joining in?<U+0001F499> https://t.co/TNJuKmcGLW
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @psac_afpc That should have been implemented in January 23rd!!!\n\n#COVID19 winning by late reaction gov of Canada
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <U+0001F4E3> New Podcast! "Same God in an Uncertain World" on @Spreaker #anxiety #christianity #coronavirus #economy #fear #god #health #jesus #sickness #uncertainty #virus #worry https://t.co/pCBt2EwkIw
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UCLA's Chip Kelly's Biggest Concern Is Players' 'Mental Health' Amid COVID-19 https://t.co/Klk1ek2Lb4
## 632                                                                                                                                                                                                                                                                                                                                                                                                                              We need to suspend elective abortions now. #ChooseHope #coronavirus #ProLife \n\nPlanned Parenthood is now 100% abortion - and that's unacceptable: https://t.co/Rxf1nK6HK4\n\nHere's a state breakdown of #COVID19 and elective abortion policy: https://t.co/P0Qinv6L5p https://t.co/Chmjuml2ow
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                     Map shows county-by-county breakdown of COVID-19 cases in the US \n\nThe maps runs on IBM's Watson, combining data from the World Health Organization with reported data at the state and county level to show a detailed breakdown of coronavirus cases across US https://t.co/HUXOw4qc6L
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @AherneMike95 Feel so reassured that we have the amazing #drcatherinemotherway @ULHospitals #nobull #Social_Distancing #washyourhands #COVID19 #LateLateShow https://t.co/ibfourxW8s
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am currently #socialdistancing. I will be 100% #workingfromhome for the next 2 weeks. The #covid19 situation is very bad in NYC and no one is taking chances. I had to improvise with random furniture to make an… https://t.co/VB4TNmN3qt
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                    @56kylecoop @GulfstreamPark @HRRN Due to Covid-19 restrictions, the boys are doing a remote broadcast. Live at 5:30 ET on Sirius219/XM201 and streaming on https://t.co/dux7G6UP2S with @HRRNBaron #BobbyNewman\n@AnnouncerPete \nFlorida Derby (G1), Pan American (G2) &amp; Appleton (3).
## 637                                                                                                                                                                                                                                                                                                                                                                                                               Shame On You @ArvindKejriwal \nI thought u will help poors in this pandemic situation, u will go against ur father #China but no u r a Communist n killing innocent people by hunger..u hv no heart.. SHAME\n#CoronaVillains #LockdownWithoutPlan #ChineseVirus19 #WuhanVirus #COVID2019 https://t.co/XeskwAapQb
## 638                                                                                                                                                                                                                                                                                                                                                                                                                 Families at risk of domestic violence need a way to request home delivered essential food packs. They can’t ask angry men for non-existent food/petrol $ OR leave kids home alone with them to go shop properly @Coles @woolworths @AusPost @amazon @ALDIAustralia @uber #coronavirus https://t.co/UTt2cFuMm0
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                   See the video recording of our webinar: Contain #COVID19, Not People! \n\nhttps://t.co/g8nNI6KWPz\n\nEdited closed-captioning to be included shortly.\n\n#ContainCOVIDNotPeople #AnswerTheCall #LetUsTalk #abolitionNOW #FreeThemAll4PublicHealth #LetThemGo
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I hope y'all have a negative for the covid-19 https://t.co/Dl0OIFTr4x
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gerald_bader : Bird lays off about 30% of workforce amid COVID-19 pandemic via Megan Rose Dickey https://t.co/2r6e5W5ChE #ML #AI #Analytics #Automation https://t.co/cJ3kgHB5HH (via Twitter https://t.co/bjJg0OOkWU) https://t.co/qF51vyjrir
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @Baddiel @WeeMissBea It's actually the other way round. Sars-CoV-2 is the virus which causes a disease called Covid-19 x
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We are hosting #quickcast series on issues surrounding #COVID19, and @DoubleEph was our first guest. It was insightful and enlightening. Listen or download now https://t.co/tk4NNGPDD8
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                @JohnACrimmins @JohnACrimmins they have done one thing exceptionally well - sent very clear, no fluff, messages to their people. "If you have any questions and you are looking for answers, apply a simple rule - act like you have Covid-19...Be kind, stay at home, break the chain." Ardern
## 645                                                                                                                                                                                                                                                                                                                                                                                                @JGPharmD @NickKristof @V2019N @stuartathompson Also they don't really attempt to slow it down much at all.\n\nPeople are still allowed to go out. Groups over 500 are banned. Elementary schools open. It's kinda seen as it being fine hospital staff and care givers don't use protection. #SARSCoV2 #COVID19 #Sweden\n\n...
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @MargotR90016343 @MargotRobbie Sorry for bothering you, when COVID-19 is finished you are very welcome in Banff, AB Canada
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Nancy Pelosi: Ring leader of Democrat’s Covid-19 relief thievery https://t.co/735OlTKDNw via @CommDigiNews
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I was told there would be an abundance of time to kill. So far, this is the opposite of that. \n#socialdistancing #COVID2019 #ParentingInAPandemic
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Find out what's in the #CARESAct #stimulusbill that passed the Senate last night. It's now on to the House for a vote, so check back for updates: https://t.co/rgIDFVCImq  #coronavirus #COVID19 #businesshelp
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                              My sales dropped a lot as shipping has been suspended to many countries amid #COVID19 pandemic. I have many downloadable PDF #crochetpatterns in my shop. Please help me by sharing this tweet \n #Etsy #crochet #pandemic #SmallBusiness https://t.co/kR2hGSZfJA
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Couple recreates final dance scene from ‘Dirty Dancing’ while in COVID-19 isolation https://t.co/AgJoq6VCPN
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If you want to get out of the house, the Wildlife Safari near Ashland opened up Friday.  Just expect a wait time.  The venue made some changes to help prevent the spread of #coronavirus more on that tonight at 6pm @3NewsNowOmaha https://t.co/6MljsBTmFL
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The @nigerianports, other shareholders donate @AguraHotel as Isolation Centre for COVID-19 in Abuja. https://t.co/OFbQvdwjLH
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @PuneCityPolice https://t.co/1XIUKUmf8I\nPUNE: WAGHOLI HOSPITAL STAFF EVICTED FROM NEARBY SOCIETY AMID COVID-19 Scare.
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Definitely uplifting Treatment of 5 Critically Ill Patients With COVID-19 With Convalescent Plasma | JAMA | JAMA Network https://t.co/ej71mECRsJ
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Awww fuck! https://t.co/IvhreWe61E
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @KayceeMaduYEG @rebeccakschulz Hope they record everything.  Our council was still recommending that public go to a seniors tea March 13, and a fundraiser dance March 14.  Now we have Covid-19 in our community.
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @Postmates me and my mom are doing Postmates to earn a little extra money through this COVID-19...my moms has been going off the hook with deliveries and I’m lucky to have one throughout the whol day...what gives? <U+0001F615>
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @san614617 Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests.
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @ananavarro I don’t believe this poll is accurate. #coronavirus https://t.co/w0yHEiYlO7
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                       EXCLUSIVE: A person incarcerated on Rikers Island speaks out. “They’re putting up posters everywhere that say, 'Space yourselves six feet apart!' It’s completely impossible. Even if this place was half full, it would still be impossible at most times.” https://t.co/sBZax17rK3
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @rachelgould1996 @thescottishsn @FionaCMcQueen @NHS_Education You will have a lot to reflect on after all this is over, you may want to keep a diary, it’s been shown this helps during times of stress at work #mentalhealthsupport #staysafe #COVID19
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                           A small kind gesture always matters. Show love to our First Responders. Thank you @krispykreme for providing 250 Two Packs to our officers at the 42nd Precinct in #TheBronx.  We will overcome #COVID2019 together by #BuildingABetterBronx https://t.co/1LYpfDbpAP
## 664                                                                                                                                                                                                                                                                                                                                                                                                 Support is available for Kiwi businesses and workers who have been impacted by COVID-19. The Government's economic response package is in place to ensure that workers receive some form of income as we weather the global economic impacts of the virus. More<U+27A1><U+FE0F>https://t.co/9biBrfyG0I https://t.co/lYvFHYWTH1
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Just a reminder that, other than evidence provided *by China* <U+2014> a regime known for tyranny and govt control <U+2014> there’s nothing to indicate COVID-19 has stabilized in China. https://t.co/j4lZIMyx2H
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VIDEO: A COVID-19 Admonition ***EXPLICIT https://t.co/Np8JFzRNlM via @YouTube
## 667                                                                                                                                                                                                                                                                                                                                                                                                                          @YRDeshmukh The series of events in which this #CoronavirusOubreak has occured clearly points a doubtful finger towards #China .\n\nAnd there is no harm calling #COVID19 as #ChineseVirus19 because in the past also many diseases have been named by their place of origin.\nKindly google abt it !
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I have been doing a lot of video calling for someone that hasn’t washed their hair in a week <U+0001F486><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F602> #Lockdown #COVID2019
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!!\n\nhttps://t.co/crzOOIJe0m
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now we discover what “rights” we really have, perhaps proving the point that we have none, that we have privileges which must be cherished and preserved. #COVID19
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Looting of goods in some parts of south of the border in a Covid 19 backdrop es no bueno
## 672                                                                                                                                                                                                                                                                                                                                                                                                            A massive Thank You to the NHS and those on the frontline, volunteers and key workers helping with the virus battle! Lots clapping <U+0001F44F><U+0001F44F><U+0001F44F> here for you all. Obviously those who didn’t clap need to go to the clap clinic but I’m afraid the NHS are rather occupied with Covid 19.
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GOP governor @GovParsonMO: 'I don't believe I am costing lives' by refusing to act on #coronavirus #MOGOV  https://t.co/fn9llf1Gvh
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I've been traveling for a few years and to see all #airtravel grind down to a hault is so new, to have a 5th of the population of the planet in some sort of #stayathome feels like the beginning of an apocalypse movie #besafe among the #Covid_19 worries
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #CNNTownHall Will the COVID-19 vaccine give me autism?
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEW data visualizations are available on the #COVID-19 page from @UNOSNews https://t.co/GiAlJD2yxE ...These charts show national #data on #organ #transplantation &amp; #donation &amp; they are updated daily!!!
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sure. 24,000+ people are dead, but no biggie. The US now has the most confirmed cases of COVID-19, but her emails. Fear has nothing to do with facts. https://t.co/AG1xPsViNR
## 678                                                                                                                                                                                                                                                                                                                                                                                                                     @dsgngal @jdwickie I felt guilty for 2 1/2 years about my thoughts when it comes to Trump. But how can anyone with a heart not feel this way? Kids in cages, sacrificing our Kurdish allies, Khashoggi, racism women's rights, POC, LBGTQ rights, Climate Change Covid-19. He did nothing until he had to.
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Great to be part of this Swedish-Chinese collaboration in times of #COVID19  https://t.co/xZsKBcGmxA
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             #BREAKING Reno County now reports 5 cases of COVID-19. The two latest patients are men over the age of 50. https://t.co/dk5X3jzac2 #kwch12 https://t.co/u3UsM7L1ZO
## 681                                                                                                                                                                                                                                                                                                                                                                                                         Thank you for the great initiative and innovation!\n\n"can supply up to 100,000 Covid-19 testing kits a week and can produce up to 200,000 if needed." \n\nMUST CHANGE TO \n\n"WE MUST supply 100,000 #COVID2019 testing kits/ week and HAVE TO DELIVER up to 200,000"\n\n#CoronavirusOutbreak https://t.co/T7ytnFpof6
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cepheid Receives Emergency Use Authorization from FDA for Rapid SARS-CoV-2 Test - Mar 21, 2020 https://t.co/QzVMFo5lSs #covid19 #pandemic #coronavirus
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Panama Canal blocks Holland America cruise ship with 138 ill crew members and passengers, and 2 confirmed cases of COVID-19 on board https://t.co/rTKeXWJkUC
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           She was furloughed, but they hope this is temporary. I understand state &amp; local health agencies are overwhelmed but their has to be a way to redirect healthcare workers to fullfil needed functions, like testing. #coronavirus
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Nonprofits and Companies That Are Helping to Fight the Pandemic https://t.co/JSAeXxc9tt
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hey @BostonGlobe: take down the paywall for #COVID2019 coverage and I’ll resubscribe
## 687                                                                                                                                                                                                                                                                                                                                                                                          Monday on “In The Ring With Mia” @ 7am - 8am PT I’ll be talking #steroids in #boxing How it affects #MENTALHEALTH &amp; how it affected my physical health<U+0001F397>Then we’ll check in w/ @LaurenceRifkin &amp; get the latest tips on #coronavirus Call in with ur questions! https://t.co/t4w07S3n1l https://t.co/InlWINN6WN
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Two Areas In Johor Are Now Under #Lockdown Due To High Number of Positive #COVID19 Cases\n\n#movementcontrolorder \n\nhttps://t.co/gvZzERvH83 https://t.co/CMUKbdc48H
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @_chaybay21_ Plus who honestly belives China is telling the truth about their cases. After all they suppressed anyone trying to warn the world about Covid 19 in November.
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whole street out tonight to say Thank You to @NHSuk staff and ALL those working hard (delivery drivers, postal workers, distribution worker, carers ETC.) to keep us safe! #COVID19 https://t.co/Px4AJinV7X
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                               #covid19 #chinaliespeopledies\nIts a request to all police plz don't behave like a killer only punish people for their saftey only how Cornoa can kill people when their guards can kill people by beating them its a horrible thing that i have heard . https://t.co/EcIiyit2AS
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TOO CUTE! A few lucky pups had the Georgia Aquarium all to themselves this week. The aquarium is closed (to humans) due to the coronavirus pandemic. <U+0001F436> VIDEO: https://t.co/7JARWU8TzU
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Excellent webinar in COVID-19 crisis management and clinical experience. https://t.co/JBDgcQL6dL
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Mesa County has 7 cases of COVID-19 according to new @CDPHE numbers.\nColorado totals:\n-1,734 cases\n-31 deaths \n-239 hospitalized
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #MaximumPressure’ campaign has weakened the Iranian economy and eroded the confidence of the Iranian people in their government #nowruz #covid19 @jzarif https://t.co/LmaEok1mnT
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is an emotional rollercoaster #COVID2019
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               #COVID19 is not a joke,So please stay at home,stay safe &amp; stay healthy <U+0001F64F>. https://t.co/WUtMW0zKKE
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                       <U+0001F914> I don’t wanna speculate but I think (and this is completely just a thought,of which I cannot be held liable for it, anyone’s perception of it or any further news that may arise from it, inclusive of but not limited to the influencing of people’s views on covid-19)
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @drjenndowd here is the link to the a English version of the executive summary: https://t.co/72UQEcM7R8
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I can't begin to imagine what it must be like for people who don't have good digital access and connectivity during #COVID19. Then again, digital immersion at this time can also be challenging to wellbeing.  #SAheapsunfair
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It will ship payments of up to $1,200 to millions of Americans, bolster unemployment benefits, offer loans, grants and tax breaks to businesses large and small. #coronavirus\nhttps://t.co/FYS759cgqB
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+2022> mood confinement eat sleep - acnh netflix ! #Covid_19 #ACNH #Netflix
## 703                                                                                                                                                                                                                                                                                                                                                                                                         @Wil_Johnson1 @gatewaypundit Watch from here... Nurse laid off suspected Covid-19. After Joe rattles off his morbid death experiences with his own family in Hospitals he starts reading her benefits she will get that Congress just passed. It gets too complicated so...No Joke..Call Me\n\nhttps://t.co/M1b9e6oB9I
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                    3.3 million have applied for unemployment this week.\nWe have 330M people in this country. How many of us are workers that could even be eligible for unemployment?\nThen only a percentage of them have applied. That is why this number is so alarming.\n#CoronavirusOubreak \n#NotEaster
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                      These changes to SDOH are likely to be in place for months at least, and some perhaps for longer. \n\nTo put it bluntly, from a public health perspective, we are playing with fire.  \n\nIn responding to the COVID-19 virus, we are disrupting many of things that support good health.
## 706                                                                                                                                                                                                                                                                                                                                                                                             Boosting the immune system after being chased by two crazy neighbors who don't care about the #sixfeet rule <U+0001F615> <U+0001F620>\n#immunesystem #boostingimmunity #SocialDistancing #QuarentineLife #Prevention #StayYourAssAtHome #BeSmart #StayHealthy #Coronavirus #Covid19 #GoVegan #GoPlantBased https://t.co/KO4GqqHiJS
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @JennMGreenberg @Cody_Floate Yep! As Liz says in the video, if it’s not Covid-19 then why can't Lilly have steroids? And if it is possibly Covid-19 she should be tested. She is the very definition of high risk.
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is great advice from Dr. Michelle Dickinson aka Nanogirl on what to do to protect yourself when shopping at the grocery store.\n\n@medickinson #COVID19 #StaySafe #StayHome #StayHealthy #StayHealthyEveryone #KeepOthersSafeToo https://t.co/B9Bg4gfmID
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                       Had to wear mask for 2 hours today while going out for an essential work. That is when I fully realized how much difficult the doctors are going through physically and mentally to wear a double mask while dealing with patients with #COVID19 .Literally had no words to praise them!
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            COVID-19 is not going to return the hostages after President leaves office. https://t.co/jTVMDDgQYt
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How many #suicides have there been because of the #coronavirus?
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Jump in Arizona #COVID19 numbers. 13 deaths, 665 positive tests, 102 in Pima County. Again these are only test results and do not reflect the total number of people with the virus
## 713                                                                                                                                                                                                                                                                                                                                                                                                                              @TimesNow Who represents Indians? SC or Lokh Sabha. SC only Duty --interpret laws. SC is telling Center to jeopardize the life of 1.3 Billion Indians especially it was Indian Shia pIlgrims choice to be in epicenter of Covid 19 Qom.@narendramodi @AmitShah @Swamy39 @amitmalviya @MajorPoonia
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #coronavirus #justforfun  my son was listening to this song it's raining tacos &amp; wa lah #inspiration <U+0001F923><U+2764> https://t.co/ViEQnm4jdh
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Johns Hopkins' widely used #COVID19 map erased "Palestine" and merged cases into the numbers for "Israel," making it impossible for more than two weeks to track cases in the West Bank and Gaza https://t.co/L12gpsn77A
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Beloved Seattle restaurateur dies from coronavirus as her husband also battles the virus https://t.co/jiZf0yvz71
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur Ignas Jurkonis and Hollywood actor Ian Ziering takes active part in fighting Corona virus (COVID-19) https://t.co/VbZBkpgKlE https://t.co/EgWirgaVEM
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Jeff Bezos sold $3.4bn of Amazon stock just before Covid-19 collapse https://t.co/glhE1Q4iLP
## 719                                                                                                                                                                                                                                                                                                                                                                                                                    the United Stares has a population of 330 million while China has 1.2 billion yet we somehow managed to have more cases of covid-19. Tell me how that happens? @realDonaldTrump \nHow does China manage to control the outbreak with a population of 1.2B and we can’t with 330M? <U+0001F602><U+0001F602>
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A new machine is currently in place and installation will be in place soon, 10,000 tests have been ordered to go with this machine. We currently have 3000 test kits minus the 250 tests that were done, PAHO is to give us 6000 more kits. #covid19
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @realDonaldTrump @Kayrile02025449 WHO is Dr Faucci &amp; Debra Brix really?\nTedros, Bill Gates, CF, PEPFAR, circle of corruption. \n#COVID19?\n#Eugenicist #Vaccines  #AIDS\n\nAnother piece of the puzzle by: #AmazingPolly\nhttps://t.co/sumtdEcwBm
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   President #Trump allegedly got advice from #ARod &amp; spoke to him about the #CoronaVirus response. https://t.co/1mCetLyFvi
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There have been 170 cases of coronavirus community transmission in NSW as the state’s Premier @GladysB announces another death. #coronavirus #7NEWS \n\nhttps://t.co/B9ICnj0B3Q
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Know what’s tough? Having to explain to your 10 year old son why you had all 4 grand parents for 37 years while he is trying to understand why he lost his first and can’t say goodbye. #COVID19 and yes I understand he and I are both lucky
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The most powerful single image of the COVID-19 crisis yet https://t.co/WhNQ6YkwwB #infoviz
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Don't let coronavirus concerns stall your business. Discover how these remote working technologies can keep your team productive (and safe!).  https://t.co/nU3RaMPr9T\n\nBy @chalklinetech\n#remoteworking #homeworking #coronavirus https://t.co/uNW2psMEQc
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #COVID2019 James Dyson invented a new ventilator in 10 days. He’s making 15,000.\n https://t.co/A8KSXx4NqB
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Health officials say peak of COVID-19 crisis is yet to come https://t.co/I5qvbmO2Bi
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Tomorrow, NY will have more new cases than Italy.\n#COVID19  I do not write this lightly.  We have started the math logarithm task force led by Gordon Buchanan and we all are struggling with how horrific this is.
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @Baddiel I blame you. Before I saw your show in Basingstoke the million years ago that was last month I didn’t do Twitter, and now I spend my days scrolling for comedic relief from #COVID19
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Look Inside the Navy Hospital Ships Fighting COVID-19 https://t.co/JuDoGZeouO
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @greaterheights_ @Dclasyc ... imagine if they’ve seen how ‘vulnerable’ we are now cause of #CoronaVirus https://t.co/ld81qhaGVl
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                            .@HouseDemocrats will always fight for America’s #students. In the new #coronavirus relief bill, we've paused payments for federal #StudentLoan borrowers, suspended wage garnishment and negative credit reporting, and secured over $30 billion in emergency #education funding.
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We wish all of us safe as we combat this novel-CoronaVirus19. #COVID19 #CoronavirusPandemic  #COVID2019 \nWe shall defeat it,  God is with us.\nN/B : Follow  the instructions and guidelines given by the government.
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Another activity's season lost to the Covid-19 pandemic. Definitely the right decision, but still disappointing. #dci2020 #marchon
## 736                                                                                                                                                                                                                                                                                                                                                                                                                                            Dr. Arnaud Prevot, School Marketing Specialist, on why the COVID-19 pandemic and its expected economic and social impacts may lead private schools to seriously consider a Blended Learning Model. https://t.co/HitbcO2Qgi #schoolleadership #covid19 #coronavirus #blendedlearning
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Snoops understands social distancing. Be like snoop. #COVID19 https://t.co/AKZzsIc5BK
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The whole world faces one virus, yet Palestinian people face two viruses: corona and "Israel". #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/IpcRVm4srA
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Showing maps on Covid-19 cases.
## 740                                                                                                                                                                                                                                                                                                                                                                                                           #BC residents are optimistic about of the #Federal Government's financial aid package in response to #COVID-19. 79% across the Province think that this aid will be effective.\n\n67% feel Prime Minister Justin #Trudeau is doing a good job handling the crisis\n\nhttps://t.co/IfHj5g10Am https://t.co/3sJ7tsIuYZ
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How the #VanLife community is coping with the coronavirus crisis https://t.co/Bh5eOH7aLd via @Curbed
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                      VIDEO: In an exclusive interview, Abta's CEO Mark Tanzer talks to @Lucy_Huxley about negotiations with the government on refund rules and the future of the travel industry. Watch it here:\nhttps://t.co/7aY8wj5rR6\n\n#Coronavirus\n@ABTAtravel https://t.co/U4cy6Poouq
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This #Covid_19 pandemic will not only be a lifetime lesson but a litmus test to those regimes which promise heavenly healthcare services to the taxpayers while delivering raw material for constructing hell. https://t.co/RQUBWtJ8qq
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COVID-19 Phone Location Tracking: Yes, It’s Happening Now<U+2014>Here’s What You Should Know via @forbes https://t.co/LlW7R5m4IM
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Getting a lot of questions from partners and clients in terms of how to track the impact of the #COVID19 Stimulus Bill. <U+2066>@JoeKnowsGov<U+2069> to the rescue with this great summary. #govtech  https://t.co/RM3NIhRYH3
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Illinois health officials: 488 new cases of COVID-19, bringing total to 3,026 across the state\n\nTotal COVID-19 related deaths: 34
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Arts Support Included in Federal COVID-19 Relief Bill https://t.co/LWsZTni8Ny
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Has anybody checked if mosquitoes can help spread covid-19?\n\nIf it sticks an infected person and flies to stick a none infected person, will the the person become infected?\n\nhttps://t.co/kPfkFLmAXN
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @RTGACADEMY Super hero Ryan. Delighted to hear that you are doing well in the USA. Stay safe from that bloody covid 19. Will be looking forward to seeing you in tallaght sometime.
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                These are family friends from #WNY and they facing dangerous consequences if they don't receive the medicine they need to survive.\n\nPls share. Maybe someone out there will have answers for this desperate family: https://t.co/B42klLEqYP\n\n#WNY #COVID19 #stuckinmalaysia
## 751                                                                                                                                                                                                                  @AshburnDusty @Azdeb1957 @MaryPea10015905 @NotSoSuper_Dave @EmeraldEagle79 @The_Webologist @DynastyFrank @leftontheradio @MichaelRoach @JohnFromCranber @maddow @BarackObama @FoxNews Suggest reviewing what trump has done to degrade America\n\n- deny #ClimateChange\n\n- DOUBLING. #deficit\n\n- removing vital #environmental #regulations\n\n- Lying about #energy independence\n\n- attacking #FreePress\n\n- delay response #coronavirus\n\n#ThursdayThoughts @FoxNewsOpinion https://t.co/6xFsFgd9Xf
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The number of #coronavirus related deaths in Italy has risen by 919, taking the country's total to 9,134.\n#Italy #CoronaUpdate #COVID2019 https://t.co/TOgldXdKV7
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is hilarious \n#COVID2019 https://t.co/ZafyVJ9P8Q
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         US passes China for total COVID-19 cases according to the Worldometers tracker https://t.co/JtELbmeA9n
## 755                                                                                                                                                                                                                                                                                                                                                                                                                       With #COVID19 outbreak safety and health measures for workers of solid waste treatment is a big concern for all of us. @UNDP in partnership with #EU continues to support municipalities in all Libya with procurement of equipment to support the solid waste management sector https://t.co/dWXRuq85rS
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            An online fund to help the @unilincoln's project to help make safety visors and other equipment for hospital staff treating Covid-19 patients has raised more than £12,500 #CapitalReports https://t.co/PGYY4q3YwS
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As @realDonaldTrump Said : \nAmerica first \n#CoronavirusUSA #COVID2019 #Coronavid19 https://t.co/AEHuxYiU5T
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After testing, doctors have recommended that Richard Burgon MP self-isolate.\n\nIn other news, he’s not showing any signs of #COVID19.
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               @vinayak_jain Especially when they are the root cause of this evil! \n\n#ChineseVirus\n#COVID2019\n#CoronaUpdate
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        America that won't lose to the covid-19   We support the United States.
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        COVID-19: What Bashir Ahmad said about President Buhari, Abba Kyari being secretly flown abroad https://t.co/cAv3LR9BuG
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 During a time where many people are being affected by this Covid-19 pandemic, it is great to see these companies stepping up and showing great corporate social responsibility to the public! <U+2764><U+FE0F>
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                      3 times the number of annual flue deaths may not impress epidemiologists, lumped in a month by CovID creates a 25-fold surge in demand for ICU beds. If you work there (or in the morgue) it doesn’t look optimistic.  But the is a bigger picture we need to mind as well.   #COVID2019
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The world may not begin to appear normal again until three things have happened. #pandemic #coronavirus https://t.co/1GI2FsMoX8 via @wired
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     LinkedIn lists 10 most in-demand jobs, companies with most open positions during Covid-19 pandemic https://t.co/6CeooFsUTH
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                COVID-19; Husband died in Kerala on wedding anniversary, wife in Dubai\n#Kochi #Bijimol #Keralitewoman #Dubai #virus #VirusChino #nCoV19 #ChinaVirus #WuhanCoronavius #lockdown #StayHome #Social_Distancing #CoronavirusPandemic #COVID2019 #COVID19 \nhttps://t.co/nHKpDDsDqH
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Every news is biased so am I #CORONAVIRUS
## 768                                                                                                                                                                                                                                                                                                                                                                                                                           The world: losing jobs, terrified of COVID-19 &amp; staying home to avoid it  \n\nCongress: approved $2 trillion in emergency spending to help businesses &amp; families\n\n@USOCC: pushing ahead with a plan to help banks do less for poor people and poor neighborhoods.\n\n#TreasureCRA @FDICgov
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How dare #coronavirus not "discriminate" and infect a Royal! Off with its head!! <U+0001F451> #CORVID19 #PrinceCharles https://t.co/yAzBGdr5I0
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 "Essential: My Careers, Yes. Lockdown, Yes. "Demon City Shinjuku", Maybe". From current desolation to future destruction. https://t.co/oilpNd1rtP #anime #animationlockdown #movies #AnimeArt #COVID2019 @FUNimation @PrimeVideo  @Crunchyroll
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Help slow the spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download the app https://t.co/jGd2XLkLQw
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                  @HSELive Check out this interactive online dashboard which tracks the spread of COVID-19 across Ireland at https://t.co/MnTTsFTgcA. We all have a part to play in flattening the curve! #COVID19 #COVID19ireland  #SocialDistanacing #FlattenTheCurve https://t.co/CBwbL63HoJ
## 773                                                                                                                                                                                                                                                                                                                                                                                                                 Please help spread the word to families in Miami-Dade: Women, Infants &amp; Children (WIC) REMAINS OPEN! They provide healthy food, nutrition education, breastfeeding support, &amp; family resources. #COVID19 #coronavirus #MiamiBaby #MiamiMom More info:\nhttps://t.co/fSOK06quf0 https://t.co/uCyeKgIVbR
## 774                                                                                                                                                                                                                                                                                                                                                                                                        There are 375 jails in Turkey for 220,000 people but nowadays 300,000 prisoners are kept inside.\namong them:\n780 babies \n2500 kids \n1333 patients \n457 serious patients, who are very likely to catch COVID-19\n\nKoronaTahliyesinde E<U+015F>itlik\n\n@NASM @AmCollSurgeons @NightShiftMD https://t.co/Dj1aQa6hbF
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @PatriotsSoapbox Does anyone else wonder where all the homeless population is? I am concerned sincerely about them during COVID 19....I know some don't care but as a mom of an addict (recovery now) I do. Does anyone really know?
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Missionary Sisters of the Sacred Heart of Jesus join @Pontifex's prayer. <U+0001F64F><U+2764><U+FE0F> \n#PrayTogether #PopeFrancis #COVID19 https://t.co/vTcuKsIpi4
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Times of crisis brings innovation #fact #coronavirus #COVID19 https://t.co/44JOGIK5KE
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Since climate change and Covid-19 have similarities in both cause and effect - why not!  https://t.co/6qYbk61yyM
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NW doctor working against COVID-19 https://t.co/AFkqnM0qYJ
## 780                                                                                                                                                                                                                                                                                                                                                                                                                #Covid_19 Antonello Soro President of the Italian DPA on the processing of personal data: No rush to cross all limits.Our Constitution and GDPR must be our benchmarks. Proportionality is the key. Once the emergency is over,no exceptions must stay\n#GarantePrivacy #dataprotection https://t.co/dfaHWzcYCM
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For everyday during #lockdown21days #covid_19 I'll pretend Brinley and I are somewhere on holiday #day2, you welcome to do the same <U+2764><U+2764>#staysafe #stayhome #bigbuddah @ Big Buddha Pukhet https://t.co/yHTdAFjbaM
## 782                                                                                                                                                                                                                                                                                                                                                                                                                            @BellaTwins You ladies &amp; all of us are subject to propaganda as well. Although I have no doubt that animals are abused, the #WuhanMarket conspiracy is also promoted by @coasttocoastam who are holding a national live radio psychic prayer 'experiment' to lessen the impact of #Coronavirus.
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                 Early on today, my close friends father passed away. Suspected #COVID19. He was taken into hospital last night, after complaining of breathing difficulty and having a bit of a fever. He was ok until this morning. May Allah have mercy on him, sabr and eman to the family.
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 An email my dad sent me about #COVID19 #coronavirus long but worth the read I promise. https://t.co/tIjtXHtqkT
## 785                                                                                                                                                                                                                                                                                                                                                                                                            Created this for my #SPAinspires team 2keep building their mindfulness toolkit. Gr8 part was it helped my perspective on what I/we CAN control during this time of uncertainty.  \n\nFeel free 2share-if you need a mindset reset during COVID-19 \nI am no yogi:)\nhttps://t.co/QhKArgld5E https://t.co/QNCVOAYUil
## 786                                                                                                                                                                                                                                                                                                                                                                                                                         Another pair of masks requested out of state again. Love that these Hawkeye masks are being used by medical professionals on the front lines of the battle against COVID-19. Hate that they don't have the proper PPE that they have to need these. #ThankYouHealthCareWorkers https://t.co/oNB69iC9Hs
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                      @JeffBezos @elonmusk Can you get a license for this and mass produce and distribute this? Would solve the problem in about 4 weeks. 5 minute tests daily fro 350 million people (and all visitors) find and isolate the #coronavirus <U+0001F44F> https://t.co/vWJ9jKtFh7
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                          If Harsh Vardhan started preparing on Jan 18th, Why werent buses for migrant labour, food and bank transfers done even before the lockdown?  \n\nhttps://t.co/2wb1hnc1PS @ndtv @IndiaToday @bainjal @tanvishukla @SreenivasanJain @PrannoyRoyNDTV @aroonpurie @vineetjaintimes @BDUTT
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Local shops taking measures to remain open https://t.co/bikt9jCmf6 https://t.co/k8HmpfavOU
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               @2tb_adrian $KayAlamia78 I'm a student going for my bachelor's degree in sociology and provide for my mom full time. I need help to get my meds things are rough with this Covid-19 <U+0001F614>
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @MigunaMiguna So the government thinks that the police are immune to COVID-19 and the police themselves are blinded by temporary power to mishandle the citizens they are supposed to protect. Don't they see that they are being used? #CurfewKenya
## 792                                                                                                                                                                                                                                                                                                                                                                                    @KTVB It's not like we just topped over 201 #coronavirus  cases &amp; 3 deaths in under 2 weeks, the U.S. just beat China's #COVID19  case # at ~86k, &amp; every hospital needs more ventilators &amp; PPE<U+0001F926>. @GovernorLittle this money is needed elsewhere! The virus is more dangerous than any wolf! https://t.co/b4EiNzQaeX
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Mardi Gras happening right before the nationwide panic was one of the most unfortunate things to happen to Louisiana. It allowed the virus to spread like wildfire before we even considered it a threat  #COVID19
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             “Research on rare diseases is delayed due to prioritization towards the pandemic, as well as due to work and social distancing restrictions.” via @irdirc #COVID19 #RareDiseases
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   WATCH LIVE: Federal finance minister and Bank of Canada governor speak about COVID-19 https://t.co/suneQPzB2q #cdnpoli #covid19 #coronavirus
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After this Covid-19 over <U+0001F612> I’m moving outside <U+0001F62D>
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         US never spent enough on emergency stockpile, former managers say.\n\nhttps://t.co/q7yPKUW1PT\n\n#COVID19 #SocialDistanacing #CoronaLockdown #StayHome
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #trump #COVID<U+30FC>19\n\nMarch 16: [Reporter: "On a scale of 1 to 10, how would you rate your response to this crisis?"]\n\n"I’d rate it a 10. I think we’ve done a great job." \n\nhttps://t.co/eCeNnTCmUM
## 799                                                                                                                                                                                                                                                                                                                                                                                                               @Comicalsuicide @fogken The symptoms I gave you are general guides for you. I would advise you to ring for advice, I'm limited on what I can advise from Ireland. Very important to remember,do not suffer in silence because of Covid-19. Many patients are reluctant to trouble frontline staff, this is silly
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Canadians and Americans Mock US and #IdiotInChief Trump as President Weighs Stationing Troops at Border Over #Coronavirus Crisis https://t.co/gOFKpWzTkG
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @AnnCoulter Do you even bother to look at your own data? You're showing Covid-19 to be 6 times more deadly for people 30-39. https://t.co/e3x13Lhads
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Until the next one I’m replaying this classic matchup. This time there’s no Joe Cortez but unfortunately there’s no pre-fight build up. C’mon @HitmanHatton #eWBSS #COVID19 #StayHome @SauerlandBros https://t.co/Dw9ymM990b https://t.co/2DRRWHYiBX
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                               As COVID-19 continues to spread across the world, I encourage you to visit @funds4disaster's list of opportunities to offer support on both a local and international level. Learn more here about critical needs and how to help today: https://t.co/pMxGXUt6zF
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What #SouthKorea did right in regards of the #CoronaVirus, perfectly illustrated <U+0001F447>\nBottom line: #SocialDistanacing FTW, as hard as it might be. https://t.co/0UqG6OB0yT
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The @MSCSealift's USNS Mercy has arrived on the west coast to support @US_FEMA and @USNorthernCmd task force. #Togetherwedeliver #COVID19 #Covid19usa https://t.co/2GwMnWR4Qf
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <U+2066>@MingGao26<U+2069>  Virginia Pastor Who Said COVID-19 Was Anti-Trump “Mass Hysteria” Dies of Virus | Bo Gardiner | Friendly Atheist | Patheos https://t.co/kwPM2oHyjq
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How's that #coronavirus doing, @kathygriffin? Liar. https://t.co/tFB0vE6wby
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                   Today Columbus City Council President Shannon Hardin had a conversation w/ medical official(s) and in that conversation he urged young adults to abide by the #StayAtHomeOhio order from Governor Mike DeWine. Over 70% of Columbus’ cases of #COVID19 are those age 18-44!
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Dr. Saphier breaks down 'very encouraging' COVID-19 numbers: 'We are slowing'\n\nhttps://t.co/KLQkgb9Mna
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @Rubenbaeza8 @GHS @nytimes H1N1 was less infectious and less dangerous than COVID-19. H1N1 ended up killing 50 million people
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #Kentucky is REALLY loving and proud of the leadership our new Governor Has displayed during the #Covid19 crisis. #KentuckyStrong #KentuckyTogether https://t.co/1dK6gcaPtb
## 812                                                                                                                                                                                                                                                                                                                                                                                                                @cmckenney @ShawnMenard1 So disappointed. I was nearly run over on a residential St on my way to pick up prescriptions for my family today. People on the sidewalk, so I took the road. A car came speeding around the corner so fast I hardly could get out of way. We need more room to walk safely! #COVID19
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So now that we’re the country with the most recorded cases of COVID-19, I think it’s time to start calling it the #MAGAvirus
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Trump says nobody could’ve saw this coming; well here’s the Inside Story of How H-E-B Planned for the Pandemic:   Translation: we got a dumb f#ck for president. #Coronavirus #Maddow https://t.co/ZYLsyOKjVX
## 815                                                                                                                                                                                                                                                                                                                                                                                                          @WHO @MBuhari @ProfOsinbajo @NTANewsNow @channelstv @HerbertOWigwe @TonyOElumelu @jimoviafoundatn @alakijaofficial @TheEconomist @Forbes\n@DangoteGroup\n#Coronavirus \n#CONVID19\n#CoronaVirusInNigeria: Abdulsamad Rabiu Redeems <U+20A6>1 Billion Pledge To CBN -\nhttps://t.co/yw25wLATkN https://t.co/Sx6P7VDY6z
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @loeschtwins @PicPedant Good hygiene and caution are the best ways to slow the spread of COVID-19.
## 817                                                                                                                                                                                                                                                                                                                                                                                                              As we work to combat #COVID<U+30FC>19 by staying at home,  we still need to fight hunger.  What if you could learn how to grow with no soil? Join me on Saturday via IG @Samsonprolific #CovidNGR #ZeroHunger #foodsecurity #FarmLab2020 #ABetterNigeria #StayHomeSaveLives #Agribusiness https://t.co/JEyTmRol2L
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If you have student loans, you can call and get a forbearance due to covid-19. No penalties. But you have to call/go online and request it.
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To Stop the Spread of COVID-19, a Temporary Halt on Amazon Deliveries Is Needed, Crypto Coins News\nhttps://digital... https://t.co/F9yo2Tfo6P
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @AdamParkhomenko He would never do that. he said hes the most transparent president ever! He would never lie to us, would he??? #COVID2019 #CoronaVillains #TrumpLiesPeopleDie
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yesterday during an aimless Twitter feed read, I came across a website that showed a map of states colored according to strength of COVID-19 response measures, with a drill-down to show "the curves" for status quo vs. clamping down even more, 1/
## 822                                                                                                                                                                                                                                                                                                                                                                                                                 Local businesses in #Bedford can apply for #businesssupport #grant via @BedfordTweets website. Check whether you’re eligible through U.K. Gov qualifying criteria. More info shared in attached screenshot. @WeAreBCA @quarryatstlukes @ThePlaceBedford @uniofbeds @SEMLEP #COVID2019 https://t.co/NlVxbPlPML
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     IDPH announces 56 new #COVID19 cases today. 235 total statewide. @KCCINews
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @OwensboroHealth Saw your news article about fabric masks. Just created a pocket mask pattern available free on my website. Let's all get out our sewing machines!\n\nhttps://t.co/mQX7kyqmZr\n\n#facemasks #coronavirus #Covid19usa https://t.co/oo4yz3Ltds
## 825                                                                                                                                                                                                                                                                                                                                                                                                                             Impact of COVID-19 on Municipal Finance: Restructurings Inevitable (Part 1): “Only when the tide goes out do you discover who’s been swimming naked” <U+2013> Warren Buffet The tide has gone out on the municipal finance market. While much of… https://t.co/rIMheZDhb2 RI Bankruptcy lawyer
## 826                                                                                                                                                                                                                                                                                                                                                                                                                          within   a fortnight and reinforce our fight against COVID -19. We are not wanting face the scenarios like USA, China, and Italy. But every stake holders need to follow lock down and all precautionary measures advised by WHO,,, \n\nWe shall win, Corona Must defeat,,,,, https://t.co/pzdO24BbBb
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Attn fellow Michiganders:\n\n#COVID2019\n#25thAmendmentNow\n#StayHome\nhttps://t.co/SPTqyRiOQg
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I officially know two ppl living with #COVID19 \n\nShe and her boyfriend say that there's really nothing hospitial can do for you if you get it.\n\nOne thing she mentioned was her loss of smell and taste so thats consistent.
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A #TwitchStreamer Is Exposing /#Coronavirus Scams Live.\nhttps://t.co/u4UlGP5XMS #kitboga
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That emergency alert was really ahead of the curve on this whole COVID-19 situation <U+0001F644> Sent so urgently they forgot to add the French part together in one alert
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Safe places to visit during COVID 19\n.\n.\n.\n#covid #covid19india #covidsafety #safeplaces #homesafe #kitchen #window #studyroom #livingroom #kidsroom #safeindia #covidvaccine #safefuture #covidresponsibility #humanity https://t.co/pkZIHx4aIm
## 832                                                                                                                                                                                                                                                                                                                             @HillaryClinton @realDonaldTrump You &amp; your spouse are the CANCER-92+ that has riddled @TheDemocrats. Your signature brand is the plague of #Neoliberalism, far deadlier than COVID-19. For the sake of humanity &amp; all of planet Earth, *please* go away &amp; be quiet<U+2014>quit spreading death (&amp; enabling rapists). <U+0001F30D><U+0001F30E><U+0001F30F><U+0001F6AB><U+0001F480>
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          https://t.co/Zl4N3DeRY8\n\n#covid19 #@home\n\nA little bit of Physics in these tough times!!! https://t.co/WgPDG2ZLql
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @Goodmoisturizer @A_S12 @sbjsbd That however sort of defeats COVID-19
## 835                                                                                                                                                                                                                                                                                                                                                                                                                @JimSantilli @richviss @NikkiRedeemed @GovWhitmer It worked for what disease? It didn’t cure COVID 19! So stop lying and killing people with damn lies and dirty politics! If it really cured your covid19, it’s still called anecdotal evidence! NOT scientific proof! Do you know the diff between the two?
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Seeing tooooo many house parties in my feed... <U+0001F974> #COVID19 #CoronaLockdown #coronavirus #CoronavirusOutbreak #StayAtHomeAndStaySafe https://t.co/axV2gftxzm
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Langley Sephora employee tests positive for COVID-19 https://t.co/IwZtmSxauz
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What if the federal government is purposely not  taking the proper action against COVD-19 to use the emergence of the virus as justification to build The Wall...<U+0001F914>\n\n#CoronaLockdown #LockdownWithoutPlan #COVID19 #Coronavirus #USCOVID19
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Enter to #win Rubik's Race board game - perfect to keep you and your family busy during #quarantine for #covid19! https://t.co/2FjUg0HSIT
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                   While the full impact of COVID-19 is not yet known, we do know it has significantly disrupted the lives of our students. Make an impact today. Gifts to the Student Relief Fund help meet emergent critical needs. #StocktonUStrong  https://t.co/HyuK9JdzG7
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is there a single politician speaking to the world and saying that we will get through this? #COVID19
## 842                                                                                                                                                                                                                                                                                                                                                                                                                              Eventually , deploying army would be the only choice when the non-compliance would rise and civil unrest due to rapid spread of #Epidemic of #CoronaVirus leading to large number of deaths due to #COVID19 would occur  ( April )\n\nAll data points to hotbed #Mumbai ! https://t.co/vcCSDIWFPD
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I've got a two week holiday coming up and Boris has said he will review the lockdown on Easter Monday I bet he extended it for another week and opens the pubs the day I go back #coronavirus
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BC, we can #FlattenTheCurve . Let's show the world that by working together, we can get through this! #PhysicalDistancing #COVID19 https://t.co/qehsOYrXj0
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That’s all fine and good, but has anyone asked how Jake the Snake has been through all this #COVID2019 #CoronavirusOubreak #Quarantine
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Watch <U+0001F4FA>: President Trump and his well-established CoronaVirus Task Force brief the press and provide the public updates! <U+0001F1FA><U+0001F1F8> \n\n#COVID19 #PresidentTrump #StayHomeSaveLives \n\nhttps://t.co/5ANYGt6QfA
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There are currently more Covid-19 cases concentrated in the Charlotte area than anywhere else in the state of NC.\n\n#ncpol #NCpolitics #northcarolina https://t.co/8BfJdDZdBD
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                           Also, I think it has been a pleasure to have @LeoVaradkar as a leader during this crisis. 100% truthfulness at all times, transparency in decision making, decisive when needed, and a completely evidence-based approach! Putting the UK and USA to shame! #COVID19 #COVID19ireland
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @nickreeves9876 @gwcollinge @SkyNews If it was seasonal(reducing in the summer ) how do you explain covid-19 infections rapidly spreading in the Southern Hemisphere during the height of summer.
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      38 new cases of COVID-19 have been reported in Lake County. My dad works in the hospital and he has been working with patients who have it... please, STAY THE FUCK HOME AND HAVE PROPER HYGIENE!\n\nGracias <U+0001F5A4>
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #beauty in the age of #covid_19 #confinement #day15 https://t.co/RbNLOcBRgM
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I feel like 2020 is what we all expected from 2000. #COVID19 #Y2K
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Congress Passes CARES Act (Phase Three) in response to Covid-19 - https://t.co/1kaSk8xgIt #coronavirus #covid-19
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Investigational COVID-19 Convalescent Plasma - Emergency INDs https://t.co/OBuITC8Jix
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Rajasthan COVID-19 tally reaches 52 with two new cases: https://t.co/xkc5ZHNBDw
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @worthlessmind2 Testing is free in government hospitals.\n\nhttps://t.co/XN2AoTrz3N
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I bet others can identify with this statement. #COVID19 #brandexperience https://t.co/WK9zWpXw0Z
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All because you are selfish. Shut down the plants NOW. #CoronavirusUSA #COVID2019 #COVID #CoronavirusPandemic https://t.co/uBGoQH5Qjc
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                           COVID-19 hits fast-forward. Nurses without PPE, unemployed workers without health insurance, immense money injected into monopolized industries while you're given a paltry $1200 or less to ward off social unrest. \n\nThis is a bourgeois democracy in crisis acting accordingly.
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ways to keep yourself and others safe during COVID-19 pandemic - https://t.co/gT11FKBBjB https://t.co/jKCrJZ23Ob #firesafety https://t.co/UcmjSU9NFk
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                              We've had some extra workload at work due to things that's been going on regarding COVID-19 and helping clients/business in regards to that. I need to catch up on the soaps, which I will do at some point, lol. I did catch some of the scenes today with Nick/Billy/Lily. #YR.
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               My COVID-19 logs
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                   Patient 2 (full term)\n\nmaternal COVID-19 pneumonia.\n\nDay 1? lethargy, vomiting, and fever. Tests showed leukocytosis, lymphocytopenia, and an elevated. A chest radiographic image showed pneumonia. NP and anal swabs were positive for SARS-CoV-2 on days 2 and 4.  Negative on day 6.
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How Soon Will COVID-19 Peak?  (And How To Tell) https://t.co/mwcWPaXb3P via @YouTube - with a lot of caveats. Depends on source data accuracy. Distorted by testing.
## 865                                                                                                                                                                                                                                                                                                                                                                                                                    WesternU students have mobilized efforts to make masks from fabric and collect or buy N95 masks in the wake of a shortage of personal protective equipment (PPE) due to the COVID-19 pandemic.\nhttps://t.co/gvIEKxRgSR \n#WesternUStrong #abc7eyewitness #WesternUWay #Coronavirus https://t.co/p2HH23dSE8
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @pepperdem5 @BBSimons When it gets real and you get affected by COVID-19 there you will know no man is immune to COVID-19.  if Sarcasm is Implicit the opposite is Explicit.
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tonight <U+2764><U+FE0F> #ThankYouNHS #COVID<U+30FC>19 #StayHomeSaveLives https://t.co/N8dEUODHS7
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Total lockdown for 21 days in Zimbabwe #COVID2019 z
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/3shO2QqAbf via @YouTube
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Two Dane County Jail inmates test positive for COVID-19, six still in isolation with fevers | Crime | https://t.co/som8Vo31hx https://t.co/mHN75bUZSs
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                         @essenviews Why is no one talking about what the Republicans really wanted: to suspend habeas corpus. This would have given the government the right to detain people indefinitely, and most likely those people would be the ones that have tested positive for Covid-19. This way,/1
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                        @ericgarcetti Tw2. ... than in clear sky regions. Those pre-trash peoples lungs., making it easy for Covid 19. Add fags and alcohol. All medics stone deaf. In Wuhan it is (unusually) SO2 from their Al and steel plants burning hi-S petcoke anodes, courtesy Trump cutting off their
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We're trying to do our part @fiftyyears.\n\nWe recently offered all 12 portfolio companies working on #COVID19 solutions uncapped SAFE notes to accelerate their efforts.\n\nWe hope other VCs will join us in this.\n\nhttps://t.co/isre50lVgJ\n\n7/n
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Social distancing by Kenya police!\nHow gasing and beating helps fight covid19.  How u expect tens of thousands ppl get home before curfew.  Stupudity of highest degree \nCURE IS WORST THAN DISEASE \n#COVID2019\n#Kenya\nhttps://t.co/aPcTvnCoeA
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So edey mean say if you get underlying health condition Covid-19 is your death sentence ?
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @Lilpoo404 @OCDrises @Covid_19_UK @Inevitable_ET There are Patriots and there are traitors. No name is #1 on the latter.
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @SusannaLHarris No need to start a #ScienceFight it's already been started #COVID2019 redefining world's superpower.
## 878                                                                                                                                                                                                                                                                                                                                                                                                                 @JohnDelaney @JoeBiden Gaslighting Americans about Governors not being partisan is insulting at this point. \n\nHow many Governors have used executive orders to stop chloroquine from being used with azithromycin for COVID 19 patients? \n\nThe answer should be zero, sadly it is NOT! \n\nRiddle me that?
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ok I am late to the party, but what’s happening in Russia?\n\n#COVID19
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jamaicans in New York afraid of COVID-19 <U+2013> “It’s scary out there”\n\nhttps://t.co/X4HEX5JHGx
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                            from the Mayo Clinic website:\n\n"Currently, no antiviral medication is recommended to treat COVID-19. Treatment is directed at relieving symptoms and may include:\n \nPain relievers (ibuprofen or acetaminophen)\nCough syrup or medication\nRest\nFluid intake"\n\n#coronavirus
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I wonder how long until there's a #COVID19 DLC for #PapersPlease...\n\n@dukope
## 883                                                                                                                                                                                                                                                                                                                                                                                          BREAKING: Global #coronavirus cases have surpassed 500,000.\nA Johns Hopkins tally reports:\n<U+25AA><U+FE0F> At least 75,233 cases in the U.S.\n<U+25AA><U+FE0F> At least 22,993 total deaths globally\n<U+25AA><U+FE0F> At least 120,983 recoveries globally \nVia <U+0001F449>  @ajplus \n#CoronaVirusUpdates #CoronavirusPandemic
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @chennaicorp #GCCMythBusters  Cuban Interferon Alfa-2B has proven effective for viruses with characteristics similar to those of COVID-19. https://t.co/uGnyIu7z5v is this true ? #govt
## 885                                                                                                                                                                                                                                                                                                                                                                                                           Dear #FasadChaudhry, \nEvery University &amp; educational  institutions(Madarsas) in Pakistan use 2 operate by Hafiz Sayeed, Masood Azhar, Syed Salahuddin and other terrorists. They will provide you only Terrorism, don't expect research. #CoronaUpdate\n#coronavirusinpakistan #COVID19 https://t.co/UHEWMQwiT7
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @itsjojosiwa this is how u dress when u dont have to wear ur uniform #homeschool #COVID2019 https://t.co/7tffWuzdef
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GOOGLE announces #Coronavirus aid: "$800+ million to support small businesses and crisis response" https://t.co/8Z7LWbwTsn
## 888                                                                                                                                                                                                                                                                                                                                                                                                @Derp_Decider @Storm_22xoxo @thehill No, COVID-19 is the important part.\n\nHad this been written about any other disease it wouldn’t be getting as much coverage as it is.\n\n"Though early tests indicated a positive result for COVID-19, the case is complex and there may be an alternate explanation for this fatality,"
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why is ChineseVirus19 trending???? This racism shouldn’t be tolerated do better people #COVID2019
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Applause to all working currently in the Health Services inclusing HSCP's.\n#medicalscientists #COVID19 #Covid_19ireland https://t.co/eZ1u9Ls8Z9
## 891                                                                                                                                                                                                                                                                                                                                                                                                         @WeleSeg @AndiMakinana @tumie09 Our journalists can be rubbish sometimes. They seem to have normalized homelessness to legitimize Covid-19 pandemic on homelessness.\n\nThe problem here is homelessness, which started before the pandemic. It would still the case post the pandemic. That's is the real "sad story"
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                     #COVID19 pandemic is truly global. Tak, a remote border province in Thailand’s northwest, now records 2 cases: No. 1 a Pakistani man, No. 2 a Thai woman who just returned from NY, flying into Phuket -&gt; Chiang Mai, then picked up by brother in car to Tak. https://t.co/KNuKqkFq6W
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Read why America’s broken health care system is the biggest obstacle to containing the coronavirus here &gt; https://t.co/ftGNfQOZCs #COVID19 https://t.co/pRT1bHSWHu
## 894                                                                                                                                                                                                                                                                                                                                                                                                                               OH&amp;S Content Editor Amanda Smiley gives a COVID-19 update  and sits down with Greg Olson, a Sr. Product Specialist for Industrial Hygiene and Respiratory Protection at TSI, to discuss proper fit testing amid the pandemic.\n\nSponsored by TSIIncorporated\n \n… https://t.co/M7KG7V1dX2
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Where the fuck is Ron DeSantis? #PissedOffRepublican #Coronavirus #shutdownflorida
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #CNN #USA now has more COVID-19 cases than any other country in the World.... Mission Accomplished, Nice Job Mr. President
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now on https://t.co/0J2UdYHyh5\n\nVin Scully Gives Pump-Up Speech Amid COVID-19 War, We'll Unleash The Tiger!
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Mi laptop dio positivo al COVID-19 y un cancelled subscription de Word. (: https://t.co/USsWuL29a0
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nineties Country Star Joe Diffie Tests Positive for Coronavirus https://t.co/cJhEtRGhRE via @RollingStone
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If anything, Canada is the one that needs to have military in the border to stop the already #1 affected #COVID19 country in the world to try to cross our way #USA #ohcanada #stayaway
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I was supposed to be spending my 29th birthday with my daughter, instead, we are stuck on different islands due to COVID-19. What was meant to be just a few days apart has become 10 days and will continue to increase… https://t.co/2dkPJ9k9xB
## 902                                                                                                                                                                                                                                                                                                                                                                                                                My Contribution to PRIME MINISTER'S NATIONAL RELIEF FUND ACCOUNT.@PMO we'll stand with you and your efforts against #Covid-19\n\nMy request is Please Test More,so that more positives could be found out.\n\nI request to all my friends contribute if you can !\nThankyou @airtelbank https://t.co/UU0zE5dJ8V
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                    Happy Birthday, Lauren, and I thank God for people like you<U+2014> nurses who are on the front line fighting this COVID 19 to save lives. I pray a hedge of protection around you from God<U+271D><U+FE0F><U+0001F64F><U+0001F3FB><U+2757><U+FE0F> https://t.co/u7fgBot5Tv
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Parker team members are stepping up to deliver products that are helping the front-line effort to combat the spread of COVID-19: https://t.co/SKg17kKpsn https://t.co/XdstPR1myz
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @ToddJCefaratti @gabrielsherman @teigland_cindy It's not like this guy will be voting for Tump in November.<U+0001F60F> (And really. You should look at Louisiana. That's the next hotspot.)\n\nhttps://t.co/TKD1rHVXuG
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @ReneeMarieHern2 @wtpact5js @GovBillLee And Sen. Lamar Alexander’s daughter tested positive for Covid-19!
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @TedMielczarek @johnregehr @TedMielczarek @johnregehr To be honest, the frequency of the All Hands has always been draining for me. Due to COVID-19, 2020 will end up only having one and I would love it if we could keep to this schedule.
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Further patrols completed in the south, strong words of advice given  to two groups, please listen to government advice #COVID19 #StayHomeSaveLives #FlattenTheCurve #bishopstortford https://t.co/W06W1ixUvf
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tracking the COVID-19 Pandemic’s Immediate Effects on Women and Minorities in the U.S. Workforce https://t.co/XJWXlcrkqT
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ICO has a new information hub to help people and organisations with data protection issues during the COVID-19 outbreak. https://t.co/Imrx2qns6c
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Truly dreadful. \n\nTeen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/JpE26PkYyF via @@gizmodo
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This video has critical info for how to sanitize your groceries from #coronavirus #covid19 please watch and SHARE EVERYWHERE and DO what he says <U+0001F64F><U+2764> #StaySafe https://t.co/4dZqoXpMEC
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @W_S_O_S_D Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests.
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fall Cabal - COVID-19 series NEW <U+0001F447>\nhttps://t.co/DxWtsIqtFF
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Day 1 And already we dealing with this<U+0001F614>.Covid-19 <U+23E9><U+23E9>The Days may it will be better . https://t.co/joyz2m611D
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Keep the Covid-19 Memes flowing https://t.co/TkKigYCFT7
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The God that you serve is able to protect you and you will outlive this season (coronavirus) \n\n#alcc #comeandsee #COVID19
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ITALY OIL REFINER API HALTS PLANT AS COVID-19 HITS DEMAND\n\nITALY OIL REFINER API HALTS ANCONA OIL REFINERY ON WEAK MARKET
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Day 11 of MCO is here. Foreigners are defying the order here and are being locked up and may face jail time. So unfortunate. But there will always be consequences in all that we do. Sorry. #MCO #Malaysia  #Covid19
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JUST IN: A sixth Santa Clara County Sheriff's Office deputy has tested positive for #COVID19. Story to come.
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jair Bolsonaro claims Brazilians 'never catch anything' as Covid-19 cases rise https://t.co/AVuel1HzGp
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How about; “As testing ramps up to reveal 604 cases in #Virginia and thousands live with fear and anxiety, some can only see the politics in #coronavirus.” This is serious! DON’T #BeBill https://t.co/hcVqgV9elW
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @lerato_morapedi Please note that all deliveries have been put on hold as per the COVID 19 #lockdown instructions. Yes, purchases are delivered through Takealot <U+0001F609>.
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SEO After #COVID-19: 8 Opportunities to Start Working on Now https://t.co/QH3lzx2gBd #SEO
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WATCH - The City of Abilene announced its 1st positive COVID-19 case this morning. \n\nHere is my live recap following the press conference: https://t.co/jZPs4jvIsx
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                      ICYMI Feb: German Minister of Health and Minister of the Interior: \n\n"Health care of the population has priority over financial interests of the economy amid the outbreak of #COVID19. Labs throughout Germany are now able to test the coronavirus, free of charge for all citizens."
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They should have compared this number with the prevalence of cancer since incidence accounts for new cases. The prevalence of cancer for most countries is around 2% of the population so COVID-19 does not seem elevated in patients with cancer.
## 928                                                                                                                                                                                                                                                                                                                                                                                                      Defense #creditunions are uniquely prepared to respond to widespread disruptions in day to day operations &amp; member income streams enabling them to serve their #military installations &amp; their members worldwide during the #COVID19 health and economic crisis.\nhttps://t.co/BvAhxMiRHF https://t.co/YbGLsum7NU
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A group of our amazing ER staff is pictured here preparing our indoor surge area for potential COVID-19 patients. https://t.co/mL7wwRkuBY
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When your quarantined and you have to suck yourself off #COVID<U+30FC>19 https://t.co/9ztvdvPDFg
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Not sure if I’m in week 2 or week 20 of self isolation... #COVID19
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Covid-19 - Communication is key! The Latest News from Jones and Clark - https://t.co/Ji0M32jqYO\n\nContact us with your questions or requirements!!
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Why we need #Medicare4All #MedicareForAll #Bernie2020\nThe U.S. may end up with the worst COVID-19 outbreak in the industrialized world. @edyong209 explains how it will play out: https://t.co/CkcoAuein5
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  #IndianRailways In Action :: \nIsolation coaches prepared by the Indian Railways to fight the #Coronavirus Pandemic.\n#COVID2019india https://t.co/RLaevKcw73
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      i need to consult the psychiatrist I had to meet but I can't :) fuuuuck you covid-19 and all the people who still go out.
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                     Worlds colliding in response to #COVID19 and it's amazing to see.\n\nA super successful fintech that powers 500k SMEs across Europe has started providing subsidised loans to customers directly from their balance sheet.\n\nReaching out to @EBRD to see if there's a way to scale it...
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A local restaurant is going above and beyond to make sure its employees are taken care of during the COVID-19 pandemic by providing meals for them and their families: https://t.co/ftj3YIhuLB https://t.co/VFpJWp6b5n
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                        @MAS, looking for employee ideas on how to save $? Sign up for our FREE crowdsourcing app, Slash here: https://t.co/W5hrmxjdM8\n\nWe are providing this to all companies affected by #COVID19 in order to help you navigate these unprecedented times. We'll get through this together!
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We thank all nurses for standing up against COVID-19 during this time. Sign our card to thank your local nurse:  https://t.co/Any7SIYY9f
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #coronavirus can eat it.\n\nSICKNESS MUST BE PURGED.\n\n......tag someone who will know this. https://t.co/IGiB2C0qCD
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               COVID-19 https://t.co/XpCLi20zVF
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  “We really appreciate the presence of the (@MINationalGuard) members because it’s showing the importance and reinforcing the screening processes being a critical tool to safeguarding our members. https://t.co/avV6omaKZq
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I hope each new day brings the world closer to a full and<U+00A0>speedy recovery from #COVID19 <U+0001F64F>
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Curious how far the spring break Zoomers might have spread #COVID19 ? Check out this #dataviz of cell phone pings from just a single Ft Lauderdale beach during spring break. https://t.co/HPni9dYZvj
## 945                                                                                                                                                                                                                                                                                                                                                                            My mom got to see Pap through the window. He was so happy &amp; asked about his knuckle heads. That’s what he calls the bitties. He forgets about covid19 so he has to be reminded daily that the entire world is sick<U+2639><U+FE0F> Praying that the world gets better<U+0001F64F><U+0001F3FB>#COVID2019 #TogetherApart https://t.co/MUQZ5OXIpU
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Covid-19: WHO says Africa should ‘prepare for the worst’ #Ethiopia https://t.co/TRTQuuE3vz via @ecadf
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                       <U+0001F58B> Support Patricia by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r\n\n<U+0001F4E8> Last delivered to @GavinNewsom, Assemblymember Cooley and Senator Nielsen  #CApolitics #CApol #COVID19 https://t.co/MLwPv4XEo6
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Is #stayathome boredom setting in? Here are some ideas on fun things to do! You can also find a list of recommendations at https://t.co/iRVQY7k2Os\n \n#InlandRegionalCenter #coronavirus #staysafe https://t.co/OPYXppvjwc
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @BetteMidler Donald Trump will fill Rikers Island with rows of mass graves before he lifts a finger to help governor Cuomo, a man who failed to bend the knee ... #Coronavirus https://t.co/HaAGSunJ44
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BLH Medical Director Dr. Ignatius Cordova assured that all safety measures are in place and they are in control of the situation.\n\nThe management also assured that they will continue to provide quality healthcare services amid its battle with COVID-19.
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      New post: DRDO develops N99 masks, ventilators and hand sanitizers to help fight against COVID-19 https://t.co/wpdrfbYi8A
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                     The BC Ministry of Health strongly urges anyone who has symptoms - including a fever, cough, sneezing, sore throat, or difficulty breathing - to self-isolate for 14 days. Visit the BC Centre for Disease Control for more #COVID19 info: https://t.co/QVdaYRjsZf https://t.co/uqednseo0O
## 953                                                                                                                                                                                                                                                                                                                                                                                                                        AMERICA was infected with VIRUS which is #Trump. Democrats are currently conducting job interviews to HIRE A TECHNICIAN to expel this virus. The result of employment will be in NOVEMBER. STAY TUNED !\n#coronavirus\n#UnEndorseBiden\n#TrumpLiesAmericansDie\n#CoronaLockdown https://t.co/M4P0GMtSlz
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LIVE | Farm activities exempted from #lockdown rules to ensure food security, says Agriculture Minister Narendra Singh Tomar.\nFollow for updates:\nhttps://t.co/YEy4fGBkI1
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Mexico: Mexicans Need Accurate COVID-19 Information | Human Rights Watch https://t.co/zoGeNjSjho
## 956                                                                                                                                                                                                                                                                                                                                                                                                Leadership &amp; The Era of COVID-19 --FREE\nIt’s a new day in leadership &amp; macro social work. Join NASW-NJ|DE &amp; Network for Social Work Mgmt on Friday to discuss the challenges we face in leading programs, managing teams &amp; course-adjusting during COVID-19.  https://t.co/J0WQqI6rbQ https://t.co/L81NakX3hE
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We’re incredibly proud of our team who continue to support patients, worldwide, under these exceptional circumstances #MakingaDifferenceTogether #Covid19 https://t.co/VZ7UcKcGo1
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How is everyone coping with this new world?\n#COVID2019 #writing #WritingCommnunity
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Conrad Black on COVID-19: The world succumbed to a pandemic of hysteria, more than a virus | National Post https://t.co/Jmp4sF9vdy
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I need tech tools to transition to remote learning during #coronavirus \n@DonorsChoose please share this project! https://t.co/Nvpdlz2ebD
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among the first in Virginia to die from virus https://t.co/zvvCE9pUmU
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Don’t shoot the messenger. But the majority of deaths from the #COVID19 in the US are people with #Diabetes or Pre Diabetes. #WakeUpAmerica. The majority of you are FAT!\nIt’s time to lose that weight and start moving!
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That wis good clapping for the @P_H_S_Official YASSSSSSS #heroes #nhs #COVID2019  <U+2764><U+FE0F><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC>
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Updates on the #COVID19 situation in Thailand  https://t.co/NO6fW6OLDT
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Podcast: Supercomputing the Coronavirus on Frontera\n\nhttps://t.co/JhlOHY8OZS #HPC #TACC #coronavirus #UCSD https://t.co/HfQ01ZMdae
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/VU0alTPtb5
## 967                                                                                                                                                                                                                                                                                                                                                                                                                          @mitchellvii Were H1N1 numbers ever like these, in terms of rapid global onset?  Did H1N1 ever threaten to seriously overwhelm the US healthcare capacity with a surge like covid 19?  There seem to be significant differences driving a different response.  Will u even consider this possibility?
## 968                                                                                                                                                                                                                                                                                                                                                                                                                              After Kathy Griffin was admitted to the hospital and placed in a coronavirus isolation ward <U+2014> where she criticized President Donald Trump and claimed she couldn't secure a test for COVID-19 -\n\nKathy has returned home to recover from an abdominal infection\nhttps://t.co/TGrEkbJOon
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                     "Congress’ stimulus package expands on and supersedes earlier relief programs that you might have heard of, but which are now out of date. Here’s how the new stimulus affects your student loans, and what to do if you’re in each of…https://t.co/Te5z0Bnzkj https://t.co/Vt6oZN7uv3
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We need to care for the carers - A view of Donegal through the #coronavirus crisis and beyond by Siobhan McNamara\nhttps://t.co/CZEsbGw7me
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This Black Female #Doctor Is Leading Her Team To Develop Vaccine For Covid-19  https://t.co/HADrYV3oZf\n\n#COVID19 #COVID2019Ghana #StaySafeNigeria #COVID #SocialDistanacing #CoronavirusOutbreak #FridayMotivation
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Every Friday in every country #COVID19 https://t.co/Tpldv5fqsc
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Covid 19, my 17 months old daughter has finished our Nutela without my knowledge. #COVID2019 #StayAtHome https://t.co/VdMEr8dFb4
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                      A doctor who never failed the call of duty is incarcerated on fabricated charges. He saved infant lives in Gorakhpur. When 'chamki bukhar' ravaged Muzaffarpur, he set up free health camps. He offers his services again to fight the pandemic.#ReleaseDrKafeel\nhttps://t.co/hNxcbXa048
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Maharashtra Covid-19 count 156, army sounded for ‘medical help’\n\n#COVID19 #Maharashtra #fightagainstcorona \n\nhttps://t.co/ZG5GCq28xc
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               got let go from my job bc covid-19 and when they told me i literally said “deadass? no really, deadass?” lmaoo
## 977                                                                                                                                                                                                                                                                                                                                                                                                                       "The threat of COVID-19 spread has suspended all Wet’suwet’en meetings, including talks on a proposed deal between hereditary chiefs, B.C., and Canada" but not construction? Canadian governments can't exploit public health and safety precautions to further this project. https://t.co/lCUh5VtDnj
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @tehreemazeem This nation will survive Covid-19 and than die of Stupidity.
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                              @ddale8 Does anyone notice how he says a lie, then the next day gives a very pedantic explanation of it?\n\nLike he's quoting how someone just explained it to him. \n\nWell you see, usually hospitals don't need thousands of them. But almost all  #COVID19 patients need one.
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Boris Johnson Has COVID 19 https://t.co/fOI1O1xXv8 via @YouTube
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #COVID2019 Follow His Lead. Stay In The Crib https://t.co/nTwsAWRKxQ
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Legal Aid Chicago's Teresa Sullivan talks to @ABAJournal about services provided to domestic violence survivors amid COVID-19 pandemic. \nRead more: https://t.co/jbD4zXzlQv
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You know what’s more dangerous than virus covid-19? The racism and hate towards one’s religion/race.
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Video: Hospital in China where #COVID19 patients treated by #robots https://t.co/h54adrpSEF
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Final COVID-19 Bill Would Deny Loans To Planned Parenthood, Group Says https://t.co/VWRMXJq4uJ
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Quarantine day 11: \n\nGali men police waly pubg khel rahe hein !\n#StaySafeStayHome #COVID2019
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The COVID-19 pandemic<U+2014>illustrated by the widespread social distancing guidance with which most Americans are living today<U+2014>drives home just how interdependent we all are.
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                          #COVID19france New record one-day death toll in France: 365 lives lost in hospitals nationwide in 24 hrs. This includes death of 16-yr-old in Ile-de-France.\nSo far: \n- total 1 696 people have died from #coronavirus\n- total 29 155 confirmed cases\n\n#StayHome
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I'm reminded why I love the Finnish people right now through this #COVID2019 #biowarfare pandemic. \n\nFinns aren't freaking out buying up all the food in the grocery store or binge buying on toilet paper. \n\nIt's completely calm here. \n\n#Finland
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I'm happy to help, but unless they need a minefield cleared or a parking lot swept, I'm pretty much useless. \nhttps://t.co/h36VF9SMCn
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                I’m very happy <U+0001F60A> and proud of my government’s initiative of helping those in need during this pandemic crisis (COVID-19). Kudos to our president @PaulKagame and other members of our government <U+0001F64F><U+0001F3FE>. https://t.co/a4qcdeEGVu
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   U.S. leads world in confirmed coronavirus cases for first time https://t.co/uizU0xdbB8 #coronavirus #covid19
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What if someone in your household becomes sick? Here are suggestions to help keep the rest of your family healthy. Find more COVID-19 resources at https://t.co/IyKrPyWr4c. https://t.co/oNZMV7GlHJ
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @SykesCharlie Because he is not up for re-election in 2020, so not a\n"now" campaign issue.\nand because COVID-19 will knock him out of the spotlight like the Cong. Gary Condit/intern Chandra Levy ugliness\nwas brushed aside by 9/11
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pornhub Premium Becomes Free for All to Make You Stay at Home https://t.co/1kWZubylMy via @PCMag\n#coronavirus #2019nCoV #virus #chinavirus #wuhan #sos #COVID19 #COVID_19 #SARSCoV2 #COVID<U+30FC>19
## 996                                                                                                                                                                                                                                                                                                                                                                                                                           @covidperspectiv RAMMSTEIN's statement reads: "Yesterday evening Till Lindemann was admitted to a hospital on the band's doctor's advice. He spent the night in intensive care but has been moved as he is feeling better. Till has tested negative for the coronavirus."\n\nhttps://t.co/26EQ5L0t1x
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                  In light of #COVID19, @Rusi_org's @MChalmers_RUSI + Will Jessett recommend pushing the #IntegratedReview back to 2021. \n\nRead their paper - with insight on potential shifts in geopolitical alignments - here:  https://t.co/ONvasUyre5\n\n#ISDFPR https://t.co/tRp1vvn3Nh
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PLEASE PLEASE remember those sick with the COVID-19 and continue to recover But the whole truth not being told to the American people and the world for a reason and prayerfully a good reason\nhttps://t.co/hS0W30EvwV https://t.co/3JhupaoDk0
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @fourie_art @CJ_isnowblue not long I hope. we in the midst of the worst of #coronavirus rightnow!
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                  @SteveSisolak I missed the name of your med school.  <U+0001F6AB> trying 2 practice medicine,  Legislators! We train a long time 4 that honor! #patientsfirst #covid19 leave it to the professionals #scrubsnotsuits @PPA_USA  @Free2CareHC  https://t.co/0LwoAur6Ku https://t.co/oExgTtoGlf
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            707 out of 2,147 ang positive sa mga natest for COVID-19. 33% whew
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                        @DeleMomodu 40 million Nigerians have BVN verified bank accounts. It will cost the FG <U+20A6>100 billion to pay <U+20A6>250k into each account so Nigerians can buy food for themselves and their families during the #CoronaVirus lockdown. If Nigeria can budget <U+20A6>150b for national assembly
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                   @RandiRhodes @StephMillerShow @maddow @Thom_Hartmann \nAbbott Labs is unveiling a #coronavirus test that tells if someone is infected within 5 mins. It's small, portable and can be used in any health-care setting. \nEvery person can now be tested! \nhttps://t.co/LkzeBBtciV @business
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/3bWotGUn9f
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The senate spent a week swinging their $1200 bologna in the window. Rest at ease that this will calm the constituents, but it does not solve anything. @realDonaldTrump @SpeakerPelosi @AOC @BernieSanders #Coronavirus
## 1006                                                                                                                                                                                                                                                                                                                                                                                               "I can’t think of a time when this hasn’t happened, frankly," @VT_LiberalArts<U+00A0>historian Matt Heaton told @CestLaBrianna<U+00A0>of @BINederland, referring to times when a whole group of people were blamed for a contagious disease  <U+0001F30E>  <U+0001F501>  \n\nhttps://t.co/1EHwvanxZY\n\n#COVID19 #Coronavirus
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Really? "China also does not include asymptomatic cases in case counts."\n#coronavirus #COVID<U+30FC>19 https://t.co/zwEOOUd0CK
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                             As horrible as this is during this time...people are creating fraudulent ways to trick others during this time...PLEASE, LOOK THEM UP, watch the NEWS AND BE CAREFUL OUT THERE WHEN, YOU DONATE, GET TESTED, FAKE TESTS, SICK PEOPLE...BE ALERT!<U+0001F497>\n#Coronavirus #COVID #CoronaOutbreak
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #Dr. #DeborahBirx faces #call to #affirm #LGBTQ #people won’t face #bias in #coronavirus #relief.\n\n#Women #Transgender #LGBTQIA #Covid19 https://t.co/zhtvkrGUUu
## 1010                                                                                                                                                                                                                                                                                                                                                                                                  The #CHP’s priority is your #safety! #Traffic volume has drastically decrease during these unprecedented times. If you need to leave your home, please allow yourself the opportunity to arrive safely by slowing down.\n(<U+0001F4F8>: Ofc. Mullane)\n\n#COVID19 #Quarantine #StayHome #California https://t.co/Ymp2PRmMRQ
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @GovMurphy Currently there is a large house party going on in Rockaway and local police are refusing to break it up because it's not at a closed public space. Please make these officers respond and break up this party! They are spreading Covid-19!
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Y’all tune In I’m tellin right now @LiveeAihhReese applying straight Pressure! #coronavirus #CLUBTWITTER #ClubQuarantine https://t.co/n8l5TwNitP
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have to say these are perfect times for the drive-in to come back in style <U+0001F914>\n\n @RegalFilms #COVID #coronavirus https://t.co/rSdYOPtQM2
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tripura News Live appeal: Stay home, follow government guidelines on lockdown to stop coronavirus COVID-19; Keep away from rumours https://t.co/5SEDi85GAg https://t.co/hSVauIQMdJ
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Take the lead in fight against COVID-19, ex-Minister Chidoka says https://t.co/6MJAOvXrZy https://t.co/cWrllRBtub
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So 113 deaths today and 43 yesterday, really poor reporting of a massive increase. This is due to a change in reporting time. 156 in 2 days is a very encouraging trend, but don’t let that get in the way of a good story. #COVID<U+30FC>19
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This Doctor Is Provoking the Right's Narrative That Covid-19 Is No Big Deal https://t.co/QVXvCwbulw
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                               @ALMLGROUP For most people who end up infected, the disease runs a mild course. While the symptoms can be distressing all the same, you should #TakeResponsibility not to infect others around you. \n\nPlease #StayAtHomeAndStaySafe \nIsolate yourself. Hydrate as much as possible. #COVID19
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @GovDunleavy #ShelterInPlace #Alaska\nNew York state has 10 times the COVID-19 cases California has. Why? https://t.co/zrPiLLVnmO via @sfchronicle
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             'Mint the F*cking Coin': Rep. Rashida Tlaib Proposes Radical Law to Provide Coronavirus Relief Payments https://t.co/ZrOMZwkvnC via @lawcrimenews
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @SpaceForceDoD #SpaceForce launches its 1st mission with #Covid19 virus precautions\nhttps://t.co/9leh3vtXIn
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                    13/ <U+2022>A Region-specific strategy?\n<U+2013>Retired Intensive Care Physician #CoryFranklin &amp; @RushMedical #InfectiousDisease Specialist #RobertAWeinstein in @ChiTribOpinions:\n&gt; https://t.co/SBP6xq7FCu\n<U+2014>\n#economics #coronavirus #nationalsecurity #natsec https://t.co/P3N9Mg6RIh
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Great to catch up and share ideas on remaining creative during #SelfIsolation  #lockdown #COVID19 \nPhoto from last years day of art in #stainburnforest @TCLcollective https://t.co/mvtONb166z https://t.co/2shjTkVITi
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Healthy 16 year old dies of Coronavirus in Paris:\n\nhttps://t.co/efRp90TfLj
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                     COVID-19 - putting people at risk for no reason is bullshit. One of those people is my sister, an estimator and lead. So, whether you feel sick or not - do your godamn part. Because I am immune compromised, I won't see her for months now, because of shit like this.
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @NateSilver538 Was this approach approved by #COVID19 ? It has the last word.
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   #MSM slams #Trump #COVID19 briefings because every time he does one his approval rating increases while #MSM credibility decreases. https://t.co/ul8X6waKdg
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                              Please click below to view the March 27, 2020 update from Paul Looker, LHSA Superintendent, about the Covid-19 Coronavirus.\n\nThis update includes 6 Points of Prayer and Thankfulness and 5 Points of Important School Information.\n\nhttps://t.co/SAXeiw7d61
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shell Suspends Work On Cracker Plant Amid Coronavirus Concerns\nRoyal Shell halts construction on its Beaver County, Pennsylvania petrochemical complex in an effort to contain the spread of the coronavirus. #Coronavirus\nhttps://t.co/pqqfhMtd6U
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To think she was one of very few I was taking seriously up to now.  #coronavirus https://t.co/lZdhiIJX8Y
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Covid-19: Disinfection of public spaces, high-risk areas to begin March 30\nhttps://t.co/nCkP3UkzlY  https://t.co/nCkP3UkzlY
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dont Know Twice anyone??\n\nhttps://t.co/f9R7VUjaCc\n\n#youtube #friends #family #familytime #friday #fridaynight #horrorgames #horror #gamer #games #game #like #subscribe #covid19 #keepgoing #netflix #twitch… https://t.co/nukPXIb3J6
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Just finished up a @zoom_us with my EMS Company <U+2014> our first as a group. It was great for all of us to get together (virtually) to discuss #COVID19 and what we have to do to stay safe.
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                             On #climate and #COVID19, @GernotWagner makes the important point that fossil industries are better connected politically than (eg) clean energy companies when it comes to lobbying for support in the pandemic downturn https://t.co/8faQHI0v9s
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             283 #socialprotection programs from 84 countries in response to #COVID19. No #LIC has put forth a response mechanism yet! https://t.co/rfKZlBNtRH
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sending my best wishes for lots of inspiration to all my colleagues close and far as we are doing our best to provide an education to our students from our homes to theirs :-) #teach #COVID19 #ShelterInPlace https://t.co/3ZHSZtnXU8
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                @RepLeeZeldin doesn’t seem to understand that @NYGovCuomo could easily take the $6 billion RIGHT NOW if he leaves NY Medicaid as is. We can revisit the Medicaid budget later, we can't get back the lives of our seniors and people with disabilities at risk NOW from #coronavirus. https://t.co/zDeny8WSR4
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             India hiding its figures of Corona Virus Cases #COVID2019 https://t.co/WfZO1YtZQK
## 1039                                                                                                                                                                                                                                                                                                                                                                                   In the post COVID-19 landscape when the economy will be on life support,  Treasury coffers will need every1 at work from DAY 1. W/o ECEC &amp; School Aged Care - any <U+0001F4B0> recovery will be delayed. Those likely to be affected will be mothers <U+0001F931> &amp; the criminally underpaid in the sector. https://t.co/4HIjudcGIB
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               See them calling it African swine fever,but God forbid you call covid-19 Chinese Virus. https://t.co/gSV0Euyh5t
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @sarahtavel Great idea. I’m also keeping a journal of my/the worlds reactions. \n\nhttps://t.co/IZ3pKZCVn3
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             She got COVID-19 and lost her sense of taste and smell. But she says she's very lucky https://t.co/6D1BtZoh0D via @courierjournal
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                At least we ain’t #2 anymore <U+0001F605> #Rome #coronavirus #COVID19 #QuarantineLife https://t.co/opfeeqeUw9
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LETSS GOOO Tested Negative For Coronavirus But Got Something Called Covid-19
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NOVEL CORONAVIRUS COVID-19 THEME SONG BY LOST KiNGDOM https://t.co/Jbh5ePCJvm via @YouTube
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @marwilliamson Please call it what it is: a PLANdemic \n\nDel Bigtree utterly destroys the official media narrative on COVID-19. Watch the Highwire\n\nhttps://t.co/W0lf89o7Ug
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @SenSanders Who disagrees with what Bernie stated? \n\nSomebody explain why a hard working person (ESPECIALLY if they’re sick) should lose their health insurance if they lose their job. \n\nI know any answer will be trash.\n\n#M4A \n#coronavirus
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      COVID-19: Freebies for Parents Teaching Kindergarten Aged Children https://t.co/9ILH5LndGB on @bloglovin
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                    More info on what @DNC demanded in the bill \n\n$300M for public broadcasting\n-tax credits for wind and solar\n-climate standards on airlines.\nThey didn’t use this bill to fight #covid19, but to fund more liberal pet projects.\nThey don’t care about #Americans\n\n#DNC #Traitors
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @TheSSEHydro Perhaps you could offer your building as a COVID-19 place for NHS to treat those where hospital beds have all been taken up. Do your bit for the effort...not just tweets which do, lets face it almost zero. It's real help that's needed.
## 1051                                                                                                                                                                                                                                                                                                                                                                               @GraceSm16250397 @ScottPresler @kaniff_ken1 @realDonaldTrump I’m a Michigander.  My sister just got tested for COVID-19 because she is immune compromised and has been horribly ill, so I guess my family is about to find out how good Witmore is.  It concerns me she wouldn’t trust a doctor to make this kind of decision with a patient.
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                             day ?? of quarantine: at this point getting covid-19 wouldn’t be so bad cause it’d be a different ~interesting~ way to spend my time. and i already wanna die so, like, come infect me, bitch.\n\n<U+00AF>\\_(ツ)_/<U+00AF> <U+00AF>\\_(ツ)_/<U+00AF> <U+00AF>\\_(ツ)_/<U+00AF>
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Managing COVID-19 stress. https://t.co/Sc3KtuLFTn.  #ruralhealth #indigenoushealth #publichealth https://t.co/GIcsClUCXh
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               #BreakingNews \n#Live \n\n@realDonaldTrump is addressing the nation about #COVID19 \n\n[Actual footage] https://t.co/RmdwFD0Kku
## 1055                                                                                                                                                                                                                                                                                                          @1_odonkor @NAkufoAddo @GhanaPresidency @rashpelp @UN_SDG @EuropeInGhana @UN @_AfricanUnion @UNDPPA @NDCYouthWing @ndccommbureau The Covid-19 is not on people walking freely in the country. It is among those who were quarantined and that's why each day, the numbers rise within those who have been taken to the isolation centres to be monitored. The President's measure to curb the spread is a great one.
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                  WEBINAR: COVID-19: Insurance industry update\n\n@Fareham_IC is hosting a free, 30-minute webinar on 1 April on #COVID19, the implications on #insurance and how you can mitigate risk. There will be an extended Q&amp;A at the end of the session. Register online\nhttps://t.co/RRvjOIRJAh
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                   The thoughts of all @leicspolice\nare with the families and friends of the 14 people in the Force area who have died because of #COVID19\n\n#Rutland now has its' first confirmed case too\n\nPlease #StayHomeSaveLives this weekend \n\nThis is not a drill....\n\nhttps://t.co/JgsqCIVtoX
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                A reminder for the "it's just the flu" crowd:\n1) No, #COVID19 is not the flu\n2) It is 10 times deadlier than the flu\n3) It is more contagious than the flu \n4) We have a flu vaccine &amp; antiviral medications that can shorten the severity &amp; duration of influenza
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Good https://t.co/pIvtB2IEIO
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                    "Behind the global surge in unemployment will lie all too many human tragedies, for individuals, families, and communities. It’s these people we should keep in mind as we watch the trajectory of this economic free-fall," writes @KateAndrs\n\nhttps://t.co/CiOfiRFPtU
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @camorborg no one wants to hear your covid 19 one liners christopher
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hey @disneyplus any chance you can release some movies early since we are all in quarantine due to #COVID19? I'm talking about titles like the live action Beauty and the Beast and The Jungle Book.
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @allinwithchris Hallelujah and pass the Covid-19!
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             House passes historic $2 trillion aid package hoping to curb COVID-19’s economic impact<U+0001F6A8>ICYMI https://t.co/z26AqKKkpO
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Covid-19 coronavirus: British Prime Minister Boris Johnson tests positive for coronavirus \n https://t.co/QOHHCCRC2r
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Buzzicati reports that the Anambra Police Commissioner John Abang and his team went round Awka today to ensure compliance to the State Government’s Coronavirus directives\nhttps://t.co/tdLpmZpSuC
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         SANDF. I have 1 question for u. How are u going to defend urself from this Covid 19 pandemic? Ur government is playing fools. https://t.co/oQlC9l0AfW
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Tip of the Iceberg: Virologist David Ho (BS '74) Speaks About #COVID19\nhttps://t.co/TSCHy9iHSC
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #Coronavirus can we make an anime about the Japanese coronavirus task force? <U+0001F914>
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Opinion: Covid-19 is probably seasonal, but that’s no reason to relax https://t.co/zaNtFmLzzP
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Gov. Abbott: "As of today, we've tested more than 21,000 people in the state of Texas" for #coronavirus https://t.co/2HPzs1wamU
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  COVID-19 go away please <U+0001F62D><U+0001F62D><U+0001F62D>
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Tying healthcare to employment is a TERRIBLE IDEA\nPass it on\n\n#MedicareForAll #CNNTownHall #CoronavirusOubreak https://t.co/qk684kNkes
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                             More than 300 people have died; another 1,000 have fallen ill in #Iran, after consuming methanol in the belief that it will protect them against the #coronavirus.\n\n“We have to both cure the people with the alcohol poisoning &amp; also fight the coronavirus.”\n\nhttps://t.co/5JUF9NQwJA
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You would thing that the "So called" #POTUS would have more important things to do than play with his unsecured phone on twitter... #COVID19 https://t.co/bSkoz2VY0q
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They cancelled dci this year because of corona and i will personally fight covid-19 in hell when i see it
## 1077                                                                                                                                                                                                                                                                                                                                                                               THANK YOU THANK YOU!! We LOVE You to #HCWShoutOut to everyone on the front lines of this crazy war. Thank you so much for all you do - to all the Health Care Workers around the world!!  You are our ANGELS <U+0001F496> <U+0001F495><U+0001F64F><U+0001F607><U+0001F495><U+0001F30D><U+0001FA7A> #COVID2019 #cnn @CNN @ChrisCuomo #ChrisCuomo
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Justice In The time Of Covid-19: First-Hand Experience Of Videoconferencing At Supreme Court https://t.co/9DT3MbI9e2
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @AntonPilgram @Commuterist People just see some shit happening with doctors and police and think yeah, cool. Keep in mind the number of people with direct experience of covid-19 remains pretty small (for now, ofc)
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kent County Recycling Center will be temporarily closing its drop-off station near Rockford and stop taking loads of recyclables due to COVID-19 concerns. https://t.co/L0uygsNBhE
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #BREAKING: The Wichita Falls<U+2013>Wichita County Public Health District announces two more cases of COVID-19. Wichita County is now up to 12 cases. https://t.co/aC5DPdP2IN
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The not-thinkingable has happened. America is great again again. What an amazing feeling to be #1. How can we ever thank stupidity and the best deals for possibilitating this so bigly? #COVID19 #Covid19usa https://t.co/3buv9v220k
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #Coronavirus: #US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/J5BV42FAhR
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now on https://t.co/0J2UdYHyh5\n\nPaulo Dybala opens up on COVID-19 experience: ‘I could hardly breathe’
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                     I LOVE @ncsecu and continue to bank there though I'm in Seattle. Everything about SECU is great. Check out the @ncsecu profile: "does not actively tweet." Their COVID-19 address is excellent: https://t.co/JJLosPeKbN\nI have been banking online with them for 5+ years, member for 20
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COVID-19 maps of Georgia, South Carolina: Latest coronavirus cases by county https://t.co/9baIApgm6O
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There’s no doubt that COVID-19 is causing a lot of hardship for Montana families. It’s also causing incredible hardships for our front line doctors, nurses and other hospital staff across the country.
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Suva Market area at 1pm today. It’s a good thing that it’s protected by a special “Bula force field” which can resist any #coronavirus that’s hanging around https://t.co/nfAXwmBa49
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Inslee signs plastic bag ban despite COVID-19 concerns with reusable bags https://t.co/MHyljtw6Uk via @TheLensNews
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @eschatoL0GICal @AmIDoinItWright Yeah absolutely stinks he *checks notes* ensured that this happened while he has been organizing supporters to donate for a Covid 19 relief fund?
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                              COVID-19 has sent shockwaves through the screen industry as cinemas close and productions shut down.  Content Cafe highlights some of the challenges currently facing the industry \n\n@AusCopyright @CopyrightAgency @screenrights1 \n\nhttps://t.co/f3mKiyaldR
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Even too watch movies or play games don tire me.\nBoredom is real and I'm about to go outta my mind.\n#COVID19
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fucking RACISTS.\n\nG7 ministers spike joint statement on COVID-19 after U.S. demands it be called 'Wuhan virus' | CBC News https://t.co/RQOOmHvWHQ
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                       Let's look at it again, how did it start and what do we know..mainstream&amp;beyond, do your own discernment, part 2+3 too #TheGreatAwakening #QAnon #CoronaVirus #Covid-19 #DarkToLight #FutureProvesPast #FactsMatter #WWG1WGA #WWG1WGAWorldWide https://t.co/1S6xlqjfu2 via @YouTube
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @dino_melaye To All the politicians with #Covid-19 Allah will give you the equal attentions you're giving to the poor masses of your State
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @BorisJohnson COVID-19 doesn't care about pithy slogans, and that's literally all you know how to do. You're an incompetent buffoon.
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which can be clinically achievable as demonstrated in the plasma of rheumatoid arthritis patients who received 500<U+2009>mg administration. #ChinaVirus #Coronavirus #COVID19
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The release states that the USPS has a dedicated COVID-19 Command Response team focusing on maintaining continuity in providing service. &gt;&gt; https://t.co/wCIQkvsaGn
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                              @akreana_ You won't tweet this because you have political friends! This was supposed to be a platform for all to vent, you retweet obscene gestures of sex mentioned by ppl but won't tweet this, your platform is biased &amp; you show you are weak!  let this comment trend #COVID19 @Vodacom
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Error 404 found <U+0001F926><U+200D>♀<U+FE0F><U+0001F926><U+200D>♀<U+FE0F><U+0001F926><U+200D>♀<U+FE0F> #Covid_19 #vaka5698 https://t.co/Ydr8TWZx2v
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We are all working together as Oklahomans to <U+0001F44A>Combat #COVID19 https://t.co/WepwiaPF5k
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Today Jane brought me some essential as I am in quarantine for 12 weeks or more due to cancer and COVID -19 risk. This is as close as we could get. I miss hugging my friend <U+0001F61E> https://t.co/FaF24vAccR
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New post: TRINIDAD-HEALTH- Trinidad records second death from COVID-19 https://t.co/5ShlIphav0
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 G20: ‘whatever it takes’ 2 control virus\n#whateverittakesG20\n#CoronavirusOubreak \n#CoronaVillains \n#Corona \n#COVID \n#COVID2019 \n#StayHomeSaveLives \n#LockdownNow \n#LOCKDOWNWORSHIP
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Management of Critically Ill Adults With COVID-19 https://t.co/oj9Okfd0ja
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Starting to look very distopian out there #Covid19  <U+0001F914> https://t.co/NWAs8Rhwb4
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ways local media companies are supporting local businesses during COVID-19 https://t.co/PGtD1WMdSz via @LocalMediaAssoc
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     COVID-19 showing mfers that their social class doesn't make them untouchable <U+0001F974>
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is it me or have Russia and South Korea been very quiet over this virus. #COVID19
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Michigan sees jump of 800 COVID-19 cases since Thursday, up to 92 deaths https://t.co/VD93Ko17nD via @michiganadvance
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                     “Commitment is the little choices every day that lead to the final results we’re striving for.” \nYes the world is crazy right now! But we have an opportunity to reassess our goals, lace up our shoes, and get moving!  \n#trackandfield \n#COVID2019 \n#FearTheGoat
##                                        source display_text_width
## 1                          Twitter for iPhone                103
## 2                                   TweetDeck                277
## 3                             Twitter Web App                126
## 4                          Twitter for iPhone                109
## 5                          Twitter for iPhone                123
## 6                                  SocialFlow                 94
## 7                              SocialNewsDesk                149
## 8                                     HubSpot                244
## 9                          Twitter Web Client                 31
## 10                        Twitter for Android                216
## 11                         Twitter for iPhone                282
## 12                         Twitter for iPhone                130
## 13                         Twitter for iPhone                149
## 14                            Twitter Web App                178
## 15                         Twitter for iPhone                245
## 16                         Twitter for iPhone                212
## 17                            Twitter Web App                276
## 18                        Twitter for Android                105
## 19                            Twitter Web App                269
## 20                            Twitter Web App                279
## 21                        Twitter for Android                119
## 22                                    dlvr.it                102
## 23                            Twitter Web App                288
## 24                         Twitter for iPhone                132
## 25                                    moespi2                179
## 26                            Twitter Web App                206
## 27                         Twitter for iPhone                214
## 28                Social Media Publisher App                 227
## 29                         Twitter for iPhone                232
## 30                         Twitter Web Client                136
## 31                         Twitter for iPhone                179
## 32                         Twitter for iPhone                 84
## 33                            Twitter Web App                280
## 34                              Sprout Social                234
## 35                            Twitter Web App                183
## 36                        Twitter for Android                 90
## 37                        Twitter for Android                100
## 38                            Twitter Web App                269
## 39                             SocialPilot.co                109
## 40                            Twitter Web App                281
## 41                            Twitter Web App                278
## 42                                  TweetDeck                113
## 43                         Twitter for iPhone                197
## 44                         Twitter for iPhone                144
## 45                            Twitter Web App                127
## 46                                 CoSchedule                280
## 47                         Twitter Web Client                101
## 48                        Twitter for Android                275
## 49                         Twitter for iPhone                284
## 50                           Twitter for iPad                 89
## 51                        Twitter for Android                 78
## 52                            Twitter Web App                 68
## 53                            Twitter Web App                225
## 54                                   Oktopost                205
## 55                            Twitter Web App                 85
## 56                         Twitter for iPhone                 81
## 57                         Twitter for iPhone                156
## 58                         Twitter Web Client                129
## 59                            ThreadReaderApp                207
## 60                         Twitter for iPhone                181
## 61                         Twitter for iPhone                275
## 62                            Twitter Web App                 78
## 63                             Facelift-Cloud                247
## 64                            Twitter Web App                 70
## 65                            Twitter Web App                177
## 66                                  Instagram                238
## 67                         Twitter Web Client                170
## 68                            Twitter Web App                260
## 69                         Twitter for iPhone                252
## 70                            Twitter Web App                222
## 71                                  OneUp App                 66
## 72                        Twitter for Android                279
## 73                                    HubSpot                104
## 74                        Twitter for Android                  8
## 75                            Twitter Web App                226
## 76                            Twitter Web App                 90
## 77                        Twitter for Android                183
## 78                        Twitter for Android                121
## 79                         Twitter for iPhone                 93
## 80                              Sprout Social                 71
## 81                         Twitter for iPhone                196
## 82                             Hootsuite Inc.                131
## 83                            Twitter Web App                246
## 84                         Twitter for iPhone                133
## 85                            Twitter Web App                261
## 86                        Twitter for Android                230
## 87                            Twitter Web App                171
## 88                             Hootsuite Inc.                267
## 89                                   Sprinklr                203
## 90                        Twitter for Android                165
## 91                        Twitter for Android                273
## 92                        Twitter for Android                123
## 93                                  TweetDeck                 87
## 94                             Hootsuite Inc.                131
## 95                            Twitter Web App                251
## 96                                  Fabrik.fm                146
## 97                         Twitter for iPhone                279
## 98                             Hootsuite Inc.                279
## 99                        Twitter for Android                 53
## 100                        Twitter for iPhone                 71
## 101                           Twitter Web App                 95
## 102                        Twitter for iPhone                157
## 103                       Twitter for Android                127
## 104                       Twitter for Android                 67
## 105                       Twitter for Android                279
## 106                           Twitter Web App                275
## 107                                   dlvr.it                119
## 108                        Twitter for iPhone                260
## 109                       Twitter for Android                177
## 110                        Twitter for iPhone                257
## 111                           Twitter Web App                284
## 112                        Twitter for iPhone                184
## 113                           Twitter Web App                244
## 114                        Twitter Web Client                 85
## 115                                     IFTTT                 79
## 116                       Twitter for Android                 68
## 117                            SocialNewsDesk                 91
## 118                                    Buffer                139
## 119                        Twitter for iPhone                200
## 120                          Twitter for iPad                 23
## 121                        Twitter for iPhone                 84
## 122                       Twitter for Android                 77
## 123                        Twitter for iPhone                279
## 124                Salesforce - Social Studio                272
## 125                       Twitter for Android                270
## 126                        Twitter for iPhone                 70
## 127                       Twitter for Android                 56
## 128                                   dlvr.it                237
## 129                                 TweetDeck                241
## 130                           Twitter Web App                163
## 131                           Twitter Web App                210
## 132                       Twitter for Android                129
## 133                        Twitter Web Client                 91
## 134                                     IFTTT                238
## 135                       Twitter for Android                 98
## 136                        Twitter for iPhone                 99
## 137                       Twitter for Android                107
## 138                          Twitter for iPad                113
## 139                             WordPress.com                280
## 140                           Twitter Web App                276
## 141                           Twitter Web App                250
## 142                                 Mailchimp                279
## 143                        Twitter for iPhone                176
## 144                           Twitter Web App                275
## 145                           Twitter Web App                196
## 146                        Twitter for iPhone                180
## 147                       Twitter for Android                277
## 148                           Twitter Web App                244
## 149                             WordPress.com                107
## 150                          Twitter for iPad                114
## 151                        Twitter for iPhone                228
## 152                           Twitter Web App                207
## 153                           Twitter Web App                183
## 154                           Twitter Web App                 93
## 155                           Twitter Web App                277
## 156                           Twitter Web App                220
## 157                        Twitter for iPhone                 56
## 158                        Twitter for iPhone                115
## 159                            Hootsuite Inc.                222
## 160                                 TweetDeck                270
## 161                        Twitter for iPhone                138
## 162                            Hootsuite Inc.                274
## 163                       Twitter for Android                256
## 164                                 Instagram                 73
## 165                        Twitter Web Client                282
## 166                           Twitter Web App                206
## 167                       Twitter for Android                 78
## 168                       Twitter for Android                103
## 169                        Twitter for iPhone                287
## 170                            SocialNewsDesk                 80
## 171                           Twitter Web App                125
## 172                       Twitter for Android                240
## 173                       Twitter for Android                133
## 174                       Twitter for Android                 30
## 175                           Twitter Web App                 94
## 176                        Twitter for iPhone                 38
## 177                                   dlvr.it                 86
## 178                       Twitter for Android                252
## 179                            SocialNewsDesk                114
## 180                           Twitter Web App                260
## 181                            Hootsuite Inc.                204
## 182                       Twitter for Android                177
## 183                        Twitter for iPhone                 41
## 184                       Twitter for Android                174
## 185                           Twitter Web App                280
## 186                       Twitter for Android                167
## 187                       Twitter for Android                253
## 188                        Twitter for iPhone                 95
## 189                       Twitter for Android                209
## 190                        Twitter for iPhone                162
## 191                       Twitter for Android                 86
## 192                       Twitter for Android                 86
## 193                        Twitter Web Client                 72
## 194                       Twitter for Android                101
## 195                       Twitter for Android                210
## 196                                 Periscope                 68
## 197                       Twitter for Android                 64
## 198                       Twitter for Android                283
## 199                           Twitter Web App                246
## 200                           Twitter Web App                240
## 201                        Twitter Web Client                117
## 202                           Twitter Web App                157
## 203                            Hootsuite Inc.                114
## 204                           Twitter Web App                231
## 205                       Twitter for Android                131
## 206                        Twitter for iPhone                185
## 207                                    Buffer                275
## 208                        Twitter for iPhone                125
## 209                       Twitter for Android                279
## 210                           Twitter Web App                263
## 211                           Twitter Web App                155
## 212                                     IFTTT                130
## 213                           Twitter Web App                275
## 214                       Twitter for Android                239
## 215                       Twitter for Android                 64
## 216                        Twitter for iPhone                186
## 217                           Twitter Web App                208
## 218                       Twitter for Android                216
## 219                        Twitter for iPhone                254
## 220                        Twitter for iPhone                 71
## 221                                 TweetDeck                161
## 222                           Twitter Web App                278
## 223                        Twitter for iPhone                 82
## 224                          Twitter for iPad                208
## 225                           Twitter Web App                261
## 226                        Twitter for iPhone                 63
## 227                       Twitter for Android                 86
## 228                           Twitter Web App                268
## 229                       Twitter for Android                 84
## 230                             coronalivebot                242
## 231                           Twitter Web App                230
## 232                           Twitter Web App                156
## 233                        Twitter for iPhone                136
## 234                        Twitter for iPhone                234
## 235          Twidere for Android (Deprecated)                278
## 236                          Twitter for iPad                266
## 237                       Twitter for Android                121
## 238                                 TweetDeck                270
## 239                        Twitter for iPhone                 92
## 240                        Twitter for iPhone                 94
## 241                        Twitter for iPhone                193
## 242                        Twitter for iPhone                 96
## 243                        Twitter for iPhone                 65
## 244                        Twitter for iPhone                153
## 245                        Twitter Web Client                157
## 246                        Twitter for iPhone                 86
## 247                       Twitter for Android                274
## 248                        Twitter for iPhone                271
## 249                           Twitter Web App                 71
## 250                        Twitter Web Client                 96
## 251                           Twitter Web App                269
## 252                       Twitter for Android                 72
## 253                           Twitter Web App                135
## 254                         FilenamesOfSlashB                 13
## 255                            Hootsuite Inc.                176
## 256                        Twitter for iPhone                167
## 257                                   dlvr.it                 95
## 258                        Twitter for iPhone                259
## 259                        Twitter for iPhone                277
## 260                        Twitter for iPhone                190
## 261                           Twitter Web App                224
## 262                       Twitter for Android                223
## 263                        Twitter for iPhone                248
## 264                           Twitter Web App                215
## 265                       Twitter for Android                278
## 266                   TweetCaster for Android                230
## 267                           Twitter Web App                 83
## 268                           Twitter Web App                291
## 269                        Twitter for iPhone                262
## 270                       Twitter for Android                145
## 271                           Twitter Web App                124
## 272                            Hackers Choice                115
## 273                       Twitter for Android                276
## 274                       Twitter for Android                157
## 275                          Twitter for iPad                 43
## 276                        Twitter for iPhone                174
## 277                       Twitter for Android                134
## 278                       Twitter for Android                140
## 279                       Twitter for Android                200
## 280                           Twitter Web App                235
## 281                        Twitter for iPhone                156
## 282                           Twitter Web App                175
## 283                        Twitter for iPhone                279
## 284                        Twitter Web Client                102
## 285                           Twitter Web App                130
## 286                        Twitter for iPhone                196
## 287                           Twitter Web App                 92
## 288                    Trending A to Z Access                100
## 289                           Twitter Web App                188
## 290                       Twitter for Android                 91
## 291                        Twitter for iPhone                240
## 292                           Twitter Web App                 36
## 293                           Twitter Web App                 76
## 294                                    Buffer                255
## 295                        Twitter for iPhone                117
## 296                        Twitter Web Client                 72
## 297                        Twitter for iPhone                246
## 298                        Twitter for iPhone                169
## 299                           Twitter Web App                189
## 300                        Twitter for iPhone                276
## 301                           Twitter Web App                 71
## 302                            Hootsuite Inc.                 86
## 303                       Twitter for Android                280
## 304                        Twitter Web Client                 90
## 305                       Twitter for Android                130
## 306                           Twitter Web App                284
## 307                       Twitter for Android                 95
## 308                            Hootsuite Inc.                 73
## 309                       Twitter for Android                193
## 310                        Twitter for iPhone                240
## 311                       Twitter for Android                235
## 312                        Twitter for iPhone                274
## 313                           Twitter Web App                267
## 314                        Twitter for iPhone                272
## 315                                 TweetDeck                195
## 316                        Twitter Web Client                152
## 317                           Twitter Web App                121
## 318                        Twitter for iPhone                228
## 319                        Twitter for iPhone                 41
## 320                           Twitter Web App                 82
## 321                           Twitter Web App                 97
## 322                           Twitter Web App                 90
## 323                        Twitter for iPhone                 27
## 324                            Hootsuite Inc.                280
## 325                        Twitter for iPhone                 90
## 326                       Twitter for Android                167
## 327                        Twitter for iPhone                104
## 328                       Twitter for Android                110
## 329                            Hootsuite Inc.                 74
## 330                             WordPress.com                116
## 331                           Twitter Web App                273
## 332                                 TweetDeck                175
## 333                       Twitter for Android                136
## 334                        Twitter for iPhone                157
## 335                                 TweetDeck                134
## 336                        Twitter for iPhone                283
## 337                        Twitter for iPhone                267
## 338                           Twitter Web App                239
## 339                           Twitter Web App                279
## 340                       Twitter for Android                194
## 341                       Twitter for Android                166
## 342                           Twitter Web App                102
## 343                                    Buffer                242
## 344                       Twitter for Android                147
## 345                           Twitter Web App                232
## 346                           Twitter Web App                170
## 347                        Twitter Web Client                 74
## 348                       Twitter for Android                 32
## 349                       Twitter for Android                269
## 350                                 TweetDeck                275
## 351                        Twitter for iPhone                 86
## 352                                 Fabrik.fm                264
## 353                           Twitter Web App                183
## 354                                 TweetDeck                119
## 355                                    Buffer                105
## 356            Twitter Media Studio - LiveCut                120
## 357                       Twitter for Android                153
## 358                        Twitter for iPhone                206
## 359                       Twitter for Android                269
## 360                       Twitter for Android                283
## 361                        Twitter for iPhone                135
## 362                       Twitter for Android                107
## 363                        Twitter for iPhone                152
## 364                        Twitter for iPhone                111
## 365                             Sprout Social                240
## 366                        Twitter for iPhone                 79
## 367                           Twitter Web App                 90
## 368                          Twitter for iPad                141
## 369                           Twitter Web App                133
## 370                           Twitter Web App                119
## 371                           Twitter Web App                113
## 372                       Twitter for Android                123
## 373                          Tweetbot for Mac                 47
## 374                           Twitter Web App                173
## 375                       Twitter for Android                239
## 376                       Twitter for Android                 64
## 377                           Twitter Web App                115
## 378                       Twitter for Android                181
## 379                           Twitter Web App                279
## 380                           Twitter Web App                280
## 381                           Twitter Web App                258
## 382                                 TweetDeck                119
## 383                       Twitter for Android                255
## 384                       Twitter for Android                176
## 385                       Twitter for Android                 99
## 386                       Twitter for Android                127
## 387                       Twitter for Android                129
## 388                        Twitter for iPhone                201
## 389                        Twitter for iPhone                207
## 390                        Twitter for iPhone                273
## 391                        Twitter Web Client                 87
## 392                        Twitter for iPhone                121
## 393                        Twitter for iPhone                149
## 394                        Twitter for iPhone                205
## 395                           Twitter Web App                194
## 396                       Twitter for Android                273
## 397                       Twitter for Android                 84
## 398                           Twitter Web App                156
## 399                         Tweetbot for iΟS                132
## 400                             allAfrica.com                198
## 401                            SocialNewsDesk                 75
## 402                           Twitter Web App                281
## 403                       Twitter for Android                280
## 404                        Twitter Web Client                112
## 405                           Twitter Web App                284
## 406                            SocialNewsDesk                 89
## 407                                   dlvr.it                 72
## 408                                 TweetDeck                231
## 409                       Twitter for Android                 53
## 410                           Twitter Web App                227
## 411                           Twitter Web App                116
## 412                          Twitter for iPad                130
## 413                       Twitter for Android                199
## 414                            Hootsuite Inc.                219
## 415                        Twitter for iPhone                 79
## 416                           Twitter Web App                238
## 417                        Twitter for iPhone                210
## 418                        Twitter for iPhone                 89
## 419                                 TweetDeck                135
## 420                            Hootsuite Inc.                220
## 421                              twittbot.net                111
## 422                                   dlvr.it                146
## 423                           Twitter Web App                261
## 424                           Twitter Web App                104
## 425                                SocialFlow                278
## 426                        Twitter for iPhone                257
## 427                        Twitter for iPhone                135
## 428               Social Media Publisher App                 259
## 429                            Hootsuite Inc.                180
## 430                                     IFTTT                203
## 431                                   dlvr.it                 88
## 432                            Hootsuite Inc.                175
## 433                           Twitter Web App                242
## 434                        Twitter for iPhone                151
## 435                           Twitter Web App                234
## 436                       Twitter for Android                242
## 437                        Twitter Web Client                 55
## 438                        Twitter for iPhone                 93
## 439                                   dlvr.it                190
## 440                                   dlvr.it                 93
## 441                        Twitter for iPhone                194
## 442                             Sprout Social                192
## 443                           Twitter Web App                259
## 444                        Twitter for iPhone                 42
## 445                       Twitter for Android                278
## 446                        Twitter for iPhone                114
## 447                           Twitter Web App                170
## 448                       Twitter for Android                226
## 449                           Twitter Web App                284
## 450                        Twitter for iPhone                217
## 451                          Twitter for iPad                277
## 452                        Twitter for iPhone                247
## 453                                  Sprinklr                193
## 454                                 TweetDeck                287
## 455                           Twitter Web App                170
## 456                       Twitter for Android                 87
## 457                        Twitter for iPhone                 97
## 458                           Twitter Web App                141
## 459                           Twitter Web App                240
## 460                       Twitter for Android                 74
## 461                           Twitter Web App                274
## 462                        Twitter Test App P                209
## 463                           Twitter Web App                266
## 464                        Twitter Web Client                 81
## 465                        Twitter Web Client                126
## 466                           Twitter Web App                103
## 467                           Twitter Web App                161
## 468                           Twitter Web App                196
## 469                           Twitter Web App                 80
## 470                       Twitter for Android                146
## 471                           Twitter Web App                270
## 472                        Twitter for iPhone                227
## 473                        Twitter for iPhone                141
## 474                        Twitter for iPhone                114
## 475                        Twitter for iPhone                 85
## 476                        Twitter for iPhone                 96
## 477                        Twitter for iPhone                193
## 478                        Twitter for iPhone                221
## 479                                     IFTTT                166
## 480                       Twitter for Android                201
## 481                       Twitter for Android                284
## 482                       Twitter for Android                278
## 483                        Twitter Web Client                141
## 484                           Twitter Web App                150
## 485                       Twitter for Android                261
## 486                           Twitter Web App                226
## 487                        Twitter for iPhone                 50
## 488                           Twitter Web App                201
## 489                           Twitter Web App                168
## 490                       Twitter for Android                244
## 491                        Twitter for iPhone                 48
## 492                        Twitter for iPhone                278
## 493                        Twitter for iPhone                114
## 494                      Twitter Media Studio                273
## 495                        Twitter for iPhone                 68
## 496                           Twitter Web App                170
## 497                        Twitter for iPhone                226
## 498                       Twitter for Android                 36
## 499                           Twitter Web App                127
## 500                           Twitter Web App                215
## 501                           Twitter Web App                226
## 502                       Twitter for Android                135
## 503                        Twitter for iPhone                149
## 504                           Twitter Web App                233
## 505                           Twitter Web App                276
## 506                        Twitter Web Client                129
## 507                        Twitter for iPhone                269
## 508                           Twitter Web App                268
## 509                        Twitter for iPhone                279
## 510                           Twitter Web App                259
## 511                                 Instagram                239
## 512                        Twitter for iPhone                257
## 513                        Twitter for iPhone                117
## 514                        Twitter for iPhone                236
## 515                          Twitter for iPad                157
## 516                       Twitter for Android                198
## 517                           Twitter Web App                137
## 518                       Twitter for Android                 95
## 519                       Twitter for Android                179
## 520                       Twitter for Android                237
## 521                        Twitter for iPhone                 58
## 522                                 TweetDeck                235
## 523                       Twitter for Android                149
## 524                           Twitter Web App                160
## 525                       Twitter for Android                107
## 526                        Twitter for iPhone                 34
## 527                        Twitter for iPhone                280
## 528                       Twitter for Android                114
## 529                         Tweetbot for iΟS                188
## 530                           Twitter Web App                128
## 531                          Twitter for iPad                278
## 532                        Twitter for iPhone                237
## 533                           Twitter Web App                 59
## 534                             WordPress.com                 71
## 535                        Twitter for iPhone                270
## 536                        Twitter for iPhone                207
## 537                       Twitter for Android                279
## 538                          Twitter for iPad                213
## 539                        Twitter for iPhone                123
## 540                        Twitter Web Client                209
## 541                                  Sprinklr                273
## 542                        Twitter for iPhone                273
## 543                       Twitter for Android                 48
## 544                                 TweetDeck                147
## 545                             WordPress.com                 84
## 546                                   HubSpot                150
## 547                           Twitter Web App                201
## 548                                 TweetDeck                135
## 549                       Twitter for Android                 87
## 550                            Hootsuite Inc.                174
## 551                        Twitter for iPhone                 67
## 552                        Twitter for iPhone                 98
## 553                           Twitter Web App                121
## 554                        Twitter for iPhone                139
## 555                        Twitter for iPhone                136
## 556                           Twitter Web App                253
## 557                                  Sprinklr                268
## 558                           Twitter Web App                186
## 559                                 TweetDeck                174
## 560                        Twitter for iPhone                203
## 561                       Twitter for Android                172
## 562                        Twitter for iPhone                120
## 563                             ChimpReports_                136
## 564                           Twitter Web App                280
## 565                           Twitter Web App                 86
## 566                                 Instagram                230
## 567                       Twitter for Android                283
## 568                           Twitter Web App                114
## 569                                  Sprinklr                273
## 570                        Twitter Web Client                233
## 571                                  Sprinklr                217
## 572                        Twitter for iPhone                162
## 573                           Twitter Web App                251
## 574                        Twitter for iPhone                125
## 575                       Twitter for Android                133
## 576                        Twitter for iPhone                 73
## 577                                    Buffer                220
## 578                                  LinkedIn                 84
## 579                           Twitter Web App                153
## 580                       Twitter for Android                121
## 581                        Twitter for iPhone                145
## 582                           Twitter Web App                112
## 583                                 TweetDeck                252
## 584                       Twitter for Android                145
## 585                        Twitter for iPhone                269
## 586                           Twitter Web App                 84
## 587                                     IFTTT                107
## 588                                 TweetDeck                182
## 589                       Twitter for Android                124
## 590                        Twitter for iPhone                178
## 591                        Twitter for iPhone                227
## 592                        Twitter for iPhone                265
## 593                        Twitter for iPhone                278
## 594                        Twitter for iPhone                274
## 595                           Twitter Web App                 45
## 596                       Twitter for Android                234
## 597                        Twitter for iPhone                170
## 598                           Twitter Web App                273
## 599                            Hootsuite Inc.                258
## 600                        Twitter for iPhone                141
## 601                                    Buffer                250
## 602                           Twitter Web App                 61
## 603                           Twitter Web App                161
## 604                          Twitter for iPad                137
## 605                        Twitter for iPhone                279
## 606                                 Instagram                230
## 607                                   dlvr.it                 96
## 608                        Twitter for iPhone                276
## 609                           Twitter Web App                122
## 610                       Twitter for Android                 57
## 611                        Twitter Web Client                105
## 612                       Twitter for Android                102
## 613                                    Buffer                266
## 614                        Twitter Web Client                112
## 615                       Twitter for Android                156
## 616                        Twitter Web Client                140
## 617                        Twitter for iPhone                106
## 618                       Twitter for Android                264
## 619                           Twitter Web App                278
## 620                           Twitter Web App                183
## 621                           Twitter Web App                283
## 622                           Twitter Web App                237
## 623                                    Buffer                130
## 624                       Twitter for Android                182
## 625                        Twitter for iPhone                107
## 626                        Twitter for iPhone                275
## 627                           Twitter Web App                232
## 628                            Hootsuite Inc.                215
## 629                           Twitter Web App                101
## 630                                  Spreaker                192
## 631                                   dlvr.it                101
## 632                           Twitter Web App                261
## 633                        Twitter for iPhone                280
## 634                        Twitter for iPhone                142
## 635                                 Instagram                236
## 636                        Twitter for iPhone                247
## 637                       Twitter for Android                278
## 638                          Twitter for iPad                277
## 639                           Twitter Web App                246
## 640                       Twitter for Android                 45
## 641                                     IFTTT                213
## 642                       Twitter for Android                 99
## 643                       Twitter for Android                183
## 644                        Twitter for iPhone                272
## 645                           Twitter Web App                267
## 646                        Twitter for iPhone                 91
## 647                       Twitter for Android                106
## 648                        Twitter for iPhone                145
## 649                           Twitter Web App                206
## 650                       Twitter for Android                256
## 651                                 TweetDeck                107
## 652                           Twitter Web App                228
## 653                       Twitter for Android                100
## 654                           Twitter Web App                117
## 655                        Twitter for iPhone                144
## 656                       Twitter for Android                 34
## 657                        Twitter for iPhone                179
## 658                        Twitter for iPhone                215
## 659                                  Sprinklr                193
## 660                        Twitter for iPhone                 51
## 661                                 TweetDeck                276
## 662                        Twitter for iPhone                185
## 663                       Twitter for Android                236
## 664                             Sprout Social                280
## 665                          Twitter for iPad                171
## 666                        Twitter Web Client                 77
## 667                       Twitter for Android                278
## 668                        Twitter for iPhone                120
## 669                                 TweetDeck                 84
## 670                          Twitter for iPad                162
## 671                           Twitter Web App                 88
## 672                        Twitter for iPhone                272
## 673                        Twitter Web Client                130
## 674                        Twitter for iPhone                252
## 675                       Twitter for Android                 54
## 676                        Twitter Web Client                209
## 677                        Twitter for iPhone                149
## 678                           Twitter Web App                279
## 679                        Twitter for iPhone                100
## 680                            SocialNewsDesk                138
## 681                           Twitter Web App                278
## 682                                   dlvr.it                150
## 683                          Twitter for iPad                156
## 684                        Twitter for iPhone                228
## 685                                     IFTTT                 87
## 686                        Twitter for iPhone                 84
## 687                        Twitter for iPhone                286
## 688                                 TweetDeck                137
## 689                       Twitter for Android                157
## 690                        Twitter for iPhone                179
## 691                       Twitter for Android                247
## 692                             Sprout Social                181
## 693                        Twitter for iPhone                 96
## 694                           Twitter Web App                128
## 695                        Twitter Web Client                176
## 696                        Twitter for iPhone                 45
## 697                       Twitter for Android                 77
## 698                        Twitter for iPhone                266
## 699                        Twitter for iPhone                103
## 700                           Twitter Web App                222
## 701                            SocialNewsDesk                197
## 702                        Twitter for iPhone                 70
## 703                           Twitter Web App                279
## 704                       Twitter for Android                279
## 705                           Twitter Web App                277
## 706                       Twitter for Android                275
## 707                           Twitter for Mac                181
## 708                           Twitter Web App                227
## 709                           Twitter Web App                280
## 710                                 TweetDeck                 75
## 711                       Twitter for Android                 63
## 712                        Twitter for iPhone                179
## 713                          Twitter for iPad                279
## 714                       Twitter for Android                107
## 715                                SocialFlow                216
## 716                            SocialNewsDesk                112
## 717                                   dlvr.it                137
## 718                           Twitter Web App                 92
## 719                        Twitter for iPhone                275
## 720                        Twitter for iPhone                244
## 721                       Twitter for Android                206
## 722                        Twitter for iPhone                100
## 723                                 TweetDeck                173
## 724                        Twitter for iPhone                237
## 725                          Twitter for iPad                 90
## 726                                    Buffer                226
## 727                        Twitter for iPhone                105
## 728                        Twitter Web Client                 83
## 729                           Twitter Web App                211
## 730                        Twitter for iPhone                189
## 731                       Twitter for Android                 79
## 732                        Twitter for iPhone                 77
## 733                           Twitter Web App                274
## 734                       Twitter for Android                212
## 735                           Twitter Web App                130
## 736                           Twitter Web App                275
## 737                        Twitter for iPhone                 61
## 738                       Twitter for Android                163
## 739                                 TweetDeck                 31
## 740                            Hootsuite Inc.                280
## 741                        Twitter Web Client                100
## 742                                 TweetDeck                237
## 743                       Twitter for Android                206
## 744                       Twitter for Android                121
## 745                        Twitter for iPhone                207
## 746                           Twitter Web App                129
## 747                           Twitter Web App                 77
## 748                           Twitter Web App                197
## 749                       Twitter for Android                167
## 750                       Twitter for Android                267
## 751                        Twitter for iPhone                273
## 752                           Twitter Web App                137
## 753                       Twitter for Android                 29
## 754                        Twitter for iPhone                 78
## 755                        Twitter for iPhone                272
## 756                                 TweetDeck                186
## 757                       Twitter for Android                 82
## 758                        Twitter for iPhone                132
## 759                           Twitter Web App                 94
## 760                       Twitter for Android                 71
## 761                             WordPress.com                119
## 762                           Twitter Web App                192
## 763                          Twitter for iPad                280
## 764                        Twitter Web Client                138
## 765                                   dlvr.it                122
## 766                           Twitter Web App                269
## 767                        Twitter for iPhone                 41
## 768                             Sprout Social                286
## 769                           Twitter Web App                107
## 770                       Twitter for Android                238
## 771                          Twitter for iPad                173
## 772                           Twitter Web App                236
## 773                       Twitter for Android                277
## 774                           Twitter Web App                271
## 775                       Twitter for Android                211
## 776                           Twitter Web App                117
## 777                        Twitter for iPhone                 61
## 778                        Twitter Web Client                112
## 779                       Twitter for Android                 34
## 780                        Twitter Web Client                278
## 781                                 Instagram                208
## 782                           Twitter Web App                279
## 783                       Twitter for Android                270
## 784                        Twitter for iPhone                 86
## 785                          Twitter for iPad                279
## 786                       Twitter for Android                270
## 787                           Twitter Web App                230
## 788                           Twitter Web App                275
## 789                                    Buffer                 66
## 790                       Twitter for Android                169
## 791                       Twitter for Android                230
## 792                       Twitter for Android                290
## 793                        Twitter for iPhone                210
## 794                        Twitter for iPhone                176
## 795                                 TweetDeck                140
## 796                        Twitter for iPhone                 47
## 797                       Twitter for Android                146
## 798                           Twitter Web App                192
## 799                           Twitter Web App                280
## 800                        Twitter Web Client                152
## 801                           Twitter Web App                112
## 802                        Twitter for iPhone                220
## 803                           Twitter Web App                256
## 804                           Twitter Web App                143
## 805                           Twitter Web App                149
## 806                        Twitter for iPhone                159
## 807                           Twitter Web App                 51
## 808                        Twitter for iPhone                267
## 809                        Twitter for iPhone                102
## 810                        Twitter for iPhone                 98
## 811                        Twitter for iPhone                147
## 812                        Twitter for iPhone                278
## 813                        Twitter for iPhone                124
## 814                        Twitter for iPhone                205
## 815                       Twitter for Android                273
## 816                        Twitter for iPhone                 74
## 817                       Twitter for Android                274
## 818                        Twitter for iPhone                139
## 819                                 FS Poster                117
## 820                       Twitter for Android                157
## 821                           Twitter Web App                245
## 822                        Twitter for iPhone                277
## 823                        Twitter for iPhone                 74
## 824                           Twitter Web App                224
## 825                                   dlvr.it                279
## 826                           Twitter Web App                267
## 827                       Twitter for Android                 89
## 828                       Twitter for Android                220
## 829                      Flamingo for Android                 88
## 830                        Twitter for iPhone                159
## 831                           Twitter Web App                216
## 832                       Twitter for Android                291
## 833                                  LinkedIn                113
## 834                        Twitter for iPhone                 37
## 835                           Twitter Web App                251
## 836                       Twitter for Android                130
## 837                        Twitter Web Client                 76
## 838                       Twitter for Android                233
## 839                        Twitter Web Client                137
## 840                        Twitter for iPhone                252
## 841                        Twitter for iPhone                101
## 842                                 TweetDeck                263
## 843                       Twitter for Android                189
## 844                       Twitter for Android                130
## 845                        Twitter for iPhone                134
## 846                        Twitter for iPhone                195
## 847                        Twitter for iPhone                148
## 848                        Twitter for iPhone                276
## 849                        Twitter for iPhone                156
## 850                        Twitter for iPhone                204
## 851                       Twitter for Android                 51
## 852                        Twitter for iPhone                 65
## 853                                 Mailchimp                112
## 854                           Twitter Web App                 85
## 855                        Twitter Web Client                 79
## 856                       Twitter for Android                 65
## 857                        Twitter for iPhone                 72
## 858                       Twitter for Android                109
## 859                        Twitter for iPhone                274
## 860                                Twibble.io                124
## 861                           Twitter Web App                273
## 862                       Twitter for Android                 16
## 863                          Twitter for iPad                280
## 864                       Twitter for  iPhone                164
## 865                           Twitter Web App                273
## 866                        Twitter for iPhone                150
## 867                        Twitter for iPhone                 52
## 868                           Twitter Web App                 51
## 869                           Twitter Web App                 96
## 870                        Twitter for iPhone                149
## 871                       Twitter for Android                278
## 872                           Twitter Web App                279
## 873                           Twitter Web App                238
## 874                       Twitter for Android                238
## 875                        Twitter for iPhone                 89
## 876                       Twitter for Android                 71
## 877                       Twitter for Android                100
## 878                           Twitter Web App                273
## 879                          Twitter for iPad                 68
## 880                           Twitter Web App                 90
## 881                        Twitter Web Client                266
## 882                           Twitter Web App                 76
## 883                       Twitter for Android                266
## 884                        Twitter for iPhone                183
## 885                       Twitter for Android                282
## 886                       Twitter for Android                 91
## 887                           Twitter Web App                122
## 888                        Twitter for iPhone                277
## 889                        Twitter for iPhone                 97
## 890                           Twitter Web App                119
## 891                       Twitter for Android                276
## 892                        Twitter for iPhone                281
## 893                                 TweetDeck                141
## 894                                     IFTTT                283
## 895                        Twitter for iPhone                 82
## 896                        Twitter for iPhone                122
## 897                       Naijareports Tweets                107
## 898                        Twitter for iPhone                 74
## 899                          Twitter for iPad                105
## 900                           Twitter Web App                183
## 901                                 Instagram                241
## 902                       Twitter for Android                274
## 903                        Twitter for iPhone                186
## 904                                  Sprinklr                152
## 905                           Twitter Web App                154
## 906                        Twitter for iPhone                 65
## 907                          Tweetbot for Mac                209
## 908                        Twitter for iPhone                181
## 909                        Twitter Web Client                120
## 910                       Twitter for Android                120
## 911                        Twitter Web Client                142
## 912                           Twitter Web App                157
## 913                                  Sprinklr                193
## 914                       Twitter for Android                 58
## 915                       Twitter for Android                 83
## 916                        Twitter for iPhone                 31
## 917                        Twitter for iPhone                121
## 918                                    mehabe                121
## 919                             Crowdfire App                213
## 920                           Twitter Web App                108
## 921                        Twitter Web Client                102
## 922                        Twitter for iPhone                186
## 923                            Hootsuite Inc.                146
## 924                                   HubSpot                 89
## 925                           Twitter Web App                138
## 926                       Twitter for Android                279
## 927                           Twitter Web App                242
## 928                           Twitter Web App                288
## 929                           Twitter Web App                113
## 930                        Twitter for iPhone                 65
## 931                        Twitter for iPhone                 66
## 932                                 Mailchimp                145
## 933                        Twitter Web Client                201
## 934                       Twitter for Android                131
## 935                       Twitter for Android                121
## 936                           Twitter Web App                278
## 937                                 TweetDeck                190
## 938                                   HubSpot                277
## 939                           Twitter Web App                136
## 940                       Twitter for Android                 89
## 941                                  Artur'In                  8
## 942                            Hootsuite Inc.                219
## 943                       Twitter for Android                 89
## 944                       Twitter for Android                173
## 945                        Twitter for iPhone                278
## 946                        Twitter Web Client                101
## 947                    Resistbot Open Letters                229
## 948                        Twitter for iPhone                193
## 949                        Twitter for iPhone                161
## 950                       Twitter for Android                252
## 951                             EmloymentInfo                121
## 952                            Hootsuite Inc.                258
## 953                       Twitter for Android                267
## 954                           Twitter Web App                169
## 955                          Twitter for iPad                 96
## 956                                    Buffer                293
## 957                                   HubSpot                153
## 958                        Twitter for iPhone                 82
## 959                        Twitter for iPhone                130
## 960                           Twitter Web App                136
## 961                        Twitter Web Client                134
## 962                          Twitter for iPad                217
## 963                        Twitter for iPhone                 92
## 964                           Twitter Web App                 70
## 965                                 TweetDeck                106
## 966                           Twitter Web App                110
## 967                          Twitter for iPad                280
## 968                        Twitter for iPhone                279
## 969                                  LinkedIn                278
## 970                           Twitter Web App                137
## 971                       Twitter for Android                210
## 972                          Twitter for iPad                 38
## 973                       Twitter for Android                104
## 974                       Twitter for Android                280
## 975                           Twitter Web App                132
## 976                        Twitter for iPhone                110
## 977                           Twitter Web App                270
## 978                        Twitter for iPhone                 60
## 979                       Twitter for Android                261
## 980                        Twitter Web Client                 63
## 981                        Twitter for iPhone                 44
## 982                            Hootsuite Inc.                171
## 983                        Twitter for iPhone                100
## 984                       Twitter for Android                 91
## 985                                   dlvr.it                 94
## 986                       Twitter for Android                 92
## 987                        Twitter for iPhone                169
## 988                       Twitter for Android                256
## 989                       Twitter for Android                243
## 990                       Twitter for Android                133
## 991                        Twitter for iPhone                196
## 992  SmartNews | スマ<U+30FC>トニュ<U+30FC>ス                108
## 993                            Hootsuite Inc.                171
## 994                           Twitter Web App                215
## 995                        Twitter Web Client                189
## 996                        Twitter for iPhone                273
## 997                           Twitter Web App                241
## 998                           Twitter Web App                214
## 999                        Twitter for iPhone                 71
## 1000                          Twitter Web App                249
## 1001                       Twitter for iPhone                 66
## 1002                      Twitter for Android                273
## 1003                          Twitter Web App                280
## 1004                       Twitter for iPhone                 99
## 1005                       Twitter for iPhone                215
## 1006          Falcon Social Media Management                 277
## 1007                      Twitter for Android                 95
## 1008                          Twitter Web App                277
## 1009                          Twitter Web App                160
## 1010                       Twitter for iPhone                277
## 1011                      Twitter for Android                236
## 1012                       Twitter for iPhone                120
## 1013                       Twitter for iPhone                112
## 1014                            WordPress.com                154
## 1015                            WordPress.com                 89
## 1016                       Twitter for iPhone                229
## 1017                       Twitter Web Client                 99
## 1018                      Twitter for Android                273
## 1019                      Twitter for Android                145
## 1020                       Twitter for iPhone                145
## 1021                          Twitter Web App                107
## 1022                       Twitter for iPhone                249
## 1023                      Twitter for Android                190
## 1024                          Twitter Web App                 74
## 1025                      Twitter for Android                265
## 1026                       Twitter for iPhone                 62
## 1027                          Twitter Web App                131
## 1028                          Twitter Web App                252
## 1029                                  HubSpot                242
## 1030                          Twitter Web App                 80
## 1031                      TwitterRSSTSOLAgent                123
## 1032                                Instagram                229
## 1033                       Twitter for iPhone                183
## 1034                          Twitter Web App                217
## 1035                          Twitter Web App                121
## 1036                      Twitter for Android                207
## 1037                          Twitter Web App                277
## 1038                       Twitter for iPhone                 57
## 1039                       Twitter for iPhone                285
## 1040                       Twitter for iPhone                 87
## 1041                       Twitter for iPhone                 92
## 1042                       Twitter Web Client                129
## 1043                       Twitter for iPhone                 74
## 1044                       Twitter for iPhone                 76
## 1045                       Twitter Web Client                 90
## 1046                          Twitter Web App                155
## 1047                       Twitter for iPhone                226
## 1048                                Bloglovin                104
## 1049                         Twitter for iPad                272
## 1050                          Twitter Web App                235
## 1051                       Twitter for iPhone                272
## 1052                          Twitter Web App                221
## 1053                           Hootsuite Inc.                 96
## 1054                      Twitter for Android                 98
## 1055                      Twitter for Android                275
## 1056                          Twitter Web App                281
## 1057                      Twitter for Android                274
## 1058                          Twitter Web App                266
## 1059                         Twitter for iPad                 28
## 1060                                TweetDeck                263
## 1061                       Twitter for iPhone                 57
## 1062                      Twitter for Android                196
## 1063                       Twitter for iPhone                 33
## 1064                       Twitter for iPhone                117
## 1065                       Twitter for iPhone                115
## 1066                      Twitter for Android                194
## 1067                          Twitter Web App                125
## 1068                          Twitter Web App                 98
## 1069                       Twitter for iPhone                 78
## 1070                               SocialFlow                 93
## 1071                                TweetDeck                127
## 1072                      Twitter for Android                 27
## 1073                          Twitter Web App                110
## 1074                          Twitter Web App                283
## 1075                          Twitter Web App                140
## 1076                       Twitter for iPhone                105
## 1077                      Twitter for Android                258
## 1078                   Hocalwire Social Share                116
## 1079                       Twitter Web Client                186
## 1080                          Twitter Web App                178
## 1081                       Twitter for iPhone                142
## 1082                          Twitter Web App                205
## 1083                       Twitter for iPhone                101
## 1084                      Naijareports Tweets                102
## 1085                          Twitter Web App                280
## 1086                          Twitter Web App                100
## 1087                          Twitter Web App                200
## 1088                       Twitter for iPhone                156
## 1089                          Twitter Web App                114
## 1090                       Twitter for iPhone                145
## 1091                          Twitter Web App                252
## 1092                      Twitter for Android                108
## 1093                       Twitter Web Client                145
## 1094                       Twitter Web Client                279
## 1095                       Twitter for iPhone                125
## 1096                          Twitter Web App                118
## 1097                       Twitter Web Client                167
## 1098                           SocialNewsDesk                169
## 1099                      Twitter for Android                278
## 1100                      Twitter for Android                 48
## 1101                          Twitter Web App                 61
## 1102                       Twitter for iPhone                174
## 1103                         Cana News Online                 94
## 1104                          Twitter Web App                178
## 1105                       Twitter Web Client                 73
## 1106                       Twitter for iPhone                 77
## 1107                       Twitter Web Client                119
## 1108                      Twitter for Android                 78
## 1109                       Twitter for iPhone                 81
## 1110                       Twitter Web Client                117
## 1111                       Twitter for iPhone                258
##       reply_to_status_id    reply_to_user_id reply_to_screen_name is_quote
## 1                   <NA>                <NA>                 <NA>    FALSE
## 2                   <NA>                <NA>                 <NA>    FALSE
## 3                   <NA>                <NA>                 <NA>    FALSE
## 4                   <NA>                <NA>                 <NA>     TRUE
## 5                   <NA>                <NA>                 <NA>     TRUE
## 6                   <NA>                <NA>                 <NA>    FALSE
## 7                   <NA>                <NA>                 <NA>    FALSE
## 8                   <NA>                <NA>                 <NA>    FALSE
## 9                   <NA>                <NA>                 <NA>     TRUE
## 10   1243616354625826817 1195051598914998273       TheCommunityON    FALSE
## 11                  <NA>                <NA>                 <NA>    FALSE
## 12                  <NA>                <NA>                 <NA>    FALSE
## 13   1243284585288474624          2233154425          StephenKing    FALSE
## 14   1243548363179667457  770781940341288960         RudyGiuliani    FALSE
## 15                  <NA>                <NA>                 <NA>    FALSE
## 16                  <NA>                <NA>                 <NA>    FALSE
## 17                  <NA>                <NA>                 <NA>    FALSE
## 18                  <NA>                <NA>                 <NA>    FALSE
## 19                  <NA>                <NA>                 <NA>    FALSE
## 20                  <NA>                <NA>                 <NA>    FALSE
## 21                  <NA>                <NA>                 <NA>    FALSE
## 22                  <NA>                <NA>                 <NA>    FALSE
## 23                  <NA>                <NA>                 <NA>    FALSE
## 24                  <NA>                <NA>                 <NA>    FALSE
## 25                  <NA>                <NA>                 <NA>    FALSE
## 26                  <NA>                <NA>                 <NA>    FALSE
## 27                  <NA>                <NA>                 <NA>    FALSE
## 28                  <NA>                <NA>                 <NA>    FALSE
## 29                  <NA>                <NA>                 <NA>    FALSE
## 30                  <NA>                <NA>                 <NA>    FALSE
## 31   1243791081067761664 1239200222909206529        PrinceMolekga    FALSE
## 32                  <NA>                <NA>                 <NA>    FALSE
## 33                  <NA>                <NA>                 <NA>    FALSE
## 34                  <NA>                <NA>                 <NA>    FALSE
## 35                  <NA>                <NA>                 <NA>    FALSE
## 36                  <NA>                <NA>                 <NA>     TRUE
## 37                  <NA>           500704345             Pontifex    FALSE
## 38                  <NA>                <NA>                 <NA>    FALSE
## 39                  <NA>                <NA>                 <NA>    FALSE
## 40                  <NA>                <NA>                 <NA>    FALSE
## 41                  <NA>                <NA>                 <NA>    FALSE
## 42                  <NA>                <NA>                 <NA>    FALSE
## 43                  <NA>                <NA>                 <NA>     TRUE
## 44                  <NA>                <NA>                 <NA>    FALSE
## 45                  <NA>                <NA>                 <NA>    FALSE
## 46                  <NA>                <NA>                 <NA>    FALSE
## 47                  <NA>                <NA>                 <NA>    FALSE
## 48                  <NA>                <NA>                 <NA>    FALSE
## 49                  <NA>                <NA>                 <NA>    FALSE
## 50   1243694976372015109           209356915            CodyThorn    FALSE
## 51                  <NA>                <NA>                 <NA>     TRUE
## 52   1243287960394575879 1058476563690373120           Reboticant    FALSE
## 53                  <NA>            14584200            Alienware    FALSE
## 54                  <NA>                <NA>                 <NA>    FALSE
## 55                  <NA>                <NA>                 <NA>    FALSE
## 56                  <NA>                <NA>                 <NA>    FALSE
## 57                  <NA>                <NA>                 <NA>    FALSE
## 58                  <NA>                <NA>                 <NA>    FALSE
## 59   1243208863790141440 1186457132951986177           angryablib    FALSE
## 60                  <NA>                <NA>                 <NA>    FALSE
## 61                  <NA>                <NA>                 <NA>    FALSE
## 62                  <NA>                <NA>                 <NA>    FALSE
## 63                  <NA>                <NA>                 <NA>    FALSE
## 64                  <NA>                <NA>                 <NA>    FALSE
## 65   1243576496721219591           852269288       BenjaminNorton    FALSE
## 66                  <NA>                <NA>                 <NA>    FALSE
## 67                  <NA>                <NA>                 <NA>    FALSE
## 68                  <NA>                <NA>                 <NA>    FALSE
## 69                  <NA>                <NA>                 <NA>    FALSE
## 70   1243135042005667841            14697575               News24    FALSE
## 71                  <NA>                <NA>                 <NA>    FALSE
## 72                  <NA>            54936590               BSYBJP    FALSE
## 73                  <NA>                <NA>                 <NA>    FALSE
## 74   1243255245150576641 1216067404964466688      lampert_poliana    FALSE
## 75                  <NA>                <NA>                 <NA>    FALSE
## 76                  <NA>                <NA>                 <NA>     TRUE
## 77                  <NA>                <NA>                 <NA>     TRUE
## 78                  <NA>                <NA>                 <NA>    FALSE
## 79                  <NA>                <NA>                 <NA>    FALSE
## 80                  <NA>                <NA>                 <NA>    FALSE
## 81                  <NA>                <NA>                 <NA>    FALSE
## 82                  <NA>                <NA>                 <NA>    FALSE
## 83   1243271533834964999  826470410267025408       socialfoodhour    FALSE
## 84                  <NA>                <NA>                 <NA>    FALSE
## 85                  <NA>                <NA>                 <NA>    FALSE
## 86                  <NA>                <NA>                 <NA>    FALSE
## 87                  <NA>                <NA>                 <NA>    FALSE
## 88                  <NA>                <NA>                 <NA>    FALSE
## 89                  <NA>                <NA>                 <NA>    FALSE
## 90                  <NA>                <NA>                 <NA>    FALSE
## 91                  <NA>                <NA>                 <NA>    FALSE
## 92                  <NA>                <NA>                 <NA>    FALSE
## 93                  <NA>                <NA>                 <NA>    FALSE
## 94                  <NA>                <NA>                 <NA>    FALSE
## 95                  <NA>                <NA>                 <NA>    FALSE
## 96                  <NA>                <NA>                 <NA>    FALSE
## 97                  <NA>                <NA>                 <NA>    FALSE
## 98                  <NA>                <NA>                 <NA>    FALSE
## 99                  <NA>                <NA>                 <NA>    FALSE
## 100                 <NA>                <NA>                 <NA>    FALSE
## 101                 <NA>                <NA>                 <NA>    FALSE
## 102                 <NA>                <NA>                 <NA>    FALSE
## 103                 <NA>                <NA>                 <NA>    FALSE
## 104  1243615690252152832           162124716        sal_castaneda    FALSE
## 105                 <NA>                <NA>                 <NA>     TRUE
## 106  1242935268551864320          2862577383           RepKenBuck    FALSE
## 107                 <NA>                <NA>                 <NA>    FALSE
## 108  1243219538562482177  770781940341288960         RudyGiuliani    FALSE
## 109  1243168931503882241            38181641         DerbysPolice    FALSE
## 110                 <NA>                <NA>                 <NA>     TRUE
## 111                 <NA>  705694814612938752              NCDCgov    FALSE
## 112                 <NA>                <NA>                 <NA>    FALSE
## 113                 <NA>                <NA>                 <NA>    FALSE
## 114                 <NA>                <NA>                 <NA>    FALSE
## 115                 <NA>                <NA>                 <NA>    FALSE
## 116                 <NA>                <NA>                 <NA>    FALSE
## 117                 <NA>                <NA>                 <NA>    FALSE
## 118                 <NA>                <NA>                 <NA>    FALSE
## 119                 <NA>                <NA>                 <NA>    FALSE
## 120                 <NA>                <NA>                 <NA>     TRUE
## 121  1243149526267056129           169041906      PatriqKanyomozi    FALSE
## 122                 <NA>                <NA>                 <NA>    FALSE
## 123                 <NA>                <NA>                 <NA>    FALSE
## 124                 <NA>                <NA>                 <NA>    FALSE
## 125                 <NA>                <NA>                 <NA>    FALSE
## 126                 <NA>                <NA>                 <NA>    FALSE
## 127                 <NA>                <NA>                 <NA>    FALSE
## 128                 <NA>                <NA>                 <NA>    FALSE
## 129                 <NA>                <NA>                 <NA>    FALSE
## 130                 <NA>                <NA>                 <NA>    FALSE
## 131                 <NA>                <NA>                 <NA>     TRUE
## 132                 <NA> 1019887446417215489      Vijayabaskarofl    FALSE
## 133                 <NA>                <NA>                 <NA>    FALSE
## 134                 <NA>                <NA>                 <NA>    FALSE
## 135                 <NA>            13576142        googlepodcast    FALSE
## 136                 <NA>                <NA>                 <NA>    FALSE
## 137                 <NA>                <NA>                 <NA>    FALSE
## 138  1242905328209080331            25073877      realDonaldTrump    FALSE
## 139                 <NA>                <NA>                 <NA>    FALSE
## 140                 <NA>                <NA>                 <NA>    FALSE
## 141  1243588631031435276           207809313            BJP4India    FALSE
## 142                 <NA>                <NA>                 <NA>    FALSE
## 143                 <NA>                <NA>                 <NA>    FALSE
## 144                 <NA>                <NA>                 <NA>    FALSE
## 145                 <NA>                <NA>                 <NA>    FALSE
## 146                 <NA>                <NA>                 <NA>    FALSE
## 147                 <NA>                <NA>                 <NA>    FALSE
## 148                 <NA>            25073877      realDonaldTrump    FALSE
## 149                 <NA>                <NA>                 <NA>    FALSE
## 150                 <NA>                <NA>                 <NA>    FALSE
## 151                 <NA>                <NA>                 <NA>    FALSE
## 152                 <NA>                <NA>                 <NA>    FALSE
## 153                 <NA>                <NA>                 <NA>    FALSE
## 154                 <NA>                <NA>                 <NA>     TRUE
## 155                 <NA>                <NA>                 <NA>    FALSE
## 156  1243251433568382976              759251                  CNN    FALSE
## 157                 <NA>                <NA>                 <NA>    FALSE
## 158                 <NA>                <NA>                 <NA>    FALSE
## 159                 <NA>                <NA>                 <NA>    FALSE
## 160                 <NA>                <NA>                 <NA>    FALSE
## 161                 <NA>                <NA>                 <NA>    FALSE
## 162                 <NA>                <NA>                 <NA>    FALSE
## 163                 <NA>                <NA>                 <NA>    FALSE
## 164                 <NA>                <NA>                 <NA>    FALSE
## 165                 <NA>                <NA>                 <NA>    FALSE
## 166                 <NA>                <NA>                 <NA>     TRUE
## 167  1243612606188969985            75541946         LaraLeaTrump    FALSE
## 168                 <NA>                <NA>                 <NA>    FALSE
## 169                 <NA>                <NA>                 <NA>    FALSE
## 170                 <NA>                <NA>                 <NA>    FALSE
## 171                 <NA>                <NA>                 <NA>    FALSE
## 172                 <NA>                <NA>                 <NA>     TRUE
## 173                 <NA>                <NA>                 <NA>     TRUE
## 174                 <NA>                <NA>                 <NA>    FALSE
## 175                 <NA>                <NA>                 <NA>    FALSE
## 176                 <NA>                <NA>                 <NA>    FALSE
## 177                 <NA>                <NA>                 <NA>    FALSE
## 178                 <NA>          2251588934       TheOfficialSBI    FALSE
## 179                 <NA>                <NA>                 <NA>    FALSE
## 180                 <NA>                <NA>                 <NA>    FALSE
## 181                 <NA>                <NA>                 <NA>    FALSE
## 182                 <NA>                <NA>                 <NA>    FALSE
## 183  1243647251789934592            19565264             nessie12    FALSE
## 184                 <NA>                <NA>                 <NA>     TRUE
## 185                 <NA>                <NA>                 <NA>    FALSE
## 186                 <NA>                <NA>                 <NA>     TRUE
## 187                 <NA>                <NA>                 <NA>    FALSE
## 188                 <NA>                <NA>                 <NA>    FALSE
## 189  1243617326534201346            17409452      SaharaReporters    FALSE
## 190  1242806441418862592            67336622             CGBadley    FALSE
## 191                 <NA>                <NA>                 <NA>    FALSE
## 192                 <NA>                <NA>                 <NA>    FALSE
## 193                 <NA>                <NA>                 <NA>    FALSE
## 194                 <NA>                <NA>                 <NA>    FALSE
## 195                 <NA>                <NA>                 <NA>    FALSE
## 196                 <NA>                <NA>                 <NA>    FALSE
## 197  1243284362818400264  952977622400577536          ElmaAksalic    FALSE
## 198                 <NA>                <NA>                 <NA>    FALSE
## 199                 <NA>                <NA>                 <NA>    FALSE
## 200  1243232982879666176  851808935397011456           IAGovernor    FALSE
## 201  1243146828515663876          1130134891      PrabhatChandrat    FALSE
## 202                 <NA>                <NA>                 <NA>    FALSE
## 203                 <NA>                <NA>                 <NA>    FALSE
## 204                 <NA>                <NA>                 <NA>    FALSE
## 205                 <NA>                <NA>                 <NA>    FALSE
## 206                 <NA>                <NA>                 <NA>    FALSE
## 207                 <NA>                <NA>                 <NA>    FALSE
## 208                 <NA>                <NA>                 <NA>    FALSE
## 209                 <NA>                <NA>                 <NA>    FALSE
## 210  1243731729950662659  998276701284159488           e3_waitfor    FALSE
## 211                 <NA>            20217019            dougducey    FALSE
## 212                 <NA>                <NA>                 <NA>    FALSE
## 213  1243295807211810817           115105973      SylvesterTurner    FALSE
## 214                 <NA>                <NA>                 <NA>    FALSE
## 215  1243680544111636481  787646081987403776         felipem_jose    FALSE
## 216                 <NA>                <NA>                 <NA>    FALSE
## 217                 <NA>                <NA>                 <NA>    FALSE
## 218                 <NA>                <NA>                 <NA>    FALSE
## 219                 <NA>                <NA>                 <NA>    FALSE
## 220  1243597001754894337          1339835893       HillaryClinton    FALSE
## 221                 <NA>                <NA>                 <NA>    FALSE
## 222                 <NA>                <NA>                 <NA>    FALSE
## 223  1243764914860195840          2183120874           umerjaffer    FALSE
## 224                 <NA>                <NA>                 <NA>    FALSE
## 225                 <NA>                <NA>                 <NA>     TRUE
## 226                 <NA>                <NA>                 <NA>    FALSE
## 227                 <NA>                <NA>                 <NA>    FALSE
## 228                 <NA>                <NA>                 <NA>    FALSE
## 229                 <NA>                <NA>                 <NA>    FALSE
## 230                 <NA>                <NA>                 <NA>    FALSE
## 231                 <NA>                <NA>                 <NA>     TRUE
## 232                 <NA>                <NA>                 <NA>    FALSE
## 233                 <NA>                <NA>                 <NA>    FALSE
## 234                 <NA>                <NA>                 <NA>     TRUE
## 235                 <NA>                <NA>                 <NA>    FALSE
## 236                 <NA>                <NA>                 <NA>    FALSE
## 237                 <NA>                <NA>                 <NA>    FALSE
## 238                 <NA>                <NA>                 <NA>    FALSE
## 239  1243653966375854080           362144301        brianmoore666    FALSE
## 240                 <NA>                <NA>                 <NA>    FALSE
## 241  1243605935819575307            18464266            peterdaou    FALSE
## 242                 <NA>                <NA>                 <NA>    FALSE
## 243                 <NA>                <NA>                 <NA>     TRUE
## 244                 <NA>                <NA>                 <NA>    FALSE
## 245                 <NA>                <NA>                 <NA>    FALSE
## 246                 <NA>                <NA>                 <NA>    FALSE
## 247  1243101930559168512          4184166614              MaamSyj    FALSE
## 248                 <NA>                <NA>                 <NA>    FALSE
## 249                 <NA>                <NA>                 <NA>    FALSE
## 250                 <NA>                <NA>                 <NA>    FALSE
## 251                 <NA>                <NA>                 <NA>    FALSE
## 252                 <NA>                <NA>                 <NA>    FALSE
## 253                 <NA>                <NA>                 <NA>    FALSE
## 254                 <NA>                <NA>                 <NA>    FALSE
## 255                 <NA>                <NA>                 <NA>    FALSE
## 256                 <NA>                <NA>                 <NA>     TRUE
## 257                 <NA>                <NA>                 <NA>    FALSE
## 258                 <NA>                <NA>                 <NA>     TRUE
## 259                 <NA>                <NA>                 <NA>    FALSE
## 260                 <NA>                <NA>                 <NA>     TRUE
## 261  1243295803554349056            21894784      danitasteinberg    FALSE
## 262                 <NA>                <NA>                 <NA>    FALSE
## 263                 <NA>                <NA>                 <NA>     TRUE
## 264                 <NA>                <NA>                 <NA>    FALSE
## 265                 <NA>                <NA>                 <NA>    FALSE
## 266                 <NA>           975200486      RepThomasMassie    FALSE
## 267                 <NA>                <NA>                 <NA>    FALSE
## 268                 <NA>                <NA>                 <NA>    FALSE
## 269                 <NA>                <NA>                 <NA>    FALSE
## 270                 <NA>                <NA>                 <NA>     TRUE
## 271                 <NA>                <NA>                 <NA>    FALSE
## 272                 <NA>                <NA>                 <NA>    FALSE
## 273                 <NA>                <NA>                 <NA>    FALSE
## 274                 <NA>                <NA>                 <NA>    FALSE
## 275                 <NA>                <NA>                 <NA>    FALSE
## 276                 <NA>                <NA>                 <NA>    FALSE
## 277  1243257977890619392  831320691580497920          DrEtiquette    FALSE
## 278                 <NA>                <NA>                 <NA>     TRUE
## 279                 <NA>                <NA>                 <NA>     TRUE
## 280  1243579435111952384          2700221964           MahycoGrow    FALSE
## 281                 <NA>                <NA>                 <NA>    FALSE
## 282                 <NA>                <NA>                 <NA>     TRUE
## 283                 <NA>                <NA>                 <NA>    FALSE
## 284                 <NA>                <NA>                 <NA>    FALSE
## 285  1243578926590541824 1176545327219916800       deedeedagumby1    FALSE
## 286  1243604807778217984           106322069         DerekBrunson    FALSE
## 287                 <NA>                <NA>                 <NA>     TRUE
## 288                 <NA>                <NA>                 <NA>    FALSE
## 289                 <NA>                <NA>                 <NA>    FALSE
## 290  1243807126671241216          1391891144          SyedaMahinu    FALSE
## 291                 <NA>                <NA>                 <NA>    FALSE
## 292                 <NA>                <NA>                 <NA>    FALSE
## 293                 <NA>                <NA>                 <NA>    FALSE
## 294                 <NA>                <NA>                 <NA>    FALSE
## 295  1243518917429153795           743413651            LoveLoriM    FALSE
## 296                 <NA>                <NA>                 <NA>    FALSE
## 297                 <NA>                <NA>                 <NA>    FALSE
## 298                 <NA>                <NA>                 <NA>    FALSE
## 299                 <NA>                <NA>                 <NA>     TRUE
## 300  1243750236272631809 1225914837047312384             LucPicat    FALSE
## 301  1243405886011277313          2835451658            MrAndyNgo    FALSE
## 302                 <NA>                <NA>                 <NA>    FALSE
## 303                 <NA>                <NA>                 <NA>    FALSE
## 304                 <NA>                <NA>                 <NA>    FALSE
## 305  1243825243707277313          1492752330            waluwande    FALSE
## 306                 <NA>                <NA>                 <NA>    FALSE
## 307  1243695604938801153           112047805             brithume    FALSE
## 308                 <NA>                <NA>                 <NA>    FALSE
## 309                 <NA>                <NA>                 <NA>    FALSE
## 310                 <NA>                <NA>                 <NA>    FALSE
## 311                 <NA>                <NA>                 <NA>    FALSE
## 312                 <NA>                <NA>                 <NA>    FALSE
## 313                 <NA>                <NA>                 <NA>    FALSE
## 314                 <NA>            18777618                 KDVR    FALSE
## 315                 <NA>                <NA>                 <NA>    FALSE
## 316                 <NA>                <NA>                 <NA>    FALSE
## 317                 <NA>                <NA>                 <NA>    FALSE
## 318  1243262324288319488            21148293         kathygriffin    FALSE
## 319                 <NA>                <NA>                 <NA>    FALSE
## 320  1243730543730208770 1117746906837528577         Leroy_Brown7    FALSE
## 321  1243599615942774785           246939630        shannonrwatts    FALSE
## 322                 <NA>                <NA>                 <NA>    FALSE
## 323                 <NA>                <NA>                 <NA>     TRUE
## 324                 <NA>                <NA>                 <NA>    FALSE
## 325                 <NA>                <NA>                 <NA>    FALSE
## 326                 <NA>                <NA>                 <NA>    FALSE
## 327                 <NA>                <NA>                 <NA>    FALSE
## 328                 <NA>                <NA>                 <NA>    FALSE
## 329  1243231760495894530           157406699       leeds24hrlocks    FALSE
## 330                 <NA>                <NA>                 <NA>    FALSE
## 331                 <NA>                <NA>                 <NA>    FALSE
## 332                 <NA>                <NA>                 <NA>    FALSE
## 333                 <NA>                <NA>                 <NA>     TRUE
## 334                 <NA>                <NA>                 <NA>    FALSE
## 335                 <NA>                <NA>                 <NA>    FALSE
## 336  1243435365446438913  751854631375015941      VisakhapatnamJn    FALSE
## 337                 <NA>                <NA>                 <NA>    FALSE
## 338  1243627530168516614          4091551984             tribelaw    FALSE
## 339                 <NA>                <NA>                 <NA>    FALSE
## 340  1243645487137394688 1098282114674393088             CCrowe90    FALSE
## 341                 <NA>                <NA>                 <NA>    FALSE
## 342                 <NA>                <NA>                 <NA>    FALSE
## 343                 <NA>                <NA>                 <NA>    FALSE
## 344                 <NA>                <NA>                 <NA>    FALSE
## 345                 <NA>                <NA>                 <NA>    FALSE
## 346                 <NA>                <NA>                 <NA>    FALSE
## 347                 <NA>                <NA>                 <NA>    FALSE
## 348  1243534560085803009 1116473153151283200            ogajazzyk    FALSE
## 349                 <NA>                <NA>                 <NA>    FALSE
## 350                 <NA>                <NA>                 <NA>    FALSE
## 351  1243696541963091968 1192670568962830336       trvlyblessed__    FALSE
## 352                 <NA>                <NA>                 <NA>    FALSE
## 353                 <NA>                <NA>                 <NA>    FALSE
## 354                 <NA>                <NA>                 <NA>    FALSE
## 355                 <NA>                <NA>                 <NA>    FALSE
## 356                 <NA>                <NA>                 <NA>    FALSE
## 357                 <NA>                <NA>                 <NA>    FALSE
## 358                 <NA>                <NA>                 <NA>    FALSE
## 359                 <NA>                <NA>                 <NA>    FALSE
## 360                 <NA>                <NA>                 <NA>    FALSE
## 361                 <NA>                <NA>                 <NA>    FALSE
## 362                 <NA>                <NA>                 <NA>    FALSE
## 363                 <NA>                <NA>                 <NA>    FALSE
## 364                 <NA>                <NA>                 <NA>    FALSE
## 365  1242865467775053824            20353789          ChrisMBiggs    FALSE
## 366                 <NA>                <NA>                 <NA>    FALSE
## 367                 <NA>                <NA>                 <NA>    FALSE
## 368  1243537864794791942            25320639         jerome_corsi    FALSE
## 369  1243690535728152581           705706292      rebeccaballhaus    FALSE
## 370  1243497288821080066           219521368              tayokun    FALSE
## 371                 <NA>                <NA>                 <NA>    FALSE
## 372                 <NA>                <NA>                 <NA>    FALSE
## 373                 <NA>                <NA>                 <NA>    FALSE
## 374  1243260209163833344          1325563478      Ianblackford_MP    FALSE
## 375                 <NA>                <NA>                 <NA>     TRUE
## 376                 <NA>                <NA>                 <NA>    FALSE
## 377                 <NA>                <NA>                 <NA>    FALSE
## 378  1243593219763552261 1005460195202551808          Jane_nkyalo    FALSE
## 379  1243564774182567936            25073877      realDonaldTrump    FALSE
## 380                 <NA>                <NA>                 <NA>    FALSE
## 381                 <NA>                <NA>                 <NA>    FALSE
## 382                 <NA>                <NA>                 <NA>    FALSE
## 383                 <NA>                <NA>                 <NA>    FALSE
## 384                 <NA>                <NA>                 <NA>    FALSE
## 385                 <NA>                <NA>                 <NA>    FALSE
## 386                 <NA>                <NA>                 <NA>    FALSE
## 387                 <NA>                <NA>                 <NA>     TRUE
## 388  1243194172313608193           471677441           gtconway3d    FALSE
## 389                 <NA>                <NA>                 <NA>    FALSE
## 390                 <NA>                <NA>                 <NA>    FALSE
## 391                 <NA>                <NA>                 <NA>    FALSE
## 392                 <NA>                <NA>                 <NA>    FALSE
## 393                 <NA>                <NA>                 <NA>    FALSE
## 394                 <NA>                <NA>                 <NA>    FALSE
## 395                 <NA>                <NA>                 <NA>    FALSE
## 396                 <NA>                <NA>                 <NA>    FALSE
## 397                 <NA>                <NA>                 <NA>    FALSE
## 398                 <NA>                <NA>                 <NA>    FALSE
## 399                 <NA>                <NA>                 <NA>    FALSE
## 400                 <NA>                <NA>                 <NA>    FALSE
## 401                 <NA>                <NA>                 <NA>    FALSE
## 402                 <NA>                <NA>                 <NA>    FALSE
## 403                 <NA>                <NA>                 <NA>    FALSE
## 404                 <NA>                <NA>                 <NA>    FALSE
## 405                 <NA>                <NA>                 <NA>    FALSE
## 406                 <NA>                <NA>                 <NA>    FALSE
## 407                 <NA>                <NA>                 <NA>    FALSE
## 408                 <NA>                <NA>                 <NA>    FALSE
## 409                 <NA>                <NA>                 <NA>    FALSE
## 410                 <NA>                <NA>                 <NA>    FALSE
## 411                 <NA>                <NA>                 <NA>    FALSE
## 412                 <NA>                <NA>                 <NA>    FALSE
## 413                 <NA>                <NA>                 <NA>    FALSE
## 414                 <NA>                <NA>                 <NA>    FALSE
## 415                 <NA>                <NA>                 <NA>    FALSE
## 416                 <NA>                <NA>                 <NA>    FALSE
## 417                 <NA>                <NA>                 <NA>    FALSE
## 418                 <NA>                <NA>                 <NA>    FALSE
## 419                 <NA>                <NA>                 <NA>    FALSE
## 420                 <NA>                <NA>                 <NA>    FALSE
## 421                 <NA>             3562471                 null    FALSE
## 422                 <NA>                <NA>                 <NA>    FALSE
## 423                 <NA>                <NA>                 <NA>    FALSE
## 424  1243571839491661824           244655353         davidaxelrod    FALSE
## 425                 <NA>                <NA>                 <NA>    FALSE
## 426                 <NA>                <NA>                 <NA>    FALSE
## 427  1243271387973922816            20699709      bbcquestiontime    FALSE
## 428                 <NA>                <NA>                 <NA>    FALSE
## 429                 <NA>                <NA>                 <NA>    FALSE
## 430                 <NA>                <NA>                 <NA>    FALSE
## 431                 <NA>                <NA>                 <NA>    FALSE
## 432                 <NA>                <NA>                 <NA>    FALSE
## 433                 <NA>                <NA>                 <NA>    FALSE
## 434                 <NA>                <NA>                 <NA>    FALSE
## 435                 <NA>                <NA>                 <NA>    FALSE
## 436                 <NA>                <NA>                 <NA>    FALSE
## 437                 <NA>                <NA>                 <NA>    FALSE
## 438                 <NA>                <NA>                 <NA>     TRUE
## 439                 <NA>                <NA>                 <NA>    FALSE
## 440                 <NA>                <NA>                 <NA>    FALSE
## 441  1243735087235108865           909334512        andinthiscalm    FALSE
## 442                 <NA>                <NA>                 <NA>    FALSE
## 443  1243683965975908353           373564351          Khanoisseur    FALSE
## 444                 <NA>                <NA>                 <NA>    FALSE
## 445                 <NA>                <NA>                 <NA>    FALSE
## 446  1242549027503308807          3291617399              ZLevyMD    FALSE
## 447                 <NA>                <NA>                 <NA>    FALSE
## 448                 <NA>           118787224               KTRTRS    FALSE
## 449                 <NA>                <NA>                 <NA>    FALSE
## 450                 <NA>                <NA>                 <NA>    FALSE
## 451                 <NA>                <NA>                 <NA>     TRUE
## 452                 <NA>                <NA>                 <NA>    FALSE
## 453  1243232794777497601           550614944            The_vijju    FALSE
## 454                 <NA>                <NA>                 <NA>    FALSE
## 455                 <NA>  822215679726100480                POTUS    FALSE
## 456                 <NA>                <NA>                 <NA>    FALSE
## 457                 <NA>                <NA>                 <NA>    FALSE
## 458  1243589523268931585          4397092817      InDarknessShine    FALSE
## 459                 <NA>                <NA>                 <NA>    FALSE
## 460                 <NA>                <NA>                 <NA>    FALSE
## 461                 <NA>                <NA>                 <NA>    FALSE
## 462                 <NA>                <NA>                 <NA>    FALSE
## 463                 <NA>                <NA>                 <NA>    FALSE
## 464                 <NA>                <NA>                 <NA>    FALSE
## 465                 <NA>                <NA>                 <NA>    FALSE
## 466                 <NA>                <NA>                 <NA>    FALSE
## 467                 <NA>                <NA>                 <NA>    FALSE
## 468                 <NA>                <NA>                 <NA>    FALSE
## 469                 <NA>                <NA>                 <NA>    FALSE
## 470  1243734919404081153           128447885             izaanfly    FALSE
## 471                 <NA>                <NA>                 <NA>    FALSE
## 472                 <NA>                <NA>                 <NA>    FALSE
## 473                 <NA>                <NA>                 <NA>    FALSE
## 474                 <NA>                <NA>                 <NA>    FALSE
## 475                 <NA>                <NA>                 <NA>    FALSE
## 476                 <NA>                <NA>                 <NA>    FALSE
## 477  1243237359715520513           138182116          trish_regan    FALSE
## 478                 <NA>                <NA>                 <NA>    FALSE
## 479                 <NA>                <NA>                 <NA>    FALSE
## 480                 <NA>                <NA>                 <NA>    FALSE
## 481                 <NA>                <NA>                 <NA>    FALSE
## 482                 <NA>           192947735               davido    FALSE
## 483                 <NA>                <NA>                 <NA>    FALSE
## 484                 <NA>                <NA>                 <NA>    FALSE
## 485                 <NA>                <NA>                 <NA>    FALSE
## 486  1243726999643803648 1238205108468322304        JarredProvich    FALSE
## 487                 <NA>                <NA>                 <NA>    FALSE
## 488  1243267205149503488           233343317      noplaceforsheep    FALSE
## 489                 <NA>           107169191      ASlobComesClean    FALSE
## 490                 <NA>                <NA>                 <NA>    FALSE
## 491                 <NA>                <NA>                 <NA>    FALSE
## 492                 <NA>                <NA>                 <NA>    FALSE
## 493                 <NA>                <NA>                 <NA>    FALSE
## 494                 <NA>                <NA>                 <NA>    FALSE
## 495                 <NA>                <NA>                 <NA>    FALSE
## 496                 <NA>                <NA>                 <NA>     TRUE
## 497                 <NA>                <NA>                 <NA>    FALSE
## 498  1243231121694916614            21997871                Salym    FALSE
## 499                 <NA>                <NA>                 <NA>    FALSE
## 500  1243200193593565185            25073877      realDonaldTrump    FALSE
## 501                 <NA>                <NA>                 <NA>    FALSE
## 502                 <NA>                <NA>                 <NA>    FALSE
## 503                 <NA>                <NA>                 <NA>    FALSE
## 504                 <NA>                <NA>                 <NA>    FALSE
## 505                 <NA>                <NA>                 <NA>    FALSE
## 506                 <NA>                <NA>                 <NA>    FALSE
## 507                 <NA>                <NA>                 <NA>    FALSE
## 508                 <NA>                <NA>                 <NA>    FALSE
## 509                 <NA>                <NA>                 <NA>    FALSE
## 510                 <NA>                <NA>                 <NA>    FALSE
## 511                 <NA>                <NA>                 <NA>    FALSE
## 512  1243651930624229376          2908170952       DiamondandSilk    FALSE
## 513                 <NA>                <NA>                 <NA>     TRUE
## 514                 <NA>                <NA>                 <NA>    FALSE
## 515  1243285971556327425            89068115         ErinMPerrine    FALSE
## 516                 <NA>                <NA>                 <NA>    FALSE
## 517                 <NA>                <NA>                 <NA>    FALSE
## 518  1243651614365319169           264316796         Zlatan_Ibile    FALSE
## 519                 <NA>                <NA>                 <NA>    FALSE
## 520  1243089326101024769           384233102            randlight    FALSE
## 521                 <NA>                <NA>                 <NA>    FALSE
## 522                 <NA>                <NA>                 <NA>    FALSE
## 523  1243739346554851328          1274690550        TVMohandasPai    FALSE
## 524                 <NA>                <NA>                 <NA>     TRUE
## 525                 <NA>                <NA>                 <NA>    FALSE
## 526                 <NA>                <NA>                 <NA>    FALSE
## 527                 <NA>                <NA>                 <NA>    FALSE
## 528                 <NA>                <NA>                 <NA>     TRUE
## 529  1243212859728736256             7210512           josephaleo    FALSE
## 530                 <NA>                <NA>                 <NA>    FALSE
## 531                 <NA>                <NA>                 <NA>    FALSE
## 532                 <NA>                <NA>                 <NA>     TRUE
## 533                 <NA>                <NA>                 <NA>    FALSE
## 534                 <NA>                <NA>                 <NA>    FALSE
## 535                 <NA>                <NA>                 <NA>    FALSE
## 536                 <NA>                <NA>                 <NA>    FALSE
## 537  1243765273984974848           288992814            Manyisanb    FALSE
## 538  1243748803297058816  917551134390317057         TestaduraNGO    FALSE
## 539                 <NA>                <NA>                 <NA>    FALSE
## 540                 <NA>                <NA>                 <NA>    FALSE
## 541  1243380431073841153  854930141469868037      AnkitRawat98075    FALSE
## 542  1243380655880155136 1181600449633439744         Dave62286427    FALSE
## 543                 <NA>                <NA>                 <NA>    FALSE
## 544                 <NA>                <NA>                 <NA>    FALSE
## 545                 <NA>                <NA>                 <NA>    FALSE
## 546                 <NA>                <NA>                 <NA>    FALSE
## 547                 <NA>                <NA>                 <NA>    FALSE
## 548                 <NA>                <NA>                 <NA>    FALSE
## 549                 <NA>                <NA>                 <NA>    FALSE
## 550                 <NA>                <NA>                 <NA>    FALSE
## 551                 <NA>                <NA>                 <NA>    FALSE
## 552                 <NA>                <NA>                 <NA>    FALSE
## 553                 <NA>          1152653462              TeamRVH     TRUE
## 554                 <NA>                <NA>                 <NA>    FALSE
## 555                 <NA>                <NA>                 <NA>    FALSE
## 556  1243347433121296385           535643852      JordanSchachtel    FALSE
## 557  1243761843195105281 1201445258178879488      BRIJESH40374114    FALSE
## 558                 <NA>                <NA>                 <NA>     TRUE
## 559                 <NA>                <NA>                 <NA>    FALSE
## 560                 <NA>                <NA>                 <NA>    FALSE
## 561                 <NA>                <NA>                 <NA>    FALSE
## 562                 <NA>                <NA>                 <NA>    FALSE
## 563                 <NA>                <NA>                 <NA>    FALSE
## 564                 <NA>                <NA>                 <NA>    FALSE
## 565  1243638590837362688           807337182          marklewismd    FALSE
## 566                 <NA>                <NA>                 <NA>    FALSE
## 567                 <NA>                <NA>                 <NA>    FALSE
## 568                 <NA>                <NA>                 <NA>    FALSE
## 569  1243797779765284864 1042592899693608960       Tirath89123746    FALSE
## 570                 <NA>                <NA>                 <NA>    FALSE
## 571                 <NA>                <NA>                 <NA>    FALSE
## 572                 <NA>                <NA>                 <NA>    FALSE
## 573                 <NA>                <NA>                 <NA>    FALSE
## 574                 <NA>                <NA>                 <NA>    FALSE
## 575                 <NA>                <NA>                 <NA>    FALSE
## 576                 <NA>                <NA>                 <NA>    FALSE
## 577                 <NA>                <NA>                 <NA>    FALSE
## 578                 <NA>                <NA>                 <NA>    FALSE
## 579                 <NA>                <NA>                 <NA>    FALSE
## 580                 <NA>                <NA>                 <NA>    FALSE
## 581                 <NA>                <NA>                 <NA>    FALSE
## 582  1243684500892045312 1092232849371979776              Oochka3    FALSE
## 583                 <NA>                <NA>                 <NA>    FALSE
## 584                 <NA>                <NA>                 <NA>    FALSE
## 585                 <NA>                <NA>                 <NA>    FALSE
## 586                 <NA>                <NA>                 <NA>    FALSE
## 587                 <NA>                <NA>                 <NA>    FALSE
## 588                 <NA>                <NA>                 <NA>     TRUE
## 589                 <NA>                <NA>                 <NA>    FALSE
## 590                 <NA>                <NA>                 <NA>    FALSE
## 591                 <NA>                <NA>                 <NA>    FALSE
## 592                 <NA>                <NA>                 <NA>    FALSE
## 593  1243608030173892609            39155029               mkraju    FALSE
## 594                 <NA>                <NA>                 <NA>    FALSE
## 595  1243648274424356865            16812342             purtheil    FALSE
## 596                 <NA>                <NA>                 <NA>    FALSE
## 597                 <NA>                <NA>                 <NA>    FALSE
## 598                 <NA>                <NA>                 <NA>    FALSE
## 599                 <NA>                <NA>                 <NA>    FALSE
## 600                 <NA>                <NA>                 <NA>    FALSE
## 601                 <NA>                <NA>                 <NA>    FALSE
## 602                 <NA>                <NA>                 <NA>    FALSE
## 603                 <NA>                <NA>                 <NA>     TRUE
## 604                 <NA>                <NA>                 <NA>    FALSE
## 605                 <NA>                <NA>                 <NA>    FALSE
## 606                 <NA>                <NA>                 <NA>    FALSE
## 607                 <NA>                <NA>                 <NA>    FALSE
## 608  1243645829824622600  814630642755530752               EMD4ME    FALSE
## 609                 <NA>                <NA>                 <NA>    FALSE
## 610  1243326130511323138           228436342          jjburquhart    FALSE
## 611                 <NA>                <NA>                 <NA>    FALSE
## 612  1243498244224794625          3082401232             nazifaz_    FALSE
## 613                 <NA>                <NA>                 <NA>    FALSE
## 614                 <NA>                <NA>                 <NA>    FALSE
## 615                 <NA>                <NA>                 <NA>    FALSE
## 616                 <NA>                <NA>                 <NA>     TRUE
## 617                 <NA>                <NA>                 <NA>     TRUE
## 618                 <NA>                <NA>                 <NA>    FALSE
## 619                 <NA>                <NA>                 <NA>    FALSE
## 620  1243187910943428614           143152420      beholdcosmicwav    FALSE
## 621                 <NA>                <NA>                 <NA>    FALSE
## 622                 <NA>                <NA>                 <NA>    FALSE
## 623                 <NA>                <NA>                 <NA>    FALSE
## 624                 <NA>                <NA>                 <NA>    FALSE
## 625  1239688413479133191            86089860             SamsClub    FALSE
## 626  1243573390293622785           779898205          tanamongeau    FALSE
## 627                 <NA>            24973934        californiapuc    FALSE
## 628                 <NA>                <NA>                 <NA>    FALSE
## 629  1243570364845830144            87193615            psac_afpc    FALSE
## 630                 <NA>                <NA>                 <NA>    FALSE
## 631                 <NA>                <NA>                 <NA>    FALSE
## 632                 <NA>                <NA>                 <NA>    FALSE
## 633                 <NA>                <NA>                 <NA>    FALSE
## 634  1243659411157114880          2353148705         AherneMike95    FALSE
## 635                 <NA>                <NA>                 <NA>    FALSE
## 636  1243616774731567111           529114116           56kylecoop    FALSE
## 637                 <NA>                <NA>                 <NA>     TRUE
## 638                 <NA>                <NA>                 <NA>     TRUE
## 639                 <NA>                <NA>                 <NA>    FALSE
## 640                 <NA>                <NA>                 <NA>    FALSE
## 641                 <NA>                <NA>                 <NA>     TRUE
## 642  1243199846422433797            18774246              Baddiel    FALSE
## 643                 <NA>                <NA>                 <NA>    FALSE
## 644  1242993368197545985           343679171        JohnACrimmins    FALSE
## 645  1243298845452316672 1127379536000294913        Johan15109896    FALSE
## 646  1243605061747408896 1243375088923074561      MargotR90016343    FALSE
## 647                 <NA>                <NA>                 <NA>    FALSE
## 648                 <NA>                <NA>                 <NA>    FALSE
## 649                 <NA>                <NA>                 <NA>    FALSE
## 650                 <NA>                <NA>                 <NA>    FALSE
## 651                 <NA>                <NA>                 <NA>    FALSE
## 652                 <NA>                <NA>                 <NA>    FALSE
## 653                 <NA>                <NA>                 <NA>    FALSE
## 654                 <NA>          4707327216       PuneCityPolice    FALSE
## 655                 <NA>                <NA>                 <NA>    FALSE
## 656                 <NA>                <NA>                 <NA>    FALSE
## 657  1243664663830654976  833911266263474176        KayceeMaduYEG    FALSE
## 658                 <NA>           276254736            Postmates    FALSE
## 659  1243757407450419200  830847475464470528            san614617    FALSE
## 660  1243668659299631110            19568591           ananavarro    FALSE
## 661                 <NA>                <NA>                 <NA>    FALSE
## 662  1243491669611339776 1023732633505882113      rachelgould1996    FALSE
## 663                 <NA>                <NA>                 <NA>    FALSE
## 664                 <NA>                <NA>                 <NA>    FALSE
## 665                 <NA>                <NA>                 <NA>     TRUE
## 666                 <NA>                <NA>                 <NA>    FALSE
## 667  1243214200572391425           103849564           YRDeshmukh    FALSE
## 668                 <NA>                <NA>                 <NA>    FALSE
## 669                 <NA>                <NA>                 <NA>    FALSE
## 670                 <NA>                <NA>                 <NA>    FALSE
## 671                 <NA>                <NA>                 <NA>    FALSE
## 672                 <NA>                <NA>                 <NA>    FALSE
## 673                 <NA>                <NA>                 <NA>    FALSE
## 674                 <NA>                <NA>                 <NA>    FALSE
## 675                 <NA>                <NA>                 <NA>    FALSE
## 676                 <NA>                <NA>                 <NA>    FALSE
## 677                 <NA>                <NA>                 <NA>     TRUE
## 678  1243555220199596033  755263949646368768              dsgngal    FALSE
## 679                 <NA>                <NA>                 <NA>    FALSE
## 680                 <NA>                <NA>                 <NA>    FALSE
## 681                 <NA>                <NA>                 <NA>     TRUE
## 682                 <NA>                <NA>                 <NA>    FALSE
## 683                 <NA>                <NA>                 <NA>    FALSE
## 684  1243579617425928200           230477177       DeeLovelyone79    FALSE
## 685                 <NA>                <NA>                 <NA>    FALSE
## 686                 <NA>                <NA>                 <NA>    FALSE
## 687                 <NA>                <NA>                 <NA>    FALSE
## 688                 <NA>                <NA>                 <NA>    FALSE
## 689  1243608200622080005  775158750546161664          _chaybay21_    FALSE
## 690                 <NA>                <NA>                 <NA>    FALSE
## 691                 <NA>                <NA>                 <NA>    FALSE
## 692                 <NA>                <NA>                 <NA>    FALSE
## 693                 <NA>                <NA>                 <NA>    FALSE
## 694                 <NA>                <NA>                 <NA>    FALSE
## 695                 <NA>                <NA>                 <NA>    FALSE
## 696                 <NA>                <NA>                 <NA>    FALSE
## 697                 <NA>                <NA>                 <NA>    FALSE
## 698  1243345583122808832          1287327240          syd_masingi    FALSE
## 699  1243207284697829377  902766566244220929       GilvanR_Guedes    FALSE
## 700  1243307394089664513            82279998       MelissaSweetDr    FALSE
## 701                 <NA>                <NA>                 <NA>    FALSE
## 702                 <NA>                <NA>                 <NA>    FALSE
## 703  1243671901790187520           373033271         Wil_Johnson1    FALSE
## 704                 <NA>                <NA>                 <NA>    FALSE
## 705  1243743667401048064           148122322             axcollie    FALSE
## 706                 <NA>                <NA>                 <NA>    FALSE
## 707  1243225037387300864            19245279       JennMGreenberg    FALSE
## 708                 <NA>                <NA>                 <NA>     TRUE
## 709                 <NA>                <NA>                 <NA>    FALSE
## 710                 <NA>                <NA>                 <NA>     TRUE
## 711                 <NA>                <NA>                 <NA>    FALSE
## 712                 <NA>                <NA>                 <NA>    FALSE
## 713  1243459344399650816           240649814             TimesNow    FALSE
## 714                 <NA>                <NA>                 <NA>    FALSE
## 715                 <NA>                <NA>                 <NA>    FALSE
## 716                 <NA>                <NA>                 <NA>    FALSE
## 717                 <NA>                <NA>                 <NA>    FALSE
## 718                 <NA>                <NA>                 <NA>    FALSE
## 719                 <NA>                <NA>                 <NA>    FALSE
## 720                 <NA>                <NA>                 <NA>    FALSE
## 721  1242780126674333697            25073877      realDonaldTrump    FALSE
## 722                 <NA>                <NA>                 <NA>    FALSE
## 723                 <NA>                <NA>                 <NA>    FALSE
## 724                 <NA>                <NA>                 <NA>    FALSE
## 725                 <NA>                <NA>                 <NA>    FALSE
## 726                 <NA>                <NA>                 <NA>    FALSE
## 727                 <NA>                <NA>                 <NA>    FALSE
## 728                 <NA>                <NA>                 <NA>    FALSE
## 729                 <NA>                <NA>                 <NA>    FALSE
## 730                 <NA>            18774246              Baddiel    FALSE
## 731                 <NA>                <NA>                 <NA>    FALSE
## 732  1243810094485209088          3238948245      greaterheights_    FALSE
## 733                 <NA>                <NA>                 <NA>    FALSE
## 734                 <NA>                <NA>                 <NA>    FALSE
## 735                 <NA>                <NA>                 <NA>    FALSE
## 736                 <NA>                <NA>                 <NA>    FALSE
## 737                 <NA>                <NA>                 <NA>    FALSE
## 738                 <NA>                <NA>                 <NA>    FALSE
## 739                 <NA>                <NA>                 <NA>    FALSE
## 740                 <NA>                <NA>                 <NA>    FALSE
## 741                 <NA>                <NA>                 <NA>    FALSE
## 742                 <NA>                <NA>                 <NA>    FALSE
## 743                 <NA>                <NA>                 <NA>    FALSE
## 744                 <NA>                <NA>                 <NA>    FALSE
## 745                 <NA>                <NA>                 <NA>    FALSE
## 746                 <NA>                <NA>                 <NA>    FALSE
## 747                 <NA>                <NA>                 <NA>    FALSE
## 748                 <NA>                <NA>                 <NA>    FALSE
## 749  1243152679704068096           194605439           RTGACADEMY    FALSE
## 750                 <NA>                <NA>                 <NA>    FALSE
## 751  1243291868877787143  954954085840584704         AshburnDusty    FALSE
## 752                 <NA>                <NA>                 <NA>    FALSE
## 753                 <NA>                <NA>                 <NA>    FALSE
## 754                 <NA>                <NA>                 <NA>    FALSE
## 755                 <NA>                <NA>                 <NA>    FALSE
## 756                 <NA>                <NA>                 <NA>    FALSE
## 757                 <NA>                <NA>                 <NA>    FALSE
## 758                 <NA>                <NA>                 <NA>    FALSE
## 759  1243199428321673218           738149822         vinayak_jain    FALSE
## 760                 <NA>                <NA>                 <NA>    FALSE
## 761                 <NA>                <NA>                 <NA>    FALSE
## 762  1243228240187215874  920370467382419456         Bottlecapps1    FALSE
## 763                 <NA>                <NA>                 <NA>    FALSE
## 764                 <NA>                <NA>                 <NA>    FALSE
## 765                 <NA>                <NA>                 <NA>    FALSE
## 766                 <NA>                <NA>                 <NA>    FALSE
## 767                 <NA>                <NA>                 <NA>    FALSE
## 768                 <NA>                <NA>                 <NA>    FALSE
## 769                 <NA>                <NA>                 <NA>     TRUE
## 770                 <NA>                <NA>                 <NA>    FALSE
## 771                 <NA>                <NA>                 <NA>    FALSE
## 772  1242419276046372864            69298376              HSELive    FALSE
## 773                 <NA>                <NA>                 <NA>    FALSE
## 774                 <NA>                <NA>                 <NA>    FALSE
## 775  1243371547513020417  952637684626919424      PatriotsSoapbox    FALSE
## 776                 <NA>                <NA>                 <NA>     TRUE
## 777                 <NA>                <NA>                 <NA>     TRUE
## 778                 <NA>                <NA>                 <NA>    FALSE
## 779                 <NA>                <NA>                 <NA>    FALSE
## 780                 <NA>                <NA>                 <NA>    FALSE
## 781                 <NA>                <NA>                 <NA>    FALSE
## 782  1243593464249376768            17733320           BellaTwins    FALSE
## 783  1241719292661555201          3251355932       MukhtarSomalia    FALSE
## 784                 <NA>                <NA>                 <NA>    FALSE
## 785                 <NA>                <NA>                 <NA>    FALSE
## 786                 <NA>                <NA>                 <NA>    FALSE
## 787                 <NA>            15506669            JeffBezos     TRUE
## 788                 <NA>                <NA>                 <NA>    FALSE
## 789                 <NA>                <NA>                 <NA>    FALSE
## 790  1243638400160153605  700617769474129920           2tb_adrian    FALSE
## 791  1243608249217269768           407781903         MigunaMiguna    FALSE
## 792  1243589369895813120            14859642                 KTVB    FALSE
## 793                 <NA>                <NA>                 <NA>    FALSE
## 794  1243646543737032707           442664736              EvaBS14    FALSE
## 795                 <NA>                <NA>                 <NA>    FALSE
## 796                 <NA>                <NA>                 <NA>    FALSE
## 797                 <NA>                <NA>                 <NA>    FALSE
## 798  1243372437724676097            68883683           rjtownsend    FALSE
## 799  1243651614361227267  971145370326781953       Comicalsuicide    FALSE
## 800                 <NA>                <NA>                 <NA>    FALSE
## 801  1242484117373100037           196168350           AnnCoulter    FALSE
## 802                 <NA>                <NA>                 <NA>     TRUE
## 803                 <NA>                <NA>                 <NA>    FALSE
## 804                 <NA>                <NA>                 <NA>     TRUE
## 805                 <NA>                <NA>                 <NA>     TRUE
## 806                 <NA>                <NA>                 <NA>    FALSE
## 807                 <NA>                <NA>                 <NA>     TRUE
## 808                 <NA>                <NA>                 <NA>    FALSE
## 809                 <NA>                <NA>                 <NA>    FALSE
## 810  1243307656191700992          3445758553          Rubenbaeza8    FALSE
## 811                 <NA>                <NA>                 <NA>    FALSE
## 812  1243622346654715905            16785360            cmckenney    FALSE
## 813                 <NA>                <NA>                 <NA>    FALSE
## 814                 <NA>                <NA>                 <NA>    FALSE
## 815                 <NA>            14499829                  WHO    FALSE
## 816  1243323485021241345            33912784          loeschtwins    FALSE
## 817                 <NA>                <NA>                 <NA>    FALSE
## 818                 <NA>                <NA>                 <NA>    FALSE
## 819                 <NA>                <NA>                 <NA>    FALSE
## 820  1243259136759992321            18382184      AdamParkhomenko    FALSE
## 821                 <NA>                <NA>                 <NA>    FALSE
## 822                 <NA>                <NA>                 <NA>    FALSE
## 823                 <NA>                <NA>                 <NA>    FALSE
## 824                 <NA>            70431502      OwensboroHealth    FALSE
## 825                 <NA>                <NA>                 <NA>    FALSE
## 826  1243390672872157189           333235146           JimmyUmesh    FALSE
## 827                 <NA>                <NA>                 <NA>    FALSE
## 828                 <NA>                <NA>                 <NA>    FALSE
## 829                 <NA>                <NA>                 <NA>    FALSE
## 830                 <NA>                <NA>                 <NA>    FALSE
## 831                 <NA>                <NA>                 <NA>    FALSE
## 832  1243240022142259200          1339835893       HillaryClinton    FALSE
## 833                 <NA>                <NA>                 <NA>    FALSE
## 834  1243240242418679809            24053850      Goodmoisturizer    FALSE
## 835  1243598189208485888  930133384936001537          JimSantilli    FALSE
## 836                 <NA>                <NA>                 <NA>    FALSE
## 837                 <NA>                <NA>                 <NA>    FALSE
## 838                 <NA>                <NA>                 <NA>    FALSE
## 839                 <NA>                <NA>                 <NA>    FALSE
## 840                 <NA>                <NA>                 <NA>    FALSE
## 841                 <NA>                <NA>                 <NA>    FALSE
## 842                 <NA>                <NA>                 <NA>     TRUE
## 843                 <NA>                <NA>                 <NA>    FALSE
## 844                 <NA>                <NA>                 <NA>     TRUE
## 845                 <NA>                <NA>                 <NA>    FALSE
## 846                 <NA>                <NA>                 <NA>    FALSE
## 847                 <NA>                <NA>                 <NA>     TRUE
## 848  1243710673944825858 1219576960927588353           ChemConnon    FALSE
## 849  1243584132527149056  746371177174679552       nickreeves9876    FALSE
## 850                 <NA>                <NA>                 <NA>    FALSE
## 851                 <NA>                <NA>                 <NA>    FALSE
## 852                 <NA>                <NA>                 <NA>    FALSE
## 853                 <NA>                <NA>                 <NA>    FALSE
## 854                 <NA>                <NA>                 <NA>    FALSE
## 855                 <NA>                <NA>                 <NA>    FALSE
## 856  1243619870995935232 1242511625074008064       worthlessmind2    FALSE
## 857                 <NA>                <NA>                 <NA>     TRUE
## 858  1243272695564963841          1128888726          ABousquette    FALSE
## 859  1243722184444395520            22879437               graddy    FALSE
## 860                 <NA>                <NA>                 <NA>    FALSE
## 861                 <NA>                <NA>                 <NA>    FALSE
## 862                 <NA>                <NA>                 <NA>    FALSE
## 863  1243258617546985472            14465282         kevinpurcell    FALSE
## 864                 <NA>                <NA>                 <NA>    FALSE
## 865                 <NA>                <NA>                 <NA>    FALSE
## 866  1243282327456944128  989139154989613059           pepperdem5    FALSE
## 867                 <NA>                <NA>                 <NA>    FALSE
## 868                 <NA>                <NA>                 <NA>    FALSE
## 869                 <NA>                <NA>                 <NA>    FALSE
## 870                 <NA>                <NA>                 <NA>    FALSE
## 871                 <NA>          2998864022           essenviews    FALSE
## 872                 <NA>            17358750         ericgarcetti    FALSE
## 873  1243332900189159424            29174698           sethbannon    FALSE
## 874                 <NA>                <NA>                 <NA>    FALSE
## 875                 <NA>                <NA>                 <NA>    FALSE
## 876  1242977847754592257           113700310            Lilpoo404    FALSE
## 877  1243596077166624770  829881163472916481       SusannaLHarris    FALSE
## 878  1243578782683889672           426028646          JohnDelaney    FALSE
## 879                 <NA>                <NA>                 <NA>    FALSE
## 880                 <NA>                <NA>                 <NA>    FALSE
## 881                 <NA>                <NA>                 <NA>    FALSE
## 882  1243282491525431302            15405628      JakeLeonardWPMD    FALSE
## 883                 <NA>                <NA>                 <NA>    FALSE
## 884                 <NA>            82821040          chennaicorp    FALSE
## 885                 <NA>                <NA>                 <NA>     TRUE
## 886                 <NA>           959354996          itsjojosiwa    FALSE
## 887  1243638266211061760 1155312569361547264        dailydigger19    FALSE
## 888  1243720503585460224 1215420238973399040         Derp_Decider    FALSE
## 889                 <NA>                <NA>                 <NA>    FALSE
## 890                 <NA>                <NA>                 <NA>    FALSE
## 891  1243482721067900930          1030902468              WeleSeg    FALSE
## 892                 <NA>                <NA>                 <NA>    FALSE
## 893                 <NA>                <NA>                 <NA>    FALSE
## 894                 <NA>                <NA>                 <NA>    FALSE
## 895                 <NA>                <NA>                 <NA>    FALSE
## 896                 <NA>                <NA>                 <NA>    FALSE
## 897                 <NA>                <NA>                 <NA>    FALSE
## 898                 <NA>                <NA>                 <NA>    FALSE
## 899                 <NA>                <NA>                 <NA>    FALSE
## 900                 <NA>                <NA>                 <NA>    FALSE
## 901                 <NA>                <NA>                 <NA>    FALSE
## 902                 <NA>                <NA>                 <NA>    FALSE
## 903                 <NA>                <NA>                 <NA>     TRUE
## 904                 <NA>                <NA>                 <NA>    FALSE
## 905  1243301546948849664           218027755       ToddJCefaratti    FALSE
## 906  1243487934571073536  936912667104694272      ReneeMarieHern2    FALSE
## 907  1243367095330430977            17462502        TedMielczarek    FALSE
## 908                 <NA>                <NA>                 <NA>    FALSE
## 909                 <NA>                <NA>                 <NA>    FALSE
## 910                 <NA>                <NA>                 <NA>     TRUE
## 911                 <NA>                <NA>                 <NA>    FALSE
## 912                 <NA>                <NA>                 <NA>     TRUE
## 913  1243791507565318145 1183109735244914688            W_S_O_S_D    FALSE
## 914                 <NA>                <NA>                 <NA>    FALSE
## 915                 <NA>                <NA>                 <NA>    FALSE
## 916                 <NA>                <NA>                 <NA>    FALSE
## 917                 <NA>                <NA>                 <NA>    FALSE
## 918                 <NA>                <NA>                 <NA>    FALSE
## 919                 <NA>                <NA>                 <NA>    FALSE
## 920                 <NA>                <NA>                 <NA>    FALSE
## 921                 <NA>                <NA>                 <NA>    FALSE
## 922                 <NA>                <NA>                 <NA>     TRUE
## 923  1243246957616934912           182758739      lerato_morapedi    FALSE
## 924                 <NA>                <NA>                 <NA>    FALSE
## 925                 <NA>                <NA>                 <NA>    FALSE
## 926  1243281350687444997 1176013903899156482      AngelofJustice9    FALSE
## 927  1243822756984209408          1920625123      VicMorenoGarcia    FALSE
## 928                 <NA>                <NA>                 <NA>    FALSE
## 929                 <NA>                <NA>                 <NA>    FALSE
## 930                 <NA>                <NA>                 <NA>    FALSE
## 931                 <NA>                <NA>                 <NA>    FALSE
## 932                 <NA>                <NA>                 <NA>    FALSE
## 933                 <NA>                <NA>                 <NA>    FALSE
## 934                 <NA>                <NA>                 <NA>    FALSE
## 935                 <NA>                <NA>                 <NA>    FALSE
## 936                 <NA>                <NA>                 <NA>    FALSE
## 937                 <NA>                <NA>                 <NA>    FALSE
## 938                 <NA>            19106719                  MAS    FALSE
## 939                 <NA>                <NA>                 <NA>    FALSE
## 940                 <NA>                <NA>                 <NA>    FALSE
## 941                 <NA>                <NA>                 <NA>    FALSE
## 942                 <NA>                <NA>                 <NA>    FALSE
## 943                 <NA>                <NA>                 <NA>    FALSE
## 944                 <NA>                <NA>                 <NA>     TRUE
## 945                 <NA>                <NA>                 <NA>    FALSE
## 946                 <NA>                <NA>                 <NA>    FALSE
## 947                 <NA>                <NA>                 <NA>    FALSE
## 948                 <NA>                <NA>                 <NA>    FALSE
## 949  1243357070784466947           139823781          BetteMidler    FALSE
## 950  1243761278453047296           582306752            boyrishan    FALSE
## 951                 <NA>                <NA>                 <NA>    FALSE
## 952                 <NA>                <NA>                 <NA>    FALSE
## 953                 <NA>                <NA>                 <NA>    FALSE
## 954                 <NA>                <NA>                 <NA>    FALSE
## 955                 <NA>                <NA>                 <NA>    FALSE
## 956                 <NA>                <NA>                 <NA>    FALSE
## 957                 <NA>                <NA>                 <NA>    FALSE
## 958                 <NA>                <NA>                 <NA>    FALSE
## 959                 <NA>                <NA>                 <NA>    FALSE
## 960                 <NA>                <NA>                 <NA>    FALSE
## 961                 <NA>                <NA>                 <NA>    FALSE
## 962                 <NA>                <NA>                 <NA>    FALSE
## 963                 <NA>                <NA>                 <NA>    FALSE
## 964                 <NA>                <NA>                 <NA>    FALSE
## 965                 <NA>                <NA>                 <NA>    FALSE
## 966                 <NA>                <NA>                 <NA>    FALSE
## 967  1243777459486691328            17980523          mitchellvii    FALSE
## 968                 <NA>                <NA>                 <NA>    FALSE
## 969                 <NA>                <NA>                 <NA>    FALSE
## 970                 <NA>                <NA>                 <NA>    FALSE
## 971                 <NA>                <NA>                 <NA>    FALSE
## 972                 <NA>                <NA>                 <NA>     TRUE
## 973                 <NA>                <NA>                 <NA>    FALSE
## 974                 <NA>                <NA>                 <NA>    FALSE
## 975                 <NA>                <NA>                 <NA>    FALSE
## 976                 <NA>                <NA>                 <NA>    FALSE
## 977                 <NA>                <NA>                 <NA>     TRUE
## 978  1243797547094880256           720314424         tehreemazeem    FALSE
## 979  1243658507276234756           225265639               ddale8    FALSE
## 980                 <NA>                <NA>                 <NA>    FALSE
## 981                 <NA>                <NA>                 <NA>    FALSE
## 982                 <NA>                <NA>                 <NA>    FALSE
## 983                 <NA>                <NA>                 <NA>    FALSE
## 984                 <NA>                <NA>                 <NA>    FALSE
## 985                 <NA>                <NA>                 <NA>    FALSE
## 986                 <NA>                <NA>                 <NA>    FALSE
## 987  1243571652740481024           852096720            TomJawetz    FALSE
## 988                 <NA>                <NA>                 <NA>    FALSE
## 989                 <NA>                <NA>                 <NA>    FALSE
## 990                 <NA>                <NA>                 <NA>    FALSE
## 991                 <NA>                <NA>                 <NA>     TRUE
## 992                 <NA>                <NA>                 <NA>    FALSE
## 993                 <NA>                <NA>                 <NA>    FALSE
## 994  1243238248136290306            95463107         SykesCharlie    FALSE
## 995                 <NA>                <NA>                 <NA>    FALSE
## 996  1243539242212642820           164730435               nikrdc    FALSE
## 997                 <NA>                <NA>                 <NA>    FALSE
## 998                 <NA>                <NA>                 <NA>    FALSE
## 999  1243336254961434624          4491254053           fourie_art    FALSE
## 1000                <NA>          3124524385         SteveSisolak     TRUE
## 1001                <NA>                <NA>                 <NA>    FALSE
## 1002                <NA>            25238117           DeleMomodu    FALSE
## 1003                <NA>            53159373          RandiRhodes    FALSE
## 1004                <NA>                <NA>                 <NA>    FALSE
## 1005                <NA>                <NA>                 <NA>    FALSE
## 1006                <NA>                <NA>                 <NA>    FALSE
## 1007                <NA>                <NA>                 <NA>     TRUE
## 1008                <NA>                <NA>                 <NA>    FALSE
## 1009                <NA>                <NA>                 <NA>    FALSE
## 1010                <NA>                <NA>                 <NA>    FALSE
## 1011 1243251464547512320  948946378939609089            GovMurphy    FALSE
## 1012                <NA>                <NA>                 <NA>    FALSE
## 1013                <NA>                <NA>                 <NA>    FALSE
## 1014                <NA>                <NA>                 <NA>    FALSE
## 1015                <NA>                <NA>                 <NA>    FALSE
## 1016                <NA>                <NA>                 <NA>    FALSE
## 1017                <NA>                <NA>                 <NA>    FALSE
## 1018 1243578298078244865            57597564               Okizle    FALSE
## 1019                <NA> 1060655470178787328          GovDunleavy    FALSE
## 1020                <NA>                <NA>                 <NA>    FALSE
## 1021                <NA>            26572460        SpaceForceDoD    FALSE
## 1022 1243360277598367747           840979597             MT_Strat    FALSE
## 1023                <NA>                <NA>                 <NA>     TRUE
## 1024                <NA>                <NA>                 <NA>    FALSE
## 1025 1243661558149869569 1097694473952342022      SundanceConstr1    FALSE
## 1026 1243241163349516288            16017475        NateSilver538    FALSE
## 1027                <NA>                <NA>                 <NA>     TRUE
## 1028                <NA>                <NA>                 <NA>    FALSE
## 1029                <NA>                <NA>                 <NA>    FALSE
## 1030                <NA>                <NA>                 <NA>     TRUE
## 1031                <NA>                <NA>                 <NA>    FALSE
## 1032                <NA>                <NA>                 <NA>    FALSE
## 1033                <NA>                <NA>                 <NA>    FALSE
## 1034                <NA>                <NA>                 <NA>     TRUE
## 1035                <NA>                <NA>                 <NA>     TRUE
## 1036                <NA>                <NA>                 <NA>    FALSE
## 1037                <NA>          2750127259         RepLeeZeldin     TRUE
## 1038                <NA>                <NA>                 <NA>    FALSE
## 1039                <NA>                <NA>                 <NA>     TRUE
## 1040                <NA>                <NA>                 <NA>     TRUE
## 1041 1243367207033139201            14887150           sarahtavel    FALSE
## 1042                <NA>                <NA>                 <NA>    FALSE
## 1043                <NA>                <NA>                 <NA>    FALSE
## 1044                <NA>                <NA>                 <NA>    FALSE
## 1045                <NA>                <NA>                 <NA>    FALSE
## 1046 1243341628586242050            21522338        marwilliamson    FALSE
## 1047 1243281713477844993            29442313           SenSanders    FALSE
## 1048                <NA>                <NA>                 <NA>    FALSE
## 1049                <NA>                <NA>                 <NA>    FALSE
## 1050 1243233296638783490           402091163          TheSSEHydro    FALSE
## 1051 1243740810274889728 1169715382971768833      GraceSm16250397    FALSE
## 1052                <NA>                <NA>                 <NA>    FALSE
## 1053                <NA>                <NA>                 <NA>    FALSE
## 1054                <NA>                <NA>                 <NA>    FALSE
## 1055 1243553713693888512  872896981299068929            1_odonkor    FALSE
## 1056                <NA>                <NA>                 <NA>    FALSE
## 1057                <NA>                <NA>                 <NA>    FALSE
## 1058                <NA>                <NA>                 <NA>    FALSE
## 1059                <NA>                <NA>                 <NA>    FALSE
## 1060                <NA>                <NA>                 <NA>    FALSE
## 1061 1243264304461250560          2490177326            camorborg    FALSE
## 1062                <NA>                <NA>                 <NA>    FALSE
## 1063 1243266472261980161          1286312880       allinwithchris    FALSE
## 1064                <NA>                <NA>                 <NA>    FALSE
## 1065                <NA>                <NA>                 <NA>    FALSE
## 1066                <NA>                <NA>                 <NA>    FALSE
## 1067                <NA>                <NA>                 <NA>    FALSE
## 1068                <NA>                <NA>                 <NA>    FALSE
## 1069                <NA>                <NA>                 <NA>    FALSE
## 1070                <NA>                <NA>                 <NA>    FALSE
## 1071                <NA>                <NA>                 <NA>    FALSE
## 1072                <NA>                <NA>                 <NA>    FALSE
## 1073                <NA>                <NA>                 <NA>     TRUE
## 1074                <NA>                <NA>                 <NA>    FALSE
## 1075                <NA>                <NA>                 <NA>     TRUE
## 1076                <NA>                <NA>                 <NA>    FALSE
## 1077                <NA>                <NA>                 <NA>    FALSE
## 1078                <NA>                <NA>                 <NA>    FALSE
## 1079 1243330106384359424           216464191         AntonPilgram    FALSE
## 1080                <NA>                <NA>                 <NA>    FALSE
## 1081                <NA>                <NA>                 <NA>    FALSE
## 1082                <NA>                <NA>                 <NA>    FALSE
## 1083                <NA>                <NA>                 <NA>    FALSE
## 1084                <NA>                <NA>                 <NA>    FALSE
## 1085                <NA>                <NA>                 <NA>    FALSE
## 1086                <NA>                <NA>                 <NA>    FALSE
## 1087 1243325323929726976           111721601      GovernorBullock    FALSE
## 1088                <NA>                <NA>                 <NA>    FALSE
## 1089                <NA>                <NA>                 <NA>    FALSE
## 1090 1243230769138610176 1007042541915725824       eschatoL0GICal    FALSE
## 1091                <NA>                <NA>                 <NA>    FALSE
## 1092                <NA>                <NA>                 <NA>    FALSE
## 1093                <NA>                <NA>                 <NA>    FALSE
## 1094                <NA>                <NA>                 <NA>    FALSE
## 1095 1243206505626812417           398212417          dino_melaye    FALSE
## 1096 1243496858095411200          3131144855         BorisJohnson    FALSE
## 1097 1243308042478911491           501107987         Truthers4USA    FALSE
## 1098                <NA>                <NA>                 <NA>    FALSE
## 1099 1243822980200882176 1236006332299436034         007maverick1    FALSE
## 1100                <NA>                <NA>                 <NA>    FALSE
## 1101                <NA>                <NA>                 <NA>     TRUE
## 1102                <NA>                <NA>                 <NA>    FALSE
## 1103                <NA>                <NA>                 <NA>    FALSE
## 1104                <NA>                <NA>                 <NA>    FALSE
## 1105                <NA>                <NA>                 <NA>    FALSE
## 1106                <NA>                <NA>                 <NA>    FALSE
## 1107                <NA>                <NA>                 <NA>    FALSE
## 1108                <NA>                <NA>                 <NA>    FALSE
## 1109                <NA>                <NA>                 <NA>    FALSE
## 1110                <NA>                <NA>                 <NA>    FALSE
## 1111                <NA>                <NA>                 <NA>    FALSE
##      is_retweet favorite_count retweet_count quote_count reply_count
## 1         FALSE              5             2          NA          NA
## 2         FALSE              0             0          NA          NA
## 3         FALSE              0             0          NA          NA
## 4         FALSE             15            10          NA          NA
## 5         FALSE              1             1          NA          NA
## 6         FALSE              7             3          NA          NA
## 7         FALSE              3             0          NA          NA
## 8         FALSE              5             4          NA          NA
## 9         FALSE              2             0          NA          NA
## 10        FALSE              1             0          NA          NA
## 11        FALSE             38             8          NA          NA
## 12        FALSE              5             0          NA          NA
## 13        FALSE              0             0          NA          NA
## 14        FALSE              0             0          NA          NA
## 15        FALSE              0             0          NA          NA
## 16        FALSE              1             0          NA          NA
## 17        FALSE              2             2          NA          NA
## 18        FALSE              1             0          NA          NA
## 19        FALSE              0             0          NA          NA
## 20        FALSE              0             0          NA          NA
## 21        FALSE              0             0          NA          NA
## 22        FALSE              0             0          NA          NA
## 23        FALSE            104            16          NA          NA
## 24        FALSE              1             0          NA          NA
## 25        FALSE              0             0          NA          NA
## 26        FALSE              8             1          NA          NA
## 27        FALSE              3             1          NA          NA
## 28        FALSE              0             0          NA          NA
## 29        FALSE              0             0          NA          NA
## 30        FALSE              1             0          NA          NA
## 31        FALSE              2             0          NA          NA
## 32        FALSE             29             6          NA          NA
## 33        FALSE             16            10          NA          NA
## 34        FALSE              3             1          NA          NA
## 35        FALSE              0             0          NA          NA
## 36        FALSE              0             0          NA          NA
## 37        FALSE              3             2          NA          NA
## 38        FALSE              7             2          NA          NA
## 39        FALSE              2             0          NA          NA
## 40        FALSE              1             0          NA          NA
## 41        FALSE              0             0          NA          NA
## 42        FALSE              0             0          NA          NA
## 43        FALSE             20             4          NA          NA
## 44        FALSE              0             2          NA          NA
## 45        FALSE              0             0          NA          NA
## 46        FALSE              0             0          NA          NA
## 47        FALSE              2             1          NA          NA
## 48        FALSE              5             4          NA          NA
## 49        FALSE             13             2          NA          NA
## 50        FALSE              0             0          NA          NA
## 51        FALSE              0             0          NA          NA
## 52        FALSE              1             0          NA          NA
## 53        FALSE              0             0          NA          NA
## 54        FALSE              0             0          NA          NA
## 55        FALSE              0             0          NA          NA
## 56        FALSE              0             0          NA          NA
## 57        FALSE              0             0          NA          NA
## 58        FALSE              0             0          NA          NA
## 59        FALSE              0             0          NA          NA
## 60        FALSE              0             0          NA          NA
## 61        FALSE              0             0          NA          NA
## 62        FALSE              2             0          NA          NA
## 63        FALSE             12             5          NA          NA
## 64        FALSE              2             0          NA          NA
## 65        FALSE              1             0          NA          NA
## 66        FALSE              0             0          NA          NA
## 67        FALSE              0             0          NA          NA
## 68        FALSE              1             0          NA          NA
## 69        FALSE              4             3          NA          NA
## 70        FALSE              2             1          NA          NA
## 71        FALSE              1             0          NA          NA
## 72        FALSE              0             0          NA          NA
## 73        FALSE              0             0          NA          NA
## 74        FALSE              0             0          NA          NA
## 75        FALSE              0             0          NA          NA
## 76        FALSE              2             2          NA          NA
## 77        FALSE              7             1          NA          NA
## 78        FALSE              9             0          NA          NA
## 79        FALSE             11             3          NA          NA
## 80        FALSE              0             0          NA          NA
## 81        FALSE              0             0          NA          NA
## 82        FALSE              0             0          NA          NA
## 83        FALSE              1             1          NA          NA
## 84        FALSE              0             0          NA          NA
## 85        FALSE              1             0          NA          NA
## 86        FALSE              0             0          NA          NA
## 87        FALSE              1             0          NA          NA
## 88        FALSE             12             3          NA          NA
## 89        FALSE              0             0          NA          NA
## 90        FALSE              2             0          NA          NA
## 91        FALSE              0             0          NA          NA
## 92        FALSE              0             0          NA          NA
## 93        FALSE              1             0          NA          NA
## 94        FALSE              0             0          NA          NA
## 95        FALSE             14             2          NA          NA
## 96        FALSE              0             0          NA          NA
## 97        FALSE              2             0          NA          NA
## 98        FALSE              1             0          NA          NA
## 99        FALSE              0             0          NA          NA
## 100       FALSE              0             0          NA          NA
## 101       FALSE              0             0          NA          NA
## 102       FALSE              1             0          NA          NA
## 103       FALSE              0             0          NA          NA
## 104       FALSE              0             0          NA          NA
## 105       FALSE              7             4          NA          NA
## 106       FALSE              0             0          NA          NA
## 107       FALSE              0             0          NA          NA
## 108       FALSE              0             0          NA          NA
## 109       FALSE              4             0          NA          NA
## 110       FALSE              7             4          NA          NA
## 111       FALSE              0             0          NA          NA
## 112       FALSE              1             1          NA          NA
## 113       FALSE              5             1          NA          NA
## 114       FALSE              0             0          NA          NA
## 115       FALSE              0             0          NA          NA
## 116       FALSE              2             0          NA          NA
## 117       FALSE              6             0          NA          NA
## 118       FALSE              2             1          NA          NA
## 119       FALSE              0             0          NA          NA
## 120       FALSE              0             0          NA          NA
## 121       FALSE              0             0          NA          NA
## 122       FALSE              0             0          NA          NA
## 123       FALSE              2             1          NA          NA
## 124       FALSE             10             2          NA          NA
## 125       FALSE              0             0          NA          NA
## 126       FALSE              0             1          NA          NA
## 127       FALSE           5349          1174          NA          NA
## 128       FALSE              0             0          NA          NA
## 129       FALSE              0             1          NA          NA
## 130       FALSE              8             3          NA          NA
## 131       FALSE              2             1          NA          NA
## 132       FALSE              0             0          NA          NA
## 133       FALSE              0             0          NA          NA
## 134       FALSE              0             0          NA          NA
## 135       FALSE              0             0          NA          NA
## 136       FALSE              3             2          NA          NA
## 137       FALSE              0             0          NA          NA
## 138       FALSE              0             0          NA          NA
## 139       FALSE             11            10          NA          NA
## 140       FALSE              0             0          NA          NA
## 141       FALSE              6             0          NA          NA
## 142       FALSE              0             0          NA          NA
## 143       FALSE              0             0          NA          NA
## 144       FALSE              4             3          NA          NA
## 145       FALSE              0             0          NA          NA
## 146       FALSE              0             0          NA          NA
## 147       FALSE              1             0          NA          NA
## 148       FALSE              0             0          NA          NA
## 149       FALSE              0             0          NA          NA
## 150       FALSE              1             0          NA          NA
## 151       FALSE              5             0          NA          NA
## 152       FALSE            104            19          NA          NA
## 153       FALSE              0             0          NA          NA
## 154       FALSE              0             0          NA          NA
## 155       FALSE              2             0          NA          NA
## 156       FALSE              0             0          NA          NA
## 157       FALSE              4             0          NA          NA
## 158       FALSE              0             0          NA          NA
## 159       FALSE              0             2          NA          NA
## 160       FALSE              1             1          NA          NA
## 161       FALSE              0             0          NA          NA
## 162       FALSE              4             2          NA          NA
## 163       FALSE              5             1          NA          NA
## 164       FALSE              0             0          NA          NA
## 165       FALSE              7            11          NA          NA
## 166       FALSE             19            20          NA          NA
## 167       FALSE              0             0          NA          NA
## 168       FALSE              0             0          NA          NA
## 169       FALSE             38             6          NA          NA
## 170       FALSE              0             0          NA          NA
## 171       FALSE              0             0          NA          NA
## 172       FALSE              0             0          NA          NA
## 173       FALSE              1             1          NA          NA
## 174       FALSE              0             0          NA          NA
## 175       FALSE              0             0          NA          NA
## 176       FALSE              0             0          NA          NA
## 177       FALSE              0             1          NA          NA
## 178       FALSE              3             2          NA          NA
## 179       FALSE              0             0          NA          NA
## 180       FALSE              3             0          NA          NA
## 181       FALSE             17             3          NA          NA
## 182       FALSE              3             0          NA          NA
## 183       FALSE              0             0          NA          NA
## 184       FALSE              1             0          NA          NA
## 185       FALSE             12             2          NA          NA
## 186       FALSE              1             0          NA          NA
## 187       FALSE              0             0          NA          NA
## 188       FALSE              5             1          NA          NA
## 189       FALSE              0             0          NA          NA
## 190       FALSE              0             0          NA          NA
## 191       FALSE              0             0          NA          NA
## 192       FALSE              0             0          NA          NA
## 193       FALSE              0             0          NA          NA
## 194       FALSE              1             0          NA          NA
## 195       FALSE              0             0          NA          NA
## 196       FALSE             30             5          NA          NA
## 197       FALSE              0             0          NA          NA
## 198       FALSE              0             0          NA          NA
## 199       FALSE              0             0          NA          NA
## 200       FALSE              1             0          NA          NA
## 201       FALSE              0             0          NA          NA
## 202       FALSE              1             0          NA          NA
## 203       FALSE              0             0          NA          NA
## 204       FALSE              2             3          NA          NA
## 205       FALSE              9             1          NA          NA
## 206       FALSE              6             2          NA          NA
## 207       FALSE              6             3          NA          NA
## 208       FALSE              0             0          NA          NA
## 209       FALSE              0             1          NA          NA
## 210       FALSE              0             0          NA          NA
## 211       FALSE              0             0          NA          NA
## 212       FALSE             13             9          NA          NA
## 213       FALSE              0             0          NA          NA
## 214       FALSE              1             0          NA          NA
## 215       FALSE              2             0          NA          NA
## 216       FALSE              0             0          NA          NA
## 217       FALSE              0             0          NA          NA
## 218       FALSE              2             1          NA          NA
## 219       FALSE              2             0          NA          NA
## 220       FALSE              0             0          NA          NA
## 221       FALSE              4             3          NA          NA
## 222       FALSE              0             0          NA          NA
## 223       FALSE              0             0          NA          NA
## 224       FALSE              3             0          NA          NA
## 225       FALSE              1             1          NA          NA
## 226       FALSE              0             0          NA          NA
## 227       FALSE              1             0          NA          NA
## 228       FALSE              0             0          NA          NA
## 229       FALSE              1             0          NA          NA
## 230       FALSE              0             0          NA          NA
## 231       FALSE             15             4          NA          NA
## 232       FALSE              8             4          NA          NA
## 233       FALSE             43             8          NA          NA
## 234       FALSE              0             1          NA          NA
## 235       FALSE              0             0          NA          NA
## 236       FALSE              6             1          NA          NA
## 237       FALSE              0             0          NA          NA
## 238       FALSE              0             0          NA          NA
## 239       FALSE              0             0          NA          NA
## 240       FALSE              0             0          NA          NA
## 241       FALSE              1             1          NA          NA
## 242       FALSE              0             0          NA          NA
## 243       FALSE              1             1          NA          NA
## 244       FALSE              1             0          NA          NA
## 245       FALSE              1             3          NA          NA
## 246       FALSE              0             0          NA          NA
## 247       FALSE             17            12          NA          NA
## 248       FALSE              2             2          NA          NA
## 249       FALSE              0             0          NA          NA
## 250       FALSE              0             0          NA          NA
## 251       FALSE              1             0          NA          NA
## 252       FALSE              2             0          NA          NA
## 253       FALSE              0             0          NA          NA
## 254       FALSE              0             0          NA          NA
## 255       FALSE              1             1          NA          NA
## 256       FALSE              0             0          NA          NA
## 257       FALSE              0             0          NA          NA
## 258       FALSE              0             0          NA          NA
## 259       FALSE             14             1          NA          NA
## 260       FALSE              2             0          NA          NA
## 261       FALSE              1             0          NA          NA
## 262       FALSE              1             1          NA          NA
## 263       FALSE              3             1          NA          NA
## 264       FALSE             13             3          NA          NA
## 265       FALSE              7             1          NA          NA
## 266       FALSE              0             0          NA          NA
## 267       FALSE              0             0          NA          NA
## 268       FALSE              0             8          NA          NA
## 269       FALSE              0             0          NA          NA
## 270       FALSE              4             0          NA          NA
## 271       FALSE              1             0          NA          NA
## 272       FALSE              0             0          NA          NA
## 273       FALSE              0             0          NA          NA
## 274       FALSE              8             6          NA          NA
## 275       FALSE              0             0          NA          NA
## 276       FALSE              1             0          NA          NA
## 277       FALSE              0             0          NA          NA
## 278       FALSE              2             4          NA          NA
## 279       FALSE              1             0          NA          NA
## 280       FALSE              2             0          NA          NA
## 281       FALSE              1             0          NA          NA
## 282       FALSE              8             5          NA          NA
## 283       FALSE              3             0          NA          NA
## 284       FALSE              0             0          NA          NA
## 285       FALSE              0             0          NA          NA
## 286       FALSE             13             1          NA          NA
## 287       FALSE              0             0          NA          NA
## 288       FALSE              0             0          NA          NA
## 289       FALSE              1             0          NA          NA
## 290       FALSE              0             0          NA          NA
## 291       FALSE              0             0          NA          NA
## 292       FALSE              0             0          NA          NA
## 293       FALSE              0             0          NA          NA
## 294       FALSE              0             0          NA          NA
## 295       FALSE              0             0          NA          NA
## 296       FALSE              1             0          NA          NA
## 297       FALSE              0             0          NA          NA
## 298       FALSE              7             1          NA          NA
## 299       FALSE              0             0          NA          NA
## 300       FALSE              0             0          NA          NA
## 301       FALSE              2             0          NA          NA
## 302       FALSE              0             0          NA          NA
## 303       FALSE              1             0          NA          NA
## 304       FALSE              0             0          NA          NA
## 305       FALSE              0             0          NA          NA
## 306       FALSE              1             0          NA          NA
## 307       FALSE              1             0          NA          NA
## 308       FALSE              0             0          NA          NA
## 309       FALSE              1             0          NA          NA
## 310       FALSE             19             2          NA          NA
## 311       FALSE              3             1          NA          NA
## 312       FALSE              4             2          NA          NA
## 313       FALSE            321           166          NA          NA
## 314       FALSE              0             0          NA          NA
## 315       FALSE              0             0          NA          NA
## 316       FALSE              0             0          NA          NA
## 317       FALSE              0             0          NA          NA
## 318       FALSE              0             0          NA          NA
## 319       FALSE              1             0          NA          NA
## 320       FALSE              6             0          NA          NA
## 321       FALSE              0             0          NA          NA
## 322       FALSE              0             0          NA          NA
## 323       FALSE              0             0          NA          NA
## 324       FALSE              0             0          NA          NA
## 325       FALSE              0             2          NA          NA
## 326       FALSE              7             0          NA          NA
## 327       FALSE              0             0          NA          NA
## 328       FALSE              0             0          NA          NA
## 329       FALSE              0             0          NA          NA
## 330       FALSE              0             0          NA          NA
## 331       FALSE              0             0          NA          NA
## 332       FALSE              4             1          NA          NA
## 333       FALSE              0             0          NA          NA
## 334       FALSE              0             0          NA          NA
## 335       FALSE              0             0          NA          NA
## 336       FALSE              0             1          NA          NA
## 337       FALSE              0             0          NA          NA
## 338       FALSE              0             0          NA          NA
## 339       FALSE              1             1          NA          NA
## 340       FALSE              3             1          NA          NA
## 341       FALSE              2             2          NA          NA
## 342       FALSE              1             0          NA          NA
## 343       FALSE              9             7          NA          NA
## 344       FALSE              0             0          NA          NA
## 345       FALSE              0             0          NA          NA
## 346       FALSE              0             0          NA          NA
## 347       FALSE              0             0          NA          NA
## 348       FALSE              0             0          NA          NA
## 349       FALSE              1             0          NA          NA
## 350       FALSE              1             1          NA          NA
## 351       FALSE              1             0          NA          NA
## 352       FALSE              0             0          NA          NA
## 353       FALSE              0             0          NA          NA
## 354       FALSE              2             0          NA          NA
## 355       FALSE              3             1          NA          NA
## 356       FALSE             44            28          NA          NA
## 357       FALSE              0             0          NA          NA
## 358       FALSE              3             1          NA          NA
## 359       FALSE              0             0          NA          NA
## 360       FALSE             11             3          NA          NA
## 361       FALSE             13             6          NA          NA
## 362       FALSE              0             0          NA          NA
## 363       FALSE              2             0          NA          NA
## 364       FALSE              5             0          NA          NA
## 365       FALSE              0             0          NA          NA
## 366       FALSE              0             0          NA          NA
## 367       FALSE              2             1          NA          NA
## 368       FALSE              0             0          NA          NA
## 369       FALSE              1             1          NA          NA
## 370       FALSE              0             0          NA          NA
## 371       FALSE             12             5          NA          NA
## 372       FALSE              1             0          NA          NA
## 373       FALSE              4             2          NA          NA
## 374       FALSE              0             0          NA          NA
## 375       FALSE             14             5          NA          NA
## 376       FALSE              0             0          NA          NA
## 377       FALSE              1             0          NA          NA
## 378       FALSE              1             0          NA          NA
## 379       FALSE              0             0          NA          NA
## 380       FALSE             16            11          NA          NA
## 381       FALSE              0             0          NA          NA
## 382       FALSE              3             1          NA          NA
## 383       FALSE              0             0          NA          NA
## 384       FALSE              1             0          NA          NA
## 385       FALSE              0             0          NA          NA
## 386       FALSE              0             0          NA          NA
## 387       FALSE              0             0          NA          NA
## 388       FALSE              0             0          NA          NA
## 389       FALSE              0             0          NA          NA
## 390       FALSE              8             1          NA          NA
## 391       FALSE              1             0          NA          NA
## 392       FALSE              0             0          NA          NA
## 393       FALSE              6             1          NA          NA
## 394       FALSE              5             4          NA          NA
## 395       FALSE              1             0          NA          NA
## 396       FALSE              0             0          NA          NA
## 397       FALSE              0             0          NA          NA
## 398       FALSE              0             0          NA          NA
## 399       FALSE              0             0          NA          NA
## 400       FALSE              1             0          NA          NA
## 401       FALSE              1             2          NA          NA
## 402       FALSE              2             2          NA          NA
## 403       FALSE             22            18          NA          NA
## 404       FALSE              1             0          NA          NA
## 405       FALSE              5             0          NA          NA
## 406       FALSE              1             1          NA          NA
## 407       FALSE              0             0          NA          NA
## 408       FALSE              2             5          NA          NA
## 409       FALSE              1             0          NA          NA
## 410       FALSE              0             0          NA          NA
## 411       FALSE              0             0          NA          NA
## 412       FALSE             30            11          NA          NA
## 413       FALSE              0             0          NA          NA
## 414       FALSE              2             0          NA          NA
## 415       FALSE              0             0          NA          NA
## 416       FALSE              0             0          NA          NA
## 417       FALSE              2             0          NA          NA
## 418       FALSE              7             0          NA          NA
## 419       FALSE              2             1          NA          NA
## 420       FALSE              0             0          NA          NA
## 421       FALSE              0             0          NA          NA
## 422       FALSE              0             0          NA          NA
## 423       FALSE              2             1          NA          NA
## 424       FALSE              1             0          NA          NA
## 425       FALSE             43            21          NA          NA
## 426       FALSE             13             2          NA          NA
## 427       FALSE              0             0          NA          NA
## 428       FALSE              0             0          NA          NA
## 429       FALSE              2             3          NA          NA
## 430       FALSE              0             0          NA          NA
## 431       FALSE              0             0          NA          NA
## 432       FALSE              2             0          NA          NA
## 433       FALSE              0             0          NA          NA
## 434       FALSE              1             0          NA          NA
## 435       FALSE              3             1          NA          NA
## 436       FALSE              2             0          NA          NA
## 437       FALSE              0             0          NA          NA
## 438       FALSE              1             1          NA          NA
## 439       FALSE              6             1          NA          NA
## 440       FALSE              0             0          NA          NA
## 441       FALSE              1             0          NA          NA
## 442       FALSE              3             2          NA          NA
## 443       FALSE              1             0          NA          NA
## 444       FALSE              0             0          NA          NA
## 445       FALSE              0             0          NA          NA
## 446       FALSE              3             2          NA          NA
## 447       FALSE              0             0          NA          NA
## 448       FALSE              0             0          NA          NA
## 449       FALSE              2             0          NA          NA
## 450       FALSE              1             0          NA          NA
## 451       FALSE             20             5          NA          NA
## 452       FALSE              0             0          NA          NA
## 453       FALSE              0             0          NA          NA
## 454       FALSE              0             1          NA          NA
## 455       FALSE              1             0          NA          NA
## 456       FALSE              0             0          NA          NA
## 457       FALSE              0             0          NA          NA
## 458       FALSE              1             0          NA          NA
## 459       FALSE              1             0          NA          NA
## 460       FALSE              1             1          NA          NA
## 461       FALSE              1             0          NA          NA
## 462       FALSE              0             0          NA          NA
## 463       FALSE              1             0          NA          NA
## 464       FALSE              0             0          NA          NA
## 465       FALSE              0             0          NA          NA
## 466       FALSE              6             0          NA          NA
## 467       FALSE              3             1          NA          NA
## 468       FALSE              0             0          NA          NA
## 469       FALSE              0             0          NA          NA
## 470       FALSE              1             0          NA          NA
## 471       FALSE              0             0          NA          NA
## 472       FALSE             12             0          NA          NA
## 473       FALSE              0             0          NA          NA
## 474       FALSE             27            28          NA          NA
## 475       FALSE              5            10          NA          NA
## 476       FALSE              0             1          NA          NA
## 477       FALSE              0             0          NA          NA
## 478       FALSE              0             0          NA          NA
## 479       FALSE              0             0          NA          NA
## 480       FALSE              3             0          NA          NA
## 481       FALSE              2             0          NA          NA
## 482       FALSE              0             0          NA          NA
## 483       FALSE              0             0          NA          NA
## 484       FALSE              8             0          NA          NA
## 485       FALSE              8             3          NA          NA
## 486       FALSE              5             0          NA          NA
## 487       FALSE              0             0          NA          NA
## 488       FALSE              0             1          NA          NA
## 489       FALSE              1             0          NA          NA
## 490       FALSE              2             1          NA          NA
## 491       FALSE              4             0          NA          NA
## 492       FALSE              0             0          NA          NA
## 493       FALSE              0             0          NA          NA
## 494       FALSE              1             0          NA          NA
## 495       FALSE              2             0          NA          NA
## 496       FALSE              1             1          NA          NA
## 497       FALSE              0             0          NA          NA
## 498       FALSE              0             0          NA          NA
## 499       FALSE              0             0          NA          NA
## 500       FALSE              0             0          NA          NA
## 501       FALSE              1             1          NA          NA
## 502       FALSE              0             0          NA          NA
## 503       FALSE              0             0          NA          NA
## 504       FALSE              0             0          NA          NA
## 505       FALSE              9            16          NA          NA
## 506       FALSE              0             0          NA          NA
## 507       FALSE              0             0          NA          NA
## 508       FALSE              6             3          NA          NA
## 509       FALSE              0             0          NA          NA
## 510       FALSE              0             0          NA          NA
## 511       FALSE              0             0          NA          NA
## 512       FALSE              2             0          NA          NA
## 513       FALSE             19             1          NA          NA
## 514       FALSE              0             0          NA          NA
## 515       FALSE              8             0          NA          NA
## 516       FALSE              0             0          NA          NA
## 517       FALSE              1             1          NA          NA
## 518       FALSE              1             0          NA          NA
## 519       FALSE              1             0          NA          NA
## 520       FALSE              0             2          NA          NA
## 521       FALSE            189             1          NA          NA
## 522       FALSE              4             2          NA          NA
## 523       FALSE              0             0          NA          NA
## 524       FALSE              0             1          NA          NA
## 525       FALSE             20            17          NA          NA
## 526       FALSE              0             0          NA          NA
## 527       FALSE              5             0          NA          NA
## 528       FALSE              0             0          NA          NA
## 529       FALSE              1             0          NA          NA
## 530       FALSE              0             0          NA          NA
## 531       FALSE              1             0          NA          NA
## 532       FALSE              2             0          NA          NA
## 533       FALSE              0             0          NA          NA
## 534       FALSE              0             0          NA          NA
## 535       FALSE              0             0          NA          NA
## 536       FALSE              0             0          NA          NA
## 537       FALSE              0             1          NA          NA
## 538       FALSE              0             0          NA          NA
## 539       FALSE              4             0          NA          NA
## 540       FALSE              0             0          NA          NA
## 541       FALSE              0             0          NA          NA
## 542       FALSE              0             0          NA          NA
## 543       FALSE              0             0          NA          NA
## 544       FALSE              0             0          NA          NA
## 545       FALSE              2             0          NA          NA
## 546       FALSE              0             1          NA          NA
## 547       FALSE              1             1          NA          NA
## 548       FALSE              1             0          NA          NA
## 549       FALSE              0             0          NA          NA
## 550       FALSE              0             0          NA          NA
## 551       FALSE              0             0          NA          NA
## 552       FALSE              1             0          NA          NA
## 553       FALSE              0             0          NA          NA
## 554       FALSE              2             1          NA          NA
## 555       FALSE              2             1          NA          NA
## 556       FALSE            200            80          NA          NA
## 557       FALSE              0             0          NA          NA
## 558       FALSE              1             0          NA          NA
## 559       FALSE              1             1          NA          NA
## 560       FALSE              0             0          NA          NA
## 561       FALSE              1             0          NA          NA
## 562       FALSE              0             0          NA          NA
## 563       FALSE              0             0          NA          NA
## 564       FALSE             86             6          NA          NA
## 565       FALSE              0             0          NA          NA
## 566       FALSE              0             0          NA          NA
## 567       FALSE             26            38          NA          NA
## 568       FALSE              1             0          NA          NA
## 569       FALSE              0             0          NA          NA
## 570       FALSE              4             2          NA          NA
## 571       FALSE              8             8          NA          NA
## 572       FALSE              0             0          NA          NA
## 573       FALSE             29            28          NA          NA
## 574       FALSE            106            37          NA          NA
## 575       FALSE              0             0          NA          NA
## 576       FALSE              1             1          NA          NA
## 577       FALSE              1             0          NA          NA
## 578       FALSE              0             0          NA          NA
## 579       FALSE              4             3          NA          NA
## 580       FALSE              0             0          NA          NA
## 581       FALSE              0             1          NA          NA
## 582       FALSE              2             0          NA          NA
## 583       FALSE              0             0          NA          NA
## 584       FALSE              0             0          NA          NA
## 585       FALSE              2             0          NA          NA
## 586       FALSE              0             0          NA          NA
## 587       FALSE              0             0          NA          NA
## 588       FALSE              1             0          NA          NA
## 589       FALSE              1             0          NA          NA
## 590       FALSE              0             0          NA          NA
## 591       FALSE              0             1          NA          NA
## 592       FALSE              0             0          NA          NA
## 593       FALSE              9             4          NA          NA
## 594       FALSE              1             0          NA          NA
## 595       FALSE              0             0          NA          NA
## 596       FALSE              1             0          NA          NA
## 597       FALSE              1             0          NA          NA
## 598       FALSE             15             8          NA          NA
## 599       FALSE              0             0          NA          NA
## 600       FALSE              0             0          NA          NA
## 601       FALSE              0             0          NA          NA
## 602       FALSE              1             0          NA          NA
## 603       FALSE              0             0          NA          NA
## 604       FALSE              0             0          NA          NA
## 605       FALSE              1             0          NA          NA
## 606       FALSE              0             0          NA          NA
## 607       FALSE              0             0          NA          NA
## 608       FALSE              0             0          NA          NA
## 609       FALSE              0             0          NA          NA
## 610       FALSE              2             1          NA          NA
## 611       FALSE              0             0          NA          NA
## 612       FALSE              0             0          NA          NA
## 613       FALSE              5             1          NA          NA
## 614       FALSE              0             0          NA          NA
## 615       FALSE             11             1          NA          NA
## 616       FALSE              0             0          NA          NA
## 617       FALSE              0             0          NA          NA
## 618       FALSE              2             0          NA          NA
## 619       FALSE              4             2          NA          NA
## 620       FALSE              6             3          NA          NA
## 621       FALSE              0             0          NA          NA
## 622       FALSE              1             0          NA          NA
## 623       FALSE              1             0          NA          NA
## 624       FALSE              1             0          NA          NA
## 625       FALSE              0             0          NA          NA
## 626       FALSE              0             0          NA          NA
## 627       FALSE              0             0          NA          NA
## 628       FALSE             24             3          NA          NA
## 629       FALSE              0             0          NA          NA
## 630       FALSE              2             1          NA          NA
## 631       FALSE              0             0          NA          NA
## 632       FALSE              1             2          NA          NA
## 633       FALSE              1             1          NA          NA
## 634       FALSE             13             0          NA          NA
## 635       FALSE              0             0          NA          NA
## 636       FALSE              2             0          NA          NA
## 637       FALSE              0             0          NA          NA
## 638       FALSE              0             0          NA          NA
## 639       FALSE              1             1          NA          NA
## 640       FALSE              0             0          NA          NA
## 641       FALSE              0             0          NA          NA
## 642       FALSE              0             1          NA          NA
## 643       FALSE             31             9          NA          NA
## 644       FALSE              2             1          NA          NA
## 645       FALSE              0             0          NA          NA
## 646       FALSE              0             0          NA          NA
## 647       FALSE              1             1          NA          NA
## 648       FALSE              3             0          NA          NA
## 649       FALSE              0             1          NA          NA
## 650       FALSE              5             5          NA          NA
## 651       FALSE              8             0          NA          NA
## 652       FALSE             20             7          NA          NA
## 653       FALSE              0             0          NA          NA
## 654       FALSE              0             0          NA          NA
## 655       FALSE              0             0          NA          NA
## 656       FALSE             11             3          NA          NA
## 657       FALSE              0             0          NA          NA
## 658       FALSE              0             0          NA          NA
## 659       FALSE              0             0          NA          NA
## 660       FALSE              3             0          NA          NA
## 661       FALSE             43            46          NA          NA
## 662       FALSE              1             0          NA          NA
## 663       FALSE             24             3          NA          NA
## 664       FALSE             34            15          NA          NA
## 665       FALSE              0             0          NA          NA
## 666       FALSE              0             0          NA          NA
## 667       FALSE              0             0          NA          NA
## 668       FALSE              1             0          NA          NA
## 669       FALSE              0             0          NA          NA
## 670       FALSE              0             0          NA          NA
## 671       FALSE              0             0          NA          NA
## 672       FALSE              5             0          NA          NA
## 673       FALSE              0             0          NA          NA
## 674       FALSE              0             0          NA          NA
## 675       FALSE              2             0          NA          NA
## 676       FALSE              0             0          NA          NA
## 677       FALSE              0             0          NA          NA
## 678       FALSE              0             0          NA          NA
## 679       FALSE              1             0          NA          NA
## 680       FALSE              6             5          NA          NA
## 681       FALSE              5             1          NA          NA
## 682       FALSE              5             1          NA          NA
## 683       FALSE              0             0          NA          NA
## 684       FALSE              0             0          NA          NA
## 685       FALSE              0             0          NA          NA
## 686       FALSE              0             0          NA          NA
## 687       FALSE             33            10          NA          NA
## 688       FALSE             12             7          NA          NA
## 689       FALSE              2             0          NA          NA
## 690       FALSE             17             0          NA          NA
## 691       FALSE              1             0          NA          NA
## 692       FALSE             10             2          NA          NA
## 693       FALSE              7             3          NA          NA
## 694       FALSE              1             4          NA          NA
## 695       FALSE              0             0          NA          NA
## 696       FALSE              4             0          NA          NA
## 697       FALSE              1             0          NA          NA
## 698       FALSE              0             0          NA          NA
## 699       FALSE              1             1          NA          NA
## 700       FALSE              5             1          NA          NA
## 701       FALSE              0             1          NA          NA
## 702       FALSE              0             0          NA          NA
## 703       FALSE              1             1          NA          NA
## 704       FALSE              2             0          NA          NA
## 705       FALSE              7             1          NA          NA
## 706       FALSE              1             0          NA          NA
## 707       FALSE              0             0          NA          NA
## 708       FALSE              1             0          NA          NA
## 709       FALSE              0             0          NA          NA
## 710       FALSE              3             0          NA          NA
## 711       FALSE              0             0          NA          NA
## 712       FALSE              2             0          NA          NA
## 713       FALSE              0             0          NA          NA
## 714       FALSE              0             0          NA          NA
## 715       FALSE             28            23          NA          NA
## 716       FALSE              0             1          NA          NA
## 717       FALSE              0             0          NA          NA
## 718       FALSE              0             0          NA          NA
## 719       FALSE              0             0          NA          NA
## 720       FALSE              1             1          NA          NA
## 721       FALSE              0             1          NA          NA
## 722       FALSE              4             1          NA          NA
## 723       FALSE              2             5          NA          NA
## 724       FALSE              5             0          NA          NA
## 725       FALSE              2             1          NA          NA
## 726       FALSE              0             0          NA          NA
## 727       FALSE              0             0          NA          NA
## 728       FALSE              0             0          NA          NA
## 729       FALSE              0             0          NA          NA
## 730       FALSE              0             0          NA          NA
## 731       FALSE              0             0          NA          NA
## 732       FALSE              1             0          NA          NA
## 733       FALSE              5             5          NA          NA
## 734       FALSE              1             0          NA          NA
## 735       FALSE              1             0          NA          NA
## 736       FALSE              0             0          NA          NA
## 737       FALSE              2             0          NA          NA
## 738       FALSE              0             0          NA          NA
## 739       FALSE              0             0          NA          NA
## 740       FALSE              1             1          NA          NA
## 741       FALSE              1             0          NA          NA
## 742       FALSE             10             7          NA          NA
## 743       FALSE              0             0          NA          NA
## 744       FALSE              0             0          NA          NA
## 745       FALSE              1             0          NA          NA
## 746       FALSE             57            43          NA          NA
## 747       FALSE              3             1          NA          NA
## 748       FALSE              0             0          NA          NA
## 749       FALSE              1             0          NA          NA
## 750       FALSE              1             1          NA          NA
## 751       FALSE              0             0          NA          NA
## 752       FALSE              2             0          NA          NA
## 753       FALSE              0             0          NA          NA
## 754       FALSE              0             0          NA          NA
## 755       FALSE             38            16          NA          NA
## 756       FALSE              1             0          NA          NA
## 757       FALSE              0             0          NA          NA
## 758       FALSE            113            22          NA          NA
## 759       FALSE              0             0          NA          NA
## 760       FALSE              1             0          NA          NA
## 761       FALSE              0             0          NA          NA
## 762       FALSE              0             0          NA          NA
## 763       FALSE              2             1          NA          NA
## 764       FALSE              0             0          NA          NA
## 765       FALSE              0             0          NA          NA
## 766       FALSE              0             0          NA          NA
## 767       FALSE              0             0          NA          NA
## 768       FALSE              6             7          NA          NA
## 769       FALSE              0             0          NA          NA
## 770       FALSE              0             0          NA          NA
## 771       FALSE              0             0          NA          NA
## 772       FALSE              0             0          NA          NA
## 773       FALSE              2             1          NA          NA
## 774       FALSE              9            17          NA          NA
## 775       FALSE              2             0          NA          NA
## 776       FALSE              2             0          NA          NA
## 777       FALSE              0             0          NA          NA
## 778       FALSE              0             0          NA          NA
## 779       FALSE              1             0          NA          NA
## 780       FALSE             41            26          NA          NA
## 781       FALSE              0             0          NA          NA
## 782       FALSE              0             0          NA          NA
## 783       FALSE              2             0          NA          NA
## 784       FALSE              1             0          NA          NA
## 785       FALSE              4             2          NA          NA
## 786       FALSE             17             1          NA          NA
## 787       FALSE              0             0          NA          NA
## 788       FALSE              0             0          NA          NA
## 789       FALSE              0             0          NA          NA
## 790       FALSE              0             0          NA          NA
## 791       FALSE              1             0          NA          NA
## 792       FALSE              4             1          NA          NA
## 793       FALSE              0             0          NA          NA
## 794       FALSE              0             0          NA          NA
## 795       FALSE              0             0          NA          NA
## 796       FALSE              0             0          NA          NA
## 797       FALSE              0             0          NA          NA
## 798       FALSE              0             0          NA          NA
## 799       FALSE              1             0          NA          NA
## 800       FALSE              2             2          NA          NA
## 801       FALSE              0             0          NA          NA
## 802       FALSE              0             0          NA          NA
## 803       FALSE              2             1          NA          NA
## 804       FALSE              0             0          NA          NA
## 805       FALSE             21             9          NA          NA
## 806       FALSE              0             0          NA          NA
## 807       FALSE              0             0          NA          NA
## 808       FALSE              1             0          NA          NA
## 809       FALSE              1             1          NA          NA
## 810       FALSE              1             0          NA          NA
## 811       FALSE              0             0          NA          NA
## 812       FALSE              4             0          NA          NA
## 813       FALSE             14             3          NA          NA
## 814       FALSE              0             0          NA          NA
## 815       FALSE              0             0          NA          NA
## 816       FALSE              1             0          NA          NA
## 817       FALSE             44            16          NA          NA
## 818       FALSE              0             2          NA          NA
## 819       FALSE              1             0          NA          NA
## 820       FALSE              0             0          NA          NA
## 821       FALSE              0             0          NA          NA
## 822       FALSE              3             1          NA          NA
## 823       FALSE              0             1          NA          NA
## 824       FALSE              0             0          NA          NA
## 825       FALSE              0             0          NA          NA
## 826       FALSE              0             0          NA          NA
## 827       FALSE              0             0          NA          NA
## 828       FALSE              2             0          NA          NA
## 829       FALSE              0             0          NA          NA
## 830       FALSE              9             0          NA          NA
## 831       FALSE              0             0          NA          NA
## 832       FALSE              0             0          NA          NA
## 833       FALSE              0             0          NA          NA
## 834       FALSE              0             0          NA          NA
## 835       FALSE              0             0          NA          NA
## 836       FALSE              1             0          NA          NA
## 837       FALSE              0             0          NA          NA
## 838       FALSE              0             1          NA          NA
## 839       FALSE              0             0          NA          NA
## 840       FALSE              1             0          NA          NA
## 841       FALSE              0             0          NA          NA
## 842       FALSE              0             0          NA          NA
## 843       FALSE              0             0          NA          NA
## 844       FALSE              1             0          NA          NA
## 845       FALSE              0             0          NA          NA
## 846       FALSE              6             0          NA          NA
## 847       FALSE              0             0          NA          NA
## 848       FALSE              2             1          NA          NA
## 849       FALSE              2             1          NA          NA
## 850       FALSE              0             0          NA          NA
## 851       FALSE              1             0          NA          NA
## 852       FALSE              0             0          NA          NA
## 853       FALSE              0             0          NA          NA
## 854       FALSE              0             0          NA          NA
## 855       FALSE              0             0          NA          NA
## 856       FALSE              0             0          NA          NA
## 857       FALSE              0             0          NA          NA
## 858       FALSE              0             0          NA          NA
## 859       FALSE              0             0          NA          NA
## 860       FALSE              0             0          NA          NA
## 861       FALSE              5             0          NA          NA
## 862       FALSE              0             0          NA          NA
## 863       FALSE              0             0          NA          NA
## 864       FALSE              1             1          NA          NA
## 865       FALSE             10             8          NA          NA
## 866       FALSE              1             0          NA          NA
## 867       FALSE              0             0          NA          NA
## 868       FALSE              0             0          NA          NA
## 869       FALSE              0             0          NA          NA
## 870       FALSE              1             0          NA          NA
## 871       FALSE              0             0          NA          NA
## 872       FALSE              0             0          NA          NA
## 873       FALSE             13             4          NA          NA
## 874       FALSE              0             0          NA          NA
## 875       FALSE              0             0          NA          NA
## 876       FALSE              0             0          NA          NA
## 877       FALSE              0             0          NA          NA
## 878       FALSE              0             0          NA          NA
## 879       FALSE              0             0          NA          NA
## 880       FALSE              0             0          NA          NA
## 881       FALSE              0             0          NA          NA
## 882       FALSE              0             0          NA          NA
## 883       FALSE              0             0          NA          NA
## 884       FALSE              0             0          NA          NA
## 885       FALSE              1             0          NA          NA
## 886       FALSE              0             0          NA          NA
## 887       FALSE              6             2          NA          NA
## 888       FALSE              0             0          NA          NA
## 889       FALSE              0             0          NA          NA
## 890       FALSE              8             3          NA          NA
## 891       FALSE              0             0          NA          NA
## 892       FALSE              4             8          NA          NA
## 893       FALSE              1             1          NA          NA
## 894       FALSE              0             0          NA          NA
## 895       FALSE              0             0          NA          NA
## 896       FALSE              0             0          NA          NA
## 897       FALSE              0             0          NA          NA
## 898       FALSE              2             0          NA          NA
## 899       FALSE              0             0          NA          NA
## 900       FALSE              0             0          NA          NA
## 901       FALSE              0             0          NA          NA
## 902       FALSE              0             0          NA          NA
## 903       FALSE              1             0          NA          NA
## 904       FALSE              0             0          NA          NA
## 905       FALSE              0             0          NA          NA
## 906       FALSE              1             0          NA          NA
## 907       FALSE              4             0          NA          NA
## 908       FALSE              7             2          NA          NA
## 909       FALSE              0             0          NA          NA
## 910       FALSE              1             1          NA          NA
## 911       FALSE              3             1          NA          NA
## 912       FALSE              0             0          NA          NA
## 913       FALSE              0             0          NA          NA
## 914       FALSE              0             0          NA          NA
## 915       FALSE              0             0          NA          NA
## 916       FALSE              0             0          NA          NA
## 917       FALSE              4             2          NA          NA
## 918       FALSE              0             0          NA          NA
## 919       FALSE              0             0          NA          NA
## 920       FALSE              1             0          NA          NA
## 921       FALSE              0             0          NA          NA
## 922       FALSE              2             0          NA          NA
## 923       FALSE              0             0          NA          NA
## 924       FALSE              0             0          NA          NA
## 925       FALSE              3             0          NA          NA
## 926       FALSE              0             0          NA          NA
## 927       FALSE              0             0          NA          NA
## 928       FALSE              2             0          NA          NA
## 929       FALSE              1             0          NA          NA
## 930       FALSE              1             0          NA          NA
## 931       FALSE              0             0          NA          NA
## 932       FALSE              0             0          NA          NA
## 933       FALSE              1             2          NA          NA
## 934       FALSE             24             7          NA          NA
## 935       FALSE              0             0          NA          NA
## 936       FALSE              5             1          NA          NA
## 937       FALSE             16             0          NA          NA
## 938       FALSE              0             0          NA          NA
## 939       FALSE              1             1          NA          NA
## 940       FALSE              2             2          NA          NA
## 941       FALSE              0             0          NA          NA
## 942       FALSE             68            22          NA          NA
## 943       FALSE              4             0          NA          NA
## 944       FALSE              8             8          NA          NA
## 945       FALSE              0             0          NA          NA
## 946       FALSE              1             2          NA          NA
## 947       FALSE              0             0          NA          NA
## 948       FALSE              0             0          NA          NA
## 949       FALSE              4             3          NA          NA
## 950       FALSE              1             0          NA          NA
## 951       FALSE              0             0          NA          NA
## 952       FALSE              6             4          NA          NA
## 953       FALSE              1             0          NA          NA
## 954       FALSE             12             2          NA          NA
## 955       FALSE              0             0          NA          NA
## 956       FALSE              0             0          NA          NA
## 957       FALSE              6             2          NA          NA
## 958       FALSE              0             0          NA          NA
## 959       FALSE              0             0          NA          NA
## 960       FALSE              0             0          NA          NA
## 961       FALSE              0             0          NA          NA
## 962       FALSE              2             1          NA          NA
## 963       FALSE              1             0          NA          NA
## 964       FALSE              0             0          NA          NA
## 965       FALSE              3             2          NA          NA
## 966       FALSE              0             0          NA          NA
## 967       FALSE              0             0          NA          NA
## 968       FALSE              6             1          NA          NA
## 969       FALSE              0             1          NA          NA
## 970       FALSE              0             0          NA          NA
## 971       FALSE              1             0          NA          NA
## 972       FALSE              1             1          NA          NA
## 973       FALSE              1             0          NA          NA
## 974       FALSE              0             1          NA          NA
## 975       FALSE              2             0          NA          NA
## 976       FALSE              0             0          NA          NA
## 977       FALSE              6             1          NA          NA
## 978       FALSE              1             0          NA          NA
## 979       FALSE              1             0          NA          NA
## 980       FALSE              0             0          NA          NA
## 981       FALSE              0             0          NA          NA
## 982       FALSE              2             0          NA          NA
## 983       FALSE              0             1          NA          NA
## 984       FALSE              1             0          NA          NA
## 985       FALSE              0             0          NA          NA
## 986       FALSE              0             0          NA          NA
## 987       FALSE              1             0          NA          NA
## 988       FALSE              0             3          NA          NA
## 989       FALSE              1             0          NA          NA
## 990       FALSE              2             0          NA          NA
## 991       FALSE              0             0          NA          NA
## 992       FALSE              0             0          NA          NA
## 993       FALSE              2             1          NA          NA
## 994       FALSE              0             0          NA          NA
## 995       FALSE              1             0          NA          NA
## 996       FALSE              0             0          NA          NA
## 997       FALSE              1             0          NA          NA
## 998       FALSE              0             0          NA          NA
## 999       FALSE              0             0          NA          NA
## 1000      FALSE              1             0          NA          NA
## 1001      FALSE              0             0          NA          NA
## 1002      FALSE              0             0          NA          NA
## 1003      FALSE              0             0          NA          NA
## 1004      FALSE              1             0          NA          NA
## 1005      FALSE              0             0          NA          NA
## 1006      FALSE              2             2          NA          NA
## 1007      FALSE              0             0          NA          NA
## 1008      FALSE              1             0          NA          NA
## 1009      FALSE              0             0          NA          NA
## 1010      FALSE             18             3          NA          NA
## 1011      FALSE              0             0          NA          NA
## 1012      FALSE              3             1          NA          NA
## 1013      FALSE             43             8          NA          NA
## 1014      FALSE              0             0          NA          NA
## 1015      FALSE              0             0          NA          NA
## 1016      FALSE              0             0          NA          NA
## 1017      FALSE              0             0          NA          NA
## 1018      FALSE              0             0          NA          NA
## 1019      FALSE              0             0          NA          NA
## 1020      FALSE              0             0          NA          NA
## 1021      FALSE              0             1          NA          NA
## 1022      FALSE              0             0          NA          NA
## 1023      FALSE              4             0          NA          NA
## 1024      FALSE              0             0          NA          NA
## 1025      FALSE             25             5          NA          NA
## 1026      FALSE             12             0          NA          NA
## 1027      FALSE              0             0          NA          NA
## 1028      FALSE              0             0          NA          NA
## 1029      FALSE              2             1          NA          NA
## 1030      FALSE              0             0          NA          NA
## 1031      FALSE             81            49          NA          NA
## 1032      FALSE              1             0          NA          NA
## 1033      FALSE              5             0          NA          NA
## 1034      FALSE              1             0          NA          NA
## 1035      FALSE              9             2          NA          NA
## 1036      FALSE              0             0          NA          NA
## 1037      FALSE              1             0          NA          NA
## 1038      FALSE              0             0          NA          NA
## 1039      FALSE              1             0          NA          NA
## 1040      FALSE              1             0          NA          NA
## 1041      FALSE              0             0          NA          NA
## 1042      FALSE              0             0          NA          NA
## 1043      FALSE              1             0          NA          NA
## 1044      FALSE              1             0          NA          NA
## 1045      FALSE              0             0          NA          NA
## 1046      FALSE              2             1          NA          NA
## 1047      FALSE              5             1          NA          NA
## 1048      FALSE              0             0          NA          NA
## 1049      FALSE              0             0          NA          NA
## 1050      FALSE              2             0          NA          NA
## 1051      FALSE              4             0          NA          NA
## 1052      FALSE              3             0          NA          NA
## 1053      FALSE              0             0          NA          NA
## 1054      FALSE              0             0          NA          NA
## 1055      FALSE              0             0          NA          NA
## 1056      FALSE              3             2          NA          NA
## 1057      FALSE             76            38          NA          NA
## 1058      FALSE              8             0          NA          NA
## 1059      FALSE              1             0          NA          NA
## 1060      FALSE              3             1          NA          NA
## 1061      FALSE              1             0          NA          NA
## 1062      FALSE              1             0          NA          NA
## 1063      FALSE              1             0          NA          NA
## 1064      FALSE              0             0          NA          NA
## 1065      FALSE              0             0          NA          NA
## 1066      FALSE              0             0          NA          NA
## 1067      FALSE              1             0          NA          NA
## 1068      FALSE              0             0          NA          NA
## 1069      FALSE              2             0          NA          NA
## 1070      FALSE            112            49          NA          NA
## 1071      FALSE              0             0          NA          NA
## 1072      FALSE              3             0          NA          NA
## 1073      FALSE              1             0          NA          NA
## 1074      FALSE              0             0          NA          NA
## 1075      FALSE              0             0          NA          NA
## 1076      FALSE              1             0          NA          NA
## 1077      FALSE              1             1          NA          NA
## 1078      FALSE              1             1          NA          NA
## 1079      FALSE              1             0          NA          NA
## 1080      FALSE              1             1          NA          NA
## 1081      FALSE              0             0          NA          NA
## 1082      FALSE              0             0          NA          NA
## 1083      FALSE              0             0          NA          NA
## 1084      FALSE              0             0          NA          NA
## 1085      FALSE              0             0          NA          NA
## 1086      FALSE              0             1          NA          NA
## 1087      FALSE             96            13          NA          NA
## 1088      FALSE             83             7          NA          NA
## 1089      FALSE              0             0          NA          NA
## 1090      FALSE              0             0          NA          NA
## 1091      FALSE              0             1          NA          NA
## 1092      FALSE              0             0          NA          NA
## 1093      FALSE              0             0          NA          NA
## 1094      FALSE              0             0          NA          NA
## 1095      FALSE              0             0          NA          NA
## 1096      FALSE              0             0          NA          NA
## 1097      FALSE              0             0          NA          NA
## 1098      FALSE              0             0          NA          NA
## 1099      FALSE              0             0          NA          NA
## 1100      FALSE             24             2          NA          NA
## 1101      FALSE             69            10          NA          NA
## 1102      FALSE              0             0          NA          NA
## 1103      FALSE              0             0          NA          NA
## 1104      FALSE              0             0          NA          NA
## 1105      FALSE              2             0          NA          NA
## 1106      FALSE              0             0          NA          NA
## 1107      FALSE              1             0          NA          NA
## 1108      FALSE              3             3          NA          NA
## 1109      FALSE              1             0          NA          NA
## 1110      FALSE              3             5          NA          NA
## 1111      FALSE              4             0          NA          NA
##                                                                                                                                                                                                                                                                                                                                                                                               hashtags
## 1                                                                                                                                                                                                                                                                                                                                                                                                   NA
## 2                                                                                                                                                                                                                                                                                                                                                                                                   NA
## 3                                                                                                                                                                                                                                                                                                                                                                                          coronavirus
## 4                                                                                                                                                                                                                                                                                                                                                                                                   NA
## 5                                                                                                                                                                                                                                                                                                                                                                                    COVID19, ohedchat
## 6                                                                                                                                                                                                                                                                                                                                                                                                   NA
## 7                                                                                                                                                                                                                                                                                                                                                                                                   NA
## 8                                                                                                                                                                                                                                                                                                                                                                         COVID19, coronavirus, racism
## 9                                                                                                                                                                                                                                                                                                                                                                                          covidfallen
## 10                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 11                                                                                                                                                                                                                                                                                                                                               firstresponders, healthcareworkers, stayhome, COVID19
## 12                                                                                                                                                                                                                                                                                                                                                                 onlineschool, coronavirus, StayHome
## 13                                                                                                                                                                                                                                                                                                                                                                                        TwistedLogic
## 14                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 15                                                                                                                                                                                                                                                                                                                                                                       COVID19, Toronto, thePPEdrive
## 16                                                                                                                                                                                                                                                                                                                                                                                community, kwawesome
## 17                                                                                                                                                                                                                             quarantine, StayAtHome, LumipocketLT, 3Dprinter, laser, chalk, colors, coronavirus, customization, lumindustries, engraving, laserengraving, print3D, 3D, allinone, DIY
## 18                                                                                                                                                                                                                                                                                                                                                       covid19, lockdown, janatacurfew, India, ckmkb
## 19                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 20                                                                                                                                                                                                                                                                                                                                                                                 dumpTrump, lyingGOP
## 21                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 22                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 23                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 24                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 25                                                                                                                                                                                                                                                                                                                                                                                         CoronaVirus
## 26                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 27                                                                                                                                                                                                                                                                                                                                                            YQGStandsStrong, COVID2019, mentalhealth
## 28                                                                                                                                                                                                                                                                                                                                                                     coronavirus, pandemic, IRS, tax
## 29                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 30                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 31                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 32                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 33                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 34                                                                                                                                                                                                                                                                                                                                                    coronavirus, eventprofs, covid19, teammanagement
## 35                                                                                                                                                                                                                                                                                                                               humanresources, EmpLawGods, employmentlaw, Covid19usa, businessadvice
## 36                                                                                                                                                                                                                                                                                                                                                                                    bbcnews, COVID19
## 37                                                                                                                                                                                                                                                                                                                                                                                             COVID19
## 38                                                                                                                                                                                                                                                                                                                                                                                      COVID19, EFFAT
## 39                                                                                                                                                                                                                                                                                                                                                                                          CrisisTalk
## 40                                                                                                                                                                                                                                                                                                                                                                  BuildforCOVID19, coronavirus, tech
## 41                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 42                                                                                                                                                                                                                                                                                                                                                                                  coronavirus, 7NEWS
## 43                                                                                                                                                                                                                                                                                                                                                      TrumpVirus, COVID19, StayHome, FlattenTheCurve
## 44                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 45                                                                                                                                                                                                                                                                                                                                                                        coronavirus, JoeExotic, zoom
## 46                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 47                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 48                                                                                                                                                                                                                                                                                                                                                                                         coronavirus
## 49                                                                                                                                                                                                                                                                                                                                                                                           COVID2019
## 50                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 51                                                                                                                                                                                                                                                                                                                                                                                         coronavirus
## 52                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 53                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 54                                                                                                                                                                                                                                                                                                                                                                                         Coronavirus
## 55                                                                                                                                                                                                                                                                                                                                                                        haiku, coronavirus, pandemic
## 56                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 57                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 58                                                                                                                                                                                                                                                                                                                                        AddictionTreatment, COVID, fightaddiction, addictionrecovery
## 59                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 60                                                                                                                                                                                                                                                                                                                                                                                             COVID19
## 61                                                                                                                                                                                                                                                                                                                                                                                         coronavirus
## 62                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 63                                                                                                                                                                                                                                                                                                                                                                                         coronavirus
## 64                                                                                                                                                                                                                                                                                                                                                                                               COVID
## 65                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 66                                                                                                                                                                                                                                                                                                                                                              maybenot, gross, publichealth, covid19
## 67                                                                                                                                                                                                                                                                addiction, alcoholism, recovery, RecoveryPosse, coronavirus, sober, sobriety, treatment, addictionrecovery, bipolar, coronapocolypse
## 68                                                                                                                                                                                                                                                                  RememberTheTime, impeached, Trump, USA, Coronavirus, HeLied, YouBeenConned, DrinkingTheKoolAid, TrumpLiesPeriod, WhenWordsAreEaten
## 69                                                                                                                                                                                                                                                                                                                                                                                   BREAKING, COVID19
## 70                                                                                                                                                                                                                                                                                                                                                 COVID19, CoronavirusSouthAfrica, COVID19SouthAfrica
## 71                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 72                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 73                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 74                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 75                                                                                                                                                                                                                                                                                                                                      coronaviruspalestine, coronavirus, endapartheid, endoccupation
## 76                                                                                                                                                                                                                                                                                                                                              EmergencyAlert, DPANow, CoronavirusOutbreak, COVID2019
## 77                                                                                                                                                                                                                                                                                                                                                                                 COVID19, pallicovid
## 78                                                                                                                                                                                                                                                                                                                                                                                  bread, coronavirus
## 79                                                                                                                                                                                                                                                                                                                                                                                         coronavirus
## 80                                                                                                                                                                                                                                                                                                                                                                                             COVID19
## 81                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 82                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 83                                                                                                                                                                                                                                                                                                                                                                      socent, covid19, SocentCovid19
## 84                                                                                                                                                                                                                                                                                                                                                          COVIDIDIOT, potus, trumpvirus, coronavirus
## 85                                                                                                                                                                                                                                                                                                                                                                                             covid19
## 86                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 87                                                                                                                                                                                                                                                                                                                                                                                         Coronavirus
## 88                                                                                                                                                                                                                                                                                                            HealthCareHeroes, COVID19, NYC, WeStayHereForYou, PleaseStayHomeForUs, ClapBecauseWeCare
## 89                                                                                                                                                                                                                                                                                                                                                              Coronavirus, investmentadviser, FormPF
## 90                                                                                                                                                                                                                                                                                                                                                                                     AskZee, COVID19
## 91                                                                                                                                                                                                                                                                                                                                           CovidNGR, StayAtHomeAndStaySafe, StaySafeNigeria, COVID19
## 92                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 93                                                                                                                                                                                                                                                                                                                                                                             DisneyPlus, coronavirus
## 94                                                                                                                                                                                                                                                                                                                                                             tcot, tlot, teaparty, MAGA, coronavirus
## 95                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 96                                                                                                                                                                                                                                                                                                                                                                                                  NA
## 97                                                                                                                                                                                                                                                                                  dadsinselfisolation, StayAtHome, COVID, COVID19, COVIDIDIOT, CoronaLockdown, CoronavirusOutbreak, covid19australia
## 98                                                                                                                                                                                                                                                                                                                                                     Myositis, inflammatorymyopathy, myositissupport
## 99                                                                                                                                                                                                                                                                                                                                                                                       COVID19, mftg
## 100                                                                                                                                                                                                                                                                                                                                                                                    COVID<U+30FC>19
## 101                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 102                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 103                                                                                                                                                                                                                                                                                                                                                   coronavirusinpakistan, CoronaLockdown, COVID2019
## 104                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 105                                                                                                                                                                                                                                                                                                                                                                        COVID19, ThePromisedSaviour
## 106                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 107                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 108                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 109                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 110                                                                                                                                                                                                                                                                                                                                                                                      Iran, COVID19
## 111                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 112                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 113                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 114                                                                                                                                                                                                                                                                                                                                                                                              COVID
## 115                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 116                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 117                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 118                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 119                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 120                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 121                                                                                                                                                                                                                                                                                                                                                                        COVID2019, StaySafeStayHome
## 122                                                                                                                                                                                                                                                                                                                                                                                            bbcnews
## 123                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 124                                                                                                                                                                                                                                                                                                                                                                         coronavirus, smallbusiness
## 125                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 126                                                                                                                                                                                                                                                                                                                                            COVID19, London, CoronavirusOubreak, CoronavirusOubreak
## 127                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 128                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 129                                                                                                                                                                                                                                                                                                                                                                                             oklaed
## 130                                                                                                                                                                                                                                                                                                                                                                  Gibraltar, COVID19, ClapForTheGHA
## 131                                                                                                                                                                                                                                                                                       DokuFest, COVID<U+30FC>19, QuarantineAndChill, OneFilmADayKeepsDoctorAway, DokuFest, SweetAndShortQuarantine
## 132                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 133                                                                                                                                                                                                                                                                                                                                                                                    US, coronavirus
## 134                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 135                                                                                                                                                                                                                                                                                                                                               COVID<U+30FC>19, StayHomeSaveLives, LetsFightCovid19
## 136                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 137                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 138                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 139                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 140                                                                                                                                                                                                                                                                                                                                                      HealthyatHome, WeAreGCconnectEd, TeamKentucky
## 141                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 142                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 143                                                                                                                                                                                                                                                                                                                                                                            COVID2019, selfemployed
## 144                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 145                                                                                                                                                                                                                                                                                                                                        ChineseVirus19, CoronavirusOubreak, IndiaBattlesCoronavirus
## 146                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 147                                                                                                                                                                                                                                                                                                                                                                         IndiaFightsCorona, COVID19
## 148                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 149                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 150                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 151                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 152                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 153                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 154                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 155                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 156                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 157                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 158                                                                                                                                                                                                                                                                                                                                                                                                ROC
## 159                                                                                                                                                                                                                                                                                                                                                    pandemic, encryption, privacy, infosec, COVID19
## 160                                                                                                                                                                                                                                                                                                                                                                                 hospitals, COVID19
## 161                                                                                                                                                                                                                                                                                                                                                           Blackpeople, CoronaLockdown, coronavirus
## 162                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 163                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 164                                                                                                                                                                                                                                                                                                                                                         covid_19, neworleans, mardigras, louisiana
## 165                                                                                                                                                                                                                                                                                                                            CivilWar, Trump, PuertoRico, Washington, Michigan, coronavirus, covid19
## 166                                                                                                                                                                                                                                                                                                                                                                            COVID19, InThisTogether
## 167                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 168                                                                                                                                                                                                                                                                                                                                                                                           COVID_19
## 169                                                                                                                                                                                                                                                                                                                               DonateKaroNa, Covid19, HopeNotOut, Stayhometosavelives, DonateKaroNa
## 170                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 171                                                                                                                                                                                                                                                                                                               wfm, coronavirus, COVID19, QuarantineLife, Quarantine, workingfromhome, workfromhome
## 172                                                                                                                                                                                                                                                                                                                                                       Darling, JaiHind, COVID2019, caronavirus2020
## 173                                                                                                                                                                                                                                                                                                                                                            StayHome, COVID2019, financialeducation
## 174                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 175                                                                                                                                                                                                                                                                                                                                                                               COVID19, coronavirus
## 176                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 177                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 178                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 179                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 180                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 181                                                                                                                                                                                                                                                                                                                                              PhysicalDistancingEqualsSocialResponsibility, COVID19
## 182                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 183                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 184                                                                                                                                                                                                                                                                                                                                                                                           Covid_19
## 185                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 186                                                                                                                                                                                                                                                                                                                                                StaySafeNigeria, COVID19, PresidentCovikk, TBJoshua
## 187                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 188                                                                                                                                                                                                                                                                                                                                                                        selfquarantine, coronavirus
## 189                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 190                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 191                                                                                                                                                                                                                                                                                                                                                                                wildlife, COVID2019
## 192                                                                                                                                                                                                                                                                                                                                                             ThankYouGovCuomo, COVID19, coronavirus
## 193                                                                                                                                                                                                                                                                                                                                                                             coronavirus, COVID19NC
## 194                                                                                                                                                                                                                                                                                                                                 CoronaLockdown, StarTrekPicard, COVID19, DeborahBirx, CoronaUpdate
## 195                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 196                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 197                                                                                                                                                                                                                                                                                                                                                                                    COVID<U+30FC>19
## 198                                                                                                                                                                                                                                                                                                                                                                                        CORONAVIRUS
## 199                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 200                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 201                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 202                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 203                                                                                                                                                                                                                                                                                                                                                                         supercomputing, washington
## 204                                                                                                                                                                                                                                                                                                                                         ransowmare, COVID, StayCyberFit, cybersecurity, healthcare
## 205                                                                                                                                                                                                                                                                                                                                                                                       Wrestlemania
## 206                                                                                                                                                                                                                                                                                                                                                                    coronavirus, longbeach, COVID19
## 207                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 208                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 209                                                                                                                                                                                                                                                                                                                                     COVID2019, LiberalHypocrisy, DemsDontCare, ChinaLiedPeopleDied
## 210                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 211                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 212                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 213                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 214                                                                                                                                                                                                                                                                                                                                                                             coronavirus, COVID2019
## 215                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 216                                                                                                                                                                                                                                                                                                                                                                   StimulusPackage2020, coronavirus
## 217                                                                                                                                                                                                                                                                                                                                                                               covid19, coronavirus
## 218                                                                                                                                                                                                                                                                                                                                                                    CubaSalvaVidas, COVID2019, Cuba
## 219                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 220                                                                                                                                                                                                                                                                                                                                                                         coronavirus, goaway, shhhh
## 221                                                                                                                                                                                                                                                                                                                                                                       COVID19Colorado, coronavirus
## 222                                                                                                                                                                                                                                                                                                                                                                                   COVID19, COVID19
## 223                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 224                                                                                                                                                                                                                                                                                                                                                                 COVID2019, trainwreck, teamdivorce
## 225                                                                                                                                                                                                                                                                                                                                                              attorneygeneral, coronavirus, covid19
## 226                                                                                                                                                                                                                                                                                                                                                                        SpreadCheerNotFear, COVID19
## 227                                                                                                                                                                                                                                                                                                                                                                            COVID19, CoronavirusUSA
## 228                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 229                                                                                                                                                                                                                                                                                                                                                                            COVID2019, PrayForWorld
## 230                                                                                                                                                                                                                                                                                                                                                       CoronavirusOutbreak, covid19, GoCorona, hope
## 231                                                                                                                                                                                                                                                                                                                                                                                        MassBailOut
## 232                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 233                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 234                                                                                                                                                                                                                                                                                                                                                                              StayHome, coronavirus
## 235                                                                                                                                                                                                                                                                                                                                                                               COVID19, CORONAVIRUS
## 236                                                                                                                                                                                                                                                                                                                                                                                       CoronaCrisis
## 237                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 238                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 239                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 240                                                                                                                                                                                                                                                                                                                                                                           coronavirus, NHSThankyou
## 241                                                                                                                                                                                                                                                                                                                                                                               coronavirus, COVID19
## 242                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 243                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 244                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 245                                                                                                                                                                                                                                                                                                                                                        SaveGazaFromCorona, COVID_19, Act4Palestine
## 246                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 247                                                                                                                                                                                                                                                                                                                                                                                  FakeNews, COVID19
## 248                                                                                                                                                                                                                                                                                                                                 COVID19, Covid_19, coronavirus, ResignTrump, Resign45, ResignBoris
## 249                                                                                                                                                                                                                                                                                                                                                                                    COVID<U+30FC>19
## 250                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 251                                                                                                                                                                                                                                                                                                                                                                           COVID<U+30FC>19, Lebanon
## 252                                                                                                                                                                                                                                                                                                                                                                                             c4news
## 253                                                                                                                                                                                                                                                                                                                                                                          QuarantineLife, COVID2019
## 254                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 255                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 256                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 257                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 258                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 259                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 260                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 261                                                                                                                                                                                                                                                                                                                                                                               COVID19, coronavirus
## 262                                                                                                                                                                                                                                                                                                                                                                                    PoliceBrutality
## 263                                                                                                                                                                                                                                                                                                                                                                                 COVID2019, CYPStNN
## 264                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 265                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 266                                                                                                                                                                                                                                                                                                                                                                                         Covid, GOP
## 267                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 268                                                                                                                                                                                                                                                                                                                                                                      coronavirus, Brunsco, COVID19
## 269                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 270                                                                                                                                                                                                                                                                                                                                                     imrankhanPTI, coronavirusinpakistan, COVID2019
## 271                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 272                                                                                                                                                                                                                                                                                                                                                    coronavirus, covid19, pandemic, internet, games
## 273                                                                                                                                                                                                                                                                                                                                                                                              IRCTC
## 274                                                                                                                                                                                                                                                                                                                                  POTUS, Trump, MSNBC, Resist, COVID19, CoronaVirusUpdate, LastWord
## 275                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 276                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 277                                                                                                                                                                                                                                                                                                                                                                            COVID2019, ChineseVirus
## 278                                                                                                                                                                                                                                                                                                                                                     Isolation, Coronavirus, COVID19, DomesticAbuse
## 279                                                                                                                                                                                                                                                                                                                                                                     Ramayan, COVID2019, ThaliBajao
## 280                                                                                                                                                                                                                                                                                                                                                     Mahyco, COVID19, CoronaVirus, SocialDistancing
## 281                                                                                                                                                                                                                                                                                                                                                                                        CNNTownHall
## 282                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 283                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 284                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 285                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 286                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 287                                                                                                                                                                                                                                                                                                                                                                                COVID19, TrumpVirus
## 288                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 289                                                                                                                                                                                                                                                                                                                           coronavirus, SharkTank, SmallBiz, SmallBizRelief, SmallBusiness, COVID19
## 290                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 291                                                                                                                                                                                                                                                                                                                                                        leadershipadvice, COVID2019, Startup_lawyer
## 292                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 293                                                                                                                                                                                                                                                                                                                                                                                 coronavirus, Trump
## 294                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 295                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 296                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 297                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 298                                                                                                                                                                                                                                                                                                                                         HamOnt, selfisolation, sociallydistant, Covid_19, StayHome
## 299                                                                                                                                                                                                                                                                                                                                                                              bloomerg, warroom2020
## 300                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 301                                                                                                                                                                                                                                                                                                                                                                                 wuflu, coronavirus
## 302                                                                                                                                                                                                                                                                                                                                                              US, coronavirus, cases, top, doubling
## 303                                                                                                                                                                                                                                                                                                                                    Trump, coronaviruspandemic, coronavirus, covid19, usa, congress
## 304                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 305                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 306                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 307                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 308                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 309                                                                                                                                                                                                                               DefenseProductionAct, COVID19, coronavirus, CoronavirusOutbreak, StayHome, WhiteHouseBriefing, TrumpPressConf, deadlinewh, MSNBC, TheBeat, CNN, FoxNews, cspan, OANN
## 310                                                                                                                                                                                                                                                                                                                                               clapforourcarers, thankyou, coronavirus, carers, nhs
## 311                                                                                                                                                                                                                                                                                                                                                           coronavirus, medicalpanel, streamthebern
## 312                                                                                                                                                                                                                                                                                                                                                                                            Covid19
## 313                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 314                                                                                                                                                                                                                                                                                                                                                                                      covid19, pwds
## 315                                                                                                                                                                                                                                                                                                                                                      FWICE, AmitabhBachchan, lockdown, coronavirus
## 316                                                                                                                                                                                                                                                                                                                                                                             Calfrac, COVID, abpoli
## 317                                                                                                                                                                                                                                                                                                                                                      coronavirus, doncaster, bassetlaw, mexborough
## 318                                                                                                                                                                                                                                                                                                                                                     Attention, COVID2019, liar, neverwas, notfunny
## 319                                                                                                                                                                                                                                                                                                                                                                               NHSheroes, COVID2019
## 320                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 321                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 322                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 323                                                                                                                                                                                                                                                                                                                                                                                            Covid19
## 324                                                                                                                                                                                                                                                   EuropeOnlinePharmacy, MarketResearch, MarketAnalysis, OnlinePharmacy, Telehealth, OnlinePharma, COVID19, Coronavirus, ZurRoseGroup, SHOPAPOTHEKE
## 325                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 326                                                                                                                                                                                                                                                                                                                                   COVID19, TAAARKDATINNG, SKINTUUTEEET, BIGUYAAHCHESST, THATMOMENT
## 327                                                                                                                                                                                                                                                                                                                                  NHS, Grateful, ClapForCarers, Britain, COVID2019, CommunitySpirit
## 328                                                                                                                                                                                                                                                                                                                                                                                            Covid19
## 329                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 330                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 331                                                                                                                                                                                                                                                                                                                                                                                  COVID19, StayHome
## 332                                                                                                                                                                                                                                                                                                                                                                                           TEARtalk
## 333                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 334                                                                                                                                                                                                                                                                                                                                                                               COVID19, CripTheVote
## 335                                                                                                                                                                                                                                                                                                                                                                    winning, COVID19, TrumpPandemic
## 336                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 337                                                                                                                                                                                                                                                                                                                              MAGA, COVID19, pandemic, PeopleOverProfit, TOBT, UsNotMe, FeelTheBern
## 338                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 339                                                                                                                                                                                                                                                                                                                                                     coronavirus, CoronaLockdown, COVID2019, Africa
## 340                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 341                                                                                                                                                                                                                                                                                                                                                                         StayHomeSaveLives, COVID19
## 342                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 343                                                                                                                                                                                                                                                                                                                                                                         TMCTalks, SelfReg, COVID19
## 344                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 345                                                                                                                                                                                                                                                                                                                                                        Virology, microbiologycoronavirus, ChinaHow
## 346                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 347                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 348                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 349                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 350                                                                                                                                                                                                                                                                                                                                                                               COVID19, coronavirus
## 351                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 352                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 353                                                                                                                                                                                                                                                                                                                               CoronaLockdown, coronavirus, CoronaUpdate, COVID19, COVID, COVID2019
## 354                                                                                                                                                                                                                                                                                                                                                                                      coronavirusuk
## 355                                                                                                                                                                                                                                                                                                                                                                                    Boeing, COVID19
## 356                                                                                                                                                                                                                                                                                                                                                                 COVID_19, COVID19, COVID<U+30FC>19
## 357                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 358                                                                                                                                                                                                                                                             coronavirus, covid, dowjones, stockmarket, bailout, socialdistancing, quarantine, isolation, editorialcartoon, cintiq, clipstudiopaint
## 359                                                                                                                                                                                                                                                                                                                                                                                  Zimbabwe, COVID19
## 360                                                                                                                                                                                                                                                                                                                                                                    coronavirus, COVID19, SafeHands
## 361                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 362                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 363                                                                                                                                                                                                                                                                                                                                                                    coronavirus, elderly, scamalert
## 364                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 365                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 366                                                                                                                                                                                                                                                                                                                                               usaCoronavirus, COVID2019, FelizJueves, USA, America
## 367                                                                                                                                                                                                                                                                                                                                                                               PastorChris, COVID19
## 368                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 369                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 370                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 371                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 372                                                                                                                                                                                                                                                                                                                                      clapforourcarers, NHSheroes, COVID2019, NotAllHeroesWearCapes
## 373                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 374                                                                                                                                                                                                                                                                                                                                                                         coronavirus, SelfIsolation
## 375                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 376                                                                                                                                                                                                                                                                                                                                                               StaySafeNigeria, StayAtHome, COVID19
## 377                                                                                                                                                                                                                                                                                                                                bikham, onlinegaming, facts, steam, technology, covid19, quarantine
## 378                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 379                                                                                                                                                                                                                                                                                                                                                                                            Covid19
## 380                                                                                                                                                                                                                                                                                                                                                                                             VERIFY
## 381                                                                                                                                                                                                                                                                                                                                                                            TodayInHistory, COVID19
## 382                                                                                                                                                                                                                                                                                                                                                                                        DataScience
## 383                                                                                                                                                                                                                                                                                                                                                                          CubaVScoronavirUSblockade
## 384                                                                                                                                                                                                                                                                                                                                   StayHomeStaySafe, COVID19, Ramayana, IndiaFightsCorona, StayHome
## 385                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 386                                                                                                                                                                                                                                                                                                       CoronaLockdown, coronavirus, lockdown, SaturdayMorning, SaturdayThoughts, SaturdayMotivation
## 387                                                                                                                                                                                                                                                                                                                                                                   TrumpPressConf, Covid_19, auspol
## 388                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 389                                                                                                                                                                                                                                                                                                                              SelfIsolation, IsolationLife, lockdown, COVID2019, afterthequarantine
## 390                                                                                                                                                                                                        GoodMorning, FridayMotivation, FridayVibes, FridayMorning, FridayFun, friyay, FridayWin, StayHome, COVID19, hometasking, amazon, shopping, CatsOfTwitter, kitty, cats, pets, love, followme
## 391                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 392                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 393                                                                                                                                                                                                                                                                                                                                                                       BREAKING, WashingtonDC, wlwt
## 394                                                                                                                                                                                                                                                                                                                                                                          COVID19, SocialDistancing
## 395                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 396                                                                                                                                                                                                                                                                                                                                                                                        ImamOfPeace
## 397                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 398                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 399                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 400                                                                                                                                                                                                                                                           SouthAfrica, Day1, StayHomeSA, CoronavirusSouthAfrica, CoronavirusInSouthAfrica, COVID19SouthAfrica, 21DayLockdown, Coronavirus, COVID19
## 401                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 402                                                                                                                                                                                                                                                                                                                                 virtualvolunteer, volunteers, EmotionalSupport, isolation, COVID19
## 403                                                                                                                                                                                                                                                                                                  COVID2019Ghana, StopGhanaCard, COVID19, coronavirus, CoronaLockdown, StayAtHomeChallenge, Eastern
## 404                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 405                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 406                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 407                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 408                                                                                                                                                                                                                                                                                                                                                                               Boulder, coronavirus
## 409                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 410                                                                                                                                                                                                                                                                                                                                                             coronavirus, COVID, COVID2019, Montana
## 411                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 412                                                                                                                                                                                                                                                                                                                                             Covid19, clockhousenursery, enfield, garden, gardening
## 413                                                                                                                                                                                                                                                                                                                                                                               COVID19, makeukgreat
## 414                                                                                                                                                                                                                                               coronavirus, covid19, mentalhealth, resilience, yougotthis, depression, BPD, anxiety, mentalillness, stayhome, quarantine, chatowl, therapist, inspo
## 415                                                                                                                                                                                                                                                                                                                                                                                        CNNTownHall
## 416                                                                                                                                                                                                                                                                                                                                                             AdvancingCommunities, Podcast, COVID19
## 417                                                                                                                                                                                                                                                                                          nationalscribbleday, ThanksHealthHeroes, nursesareheroes, CoronaLockdown, stayhome, coronavirus, scribble
## 418                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 419                                                                                                                                                                                                                                                                                                                                                            BREAKING, COVID19, coronavirus, fox5atl
## 420                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 421                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 422                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 423                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 424                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 425                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 426                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 427                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 428                                                                                                                                                                                                                                                                                                                                                                       realestate, toronto, covid19
## 429                                                                                                                                                                                                                                                                                                                                                         COVID19Vancouver, COVID19BC, BC, Vancouver
## 430                                                                                                                                                                                                                                                                                                                                                                                     finance, money
## 431                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 432                                                                                                                                                                                                                                                                                                                                              restrictions, coronavirus, pandemic, Alrosa, diamonds
## 433                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 434                                                                                                                                                                                                                                                                                                                          Kimmel, Trump, Coronavirus, SmartNews, KAG, MAGA, FoxNews, TrumpIsAnIdiot
## 435                                                                                                                                                                                                                                                                                                                                                                               coronavirus, KNXHero
## 436                                                                                                                                                                                                                                                                                                                                                                     Covid19, NHS, clapforourcarers
## 437                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 438                                                                                                                                                                                                                                                                                                                                                                               saudiarabia, COVID19
## 439                                                                                                                                                                                                                                                                                                                                                                     coronavirus, covid19, pandemic
## 440                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 441                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 442                                                                                                                                                                                                                                                                                                                                Coronavirus, CoronavirusDelaware, COVID19, deCOVID, COVID19Delaware
## 443                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 444                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 445                                                                                                                                                                                                                                                                                                                                                                          coronavirus, ChineseVirus
## 446                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 447                                                                                                                                                                                                                                                                                                                                                                     kitboga, coronavirus, scammers
## 448                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 449                                                                                                                                                                                                                                                                                                                                                                 kauaimayor, hawaii, COVID19, kauai
## 450                                                                                                                                                                                                                                                                                                                                                                                         StayAtHome
## 451                                                                                                                                                                                                                                                                                                                                                                                   coronavirus, PPE
## 452                                                                                                                                                                                                                                                                                                      rcbquotes, changemanagement, lifeinthetimeofcovid, COVID2019, coronavirusindia, DataAnalytics
## 453                                                                                                                                                                                                                                                                                                                                                                                       AirtelThanks
## 454                                                                                                                                                                                                                                                                                                                                                                                    UPDATE, COVID19
## 455                                                                                                                                                                                                                                                                                                                     tariffs, China, CNN, MSNBC, coronavirus, CoronavirusPandemic, SocialDistancing
## 456                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 457                                                                                                                                                                                                                                                                                                                                                  PopeFrancis, UrbietOrbi, CatholicTwitter, COVID19
## 458                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 459                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 460                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 461                                                                                                                                                                                                                                              usa, uk, asia, china, africa, america, americas, oceania, australia, be, de, nl, rutte3, rivm, ggd, spain, france, italy, portugal, covid19, everyone
## 462                                                                                                                                                                                                                                               Coronavirus, Pandemic, NewYorkCity, NewYork, DonaldTrump, TrumpKills, Federalpolicy, healthcare, Federalintervention, unifiedationalresponse, Andrew
## 463                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 464                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 465                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 466                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 467                                                                                                                                                                                                                                                                                                                                                       Sharemarket, Nifty, RBI, CoronavirusLockdown
## 468                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 469                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 470                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 471                                                                                                                                                                                                                                                                                                                                                                                      login, JoeDay
## 472                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 473                                                                                                                                                                                                                                                                                                                                                                        coronavirus, CoronaPandemic
## 474                                                                                                                                                                                                                                                                                                                                                                cybersecurity, coronavirus, covid19
## 475                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 476                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 477                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 478                                                                                                                                                                                                                                                                                                                                                                                           Covid_19
## 479                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 480                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 481                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 482                                                                                                                                                                                                                                                                                                                                                CoronaVirus, StayAtHomeAndStaySafe, StaySafeNigeria
## 483                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 484                                                                                                                                                                                                                                                                                                                                                            StayHomeSaveLives, coronavirus, COVID19
## 485  tiktok, anime, otaku, artist, art, <U+0641><U+0639><U+0627><U+0644><U+064A><U+0627><U+062A>_<U+0627><U+0644><U+062D><U+062C><U+0631>_<U+0627><U+0644><U+0645><U+0646><U+0632><U+0644><U+064A>, StayHome, QuarantineLife, <U+0631><U+0633><U+0645><U+064A>, followforfollow, follow, commission, commissions, artstyle, COVID2019, tiktokchallenge, AnimeArt, love, pastel, ocs, originalcharacter
## 486                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 487                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 488                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 489                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 490                                                                                                                                                                                                                                                                                                               fit, active, coronavirus, SelfIsolation, COVID, FlattenTheCurve, CoronavirusOutbreak
## 491                                                                                                                                                                                                                                                                                                                                                              Coronavirus, sanitizer, Nature, kunar
## 492                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 493                                                                                                                                                                                                                                                                                                                                                      Workingfromhome, wfh, mentalhealth, wellbeing
## 494                                                                                                                                                                                                                                                                                                                                                                                              7NEWS
## 495                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 496                                                                                                                                                                                                                                                                                                                                                 CoronaUpdate, COVID19, Covid_19, TestingForCovid19
## 497                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 498                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 499                                                                                                                                                                                                                                                                                                                                                        UK, coronavirus, MuslimHandsUK, SavingLives
## 500                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 501                                                                                                                                                                                                                                                                                                                                                                               Coronavirus, COVID19
## 502                                                                                                                                                                                                                                                                                                                                                                       COVID2019, IndiaFightsCorona
## 503                                                                                                                                                                                                                                                                                                                                                                         Niantic, EastLyme, COVID19
## 504                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 505                                                                                                                                                                                                                                                                                                                                                                                           Breaking
## 506                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 507                                                                                                                                                                                                                                                                                                                       GOPSlushFund, CoronavirusOutbreak, TrumpLiesAmericansDie, COVID19, DoYourJob
## 508                                                                                                                                                                                                                                                                                                                                                                                          SVEs, G20
## 509                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 510                                                                                                                                                                                                                                                                                                      HongKong, COVID19, WuhanPneumonia, WuhanCoronavirus, WuhanSARS, 2019nCoV, CoronavirusOutbreak
## 511                                                                                                                                                                                                                                                                                                                                                                          stayhomestaysafe, covid19
## 512                                                                                                                                                                                                                                                                                                                                COVID19, CoronaLockdown, COVID, CoronaVillains, LockdownWithoutPlan
## 513                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 514                                                                                                                                                                                                                                                                                                                                                     coronavirus, UnitedKingdom, covid19UK, UK19CVD
## 515                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 516                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 517                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 518                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 519                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 520                                                                                                                                                                                                                                                                                                                                            COVID2019, ImNotBuyingItForOneMinute, TrumpVirusCoverup
## 521                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 522                                                                                                                                                                                                                                                                                                                                                                           SmallBusinesses, COVID19
## 523                                                                                                                                                                                                                                                                                                                                                              COVID19, GaribiHaatov, CoronaLockdown
## 524                                                                                                                                                                                                                                                                                                                                                                                     COVID19, Trump
## 525                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 526                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 527                                                                                                                                                                                                                                                                                                                                                                                COVID19, StayAtHome
## 528                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 529                                                                                                                                                                                                                                                                                                                                                                                        CoronaVirus
## 530                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 531                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 532                                                                                                                                                                                                                                                                                                                                                  covid19, 3Dprinting, coronavirushelp, PPEshortage
## 533                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 534                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 535                                                                                                                                                                           JohnFamousArt, Netflix, TigerKing, JoeExotic, BigTiger, Tigers, Lions, NetflixAndChill, netflixandquarantine, quarantine, covid_19, CoronaVirus, StayHome, tigerkingfanart, CountryMusicStar, CountryMusic, Zoo, Redneck
## 536                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 537                                                                                                                                                                                                                                                                                                                                                             DStv, CoronavirusSouthAfrica, Covid_19
## 538                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 539                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 540                                                                                                                                                                                                                                                  Jaipur, RajasthanLockDown, CoronaLockdown, Coronavirus, Stage3, COVID19, coronavirusindia, CoronavirusPandemic, CoronavirusOutbreak, CoronaUpdate
## 541                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 542                                                                                                                                                                                                                                                                                                                                                    PPE, COVID19, covid19UK, Masks4All, PPEshortage
## 543                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 544                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 545                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 546                                                                                                                                                                                                                                                                                                                                                                                ventilator, COVID19
## 547                                                                                                                                                                                                                                                                                                                                    coronavirus, CoronavirusNewYork, CoronaVirusNYC, CoronaLockdown
## 548                                                                                                                                                                                                                                                                                                                                                               NRTnews, WorldBank, IMF, Coronavirus
## 549                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 550                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 551                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 552                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 553                                                                                                                                                                                                                                                                                                                                                                                    Barrie, COVID19
## 554                                                                                                                                                                                                                                                                                                                                                                         COVID19, JoeBiden, TeamJoe
## 555                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 556                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 557                                                                                                                                                                                                                                                                                                                                                                                       AirtelThanks
## 558                                                                                                                                                                                                                                                                                                                                                                            PMReliefFund, COVID2019
## 559                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 560                                                                                                                                                                                                                                                                                                                                            COVID19, CoronaOutbreak, TrumpVirusCoverup, TrumpPlague
## 561                                                                                                                                                                                                                                                                                                                                                    Trump, Coronavirus, Americans, UK, BorisJohnson
## 562                                                                                                                                                                                                                                                                                                                                                                        COVID2019, ThursdayThoughts
## 563                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 564                                                                                                                                                                                                                                                                                                                                                                    COVID19, localgov, OklaStayHoma
## 565                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 566                                                                                                                                                                                                                                                     offwork, corona, coronvirus, covid_19, covıd19, quarantine, home, projects, parenting, motherhood, parenthood, stayhome, survive, stayhealthy
## 567                                                                                                                                                                                                                                                                                                                                                   StayAwareStaySafe, CoronaVirus, FridayMotivation
## 568                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 569                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 570                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 571                                                                                                                                                                                                                                                                                                                                                                              Istanbul, coronavirus
## 572                                                                                                                                                                                                                                                                                                                                                                  COVID19, 1dollarequals1faceshield
## 573                                                                                                                                                                                                                                                                                                                                                                Covid_19, CoronaLockdown, Donations
## 574                                                                                                                                                                                                                                                                                                                                                                        wagesubsidynow, coronavirus
## 575                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 576                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 577                                                                                                                                                                                                                                                                                                                                                                             COVID19, TogetherWeCan
## 578                                                                                                                                                                                                                                                                                                                                                                                 covid19, savelives
## 579                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 580                                                                                                                                                                                                                                                                                                                                                                            Quarantine, coronavirus
## 581                                                                                                                                                                                                                                                                                                                                                      coronavirus, covid19, quarantine, PragerFORCE
## 582                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 583                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 584                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 585                                                                                                                                                                                                                                                                                                                                                            letsalldoourpart, COVID2019AU, agchatoz
## 586                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 587                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 588                                                                                                                                                                                                                                                                                                                                                        Vancouver, Roundhouse, CoalHarbour, COVID19
## 589                                                                                                                                                                                                                                                                                                                                                             Coronavirus, ChineseVirus19, COVID2019
## 590                                                                                                                                                                                                                                                                                                                                                              Coronavirus, TrumpLies, TrumpPandemic
## 591                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 592                                                                                                                                                                                                                                                                                                                           Frasier, Covid19, californialockdown, bingemywaythrucovid, Imstayinghome
## 593                                                                                                                                                                                                                                                                                                                                               Coronavirus, Italy, COVID19, COVID2019, coronaitalia
## 594                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 595                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 596                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 597                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 598                                                                                                                                                                                                                                                                                                                                                            COVIDWATCH, COVID19, PhysicalDistancing
## 599                                                                                                                                                                                                                                                                              WeSelNwDreams, Bhhsnwre, Bhsnwrefw, Covid19, StayAtHome, DoYourPart, StayHealthy, StaySafe, WashYourHands, Washington
## 600                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 601                                                                                                                                                                                                                                                                                                                                                                         insights, COVID19, MRX, MR
## 602                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 603                                                                                                                                                                                                                                                               CoronaLockdown, coronavirus, CoronaUpdate, COVID19, COVID2019, Brexit, BrexitBeforeBreathing, BorisJohnson, ToriesFault, BorisResign
## 604                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 605                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 606                                                                                                                                                                                                                                                                        coronavirus, ceilingfansale, homedecor, CeilingFans, design, TableFans, interior, PedestalFans, wallfans, ExhaustFans, Cool
## 607                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 608                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 609                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 610                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 611                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 612                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 613                                                                                                                                                                                                                                                                                                                                                                               COVID19, coronavirus
## 614                                                                                                                                                                                                                                                                                                                                                                                    Canada, Cdnpoli
## 615                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 616                                                                                                                                                                                                                                                                                                                                                 ShamSenateTrial, WeWillRememberInNovember, COVID19
## 617                                                                                                                                                                                                                                                                                                                                                                         COVID19, StayHomeSaveLives
## 618                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 619                                                                                                                                                                                                                                                                                                                                                  Copyright, OnlineLearning, infographic, Covid2019
## 620                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 621                                                                                                                                                                                                                                                                                                        Vaccine, Immunology, Helsinki, Finland, Immunity, Childhealth, Infection, Coronavirus, Care
## 622                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 623                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 624                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 625                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 626                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 627                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 628                                                                                                                                                                                                                                                                                                                                                                      ClapForOurCarers, Coronavirus
## 629                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 630                                                                                                                                                                                                                                                                                         anxiety, christianity, coronavirus, economy, fear, god, health, jesus, sickness, uncertainty, virus, worry
## 631                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 632                                                                                                                                                                                                                                                                                                                                                          ChooseHope, coronavirus, ProLife, COVID19
## 633                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 634                                                                                                                                                                                                                                                                                                              drcatherinemotherway, nobull, Social_Distancing, washyourhands, COVID19, LateLateShow
## 635                                                                                                                                                                                                                                                                                                                                                         socialdistancing, workingfromhome, covid19
## 636                                                                                                                                                                                                                                                                                                                                                                                        BobbyNewman
## 637                                                                                                                                                                                                                                                                                                                  China, CoronaVillains, LockdownWithoutPlan, ChineseVirus19, WuhanVirus, COVID2019
## 638                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 639                                                                                                                                                                                                                                                                                        COVID19, ContainCOVIDNotPeople, AnswerTheCall, LetUsTalk, abolitionNOW, FreeThemAll4PublicHealth, LetThemGo
## 640                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 641                                                                                                                                                                                                                                                                                                                                                                      ML, AI, Analytics, Automation
## 642                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 643                                                                                                                                                                                                                                                                                                                                                                                 quickcast, COVID19
## 644                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 645                                                                                                                                                                                                                                                                                                                                                                          SARSCoV2, COVID19, Sweden
## 646                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 647                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 648                                                                                                                                                                                                                                                                                                                                                  socialdistancing, COVID2019, ParentingInAPandemic
## 649                                                                                                                                                                                                                                                                                                                                         CARESAct, stimulusbill, coronavirus, COVID19, businesshelp
## 650                                                                                                                                                                                                                                                                                                                                   COVID19, crochetpatterns, Etsy, crochet, pandemic, SmallBusiness
## 651                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 652                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 653                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 654                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 655                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 656                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 657                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 658                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 659                                                                                                                                                                                                                                                                                                                                                                                       AirtelThanks
## 660                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 661                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 662                                                                                                                                                                                                                                                                                                                                                             mentalhealthsupport, staysafe, COVID19
## 663                                                                                                                                                                                                                                                                                                                                                          TheBronx, COVID2019, BuildingABetterBronx
## 664                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 665                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 666                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 667                                                                                                                                                                                                                                                                                                                                                 CoronavirusOubreak, China, COVID19, ChineseVirus19
## 668                                                                                                                                                                                                                                                                                                                                                                                Lockdown, COVID2019
## 669                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 670                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 671                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 672                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 673                                                                                                                                                                                                                                                                                                                                                                                 coronavirus, MOGOV
## 674                                                                                                                                                                                                                                                                                                                                                            airtravel, stayathome, besafe, Covid_19
## 675                                                                                                                                                                                                                                                                                                                                                                                        CNNTownHall
## 676                                                                                                                                                                                                                                                                                                                                                      COVID, data, organ, transplantation, donation
## 677                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 678                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 679                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 680                                                                                                                                                                                                                                                                                                                                                                                   BREAKING, kwch12
## 681                                                                                                                                                                                                                                                                                                                                                                     COVID2019, CoronavirusOutbreak
## 682                                                                                                                                                                                                                                                                                                                                                                     covid19, pandemic, coronavirus
## 683                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 684                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 685                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 686                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 687                                                                                                                                                                                                                                                                                                                                                        steroids, boxing, MENTALHEALTH, coronavirus
## 688                                                                                                                                                                                                                                                                                                                                                            Lockdown, COVID19, movementcontrolorder
## 689                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 690                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 691                                                                                                                                                                                                                                                                                                                                                                       covid19, chinaliespeopledies
## 692                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 693                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 694                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 695                                                                                                                                                                                                                                                                                                                                                                   MaximumPressure, nowruz, covid19
## 696                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 697                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 698                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 699                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 700                                                                                                                                                                                                                                                                                                                                                                             COVID19, SAheapsunfair
## 701                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 702                                                                                                                                                                                                                                                                                                                                                                            Covid_19, ACNH, Netflix
## 703                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 704                                                                                                                                                                                                                                                                                                                                                                      CoronavirusOubreak, NotEaster
## 705                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 706                                                                                                                                                                                                                        sixfeet, immunesystem, boostingimmunity, SocialDistancing, QuarentineLife, Prevention, StayYourAssAtHome, BeSmart, StayHealthy, Coronavirus, Covid19, GoVegan, GoPlantBased
## 707                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 708                                                                                                                                                                                                                                                                                                                   COVID19, StaySafe, StayHome, StayHealthy, StayHealthyEveryone, KeepOthersSafeToo
## 709                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 710                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 711                                                                                                                                                                                                                                                                                                                                                                              suicides, coronavirus
## 712                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 713                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 714                                                                                                                                                                                                                                                                                                                                                               coronavirus, justforfun, inspiration
## 715                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 716                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 717                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 718                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 719                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 720                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 721                                                                                                                                                                                                                                                                                                                                                  COVID19, Eugenicist, Vaccines, AIDS, AmazingPolly
## 722                                                                                                                                                                                                                                                                                                                                                                           Trump, ARod, CoronaVirus
## 723                                                                                                                                                                                                                                                                                                                                                                                 coronavirus, 7NEWS
## 724                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 725                                                                                                                                                                                                                                                                                                                                                                                            infoviz
## 726                                                                                                                                                                                                                                                                                                                                                            remoteworking, homeworking, coronavirus
## 727                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 728                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 729                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 730                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 731                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 732                                                                                                                                                                                                                                                                                                                                                                                        CoronaVirus
## 733                                                                                                                                                                                                                                                                                                                                                      students, coronavirus, StudentLoan, education
## 734                                                                                                                                                                                                                                                                                                                                                            COVID19, CoronavirusPandemic, COVID2019
## 735                                                                                                                                                                                                                                                                                                                                                                                   dci2020, marchon
## 736                                                                                                                                                                                                                                                                                                                                            schoolleadership, covid19, coronavirus, blendedlearning
## 737                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 738                                                                                                                                                                                                                                                                                                                                                        SaveGazaFromCorona, COVID_19, Act4Palestine
## 739                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 740                                                                                                                                                                                                                                                                                                                                                                        BC, Federal, COVID, Trudeau
## 741                                                                                                                                                                                                                                                                                                                                                                                            VanLife
## 742                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 743                                                                                                                                                                                                                                                                                                                                                                                           Covid_19
## 744                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 745                                                                                                                                                                                                                                                                                                                                                                                   COVID19, govtech
## 746                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 747                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 748                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 749                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 750                                                                                                                                                                                                                                                                                                                                                                 WNY, WNY, COVID19, stuckinmalaysia
## 751                                                                                                                                                                                                                                                                                               ClimateChange, deficit, environmental, regulations, energy, FreePress, coronavirus, ThursdayThoughts
## 752                                                                                                                                                                                                                                                                                                                                                        coronavirus, Italy, CoronaUpdate, COVID2019
## 753                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 754                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 755                                                                                                                                                                                                                                                                                                                                                                                        COVID19, EU
## 756                                                                                                                                                                                                                                                                                                                                                                                     CapitalReports
## 757                                                                                                                                                                                                                                                                                                                                                             CoronavirusUSA, COVID2019, Coronavid19
## 758                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 759                                                                                                                                                                                                                                                                                                                                                              ChineseVirus, COVID2019, CoronaUpdate
## 760                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 761                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 762                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 763                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 764                                                                                                                                                                                                                                                                                                                                                                              pandemic, coronavirus
## 765                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 766                                                                                                                                                                                                                       Kochi, Bijimol, Keralitewoman, Dubai, virus, VirusChino, nCoV19, ChinaVirus, WuhanCoronavius, lockdown, StayHome, Social_Distancing, CoronavirusPandemic, COVID2019, COVID19
## 767                                                                                                                                                                                                                                                                                                                                                                                        CORONAVIRUS
## 768                                                                                                                                                                                                                                                                                                                                                                                        TreasureCRA
## 769                                                                                                                                                                                                                                                                                                                                                               coronavirus, CORVID19, PrinceCharles
## 770                                                                                                                                                                                                                                                                                                                                              anime, animationlockdown, movies, AnimeArt, COVID2019
## 771                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 772                                                                                                                                                                                                                                                                                                                                        COVID19, COVID19ireland, SocialDistanacing, FlattenTheCurve
## 773                                                                                                                                                                                                                                                                                                                                                          COVID19, coronavirus, MiamiBaby, MiamiMom
## 774                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 775                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 776                                                                                                                                                                                                                                                                                                                                                                 PrayTogether, PopeFrancis, COVID19
## 777                                                                                                                                                                                                                                                                                                                                                                         fact, coronavirus, COVID19
## 778                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 779                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 780                                                                                                                                                                                                                                                                                                                                                           Covid_19, GarantePrivacy, dataprotection
## 781                                                                                                                                                                                                                                                                                                                                      lockdown21days, covid_19, day2, staysafe, stayhome, bigbuddah
## 782                                                                                                                                                                                                                                                                                                                                                                           WuhanMarket, Coronavirus
## 783                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 784                                                                                                                                                                                                                                                                                                                                                                               COVID19, coronavirus
## 785                                                                                                                                                                                                                                                                                                                                                                                        SPAinspires
## 786                                                                                                                                                                                                                                                                                                                                                                          ThankYouHealthCareWorkers
## 787                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 788                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 789                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 790                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 791                                                                                                                                                                                                                                                                                                                                                                                        CurfewKenya
## 792                                                                                                                                                                                                                                                                                                                                                                               coronavirus, COVID19
## 793                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 794                                                                                                                                                                                                                                                                                                                                                                              COVID19, RareDiseases
## 795                                                                                                                                                                                                                                                                                                                                                                      cdnpoli, covid19, coronavirus
## 796                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 797                                                                                                                                                                                                                                                                                                                                               COVID19, SocialDistanacing, CoronaLockdown, StayHome
## 798                                                                                                                                                                                                                                                                                                                                                                             trump, COVID<U+30FC>19
## 799                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 800                                                                                                                                                                                                                                                                                                                                                                          IdiotInChief, Coronavirus
## 801                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 802                                                                                                                                                                                                                                                                                                                                                                           eWBSS, COVID19, StayHome
## 803                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 804                                                                                                                                                                                                                                                                                                                                                         SouthKorea, CoronaVirus, SocialDistanacing
## 805                                                                                                                                                                                                                                                                                                                                                             Togetherwedeliver, COVID19, Covid19usa
## 806                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 807                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 808                                                                                                                                                                                                                                                                                                                                                                            StayAtHomeOhio, COVID19
## 809                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 810                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 811                                                                                                                                                                                                                                                                                                                                                Kentucky, Covid19, KentuckyStrong, KentuckyTogether
## 812                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 813                                                                                                                                                                                                                                                                                                                                                                                          MAGAvirus
## 814                                                                                                                                                                                                                                                                                                                                                                                Coronavirus, Maddow
## 815                                                                                                                                                                                                                                                                                                                                                        Coronavirus, CONVID19, CoronaVirusInNigeria
## 816                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 817                                                                                                                                                                                                                                                                                  COVID<U+30FC>19, CovidNGR, ZeroHunger, foodsecurity, FarmLab2020, ABetterNigeria, StayHomeSaveLives, Agribusiness
## 818                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 819                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 820                                                                                                                                                                                                                                                                                                                                                      COVID2019, CoronaVillains, TrumpLiesPeopleDie
## 821                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 822                                                                                                                                                                                                                                                                                                                                                         Bedford, businesssupport, grant, COVID2019
## 823                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 824                                                                                                                                                                                                                                                                                                                                                                 facemasks, coronavirus, Covid19usa
## 825                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 826                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 827                                                                                                                                                                                                                                                                                                                                                              COVID2019, 25thAmendmentNow, StayHome
## 828                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 829                                                                                                                                                                                                                                                                                                                                                               TwitchStreamer, Coronavirus, kitboga
## 830                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 831                                                                                                                                                                                                                       covid, covid19india, covidsafety, safeplaces, homesafe, kitchen, window, studyroom, livingroom, kidsroom, safeindia, covidvaccine, safefuture, covidresponsibility, humanity
## 832                                                                                                                                                                                                                                                                                                                                                                                      Neoliberalism
## 833                                                                                                                                                                                                                                                                                                                                                                                            covid19
## 834                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 835                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 836                                                                                                                                                                                                                                                                                                                   COVID19, CoronaLockdown, coronavirus, CoronavirusOutbreak, StayAtHomeAndStaySafe
## 837                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 838                                                                                                                                                                                                                                                                                                                               CoronaLockdown, LockdownWithoutPlan, COVID19, Coronavirus, USCOVID19
## 839                                                                                                                                                                                                                                                                                                                                                                           win, quarantine, covid19
## 840                                                                                                                                                                                                                                                                                                                                                                                    StocktonUStrong
## 841                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 842                                                                                                                                                                                                                                                                                                                                                             Epidemic, CoronaVirus, COVID19, Mumbai
## 843                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 844                                                                                                                                                                                                                                                                                                                                                       FlattenTheCurve, PhysicalDistancing, COVID19
## 845                                                                                                                                                                                                                                                                                                                                                          COVID2019, CoronavirusOubreak, Quarantine
## 846                                                                                                                                                                                                                                                                                                                                                         COVID19, PresidentTrump, StayHomeSaveLives
## 847                                                                                                                                                                                                                                                                                                                                                                   ncpol, NCpolitics, northcarolina
## 848                                                                                                                                                                                                                                                                                                                                                                            COVID19, COVID19ireland
## 849                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 850                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 851                                                                                                                                                                                                                                                                                                                                                               beauty, covid_19, confinement, day15
## 852                                                                                                                                                                                                                                                                                                                                                                                       COVID19, Y2K
## 853                                                                                                                                                                                                                                                                                                                                                                                 coronavirus, covid
## 854                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 855                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 856                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 857                                                                                                                                                                                                                                                                                                                                                                           COVID19, brandexperience
## 858                                                                                                                                                                                                                                                                                                                                              CoronavirusUSA, COVID2019, COVID, CoronavirusPandemic
## 859                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 860                                                                                                                                                                                                                                                                                                                                                                                         firesafety
## 861                                                                                                                                                                                                                                                                                                                                                                                                 YR
## 862                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 863                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 864                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 865                                                                                                                                                                                                                                                                                                                                           WesternUStrong, abc7eyewitness, WesternUWay, Coronavirus
## 866                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 867                                                                                                                                                                                                                                                                                                                                                    ThankYouNHS, COVID<U+30FC>19, StayHomeSaveLives
## 868                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 869                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 870                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 871                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 872                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 873                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 874                                                                                                                                                                                                                                                                                                                                                                                   COVID2019, Kenya
## 875                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 876                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 877                                                                                                                                                                                                                                                                                                                                                                            ScienceFight, COVID2019
## 878                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 879                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 880                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 881                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 882                                                                                                                                                                                                                                                                                                                                                                              COVID19, PapersPlease
## 883                                                                                                                                                                                                                                                                                                                                               coronavirus, CoronaVirusUpdates, CoronavirusPandemic
## 884                                                                                                                                                                                                                                                                                                                                                                               GCCMythBusters, govt
## 885                                                                                                                                                                                                                                                                                                                                        FasadChaudhry, CoronaUpdate, coronavirusinpakistan, COVID19
## 886                                                                                                                                                                                                                                                                                                                                                                              homeschool, COVID2019
## 887                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 888                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 889                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 890                                                                                                                                                                                                                                                                                                                                                        medicalscientists, COVID19, Covid_19ireland
## 891                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 892                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 893                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 894                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 895                                                                                                                                                                                                                                                                                                                                                  PissedOffRepublican, Coronavirus, shutdownflorida
## 896                                                                                                                                                                                                                                                                                                                                                                                           CNN, USA
## 897                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 898                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 899                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 900                                                                                                                                                                                                                                                                                                                                                                   COVID19, USA, ohcanada, stayaway
## 901                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 902                                                                                                                                                                                                                                                                                                                                                                                              Covid
## 903                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 904                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 905                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 906                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 907                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 908                                                                                                                                                                                                                                                                                                                                       COVID19, StayHomeSaveLives, FlattenTheCurve, bishopstortford
## 909                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 910                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 911                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 912                                                                                                                                                                                                                                                                                                                                                                     coronavirus, covid19, StaySafe
## 913                                                                                                                                                                                                                                                                                                                                                                                       AirtelThanks
## 914                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 915                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 916                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 917                                                                                                                                                                                                                                                                                                                                                                          alcc, comeandsee, COVID19
## 918                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 919                                                                                                                                                                                                                                                                                                                                                                             MCO, Malaysia, Covid19
## 920                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 921                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 922                                                                                                                                                                                                                                                                                                                                                                      Virginia, coronavirus, BeBill
## 923                                                                                                                                                                                                                                                                                                                                                                                           lockdown
## 924                                                                                                                                                                                                                                                                                                                                                                                         COVID, SEO
## 925                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 926                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 927                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 928                                                                                                                                                                                                                                                                                                                                                                    creditunions, military, COVID19
## 929                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 930                                                                                                                                                                                                                                                                                                                                                                                    COVID<U+30FC>19
## 931                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 932                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 933                                                                                                                                                                                                                                                                                                                                                           Medicare4All, MedicareForAll, Bernie2020
## 934                                                                                                                                                                                                                                                                                                                                                        IndianRailways, Coronavirus, COVID2019india
## 935                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 936                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 937                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 938                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 939                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 940                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 941                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 942                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 943                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 944                                                                                                                                                                                                                                                                                                                                                                                   COVID19, dataviz
## 945                                                                                                                                                                                                                                                                                                                                                                           COVID2019, TogetherApart
## 946                                                                                                                                                                                                                                                                                                                                                                                           Ethiopia
## 947                                                                                                                                                                                                                                                                                                                                                                         CApolitics, CApol, COVID19
## 948                                                                                                                                                                                                                                                                                                                                            stayathome, InlandRegionalCenter, coronavirus, staysafe
## 949                                                                                                                                                                                                                                                                                                                                                                                        Coronavirus
## 950                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 951                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 952                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 953                                                                                                                                                                                                                                                                                                                          Trump, coronavirus, UnEndorseBiden, TrumpLiesAmericansDie, CoronaLockdown
## 954                                                                                                                                                                                                                                                                                                                                                                                           lockdown
## 955                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 956                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 957                                                                                                                                                                                                                                                                                                                                                                 MakingaDifferenceTogether, Covid19
## 958                                                                                                                                                                                                                                                                                                                                                              COVID2019, writing, WritingCommnunity
## 959                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 960                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 961                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 962                                                                                                                                                                                                                                                                                                                                                                   COVID19, Diabetes, WakeUpAmerica
## 963                                                                                                                                                                                                                                                                                                                                                                             heroes, nhs, COVID2019
## 964                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 965                                                                                                                                                                                                                                                                                                                                                                       HPC, TACC, coronavirus, UCSD
## 966                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 967                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 968                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 969                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 970                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 971                                                                                                                                                                                                                                                                                  Doctor, COVID19, COVID2019Ghana, StaySafeNigeria, COVID, SocialDistanacing, CoronavirusOutbreak, FridayMotivation
## 972                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 973                                                                                                                                                                                                                                                                                                                                                                              COVID2019, StayAtHome
## 974                                                                                                                                                                                                                                                                                                                                                                                    ReleaseDrKafeel
## 975                                                                                                                                                                                                                                                                                                                                                           COVID19, Maharashtra, fightagainstcorona
## 976                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 977                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 978                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 979                                                                                                                                                                                                                                                                                                                                                                                            COVID19
## 980                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 981                                                                                                                                                                                                                                                                                                                                                                                          COVID2019
## 982                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 983                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 984                                                                                                                                                                                                                                                                                                                                                                                    COVID19, robots
## 985                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 986                                                                                                                                                                                                                                                                                                                                                                        StaySafeStayHome, COVID2019
## 987                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 988                                                                                                                                                                                                                                                                                                                                                               COVID19france, coronavirus, StayHome
## 989                                                                                                                                                                                                                                                                                                                                                                     COVID2019, biowarfare, Finland
## 990                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 991                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 992                                                                                                                                                                                                                                                                                                                                                                               coronavirus, covid19
## 993                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 994                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 995                                                                                                                                                                                                                                                                                                 coronavirus, 2019nCoV, virus, chinavirus, wuhan, sos, COVID19, COVID_19, SARSCoV2, COVID<U+30FC>19
## 996                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 997                                                                                                                                                                                                                                                                                                                                                                  COVID19, IntegratedReview, ISDFPR
## 998                                                                                                                                                                                                                                                                                                                                                                                                 NA
## 999                                                                                                                                                                                                                                                                                                                                                                                        coronavirus
## 1000                                                                                                                                                                                                                                                                                                                                                            patientsfirst, covid19, scrubsnotsuits
## 1001                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1002                                                                                                                                                                                                                                                                                                                                                                                       CoronaVirus
## 1003                                                                                                                                                                                                                                                                                                                                                                                       coronavirus
## 1004                                                                                                                                                                                                                                                                                                                                                                                       Coronavirus
## 1005                                                                                                                                                                                                                                                                                                                                                                                       Coronavirus
## 1006                                                                                                                                                                                                                                                                                                                                                                              COVID19, Coronavirus
## 1007                                                                                                                                                                                                                                                                                                                                                                      coronavirus, COVID<U+30FC>19
## 1008                                                                                                                                                                                                                                                                                                                                                                Coronavirus, COVID, CoronaOutbreak
## 1009                                                                                                                                                                                                                                                                                     Dr, DeborahBirx, call, affirm, LGBTQ, people, bias, coronavirus, relief, Women, Transgender, LGBTQIA, Covid19
## 1010                                                                                                                                                                                                                                                                                                                                   CHP, safety, Traffic, COVID19, Quarantine, StayHome, California
## 1011                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1012                                                                                                                                                                                                                                                                                                                                                          coronavirus, CLUBTWITTER, ClubQuarantine
## 1013                                                                                                                                                                                                                                                                                                                                                                                COVID, coronavirus
## 1014                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1015                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1016                                                                                                                                                                                                                                                                                                                                                                                   COVID<U+30FC>19
## 1017                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1018                                                                                                                                                                                                                                                                                                                                                TakeResponsibility, StayAtHomeAndStaySafe, COVID19
## 1019                                                                                                                                                                                                                                                                                                                                                                            ShelterInPlace, Alaska
## 1020                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1021                                                                                                                                                                                                                                                                                                                                                                               SpaceForce, Covid19
## 1022                                                                                                                                                                                                                                                                                               CoryFranklin, InfectiousDisease, RobertAWeinstein, economics, coronavirus, nationalsecurity, natsec
## 1023                                                                                                                                                                                                                                                                                                                                                 SelfIsolation, lockdown, COVID19, stainburnforest
## 1024                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1025                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1026                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1027                                                                                                                                                                                                                                                                                                                                                                          MSM, Trump, COVID19, MSM
## 1028                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1029                                                                                                                                                                                                                                                                                                                                                                                       Coronavirus
## 1030                                                                                                                                                                                                                                                                                                                                                                                       coronavirus
## 1031                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1032                                                                                                                                                                                                                                          youtube, friends, family, familytime, friday, fridaynight, horrorgames, horror, gamer, games, game, like, subscribe, covid19, keepgoing, netflix, twitch
## 1033                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1034                                                                                                                                                                                                                                                                                                                                                                                  climate, COVID19
## 1035                                                                                                                                                                                                                                                                                                                                                                    socialprotection, COVID19, LIC
## 1036                                                                                                                                                                                                                                                                                                                                                                    teach, COVID19, ShelterInPlace
## 1037                                                                                                                                                                                                                                                                                                                                                                                       coronavirus
## 1038                                                                                                                                                                                                                                                                                                                                                                                         COVID2019
## 1039                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1040                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1041                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1042                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1043                                                                                                                                                                                                                                                                                                                                                        Rome, coronavirus, COVID19, QuarantineLife
## 1044                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1045                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1046                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1047                                                                                                                                                                                                                                                                                                                                                                                  M4A, coronavirus
## 1048                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1049                                                                                                                                                                                                                                                                                                                                                                 covid19, Americans, DNC, Traitors
## 1050                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1051                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1052                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1053                                                                                                                                                                                                                                                                                                                                                       ruralhealth, indigenoushealth, publichealth
## 1054                                                                                                                                                                                                                                                                                                                                                                       BreakingNews, Live, COVID19
## 1055                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1056                                                                                                                                                                                                                                                                                                                                                                                COVID19, insurance
## 1057                                                                                                                                                                                                                                                                                                                                                               COVID19, Rutland, StayHomeSaveLives
## 1058                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1059                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1060                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1061                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1062                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1063                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1064                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1065                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1066                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1067                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1068                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1069                                                                                                                                                                                                                                                                                                                                                                                       Coronavirus
## 1070                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1071                                                                                                                                                                                                                                                                                                                                                                                       coronavirus
## 1072                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1073                                                                                                                                                                                                                                                                                                                                                   MedicareForAll, CNNTownHall, CoronavirusOubreak
## 1074                                                                                                                                                                                                                                                                                                                                                                                 Iran, coronavirus
## 1075                                                                                                                                                                                                                                                                                                                                                                                    POTUS, COVID19
## 1076                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1077                                                                                                                                                                                                                                                                                                                                                           HCWShoutOut, COVID2019, cnn, ChrisCuomo
## 1078                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1079                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1080                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1081                                                                                                                                                                                                                                                                                                                                                                                          BREAKING
## 1082                                                                                                                                                                                                                                                                                                                                                                               COVID19, Covid19usa
## 1083                                                                                                                                                                                                                                                                                                                                                                      Coronavirus, US, Coronavirus
## 1084                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1085                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1086                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1087                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1088                                                                                                                                                                                                                                                                                                                                                                                       coronavirus
## 1089                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1090                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1091                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1092                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1093                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1094                                                                                                                                                                                                                                                                               TheGreatAwakening, QAnon, CoronaVirus, Covid, DarkToLight, FutureProvesPast, FactsMatter, WWG1WGA, WWG1WGAWorldWide
## 1095                                                                                                                                                                                                                                                                                                                                                                                             Covid
## 1096                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1097                                                                                                                                                                                                                                                                                                                                                                  ChinaVirus, Coronavirus, COVID19
## 1098                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1099                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1100                                                                                                                                                                                                                                                                                                                                                                                Covid_19, vaka5698
## 1101                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1102                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1103                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1104                                                                                                                                                                                                                                                                 whateverittakesG20, CoronavirusOubreak, CoronaVillains, Corona, COVID, COVID2019, StayHomeSaveLives, LockdownNow, LOCKDOWNWORSHIP
## 1105                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1106                                                                                                                                                                                                                                                                                                                                                                                           Covid19
## 1107                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1108                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1109                                                                                                                                                                                                                                                                                                                                                                                           COVID19
## 1110                                                                                                                                                                                                                                                                                                                                                                                                NA
## 1111                                                                                                                                                                                                                                                                                                                                                             trackandfield, COVID2019, FearTheGoat
##      symbols
## 1         NA
## 2         NA
## 3         NA
## 4         NA
## 5         NA
## 6         NA
## 7         NA
## 8         NA
## 9         NA
## 10        NA
## 11        NA
## 12        NA
## 13        NA
## 14        NA
## 15        NA
## 16        NA
## 17        NA
## 18        NA
## 19        NA
## 20        NA
## 21        NA
## 22        NA
## 23        NA
## 24        NA
## 25        NA
## 26        NA
## 27        NA
## 28        NA
## 29        NA
## 30        NA
## 31        NA
## 32        NA
## 33        NA
## 34        NA
## 35        NA
## 36        NA
## 37        NA
## 38        NA
## 39        NA
## 40        NA
## 41        NA
## 42        NA
## 43        NA
## 44        NA
## 45        NA
## 46        NA
## 47        NA
## 48        NA
## 49        NA
## 50        NA
## 51        NA
## 52        NA
## 53        NA
## 54        NA
## 55        NA
## 56        NA
## 57        NA
## 58        NA
## 59        NA
## 60        NA
## 61        NA
## 62        NA
## 63        NA
## 64        NA
## 65        NA
## 66        NA
## 67        NA
## 68        NA
## 69        NA
## 70        NA
## 71        NA
## 72        NA
## 73        NA
## 74        NA
## 75        NA
## 76        NA
## 77        NA
## 78        NA
## 79        NA
## 80        NA
## 81        NA
## 82        NA
## 83        NA
## 84        NA
## 85        NA
## 86        NA
## 87        NA
## 88        NA
## 89        NA
## 90        NA
## 91        NA
## 92        NA
## 93        NA
## 94        NA
## 95        NA
## 96        NA
## 97        NA
## 98        NA
## 99        NA
## 100       NA
## 101       NA
## 102       NA
## 103       NA
## 104       NA
## 105       NA
## 106       NA
## 107       NA
## 108       NA
## 109       NA
## 110       NA
## 111       NA
## 112       NA
## 113       NA
## 114       NA
## 115       NA
## 116       NA
## 117       NA
## 118       NA
## 119       NA
## 120       NA
## 121       NA
## 122       NA
## 123       NA
## 124       NA
## 125       NA
## 126       NA
## 127       NA
## 128       NA
## 129       NA
## 130       NA
## 131       NA
## 132       NA
## 133       NA
## 134       NA
## 135       NA
## 136       NA
## 137       NA
## 138       NA
## 139       NA
## 140       NA
## 141       NA
## 142       NA
## 143       NA
## 144       NA
## 145       NA
## 146       NA
## 147       NA
## 148       NA
## 149       NA
## 150       NA
## 151       NA
## 152       NA
## 153       NA
## 154       NA
## 155       NA
## 156       NA
## 157       NA
## 158       NA
## 159       NA
## 160       NA
## 161       NA
## 162       NA
## 163       NA
## 164       NA
## 165       NA
## 166       NA
## 167       NA
## 168       NA
## 169       NA
## 170       NA
## 171       NA
## 172       NA
## 173       NA
## 174       NA
## 175       NA
## 176       NA
## 177       NA
## 178       NA
## 179       NA
## 180       NA
## 181       NA
## 182       NA
## 183       NA
## 184       NA
## 185       NA
## 186       NA
## 187       NA
## 188       NA
## 189       NA
## 190       NA
## 191       NA
## 192       NA
## 193       NA
## 194       NA
## 195       NA
## 196       NA
## 197       NA
## 198       NA
## 199       NA
## 200       NA
## 201       NA
## 202       NA
## 203       NA
## 204       NA
## 205       NA
## 206       NA
## 207       NA
## 208       NA
## 209       NA
## 210       NA
## 211       NA
## 212       NA
## 213       NA
## 214       NA
## 215       NA
## 216       NA
## 217       NA
## 218       NA
## 219       NA
## 220       NA
## 221       NA
## 222       NA
## 223       NA
## 224       NA
## 225       NA
## 226       NA
## 227       NA
## 228       NA
## 229       NA
## 230       NA
## 231       NA
## 232       NA
## 233       NA
## 234       NA
## 235       NA
## 236       NA
## 237       NA
## 238       NA
## 239       NA
## 240       NA
## 241       NA
## 242       NA
## 243       NA
## 244       NA
## 245       NA
## 246       NA
## 247       NA
## 248       NA
## 249       NA
## 250       NA
## 251       NA
## 252       NA
## 253       NA
## 254       NA
## 255       NA
## 256       NA
## 257       NA
## 258       NA
## 259       NA
## 260       NA
## 261       NA
## 262       NA
## 263       NA
## 264       NA
## 265       NA
## 266       NA
## 267       NA
## 268       NA
## 269       NA
## 270       NA
## 271       NA
## 272       NA
## 273       NA
## 274       NA
## 275       NA
## 276       NA
## 277       NA
## 278       NA
## 279       NA
## 280       NA
## 281       NA
## 282       NA
## 283       NA
## 284       NA
## 285       NA
## 286       NA
## 287       NA
## 288       NA
## 289       NA
## 290       NA
## 291       NA
## 292       NA
## 293       NA
## 294       NA
## 295       NA
## 296       NA
## 297       NA
## 298       NA
## 299       NA
## 300       NA
## 301       NA
## 302       NA
## 303       NA
## 304       NA
## 305       NA
## 306       NA
## 307       NA
## 308       NA
## 309       NA
## 310       NA
## 311       NA
## 312       NA
## 313       NA
## 314       NA
## 315       NA
## 316       NA
## 317       NA
## 318       NA
## 319       NA
## 320       NA
## 321       NA
## 322       NA
## 323       NA
## 324       NA
## 325       NA
## 326       NA
## 327       NA
## 328       NA
## 329       NA
## 330       NA
## 331       NA
## 332       NA
## 333       NA
## 334       NA
## 335       NA
## 336       NA
## 337       NA
## 338       NA
## 339       NA
## 340       NA
## 341       NA
## 342       NA
## 343       NA
## 344       NA
## 345       NA
## 346       NA
## 347       NA
## 348       NA
## 349       NA
## 350       NA
## 351       NA
## 352       NA
## 353       NA
## 354       NA
## 355       NA
## 356       NA
## 357       NA
## 358       NA
## 359       NA
## 360       NA
## 361       NA
## 362       NA
## 363       NA
## 364       NA
## 365       NA
## 366       NA
## 367       NA
## 368       NA
## 369       NA
## 370       NA
## 371       NA
## 372       NA
## 373       NA
## 374       NA
## 375       NA
## 376       NA
## 377       NA
## 378       NA
## 379       NA
## 380       NA
## 381       NA
## 382       NA
## 383       NA
## 384       NA
## 385       NA
## 386       NA
## 387       NA
## 388       NA
## 389       NA
## 390       NA
## 391       NA
## 392       NA
## 393       NA
## 394       NA
## 395       NA
## 396       NA
## 397       NA
## 398       NA
## 399       NA
## 400       NA
## 401       NA
## 402       NA
## 403       NA
## 404       NA
## 405       NA
## 406       NA
## 407       NA
## 408       NA
## 409       NA
## 410       NA
## 411       NA
## 412       NA
## 413       NA
## 414       NA
## 415       NA
## 416       NA
## 417       NA
## 418       NA
## 419       NA
## 420       NA
## 421       NA
## 422       NA
## 423       NA
## 424       NA
## 425       NA
## 426       NA
## 427       NA
## 428       NA
## 429       NA
## 430       NA
## 431       NA
## 432       NA
## 433       NA
## 434       NA
## 435       NA
## 436       NA
## 437       NA
## 438       NA
## 439       NA
## 440       NA
## 441       NA
## 442       NA
## 443       NA
## 444       NA
## 445       NA
## 446       NA
## 447       NA
## 448       NA
## 449       NA
## 450       NA
## 451       NA
## 452       NA
## 453       NA
## 454       NA
## 455       NA
## 456       NA
## 457       NA
## 458       NA
## 459       NA
## 460       NA
## 461       NA
## 462       NA
## 463       NA
## 464       NA
## 465       NA
## 466       NA
## 467       NA
## 468       NA
## 469       NA
## 470       NA
## 471       NA
## 472       NA
## 473       NA
## 474       NA
## 475       NA
## 476       NA
## 477       NA
## 478       NA
## 479       NA
## 480       NA
## 481       NA
## 482       NA
## 483       NA
## 484       NA
## 485       NA
## 486       NA
## 487       NA
## 488       NA
## 489       NA
## 490       NA
## 491       NA
## 492       NA
## 493       NA
## 494       NA
## 495       NA
## 496       NA
## 497       NA
## 498       NA
## 499       NA
## 500       NA
## 501       NA
## 502       NA
## 503       NA
## 504       NA
## 505       NA
## 506       NA
## 507       NA
## 508       NA
## 509       NA
## 510       NA
## 511       NA
## 512       NA
## 513       NA
## 514       NA
## 515       NA
## 516       NA
## 517       NA
## 518       NA
## 519       NA
## 520       NA
## 521       NA
## 522       NA
## 523       NA
## 524       NA
## 525       NA
## 526       NA
## 527       NA
## 528       NA
## 529       NA
## 530       NA
## 531       NA
## 532       NA
## 533       NA
## 534       NA
## 535       NA
## 536       NA
## 537       NA
## 538       NA
## 539       NA
## 540       NA
## 541       NA
## 542       NA
## 543       NA
## 544       NA
## 545       NA
## 546       NA
## 547       NA
## 548       NA
## 549       NA
## 550       NA
## 551       NA
## 552       NA
## 553       NA
## 554       NA
## 555       NA
## 556       NA
## 557       NA
## 558       NA
## 559       NA
## 560       NA
## 561       NA
## 562       NA
## 563       NA
## 564       NA
## 565       NA
## 566       NA
## 567       NA
## 568       NA
## 569       NA
## 570       NA
## 571       NA
## 572       NA
## 573       NA
## 574       NA
## 575       NA
## 576       NA
## 577       NA
## 578       NA
## 579       NA
## 580       NA
## 581       NA
## 582       NA
## 583       NA
## 584       NA
## 585       NA
## 586       NA
## 587       NA
## 588       NA
## 589       NA
## 590       NA
## 591       NA
## 592       NA
## 593       NA
## 594       NA
## 595       NA
## 596       NA
## 597       NA
## 598       NA
## 599       NA
## 600       NA
## 601       NA
## 602       NA
## 603       NA
## 604       NA
## 605       NA
## 606       NA
## 607       NA
## 608       NA
## 609       NA
## 610       NA
## 611       NA
## 612       NA
## 613       NA
## 614       NA
## 615       NA
## 616       NA
## 617       NA
## 618       NA
## 619       NA
## 620       NA
## 621       NA
## 622       NA
## 623       NA
## 624       NA
## 625       NA
## 626       NA
## 627       NA
## 628       NA
## 629       NA
## 630       NA
## 631       NA
## 632       NA
## 633       NA
## 634       NA
## 635       NA
## 636       NA
## 637       NA
## 638       NA
## 639       NA
## 640       NA
## 641       NA
## 642       NA
## 643       NA
## 644       NA
## 645       NA
## 646       NA
## 647       NA
## 648       NA
## 649       NA
## 650       NA
## 651       NA
## 652       NA
## 653       NA
## 654       NA
## 655       NA
## 656       NA
## 657       NA
## 658       NA
## 659       NA
## 660       NA
## 661       NA
## 662       NA
## 663       NA
## 664       NA
## 665       NA
## 666       NA
## 667       NA
## 668       NA
## 669       NA
## 670       NA
## 671       NA
## 672       NA
## 673       NA
## 674       NA
## 675       NA
## 676       NA
## 677       NA
## 678       NA
## 679       NA
## 680       NA
## 681       NA
## 682       NA
## 683       NA
## 684       NA
## 685       NA
## 686       NA
## 687       NA
## 688       NA
## 689       NA
## 690       NA
## 691       NA
## 692       NA
## 693       NA
## 694       NA
## 695       NA
## 696       NA
## 697       NA
## 698       NA
## 699       NA
## 700       NA
## 701       NA
## 702       NA
## 703       NA
## 704       NA
## 705       NA
## 706       NA
## 707       NA
## 708       NA
## 709       NA
## 710       NA
## 711       NA
## 712       NA
## 713       NA
## 714       NA
## 715       NA
## 716       NA
## 717       NA
## 718       NA
## 719       NA
## 720       NA
## 721       NA
## 722       NA
## 723       NA
## 724       NA
## 725       NA
## 726       NA
## 727       NA
## 728       NA
## 729       NA
## 730       NA
## 731       NA
## 732       NA
## 733       NA
## 734       NA
## 735       NA
## 736       NA
## 737       NA
## 738       NA
## 739       NA
## 740       NA
## 741       NA
## 742       NA
## 743       NA
## 744       NA
## 745       NA
## 746       NA
## 747       NA
## 748       NA
## 749       NA
## 750       NA
## 751       NA
## 752       NA
## 753       NA
## 754       NA
## 755       NA
## 756       NA
## 757       NA
## 758       NA
## 759       NA
## 760       NA
## 761       NA
## 762       NA
## 763       NA
## 764       NA
## 765       NA
## 766       NA
## 767       NA
## 768       NA
## 769       NA
## 770       NA
## 771       NA
## 772       NA
## 773       NA
## 774       NA
## 775       NA
## 776       NA
## 777       NA
## 778       NA
## 779       NA
## 780       NA
## 781       NA
## 782       NA
## 783       NA
## 784       NA
## 785       NA
## 786       NA
## 787       NA
## 788       NA
## 789       NA
## 790       NA
## 791       NA
## 792       NA
## 793       NA
## 794       NA
## 795       NA
## 796       NA
## 797       NA
## 798       NA
## 799       NA
## 800       NA
## 801       NA
## 802       NA
## 803       NA
## 804       NA
## 805       NA
## 806       NA
## 807       NA
## 808       NA
## 809       NA
## 810       NA
## 811       NA
## 812       NA
## 813       NA
## 814       NA
## 815       NA
## 816       NA
## 817       NA
## 818       NA
## 819       NA
## 820       NA
## 821       NA
## 822       NA
## 823       NA
## 824       NA
## 825       NA
## 826       NA
## 827       NA
## 828       NA
## 829       NA
## 830       NA
## 831       NA
## 832       NA
## 833       NA
## 834       NA
## 835       NA
## 836       NA
## 837       NA
## 838       NA
## 839       NA
## 840       NA
## 841       NA
## 842       NA
## 843       NA
## 844       NA
## 845       NA
## 846       NA
## 847       NA
## 848       NA
## 849       NA
## 850       NA
## 851       NA
## 852       NA
## 853       NA
## 854       NA
## 855       NA
## 856       NA
## 857       NA
## 858       NA
## 859       NA
## 860       NA
## 861       NA
## 862       NA
## 863       NA
## 864       NA
## 865       NA
## 866       NA
## 867       NA
## 868       NA
## 869       NA
## 870       NA
## 871       NA
## 872       NA
## 873       NA
## 874       NA
## 875       NA
## 876       NA
## 877       NA
## 878       NA
## 879       NA
## 880       NA
## 881       NA
## 882       NA
## 883       NA
## 884       NA
## 885       NA
## 886       NA
## 887       NA
## 888       NA
## 889       NA
## 890       NA
## 891       NA
## 892       NA
## 893       NA
## 894       NA
## 895       NA
## 896       NA
## 897       NA
## 898       NA
## 899       NA
## 900       NA
## 901       NA
## 902       NA
## 903       NA
## 904       NA
## 905       NA
## 906       NA
## 907       NA
## 908       NA
## 909       NA
## 910       NA
## 911       NA
## 912       NA
## 913       NA
## 914       NA
## 915       NA
## 916       NA
## 917       NA
## 918       NA
## 919       NA
## 920       NA
## 921       NA
## 922       NA
## 923       NA
## 924       NA
## 925       NA
## 926       NA
## 927       NA
## 928       NA
## 929       NA
## 930       NA
## 931       NA
## 932       NA
## 933       NA
## 934       NA
## 935       NA
## 936       NA
## 937       NA
## 938       NA
## 939       NA
## 940       NA
## 941       NA
## 942       NA
## 943       NA
## 944       NA
## 945       NA
## 946       NA
## 947       NA
## 948       NA
## 949       NA
## 950       NA
## 951       NA
## 952       NA
## 953       NA
## 954       NA
## 955       NA
## 956       NA
## 957       NA
## 958       NA
## 959       NA
## 960       NA
## 961       NA
## 962       NA
## 963       NA
## 964       NA
## 965       NA
## 966       NA
## 967       NA
## 968       NA
## 969       NA
## 970       NA
## 971       NA
## 972       NA
## 973       NA
## 974       NA
## 975       NA
## 976       NA
## 977       NA
## 978       NA
## 979       NA
## 980       NA
## 981       NA
## 982       NA
## 983       NA
## 984       NA
## 985       NA
## 986       NA
## 987       NA
## 988       NA
## 989       NA
## 990       NA
## 991       NA
## 992       NA
## 993       NA
## 994       NA
## 995       NA
## 996       NA
## 997       NA
## 998       NA
## 999       NA
## 1000      NA
## 1001      NA
## 1002      NA
## 1003      NA
## 1004      NA
## 1005      NA
## 1006      NA
## 1007      NA
## 1008      NA
## 1009      NA
## 1010      NA
## 1011      NA
## 1012      NA
## 1013      NA
## 1014      NA
## 1015      NA
## 1016      NA
## 1017      NA
## 1018      NA
## 1019      NA
## 1020      NA
## 1021      NA
## 1022      NA
## 1023      NA
## 1024      NA
## 1025      NA
## 1026      NA
## 1027      NA
## 1028      NA
## 1029      NA
## 1030      NA
## 1031      NA
## 1032      NA
## 1033      NA
## 1034      NA
## 1035      NA
## 1036      NA
## 1037      NA
## 1038      NA
## 1039      NA
## 1040      NA
## 1041      NA
## 1042      NA
## 1043      NA
## 1044      NA
## 1045      NA
## 1046      NA
## 1047      NA
## 1048      NA
## 1049      NA
## 1050      NA
## 1051      NA
## 1052      NA
## 1053      NA
## 1054      NA
## 1055      NA
## 1056      NA
## 1057      NA
## 1058      NA
## 1059      NA
## 1060      NA
## 1061      NA
## 1062      NA
## 1063      NA
## 1064      NA
## 1065      NA
## 1066      NA
## 1067      NA
## 1068      NA
## 1069      NA
## 1070      NA
## 1071      NA
## 1072      NA
## 1073      NA
## 1074      NA
## 1075      NA
## 1076      NA
## 1077      NA
## 1078      NA
## 1079      NA
## 1080      NA
## 1081      NA
## 1082      NA
## 1083      NA
## 1084      NA
## 1085      NA
## 1086      NA
## 1087      NA
## 1088      NA
## 1089      NA
## 1090      NA
## 1091      NA
## 1092      NA
## 1093      NA
## 1094      NA
## 1095      NA
## 1096      NA
## 1097      NA
## 1098      NA
## 1099      NA
## 1100      NA
## 1101      NA
## 1102      NA
## 1103      NA
## 1104      NA
## 1105      NA
## 1106      NA
## 1107      NA
## 1108      NA
## 1109      NA
## 1110      NA
## 1111      NA
##                                                                      urls_url
## 1                                                  eater.com/2020/3/26/2119…
## 2                                                                          NA
## 3                                                                          NA
## 4                                                twitter.com/yascha_mounk/s…
## 5                                                twitter.com/patciccantelli…
## 6                                                             trib.al/JYd9rsk
## 7                                                   walb.com/2020/03/26/sgm…
## 8                                                              bit.ly/39knRC8
## 9                                                twitter.com/AynRandPaulRya…
## 10                                                                         NA
## 11                                                                         NA
## 12                                                                         NA
## 13                                                                         NA
## 14                                                                         NA
## 15                                                            theppedrive.com
## 16                                       news.communitech.ca/view-from-the-…
## 17                                                                         NA
## 18                                                                         NA
## 19                                                                         NA
## 20                                                                         NA
## 21                                             zerohedge.com/health/bahrain…
## 22                                                             dlvr.it/RSdYSk
## 23                                                                         NA
## 24                                                                         NA
## 25                                                                         NA
## 26                                                                         NA
## 27                                      windsoressex.cmha.ca/events/covid19…
## 28                                                             bit.ly/2UHUjJm
## 29                                                                         NA
## 30                                      act.medicare4all.org/signup/ads-tha…
## 31                                                                         NA
## 32                                                reason.com/2020/03/27/no-…
## 33                                                                         NA
## 34                                                            pcma.co/2WPr4XY
## 35                                          capellhoward.com/new-policies-a…
## 36                                               twitter.com/BBCWorld/statu…
## 37                                                                         NA
## 38                                                                         NA
## 39                                        talk.crisisnow.com/covid-19-behav…
## 40                                                                         NA
## 41                                                                         NA
## 42                                              7news.com.au/lifestyle/heal…
## 43                                               twitter.com/jaketapper/sta…
## 44                                                ibtimes.sg/china-hiding-c…
## 45                                                                         NA
## 46                                                             bit.ly/2vRhzMG
## 47                                       theunaustralian.net/2020/03/26/que…
## 48                                                                         NA
## 49                                                                         NA
## 50                                                                         NA
## 51                                               twitter.com/BBCNews/status…
## 52                                                    gov.uk/guidance/claim…
## 53                                                                         NA
## 54                                                            noah.do/2ydpwg7
## 55                                                                         NA
## 56                                                wbckfm.com/did-president-…
## 57                     cam.ac.uk/stories/winton…, cam.ac.uk/stories/winton…
## 58                                     spectrumlocalnews.com/nys/capital-re…
## 59                                       threadreaderapp.com/thread/1243031…
## 60                                                                         NA
## 61                                                                         NA
## 62                                      publishersweekly.com/pw/by-topic/ch…
## 63                                                            fcld.ly/kia1kf3
## 64                                           theprogress.com/opinion/column…
## 65                                         tactical-life.com/news/covid-19-…
## 66                                             instagram.com/p/B-QQ-R7JzdA/…
## 67                                             sobertool.com/forum/subjects…
## 68                                                                         NA
## 69                                                                         NA
## 70                                                                         NA
## 71                                         sportbusiness.com/news/indy-500-…
## 72                                                                         NA
## 73                                                            yhoo.it/2UCpPIY
## 74                                                                         NA
## 75                                            mondoweiss.net/2020/03/gantz-…
## 76                                               twitter.com/ShimonPro/stat…
## 77                                               twitter.com/RTELateLateSho…
## 78                                                                         NA
## 79                                                                         NA
## 80                                          civicscience.com/61-of-u-s-adul…
## 81                                                                         NA
## 82                                                    bu.edu/cs/news/calend…
## 83                                                                         NA
## 84                                                                         NA
## 85                                                                         NA
## 86                                                                         NA
## 87                                                                         NA
## 88                                                                         NA
## 89                                                   dlap.pr/tPzAhfJXa1QEfp…
## 90                                                                         NA
## 91                                                                         NA
## 92                                                                         NA
## 93                                             express.co.uk/showbiz/tv-rad…
## 94                                                          ow.ly/ojuA50yXvxg
## 95                                                                         NA
## 96                                         witbanknews.co.za/lnn/950865/inf…
## 97                                                                         NA
## 98                                 understandingmyositis.org/event/covid-19…
## 99                                                                         NA
## 100                                                                        NA
## 101                                             refekids.com/freebies_book/…
## 102                                                                        NA
## 103                                                                        NA
## 104                                                                        NA
## 105                                              twitter.com/ftmkrm83/statu…
## 106                                                                        NA
## 107                                                            dlvr.it/RSjRJm
## 108                                                                        NA
## 109                                                                        NA
## 110                                              twitter.com/ilnanews/statu…
## 111                                                                        NA
## 112                                                                        NA
## 113                                                                        NA
## 114                                                            bit.ly/3akDLxT
## 115                                            zerohedge.com/geopolitical/c…
## 116                                                                        NA
## 117                                                 kget.com/health/coronav…
## 118                                                           buff.ly/2wsD86K
## 119                                       hindustantimes.com/india-news/clo…
## 120                                              twitter.com/tvnewshq/statu…
## 121                                                                        NA
## 122                                                                        NA
## 123                                             dailydot.com/debug/cellphon…
## 124                                                    680news.com/listenlive
## 125                                                                        NA
## 126                                                                        NA
## 127                                                                        NA
## 128                                          darkreading.com/attacks-breach…
## 129                                         readfrontier.org/multimedia/cov…
## 130                                                                        NA
## 131                                              twitter.com/DokuFest/statu…
## 132                                           indiatimes.com/trending/human…
## 133                                                  msn.com/en-us/news/pol…
## 134                                                            ift.tt/33P75Kv
## 135                                                                        NA
## 136                                               abc.net.au/news/2020-03-2…
## 137                                                                        NA
## 138                                                  vox.com/policy-and-pol…
## 139                               danielgillis.wordpress.com/2020/03/27/int…
## 140                                                    bit.ly/GCHealthPodcast
## 141                                                                        NA
## 142                                               mailchi.mp/2cc9f0f54af5/e…
## 143                                                                        NA
## 144                                     thegatewaypundit.com/2020/03/update…
## 145                                                            bit.ly/33Lr3po
## 146                                          spectator.co.uk/article/The-ev…
## 147                                                                        NA
## 148                                                                        NA
## 149                                             bazecity.com/sowore-alleges…
## 150                                               dkms.org.uk/en/register-now
## 151                                                                        NA
## 152                                                                        NA
## 153                                                                        NA
## 154                                              twitter.com/JuliusGoat/sta…
## 155                                                            bit.ly/33ObvRD
## 156                                                                        NA
## 157                                                                        NA
## 158                                 democratandchronicle.com/story/news/202…
## 159                                                           lnkd.in/gE3GV6h
## 160                                      businessinsider.com/what-the-2-tri…
## 161                                                                        NA
## 162                                          agriculture.com/news/crops/cov…
## 163                                                                        NA
## 164                                            instagram.com/p/B-QW0C2n7JQ4…
## 165                                                 cnbc.com/2020/03/27/cor…
## 166                                              twitter.com/CityofMiami/st…
## 167                                                                        NA
## 168                                 worldnewsdailyreport.com/covid-19-chine…
## 169                                                                        NA
## 170                                      northwestmoinfo.com/local-news/add…
## 171                                                                        NA
## 172                                              twitter.com/PrabhasRaju/st…
## 173                                              twitter.com/NW_MoneySense/…
## 174                                                                        NA
## 175                                                                        NA
## 176                                        covid19.healthdata.org/projections
## 177                                                            dlvr.it/RScgZq
## 178                                                                        NA
## 179                                               vcstar.com/picture-galler…
## 180                                             thedrive.com/the-war-zone/3…
## 181                                                                        NA
## 182                                                                        NA
## 183                                                                        NA
## 184                                              twitter.com/StephenMcDonel…
## 185                                          jamanetwork.com/journals/jamao…
## 186                                              twitter.com/KemiOlunloyo/s…
## 187                                                                        NA
## 188                                                                        NA
## 189                                                                        NA
## 190                                                   gov.uk/government/pub…
## 191                                   science.sciencemag.org/content/367/64…
## 192                                                      youtu.be/oK44eBUNbT0
## 193                                          wilsontimes.com/stories/free-t…
## 194                                                                        NA
## 195                                                                        NA
## 196                                                  pscp.tv/w/cUuPdTFXTEtS…
## 197                                                                        NA
## 198                                                                        NA
## 199                                                                        NA
## 200                                                                        NA
## 201                                                                        NA
## 202   simcoereformer.ca/news/provincia…, kitchenertoday.com/coronavirus-co…
## 203                                     bareskymarketing.com/blog/introduci…
## 204                                              jdsupra.com/legalnews/covi…
## 205                                                                        NA
## 206                                                   principal.la/covid.html
## 207                                                           buff.ly/33AlSbA
## 208                                               abc.net.au/news/2020-03-2…
## 209                                                                        NA
## 210                                                 bing.com/covid/local/un…
## 211                                                                        NA
## 212                                                            ift.tt/3buonip
## 213                                                                        NA
## 214                                                           trib.al/clPBF1v
## 215                                                                        NA
## 216                                                                        NA
## 217                                                                        NA
## 218                                                                        NA
## 219                                                                        NA
## 220                                                                        NA
## 221                                              gazette.com/news/callers-f…
## 222                                                                        NA
## 223                                                                        NA
## 224                                                                        NA
## 225                                              twitter.com/BigElad/status…
## 226                                                                        NA
## 227                                                                        NA
## 228                                                           nyti.ms/3bApexZ
## 229                                                                        NA
## 230                                                                        NA
## 231                                              twitter.com/RFKHumanRights…
## 232                                                                        NA
## 233                                                                        NA
## 234                                              twitter.com/justintrudeau/…
## 235                                            worldometers.info/coronavirus/
## 236                                                  tes.com/news/covid-19-…
## 237                                        theregister.co.uk/2020/03/25/it_…
## 238                                          bostonglobe.com/2020/03/26/met…
## 239                                                                        NA
## 240                                                                        NA
## 241                                                                        NA
## 242                                              twitter.com/i/events/12436…
## 243                                              twitter.com/yo_boi_erik/st…
## 244                                            mothership.sg/2020/03/covid-…
## 245                                                                        NA
## 246                                                                        NA
## 247                                                                        NA
## 248                                                                        NA
## 249                                                                        NA
## 250                                                      youtu.be/sjDuwc9KBps
## 251                                                 wsls.com/news/2020/03/2…
## 252                                                                        NA
## 253                                                                        NA
## 254                                                                        NA
## 255                                                         ow.ly/RdNJ50yXOeJ
## 256                                              twitter.com/davidzodda/sta…
## 257                                                            dlvr.it/RSd1rK
## 258                                              twitter.com/realDonaldTrum…
## 259                                                                        NA
## 260                                              twitter.com/eatlikeanimals…
## 261                                                                        NA
## 262                                                                        NA
## 263                                              twitter.com/cypstnn/status…
## 264                                                  bbc.com/news/world-afr…
## 265                                                                        NA
## 266                                                                        NA
## 267                                                                        NA
## 268                                                         ow.ly/LrP050yYaDQ
## 269                                                                        NA
## 270                                              twitter.com/AliZafarsays/s…
## 271                                                                        NA
## 272                                             auedbaki.com/article/top-pa…
## 273                                                                        NA
## 274                                                                        NA
## 275                                                                        NA
## 276                                                                        NA
## 277                                                                        NA
## 278                                              twitter.com/5_News/status/…
## 279                                              twitter.com/yoursvivek/sta…
## 280                                                                        NA
## 281                                                                        NA
## 282                                              twitter.com/TexasTribune/s…
## 283                                                                        NA
## 284                                                         disq.us/t/3n8wb0m
## 285                                                                        NA
## 286                                                                        NA
## 287                                              twitter.com/TheWisemanSaid…
## 288                                                 trendingatoz.com/?p=30798
## 289                                                           abcn.ws/2vRVu0D
## 290                                                                        NA
## 291                                                                        NA
## 292                                                                        NA
## 293                                                                        NA
## 294                                                           buff.ly/2wH97QB
## 295                                                  npr.org/sections/coron…
## 296                              thepeterboroughexaminer.com/news-story/991…
## 297                                               abc.net.au/news/2020-03-2…
## 298                                                                        NA
## 299                                              twitter.com/business/statu…
## 300                                                                        NA
## 301                                                                        NA
## 302                                        movingmarkets.org/us-coronavirus…
## 303                                                                        NA
## 304                                      thepetitionsite.com/351/959/825/gi…
## 305                                                                        NA
## 306                                                                        NA
## 307                                                                        NA
## 308                                                                        NA
## 309                                                                        NA
## 310                                                                        NA
## 311                                                                        NA
## 312                                               hani.co.kr/arti/society/s…
## 313                                                  msn.com/en-us/news/us/…
## 314                                                                        NA
## 315                                                india.com/entertainment/…
## 316                                                            bit.ly/2WZY4wP
## 317                                                                        NA
## 318                                                                        NA
## 319                                                                        NA
## 320                                                                        NA
## 321                                                                        NA
## 322                                                                        NA
## 323                                              twitter.com/alpeshpaleja/s…
## 324                                                            bit.ly/2UDvRc5
## 325                                       juicyupdate.com.ng/2020/03/27/cov…
## 326                                                                        NA
## 327                                                                        NA
## 328                                                                        NA
## 329                                                   gov.uk/guidance/claim…
## 330                                       theworldinnews.com/covid-19-india…
## 331                                                         tmsnrt.rs/2UnFDjy
## 332                                                                        NA
## 333                                              twitter.com/GodButnotKira/…
## 334                                                       tinyurl.com/wcbn9kj
## 335                                                                        NA
## 336                                                                        NA
## 337                                               apple.news/Ak8y_DkyUQ72mF…
## 338                                                                        NA
## 339                                                                        NA
## 340                                                                        NA
## 341                                                                        NA
## 342                                                a.msn.com/05/en-us/BB11N…
## 343                                                           buff.ly/2LqrP0m
## 344                                                                        NA
## 345                                                                        NA
## 346                                                                        NA
## 347                                            thelancet.com/journals/lance…
## 348                                                                        NA
## 349                                                                        NA
## 350                                                            bit.ly/3asjXsc
## 351                                                                        NA
## 352                                                            bit.ly/2UFiJmL
## 353                                                  cnn.com/videos/busines…
## 354                                          dailypost.co.uk/news/north-wal…
## 355                                                           buff.ly/2UKjdZ9
## 356                                                                        NA
## 357                                                                        NA
## 358                                                                        NA
## 359                                                                        NA
## 360                                                                        NA
## 361                                              essence.com/feature/black-…
## 362                                                          ctv.news/WJZpYlT
## 363                                                                        NA
## 364                                                                        NA
## 365                                                            bit.ly/2UrAV3t
## 366                                                                        NA
## 367                                                                        NA
## 368                                                                        NA
## 369                                                                        NA
## 370                                             euractiv.com/section/digita…
## 371                                       jammulinksnews.com/newsdetail/220…
## 372                                                                        NA
## 373                                                                        NA
## 374                                                                        NA
## 375                                              twitter.com/RocheNL/status…
## 376                                                                        NA
## 377                                                                        NA
## 378                                                                        NA
## 379                                                                        NA
## 380                                                 wfaa.com/article/news/v…
## 381                                                                        NA
## 382                                                            zd.net/2woPug1
## 383                                   cuba-solidarity.org.uk/end-the-blocka…
## 384                                                                        NA
## 385                                              twitter.com/i/events/12190…
## 386                                                                        NA
## 387                                              twitter.com/katemclennan1/…
## 388                                                                        NA
## 389                                                                        NA
## 390                                                                        NA
## 391                                        sanluisobispo.com/news/coronavir…
## 392                                                                        NA
## 393                                                 wlwt.com/article/house-…
## 394                                                                        NA
## 395                                       aspendailynews.com/news/pitkin-co…
## 396                                                                        NA
## 397                                           insidenova.com/headlines/loud…
## 398                                      yaleglobal.yale.edu/content/econom…
## 399                                              youtube.com/watch?v=sjDuwc…
## 400                                            allafrica.com/stories/202003…
## 401                                                fox61.com/article/news/h…
## 402                                                            bit.ly/3dC0d7o
## 403                                                                        NA
## 404                                                      youtu.be/t-swL92p_cQ
## 405                                     sanjosespotlight.com/san-jose-mayor…
## 406                                                41nbc.com/2020/03/27/mac…
## 407                                                            dlvr.it/RScr54
## 408                                                            bit.ly/2JeaBEA
## 409                                                                        NA
## 410                                           nbcmontana.com/news/coronavir…
## 411                                                                        NA
## 412                                                                        NA
## 413                                                                        NA
## 414                                                                        NA
## 415                                                                        NA
## 416                                             cinnaire.com/advancing-comm…
## 417                                                                        NA
## 418                                                                        NA
## 419                                                                        NA
## 420                                          childtrends.org/publications/r…
## 421                                                 espn.com/espnradio/play…
## 422                                                            dlvr.it/RSd5VS
## 423                                           news.yahoo.com/coronavirus-ou…
## 424                                                                        NA
## 425                                                                        NA
## 426                                                                        NA
## 427                                                                        NA
## 428                                                           tgam.ca/2UkmVcR
## 429                                             straight.com/news/covid-19-…
## 430                                                            ift.tt/2UzOXjv
## 431                                                            dlvr.it/RShwdC
## 432                                                         ow.ly/Qpdf50yWNkH
## 433                                       secure.actblue.com/donate/aoc-cov…
## 434                                             huffpost.com/entry/jimmy-ki…
## 435                                                            bit.ly/2wEi7pD
## 436                                                pic.twitter.com/tHsyMqORQR
## 437                                                   cbc.ca/news/canada/no…
## 438                                              twitter.com/MOISaudiArabia…
## 439                                                            dlvr.it/RSdB4V
## 440                                                            dlvr.it/RShrjP
## 441                                                                        NA
## 442                                                                        NA
## 443                                                                        NA
## 444                                                                        NA
## 445                                                                        NA
## 446                                        thenocturnists.com/tell-your-story
## 447                                                wired.com/story/kitboga-…
## 448                                                                        NA
## 449                                                  covidactnow.org/state/HI
## 450                                                                        NA
## 451                                              twitter.com/wcvb/status/12…
## 452                                                                        NA
## 453                                                                        NA
## 454                                            globalnews.ca/news/6734996/o…
## 455                                                                        NA
## 456                                                  tmz.com/2020/03/27/cli…
## 457                                                                        NA
## 458                                                                        NA
## 459                                                                        NA
## 460                                                                        NA
## 461                                                    nu.nl/coronavirus/60…
## 462                                             portside.org/2020-03-26/tru…
## 463                                              youtube.com/watch?v=_f_oWt…
## 464                                             artforum.com/slant/the-lose…
## 465                                          sputniknews.com/us/20200326107…
## 466                                                                        NA
## 467                                     financialexpress.com/market/share-m…
## 468                                                                        NA
## 469                                                                        NA
## 470                                                                        NA
## 471                                                                        NA
## 472                                                                        NA
## 473                                                                        NA
## 474                                                                        NA
## 475                                                                        NA
## 476                                              twitter.com/i/events/12436…
## 477                                                                        NA
## 478                                              youtube.com/watch?v=54XLXg…
## 479                                                            ift.tt/2UkwOqP
## 480                                                                        NA
## 481                                                                        NA
## 482                                                                        NA
## 483                                         lifesitenews.com/news/tucker-op…
## 484                                             facebook.com/plugins/post.p…
## 485                                                                        NA
## 486                                                                        NA
## 487                                                                        NA
## 488  agriculture.gov.au/biosecurity/le…, legislation.gov.au/Details/C2019C…
## 489                                                                        NA
## 490                                      theconversation.com/how-to-stay-fi…
## 491                                                                        NA
## 492                                                                        NA
## 493                                               abc.net.au/life/coronavir…
## 494                                                        7news.link/2yd6mHa
## 495                                                                        NA
## 496                                              twitter.com/JoanaAMorais/s…
## 497                                                                        NA
## 498                                                                        NA
## 499                                                       tinyurl.com/vhgn8fg
## 500                                                                        NA
## 501                                          us04web.zoom.us/webinar/regist…
## 502                                                                        NA
## 503                                                 wtnh.com/news/connectic…
## 504                                          theguardian.com/world/2020/mar…
## 505                                                                        NA
## 506                                                stabroeknews.com/?p=573453
## 507                                                                        NA
## 508                                                                        NA
## 509                                                                        NA
## 510                                                                        NA
## 511                                            instagram.com/p/B-RUeFigHCO/…
## 512                                                                        NA
## 513                                              twitter.com/bnodesk/status…
## 514                                                   gov.uk/guidance/coron…
## 515                                                                        NA
## 516                                            malaymail.com/news/malaysia/…
## 517                                              youtube.com/watch?v=0uDTs-…
## 518                                                                        NA
## 519                                                                        NA
## 520                                                                        NA
## 521                                                                        NA
## 522                                             facebook.com/groups/smallbu…
## 523                                                                        NA
## 524                                              twitter.com/politvidchanne…
## 525                                                                        NA
## 526                                                                        NA
## 527                                                                        NA
## 528                                              twitter.com/MentallyAwareN…
## 529                                                                        NA
## 530                                           nbcnewyork.com/news/local/too…
## 531                                                                        NA
## 532                                              twitter.com/smritizaneveld…
## 533                                                 krtv.com/news/coronavir…
## 534                                  blogs.alphagraphics.com/blog/cary-nort…
## 535                                                                        NA
## 536                                           ourpursuit.com/owning-a-busin…
## 537                                                                        NA
## 538                                                                        NA
## 539                                                   rte.ie/news/coronavir…
## 540                                         firstindia.co.in/article/33070/…
## 541                                                                        NA
## 542                                                                        NA
## 543                                                                        NA
## 544                                                                        NA
## 545                                          mynewsghana.net/covid-19-akufo…
## 546                                                            bit.ly/2UIijMq
## 547                                                                        NA
## 548                                                nrttv.com/EN/News.aspx?i…
## 549                                                                        NA
## 550                                         royalgazette.com/cricket/articl…
## 551                                                                        NA
## 552                                                      youtu.be/zK69LoCTYus
## 553                                              twitter.com/BarrieToday/st…
## 554                                                                        NA
## 555                                             rawstory.com/2020/03/trumps…
## 556                                                                        NA
## 557                                                                        NA
## 558                                              twitter.com/chitraaum/stat…
## 559                                                        rdcrss.org/3aazwog
## 560                                            Coronavirus.LACity.org/Testing
## 561                                      businessinsider.com/trump-signs-co…
## 562                                           irishtimes.com/news/world/uk/…
## 563                                         chimpreports.com/part-two-alter…
## 564                                                                        NA
## 565                                                                        NA
## 566                                            instagram.com/p/B-Nmk_mlRbV/…
## 567                                                                        NA
## 568                                                      youtu.be/3UXMwYhxxAc
## 569                                                                        NA
## 570                                              youtube.com/watch?v=gAk7aX…
## 571                                    english.alarabiya.net/en/News/middle…
## 572                                             gofundme.com/f/save-lives-w…
## 573                                                                        NA
## 574                                                                        NA
## 575                                          theguardian.com/australia-news…
## 576                                              twitter.com/i/events/12435…
## 577                                                                        NA
## 578                                                           lnkd.in/gXW2_Jm
## 579                                                 5280.com/2020/03/in-the…
## 580                                                                        NA
## 581                                             crewfire.com/l/aqnyT5Ndg-F8…
## 582                                                                        NA
## 583                                            seacology.org/2020/03/our-wo…
## 584                                                                        NA
## 585                                      graingrowers.com.au/graingrowers-c…
## 586                                                             ncov2019.live
## 587                                                            ift.tt/2ye4i1E
## 588                                              twitter.com/VancouverSun/s…
## 589                                                                        NA
## 590                                                                        NA
## 591            miamidade.gov/global/initiat…, miamidade.gov/global/initiat…
## 592                                                                        NA
## 593                                                                        NA
## 594                                                                        NA
## 595                                                                        NA
## 596                                         spectacle.com.ng/blog/2020/03/2…
## 597                                                                        NA
## 598                                                                        NA
## 599                                                                        NA
## 600                                                                        NA
## 601                                                           buff.ly/2Unuqj1
## 602                                                                        NA
## 603                                              twitter.com/BBCNormanS/sta…
## 604                                        uk.news.yahoo.com/dozens-elephan…
## 605                                                                        NA
## 606                                            instagram.com/p/B-RYbfoHlOL/…
## 607                                                            dlvr.it/RSdnZM
## 608                                                                        NA
## 609                                        dailymemphian.com/section/opinio…
## 610                                                                        NA
## 611                                           vaticannews.va/en/church/news…
## 612                                                                        NA
## 613                                               bsg.org.uk/covid-19-advic…
## 614                                           torontosun.com/news/national/…
## 615                                        somersetcf.org.uk/special-projec…
## 616                                              twitter.com/ddale8/status/…
## 617                                              twitter.com/atomicanalyst/…
## 618                                                                        NA
## 619                                                canva.com/design/DAD3r-3…
## 620                                                  npr.org/2020/03/25/821…
## 621                                             immune.vaccineconferences.com
## 622                                                                        NA
## 623                                                            bit.ly/2wAf7e2
## 624                                                                        NA
## 625                                                                        NA
## 626                                                                        NA
## 627                                                                        NA
## 628                                                                        NA
## 629                                                                        NA
## 630                                             spreaker.com/user/abide/sam…
## 631                                                            dlvr.it/RSgwG6
## 632              pafamily.org/2020/03/planne…, pafamily.org/2020/03/mapcov…
## 633                                      businessinsider.com/coronavirus-ma…
## 634                                                                        NA
## 635                                            instagram.com/p/B-Nzf8BJ4Ty/…
## 636                                                      horseracingradio.net
## 637                                              twitter.com/AbhayVishen/st…
## 638                                              twitter.com/bairdjulia/sta…
## 639                                             facebook.com/CSSDPRyerson/v…
## 640                                                                        NA
## 641                              ift.tt/2JiMVyV, twitter.com/gerald_bader/s…
## 642                                                                        NA
## 643                                   untrapped.substack.com/p/the-microbe-…
## 644                                                                        NA
## 645                                                                        NA
## 646                                                                        NA
## 647                                         commdiginews.com/politics-2/nan…
## 648                                                                        NA
## 649                                                           buff.ly/2UHAF0f
## 650                                                           etsy.me/3akJrrw
## 651                                                            bit.ly/33Xm2tR
## 652                                                                        NA
## 653                                                                        NA
## 654                                punemirror.indiatimes.com/pune/cover-sto…
## 655                                          jamanetwork.com/journals/jama/…
## 656                                              gizmodo.com/teen-who-died-…
## 657                                                                        NA
## 658                                                                        NA
## 659                                                                        NA
## 660                                                                        NA
## 661                                            theappeal.org/rikers-island-…
## 662                                                                        NA
## 663                                                                        NA
## 664                                                            bit.ly/2wIhYBo
## 665                                              twitter.com/matthewsasia/s…
## 666                                                      youtu.be/e0-2XxgHIXk
## 667                                                                        NA
## 668                                                                        NA
## 669                                                      youtu.be/sjDuwc9KBps
## 670                                                                        NA
## 671                                                                        NA
## 672                                                                        NA
## 673                                  americanindependent.com/mike-parson-co…
## 674                                                                        NA
## 675                                                                        NA
## 676                                                           unos.org/covid/
## 677                                              twitter.com/revrrlewis/sta…
## 678                                                                        NA
## 679                                                      youtu.be/LHHnLT411xA
## 680                                                            bit.ly/2UlPBSQ
## 681                                              twitter.com/IasAlok/status…
## 682                                                            dlvr.it/RSdBVQ
## 683                                      businessinsider.com/holland-americ…
## 684                                                                        NA
## 685                                                            ift.tt/2UCORaI
## 686                                                                        NA
## 687                                         voiceamerica.com/show/3943/in-t…
## 688                                                             lowy.at/cVvOk
## 689                                                                        NA
## 690                                                                        NA
## 691                                                                        NA
## 692                                                            bit.ly/2WLdLrt
## 693                                              youtube.com/watch?v=GKPQ7e…
## 694                                                                        NA
## 695                                                   rt.com/op-ed/483680-i…
## 696                                                                        NA
## 697                                                                        NA
## 698                                                                        NA
## 699                                   geesc.cedeplar.ufmg.br/demand-and-sup…
## 700                                                                        NA
## 701                                    spectrumlocalnews.com/nys/central-ny…
## 702                                                                        NA
## 703                                                 youtu.be/lnG13ft9BeI?t=…
## 704                                                                        NA
## 705                                                                        NA
## 706                                                                        NA
## 707                                                                        NA
## 708                                              twitter.com/medickinson/st…
## 709                                                                        NA
## 710                                              twitter.com/KevinMKruse/st…
## 711                                                                        NA
## 712                                                                        NA
## 713                                                                        NA
## 714                                                                        NA
## 715                                                            bit.ly/2UoRE8M
## 716                                                 krem.com/article/news/h…
## 717                                                            dlvr.it/RSdZd8
## 718                                          theguardian.com/business/2020/…
## 719                                                                        NA
## 720                                                                        NA
## 721                                                      youtu.be/9uWriZEC8BQ
## 722                                                                        NA
## 723                                             7news.com.au/lifestyle/heal…
## 724                                                                        NA
## 725                                          fastcompany.com/90483028/the-m…
## 726                                                           buff.ly/2IRB6Q3
## 727                                          mercurynews.com/2020/03/26/jam…
## 728                                                a.msn.com/05/en-us/BB11J…
## 729                                                                        NA
## 730                                                                        NA
## 731                                                a.msn.com/r/2/BB11NOvN?m…
## 732                                                                        NA
## 733                                                                        NA
## 734                                                                        NA
## 735                                                                        NA
## 736                                                            bit.ly/33StI0u
## 737                                                                        NA
## 738                                                                        NA
## 739                                                                        NA
## 740                                                         ow.ly/wJdS50yXN6d
## 741                                               curbed.com/2020/3/27/2119…
## 742                                       travelweekly.co.uk/articles/36540…
## 743                                                                        NA
## 744                                               forbes.com/sites/zakdoffm…
## 745                                              govtech.com/budget-finance…
## 746                                                                        NA
## 747                                                            shar.es/aHtkwl
## 748                                                 whyy.org/articles/how-b…
## 749                                                                        NA
## 750                                        hoperisesnews.com/single-post/20…
## 751                                                                        NA
## 752                                                                        NA
## 753                                                                        NA
## 754                                                                        NA
## 755                                                                        NA
## 756                                                                        NA
## 757                                                                        NA
## 758                                                                        NA
## 759                                                                        NA
## 760                                                                        NA
## 761                                        essenceloaded.com/covid-19-what-…
## 762                                                                        NA
## 763                                                                        NA
## 764                                                wired.com/story/coronavi…
## 765                                                            dlvr.it/RSccC6
## 766                                                            bit.ly/3amulBN
## 767                                                                        NA
## 768                                                                        NA
## 769                                              twitter.com/SkyNewsAust/st…
## 770                          maineventofthedead.blogspot.com/2020/03/essent…
## 771                                                         covid.joinzoe.com
## 772                                                            arcg.is/1qqWb5
## 773                              miamidade.floridahealth.gov/programs-and-s…
## 774                                                                        NA
## 775                                                                        NA
## 776                                              twitter.com/Pontifex/statu…
## 777                                              twitter.com/india_pu/statu…
## 778                               yaleclimateconnections.org/2020/02/therap…
## 779                                                                        NA
## 780                                                                        NA
## 781                                            instagram.com/p/B-RAzHxnQbKy…
## 782                                                                        NA
## 783                                                                        NA
## 784                                                                        NA
## 785                                                      youtu.be/sjAp3626tMM
## 786                                                                        NA
## 787                                              twitter.com/AbbottNews/sta…
## 788                             economictimes.indiatimes.com/news/politics-…
## 789                                                           buff.ly/39iLsmM
## 790                                                                        NA
## 791                                                                        NA
## 792                                                                        NA
## 793                                                                        NA
## 794                                                                        NA
## 795                                     winnipeg.citynews.ca/video/2020/03/…
## 796                                                                        NA
## 797                                           news.yahoo.com/u-never-spent-…
## 798                                           whitehouse.gov/briefings-stat…
## 799                                                                        NA
## 800                            thenewcivilrightsmovement.com/2020/03/canadi…
## 801                                                                        NA
## 802                                              twitter.com/wbsuperseries/…
## 803                                 disasterphilanthropy.org/disaster/2019-…
## 804                                              twitter.com/EM_RESUS/statu…
## 805                                              twitter.com/USPacificFleet…
## 806                              friendlyatheist.patheos.com/2020/03/26/vir…
## 807                                              twitter.com/RedMonkeySays/…
## 808                                                                        NA
## 809                                              foxnews.com/media/dr-saphi…
## 810                                                                        NA
## 811                                                                        NA
## 812                                                                        NA
## 813                                                                        NA
## 814                                         texasmonthly.com/food/heb-prepa…
## 815                                            nairaland.com/5759623/corona…
## 816                                                                        NA
## 817                                                                        NA
## 818                                                                        NA
## 819                                                                        NA
## 820                                                                        NA
## 821                                                                        NA
## 822                                                                        NA
## 823                                                                        NA
## 824                                        domestic-divaonline.com/virus-mask
## 825                                                            dlvr.it/RShcVY
## 826                                                                        NA
## 827                                             bridgemi.com/michigan-healt…
## 828                                                                        NA
## 829                                                wired.com/story/kitboga-…
## 830                                                                        NA
## 831                                                                        NA
## 832                                                                        NA
## 833                                          lnkd.in/dE6kmtZ, lnkd.in/dgSEwip
## 834                                                                        NA
## 835                                                                        NA
## 836                                                                        NA
## 837                                  langleyadvancetimes.com/news/langley-s…
## 838                                                                        NA
## 839                                          thekoalamom.com/2020/03/rubiks…
## 840                                        elevate.stockton.edu/project/20565
## 841                                                                        NA
## 842                                              twitter.com/TimesNow/statu…
## 843                                                                        NA
## 844                                              twitter.com/CBCtanya/statu…
## 845                                                                        NA
## 846                                                  pscp.tv/w/cUu_WDFvTlFs…
## 847                                              twitter.com/yamiche/status…
## 848                                                                        NA
## 849                                                                        NA
## 850                                                                        NA
## 851                                                                        NA
## 852                                                                        NA
## 853                                               mailchi.mp/c10b2b116159/c…
## 854                                                  fda.gov/vaccines-blood…
## 855                                        punjabtribune.com/news/190772-ra…
## 856                                      m.economictimes.com/news/politics-…
## 857                                              twitter.com/petershankman/…
## 858                                                                        NA
## 859                                                                        NA
## 860                                         WVLT.TV, wvlt.tv/content/news/W…
## 861                                                                        NA
## 862                                                                        NA
## 863                                                                        NA
## 864                                                      youtu.be/54XLXg4fYsc
## 865                                        news.westernu.edu/westernu-medic…
## 866                                                                        NA
## 867                                                                        NA
## 868                                                                        NA
## 869                                                      youtu.be/sjDuwc9KBps
## 870                                 madison.com, madison.com/wsj/news/local…
## 871                                                                        NA
## 872                                                                        NA
## 873                                                  wsj.com/articles/fifty…
## 874                                                      youtu.be/BqMVYZ0pUBc
## 875                                                                        NA
## 876                                                                        NA
## 877                                                                        NA
## 878                                                                        NA
## 879                                                                        NA
## 880                                    stlucianewsonline.com/jamaicans-in-n…
## 881                                                                        NA
## 882                                                                        NA
## 883                                                                        NA
## 884                                          blogs.lse.ac.uk/latamcaribbean…
## 885                                              twitter.com/fawadchaudhry/…
## 886                                                                        NA
## 887                                              blog.google/inside-google/…
## 888                                                                        NA
## 889                                                                        NA
## 890                                                                        NA
## 891                                                                        NA
## 892                                           thairath.co.th/news/local/nor…
## 893                                            promarket.org/americas-broke…
## 894                                                                        NA
## 895                                                                        NA
## 896                                                                        NA
## 897                                                          naijareports.com
## 898                                                                        NA
## 899                                         rollingstone.com/music/music-co…
## 900                                                                        NA
## 901                                            instagram.com/p/B-N2a3nj5LS/…
## 902                                                                        NA
## 903                                              twitter.com/justinobrooks/…
## 904                                                          prker.co/3bsPNp1
## 905                                             rawstory.com/2020/03/christ…
## 906                                                                        NA
## 907                                                                        NA
## 908                                                                        NA
## 909                                                            shar.es/aHv5yd
## 910                                              twitter.com/ICOnews/status…
## 911                                              gizmodo.com/teen-who-died-…
## 912                                              twitter.com/draiochta14/st…
## 913                                                                        NA
## 914                                                      youtu.be/jFvCwdfoiH8
## 915                                                                        NA
## 916                                                                        NA
## 917                                                                        NA
## 918                                                                        NA
## 919                                                                        NA
## 920                                                                        NA
## 921                                          theguardian.com/global-develop…
## 922                                              twitter.com/lwhensler3/sta…
## 923                                                                        NA
## 924                                                            bit.ly/2xpgpZd
## 925                                                                        NA
## 926                                                                        NA
## 927                                                                        NA
## 928                                                 dcuc.org/news/497623/De…
## 929                                                                        NA
## 930                                                                        NA
## 931                                                                        NA
## 932                                               mailchi.mp/20abb6eca833/c…
## 933                                          theatlantic.com/health/archive…
## 934                                                                        NA
## 935                                                                        NA
## 936                                                                        NA
## 937                                                            bit.ly/2wLfpP0
## 938                                                            bit.ly/2IJqh2e
## 939                                     act.medicare4all.org/signup/ads-tha…
## 940                                                                        NA
## 941                                                                        NA
## 942                                                              ngpa.us/8571
## 943                                                                        NA
## 944                                              twitter.com/TectonixGEO/st…
## 945                                                                        NA
## 946                                                          wp.me/p1u1FD-cyN
## 947                                              twitter.com/messages/compo…
## 948                                                  inlandrc.org/coronavirus
## 949                                                                        NA
## 950                                                                        NA
## 951                                                         wp.me/p4DWKE-1pr4
## 952                                                         ow.ly/Yuug50yRvql
## 953                                                                        NA
## 954                                             thequint.com/news/india/nov…
## 955                                                  hrw.org/news/2020/03/2…
## 956                                                           buff.ly/3aezGLw
## 957                                                                        NA
## 958                                                                        NA
## 959                                         nationalpost.com/opinion/conrad…
## 960                                         donorschoose.org/project/ed-tec…
## 961                                             rawstory.com/2020/03/christ…
## 962                                                                        NA
## 963                                                                        NA
## 964                                              twitter.com/i/events/12403…
## 965                                            insidehpc.com/2020/03/podcas…
## 966                                              gizmodo.com/teen-who-died-…
## 967                                                                        NA
## 968                                                   ew.com/celebrity/kath…
## 969                                          lnkd.in/eYEgwBn, lnkd.in/eKNpJkA
## 970                                           donegallive.ie/news/features/…
## 971                                               espact.com/this-black-fem…
## 972                                              twitter.com/bollocks_dogz/…
## 973                                                                        NA
## 974                                                 ndtv.com/india-news/jai…
## 975                                       theenglishpost.com/maharashtra-co…
## 976                                                                        NA
## 977                                              twitter.com/RussDiabo/stat…
## 978                                                                        NA
## 979                                                                        NA
## 980                                                      youtu.be/McxkRcirsZ0
## 981                                                                        NA
## 982                                                            bit.ly/2wJKtPb
## 983                                                                        NA
## 984                                                 cnbc.com/2020/03/23/vid…
## 985                                                            dlvr.it/RSdHKH
## 986                                                                        NA
## 987                                                                        NA
## 988                                                                        NA
## 989                                                                        NA
## 990                                             military.com/daily-news/202…
## 991                                              twitter.com/angelmutabaruk…
## 992                                                axios.com/united-states-…
## 993                                                 placer.ca.gov/coronavirus
## 994                                                                        NA
## 995                                             uk.pcmag.com/healthandfitne…
## 996                                         blabbermouth.net/news/rammstein…
## 997                                                 rusi.org/commentary/def…
## 998                                              youtube.com/watch?v=kamZlR…
## 999                                                                        NA
## 1000               twitter.com/mass_marion/st…, twitter.com/nkagin/status/…
## 1001                                                                       NA
## 1002                                                                       NA
## 1003                                           bloomberg.com/news/articles/…
## 1004                                             twitter.com/i/events/12190…
## 1005                                                                       NA
## 1006                                      businessinsider.nl/history-of-peo…
## 1007                                             twitter.com/NPR/status/124…
## 1008                                                                       NA
## 1009                                     washingtonblade.com/2020/03/26/dr-…
## 1010                                                                       NA
## 1011                                                                       NA
## 1012                                                                       NA
## 1013                                                                       NA
## 1014                                     tripuranewslive.com/2020/03/28/tri…
## 1015                                        ngospelmedia.net/coronavirus-up…
## 1016                                                                       NA
## 1017                                     theslot.jezebel.com/this-doctor-is…
## 1018                                                                       NA
## 1019                                         sfchronicle.com/health/article…
## 1020                                         lawandcrime.com/covid-19-pande…
## 1021                                        clickorlando.com/tech/2020/03/2…
## 1022                                                           bit.ly/2wGiBLM
## 1023                                             twitter.com/TCLcollective/…
## 1024                                           nouvelobs.com/coronavirus-de…
## 1025                                                                       NA
## 1026                                                                       NA
## 1027                                             twitter.com/MAGAPATRIOT_TG…
## 1028                                    lutheranwestland.com/news/2020/3/27…
## 1029                                                         hubs.ly/H0nX13y0
## 1030                                             twitter.com/atrupar/status…
## 1031         thestar.com.my/news/nation/20…, thestar.com.my/news/nation/20…
## 1032                     youtu.be/1RNnrJWtaGw, instagram.com/p/B-QNu55hqXQ/…
## 1033                                                                       NA
## 1034                                             twitter.com/jtemple/status…
## 1035                                             twitter.com/Ugentilini/sta…
## 1036                                                                       NA
## 1037                                             twitter.com/RepLeeZeldin/s…
## 1038                                                                       NA
## 1039                                             twitter.com/amandarishwort…
## 1040                                             twitter.com/globaltimesnew…
## 1041                                         grantnissly.com/covid-19-journ…
## 1042                                     courier-journal.com/story/news/loc…
## 1043                                                                       NA
## 1044                                                                       NA
## 1045                                                     youtu.be/cj1zRrABAXA
## 1046                                                     youtu.be/E_gMT4_PDJI
## 1047                                                                       NA
## 1048                                           bloglovin.com/blogs/a-pinch-…
## 1049                                                                       NA
## 1050                                                                       NA
## 1051                                                                       NA
## 1052                                                                       NA
## 1053                                                        ow.ly/9KW250yWggX
## 1054                                                                       NA
## 1055                                                                       NA
## 1056                                        eventbrite.co.uk/e/webinar-covi…
## 1057                                  leicestermercury.co.uk/news/local-new…
## 1058                                                                       NA
## 1059                                                wtop.com/national/2020/…
## 1060                                            spectator.us/surge-welfare-…
## 1061                                                                       NA
## 1062                                                                       NA
## 1063                                                                       NA
## 1064                                                wisn.com/article/house-…
## 1065                                          nzherald.co.nz/world/news/art…
## 1066                                        buzzicati.com.ng/news/anambra-s…
## 1067                                                                       NA
## 1068                                             caltech.edu/about/news/tip…
## 1069                                                                       NA
## 1070                                                          wapo.st/2QMg0Xt
## 1071                                                      KRLD.com/ListenLive
## 1072                                                                       NA
## 1073                                             twitter.com/justicedems/st…
## 1074                                             foxnews.com/world/hundreds…
## 1075                                             twitter.com/realDonaldTrum…
## 1076                                                                       NA
## 1077                                                                       NA
## 1078                                              livelaw.in/columns/justic…
## 1079                                                                       NA
## 1080                                              woodtv.com/health/coronav…
## 1081                                                                       NA
## 1082                                                                       NA
## 1083                                             twitter.com/i/events/12190…
## 1084                                                         naijareports.com
## 1085                                             youtube.com/watch?v=nJhdv4…
## 1086                                                wjcl.com/article/corona…
## 1087                                                                       NA
## 1088                                                                       NA
## 1089                                            thelens.news/2020/03/27/ins…
## 1090                                                                       NA
## 1091                                                       contentcafe.org.au
## 1092                                                                       NA
## 1093                                                  cbc.ca/news/politics/…
## 1094                                                     youtu.be/jFvCwdfoiH8
## 1095                                                                       NA
## 1096                                                                       NA
## 1097                                                                       NA
## 1098                                                           bit.ly/2QSgE5Q
## 1099                                                                       NA
## 1100                                                                       NA
## 1101                                             twitter.com/GovStitt/statu…
## 1102                                                                       NA
## 1103                                      cananewsonline.com/main/trinidad-…
## 1104                                                                       NA
## 1105                                                            ja.ma/2WMd94X
## 1106                                       spiked-online.com/2020/03/26/bri…
## 1107                                          localmedia.org/ways-local-med…
## 1108                                                                       NA
## 1109                                                                       NA
## 1110                                     michiganadvance.com/2020/03/27/mic…
## 1111                                                                       NA
##                                             urls_t.co
## 1                             https://t.co/1EkTXt8nkW
## 2                                                  NA
## 3                                                  NA
## 4                             https://t.co/MlXSa38wSG
## 5                             https://t.co/IPjKqwD0UE
## 6                             https://t.co/UvpOGd26CX
## 7                             https://t.co/rLV1idTNv9
## 8                             https://t.co/bVBxt9kIfd
## 9                             https://t.co/8SjgVqlRpA
## 10                                                 NA
## 11                                                 NA
## 12                                                 NA
## 13                                                 NA
## 14                                                 NA
## 15                            https://t.co/a2hmhmI8l3
## 16                            https://t.co/cPrTPeRA1Y
## 17                                                 NA
## 18                                                 NA
## 19                                                 NA
## 20                                                 NA
## 21                            https://t.co/s33ko7weA4
## 22                            https://t.co/LlCiGxCk4q
## 23                                                 NA
## 24                                                 NA
## 25                                                 NA
## 26                                                 NA
## 27                            https://t.co/hEWg9XKzjp
## 28                            https://t.co/rf2l3q7uU4
## 29                                                 NA
## 30                            https://t.co/3QUbglO8sC
## 31                                                 NA
## 32                            https://t.co/PWL6sG3uuo
## 33                                                 NA
## 34                            https://t.co/g9oIuFwEtd
## 35                            https://t.co/y4FPJDrMZB
## 36                            https://t.co/XO6yv79ujQ
## 37                                                 NA
## 38                                                 NA
## 39                            https://t.co/z0wPNruhBh
## 40                                                 NA
## 41                                                 NA
## 42                            https://t.co/ikPk1lwttk
## 43                            https://t.co/HRIkVYVExn
## 44                            https://t.co/ctFCBSD9Av
## 45                                                 NA
## 46                            https://t.co/vHmdhLfYqd
## 47                            https://t.co/7szQFn1tk3
## 48                                                 NA
## 49                                                 NA
## 50                                                 NA
## 51                            https://t.co/DD55NNcOcK
## 52                            https://t.co/EF5T5n7Gvh
## 53                                                 NA
## 54                            https://t.co/G1s2t2YPQ7
## 55                                                 NA
## 56                            https://t.co/gk3VPrjOdg
## 57   https://t.co/wPJ1u7ne8I, https://t.co/wPJ1u7ne8I
## 58                            https://t.co/PrajNhCplf
## 59                            https://t.co/bGInn0Eqm5
## 60                                                 NA
## 61                                                 NA
## 62                            https://t.co/4p9oKAQPx9
## 63                            https://t.co/O6YE6eZDRC
## 64                            https://t.co/wZsYM8xbKF
## 65                            https://t.co/bG0HHYnd38
## 66                            https://t.co/A2cBV89aKp
## 67                            https://t.co/pJgGxUrt8K
## 68                                                 NA
## 69                                                 NA
## 70                                                 NA
## 71                            https://t.co/HWgZI6ySBB
## 72                                                 NA
## 73                            https://t.co/WvhOfIS85G
## 74                                                 NA
## 75                            https://t.co/xs0CIqs8OD
## 76                            https://t.co/Do6uSWwDbD
## 77                            https://t.co/X0MSmPLzfl
## 78                                                 NA
## 79                                                 NA
## 80                            https://t.co/Y1EHDdfV1h
## 81                                                 NA
## 82                            https://t.co/cKOGqn0pys
## 83                                                 NA
## 84                                                 NA
## 85                                                 NA
## 86                                                 NA
## 87                                                 NA
## 88                                                 NA
## 89                            https://t.co/inCWvQ39Oe
## 90                                                 NA
## 91                                                 NA
## 92                                                 NA
## 93                            https://t.co/SbhqkEYnIc
## 94                            https://t.co/v9hvtf19Fk
## 95                                                 NA
## 96                            https://t.co/rwmKI0rKOO
## 97                                                 NA
## 98                            https://t.co/Wt1pcWorS7
## 99                                                 NA
## 100                                                NA
## 101                           https://t.co/Xamzjtw5lf
## 102                                                NA
## 103                                                NA
## 104                                                NA
## 105                           https://t.co/epgdnVvYBN
## 106                                                NA
## 107                           https://t.co/kFBam4NIVq
## 108                                                NA
## 109                                                NA
## 110                           https://t.co/eWVWy8kX3W
## 111                                                NA
## 112                                                NA
## 113                                                NA
## 114                           https://t.co/6VeOo0vFOM
## 115                           https://t.co/Mw5tEE91IP
## 116                                                NA
## 117                           https://t.co/jnowQfVScu
## 118                           https://t.co/VTzPMmmBVu
## 119                           https://t.co/piI2wzlPPj
## 120                           https://t.co/sGigLveqxS
## 121                                                NA
## 122                                                NA
## 123                           https://t.co/deXuwR3Brw
## 124                           https://t.co/h9p45U4Tka
## 125                                                NA
## 126                                                NA
## 127                                                NA
## 128                           https://t.co/RpaYhDRYi2
## 129                           https://t.co/E40ww9Sjw2
## 130                                                NA
## 131                           https://t.co/PUtAfr6xIr
## 132                           https://t.co/OT1WlqGAJw
## 133                           https://t.co/ZWZNPmyBtm
## 134                           https://t.co/2CXvE0RN7P
## 135                                                NA
## 136                           https://t.co/JarCpdhL3f
## 137                                                NA
## 138                           https://t.co/ts92Hg4mnX
## 139                           https://t.co/257gWLZnMH
## 140                           https://t.co/4lBwXOlkA1
## 141                                                NA
## 142                           https://t.co/Iqjs7j6Rop
## 143                                                NA
## 144                           https://t.co/QjoCiuyAoE
## 145                           https://t.co/5NfnkUIcKB
## 146                           https://t.co/BE8RiMX1pa
## 147                                                NA
## 148                                                NA
## 149                           https://t.co/EJSTlLQI5z
## 150                           https://t.co/1G7fNQntrZ
## 151                                                NA
## 152                                                NA
## 153                                                NA
## 154                           https://t.co/E99fqDdSFg
## 155                           https://t.co/lGpwdJlu1g
## 156                                                NA
## 157                                                NA
## 158                           https://t.co/jAWAhIr4we
## 159                           https://t.co/dCjcS1OZ1x
## 160                           https://t.co/5LwvfM0Eao
## 161                                                NA
## 162                           https://t.co/mC5bkuGWwg
## 163                                                NA
## 164                           https://t.co/1L0idKreNh
## 165                           https://t.co/xd0EJJdTsE
## 166                           https://t.co/RMj16Rqo49
## 167                                                NA
## 168                           https://t.co/fU3c1WMNXi
## 169                                                NA
## 170                           https://t.co/J8Poeai6Ua
## 171                                                NA
## 172                           https://t.co/kxReyWVRHP
## 173                           https://t.co/8pYop4aIx7
## 174                                                NA
## 175                                                NA
## 176                           https://t.co/X7ryLz4S9r
## 177                           https://t.co/Sdtj8ItoPI
## 178                                                NA
## 179                           https://t.co/SRGJ7qzbkh
## 180                           https://t.co/bDiK5TXQWn
## 181                                                NA
## 182                                                NA
## 183                                                NA
## 184                           https://t.co/dPkTKOvFXD
## 185                           https://t.co/b7lTk3L8iE
## 186                           https://t.co/AbIFsP9DdI
## 187                                                NA
## 188                                                NA
## 189                                                NA
## 190                           https://t.co/wdmbphpcbq
## 191                           https://t.co/2fxfNMsihG
## 192                           https://t.co/LTT0Oao4F2
## 193                           https://t.co/jw1xfIV2pE
## 194                                                NA
## 195                                                NA
## 196                           https://t.co/prgdpMqC4m
## 197                                                NA
## 198                                                NA
## 199                                                NA
## 200                                                NA
## 201                                                NA
## 202  https://t.co/HL8QA6i4iw, https://t.co/HE3a9ZslKh
## 203                           https://t.co/9L8Wn0Z2Ms
## 204                           https://t.co/fApYtt3zFf
## 205                                                NA
## 206                           https://t.co/tM5leU8sG8
## 207                           https://t.co/0GkLqtPsZW
## 208                           https://t.co/9oh4ZdbaC0
## 209                                                NA
## 210                           https://t.co/lLHmsRjfs9
## 211                                                NA
## 212                           https://t.co/oHwxAcZcjO
## 213                                                NA
## 214                           https://t.co/z472EV3w1H
## 215                                                NA
## 216                                                NA
## 217                                                NA
## 218                                                NA
## 219                                                NA
## 220                                                NA
## 221                           https://t.co/bmTOycv0yb
## 222                                                NA
## 223                                                NA
## 224                                                NA
## 225                           https://t.co/97hsfDc8Kb
## 226                                                NA
## 227                                                NA
## 228                           https://t.co/3ZBTTbONGM
## 229                                                NA
## 230                                                NA
## 231                           https://t.co/aNn5abmCsV
## 232                                                NA
## 233                                                NA
## 234                           https://t.co/o8U2TO0q6R
## 235                           https://t.co/au1t4HcfCE
## 236                           https://t.co/hVOhWrPsQ9
## 237                           https://t.co/mkLk39Uzvu
## 238                           https://t.co/qLEqXRwLrl
## 239                                                NA
## 240                                                NA
## 241                                                NA
## 242                           https://t.co/t1ZLtGMtAi
## 243                           https://t.co/xUkaTLJQWJ
## 244                           https://t.co/kqFboE8eDQ
## 245                                                NA
## 246                                                NA
## 247                                                NA
## 248                                                NA
## 249                                                NA
## 250                           https://t.co/yAUElNulUe
## 251                           https://t.co/Dw24jcCLuX
## 252                                                NA
## 253                                                NA
## 254                                                NA
## 255                           https://t.co/P63TvNraFf
## 256                           https://t.co/0w0xoQVDFT
## 257                           https://t.co/YkulvpoHBP
## 258                           https://t.co/wdWywlo8mi
## 259                                                NA
## 260                           https://t.co/hJdIu0ttTm
## 261                                                NA
## 262                                                NA
## 263                           https://t.co/etLNcCpA6o
## 264                           https://t.co/L0EEsvJtn6
## 265                                                NA
## 266                                                NA
## 267                                                NA
## 268                           https://t.co/mDGFiymOp6
## 269                                                NA
## 270                           https://t.co/XWAz7LxnMK
## 271                                                NA
## 272                           https://t.co/IEUejlzoRp
## 273                                                NA
## 274                                                NA
## 275                                                NA
## 276                                                NA
## 277                                                NA
## 278                           https://t.co/qRUzW2Pn1R
## 279                           https://t.co/BHeHiHYbQs
## 280                                                NA
## 281                                                NA
## 282                           https://t.co/117YO954kB
## 283                                                NA
## 284                           https://t.co/e8amqrxJYi
## 285                                                NA
## 286                                                NA
## 287                           https://t.co/x0gjYSiewb
## 288                           https://t.co/II6XsDHiXb
## 289                           https://t.co/1MpVLhQCNC
## 290                                                NA
## 291                                                NA
## 292                                                NA
## 293                                                NA
## 294                           https://t.co/ff1MYXEQeI
## 295                           https://t.co/82ly58RwR7
## 296                           https://t.co/t2imJxJlpW
## 297                           https://t.co/sZtZLoiO7d
## 298                                                NA
## 299                           https://t.co/f91q072BDg
## 300                                                NA
## 301                                                NA
## 302                           https://t.co/0tdWv7CKR9
## 303                                                NA
## 304                           https://t.co/iv8jSYdeK7
## 305                                                NA
## 306                                                NA
## 307                                                NA
## 308                                                NA
## 309                                                NA
## 310                                                NA
## 311                                                NA
## 312                           https://t.co/XmPzUBRYTy
## 313                           https://t.co/2YNTsrqqON
## 314                                                NA
## 315                           https://t.co/grxeEZrmN7
## 316                           https://t.co/OHS3TXQDa0
## 317                                                NA
## 318                                                NA
## 319                                                NA
## 320                                                NA
## 321                                                NA
## 322                                                NA
## 323                           https://t.co/KaT4U8CZRf
## 324                           https://t.co/4JPq2yOfhC
## 325                           https://t.co/z5R00lFCac
## 326                                                NA
## 327                                                NA
## 328                                                NA
## 329                           https://t.co/3hl6kV3FG8
## 330                           https://t.co/G2QNzHvb2r
## 331                           https://t.co/Chiunbl7TR
## 332                                                NA
## 333                           https://t.co/QGyKwHemXv
## 334                           https://t.co/MNvL0bJCVT
## 335                                                NA
## 336                                                NA
## 337                           https://t.co/iNdLq1Dyx1
## 338                                                NA
## 339                                                NA
## 340                                                NA
## 341                                                NA
## 342                           https://t.co/UlM7gtcXdV
## 343                           https://t.co/kwCnwKvTny
## 344                                                NA
## 345                                                NA
## 346                                                NA
## 347                           https://t.co/IueCkfTJxq
## 348                                                NA
## 349                                                NA
## 350                           https://t.co/xjoPqoFWSA
## 351                                                NA
## 352                           https://t.co/k7pm0AIJMF
## 353                           https://t.co/B61iN0rx5u
## 354                           https://t.co/XASDMq3tpj
## 355                           https://t.co/3NWzPLnhJA
## 356                                                NA
## 357                                                NA
## 358                                                NA
## 359                                                NA
## 360                                                NA
## 361                           https://t.co/fvcDLRCz5d
## 362                           https://t.co/7qMB6pq3QI
## 363                                                NA
## 364                                                NA
## 365                           https://t.co/reGthF81zd
## 366                                                NA
## 367                                                NA
## 368                                                NA
## 369                                                NA
## 370                           https://t.co/lIaTky9qfG
## 371                           https://t.co/TG7e6uiDpg
## 372                                                NA
## 373                                                NA
## 374                                                NA
## 375                           https://t.co/AJdTwRKLqZ
## 376                                                NA
## 377                                                NA
## 378                                                NA
## 379                                                NA
## 380                           https://t.co/kjgy0N1aXJ
## 381                                                NA
## 382                           https://t.co/DMTUbj0RWZ
## 383                           https://t.co/EeVPnFOora
## 384                                                NA
## 385                           https://t.co/D2m8LtjPW5
## 386                                                NA
## 387                           https://t.co/ObYrBl4vGT
## 388                                                NA
## 389                                                NA
## 390                                                NA
## 391                           https://t.co/O7J9zzG8lP
## 392                                                NA
## 393                           https://t.co/weatms3ofI
## 394                                                NA
## 395                           https://t.co/zxj4lkfj5L
## 396                                                NA
## 397                           https://t.co/msEVzytIs5
## 398                           https://t.co/XX6Wmy9Gpc
## 399                           https://t.co/hwnTQ8uBCg
## 400                           https://t.co/OtUFEEn56J
## 401                           https://t.co/bdgJ2rfHB0
## 402                           https://t.co/nWxbnx1fsh
## 403                                                NA
## 404                           https://t.co/RbLTERIFwc
## 405                           https://t.co/DOuRoPejaw
## 406                           https://t.co/RUAlOAaVg9
## 407                           https://t.co/5Xh3dgDfZQ
## 408                           https://t.co/E7MciQwVwL
## 409                                                NA
## 410                           https://t.co/2P36lkYxW9
## 411                                                NA
## 412                                                NA
## 413                                                NA
## 414                                                NA
## 415                                                NA
## 416                           https://t.co/MeLWQAsEAT
## 417                                                NA
## 418                                                NA
## 419                                                NA
## 420                           https://t.co/Nl0z3s2QBs
## 421                           https://t.co/BQjS0iQ0x5
## 422                           https://t.co/JC5cIFV742
## 423                           https://t.co/cl3pipXFnZ
## 424                                                NA
## 425                                                NA
## 426                                                NA
## 427                                                NA
## 428                           https://t.co/mh15WvWg6Z
## 429                           https://t.co/osftCNYgdh
## 430                           https://t.co/v9QItYEEpf
## 431                           https://t.co/qr9rWuTcyB
## 432                           https://t.co/J5f9XGDjAr
## 433                           https://t.co/0RqkT0rIQ3
## 434                           https://t.co/EQl7SsCxsL
## 435                           https://t.co/Vq87UtkWtR
## 436                           https://t.co/tHsyMqORQR
## 437                           https://t.co/jx4s7AbXYy
## 438                           https://t.co/rhk9TVUJuu
## 439                           https://t.co/IM31VeEEi6
## 440                           https://t.co/t7lh20zGnI
## 441                                                NA
## 442                                                NA
## 443                                                NA
## 444                                                NA
## 445                                                NA
## 446                           https://t.co/gvqN8KzIn7
## 447                           https://t.co/abthLjTthQ
## 448                                                NA
## 449                           https://t.co/p9W7vrSf5O
## 450                                                NA
## 451                           https://t.co/kUKRiwy6Hv
## 452                                                NA
## 453                                                NA
## 454                           https://t.co/wUw3xvTW6P
## 455                                                NA
## 456                           https://t.co/9vNzx1BXim
## 457                                                NA
## 458                                                NA
## 459                                                NA
## 460                                                NA
## 461                           https://t.co/KTdvwrFvyr
## 462                           https://t.co/Funl1Ge1To
## 463                           https://t.co/VqwbVFarEw
## 464                           https://t.co/negRwtagVe
## 465                           https://t.co/GcB5QS68Mg
## 466                                                NA
## 467                           https://t.co/4J9b3KijPc
## 468                                                NA
## 469                                                NA
## 470                                                NA
## 471                                                NA
## 472                                                NA
## 473                                                NA
## 474                                                NA
## 475                                                NA
## 476                           https://t.co/I833ZIJt0k
## 477                                                NA
## 478                           https://t.co/hIIfZIgxFB
## 479                           https://t.co/I0u825FVK8
## 480                                                NA
## 481                                                NA
## 482                                                NA
## 483                           https://t.co/Ad39bJy1mG
## 484                           https://t.co/lNtipy74ga
## 485                                                NA
## 486                                                NA
## 487                                                NA
## 488  https://t.co/LATTwWFr9v, https://t.co/C6OOAJllJ4
## 489                                                NA
## 490                           https://t.co/W8FyLbzJAf
## 491                                                NA
## 492                                                NA
## 493                           https://t.co/XKdE9gyOnE
## 494                           https://t.co/dvNbHV2ctR
## 495                                                NA
## 496                           https://t.co/W4ZNTUAz3a
## 497                                                NA
## 498                                                NA
## 499                           https://t.co/vqwqKxgtK6
## 500                                                NA
## 501                           https://t.co/s4yRMSoRVA
## 502                                                NA
## 503                           https://t.co/FURHpjQd5Q
## 504                           https://t.co/xGMhQb5g3j
## 505                                                NA
## 506                           https://t.co/T27qpvFmrL
## 507                                                NA
## 508                                                NA
## 509                                                NA
## 510                                                NA
## 511                           https://t.co/bjA5Xm2Wpu
## 512                                                NA
## 513                           https://t.co/pFXmDMLKmU
## 514                           https://t.co/F72rlJx3y7
## 515                                                NA
## 516                           https://t.co/cFu7J5y9ev
## 517                           https://t.co/sHP2ltEqMh
## 518                                                NA
## 519                                                NA
## 520                                                NA
## 521                                                NA
## 522                           https://t.co/0Y4Q9S3DEJ
## 523                                                NA
## 524                           https://t.co/08CzSuL98n
## 525                                                NA
## 526                                                NA
## 527                                                NA
## 528                           https://t.co/AAQ34KUdzQ
## 529                                                NA
## 530                           https://t.co/YfAUx55ayv
## 531                                                NA
## 532                           https://t.co/PyIxfjh526
## 533                           https://t.co/AjBlSVXiba
## 534                           https://t.co/NQdcbqwdbM
## 535                                                NA
## 536                           https://t.co/ylXP0997PH
## 537                                                NA
## 538                                                NA
## 539                           https://t.co/sQqTJ8NJ3J
## 540                           https://t.co/KgH1dxNXTY
## 541                                                NA
## 542                                                NA
## 543                                                NA
## 544                                                NA
## 545                           https://t.co/3tO48Nxjg5
## 546                           https://t.co/fdLdGUUtiR
## 547                                                NA
## 548                           https://t.co/8an5qXT3fW
## 549                                                NA
## 550                           https://t.co/yfic5sCObv
## 551                                                NA
## 552                           https://t.co/UcNBlPm60T
## 553                           https://t.co/w9nUSVteUp
## 554                                                NA
## 555                           https://t.co/wtGbUlpFxQ
## 556                                                NA
## 557                                                NA
## 558                           https://t.co/z8NXeONtIH
## 559                           https://t.co/Cjp3HW9FPm
## 560                           https://t.co/dv9BqgCINX
## 561                           https://t.co/xUgSKv0aZj
## 562                           https://t.co/JiKfy3g1pu
## 563                           https://t.co/b8ZmAo8DUE
## 564                                                NA
## 565                                                NA
## 566                           https://t.co/KPc3D7OFqH
## 567                                                NA
## 568                           https://t.co/4buta1o07x
## 569                                                NA
## 570                           https://t.co/IkSHOPEHnl
## 571                           https://t.co/6jSakhuKjp
## 572                           https://t.co/NFASM7AQ3C
## 573                                                NA
## 574                                                NA
## 575                           https://t.co/ZyzL8J5Uo3
## 576                           https://t.co/DOK8mDMelR
## 577                                                NA
## 578                           https://t.co/eoLvvnny7y
## 579                           https://t.co/k9rtuWiv98
## 580                                                NA
## 581                           https://t.co/RZRsMYsfFA
## 582                                                NA
## 583                           https://t.co/D6jCAz8BtW
## 584                                                NA
## 585                           https://t.co/wRMzlQLAzm
## 586                           https://t.co/Hd1VeGSmKw
## 587                           https://t.co/u1tHxkU3E2
## 588                           https://t.co/qmBS4cRRQT
## 589                                                NA
## 590                                                NA
## 591  https://t.co/bUE9vnWfWR, https://t.co/mKVlNckp4B
## 592                                                NA
## 593                                                NA
## 594                                                NA
## 595                                                NA
## 596                           https://t.co/1nR1OtLtyu
## 597                                                NA
## 598                                                NA
## 599                                                NA
## 600                                                NA
## 601                           https://t.co/GAZOzEbByA
## 602                                                NA
## 603                           https://t.co/CcFxjvjgnW
## 604                           https://t.co/UY8tI2K5Ah
## 605                                                NA
## 606                           https://t.co/58Sf3hoDwu
## 607                           https://t.co/ojK2GfR4s3
## 608                                                NA
## 609                           https://t.co/zI98subOKJ
## 610                                                NA
## 611                           https://t.co/gaPdVW983J
## 612                                                NA
## 613                           https://t.co/4GSdZWDLo3
## 614                           https://t.co/iEbBxdjRkx
## 615                           https://t.co/IjkNSrI8ke
## 616                           https://t.co/ZGwH5sBV5Z
## 617                           https://t.co/JECECN4NXW
## 618                                                NA
## 619                           https://t.co/zhfh8CbGdN
## 620                           https://t.co/dSTuCszjbS
## 621                           https://t.co/C8L1REAeJd
## 622                                                NA
## 623                           https://t.co/NWy9IhglxL
## 624                                                NA
## 625                                                NA
## 626                                                NA
## 627                                                NA
## 628                                                NA
## 629                                                NA
## 630                           https://t.co/pCBt2EwkIw
## 631                           https://t.co/Klk1ek2Lb4
## 632  https://t.co/Rxf1nK6HK4, https://t.co/P0Qinv6L5p
## 633                           https://t.co/HUXOw4qc6L
## 634                                                NA
## 635                           https://t.co/VB4TNmN3qt
## 636                           https://t.co/dux7G6UP2S
## 637                           https://t.co/XeskwAapQb
## 638                           https://t.co/UTt2cFuMm0
## 639                           https://t.co/g8nNI6KWPz
## 640                                                NA
## 641  https://t.co/2r6e5W5ChE, https://t.co/bjJg0OOkWU
## 642                                                NA
## 643                           https://t.co/tk4NNGPDD8
## 644                                                NA
## 645                                                NA
## 646                                                NA
## 647                           https://t.co/735OlTKDNw
## 648                                                NA
## 649                           https://t.co/rgIDFVCImq
## 650                           https://t.co/kR2hGSZfJA
## 651                           https://t.co/AgJoq6VCPN
## 652                                                NA
## 653                                                NA
## 654                           https://t.co/1XIUKUmf8I
## 655                           https://t.co/ej71mECRsJ
## 656                           https://t.co/IvhreWe61E
## 657                                                NA
## 658                                                NA
## 659                                                NA
## 660                                                NA
## 661                           https://t.co/sBZax17rK3
## 662                                                NA
## 663                                                NA
## 664                           https://t.co/9biBrfyG0I
## 665                           https://t.co/j4lZIMyx2H
## 666                           https://t.co/Np8JFzRNlM
## 667                                                NA
## 668                                                NA
## 669                           https://t.co/crzOOIJe0m
## 670                                                NA
## 671                                                NA
## 672                                                NA
## 673                           https://t.co/fn9llf1Gvh
## 674                                                NA
## 675                                                NA
## 676                           https://t.co/GiAlJD2yxE
## 677                           https://t.co/AG1xPsViNR
## 678                                                NA
## 679                           https://t.co/xZsKBcGmxA
## 680                           https://t.co/dk5X3jzac2
## 681                           https://t.co/T7ytnFpof6
## 682                           https://t.co/QzVMFo5lSs
## 683                           https://t.co/rTKeXWJkUC
## 684                                                NA
## 685                           https://t.co/JSAeXxc9tt
## 686                                                NA
## 687                           https://t.co/t4w07S3n1l
## 688                           https://t.co/gvZzERvH83
## 689                                                NA
## 690                                                NA
## 691                                                NA
## 692                           https://t.co/7JARWU8TzU
## 693                           https://t.co/JBDgcQL6dL
## 694                                                NA
## 695                           https://t.co/LmaEok1mnT
## 696                                                NA
## 697                                                NA
## 698                                                NA
## 699                           https://t.co/72UQEcM7R8
## 700                                                NA
## 701                           https://t.co/FYS759cgqB
## 702                                                NA
## 703                           https://t.co/M1b9e6oB9I
## 704                                                NA
## 705                                                NA
## 706                                                NA
## 707                                                NA
## 708                           https://t.co/B9Bg4gfmID
## 709                                                NA
## 710                           https://t.co/jTVMDDgQYt
## 711                                                NA
## 712                                                NA
## 713                                                NA
## 714                                                NA
## 715                           https://t.co/L12gpsn77A
## 716                           https://t.co/jiZf0yvz71
## 717                           https://t.co/VbZBkpgKlE
## 718                           https://t.co/glhE1Q4iLP
## 719                                                NA
## 720                                                NA
## 721                           https://t.co/sumtdEcwBm
## 722                                                NA
## 723                           https://t.co/B9ICnj0B3Q
## 724                                                NA
## 725                           https://t.co/WhNQ6YkwwB
## 726                           https://t.co/nU3RaMPr9T
## 727                           https://t.co/A8KSXx4NqB
## 728                           https://t.co/I5qvbmO2Bi
## 729                                                NA
## 730                                                NA
## 731                           https://t.co/JuDoGZeouO
## 732                                                NA
## 733                                                NA
## 734                                                NA
## 735                                                NA
## 736                           https://t.co/HitbcO2Qgi
## 737                                                NA
## 738                                                NA
## 739                                                NA
## 740                           https://t.co/IfHj5g10Am
## 741                           https://t.co/Bh5eOH7aLd
## 742                           https://t.co/7aY8wj5rR6
## 743                                                NA
## 744                           https://t.co/LlW7R5m4IM
## 745                           https://t.co/RM3NIhRYH3
## 746                                                NA
## 747                           https://t.co/LWsZTni8Ny
## 748                           https://t.co/kPfkFLmAXN
## 749                                                NA
## 750                           https://t.co/B42klLEqYP
## 751                                                NA
## 752                                                NA
## 753                                                NA
## 754                                                NA
## 755                                                NA
## 756                                                NA
## 757                                                NA
## 758                                                NA
## 759                                                NA
## 760                                                NA
## 761                           https://t.co/cAv3LR9BuG
## 762                                                NA
## 763                                                NA
## 764                           https://t.co/1GI2FsMoX8
## 765                           https://t.co/6CeooFsUTH
## 766                           https://t.co/nHKpDDsDqH
## 767                                                NA
## 768                                                NA
## 769                           https://t.co/yAzBGdr5I0
## 770                           https://t.co/oilpNd1rtP
## 771                           https://t.co/jGd2XLkLQw
## 772                           https://t.co/MnTTsFTgcA
## 773                           https://t.co/fSOK06quf0
## 774                                                NA
## 775                                                NA
## 776                           https://t.co/vTcuKsIpi4
## 777                           https://t.co/44JOGIK5KE
## 778                           https://t.co/6qYbk61yyM
## 779                                                NA
## 780                                                NA
## 781                           https://t.co/yHTdAFjbaM
## 782                                                NA
## 783                                                NA
## 784                                                NA
## 785                           https://t.co/QhKArgld5E
## 786                                                NA
## 787                           https://t.co/vWJ9jKtFh7
## 788                           https://t.co/2wb1hnc1PS
## 789                           https://t.co/bikt9jCmf6
## 790                                                NA
## 791                                                NA
## 792                                                NA
## 793                                                NA
## 794                                                NA
## 795                           https://t.co/suneQPzB2q
## 796                                                NA
## 797                           https://t.co/q7yPKUW1PT
## 798                           https://t.co/eCeNnTCmUM
## 799                                                NA
## 800                           https://t.co/gOFKpWzTkG
## 801                                                NA
## 802                           https://t.co/Dw9ymM990b
## 803                           https://t.co/pMxGXUt6zF
## 804                           https://t.co/0UqG6OB0yT
## 805                           https://t.co/2GwMnWR4Qf
## 806                           https://t.co/kwPM2oHyjq
## 807                           https://t.co/tFB0vE6wby
## 808                                                NA
## 809                           https://t.co/KLQkgb9Mna
## 810                                                NA
## 811                                                NA
## 812                                                NA
## 813                                                NA
## 814                           https://t.co/ZYLsyOKjVX
## 815                           https://t.co/yw25wLATkN
## 816                                                NA
## 817                                                NA
## 818                                                NA
## 819                                                NA
## 820                                                NA
## 821                                                NA
## 822                                                NA
## 823                                                NA
## 824                           https://t.co/mQX7kyqmZr
## 825                           https://t.co/rIMheZDhb2
## 826                                                NA
## 827                           https://t.co/SPTqyRiOQg
## 828                                                NA
## 829                           https://t.co/u4UlGP5XMS
## 830                                                NA
## 831                                                NA
## 832                                                NA
## 833  https://t.co/Zl4N3DeRY8, https://t.co/WgPDG2ZLql
## 834                                                NA
## 835                                                NA
## 836                                                NA
## 837                           https://t.co/IwZtmSxauz
## 838                                                NA
## 839                           https://t.co/2FjUg0HSIT
## 840                           https://t.co/HyuK9JdzG7
## 841                                                NA
## 842                           https://t.co/vcCSDIWFPD
## 843                                                NA
## 844                           https://t.co/qehsOYrXj0
## 845                                                NA
## 846                           https://t.co/5ANYGt6QfA
## 847                           https://t.co/8BfJdDZdBD
## 848                                                NA
## 849                                                NA
## 850                                                NA
## 851                                                NA
## 852                                                NA
## 853                           https://t.co/1kaSk8xgIt
## 854                           https://t.co/OBuITC8Jix
## 855                           https://t.co/xkc5ZHNBDw
## 856                           https://t.co/XN2AoTrz3N
## 857                           https://t.co/WK9zWpXw0Z
## 858                                                NA
## 859                                                NA
## 860  https://t.co/gT11FKBBjB, https://t.co/jKCrJZ23Ob
## 861                                                NA
## 862                                                NA
## 863                                                NA
## 864                           https://t.co/mwcWPaXb3P
## 865                           https://t.co/gvIEKxRgSR
## 866                                                NA
## 867                                                NA
## 868                                                NA
## 869                           https://t.co/3shO2QqAbf
## 870  https://t.co/som8Vo31hx, https://t.co/mHN75bUZSs
## 871                                                NA
## 872                                                NA
## 873                           https://t.co/isre50lVgJ
## 874                           https://t.co/aPcTvnCoeA
## 875                                                NA
## 876                                                NA
## 877                                                NA
## 878                                                NA
## 879                                                NA
## 880                           https://t.co/X4HEX5JHGx
## 881                                                NA
## 882                                                NA
## 883                                                NA
## 884                           https://t.co/uGnyIu7z5v
## 885                           https://t.co/UHEWMQwiT7
## 886                                                NA
## 887                           https://t.co/8Z7LWbwTsn
## 888                                                NA
## 889                                                NA
## 890                                                NA
## 891                                                NA
## 892                           https://t.co/KNuKqkFq6W
## 893                           https://t.co/ftGNfQOZCs
## 894                                                NA
## 895                                                NA
## 896                                                NA
## 897                           https://t.co/0J2UdYHyh5
## 898                                                NA
## 899                           https://t.co/cJhEtRGhRE
## 900                                                NA
## 901                           https://t.co/2dkPJ9k9xB
## 902                                                NA
## 903                           https://t.co/u7fgBot5Tv
## 904                           https://t.co/SKg17kKpsn
## 905                           https://t.co/TKD1rHVXuG
## 906                                                NA
## 907                                                NA
## 908                                                NA
## 909                           https://t.co/XJWXlcrkqT
## 910                           https://t.co/Imrx2qns6c
## 911                           https://t.co/JpE26PkYyF
## 912                           https://t.co/4dZqoXpMEC
## 913                                                NA
## 914                           https://t.co/DxWtsIqtFF
## 915                                                NA
## 916                                                NA
## 917                                                NA
## 918                                                NA
## 919                                                NA
## 920                                                NA
## 921                           https://t.co/AVuel1HzGp
## 922                           https://t.co/hcVqgV9elW
## 923                                                NA
## 924                           https://t.co/QH3lzx2gBd
## 925                                                NA
## 926                                                NA
## 927                                                NA
## 928                           https://t.co/BvAhxMiRHF
## 929                                                NA
## 930                                                NA
## 931                                                NA
## 932                           https://t.co/Ji0M32jqYO
## 933                           https://t.co/CkcoAuein5
## 934                                                NA
## 935                                                NA
## 936                                                NA
## 937                           https://t.co/ftj3YIhuLB
## 938                           https://t.co/W5hrmxjdM8
## 939                           https://t.co/Any7SIYY9f
## 940                                                NA
## 941                                                NA
## 942                           https://t.co/avV6omaKZq
## 943                                                NA
## 944                           https://t.co/HPni9dYZvj
## 945                                                NA
## 946                           https://t.co/TRTQuuE3vz
## 947                           https://t.co/oznS17Am8r
## 948                           https://t.co/iRVQY7k2Os
## 949                                                NA
## 950                                                NA
## 951                           https://t.co/wpdrfbYi8A
## 952                           https://t.co/QVdaYRjsZf
## 953                                                NA
## 954                           https://t.co/YEy4fGBkI1
## 955                           https://t.co/zoGeNjSjho
## 956                           https://t.co/J0WQqI6rbQ
## 957                                                NA
## 958                                                NA
## 959                           https://t.co/Jmp4sF9vdy
## 960                           https://t.co/Nvpdlz2ebD
## 961                           https://t.co/zvvCE9pUmU
## 962                                                NA
## 963                                                NA
## 964                           https://t.co/NO6fW6OLDT
## 965                           https://t.co/JhlOHY8OZS
## 966                           https://t.co/VU0alTPtb5
## 967                                                NA
## 968                           https://t.co/TGrEkbJOon
## 969  https://t.co/Te5z0Bnzkj, https://t.co/Vt6oZN7uv3
## 970                           https://t.co/CZEsbGw7me
## 971                           https://t.co/HADrYV3oZf
## 972                           https://t.co/Tpldv5fqsc
## 973                                                NA
## 974                           https://t.co/hNxcbXa048
## 975                           https://t.co/ZG5GCq28xc
## 976                                                NA
## 977                           https://t.co/lCUh5VtDnj
## 978                                                NA
## 979                                                NA
## 980                           https://t.co/fOI1O1xXv8
## 981                                                NA
## 982                           https://t.co/jbD4zXzlQv
## 983                                                NA
## 984                           https://t.co/h54adrpSEF
## 985                           https://t.co/VWRMXJq4uJ
## 986                                                NA
## 987                                                NA
## 988                                                NA
## 989                                                NA
## 990                           https://t.co/h36VF9SMCn
## 991                           https://t.co/a4qcdeEGVu
## 992                           https://t.co/uizU0xdbB8
## 993                           https://t.co/IyKrPyWr4c
## 994                                                NA
## 995                           https://t.co/1kWZubylMy
## 996                           https://t.co/26EQ5L0t1x
## 997                           https://t.co/ONvasUyre5
## 998                           https://t.co/hS0W30EvwV
## 999                                                NA
## 1000 https://t.co/0LwoAur6Ku, https://t.co/oExgTtoGlf
## 1001                                               NA
## 1002                                               NA
## 1003                          https://t.co/LkzeBBtciV
## 1004                          https://t.co/3bWotGUn9f
## 1005                                               NA
## 1006                          https://t.co/1EHwvanxZY
## 1007                          https://t.co/zwEOOUd0CK
## 1008                                               NA
## 1009                          https://t.co/zhtvkrGUUu
## 1010                                               NA
## 1011                                               NA
## 1012                                               NA
## 1013                                               NA
## 1014                          https://t.co/5SEDi85GAg
## 1015                          https://t.co/6MJAOvXrZy
## 1016                                               NA
## 1017                          https://t.co/QVXvCwbulw
## 1018                                               NA
## 1019                          https://t.co/zrPiLLVnmO
## 1020                          https://t.co/ZrOMZwkvnC
## 1021                          https://t.co/9leh3vtXIn
## 1022                          https://t.co/SBP6xq7FCu
## 1023                          https://t.co/mvtONb166z
## 1024                          https://t.co/efRp90TfLj
## 1025                                               NA
## 1026                                               NA
## 1027                          https://t.co/ul8X6waKdg
## 1028                          https://t.co/SAXeiw7d61
## 1029                          https://t.co/pqqfhMtd6U
## 1030                          https://t.co/lZdhiIJX8Y
## 1031 https://t.co/nCkP3UkzlY, https://t.co/nCkP3UkzlY
## 1032 https://t.co/f9R7VUjaCc, https://t.co/nukPXIb3J6
## 1033                                               NA
## 1034                          https://t.co/8faQHI0v9s
## 1035                          https://t.co/rfKZlBNtRH
## 1036                                               NA
## 1037                          https://t.co/zDeny8WSR4
## 1038                                               NA
## 1039                          https://t.co/4HIjudcGIB
## 1040                          https://t.co/gSV0Euyh5t
## 1041                          https://t.co/IZ3pKZCVn3
## 1042                          https://t.co/6D1BtZoh0D
## 1043                                               NA
## 1044                                               NA
## 1045                          https://t.co/Jbh5ePCJvm
## 1046                          https://t.co/W0lf89o7Ug
## 1047                                               NA
## 1048                          https://t.co/9ILH5LndGB
## 1049                                               NA
## 1050                                               NA
## 1051                                               NA
## 1052                                               NA
## 1053                          https://t.co/Sc3KtuLFTn
## 1054                                               NA
## 1055                                               NA
## 1056                          https://t.co/RRvjOIRJAh
## 1057                          https://t.co/JgsqCIVtoX
## 1058                                               NA
## 1059                          https://t.co/pIvtB2IEIO
## 1060                          https://t.co/CiOfiRFPtU
## 1061                                               NA
## 1062                                               NA
## 1063                                               NA
## 1064                          https://t.co/z26AqKKkpO
## 1065                          https://t.co/QOHHCCRC2r
## 1066                          https://t.co/tdLpmZpSuC
## 1067                                               NA
## 1068                          https://t.co/TSCHy9iHSC
## 1069                                               NA
## 1070                          https://t.co/zaNtFmLzzP
## 1071                          https://t.co/2HPzs1wamU
## 1072                                               NA
## 1073                          https://t.co/qk684kNkes
## 1074                          https://t.co/5JUF9NQwJA
## 1075                          https://t.co/bSkoz2VY0q
## 1076                                               NA
## 1077                                               NA
## 1078                          https://t.co/9DT3MbI9e2
## 1079                                               NA
## 1080                          https://t.co/L0uygsNBhE
## 1081                                               NA
## 1082                                               NA
## 1083                          https://t.co/J5BV42FAhR
## 1084                          https://t.co/0J2UdYHyh5
## 1085                          https://t.co/JJLosPeKbN
## 1086                          https://t.co/9baIApgm6O
## 1087                                               NA
## 1088                                               NA
## 1089                          https://t.co/MHyljtw6Uk
## 1090                                               NA
## 1091                          https://t.co/f3mKiyaldR
## 1092                                               NA
## 1093                          https://t.co/RQOOmHvWHQ
## 1094                          https://t.co/1S6xlqjfu2
## 1095                                               NA
## 1096                                               NA
## 1097                                               NA
## 1098                          https://t.co/wCIQkvsaGn
## 1099                                               NA
## 1100                                               NA
## 1101                          https://t.co/WepwiaPF5k
## 1102                                               NA
## 1103                          https://t.co/5ShlIphav0
## 1104                                               NA
## 1105                          https://t.co/oj9Okfd0ja
## 1106                          https://t.co/NWAs8Rhwb4
## 1107                          https://t.co/PGtD1WMdSz
## 1108                                               NA
## 1109                                               NA
## 1110                          https://t.co/VD93Ko17nD
## 1111                                               NA
##                                                                                                                                                                                                                                                                                 urls_expanded_url
## 1                                                                                                                                                                                                    https://www.eater.com/2020/3/26/21196308/trump-restaurants-comeback-coronavirus-covid-19-lol
## 2                                                                                                                                                                                                                                                                                              NA
## 3                                                                                                                                                                                                                                                                                              NA
## 4                                                                                                                                                                                                                                     https://twitter.com/yascha_mounk/status/1243338196374740994
## 5                                                                                                                                                                                                                                   https://twitter.com/patciccantelli/status/1243300739042156547
## 6                                                                                                                                                                                                                                                                         https://trib.al/JYd9rsk
## 7                                                                                                                                                                                                                              https://www.walb.com/2020/03/26/sgmc-releases-daily-covid-numbers/
## 8                                                                                                                                                                                                                                                                          https://bit.ly/39knRC8
## 9                                                                                                                                                                                                                                  https://twitter.com/AynRandPaulRyan/status/1243236942017253376
## 10                                                                                                                                                                                                                                                                                             NA
## 11                                                                                                                                                                                                                                                                                             NA
## 12                                                                                                                                                                                                                                                                                             NA
## 13                                                                                                                                                                                                                                                                                             NA
## 14                                                                                                                                                                                                                                                                                             NA
## 15                                                                                                                                                                                                                                                                        https://theppedrive.com
## 16                                                                                                                                                                                                                      https://news.communitech.ca/view-from-the-loo-when-waterloo-region-helps/
## 17                                                                                                                                                                                                                                                                                             NA
## 18                                                                                                                                                                                                                                                                                             NA
## 19                                                                                                                                                                                                                                                                                             NA
## 20                                                                                                                                                                                                                                                                                             NA
## 21                                                                                                                                                                                       https://www.zerohedge.com/health/bahrain-belgium-report-covid-19-treatment-touted-trump-working-patients
## 22                                                                                                                                                                                                                                                                          http://dlvr.it/RSdYSk
## 23                                                                                                                                                                                                                                                                                             NA
## 24                                                                                                                                                                                                                                                                                             NA
## 25                                                                                                                                                                                                                                                                                             NA
## 26                                                                                                                                                                                                                                                                                             NA
## 27                                                                                                                                                                                                                                            https://windsoressex.cmha.ca/events/covid19webinar/
## 28                                                                                                                                                                                                                                                                         https://bit.ly/2UHUjJm
## 29                                                                                                                                                                                                                                                                                             NA
## 30                                                                                                                                                                                                                 https://act.medicare4all.org/signup/ads-thank-a-nurse/?source=ads-twittershare
## 31                                                                                                                                                                                                                                                                                             NA
## 32                                                                                                                                             https://reason.com/2020/03/27/no-british-epidemiologist-neil-ferguson-has-not-drastically-downgraded-his-worst-case-projection-of-covid-19-deaths/
## 33                                                                                                                                                                                                                                                                                             NA
## 34                                                                                                                                                                                                                                                                        https://pcma.co/2WPr4XY
## 35                                                                                                                                                                                                                              https://capellhoward.com/new-policies-and-postings-in-a-pandemic/
## 36                                                                                                                                                                                                                                        https://twitter.com/BBCWorld/status/1243723231208640513
## 37                                                                                                                                                                                                                                                                                             NA
## 38                                                                                                                                                                                                                                                                                             NA
## 39                                                                                                                                                                                             https://talk.crisisnow.com/covid-19-behavioral-health-core-crisis-continuum-as-essential-services/
## 40                                                                                                                                                                                                                                                                                             NA
## 41                                                                                                                                                                                                                                                                                             NA
## 42                                                                                                                                                       https://7news.com.au/lifestyle/health-wellbeing/coronavirus-cases-soar-by-70-in-queensland-as-hospitalisations-reach-the-dozens-c-768634
## 43                                                                                                                                                                                                                                      https://twitter.com/jaketapper/status/1243314620737236992
## 44                                                                                                                                                                                           https://www.ibtimes.sg/china-hiding-covid-19-death-toll-21-million-cell-phones-disappeared-why-41580
## 45                                                                                                                                                                                                                                                                                             NA
## 46                                                                                                                                                                                                                                                                         https://bit.ly/2vRhzMG
## 47                                                                                                                                                                                              https://theunaustralian.net/2020/03/26/queen-pissed-after-mi5-infect-the-wrong-son-with-covid-19/
## 48                                                                                                                                                                                                                                                                                             NA
## 49                                                                                                                                                                                                                                                                                             NA
## 50                                                                                                                                                                                                                                                                                             NA
## 51                                                                                                                                                                                                                                         https://twitter.com/BBCNews/status/1243548368820977670
## 52                                                                                                                                                                               https://www.gov.uk/guidance/claim-a-grant-through-the-coronavirus-covid-19-self-employment-income-support-scheme
## 53                                                                                                                                                                                                                                                                                             NA
## 54                                                                                                                                                                                                                                                                        https://noah.do/2ydpwg7
## 55                                                                                                                                                                                                                                                                                             NA
## 56                                                                                                                                                                                                           http://wbckfm.com/did-president-trump-call-covid-19-a-hoax/?trackback=twitter_mobile
## 57                                                                                                                                                                                                           http://www.cam.ac.uk/stories/wintoncovid1, http://www.cam.ac.uk/stories/wintoncovid1
## 58                                                                                                                                       https://spectrumlocalnews.com/nys/capital-region/news/2020/03/19/addiction-treatment-centers-make-adjustments-during-covid-19-pandemic?cid=share_twitter
## 59                                                                                                                                                                                                                                    https://threadreaderapp.com/thread/1243031554663665665.html
## 60                                                                                                                                                                                                                                                                                             NA
## 61                                                                                                                                                                                                                                                                                             NA
## 62                                                                                                                                       https://www.publishersweekly.com/pw/by-topic/childrens/childrens-industry-news/article/82808-children-s-books-and-games-on-the-rise-during-covid-19.html
## 63                                                                                                                                                                                                                                                                        https://fcld.ly/kia1kf3
## 64                                                                                                                                                                                              https://www.theprogress.com/opinion/column-four-reasons-to-hope-that-b-c-will-win-covid-19-fight/
## 65                                                                                                                                                                                                                            https://www.tactical-life.com/news/covid-19-uss-theodore-roosevelt/
## 66                                                                                                                                                                                                                                   https://www.instagram.com/p/B-QQ-R7JzdA/?igshid=d6v609a3fzds
## 67                                                                                                                                                                                                                                                  http://www.sobertool.com/forum/subjects/1401/
## 68                                                                                                                                                                                                                                                                                             NA
## 69                                                                                                                                                                                                                                                                                             NA
## 70                                                                                                                                                                                                                                                                                             NA
## 71                                                                                                                                                                                                                 https://www.sportbusiness.com/news/indy-500-shifted-to-august-due-to-covid-19/
## 72                                                                                                                                                                                                                                                                                             NA
## 73                                                                                                                                                                                                                                                                        https://yhoo.it/2UCpPIY
## 74                                                                                                                                                                                                                                                                                             NA
## 75                                                                                                                                                         https://mondoweiss.net/2020/03/gantz-will-block-annexation-palestinians-are-at-last-a-player-j-street-sees-upside-in-israeli-politics/
## 76                                                                                                                                                                                                                                       https://twitter.com/ShimonPro/status/1243680397055209474
## 77                                                                                                                                                                                                                                 https://twitter.com/RTELateLateShow/status/1243688448285909002
## 78                                                                                                                                                                                                                                                                                             NA
## 79                                                                                                                                                                                                                                                                                             NA
## 80                                                                                                                                                                                                                   http://civicscience.com/61-of-u-s-adults-are-stressed-about-the-coronavirus/
## 81                                                                                                                                                                                                                                                                                             NA
## 82                                                                                                                                                                                                                                                https://www.bu.edu/cs/news/calendar/?eid=240181
## 83                                                                                                                                                                                                                                                                                             NA
## 84                                                                                                                                                                                                                                                                                             NA
## 85                                                                                                                                                                                                                                                                                             NA
## 86                                                                                                                                                                                                                                                                                             NA
## 87                                                                                                                                                                                                                                                                                             NA
## 88                                                                                                                                                                                                                                                                                             NA
## 89                                                                                                                                                                                                                                                              https://dlap.pr/tPzAhfJXa1QEfpBd6
## 90                                                                                                                                                                                                                                                                                             NA
## 91                                                                                                                                                                                                                                                                                             NA
## 92                                                                                                                                                                                                                                                                                             NA
## 93                                                                                                                                                         https://www.express.co.uk/showbiz/tv-radio/1261284/disney-plus-uk-disney-shows-delayed-coronavirus-mulan-delayed-falcon-winter-soldier
## 94                                                                                                                                                                                                                                                                       http://ow.ly/ojuA50yXvxg
## 95                                                                                                                                                                                                                                                                                             NA
## 96                                                                                                                                                                                           https://witbanknews.co.za/lnn/950865/infographic-covid-19-update-927-confirmed-cases-in-south-africa
## 97                                                                                                                                                                                                                                                                                             NA
## 98                                                                                                                                                                                                      https://understandingmyositis.org/event/covid-19-myositis-patient-video-support-march-26/
## 99                                                                                                                                                                                                                                                                                             NA
## 100                                                                                                                                                                                                                                                                                            NA
## 101                                                                                                                                                                                                                                      https://refekids.com/freebies_book/coronavirus-covid-19/
## 102                                                                                                                                                                                                                                                                                            NA
## 103                                                                                                                                                                                                                                                                                            NA
## 104                                                                                                                                                                                                                                                                                            NA
## 105                                                                                                                                                                                                                                       https://twitter.com/ftmkrm83/status/1243631594314903552
## 106                                                                                                                                                                                                                                                                                            NA
## 107                                                                                                                                                                                                                                                                         http://dlvr.it/RSjRJm
## 108                                                                                                                                                                                                                                                                                            NA
## 109                                                                                                                                                                                                                                                                                            NA
## 110                                                                                                                                                                                                                                       https://twitter.com/ilnanews/status/1243813318034370562
## 111                                                                                                                                                                                                                                                                                            NA
## 112                                                                                                                                                                                                                                                                                            NA
## 113                                                                                                                                                                                                                                                                                            NA
## 114                                                                                                                                                                                                                                                                        https://bit.ly/3akDLxT
## 115                                                                                                                                                                                                       https://www.zerohedge.com/geopolitical/covid-19-not-even-close-americas-biggest-problem
## 116                                                                                                                                                                                                                                                                                            NA
## 117                                                                                                                                                                                  https://www.kget.com/health/coronavirus/christmas-lights-shining-hope-for-people-amid-the-covid-19-pandemic/
## 118                                                                                                                                                                                                                                                                       https://buff.ly/2wsD86K
## 119                                                                                                                                                      https://www.hindustantimes.com/india-news/clot-busting-drug-may-work-in-covid-19-emergency-researchers/story-0EYv4MLz7mn1eh0wa0bRZI.html
## 120                                                                                                                                                                                                                                       https://twitter.com/tvnewshq/status/1243309423184969730
## 121                                                                                                                                                                                                                                                                                            NA
## 122                                                                                                                                                                                                                                                                                            NA
## 123                                                                                                                                                                                                                                https://www.dailydot.com/debug/cellphone-heat-map-coronavirus/
## 124                                                                                                                                                                                                                                                                 http://680news.com/listenlive
## 125                                                                                                                                                                                                                                                                                            NA
## 126                                                                                                                                                                                                                                                                                            NA
## 127                                                                                                                                                                                                                                                                                            NA
## 128                                                                           https://www.darkreading.com/attacks-breaches/cyber-version-of-justice-league-launches-to-fight-covid-19-related-hacks-/d/d-id/1337424?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simple&utm_source=dlvr.it&utm_medium=twitter
## 129                                                                                                                                                                                                                https://www.readfrontier.org/multimedia/covid-19-in-oklahoma-podcast-march-26/
## 130                                                                                                                                                                                                                                                                                            NA
## 131                                                                                                                                                                                                                                       https://twitter.com/DokuFest/status/1243613671634407437
## 132                                                                                                                                                                       https://www.indiatimes.com/trending/human-interest/bengaluru-doctor-cure-for-covid-19-ready-for-trials-soon-509476.html
## 133                                                                                                                                                         https://www.msn.com/en-us/news/politics/fauci-says-us-needs-to-be-prepared-for-coronavirus-to-be-cyclical/ar-BB11I0s1?ocid=bingtonews
## 134                                                                                                                                                                                                                                                                        https://ift.tt/33P75Kv
## 135                                                                                                                                                                                                                                                                                            NA
## 136                                                                                                                                                                                 http://www.abc.net.au/news/2020-03-28/coronavirus-restrictions-prompt-farmers-help-house-grey-nomads/12098228
## 137                                                                                                                                                                                                                                                                                            NA
## 138                                                                                                                                                                            https://www.vox.com/policy-and-politics/2020/3/24/21188121/coronavirus-covid-19-social-distancing-1918-spanish-flu
## 139                                                                                                                                                                                        https://danielgillis.wordpress.com/2020/03/27/introducing-the-monitoring-covid-19-in-canada-dashboard/
## 140                                                                                                                                                                                                                                                                 http://bit.ly/GCHealthPodcast
## 141                                                                                                                                                                                                                                                                                            NA
## 142                                                                                                                                                                                                                                  https://mailchi.mp/2cc9f0f54af5/e-merriam-news-march-2718614
## 143                                                                                                                                                                                                                                                                                            NA
## 144                                                                                                          https://www.thegatewaypundit.com/2020/03/update-kathy-griffin-released-from-hospital-with-abdominal-infection-still-blames-trump-after-hospital-refuses-to-test-her-for-coronavirus/
## 145                                                                                                                                                                                                                                                                        https://bit.ly/33Lr3po
## 146                                                                                                                                                                                                      https://www.spectator.co.uk/article/The-evidence-on-Covid-19-is-not-as-clear-as-we-think
## 147                                                                                                                                                                                                                                                                                            NA
## 148                                                                                                                                                                                                                                                                                            NA
## 149                                                                                                                                                                                  https://www.bazecity.com/sowore-alleges-plan-by-fgn-to-inject-him-with-covid-19-over-abba-kyari-news-report/
## 150                                                                                                                                                                                                                                                       https://www.dkms.org.uk/en/register-now
## 151                                                                                                                                                                                                                                                                                            NA
## 152                                                                                                                                                                                                                                                                                            NA
## 153                                                                                                                                                                                                                                                                                            NA
## 154                                                                                                                                                                                                                                     https://twitter.com/JuliusGoat/status/1243114650314702849
## 155                                                                                                                                                                                                                                                                        https://bit.ly/33ObvRD
## 156                                                                                                                                                                                                                                                                                            NA
## 157                                                                                                                                                                                                                                                                                            NA
## 158                                                                                                                                                                https://www.democratandchronicle.com/story/news/2020/03/26/coronavirus-rochester-ny-monroe-county-updates-covid-19/5082555002/
## 159                                                                                                                                                                                                                                                                       https://lnkd.in/gE3GV6h
## 160                                                                                                                      https://www.businessinsider.com/what-the-2-trillion-stimulus-bill-means-healthcare-industry-2020-3?utmSource=twitter&utmContent=referral&utmTerm=topbar&referrer=twitter
## 161                                                                                                                                                                                                                                                                                            NA
## 162                                                                                                                                                                                   https://www.agriculture.com/news/crops/covid-19-shouldn-t-impact-2020-seed-fertilizer-and-chemical-supplies
## 163                                                                                                                                                                                                                                                                                            NA
## 164                                                                                                                                                                                                      https://www.instagram.com/p/B-QW0C2n7JQ4ZZqtDe_LPBYbc39jqv9G8rb4lc0/?igshid=iw4kdhxya43c
## 165                                                                                                                                            https://www.cnbc.com/2020/03/27/coronavirus-trump-told-pence-not-to-call-washington-michigan-governors.html?__source=sharebar|twitter&par=sharebar
## 166                                                                                                                                                                                                                                    https://twitter.com/CityofMiami/status/1242558186659381251
## 167                                                                                                                                                                                                                                                                                            NA
## 168                                                                                                                                                                                  https://worldnewsdailyreport.com/covid-19-chinese-health-authorities-confirm-patient-zero-had-sex-with-bats/
## 169                                                                                                                                                                                                                                                                                            NA
## 170                                                                                                                                            https://www.northwestmoinfo.com/local-news/additional-information-released-on-sw-iowa-covid-19-case/?utm_medium=social&utm_source=twitter_NWMOInfo
## 171                                                                                                                                                                                                                                                                                            NA
## 172                                                                                                                                                                                                                                    https://twitter.com/PrabhasRaju/status/1243240965760057344
## 173                                                                                                                                                                                                                                  https://twitter.com/NW_MoneySense/status/1242823768831131649
## 174                                                                                                                                                                                                                                                                                            NA
## 175                                                                                                                                                                                                                                                                                            NA
## 176                                                                                                                                                                                                                                                    https://covid19.healthdata.org/projections
## 177                                                                                                                                                                                                                                                                         http://dlvr.it/RScgZq
## 178                                                                                                                                                                                                                                                                                            NA
## 179                                                                                                                                       https://www.vcstar.com/picture-gallery/news/2020/03/18/california-coronavirus-updates-covid-19-business-closures-photos/5075353002/?cid=twitter_salnews
## 180                                                                                                                                                  https://www.thedrive.com/the-war-zone/32772/now-both-aircraft-carriers-in-the-western-pacific-have-covid-19-cases-raising-readiness-concerns
## 181                                                                                                                                                                                                                                                                                            NA
## 182                                                                                                                                                                                                                                                                                            NA
## 183                                                                                                                                                                                                                                                                                            NA
## 184                                                                                                                                                                                                                                https://twitter.com/StephenMcDonell/status/1243708856644956160
## 185                                                                                                                                                                                                                             https://jamanetwork.com/journals/jamaoncology/fullarticle/2763673
## 186                                                                                                                                                                                                                                   https://twitter.com/KemiOlunloyo/status/1243717473440075776
## 187                                                                                                                                                                                                                                                                                            NA
## 188                                                                                                                                                                                                                                                                                            NA
## 189                                                                                                                                                                                                                                                                                            NA
## 190                                                                                            https://www.gov.uk/government/publications/guidance-to-employers-and-businesses-about-covid-19/covid-19-support-for-businesses#support-for-businesses-through-the-coronavirus-job-retention-scheme
## 191                                                                                                                                                                                                                                          https://science.sciencemag.org/content/367/6485/1435
## 192                                                                                                                                                                                                                                                                  https://youtu.be/oK44eBUNbT0
## 193                                                                                                                                                                                                        http://www.wilsontimes.com/stories/free-tax-help-postponed,204916#.Xn73CXjN7xg.twitter
## 194                                                                                                                                                                                                                                                                                            NA
## 195                                                                                                                                                                                                                                                                                            NA
## 196                                                                                                                                                                                    https://www.pscp.tv/w/cUuPdTFXTEtSWUJWbk9PUWJ8MW1ueGVRV1p3Wm54WJ1V8pwS5G09MA6ghgWut42z68YV2i7VfQVSryGEWEr_
## 197                                                                                                                                                                                                                                                                                            NA
## 198                                                                                                                                                                                                                                                                                            NA
## 199                                                                                                                                                                                                                                                                                            NA
## 200                                                                                                                                                                                                                                                                                            NA
## 201                                                                                                                                                                                                                                                                                            NA
## 202  https://www.simcoereformer.ca/news/provincial/disgusting-doug-ford-denounces-price-gouging-at-toronto-grocery-store/wcm/d2e9109f-9933-4cfc-9499-7c2a42cddf82, https://www.kitchenertoday.com/coronavirus-covid-19-local-news/ontario-preparing-an-anti-price-gouging-order-ford-says-2202590
## 203                                                                                                                                                                                              https://bareskymarketing.com/blog/introducing-the-covid-19-high-performance-computing-consortium
## 204                                                                                                                                                                                                                https://www.jdsupra.com/legalnews/covid-19-vaccine-test-lab-hit-by-maze-88329/
## 205                                                                                                                                                                                                                                                                                            NA
## 206                                                                                                                                                                                                                                                               https://principal.la/covid.html
## 207                                                                                                                                                                                                                                                                       https://buff.ly/33AlSbA
## 208                                                                                                                                                                                                 http://www.abc.net.au/news/2020-03-25/coronavirus-covid-19-modelling-stay-home-chart/12084144
## 209                                                                                                                                                                                                                                                                                            NA
## 210                                                                                                                                                                                                                                                 https://www.bing.com/covid/local/unitedstates
## 211                                                                                                                                                                                                                                                                                            NA
## 212                                                                                                                                                                                                                                                                        https://ift.tt/3buonip
## 213                                                                                                                                                                                                                                                                                            NA
## 214                                                                                                                                                                                                                                                                       https://trib.al/clPBF1v
## 215                                                                                                                                                                                                                                                                                            NA
## 216                                                                                                                                                                                                                                                                                            NA
## 217                                                                                                                                                                                                                                                                                            NA
## 218                                                                                                                                                                                                                                                                                            NA
## 219                                                                                                                                                                                                                                                                                            NA
## 220                                                                                                                                                                                                                                                                                            NA
## 221                                                                                                                                                    https://gazette.com/news/callers-flood-dispatch-lines-to-report-those-not-following-stay/article_5eeb3488-6f93-11ea-a88a-abfca6e256c2.html
## 222                                                                                                                                                                                                                                                                                            NA
## 223                                                                                                                                                                                                                                                                                            NA
## 224                                                                                                                                                                                                                                                                                            NA
## 225                                                                                                                                                                                                                                        https://twitter.com/BigElad/status/1243554691973353483
## 226                                                                                                                                                                                                                                                                                            NA
## 227                                                                                                                                                                                                                                                                                            NA
## 228                                                                                                                                                                                                                                                                       https://nyti.ms/3bApexZ
## 229                                                                                                                                                                                                                                                                                            NA
## 230                                                                                                                                                                                                                                                                                            NA
## 231                                                                                                                                                                                                                                 https://twitter.com/RFKHumanRights/status/1243540142838685696
## 232                                                                                                                                                                                                                                                                                            NA
## 233                                                                                                                                                                                                                                                                                            NA
## 234                                                                                                                                                                                                                                  https://twitter.com/justintrudeau/status/1243283431217340416
## 235                                                                                                                                                                                                                                                    https://www.worldometers.info/coronavirus/
## 236                                                                                                                                                                                                                    https://www.tes.com/news/covid-19-can-t-level-providers-be-ready-september
## 237                                                                                                                                                                                                           https://www.theregister.co.uk/2020/03/25/it_services_application_software_covid_19/
## 238                                                                                                                                                  https://www.bostonglobe.com/2020/03/26/metro/dozens-boston-hospital-staffers-have-contracted-coronavirus/?s_campaign=breakingnews:newsletter
## 239                                                                                                                                                                                                                                                                                            NA
## 240                                                                                                                                                                                                                                                                                            NA
## 241                                                                                                                                                                                                                                                                                            NA
## 242                                                                                                                                                                                                                                              https://twitter.com/i/events/1243675260076969984
## 243                                                                                                                                                                                                                                    https://twitter.com/yo_boi_erik/status/1243042745343782912
## 244                                                                                                                                                                              https://mothership.sg/2020/03/covid-19-mexicans-demand-americans-stop-crossing-border-as-it-spreads-coronavirus/
## 245                                                                                                                                                                                                                                                                                            NA
## 246                                                                                                                                                                                                                                                                                            NA
## 247                                                                                                                                                                                                                                                                                            NA
## 248                                                                                                                                                                                                                                                                                            NA
## 249                                                                                                                                                                                                                                                                                            NA
## 250                                                                                                                                                                                                                                                                  https://youtu.be/sjDuwc9KBps
## 251                                                                                                                                                                                                    http://wsls.com/news/2020/03/26/coronavirus-delivers-tough-blow-to-lebanons-dying-economy/
## 252                                                                                                                                                                                                                                                                                            NA
## 253                                                                                                                                                                                                                                                                                            NA
## 254                                                                                                                                                                                                                                                                                            NA
## 255                                                                                                                                                                                                                                                                      http://ow.ly/RdNJ50yXOeJ
## 256                                                                                                                                                                                                                                     https://twitter.com/davidzodda/status/1243690469172879362
## 257                                                                                                                                                                                                                                                                         http://dlvr.it/RSd1rK
## 258                                                                                                                                                                                                                                https://twitter.com/realDonaldTrump/status/1242905328209080331
## 259                                                                                                                                                                                                                                                                                            NA
## 260                                                                                                                                                                                                                                 https://twitter.com/eatlikeanimals/status/1242691788122382337
## 261                                                                                                                                                                                                                                                                                            NA
## 262                                                                                                                                                                                                                                                                                            NA
## 263                                                                                                                                                                                                                                        https://twitter.com/cypstnn/status/1243550363686449152
## 264                                                                                           https://www.bbc.com/news/world-africa-52053738?at_custom2=twitter&at_campaign=64&at_custom4=8F97D360-6F85-11EA-A923-97A44744363C&at_medium=custom7&at_custom1=%5Bpost+type%5D&at_custom3=BBC+Africa
## 265                                                                                                                                                                                                                                                                                            NA
## 266                                                                                                                                                                                                                                                                                            NA
## 267                                                                                                                                                                                                                                                                                            NA
## 268                                                                                                                                                                                                                                                                      http://ow.ly/LrP050yYaDQ
## 269                                                                                                                                                                                                                                                                                            NA
## 270                                                                                                                                                                                                                                   https://twitter.com/AliZafarsays/status/1243569907201118208
## 271                                                                                                                                                                                                                                                                                            NA
## 272                                                                                                                                                                                                     https://www.auedbaki.com/article/top-pandemic-related-games-on-the-internet-1585247281561
## 273                                                                                                                                                                                                                                                                                            NA
## 274                                                                                                                                                                                                                                                                                            NA
## 275                                                                                                                                                                                                                                                                                            NA
## 276                                                                                                                                                                                                                                                                                            NA
## 277                                                                                                                                                                                                                                                                                            NA
## 278                                                                                                                                                                                                                                         https://twitter.com/5_News/status/1242900678311362561
## 279                                                                                                                                                                                                                                     https://twitter.com/yoursvivek/status/1243580036118204423
## 280                                                                                                                                                                                                                                                                                            NA
## 281                                                                                                                                                                                                                                                                                            NA
## 282                                                                                                                                                                                                                                   https://twitter.com/TexasTribune/status/1243183681671397377
## 283                                                                                                                                                                                                                                                                                            NA
## 284                                                                                                                                                                                                                                                                      http://disq.us/t/3n8wb0m
## 285                                                                                                                                                                                                                                                                                            NA
## 286                                                                                                                                                                                                                                                                                            NA
## 287                                                                                                                                                                                                                                https://twitter.com/TheWisemanSaid2/status/1243345750521757700
## 288                                                                                                                                                                                                                                                             https://trendingatoz.com/?p=30798
## 289                                                                                                                                                                                                                                                                       https://abcn.ws/2vRVu0D
## 290                                                                                                                                                                                                                                                                                            NA
## 291                                                                                                                                                                                                                                                                                            NA
## 292                                                                                                                                                                                                                                                                                            NA
## 293                                                                                                                                                                                                                                                                                            NA
## 294                                                                                                                                                                                                                                                                        http://buff.ly/2wH97QB
## 295                                                                                                                                   https://www.npr.org/sections/coronavirus-live-updates/2020/03/27/822637676/d-c-mayor-says-lack-of-stimulus-funds-infuriating-while-staffer-dies-of-covid-19
## 296                                                                                                                                                             https://www.thepeterboroughexaminer.com/news-story/9918230-city-of-kawartha-lakes-now-has-27-covid-19-cases/#.Xn5mOi6qoPo.twitter
## 297                                                                                                                                                                                     https://www.abc.net.au/news/2020-03-27/insurer-tal-moves-to-exclude-people-who-die-from-covid-19/12093542
## 298                                                                                                                                                                                                                                                                                            NA
## 299                                                                                                                                                                                                                                       https://twitter.com/business/status/1243134126800220160
## 300                                                                                                                                                                                                                                                                                            NA
## 301                                                                                                                                                                                                                                                                                            NA
## 302                                                                                                                                                                                                                                    https://movingmarkets.org/us-coronavirus-cases-top-100000/
## 303                                                                                                                                                                                                                                                                                            NA
## 304                                                                                                                                                                                https://www.thepetitionsite.com/351/959/825/give-our-brave-first-responders-support-while-they-fight-covid-19/
## 305                                                                                                                                                                                                                                                                                            NA
## 306                                                                                                                                                                                                                                                                                            NA
## 307                                                                                                                                                                                                                                                                                            NA
## 308                                                                                                                                                                                                                                                                                            NA
## 309                                                                                                                                                                                                                                                                                            NA
## 310                                                                                                                                                                                                                                                                                            NA
## 311                                                                                                                                                                                                                                                                                            NA
## 312                                                                                                                                                                                                                                http://www.hani.co.kr/arti/society/society_general/933680.html
## 313                                                                                                                        https://www.msn.com/en-us/news/us/it-can-kill-anyone-perfectly-healthy-texas-father-of-six-44-dies-from-coronavirus-just-two-days-after-he-tested-positive/ar-BB11MQIg
## 314                                                                                                                                                                                                                                                                                            NA
## 315                                                                                                                                                      https://www.india.com/entertainment/fwice-writes-to-amitabh-bachchan-for-financial-help-as-shoot-suspension-extends-to-april-14-3982305/
## 316                                                                                                                                                                                                                                                                        https://bit.ly/2WZY4wP
## 317                                                                                                                                                                                                                                                                                            NA
## 318                                                                                                                                                                                                                                                                                            NA
## 319                                                                                                                                                                                                                                                                                            NA
## 320                                                                                                                                                                                                                                                                                            NA
## 321                                                                                                                                                                                                                                                                                            NA
## 322                                                                                                                                                                                                                                                                                            NA
## 323                                                                                                                                                                                                                                   https://twitter.com/alpeshpaleja/status/1243600808131911683
## 324                                                                                                                                                                                                                                                                        https://bit.ly/2UDvRc5
## 325                                                                                                                                                                                      https://juicyupdate.com.ng/2020/03/27/covid-19-nnamdi-kanu-announces-donation-of-n50m-to-fight-covid-19/
## 326                                                                                                                                                                                                                                                                                            NA
## 327                                                                                                                                                                                                                                                                                            NA
## 328                                                                                                                                                                                                                                                                                            NA
## 329                                                                                                                                                                              https://www.gov.uk/guidance/claim-a-grant-through-the-coronavirus-covid-19-self-employment-income-support-scheme
## 330                                                                                                                                                                   https://theworldinnews.com/covid-19-india-this-is-how-local-police-punish-anyone-who-violates-nations-21-day-lockdown-5653/
## 331                                                                                                                                                                                                                                                                     https://tmsnrt.rs/2UnFDjy
## 332                                                                                                                                                                                                                                                                                            NA
## 333                                                                                                                                                                                                                                  https://twitter.com/GodButnotKira/status/1243586376513224705
## 334                                                                                                                                                                                                                                                                    http://tinyurl.com/wcbn9kj
## 335                                                                                                                                                                                                                                                                                            NA
## 336                                                                                                                                                                                                                                                                                            NA
## 337                                                                                                                                                                                                                                                    https://apple.news/Ak8y_DkyUQ72mF0P8MZPjcA
## 338                                                                                                                                                                                                                                                                                            NA
## 339                                                                                                                                                                                                                                                                                            NA
## 340                                                                                                                                                                                                                                                                                            NA
## 341                                                                                                                                                                                                                                                                                            NA
## 342                                                                                                                                                                                                                                                    http://a.msn.com/05/en-us/BB11NKVJ?ocid=st
## 343                                                                                                                                                                                                                                                                       https://buff.ly/2LqrP0m
## 344                                                                                                                                                                                                                                                                                            NA
## 345                                                                                                                                                                                                                                                                                            NA
## 346                                                                                                                                                                                                                                                                                            NA
## 347                                                                                                                                                                                      https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(20)30727-3/fulltext#.Xn5iriji2o8.twitter
## 348                                                                                                                                                                                                                                                                                            NA
## 349                                                                                                                                                                                                                                                                                            NA
## 350                                                                                                                                                                                                                                                                        https://bit.ly/3asjXsc
## 351                                                                                                                                                                                                                                                                                            NA
## 352                                                                                                                                                                                                                                                                        https://bit.ly/2UFiJmL
## 353                                                                                                                                    https://www.cnn.com/videos/business/2020/03/27/bill-gates-coronavirus-town-hall-shutdown-april-peak-sot-vpx.cnn/video/playlists/cnn-coronavirus-town-hall/
## 354                                                                                                                                                                                            https://www.dailypost.co.uk/news/north-wales-news/coronavirus-staff-member-homebase-store-17989333
## 355                                                                                                                                                                                                                                                                       https://buff.ly/2UKjdZ9
## 356                                                                                                                                                                                                                                                                                            NA
## 357                                                                                                                                                                                                                                                                                            NA
## 358                                                                                                                                                                                                                                                                                            NA
## 359                                                                                                                                                                                                                                                                                            NA
## 360                                                                                                                                                                                                                                                                                            NA
## 361                                                                                                                                                                                                                    https://www.essence.com/feature/black-southern-rural-covid-19-coronavirus/
## 362                                                                                                                                                                                                                                                                       http://ctv.news/WJZpYlT
## 363                                                                                                                                                                                                                                                                                            NA
## 364                                                                                                                                                                                                                                                                                            NA
## 365                                                                                                                                                                                                                                                                        https://bit.ly/2UrAV3t
## 366                                                                                                                                                                                                                                                                                            NA
## 367                                                                                                                                                                                                                                                                                            NA
## 368                                                                                                                                                                                                                                                                                            NA
## 369                                                                                                                                                                                                                                                                                            NA
## 370                                                                                                                                                                                                  https://www.euractiv.com/section/digital/news/no-more-coronavirus-masks-from-us-huawei-says/
## 371                                                                                                                                                                               http://www.jammulinksnews.com/newsdetail/220238/Jammu-Links-News-JMC_puts_more_men__machinery_to_fight_COVID-19
## 372                                                                                                                                                                                                                                                                                            NA
## 373                                                                                                                                                                                                                                                                                            NA
## 374                                                                                                                                                                                                                                                                                            NA
## 375                                                                                                                                                                                                                                        https://twitter.com/RocheNL/status/1243579936432173056
## 376                                                                                                                                                                                                                                                                                            NA
## 377                                                                                                                                                                                                                                                                                            NA
## 378                                                                                                                                                                                                                                                                                            NA
## 379                                                                                                                                                                                                                                                                                            NA
## 380                                                                                                                                                                             https://www.wfaa.com/article/news/verify/verify-what-covid-19-stands-for/287-9e015465-af20-4812-9e65-24ecdc6f064d
## 381                                                                                                                                                                                                                                                                                            NA
## 382                                                                                                                                                                                                                                                                        https://zd.net/2woPug1
## 383                                                                                                                                                                                                                                              https://cuba-solidarity.org.uk/end-the-blockade/
## 384                                                                                                                                                                                                                                                                                            NA
## 385                                                                                                                                                                                                                                              https://twitter.com/i/events/1219057585707315201
## 386                                                                                                                                                                                                                                                                                            NA
## 387                                                                                                                                                                                                                                  https://twitter.com/katemclennan1/status/1242656904913932290
## 388                                                                                                                                                                                                                                                                                            NA
## 389                                                                                                                                                                                                                                                                                            NA
## 390                                                                                                                                                                                                                                                                                            NA
## 391                                                                                                                                                                                                                          https://www.sanluisobispo.com/news/coronavirus/article241533661.html
## 392                                                                                                                                                                                                                                                                                            NA
## 393                                                                                                                                                          http://wlwt.com/article/house-passes-historic-dollar2-trillion-aid-package-hoping-to-curb-covid-19s-economic-impact/31957495?src=app
## 394                                                                                                                                                                                                                                                                                            NA
## 395                                                                                                                                                            https://www.aspendailynews.com/news/pitkin-county-s-first-covid--death-announced/article_7c82fb60-6fa3-11ea-87ba-8320e75d58bb.html
## 396                                                                                                                                                                                                                                                                                            NA
## 397                                                                                                                                                          https://www.insidenova.com/headlines/loudoun-county-school-staffer-dies-from-covid/article_eeb325ec-6f81-11ea-8178-df0bed498002.html
## 398                                                                                                                                                                                                                                 https://yaleglobal.yale.edu/content/economic-impacts-covid-19
## 399                                                                                                                                                                                                                                                   https://www.youtube.com/watch?v=sjDuwc9KBps
## 400                                                                                                                                      https://allafrica.com/stories/202003270750.html?utm_campaign=allafrica%3Aeditor&utm_medium=social&utm_source=twitter&utm_content=promote%3Aaans%3Aabkwtb
## 401                                                                                                                                            https://www.fox61.com/article/news/health/coronavirus/indy-500-postponed-until-august-because-of-covid-19/520-4f404c31-c21f-4722-bf88-b07e1d747f5e
## 402                                                                                                                                                                                                                                                                        https://bit.ly/3dC0d7o
## 403                                                                                                                                                                                                                                                                                            NA
## 404                                                                                                                                                                                                                                                                  https://youtu.be/t-swL92p_cQ
## 405                                                                                                                                                                   https://sanjosespotlight.com/san-jose-mayor-unveils-plan-for-paid-sick-leave-during-covid-19-pandemic/#.XnzpF4vyXss.twitter
## 406                                                                                                                                                                                                                                     https://41nbc.com/2020/03/27/macon-restaurant-free-lunch/
## 407                                                                                                                                                                                                                                                                         http://dlvr.it/RScr54
## 408                                                                                                                                                                                                                                                                        https://bit.ly/2JeaBEA
## 409                                                                                                                                                                                                                                                                                            NA
## 410                                                                                                                                      https://nbcmontana.com/news/coronavirus/bullock-issues-statewide-stay-at-home-order?fbclid=IwAR1HLMPzjVs2Db44fHxfFPOi_MBAedrBVTIjqukQ0b1kzIWwHTfyGv4moTM
## 411                                                                                                                                                                                                                                                                                            NA
## 412                                                                                                                                                                                                                                                                                            NA
## 413                                                                                                                                                                                                                                                                                            NA
## 414                                                                                                                                                                                                                                                                                            NA
## 415                                                                                                                                                                                                                                                                                            NA
## 416                                                                                                                                         https://cinnaire.com/advancing-communities-podcast-the-covid-19-crisis-what-it-means-for-the-community-development-and-affordable-housing-industries/
## 417                                                                                                                                                                                                                                                                                            NA
## 418                                                                                                                                                                                                                                                                                            NA
## 419                                                                                                                                                                                                                                                                                            NA
## 420                                                                                            https://www.childtrends.org/publications/resources-for-supporting-childrens-emotional-well-being-during-the-covid-19-pandemic?fbclid=IwAR16AGjpHldzW7UDBBFrm0Rnxkb2EZL4duQQRcJ4ekvIgXdJtcMDejR_Vi8
## 421                                                                                                                                                                                                                                                http://www.espn.com/espnradio/play?id=28963118
## 422                                                                                                                                                                                                                                                                         http://dlvr.it/RSd5VS
## 423                                                                                                                                                                                                                 https://news.yahoo.com/coronavirus-outbreak-aboard-deployed-us-191330606.html
## 424                                                                                                                                                                                                                                                                                            NA
## 425                                                                                                                                                                                                                                                                                            NA
## 426                                                                                                                                                                                                                                                                                            NA
## 427                                                                                                                                                                                                                                                                                            NA
## 428                                                                                                                                                                                                                                                                       https://tgam.ca/2UkmVcR
## 429                                                                                                                                                                         https://www.straight.com/news/covid-19-zoos-pawnshops-newspapers-parks-sheltering-homeless-included-bc-list-essential
## 430                                                                                                                                                                                                                                                                        https://ift.tt/2UzOXjv
## 431                                                                                                                                                                                                                                                                         http://dlvr.it/RShwdC
## 432                                                                                                                                                                                                                                                                      http://ow.ly/Qpdf50yWNkH
## 433                                                                                                                                                                                                                                     https://secure.actblue.com/donate/aoc-covid-email-2020327
## 434                                                                                                                                                                                             https://www.huffpost.com/entry/jimmy-kimmel-donald-trump-pino-nickname_n_5e7c8ea3c5b6256a7a2569a6
## 435                                                                                                                                                                                                                                                                        https://bit.ly/2wEi7pD
## 436                                                                                                                                                                                                                        https://twitter.com/Champ1Diversity/status/1243230358868549634/photo/1
## 437                                                                                                                                                                                             https://www.cbc.ca/news/canada/north/northwest-company-covid-19-1.5508602?__vfz=medium%3Dsharebar
## 438                                                                                                                                                                                                                                 https://twitter.com/MOISaudiArabia/status/1243709410502942720
## 439                                                                                                                                                                                                                                                                         http://dlvr.it/RSdB4V
## 440                                                                                                                                                                                                                                                                         http://dlvr.it/RShrjP
## 441                                                                                                                                                                                                                                                                                            NA
## 442                                                                                                                                                                                                                                                                                            NA
## 443                                                                                                                                                                                                                                                                                            NA
## 444                                                                                                                                                                                                                                                                                            NA
## 445                                                                                                                                                                                                                                                                                            NA
## 446                                                                                                                                                                                                                                                     http://thenocturnists.com/tell-your-story
## 447                                                                                                                                                                                                                         https://www.wired.com/story/kitboga-twitch-streams-coronavirus-scams/
## 448                                                                                                                                                                                                                                                                                            NA
## 449                                                                                                                                                                                                                                                              https://covidactnow.org/state/HI
## 450                                                                                                                                                                                                                                                                                            NA
## 451                                                                                                                                                                                                                                           https://twitter.com/wcvb/status/1243025657338134529
## 452                                                                                                                                                                                                                                                                                            NA
## 453                                                                                                                                                                                                                                                                                            NA
## 454                                                                                                                                                                                                               https://globalnews.ca/news/6734996/ontario-coronavirus-covid-19-cases-march-26/
## 455                                                                                                                                                                                                                                                                                            NA
## 456                                                                                                                                                                                                https://www.tmz.com/2020/03/27/clippers-owner-steve-ballmer-donates-25-mil-to-covid-19-relief/
## 457                                                                                                                                                                                                                                                                                            NA
## 458                                                                                                                                                                                                                                                                                            NA
## 459                                                                                                                                                                                                                                                                                            NA
## 460                                                                                                                                                                                                                                                                                            NA
## 461                                                                                                                                                                                             https://www.nu.nl/coronavirus/6036016/trump-wil-100000-extra-beademingsmachines-in-100-dagen.html
## 462                                                                                                                                                                                                                                      https://portside.org/2020-03-26/trump-new-york-drop-dead
## 463                                                                                                                                                                                                                                 https://www.youtube.com/watch?v=_f_oWtD4iyY&feature=emb_title
## 464                                                                                                                                                                                                                                    https://www.artforum.com/slant/the-losers-conspiracy-82586
## 465                                                                             https://sputniknews.com/us/202003261078721057-donald-trump-covid-19-task-force-hold-press-briefing-on-coronavirus-pandemic---video/?utm_source=push&utm_medium=browser_notification&utm_campaign=sputnik_inter_en
## 466                                                                                                                                                                                                                                                                                            NA
## 467                                                   https://www.financialexpress.com/market/share-market-today-live-updates-sensex-nifty-rupee-vs-dollar-rbi-governor-shaktikanta-das-finance-minister-nirmala-sitharaman-economic-relief-package-coronavirus-covid-19-march-27-friday/1910762/
## 468                                                                                                                                                                                                                                                                                            NA
## 469                                                                                                                                                                                                                                                                                            NA
## 470                                                                                                                                                                                                                                                                                            NA
## 471                                                                                                                                                                                                                                                                                            NA
## 472                                                                                                                                                                                                                                                                                            NA
## 473                                                                                                                                                                                                                                                                                            NA
## 474                                                                                                                                                                                                                                                                                            NA
## 475                                                                                                                                                                                                                                                                                            NA
## 476                                                                                                                                                                                                                                              https://twitter.com/i/events/1243675260076969984
## 477                                                                                                                                                                                                                                                                                            NA
## 478                                                                                                                                                                                                                                                   https://www.youtube.com/watch?v=54XLXg4fYsc
## 479                                                                                                                                                                                                                                                                        https://ift.tt/2UkwOqP
## 480                                                                                                                                                                                                                                                                                            NA
## 481                                                                                                                                                                                                                                                                                            NA
## 482                                                                                                                                                                                                                                                                                            NA
## 483                                                                                                                               https://www.lifesitenews.com/news/tucker-opposition-to-trump-is-fueling-media-lies-about-chloroquine-a-potential-covid-19-treatment?utm_source=LifeSiteNews.com
## 484                                                                                                                                                           https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2Fkarl.d.dawson%2Fposts%2F10157008583161430&width=500
## 485                                                                                                                                                                                                                                                                                            NA
## 486                                                                                                                                                                                                                                                                                            NA
## 487                                                                                                                                                                                                                                                                                            NA
## 488                                                                                                                                    https://www.agriculture.gov.au/biosecurity/legislation/biosecurity-legislation#biosecurity-emergencies, https://www.legislation.gov.au/Details/C2019C00097
## 489                                                                                                                                                                                                                                                                                            NA
## 490                                                                                                                                 https://theconversation.com/how-to-stay-fit-and-active-at-home-during-the-coronavirus-self-isolation-134044?utm_source=twitter&utm_medium=bylinetwitterbutton
## 491                                                                                                                                                                                                                                                                                            NA
## 492                                                                                                                                                                                                                                                                                            NA
## 493                                                                                                                                                                                https://www.abc.net.au/life/coronavirus-covid-19-mental-health-working-from-home-advice/12062284?sf231582094=1
## 494                                                                                                                                                                                                                                                                     http://7news.link/2yd6mHa
## 495                                                                                                                                                                                                                                                                                            NA
## 496                                                                                                                                                                                                                                   https://twitter.com/JoanaAMorais/status/1242456083341418496
## 497                                                                                                                                                                                                                                                                                            NA
## 498                                                                                                                                                                                                                                                                                            NA
## 499                                                                                                                                                                                                                                                                    http://tinyurl.com/vhgn8fg
## 500                                                                                                                                                                                                                                                                                            NA
## 501                                                                                                                                                                                                              https://us04web.zoom.us/webinar/register/8915849821755/WN_Gey0a7sbTI-dCBsAlLooHQ
## 502                                                                                                                                                                                                                                                                                            NA
## 503                                                                                                                                                    https://www.wtnh.com/news/connecticut/new-london/niantic-family-spreads-joy-by-setting-up-christmas-halloween-displays-outside-their-home/
## 504                                                                                                                                                                                        https://www.theguardian.com/world/2020/mar/27/nonchalant-boris-johnson-accused-of-covid-19-complacency
## 505                                                                                                                                                                                                                                                                                            NA
## 506                                                                                                                                                                                                                                                        https://www.stabroeknews.com/?p=573453
## 507                                                                                                                                                                                                                                                                                            NA
## 508                                                                                                                                                                                                                                                                                            NA
## 509                                                                                                                                                                                                                                                                                            NA
## 510                                                                                                                                                                                                                                                                                            NA
## 511                                                                                                                                                                                                                                 https://www.instagram.com/p/B-RUeFigHCO/?igshid=1haoano7ntd3n
## 512                                                                                                                                                                                                                                                                                            NA
## 513                                                                                                                                                                                                                                        https://twitter.com/bnodesk/status/1243585563883683842
## 514                                                                                                                                                                                                                   https://www.gov.uk/guidance/coronavirus-covid-19-information-for-the-public
## 515                                                                                                                                                                                                                                                                                            NA
## 516                                                                                                                                                        https://www.malaymail.com/news/malaysia/2020/03/27/covid-19-what-happens-if-tenants-cant-pay-rent-on-time-and-how-can-force-ma/1850619
## 517                                                                                                                                                                                                                                                   https://www.youtube.com/watch?v=0uDTs-9fq00
## 518                                                                                                                                                                                                                                                                                            NA
## 519                                                                                                                                                                                                                                                                                            NA
## 520                                                                                                                                                                                                                                                                                            NA
## 521                                                                                                                                                                                                                                                                                            NA
## 522                                                                                                                                                                                                                                       https://www.facebook.com/groups/smallbusinesssurvivors/
## 523                                                                                                                                                                                                                                                                                            NA
## 524                                                                                                                                                                                                                                https://twitter.com/politvidchannel/status/1243585355183357957
## 525                                                                                                                                                                                                                                                                                            NA
## 526                                                                                                                                                                                                                                                                                            NA
## 527                                                                                                                                                                                                                                                                                            NA
## 528                                                                                                                                                                                                                                https://twitter.com/MentallyAwareNG/status/1243245251332059137
## 529                                                                                                                                                                                                                                                                                            NA
## 530                                                                                                                                         https://www.nbcnewyork.com/news/local/too-many-people-are-dying-alone-nyc-loses-more-in-3-weeks-to-covid-19-than-to-homicides-in-all-of-2019/2346703/
## 531                                                                                                                                                                                                                                                                                            NA
## 532                                                                                                                                                                                                                                 https://twitter.com/smritizaneveld/status/1243403433245212672
## 533                                                                                                                                                                                              https://www.krtv.com/news/coronavirus/watch-live-governor-provides-update-on-covid-19-in-montana
## 534                                                                                                                                                                    https://blogs.alphagraphics.com/blog/cary-north-carolina-us398/2020/03/27/covid-19-face-shields-now-at-alphagraphics-cary/
## 535                                                                                                                                                                                                                                                                                            NA
## 536                                                                                                                                                                                                                    https://www.ourpursuit.com/owning-a-business-during-the-covid-19-outbreak/
## 537                                                                                                                                                                                                                                                                                            NA
## 538                                                                                                                                                                                                                                                                                            NA
## 539                                                                                                                                                                                               https://www.rte.ie/news/coronavirus/2020/0327/1126819-covid-19-italys-death-toll-reaches-8-215/
## 540                                                                                                                                                                                                                 https://www.firstindia.co.in/article/33070/oman-return-tests-positive-in-city
## 541                                                                                                                                                                                                                                                                                            NA
## 542                                                                                                                                                                                                                                                                                            NA
## 543                                                                                                                                                                                                                                                                                            NA
## 544                                                                                                                                                                                                                                                                                            NA
## 545                                                                                                                                                                                                           https://mynewsghana.net/covid-19-akufo-addo-to-meet-ndcs-coronavirus-response-team/
## 546                                                                                                                                                                                                                                                                        https://bit.ly/2UIijMq
## 547                                                                                                                                                                                                                                                                                            NA
## 548                                                                                                                                                                                                                                            http://www.nrttv.com/EN/News.aspx?id=20367&MapID=4
## 549                                                                                                                                                                                                                                                                                            NA
## 550                                                                                                                                                                                             http://www.royalgazette.com/cricket/article/20200327/bcb-holds-virtual-meetings-about-next-season
## 551                                                                                                                                                                                                                                                                                            NA
## 552                                                                                                                                                                                                                                                                  https://youtu.be/zK69LoCTYus
## 553                                                                                                                                                                                                                                    https://twitter.com/BarrieToday/status/1243588490274557952
## 554                                                                                                                                                                                                                                                                                            NA
## 555                                                                                                                        https://www.rawstory.com/2020/03/trumps-new-chief-of-staff-still-serving-in-congress-and-trying-to-learn-new-role-as-covid-19-threatens-millions/#.XnzxbsYLwc0.twitter
## 556                                                                                                                                                                                                                                                                                            NA
## 557                                                                                                                                                                                                                                                                                            NA
## 558                                                                                                                                                                                                                                      https://twitter.com/chitraaum/status/1243158375375896576
## 559                                                                                                                                                                                                                                                                     http://rdcrss.org/3aazwog
## 560                                                                                                                                                                                                                                                         http://Coronavirus.LACity.org/Testing
## 561                                                                                                                                                                              https://www.businessinsider.com/trump-signs-coronavirus-economic-relief-aid-bill-checks-for-americans-2020-3?amp
## 562                                                                                                                                                                        https://www.irishtimes.com/news/world/uk/uk-eligible-to-take-part-in-eu-ventilator-plan-despite-missed-email-1.4213295
## 563                                                                                                                                                                 https://chimpreports.com/part-two-alternative-options-that-uganda-can-adopt-to-cushion-citizens-during-the-covid-19-pandemic/
## 564                                                                                                                                                                                                                                                                                            NA
## 565                                                                                                                                                                                                                                                                                            NA
## 566                                                                                                                                                                                                                                  https://www.instagram.com/p/B-Nmk_mlRbV/?igshid=936omluw9clf
## 567                                                                                                                                                                                                                                                                                            NA
## 568                                                                                                                                                                                                                                                                  https://youtu.be/3UXMwYhxxAc
## 569                                                                                                                                                                                                                                                                                            NA
## 570                                                                                                                                                                                                                                                   https://www.youtube.com/watch?v=gAk7aX5hksU
## 571                                                                                                                                                         https://english.alarabiya.net/en/News/middle-east/2020/03/26/Coronavirus-1-500-foreign-passengers-taken-to-a-dormitory-in-Turkey.html
## 572                                                                                                                                                                    https://www.gofundme.com/f/save-lives-with-face-shields?utm_source=twitter&utm_medium=social&utm_campaign=p_cp+share-sheet
## 573                                                                                                                                                                                                                                                                                            NA
## 574                                                                                                                                                                                                                                                                                            NA
## 575                                                                  https://www.theguardian.com/australia-news/live/2020/mar/27/coronavirus-news-australia-update-live-stage-2-3-lockdown-nsw-victoria-qld-scott-morrison-restrictions-cases-death-toll-covid-19-latest-updates?CMP=share_btn_tw
## 576                                                                                                                                                                                                                                              https://twitter.com/i/events/1243591713387470848
## 577                                                                                                                                                                                                                                                                                            NA
## 578                                                                                                                                                                                                                                                                       https://lnkd.in/gXW2_Jm
## 579                                                                                                                                                                                                 https://www.5280.com/2020/03/in-the-age-of-covid-19-survivalists-are-prepping-for-a-windfall/
## 580                                                                                                                                                                                                                                                                                            NA
## 581                                                                                                                                                                                                                                                https://www.crewfire.com/l/aqnyT5Ndg-F8MScBR7f
## 582                                                                                                                                                                                                                                                                                            NA
## 583                                                                                                                                                                                                                                         https://www.seacology.org/2020/03/our-work-continues/
## 584                                                                                                                                                                                                                                                                                            NA
## 585                                                                                                                                                                                                                         https://www.graingrowers.com.au/graingrowers-covid-19-resource-guide/
## 586                                                                                                                                                                                                                                                                        https://ncov2019.live/
## 587                                                                                                                                                                                                                                                                        https://ift.tt/2ye4i1E
## 588                                                                                                                                                                                                                                   https://twitter.com/VancouverSun/status/1243255552928624640
## 589                                                                                                                                                                                                                                                                                            NA
## 590                                                                                                                                                                                                                                                                                            NA
## 591                                                                                                                                                http://www.miamidade.gov/global/initiatives/coronavirus/home.page, http://www.miamidade.gov/global/initiatives/coronavirus/county-updates.page
## 592                                                                                                                                                                                                                                                                                            NA
## 593                                                                                                                                                                                                                                                                                            NA
## 594                                                                                                                                                                                                                                                                                            NA
## 595                                                                                                                                                                                                                                                                                            NA
## 596                                                                                                                                                                                                                 https://spectacle.com.ng/blog/2020/03/26/zamfara-preventive-border-shut-down/
## 597                                                                                                                                                                                                                                                                                            NA
## 598                                                                                                                                                                                                                                                                                            NA
## 599                                                                                                                                                                                                                                                                                            NA
## 600                                                                                                                                                                                                                                                                                            NA
## 601                                                                                                                                                                                                                                                                       https://buff.ly/2Unuqj1
## 602                                                                                                                                                                                                                                                                                            NA
## 603                                                                                                                                                                                                                                     https://twitter.com/BBCNormanS/status/1243092170065707008
## 604                                                                                                                                                                                                                     https://uk.news.yahoo.com/dozens-elephants-set-free-chairs-090000522.html
## 605                                                                                                                                                                                                                                                                                            NA
## 606                                                                                                                                                                                                                                 https://www.instagram.com/p/B-RYbfoHlOL/?igshid=1peilkwkiboxp
## 607                                                                                                                                                                                                                                                                         http://dlvr.it/RSdnZM
## 608                                                                                                                                                                                                                                                                                            NA
## 609                                                                                                                              https://dailymemphian.com/section/opinion/article/12240/coronavirus-loss-of-smell?utm_source=early_word_email&utm_medium=email&utm_campaign=earlyword_2020-03-27
## 610                                                                                                                                                                                                                                                                                            NA
## 611                                                                                                                                                                                      https://www.vaticannews.va/en/church/news/2020-03/covid-19-jerusalem-prayer-christians-jews-muslims.html
## 612                                                                                                                                                                                                                                                                                            NA
## 613                                                                                                                                                                                                                      https://bsg.org.uk/covid-19-advice/bsg-advice-on-ibd-patient-risk-groups
## 614                                                                                                                                                                                                       https://torontosun.com/news/national/mps-poised-to-score-pay-hike-amid-covid-19-crisis/
## 615                                                                                                                                                                                                                    https://www.somersetcf.org.uk/special-projects/somerset-coronavirus-appeal
## 616                                                                                                                                                                                                                                         https://twitter.com/ddale8/status/1243665121995563008
## 617                                                                                                                                                                                                                                   https://twitter.com/atomicanalyst/status/994696175575068672
## 618                                                                                                                                                                                                                                                                                            NA
## 619                                                                                                                                       https://www.canva.com/design/DAD3r-31RwE/g3fR0w269gT4lMaXMh6eJQ/view?utm_content=DAD3r-31RwE&utm_campaign=designshare&utm_medium=link&utm_source=viewer
## 620                                                                                                                                                                                https://www.npr.org/2020/03/25/821591044/behind-germanys-relatively-low-covid-19-fatality-rate?t=1585242947776
## 621                                                                                                                                                                                                                                                          http://immune.vaccineconferences.com
## 622                                                                                                                                                                                                                                                                                            NA
## 623                                                                                                                                                                                                                                                                        https://bit.ly/2wAf7e2
## 624                                                                                                                                                                                                                                                                                            NA
## 625                                                                                                                                                                                                                                                                                            NA
## 626                                                                                                                                                                                                                                                                                            NA
## 627                                                                                                                                                                                                                                                                                            NA
## 628                                                                                                                                                                                                                                                                                            NA
## 629                                                                                                                                                                                                                                                                                            NA
## 630                                                                                                                                                                                                       https://www.spreaker.com/user/abide/same-god-in-an-uncertain-world-tyler-bos?autoplay=1
## 631                                                                                                                                                                                                                                                                         http://dlvr.it/RSgwG6
## 632                                                                                                                                                                           https://pafamily.org/2020/03/plannedparenthood100percentabortion/, https://pafamily.org/2020/03/mapcovid19abortion/
## 633                                                                                                                                                                                                                    https://www.businessinsider.com/coronavirus-map-cases-per-county-us-2020-3
## 634                                                                                                                                                                                                                                                                                            NA
## 635                                                                                                                                                                                                                                  https://www.instagram.com/p/B-Nzf8BJ4Ty/?igshid=pq24eabeuhdp
## 636                                                                                                                                                                                                                                                                   http://horseracingradio.net
## 637                                                                                                                                                                                                                                    https://twitter.com/AbhayVishen/status/1243624026834120705
## 638                                                                                                                                                                                                                                     https://twitter.com/bairdjulia/status/1243654241467555845
## 639                                                                                                                                                                                                                                 https://www.facebook.com/CSSDPRyerson/videos/691115248363665/
## 640                                                                                                                                                                                                                                                                                            NA
## 641                                                                                                                                                                                                           https://ift.tt/2JiMVyV, https://twitter.com/gerald_bader/status/1243797560759848961
## 642                                                                                                                                                                                                                                                                                            NA
## 643                                                                                                                                                                                                                                https://untrapped.substack.com/p/the-microbe-and-the-leviathan
## 644                                                                                                                                                                                                                                                                                            NA
## 645                                                                                                                                                                                                                                                                                            NA
## 646                                                                                                                                                                                                                                                                                            NA
## 647                                                                                                                                                                                https://www.commdiginews.com/politics-2/nancy-pelosi-ring-leader-of-democrats-covid-19-relief-thievery-128501/
## 648                                                                                                                                                                                                                                                                                            NA
## 649                                                                                                                                                                                                                                                                       https://buff.ly/2UHAF0f
## 650                                                                                                                                                                                                                                                                       https://etsy.me/3akJrrw
## 651                                                                                                                                                                                                                                                                        https://bit.ly/33Xm2tR
## 652                                                                                                                                                                                                                                                                                            NA
## 653                                                                                                                                                                                                                                                                                            NA
## 654                                                                                                                                                https://punemirror.indiatimes.com/pune/cover-story/wagholi-hospital-staff-evicted-from-nearby-soc-amid-covid-19-scare/articleshow/74837409.cms
## 655                                                                                                                                                                                                                                     https://jamanetwork.com/journals/jama/fullarticle/2763983
## 656                                                                                                                                                                           https://gizmodo.com/teen-who-died-of-covid-19-was-denied-treatment-because-1842520539/amp?__twitter_impression=true
## 657                                                                                                                                                                                                                                                                                            NA
## 658                                                                                                                                                                                                                                                                                            NA
## 659                                                                                                                                                                                                                                                                                            NA
## 660                                                                                                                                                                                                                                                                                            NA
## 661                                                                                                                                                                                                                           https://theappeal.org/rikers-island-coronavirus-covid-19-interview/
## 662                                                                                                                                                                                                                                                                                            NA
## 663                                                                                                                                                                                                                                                                                            NA
## 664                                                                                                                                                                                                                                                                        https://bit.ly/2wIhYBo
## 665                                                                                                                                                                                                                                   https://twitter.com/matthewsasia/status/1239977383207342080
## 666                                                                                                                                                                                                                                                                  https://youtu.be/e0-2XxgHIXk
## 667                                                                                                                                                                                                                                                                                            NA
## 668                                                                                                                                                                                                                                                                                            NA
## 669                                                                                                                                                                                                                                                                  https://youtu.be/sjDuwc9KBps
## 670                                                                                                                                                                                                                                                                                            NA
## 671                                                                                                                                                                                                                                                                                            NA
## 672                                                                                                                                                                                                                                                                                            NA
## 673                                                                                                                                                                                                       https://americanindependent.com/mike-parson-coronavirus-missouri-governor-gop-covid-19/
## 674                                                                                                                                                                                                                                                                                            NA
## 675                                                                                                                                                                                                                                                                                            NA
## 676                                                                                                                                                                                                                                                                       https://unos.org/covid/
## 677                                                                                                                                                                                                                                     https://twitter.com/revrrlewis/status/1243513535356973056
## 678                                                                                                                                                                                                                                                                                            NA
## 679                                                                                                                                                                                                                                                                  https://youtu.be/LHHnLT411xA
## 680                                                                                                                                                                                                                                                                        https://bit.ly/2UlPBSQ
## 681                                                                                                                                                                                                                                        https://twitter.com/IasAlok/status/1243744464939577344
## 682                                                                                                                                                                                                                                                                         http://dlvr.it/RSdBVQ
## 683                                                                                                                                                https://www.businessinsider.com/holland-america-zaandam-cruise-ship-blocked-panama-canal-covid-19-2020-3?utm_source=feedly&utm_medium=referral
## 684                                                                                                                                                                                                                                                                                            NA
## 685                                                                                                                                                                                                                                                                        https://ift.tt/2UCORaI
## 686                                                                                                                                                                                                                                                                                            NA
## 687                                                                                                                                                                                                                                   https://www.voiceamerica.com/show/3943/in-the-ring-with-mia
## 688                                                                                                                                                                                                                                                                          http://lowy.at/cVvOk
## 689                                                                                                                                                                                                                                                                                            NA
## 690                                                                                                                                                                                                                                                                                            NA
## 691                                                                                                                                                                                                                                                                                            NA
## 692                                                                                                                                                                                                                                                                        https://bit.ly/2WLdLrt
## 693                                                                                                                                                                                                                                               http://youtube.com/watch?v=GKPQ7emLH2k%E2%80%AC
## 694                                                                                                                                                                                                                                                                                            NA
## 695                                                                                                                                                                                                                         https://www.rt.com/op-ed/483680-iran-sanctions-coronavirus-us-murder/
## 696                                                                                                                                                                                                                                                                                            NA
## 697                                                                                                                                                                                                                                                                                            NA
## 698                                                                                                                                                                                                                                                                                            NA
## 699                                                          https://geesc.cedeplar.ufmg.br/demand-and-supply-of-hospital-beds-icu-beds-and-ventilators-in-brazil-due-to-covid-19-pandemics-regional-impacts-weighted-by-age-structure-the-age-profile-of-infection-and-age-specific-risk-of-hos/
## 700                                                                                                                                                                                                                                                                                            NA
## 701                                                                                                                                                       https://spectrumlocalnews.com/nys/central-ny/news/2020/03/27/house-passes--2-2t-rescue-package--rushes-to-trump?cid=twitter_SPECNewsCNY
## 702                                                                                                                                                                                                                                                                                            NA
## 703                                                                                                                                                                                                                                                           https://youtu.be/lnG13ft9BeI?t=1952
## 704                                                                                                                                                                                                                                                                                            NA
## 705                                                                                                                                                                                                                                                                                            NA
## 706                                                                                                                                                                                                                                                                                            NA
## 707                                                                                                                                                                                                                                                                                            NA
## 708                                                                                                                                                                                                                                    https://twitter.com/medickinson/status/1243609141978906624
## 709                                                                                                                                                                                                                                                                                            NA
## 710                                                                                                                                                                                                                                    https://twitter.com/KevinMKruse/status/1243514600395595776
## 711                                                                                                                                                                                                                                                                                            NA
## 712                                                                                                                                                                                                                                                                                            NA
## 713                                                                                                                                                                                                                                                                                            NA
## 714                                                                                                                                                                                                                                                                                            NA
## 715                                                                                                                                                                                                                                                                        https://bit.ly/2UoRE8M
## 716                                                                                                                               https://www.krem.com/article/news/health/coronavirus/seattle-kona-kitchen-liz-robert-mar-coronavirus-covid-19-diagnose/281-d7347b87-6aff-41da-9b91-990569927ddc
## 717                                                                                                                                                                                                                                                                         http://dlvr.it/RSdZd8
## 718                                                                                                                                                                           https://www.theguardian.com/business/2020/mar/27/jeff-bezos-sold-34bn-of-amazon-stock-just-before-covid-19-collapse
## 719                                                                                                                                                                                                                                                                                            NA
## 720                                                                                                                                                                                                                                                                                            NA
## 721                                                                                                                                                                                                                                                                  https://youtu.be/9uWriZEC8BQ
## 722                                                                                                                                                                                                                                                                                            NA
## 723                                                                                                                                                  https://7news.com.au/lifestyle/health-wellbeing/nsw-coronavirus-cases-skyrocket-as-premier-reveals-170-community-transmission-cases-c-768641
## 724                                                                                                                                                                                                                                                                                            NA
## 725                                                                                                                                                       https://www.fastcompany.com/90483028/the-most-powerful-image-of-the-covid-19-crisis-shows-how-trump-administration-is-failing-americans
## 726                                                                                                                                                                                                                                                                       https://buff.ly/2IRB6Q3
## 727                                                                                                                                                  https://www.mercurynews.com/2020/03/26/james-dyson-designed-a-new-ventilator-in-10-days-hes-making-15000-for-the-coronavirus-pandemic-fight/
## 728                                                                                                                                                                                                                                                   http://a.msn.com/05/en-us/BB11JmSD?ocid=st2
## 729                                                                                                                                                                                                                                                                                            NA
## 730                                                                                                                                                                                                                                                                                            NA
## 731                                                                                                                                                                                                                                                     http://a.msn.com/r/2/BB11NOvN?m=en-us&a=1
## 732                                                                                                                                                                                                                                                                                            NA
## 733                                                                                                                                                                                                                                                                                            NA
## 734                                                                                                                                                                                                                                                                                            NA
## 735                                                                                                                                                                                                                                                                                            NA
## 736                                                                                                                                                                                                                                                                        https://bit.ly/33StI0u
## 737                                                                                                                                                                                                                                                                                            NA
## 738                                                                                                                                                                                                                                                                                            NA
## 739                                                                                                                                                                                                                                                                                            NA
## 740                                                                                                                                                                                                                                                                      http://ow.ly/wJdS50yXN6d
## 741                                                                                                                          https://www.curbed.com/2020/3/27/21191626/coronavirus-van-life-camper-quarantine-covid-19?utm_campaign=curbed&utm_content=entry&utm_medium=social&utm_source=twitter
## 742                                                                                                                                                                                               https://www.travelweekly.co.uk/articles/365406/video-interview-abta-chief-executive-mark-tanzer
## 743                                                                                                                                                                                                                                                                                            NA
## 744                                                                                                                                                              https://www.forbes.com/sites/zakdoffman/2020/03/27/covid-19-phone-location-tracking-its-moving-fast-this-is-whats-happening-now/
## 745                                                                                                                                                                                                https://www.govtech.com/budget-finance/What-Does-the-COVID-19-Stimulus-Bill-Mean-for-Tech.html
## 746                                                                                                                                                                                                                                                                                            NA
## 747                                                                                                                                                                                                                                                                        https://shar.es/aHtkwl
## 748                                                                                                                                                                                      https://whyy.org/articles/how-bats-mosquitos-humans-and-other-mammals-factor-into-the-coronavirus-story/
## 749                                                                                                                                                                                                                                                                                            NA
## 750                                                                                                                                                       https://www.hoperisesnews.com/single-post/2020/03/26/No-answers-little-hope-Elderly-US-couple-stuck-in-Malaysia-running-low-on-medicine
## 751                                                                                                                                                                                                                                                                                            NA
## 752                                                                                                                                                                                                                                                                                            NA
## 753                                                                                                                                                                                                                                                                                            NA
## 754                                                                                                                                                                                                                                                                                            NA
## 755                                                                                                                                                                                                                                                                                            NA
## 756                                                                                                                                                                                                                                                                                            NA
## 757                                                                                                                                                                                                                                                                                            NA
## 758                                                                                                                                                                                                                                                                                            NA
## 759                                                                                                                                                                                                                                                                                            NA
## 760                                                                                                                                                                                                                                                                                            NA
## 761                                                                                                                                                                      https://essenceloaded.com/covid-19-what-bashir-ahmad-said-about-president-buhari-abba-kyari-being-secretly-flown-abroad/
## 762                                                                                                                                                                                                                                                                                            NA
## 763                                                                                                                                                                                                                                                                                            NA
## 764                                                                                              https://www.wired.com/story/coronavirus-interview-larry-brilliant-smallpox-epidemiologist/?utm_source=twitter&utm_medium=social&utm_campaign=onsite-share&utm_brand=wired&utm_social-type=earned
## 765                                                                                                                                                                                                                                                                         http://dlvr.it/RSccC6
## 766                                                                                                                                                                                                                                                                        https://bit.ly/3amulBN
## 767                                                                                                                                                                                                                                                                                            NA
## 768                                                                                                                                                                                                                                                                                            NA
## 769                                                                                                                                                                                                                                    https://twitter.com/SkyNewsAust/status/1243098300334530560
## 770                                                                                                                                                                                                 http://maineventofthedead.blogspot.com/2020/03/essential-my-careers-yes-lockdown-yes.html?m=0
## 771                                                                                                                                                                                                                                                                    https://covid.joinzoe.com/
## 772                                                                                                                                                                                                                                                                        https://arcg.is/1qqWb5
## 773                                                                                                                                                                                                                       http://miamidade.floridahealth.gov/programs-and-services/wic/index.html
## 774                                                                                                                                                                                                                                                                                            NA
## 775                                                                                                                                                                                                                                                                                            NA
## 776                                                                                                                                                                                                                                       https://twitter.com/Pontifex/status/1243523163364999168
## 777                                                                                                                                                                                                                                       https://twitter.com/india_pu/status/1243001183276396544
## 778                                                                                                      https://www.yaleclimateconnections.org/2020/02/therapist-launches-website-about-climate-related-anxiety-and-trauma/?fbclid=IwAR0Ze9Hm48g89nP_tr14qwfMzpNV0easaH4SntkFi5LcvCFplQrZbsRLukI
## 779                                                                                                                                                                                                                                                                                            NA
## 780                                                                                                                                                                                                                                                                                            NA
## 781                                                                                                                                                                                                     https://www.instagram.com/p/B-RAzHxnQbKycOj-rFQStS14sN5UrqllnzwHO00/?igshid=10mofb87woxyy
## 782                                                                                                                                                                                                                                                                                            NA
## 783                                                                                                                                                                                                                                                                                            NA
## 784                                                                                                                                                                                                                                                                                            NA
## 785                                                                                                                                                                                                                                                                  https://youtu.be/sjAp3626tMM
## 786                                                                                                                                                                                                                                                                                            NA
## 787                                                                                                                                                                                                                                     https://twitter.com/AbbottNews/status/1243680163054915584
## 788                                                                                                                              https://economictimes.indiatimes.com/news/politics-and-nation/we-have-built-a-lot-of-capacity-to-combat-covid-19-harsh-vardhan/articleshow/74531172.cms?from=mdr
## 789                                                                                                                                                                                                                                                                       https://buff.ly/39iLsmM
## 790                                                                                                                                                                                                                                                                                            NA
## 791                                                                                                                                                                                                                                                                                            NA
## 792                                                                                                                                                                                                                                                                                            NA
## 793                                                                                                                                                                                                                                                                                            NA
## 794                                                                                                                                                                                                                                                                                            NA
## 795                                                                                                                                                                                                                       https://winnipeg.citynews.ca/video/2020/03/23/citynews-regional-live-4/
## 796                                                                                                                                                                                                                                                                                            NA
## 797                                                                                                                                                                                                                          https://news.yahoo.com/u-never-spent-enough-emergency-095502739.html
## 798                                                                                                                                                 https://www.whitehouse.gov/briefings-statements/remarks-president-trump-vice-president-pence-members-coronavirus-task-force-press-briefing-3/
## 799                                                                                                                                                                                                                                                                                            NA
## 800                                                                                                     https://www.thenewcivilrightsmovement.com/2020/03/canadians-and-americans-mock-us-and-trump-as-president-weighs-stationing-troops-at-border-over-coronavirus-crisis/#.XnzpzXVnu5U.twitter
## 801                                                                                                                                                                                                                                                                                            NA
## 802                                                                                                                                                                                                                                  https://twitter.com/wbsuperseries/status/1243221750508290049
## 803                                                                                                                                                                                                                              https://disasterphilanthropy.org/disaster/2019-ncov-coronavirus/
## 804                                                                                                                                                                                                                                       https://twitter.com/EM_RESUS/status/1240086435874643970
## 805                                                                                                                                                                                                                                 https://twitter.com/USPacificFleet/status/1243569736035618816
## 806                                                                                                                                                                  https://friendlyatheist.patheos.com/2020/03/26/virginia-pastor-who-said-covid-19-was-anti-trump-mass-hysteria-dies-of-virus/
## 807                                                                                                                                                                                                                                  https://twitter.com/RedMonkeySays/status/1243326327282860035
## 808                                                                                                                                                                                                                                                                                            NA
## 809                                                                                                                                                                                                   https://www.foxnews.com/media/dr-saphier-breaks-down-very-encouraging-covid-19-case-numbers
## 810                                                                                                                                                                                                                                                                                            NA
## 811                                                                                                                                                                                                                                                                                            NA
## 812                                                                                                                                                                                                                                                                                            NA
## 813                                                                                                                                                                                                                                                                                            NA
## 814                                                                                                                                                                                                                          https://www.texasmonthly.com/food/heb-prepared-coronavirus-pandemic/
## 815                                                                                                                                                                                                                      https://www.nairaland.com/5759623/coronavirus-abdulsamad-rabiu-redeems-1
## 816                                                                                                                                                                                                                                                                                            NA
## 817                                                                                                                                                                                                                                                                                            NA
## 818                                                                                                                                                                                                                                                                                            NA
## 819                                                                                                                                                                                                                                                                                            NA
## 820                                                                                                                                                                                                                                                                                            NA
## 821                                                                                                                                                                                                                                                                                            NA
## 822                                                                                                                                                                                                                                                                                            NA
## 823                                                                                                                                                                                                                                                                                            NA
## 824                                                                                                                                                                                                                                                https://www.domestic-divaonline.com/virus-mask
## 825                                                                                                                                                                                                                                                                         http://dlvr.it/RShcVY
## 826                                                                                                                                                                                                                                                                                            NA
## 827                                                                                                                                                                             https://www.bridgemi.com/michigan-health-watch/coronavirus-spreading-faster-detroit-nearly-anywhere-united-states
## 828                                                                                                                                                                                                                                                                                            NA
## 829                                                                                                                                                                                                                          https://www.wired.com/story/kitboga-twitch-streams-coronavirus-scams
## 830                                                                                                                                                                                                                                                                                            NA
## 831                                                                                                                                                                                                                                                                                            NA
## 832                                                                                                                                                                                                                                                                                            NA
## 833                                                                                                                                                                                                                                              https://lnkd.in/dE6kmtZ, https://lnkd.in/dgSEwip
## 834                                                                                                                                                                                                                                                                                            NA
## 835                                                                                                                                                                                                                                                                                            NA
## 836                                                                                                                                                                                                                                                                                            NA
## 837                                                                                                                                                                                                https://www.langleyadvancetimes.com/news/langley-sephora-employee-tests-positive-for-covid-19/
## 838                                                                                                                                                                                                                                                                                            NA
## 839                                                                                                                                                                                                                                                  https://thekoalamom.com/2020/03/rubiks-cube/
## 840                                                                                                                                                                                                                                                    https://elevate.stockton.edu/project/20565
## 841                                                                                                                                                                                                                                                                                            NA
## 842                                                                                                                                                                                                                                       https://twitter.com/TimesNow/status/1243243318923988992
## 843                                                                                                                                                                                                                                                                                            NA
## 844                                                                                                                                                                                                                                       https://twitter.com/CBCtanya/status/1243613157332901890
## 845                                                                                                                                                                                                                                                                                            NA
## 846                                                                                                                                                                            https://www.pscp.tv/w/cUu_WDFvTlFscGFCR0FuUXd8MVBsSlFtRW9xbkJKRQF5eYpq5cuPQAHbwAIGcWtIFl4PydXhAoQAMRr9Gy43?t=1m11s
## 847                                                                                                                                                                                                                                        https://twitter.com/yamiche/status/1243356406297677824
## 848                                                                                                                                                                                                                                                                                            NA
## 849                                                                                                                                                                                                                                                                                            NA
## 850                                                                                                                                                                                                                                                                                            NA
## 851                                                                                                                                                                                                                                                                                            NA
## 852                                                                                                                                                                                                                                                                                            NA
## 853                                                                                                                                                                                                 https://mailchi.mp/c10b2b116159/congress-passes-cares-act-phase-three-in-response-to-covid-19
## 854                                                                                                                    https://www.fda.gov/vaccines-blood-biologics/investigational-new-drug-ind-or-device-exemption-ide-process-cber/investigational-covid-19-convalescent-plasma-emergency-inds
## 855                                                                                                                                                                     http://www.punjabtribune.com/news/190772-rajasthan-covid-19-tally-reaches-52-with-two-new-cases.aspx#.Xn8RATsvWT0.twitter
## 856                                                                                             https://m.economictimes.com/news/politics-and-nation/1st-and-2nd-confirmatory-tests-for-covid-19-are-free-for-all-citizens-health-ministry/amp_articleshow/74638547.cms?__twitter_impression=true
## 857                                                                                                                                                                                                                                  https://twitter.com/petershankman/status/1243274376553934849
## 858                                                                                                                                                                                                                                                                                            NA
## 859                                                                                                                                                                                                                                                                                            NA
## 860                                                                                                                                                                http://WVLT.TV, https://www.wvlt.tv/content/news/Ways-to-keep-yourself-and-others-safe-during-COVID-19-pandemic-569175511.html
## 861                                                                                                                                                                                                                                                                                            NA
## 862                                                                                                                                                                                                                                                                                            NA
## 863                                                                                                                                                                                                                                                                                            NA
## 864                                                                                                                                                                                                                                                                  https://youtu.be/54XLXg4fYsc
## 865                                                                                                                                                    https://news.westernu.edu/westernu-medical-students-unify-to-make-and-provide-masks-to-the-health-care-workforce-amidst-covid-19-pandemic/
## 866                                                                                                                                                                                                                                                                                            NA
## 867                                                                                                                                                                                                                                                                                            NA
## 868                                                                                                                                                                                                                                                                                            NA
## 869                                                                                                                                                                                                                                                                  https://youtu.be/sjDuwc9KBps
## 870                                                                                                               http://madison.com, https://madison.com/wsj/news/local/crime-and-courts/two-dane-county-jail-inmates-test-positive-for-covid-/article_84ddc835-2016-5ed4-b806-c015e049136f.html
## 871                                                                                                                                                                                                                                                                                            NA
## 872                                                                                                                                                                                                                                                                                            NA
## 873                                                                                                    https://www.wsj.com/articles/fifty-years-offers-unusual-funding-to-its-startups-tackling-coronavirus-11585262598?shareToken=st18815828277a443b931373b8bf947263&reflink=article_email_share
## 874                                                                                                                                                                                                                                                                  https://youtu.be/BqMVYZ0pUBc
## 875                                                                                                                                                                                                                                                                                            NA
## 876                                                                                                                                                                                                                                                                                            NA
## 877                                                                                                                                                                                                                                                                                            NA
## 878                                                                                                                                                                                                                                                                                            NA
## 879                                                                                                                                                                                                                                                                                            NA
## 880                                                                                                                                                                                               https://www.stlucianewsonline.com/jamaicans-in-new-york-afraid-of-covid-19-its-scary-out-there/
## 881                                                                                                                                                                                                                                                                                            NA
## 882                                                                                                                                                                                                                                                                                            NA
## 883                                                                                                                                                                                                                                                                                            NA
## 884                                                                                                                                                                             https://blogs.lse.ac.uk/latamcaribbean/2020/03/18/cuba-and-coronavirus-how-cuban-biotech-came-to-combat-covid-19/
## 885                                                                                                                                                                                                                                  https://twitter.com/fawadchaudhry/status/1243751869236817921
## 886                                                                                                                                                                                                                                                                                            NA
## 887                                                                                                                                                                      https://blog.google/inside-google/company-announcements/commitment-support-small-businesses-and-crisis-response-covid-19
## 888                                                                                                                                                                                                                                                                                            NA
## 889                                                                                                                                                                                                                                                                                            NA
## 890                                                                                                                                                                                                                                                                                            NA
## 891                                                                                                                                                                                                                                                                                            NA
## 892                                                                                                                                                                                                                                           https://www.thairath.co.th/news/local/north/1805596
## 893                                                                                                                                                                               https://promarket.org/americas-broken-health-care-system-is-the-biggest-obstacle-to-containing-the-coronavirus/
## 894                                                                                                                                                                                                                                                                                            NA
## 895                                                                                                                                                                                                                                                                                            NA
## 896                                                                                                                                                                                                                                                                                            NA
## 897                                                                                                                                                                                                                                                                       http://naijareports.com
## 898                                                                                                                                                                                                                                                                                            NA
## 899                                                                                                                                                                                                      https://www.rollingstone.com/music/music-country/joe-diffie-covid-19-coronavirus-974464/
## 900                                                                                                                                                                                                                                                                                            NA
## 901                                                                                                                                                                                                                                  https://www.instagram.com/p/B-N2a3nj5LS/?igshid=ha6svywd20o7
## 902                                                                                                                                                                                                                                                                                            NA
## 903                                                                                                                                                                                                                                  https://twitter.com/justinobrooks/status/1243177836560564224
## 904                                                                                                                                                                                                                                                                      https://prker.co/3bsPNp1
## 905                                                                                                                           https://www.rawstory.com/2020/03/christian-pastor-who-thought-covid-19-is-just-mass-hysteria-is-among-the-first-in-virginia-to-die-from-virus/#.Xn0JElemHY0.twitter
## 906                                                                                                                                                                                                                                                                                            NA
## 907                                                                                                                                                                                                                                                                                            NA
## 908                                                                                                                                                                                                                                                                                            NA
## 909                                                                                                                                                                                                                                                                        https://shar.es/aHv5yd
## 910                                                                                                                                                                                                                                        https://twitter.com/ICOnews/status/1243258252416213003
## 911                                                                                                                                                     https://gizmodo.com/teen-who-died-of-covid-19-was-denied-treatment-because-1842520539?utm_medium=sharefromsite&utm_source=gizmodo_twitter
## 912                                                                                                                                                                                                                                    https://twitter.com/draiochta14/status/1243221243110686721
## 913                                                                                                                                                                                                                                                                                            NA
## 914                                                                                                                                                                                                                                                                  https://youtu.be/jFvCwdfoiH8
## 915                                                                                                                                                                                                                                                                                            NA
## 916                                                                                                                                                                                                                                                                                            NA
## 917                                                                                                                                                                                                                                                                                            NA
## 918                                                                                                                                                                                                                                                                                            NA
## 919                                                                                                                                                                                                                                                                                            NA
## 920                                                                                                                                                                                                                                                                                            NA
## 921                                                                                                                                      https://www.theguardian.com/global-development/2020/mar/27/jair-bolsonaro-claims-brazilians-never-catch-anything-as-covid-19-cases-rise?CMP=share_btn_tw
## 922                                                                                                                                                                                                                                     https://twitter.com/lwhensler3/status/1243536884564967431
## 923                                                                                                                                                                                                                                                                                            NA
## 924                                                                                                                                                                                                                                                                        https://bit.ly/2xpgpZd
## 925                                                                                                                                                                                                                                                                                            NA
## 926                                                                                                                                                                                                                                                                                            NA
## 927                                                                                                                                                                                                                                                                                            NA
## 928                                                                                                                                                                                                                https://www.dcuc.org/news/497623/Defense-Credit-Unions-Respond-to-COVID-19.htm
## 929                                                                                                                                                                                                                                                                                            NA
## 930                                                                                                                                                                                                                                                                                            NA
## 931                                                                                                                                                                                                                                                                                            NA
## 932                                                                                                                                                                                            https://mailchi.mp/20abb6eca833/covid-19-communication-is-key-the-latest-news-from-jones-and-clark
## 933                                                                                                                                                   https://www.theatlantic.com/health/archive/2020/03/how-will-coronavirus-end/608719/?utm_source=twitter&utm_medium=social&utm_campaign=share
## 934                                                                                                                                                                                                                                                                                            NA
## 935                                                                                                                                                                                                                                                                                            NA
## 936                                                                                                                                                                                                                                                                                            NA
## 937                                                                                                                                                                                                                                                                        https://bit.ly/2wLfpP0
## 938                                                                                                                                                                                                                                                                        https://bit.ly/2IJqh2e
## 939                                                                                                                                                                                                                https://act.medicare4all.org/signup/ads-thank-a-nurse/?source=ads-twittershare
## 940                                                                                                                                                                                                                                                                                            NA
## 941                                                                                                                                                                                                                                                                                            NA
## 942                                                                                                                                                                                                                                                                          https://ngpa.us/8571
## 943                                                                                                                                                                                                                                                                                            NA
## 944                                                                                                                                                                                                                                    https://twitter.com/TectonixGEO/status/1242628347034767361
## 945                                                                                                                                                                                                                                                                                            NA
## 946                                                                                                                                                                                                                                                                      https://wp.me/p1u1FD-cyN
## 947                                                                                                                                                                                                         https://twitter.com/messages/compose?recipient_id=835740314006511618&text=Covid%20Act
## 948                                                                                                                                                                                                                                                               http://inlandrc.org/coronavirus
## 949                                                                                                                                                                                                                                                                                            NA
## 950                                                                                                                                                                                                                                                                                            NA
## 951                                                                                                                                                                                                                                                                     https://wp.me/p4DWKE-1pr4
## 952                                                                                                                                                                                                                                                                      http://ow.ly/Yuug50yRvql
## 953                                                                                                                                                                                                                                                                                            NA
## 954                                                                                                                                                                        https://www.thequint.com/news/india/novel-coronavirus-covid-19-cases-death-india-world-news-live-updates-28-march-2020
## 955                                                                                                                                                                                                        https://www.hrw.org/news/2020/03/26/mexico-mexicans-need-accurate-covid-19-information
## 956                                                                                                                                                                                                                                                                       https://buff.ly/3aezGLw
## 957                                                                                                                                                                                                                                                                                            NA
## 958                                                                                                                                                                                                                                                                                            NA
## 959                                                                                                                                                                     https://nationalpost.com/opinion/conrad-black-on-covid-19-the-world-succumbed-to-a-pandemic-of-hysteria-more-than-a-virus
## 960                                                                 https://www.donorschoose.org/project/ed-tech-for-english-language-learners/4770584/?utm_source=dc&utm_medium=page&utm_campaign=project&utm_term=teacher_1827932&rf=page-dc-2020-03-project-teacher_1827932&challengeid=310303
## 961                                                                                                                           https://www.rawstory.com/2020/03/christian-pastor-who-thought-covid-19-is-just-mass-hysteria-is-among-the-first-in-virginia-to-die-from-virus/#.Xn0LaX4P5TN.twitter
## 962                                                                                                                                                                                                                                                                                            NA
## 963                                                                                                                                                                                                                                                                                            NA
## 964                                                                                                                                                                                                                                              https://twitter.com/i/events/1240300661364772864
## 965                                                                                                                                                                                                             https://insidehpc.com/2020/03/podcast-supercomputing-the-coronavirus-on-frontera/
## 966                                                                                                                       https://gizmodo.com/teen-who-died-of-covid-19-was-denied-treatment-because-1842520539/amp?utm_medium=sharefromsite&utm_source=gizmodo_twitter&__twitter_impression=true
## 967                                                                                                                                                                                                                                                                                            NA
## 968                                                                                                                                                                                                                 https://ew.com/celebrity/kathy-griffin-coronavirus-trump-abdominal-infection/
## 969                                                                                                                                                                                                                                              https://lnkd.in/eYEgwBn, https://lnkd.in/eKNpJkA
## 970                                                                                                                           https://www.donegallive.ie/news/features/530147/we-need-to-care-for-the-carers-a-view-of-donegal-through-the-coronavirus-crisis-and-beyond-by-siobhan-mcnamara.html
## 971                                                                                                                                                                                              https://espact.com/this-black-female-doctor-is-leading-her-team-to-develop-vaccine-for-covid-19/
## 972                                                                                                                                                                                                                                  https://twitter.com/bollocks_dogz/status/1243656904850669570
## 973                                                                                                                                                                                                                                                                                            NA
## 974                                                                                                                                                                       https://www.ndtv.com/india-news/jailed-up-doctor-kafeel-khan-writes-to-pm-modi-offers-help-in-fighting-covid-19-2201734
## 975                                                                                                                                                                                                          https://theenglishpost.com/maharashtra-covid-19-count-156-army-sounded-medical-help/
## 976                                                                                                                                                                                                                                                                                            NA
## 977                                                                                                                                                                                                                                      https://twitter.com/RussDiabo/status/1242992699516518401
## 978                                                                                                                                                                                                                                                                                            NA
## 979                                                                                                                                                                                                                                                                                            NA
## 980                                                                                                                                                                                                                                                                  https://youtu.be/McxkRcirsZ0
## 981                                                                                                                                                                                                                                                                                            NA
## 982                                                                                                                                                                                                                                                                        https://bit.ly/2wJKtPb
## 983                                                                                                                                                                                                                                                                                            NA
## 984                                                                                                                                                                                        https://www.cnbc.com/2020/03/23/video-hospital-in-china-where-covid-19-patients-treated-by-robots.html
## 985                                                                                                                                                                                                                                                                         http://dlvr.it/RSdHKH
## 986                                                                                                                                                                                                                                                                                            NA
## 987                                                                                                                                                                                                                                                                                            NA
## 988                                                                                                                                                                                                                                                                                            NA
## 989                                                                                                                                                                                                                                                                                            NA
## 990                                                                             https://www.military.com/daily-news/2020/03/25/army-asks-retired-soldiers-health-care-fields-come-back-covid-19-fight.html?ESRC=eb_200326.nl&fbclid=IwAR3k7lbfIzFFtnbBVAddGtbPsPAjUhrYrVHh3szX2nZC-Rsl54RRvmQAj20
## 991                                                                                                                                                                                                                                https://twitter.com/angelmutabaruka/status/1243638126247063556
## 992                                                                                                                                                                                          https://www.axios.com/united-states-most-coronavirus-cases-52b6d1b5-bc65-4b86-a42d-712cf9e3b556.html
## 993                                                                                                                                                                                                                                                              http://placer.ca.gov/coronavirus
## 994                                                                                                                                                                                                                                                                                            NA
## 995                                                                                                                                                                                    https://uk.pcmag.com/healthandfitness/125392/pornhub-premium-becomes-free-for-all-to-make-you-stay-at-home
## 996                                                                                                                                                                                                 https://www.blabbermouth.net/news/rammstein-says-till-lindemann-tested-negative-for-covid-19/
## 997                                                                                                                                                                                                      https://rusi.org/commentary/deferring-judgement-whither-uk-integrated-review-and-defence
## 998                                                                                                                                                                                                                                  https://www.youtube.com/watch?v=kamZlRikarU&feature=youtu.be
## 999                                                                                                                                                                                                                                                                                            NA
## 1000                                                                                                                                                                       https://twitter.com/mass_marion/status/1240815703059574784?s=20, https://twitter.com/nkagin/status/1242758217777786880
## 1001                                                                                                                                                                                                                                                                                           NA
## 1002                                                                                                                                                                                                                                                                                           NA
## 1003                                                                                                                                                                            https://www.bloomberg.com/news/articles/2020-03-27/abbott-launches-5-minute-covid-19-test-for-use-almost-anywhere
## 1004                                                                                                                                                                                                                                             https://twitter.com/i/events/1219057585707315201
## 1005                                                                                                                                                                                                                                                                                           NA
## 1006                                                                                                                                                                                             https://www.businessinsider.nl/history-of-people-blamed-for-diseases-like-china-covid-19-2020-3/
## 1007                                                                                                                                                                                                                                           https://twitter.com/NPR/status/1243615037111119875
## 1008                                                                                                                                                                                                                                                                                           NA
## 1009                                                                                                                                                                   https://www.washingtonblade.com/2020/03/26/dr-birx-faces-call-to-affirm-lgbtq-people-wont-face-bias-in-coronavirus-relief/
## 1010                                                                                                                                                                                                                                                                                           NA
## 1011                                                                                                                                                                                                                                                                                           NA
## 1012                                                                                                                                                                                                                                                                                           NA
## 1013                                                                                                                                                                                                                                                                                           NA
## 1014                                                                                                                       http://tripuranewslive.com/2020/03/28/tripura-news-live-appeal-stay-home-follow-government-guidelines-on-lockdown-to-stop-coronavirus-covid-19-keep-away-from-rumours/
## 1015                                                                                                                                                                           https://www.ngospelmedia.net/coronavirus-updates/take-the-lead-in-fight-against-covid-19-ex-minister-chidoka-says/
## 1016                                                                                                                                                                                                                                                                                           NA
## 1017                                                                                                                                                  https://theslot.jezebel.com/this-doctor-is-provoking-the-rights-narrative-that-covi-1842526592?utm_medium=sharefromsite&utm_source=_twitter
## 1018                                                                                                                                                                                                                                                                                           NA
## 1019                                                                                                   https://www.sfchronicle.com/health/article/NY-has-10-times-the-coronavirus-cases-CA-has-Why-15154692.php?utm_campaign=CMS%20Sharing%20Tools%20(Mobile)&utm_source=t.co&utm_medium=referral
## 1020                                                                                                                                                https://lawandcrime.com/covid-19-pandemic/mint-the-fcking-coin-rep-rashida-tlaib-proposes-radical-law-to-provide-coronavirus-relief-payments/
## 1021                                                                                                                                                                                    https://www.clickorlando.com/tech/2020/03/26/space-force-launches-its-1st-mission-with-virus-precautions/
## 1022                                                                                                                                                                                                                                                                       https://bit.ly/2wGiBLM
## 1023                                                                                                                                                                                                                                 https://twitter.com/TCLcollective/status/1243560968761860100
## 1024                                                                                                                                                  https://www.nouvelobs.com/coronavirus-de-wuhan/20200327.OBS26669/ce-que-l-on-sait-de-julie-l-adolescente-de-16-ans-decedee-du-covid-19.html
## 1025                                                                                                                                                                                                                                                                                           NA
## 1026                                                                                                                                                                                                                                                                                           NA
## 1027                                                                                                                                                                                                                               https://twitter.com/MAGAPATRIOT_TGM/status/1243287171966083075
## 1028                                                                                                                                                                                                   https://www.lutheranwestland.com/news/2020/3/27/coronavirus-update-from-the-superintendent
## 1029                                                                                                                                                                                                                                                                     https://hubs.ly/H0nX13y0
## 1030                                                                                                                                                                                                                                       https://twitter.com/atrupar/status/1243556939369496576
## 1031                                       https://www.thestar.com.my/news/nation/2020/03/28/covid-19-disinfection-of-public-spaces-high-risk-areas-to-begin-march-30, https://www.thestar.com.my/news/nation/2020/03/28/covid-19-disinfection-of-public-spaces-high-risk-areas-to-begin-march-30
## 1032                                                                                                                                                                                                  https://youtu.be/1RNnrJWtaGw, https://www.instagram.com/p/B-QNu55hqXQ/?igshid=152hm6tk106ks
## 1033                                                                                                                                                                                                                                                                                           NA
## 1034                                                                                                                                                                                                                                       https://twitter.com/jtemple/status/1243255545445773315
## 1035                                                                                                                                                                                                                                    https://twitter.com/Ugentilini/status/1243534482742878209
## 1036                                                                                                                                                                                                                                                                                           NA
## 1037                                                                                                                                                                                                                                  https://twitter.com/RepLeeZeldin/status/1243210360334815232
## 1038                                                                                                                                                                                                                                                                                           NA
## 1039                                                                                                                                                                                                                               https://twitter.com/amandarishworth/status/1243416222051364874
## 1040                                                                                                                                                                                                                               https://twitter.com/globaltimesnews/status/1243095935036436480
## 1041                                                                                                                                                                                                                                                    https://grantnissly.com/covid-19-journal/
## 1042                                                                                                                                                            https://www.courier-journal.com/story/news/local/2020/03/26/coronavirus-louisville-woman-describes-her-fight-covid-19/2919880001/
## 1043                                                                                                                                                                                                                                                                                           NA
## 1044                                                                                                                                                                                                                                                                                           NA
## 1045                                                                                                                                                                                                                                                                 https://youtu.be/cj1zRrABAXA
## 1046                                                                                                                                                                                                                                                                 https://youtu.be/E_gMT4_PDJI
## 1047                                                                                                                                                                                                                                                                                           NA
## 1048                                                                                                                                                                       https://www.bloglovin.com/blogs/a-pinch-kinder-12718639/covid-19-freebies-for-parents-teaching-kindergarten-7394336357
## 1049                                                                                                                                                                                                                                                                                           NA
## 1050                                                                                                                                                                                                                                                                                           NA
## 1051                                                                                                                                                                                                                                                                                           NA
## 1052                                                                                                                                                                                                                                                                                           NA
## 1053                                                                                                                                                                                                                                                                     http://ow.ly/9KW250yWggX
## 1054                                                                                                                                                                                                                                                                                           NA
## 1055                                                                                                                                                                                                                                                                                           NA
## 1056                   https://www.eventbrite.co.uk/e/webinar-covid-19-insurance-industry-update-tickets-100833377346?ref=enivtefor001&invite=MTk0MzY2NDYvc3VlLmxpdHRsZW1vcmVAZW50ZXJwcmlzZW0zLm9yZy51ay8w%0A&utm_source=eb_email&utm_medium=email&utm_campaign=inviteformalv2&utm_term=eventpage
## 1057                                                                                                                                                                                      https://www.leicestermercury.co.uk/news/local-news/jump-deaths-coronavirus-leicesters-hospitals-3992887
## 1058                                                                                                                                                                                                                                                                                           NA
## 1059                                                                                                                                                                                          https://wtop.com/national/2020/03/deadline-for-real-id-pushed-back-1-year-due-to-covid-19-outbreak/
## 1060                                                                                                                                                                                                                       https://spectator.us/surge-welfare-claims-devastating-impact-covid-19/
## 1061                                                                                                                                                                                                                                                                                           NA
## 1062                                                                                                                                                                                                                                                                                           NA
## 1063                                                                                                                                                                                                                                                                                           NA
## 1064                                                                                                                                                         http://wisn.com/article/house-passes-historic-dollar2-trillion-aid-package-hoping-to-curb-covid-19s-economic-impact/31957495?src=app
## 1065                                                                                                                                                                                                                       https://nzherald.co.nz/world/news/article.cfm?c_id=2&objectid=12319326
## 1066                                                                                                                                                                                    https://buzzicati.com.ng/news/anambra-state-police-forces-transporters-to-obey-covid-19-safety-directives
## 1067                                                                                                                                                                                                                                                                                           NA
## 1068                                                                                                                                                                                               https://www.caltech.edu/about/news/tip-iceberg-virologist-david-ho-bs-74-speaks-about-covid-19
## 1069                                                                                                                                                                                                                                                                                           NA
## 1070                                                                                                                                                                                                                                                                      https://wapo.st/2QMg0Xt
## 1071                                                                                                                                                                                                                                                                   http://KRLD.com/ListenLive
## 1072                                                                                                                                                                                                                                                                                           NA
## 1073                                                                                                                                                                                                                                   https://twitter.com/justicedems/status/1243353538123771905
## 1074                                                                                                                                                                                                             https://www.foxnews.com/world/hundreds-dead-iran-methanol-coronavirus-protection
## 1075                                                                                                                                                                                                                               https://twitter.com/realDonaldTrump/status/1243572588200280064
## 1076                                                                                                                                                                                                                                                                                           NA
## 1077                                                                                                                                                                                                                                                                                           NA
## 1078                                                                                                                                                            https://www.livelaw.in/columns/justice-in-the-time-of-covid-19-first-hand-experience-of-videoconferencing-at-supreme-court-154437
## 1079                                                                                                                                                                                                                                                                                           NA
## 1080                                                                                                                                                                                         https://www.woodtv.com/health/coronavirus/kent-co-recycling-center-temporarily-closes-amid-outbreak/
## 1081                                                                                                                                                                                                                                                                                           NA
## 1082                                                                                                                                                                                                                                                                                           NA
## 1083                                                                                                                                                                                                                                             https://twitter.com/i/events/1219057585707315201
## 1084                                                                                                                                                                                                                                                                      http://naijareports.com
## 1085                                                                                                                                                                                                                                                  https://www.youtube.com/watch?v=nJhdv46ltwc
## 1086                                                                                                                                                                                                                 https://www.wjcl.com/article/coronavirus-map-georgia-south-carolina/31902246
## 1087                                                                                                                                                                                                                                                                                           NA
## 1088                                                                                                                                                                                                                                                                                           NA
## 1089                                                                                                                                                                                   https://thelens.news/2020/03/27/inslee-signs-plastic-bag-ban-despite-covid-19-concerns-with-reusable-bags/
## 1090                                                                                                                                                                                                                                                                                           NA
## 1091                                                                                                                                                                                                                                                                  https://contentcafe.org.au/
## 1092                                                                                                                                                                                                                                                                                           NA
## 1093                                                                                                                                                                                https://www.cbc.ca/news/politics/g7-covid-19-coronavirus-wuhan-pompeo-trump-1.5510329?__vfz=medium%3Dsharebar
## 1094                                                                                                                                                                                                                                                                 https://youtu.be/jFvCwdfoiH8
## 1095                                                                                                                                                                                                                                                                                           NA
## 1096                                                                                                                                                                                                                                                                                           NA
## 1097                                                                                                                                                                                                                                                                                           NA
## 1098                                                                                                                                                                                                                                                                       https://bit.ly/2QSgE5Q
## 1099                                                                                                                                                                                                                                                                                           NA
## 1100                                                                                                                                                                                                                                                                                           NA
## 1101                                                                                                                                                                                                                                      https://twitter.com/GovStitt/status/1243246832224014336
## 1102                                                                                                                                                                                                                                                                                           NA
## 1103                                                                                                                                      https://cananewsonline.com/main/trinidad-health-trinidad-records-second-death-from-covid-19/?utm_campaign=twitter&utm_medium=twitter&utm_source=twitter
## 1104                                                                                                                                                                                                                                                                                           NA
## 1105                                                                                                                                                                                                                                                                        https://ja.ma/2WMd94X
## 1106                                                                                                                                                                                                                   https://www.spiked-online.com/2020/03/26/britain-is-sliding-into-dystopia/
## 1107                                                                                                                                                                                       https://www.localmedia.org/ways-local-media-companies-are-supporting-local-businesses-during-covid-19/
## 1108                                                                                                                                                                                                                                                                                           NA
## 1109                                                                                                                                                                                                                                                                                           NA
## 1110                                                                                                                                                                          https://www.michiganadvance.com/2020/03/27/michigan-sees-jump-of-800-covid-19-cases-since-thursday-up-to-92-deaths/
## 1111                                                                                                                                                                                                                                                                                           NA
##                                                                                           media_url
## 1                                                                                                NA
## 2                                                                                                NA
## 3                                                                                                NA
## 4                                                                                                NA
## 5                                                                                                NA
## 6                                                                                                NA
## 7                                                                                                NA
## 8                                                                                                NA
## 9                                                                                                NA
## 10                                                                                               NA
## 11                                                   http://pbs.twimg.com/media/EUDZ9wYWkAACGnA.jpg
## 12                                                   http://pbs.twimg.com/media/EUEmqcQXkAMPISr.jpg
## 13                                                                                               NA
## 14                                                                                               NA
## 15                                                                                               NA
## 16                                                                                               NA
## 17                                                   http://pbs.twimg.com/media/EUDbveTWsAAwkso.jpg
## 18                                                                                               NA
## 19                                                                                               NA
## 20                                                                                               NA
## 21                                                                                               NA
## 22                                                                                               NA
## 23                                                                                               NA
## 24                                                                                               NA
## 25                                                                                               NA
## 26                                                                                               NA
## 27                                                   http://pbs.twimg.com/media/EUDa3ajWoAISsRE.jpg
## 28                                                   http://pbs.twimg.com/media/EUD2wItWAAE-ijj.jpg
## 29                                                                                               NA
## 30                                                                                               NA
## 31                                                                                               NA
## 32                                                                                               NA
## 33                                                   http://pbs.twimg.com/media/EUFIzBPWsAAp_i_.jpg
## 34                                                                                               NA
## 35                                                                                               NA
## 36                                                                                               NA
## 37                                                   http://pbs.twimg.com/media/EULteHjXYAAxRRL.jpg
## 38                                                   http://pbs.twimg.com/media/EUIaNgPWkAIjUGb.png
## 39                                                                                               NA
## 40                                                                                               NA
## 41                                                                                               NA
## 42                                                                                               NA
## 43                                                                                               NA
## 44                                                                                               NA
## 45                                                                                               NA
## 46                                                   http://pbs.twimg.com/media/EUFI2hgWoAAxZaT.jpg
## 47                                                                                               NA
## 48                                                                                               NA
## 49                                                   http://pbs.twimg.com/media/EUEMvcZWAAAtvIo.jpg
## 50                                                                                               NA
## 51                                                                                               NA
## 52                                                                                               NA
## 53                                                                                               NA
## 54                                                   http://pbs.twimg.com/media/EUE2FR4XkAoJ_u3.jpg
## 55                                                                                               NA
## 56                                                                                               NA
## 57                                                                                               NA
## 58                                                                                               NA
## 59                                                                                               NA
## 60                                                                                               NA
## 61                                                   http://pbs.twimg.com/media/EUE7gGAX0AA2UT8.jpg
## 62                                                                                               NA
## 63                                                                                               NA
## 64                                                                                               NA
## 65                                                                                               NA
## 66                                                                                               NA
## 67                                                   http://pbs.twimg.com/media/EULHulIWkAA1BQu.jpg
## 68                                                                                               NA
## 69                                       http://pbs.twimg.com/tweet_video_thumb/EUD5HLLWoAIGZXg.jpg
## 70                                                                                               NA
## 71                                                   http://pbs.twimg.com/media/EUE-yLIXYAApG7i.jpg
## 72                                                                                               NA
## 73                                                   http://pbs.twimg.com/media/EUE8IlvXQAECgkv.jpg
## 74                                                                                               NA
## 75                                                                                               NA
## 76                                                   http://pbs.twimg.com/media/EUKYVYoXYAASaE2.jpg
## 77                                                                                               NA
## 78                                                   http://pbs.twimg.com/media/EUII-Z_XYAEuLAP.jpg
## 79                                                   http://pbs.twimg.com/media/EUEfKJRX0AAu-fI.jpg
## 80                                                                                               NA
## 81          http://pbs.twimg.com/ext_tw_video_thumb/1243794955497332745/pu/img/-N60B7VQS_Y45Ok-.jpg
## 82                                                                                               NA
## 83                                                                                               NA
## 84                                                                                               NA
## 85                                       http://pbs.twimg.com/tweet_video_thumb/EUJFMlMXQAErBkt.jpg
## 86                                                                                               NA
## 87                                                                                               NA
## 88                                                   http://pbs.twimg.com/media/EUJrK6cWkAIQ4sf.jpg
## 89                                                   http://pbs.twimg.com/media/EUJ6n4cWAAIe1uL.jpg
## 90                                                                                               NA
## 91                                                                                               NA
## 92                                                                                               NA
## 93                                                   http://pbs.twimg.com/media/EUH4JgCX0AEjX2O.jpg
## 94                                                                                               NA
## 95                                                                                               NA
## 96                                                   http://pbs.twimg.com/media/EUDTCVoXkAUp3ov.jpg
## 97                                       http://pbs.twimg.com/tweet_video_thumb/EUKNCy6UwAAobzV.jpg
## 98                                                   http://pbs.twimg.com/media/EUDWBMLWoAIBPfC.jpg
## 99                                       http://pbs.twimg.com/tweet_video_thumb/EULy3xxUMAA90NO.jpg
## 100                                                  http://pbs.twimg.com/media/EUKfXvmXsAAsKJi.jpg
## 101                                                  http://pbs.twimg.com/media/EULqCJeXgAA5yac.jpg
## 102                                                                                              NA
## 103                                                                                              NA
## 104                                                                                              NA
## 105                                                                                              NA
## 106                                                                                              NA
## 107                                                  http://pbs.twimg.com/media/EULAchJU4AQ5_82.jpg
## 108                                                                                              NA
## 109                                                                                              NA
## 110                                                                                              NA
## 111                                                                                              NA
## 112                                                  http://pbs.twimg.com/media/EUDYhAVWkAEE979.jpg
## 113                                                                                              NA
## 114                                                                                              NA
## 115                                                  http://pbs.twimg.com/media/EULfbOVXkAA8WqA.jpg
## 116                                                  http://pbs.twimg.com/media/EUI0Tv_XQAIhWqK.jpg
## 117                                                                                              NA
## 118                                                  http://pbs.twimg.com/media/EUIYzSYWsAEORha.jpg
## 119                                                                                              NA
## 120                                                                                              NA
## 121                                                                                              NA
## 122                                                                                              NA
## 123                                                                                              NA
## 124         http://pbs.twimg.com/ext_tw_video_thumb/1243581578468634626/pu/img/t4423orkV_bGVu7l.jpg
## 125                                                                                              NA
## 126         http://pbs.twimg.com/ext_tw_video_thumb/1243322771943415808/pu/img/1Rbd9S4H4NG61KVA.jpg
## 127                                                                                              NA
## 128                                                  http://pbs.twimg.com/media/EUEmoMJUMAIYagp.jpg
## 129                                                                                              NA
## 130                                                                                              NA
## 131                                                                                              NA
## 132                                                                                              NA
## 133                                                                                              NA
## 134                                                                                              NA
## 135                                                  http://pbs.twimg.com/media/EUDVsSgXsAIU8by.jpg
## 136                                                                                              NA
## 137                                                                                              NA
## 138                                                                                              NA
## 139                                                                                              NA
## 140                                                  http://pbs.twimg.com/media/EUIZt8qWoAcFyyF.png
## 141                                                                                              NA
## 142                                                  http://pbs.twimg.com/media/EUJPeXEWAAAttcM.jpg
## 143                                                                                              NA
## 144                                                                                              NA
## 145                                                                                              NA
## 146                                                                                              NA
## 147                                                                                              NA
## 148                                                                                              NA
## 149                                                  http://pbs.twimg.com/media/EUEvLUKX0AAXzn2.jpg
## 150                                                                                              NA
## 151                                                                                              NA
## 152                                                                                              NA
## 153                                                                                              NA
## 154                                                                                              NA
## 155                                                                                              NA
## 156                                                                                              NA
## 157         http://pbs.twimg.com/ext_tw_video_thumb/1243566182730534914/pu/img/QXrsDBw2STkjtl7P.jpg
## 158                                                                                              NA
## 159                                                  http://pbs.twimg.com/media/EUJkQN9WAAM-G3L.png
## 160                                                                                              NA
## 161                                                                                              NA
## 162                                                                                              NA
## 163                                                                                              NA
## 164                                                                                              NA
## 165                                                                                              NA
## 166                                                                                              NA
## 167                                                                                              NA
## 168                                                                                              NA
## 169         http://pbs.twimg.com/ext_tw_video_thumb/1243826538371584001/pu/img/6HCklwy7zaDnujFs.jpg
## 170                                                                                              NA
## 171                                      http://pbs.twimg.com/tweet_video_thumb/EUE5A2tXkAAnEzM.jpg
## 172                                                                                              NA
## 173                                                                                              NA
## 174                                                  http://pbs.twimg.com/media/EUKtlU8UYAICxq_.jpg
## 175                                                                                              NA
## 176                                                                                              NA
## 177                                                                                              NA
## 178                                                                                              NA
## 179                                                                                              NA
## 180                                                                                              NA
## 181         http://pbs.twimg.com/ext_tw_video_thumb/1243255442442276873/pu/img/VpZSZyA-QauJxLAu.jpg
## 182                                                                                              NA
## 183                                                                                              NA
## 184                                                                                              NA
## 185                                                  http://pbs.twimg.com/media/EUDf8sCUwAAMjkm.jpg
## 186                                                                                              NA
## 187                                                                                              NA
## 188         http://pbs.twimg.com/ext_tw_video_thumb/1242910266171375616/pu/img/bVR9xsQiGyrzDyVN.jpg
## 189                                                                                              NA
## 190                                                                                              NA
## 191                                                                                              NA
## 192                                                                                              NA
## 193                                                                                              NA
## 194         http://pbs.twimg.com/ext_tw_video_thumb/1242729580005392384/pu/img/iXSS5jScm7o2afy_.jpg
## 195                                                                                              NA
## 196                                                                                              NA
## 197                                                                                              NA
## 198                                                                                              NA
## 199                                                                                              NA
## 200                                                                                              NA
## 201                                                                                              NA
## 202                                                                                              NA
## 203                                                                                              NA
## 204                                                                                              NA
## 205                                                                                              NA
## 206                                                                                              NA
## 207                                                                                              NA
## 208                                                                                              NA
## 209                                                  http://pbs.twimg.com/media/EUKP_fCUUAAXBjU.jpg
## 210                                                                                              NA
## 211                                                                                              NA
## 212                                                  http://pbs.twimg.com/media/EUIJXwsWoAcjmRt.jpg
## 213                                                                                              NA
## 214           http://pbs.twimg.com/amplify_video_thumb/1240746305644830722/img/BVjSw5l0amfLRtXS.jpg
## 215                                                                                              NA
## 216                                                                                              NA
## 217                                                                                              NA
## 218                                                  http://pbs.twimg.com/media/EUD2VuNVAAAkm5e.jpg
## 219                                      http://pbs.twimg.com/tweet_video_thumb/EUD_-ZVWsAAzHY_.jpg
## 220                                                                                              NA
## 221                                                                                              NA
## 222                                                                                              NA
## 223                                                                                              NA
## 224                                                                                              NA
## 225                                                                                              NA
## 226                                                  http://pbs.twimg.com/media/EUIKaIQU0AEGvKe.jpg
## 227                                                  http://pbs.twimg.com/media/EUFQTclWAAAfyb8.jpg
## 228                                                                                              NA
## 229                                                                                              NA
## 230                                                                                              NA
## 231                                                                                              NA
## 232                                                  http://pbs.twimg.com/media/EUDyQQNWoAA1Vvp.jpg
## 233                                      http://pbs.twimg.com/tweet_video_thumb/EUJ7-31WoA0jmaJ.jpg
## 234                                                                                              NA
## 235                                                                                              NA
## 236                                                                                              NA
## 237                                                                                              NA
## 238                                                                                              NA
## 239                                                                                              NA
## 240                                      http://pbs.twimg.com/tweet_video_thumb/EUD4V-KWkAUxSdb.jpg
## 241                                                                                              NA
## 242                                                                                              NA
## 243                                                                                              NA
## 244                                                                                              NA
## 245                                      http://pbs.twimg.com/tweet_video_thumb/EUBk2FKU4AEt8Y0.jpg
## 246                                                                                              NA
## 247                                                  http://pbs.twimg.com/media/EUFHKtAU4AMdr40.jpg
## 248                                                                                              NA
## 249                                                                                              NA
## 250                                                                                              NA
## 251                                                                                              NA
## 252                                                                                              NA
## 253                                                                                              NA
## 254                                                                                              NA
## 255                                                                                              NA
## 256                                                                                              NA
## 257                                                                                              NA
## 258                                                                                              NA
## 259                                                                                              NA
## 260                                                                                              NA
## 261                                                                                              NA
## 262                                                  http://pbs.twimg.com/media/EUK9umEWAAU_b-u.jpg
## 263                                                                                              NA
## 264                                                                                              NA
## 265                                                  http://pbs.twimg.com/media/EUJjIjRWkAsQB6J.jpg
## 266                                                                                              NA
## 267         http://pbs.twimg.com/ext_tw_video_thumb/1243260503528558593/pu/img/vulGrbiKhnI2UtH8.jpg
## 268                                                  http://pbs.twimg.com/media/EUJkJRUWoAABq7K.jpg
## 269                                                                                              NA
## 270                                                                                              NA
## 271                                                                                              NA
## 272                                                                                              NA
## 273                                                                                              NA
## 274                                                                                              NA
## 275                                                                                              NA
## 276                                                  http://pbs.twimg.com/media/EUIeaMzWoAAeiYo.jpg
## 277                                                  http://pbs.twimg.com/media/EUEzRszXQAE-UXS.jpg
## 278                                                                                              NA
## 279                                                                                              NA
## 280                                                                                              NA
## 281                                                                                              NA
## 282                                                                                              NA
## 283                                                                                              NA
## 284                                                                                              NA
## 285                                                                                              NA
## 286                                                                                              NA
## 287                                                                                              NA
## 288                                                                                              NA
## 289                                                                                              NA
## 290                                                                                              NA
## 291                                                                                              NA
## 292                                                  http://pbs.twimg.com/media/EUJO6a4XQAEmFjd.jpg
## 293                                                                                              NA
## 294                                                  http://pbs.twimg.com/media/EUJEI95WkAMmiFu.jpg
## 295                                                                                              NA
## 296                                                                                              NA
## 297                                                                                              NA
## 298                                                  http://pbs.twimg.com/media/EUJQOaGXgAAvOWU.jpg
## 299                                                  http://pbs.twimg.com/media/EUEwftNWAAM-TjN.jpg
## 300                                                                                              NA
## 301                                                  http://pbs.twimg.com/media/EUIpSTVX0AEn8UG.jpg
## 302                                                  http://pbs.twimg.com/media/EUKuBh8XsAENIg8.jpg
## 303         http://pbs.twimg.com/ext_tw_video_thumb/1243672130870562818/pu/img/giaLi-cZXp2S4HHD.jpg
## 304                                                                                              NA
## 305                                                  http://pbs.twimg.com/media/EUL2CXwXgAAI5aj.jpg
## 306                                                                                              NA
## 307                                                                                              NA
## 308                                                  http://pbs.twimg.com/media/EUI0Pw1WoAEYSFd.jpg
## 309                                                                                              NA
## 310         http://pbs.twimg.com/ext_tw_video_thumb/1243269237944340480/pu/img/3lR-s10l4f-wCpPj.jpg
## 311                                                                                              NA
## 312                                                                                              NA
## 313                                                                                              NA
## 314                                                                                              NA
## 315                                                                                              NA
## 316                                                                                              NA
## 317         http://pbs.twimg.com/ext_tw_video_thumb/1243263229217910784/pu/img/jdIxXiKHWijiUamx.jpg
## 318                                                                                              NA
## 319                                                                                              NA
## 320                                                                                              NA
## 321                                                                                              NA
## 322                                                                                              NA
## 323                                                                                              NA
## 324                                                  http://pbs.twimg.com/media/EUIY0e0XQAEC3Zz.jpg
## 325                                                                                              NA
## 326         http://pbs.twimg.com/ext_tw_video_thumb/1243631667899781123/pu/img/tW-_ZaPEOzUByZgA.jpg
## 327         http://pbs.twimg.com/ext_tw_video_thumb/1243269783312830466/pu/img/zTeHavPtNNU0NxZ-.jpg
## 328                                                                                              NA
## 329                                                                                              NA
## 330                                                  http://pbs.twimg.com/media/EUD1eWKWsAEXt8u.jpg
## 331                                                                                              NA
## 332                                                                                              NA
## 333                                                                                              NA
## 334                                                                                              NA
## 335                                                                                              NA
## 336                                                                                              NA
## 337                                                                                              NA
## 338                                                                                              NA
## 339                                                  http://pbs.twimg.com/media/EUJWnqhX0AAp_to.jpg
## 340                                                                                              NA
## 341                                                  http://pbs.twimg.com/media/EULK5K8WkAEB8yI.jpg
## 342                                                                                              NA
## 343                                                  http://pbs.twimg.com/media/EUEaqPVWoAQiRaY.jpg
## 344                                                                                              NA
## 345                                                  http://pbs.twimg.com/media/EULlszkUwAEex0P.jpg
## 346                                                                                              NA
## 347                                                                                              NA
## 348                                                                                              NA
## 349                                                                                              NA
## 350                                                  http://pbs.twimg.com/media/EUJIOsEWsAEjEDF.jpg
## 351                                                                                              NA
## 352                                                                                              NA
## 353                                                                                              NA
## 354                                                                                              NA
## 355                                                  http://pbs.twimg.com/media/EUIY0NlXkAIskyE.jpg
## 356                                                  http://pbs.twimg.com/media/EUITyWHWAAI1XzB.jpg
## 357                                                                                              NA
## 358                                                  http://pbs.twimg.com/media/EULbSX_U4AE2h4_.jpg
## 359                                                                                              NA
## 360         http://pbs.twimg.com/ext_tw_video_thumb/1243255405842780162/pu/img/SOY9H8_6AGSNLyZh.jpg
## 361                                                                                              NA
## 362                                                                                              NA
## 363                                                  http://pbs.twimg.com/media/EUEu6QdUYAAbMi1.jpg
## 364                                                                                              NA
## 365                                                                                              NA
## 366                                                                                              NA
## 367                                                  http://pbs.twimg.com/media/EUJRsntXQAERkBC.jpg
## 368                                                                                              NA
## 369                                                                                              NA
## 370                                                                                              NA
## 371                                                  http://pbs.twimg.com/media/EUFkMWaUEAQOZ7b.jpg
## 372         http://pbs.twimg.com/ext_tw_video_thumb/1243268291298299905/pu/img/aRXEM5Xg-zunfrEo.jpg
## 373                                                  http://pbs.twimg.com/media/EUKS0DnXsAIQBkv.jpg
## 374                                                                                              NA
## 375                                                                                              NA
## 376                                                  http://pbs.twimg.com/media/EULz_K_WoAEa1VC.jpg
## 377                                                  http://pbs.twimg.com/media/EUIQZ0DXkAE7OwE.jpg
## 378                                                                                              NA
## 379                                      http://pbs.twimg.com/tweet_video_thumb/EUIJHKgWoAAtK-K.jpg
## 380                                                  http://pbs.twimg.com/media/EUIUED3WkAIkgU6.jpg
## 381                                                  http://pbs.twimg.com/media/EUKp5BuU8AI3A18.jpg
## 382                                                                                              NA
## 383                                                                                              NA
## 384                                                  http://pbs.twimg.com/media/EUKxURvU8AAxyXe.jpg
## 385                                                                                              NA
## 386                                                  http://pbs.twimg.com/media/EUL5flJXYAAurer.jpg
## 387                                                                                              NA
## 388                                                                                              NA
## 389                                      http://pbs.twimg.com/tweet_video_thumb/EUEKVEEWkAApqz9.jpg
## 390                                                  http://pbs.twimg.com/media/EUJSA8kXQAIuWzM.jpg
## 391                                                                                              NA
## 392                                                                                              NA
## 393                                                                                              NA
## 394                                                  http://pbs.twimg.com/media/EUIMLhjWAAIje2z.jpg
## 395                                                                                              NA
## 396                                                                                              NA
## 397                                                                                              NA
## 398                                                  http://pbs.twimg.com/media/EUE3f-XWoAE3yzQ.jpg
## 399                                                                                              NA
## 400                                                  http://pbs.twimg.com/media/EUJYkIcXQAAkE5k.jpg
## 401                                                  http://pbs.twimg.com/media/EUDZX-gXgAA2HEK.png
## 402                                                                                              NA
## 403         http://pbs.twimg.com/ext_tw_video_thumb/1243579851874983938/pu/img/A-UC1qRoXTDZW4eV.jpg
## 404                                                                                              NA
## 405                                                                                              NA
## 406                                                                                              NA
## 407                                                                                              NA
## 408                                                  http://pbs.twimg.com/media/EUDuqp-VAAEsCre.jpg
## 409                                                                                              NA
## 410                                                                                              NA
## 411                                                                                              NA
## 412         http://pbs.twimg.com/ext_tw_video_thumb/1243606765192785922/pu/img/pCfwfW8dLIhJ5OCJ.jpg
## 413                                                                                              NA
## 414                                                  http://pbs.twimg.com/media/EUDjykbXQAET2b6.jpg
## 415                                                                                              NA
## 416                                                                                              NA
## 417                                                  http://pbs.twimg.com/media/EUJldXIXkAIM47h.jpg
## 418                                                  http://pbs.twimg.com/media/EUJhLUIVAAAgM5v.jpg
## 419                                                                                              NA
## 420                                                                                              NA
## 421                                                                                              NA
## 422                                                  http://pbs.twimg.com/media/EUED2p9VAAAl2iy.jpg
## 423                                                                                              NA
## 424                                                                                              NA
## 425           http://pbs.twimg.com/amplify_video_thumb/1243309953563209729/img/iJgHnQeVR60lpgca.jpg
## 426                                                                                              NA
## 427                                                                                              NA
## 428                                                                                              NA
## 429                                                                                              NA
## 430                                                                                              NA
## 431                                                                                              NA
## 432                                                                                              NA
## 433                                                                                              NA
## 434                                                                                              NA
## 435                                                  http://pbs.twimg.com/media/EUDtI-NU8AAqMJR.jpg
## 436                                                  http://pbs.twimg.com/media/EUDYHQDX0AM4OSc.jpg
## 437                                                                                              NA
## 438                                                                                              NA
## 439                                                  http://pbs.twimg.com/media/EUEMMgZUwAAv-V1.jpg
## 440                                                                                              NA
## 441                                                                                              NA
## 442                                                  http://pbs.twimg.com/media/EUIbawMWsAEUK59.jpg
## 443                                                                                              NA
## 444                                                                                              NA
## 445                                                                                              NA
## 446                                                                                              NA
## 447                                                                                              NA
## 448                                                                                              NA
## 449                                                                                              NA
## 450                                                  http://pbs.twimg.com/media/EUEgnqaXgAIH8Zy.jpg
## 451                                                                                              NA
## 452                                                                                              NA
## 453                                                                                              NA
## 454                                                                                              NA
## 455                                                                                              NA
## 456                                                                                              NA
## 457                                                                                              NA
## 458                                                                                              NA
## 459                                                                                              NA
## 460                                      http://pbs.twimg.com/tweet_video_thumb/EUDzF--XsAIOwRL.jpg
## 461                                                                                              NA
## 462                                                                                              NA
## 463                                                                                              NA
## 464                                                                                              NA
## 465                                                                                              NA
## 466                                                  http://pbs.twimg.com/media/EUJJRkXXYAIeT0I.png
## 467                                                                                              NA
## 468                                                  http://pbs.twimg.com/media/EUEcN5sX0AE8R9U.png
## 469                                                                                              NA
## 470                                                                                              NA
## 471                                                                                              NA
## 472                                                                                              NA
## 473                                                  http://pbs.twimg.com/media/EUFPevXUcAAcAFk.jpg
## 474         http://pbs.twimg.com/ext_tw_video_thumb/1243588135377911809/pu/img/z8rLOXXMplzMAE3y.jpg
## 475                                                                                              NA
## 476                                                                                              NA
## 477                                                                                              NA
## 478                                      http://pbs.twimg.com/tweet_video_thumb/EUI33DPXgAc-_a3.jpg
## 479                                                                                              NA
## 480                                                                                              NA
## 481                                                                                              NA
## 482                                                                                              NA
## 483                                                                                              NA
## 484                                                                                              NA
## 485         http://pbs.twimg.com/ext_tw_video_thumb/1243256894761897985/pu/img/ECvstQWwnSr1W69m.jpg
## 486                                                                                              NA
## 487                                                                                              NA
## 488                                                  http://pbs.twimg.com/media/EUEwcnHUUAAAh--.png
## 489                                                                                              NA
## 490                                                                                              NA
## 491                                                  http://pbs.twimg.com/media/EULl53FXgAAw52u.jpg
## 492         http://pbs.twimg.com/ext_tw_video_thumb/1243589280078934016/pu/img/GxOdLSJZ6rmFz3S6.jpg
## 493                                                                                              NA
## 494                                                  http://pbs.twimg.com/media/EUJeQVvUcAE_CYc.jpg
## 495                                                  http://pbs.twimg.com/media/EUERaWHXQAAFcvx.jpg
## 496                                                                                              NA
## 497                                                                                              NA
## 498                                                  http://pbs.twimg.com/media/EUDevIAXgAACzrX.jpg
## 499                                                  http://pbs.twimg.com/media/EUIr2L7XYAEWSKv.png
## 500                                                                                              NA
## 501                                                  http://pbs.twimg.com/media/EUDsXktXsAIoHX1.jpg
## 502                                                  http://pbs.twimg.com/media/EUDceB0X0AEfOVT.jpg
## 503                                                                                              NA
## 504                                                                                              NA
## 505                                                                                              NA
## 506                                                                                              NA
## 507                                                                                              NA
## 508                                                  http://pbs.twimg.com/media/EUEHSQxXsAA70GW.jpg
## 509                                                                                              NA
## 510                                                                                              NA
## 511                                                                                              NA
## 512                                                                                              NA
## 513                                                                                              NA
## 514                                                                                              NA
## 515                                                                                              NA
## 516                                                                                              NA
## 517                                                                                              NA
## 518                                                                                              NA
## 519                                                                                              NA
## 520                                                                                              NA
## 521                                                                                              NA
## 522                                                  http://pbs.twimg.com/media/EUEQKqrWsAMzQ7L.png
## 523                                                  http://pbs.twimg.com/media/EUKsDboX0AI2a6H.jpg
## 524                                                                                              NA
## 525                                                                                              NA
## 526                                                                                              NA
## 527                                                                                              NA
## 528                                                                                              NA
## 529                                                                                              NA
## 530                                                                                              NA
## 531                                                                                              NA
## 532                                                                                              NA
## 533                                                                                              NA
## 534                                                  http://pbs.twimg.com/media/EUIlSfPXgAchoIR.jpg
## 535                                                  http://pbs.twimg.com/media/EUJg7lXWsAAUBPS.jpg
## 536                                                                                              NA
## 537                                                                                              NA
## 538                                                                                              NA
## 539                                                                                              NA
## 540                                                                                              NA
## 541                                                                                              NA
## 542                                                                                              NA
## 543                                                                                              NA
## 544                                                                                              NA
## 545                                                                                              NA
## 546                                                                                              NA
## 547                                                                                              NA
## 548                                                  http://pbs.twimg.com/media/EULDDljX0AY3MbE.png
## 549         http://pbs.twimg.com/ext_tw_video_thumb/1243607238184484869/pu/img/-qdv1utGAEdgG080.jpg
## 550                                                                                              NA
## 551                                                                                              NA
## 552                                                                                              NA
## 553                                                                                              NA
## 554                                                                                              NA
## 555                                                                                              NA
## 556                                                                                              NA
## 557                                                                                              NA
## 558                                                                                              NA
## 559                                                  http://pbs.twimg.com/media/EUJsl7MXQAc0-FS.jpg
## 560                                                                                              NA
## 561                                                                                              NA
## 562                                                                                              NA
## 563                                                  http://pbs.twimg.com/media/EUIs3JyWsAYiyMj.jpg
## 564                                                  http://pbs.twimg.com/media/EUI_5HJWsAAcRrY.jpg
## 565                                                                                              NA
## 566                                                                                              NA
## 567                                                  http://pbs.twimg.com/media/EUFFBGdU8AARxBb.jpg
## 568                                                                                              NA
## 569                                                                                              NA
## 570                                                                                              NA
## 571                                                                                              NA
## 572                                                                                              NA
## 573                                                  http://pbs.twimg.com/media/EULFLDnUcAUSpsJ.jpg
## 574                                                  http://pbs.twimg.com/media/EUJXYF4UUAAf8fd.jpg
## 575                                                                                              NA
## 576                                                                                              NA
## 577                                                                                              NA
## 578                                                                                              NA
## 579                                                                                              NA
## 580                                                                                              NA
## 581                                                                                              NA
## 582                                                                                              NA
## 583                                                                                              NA
## 584                                                                                              NA
## 585                                                                                              NA
## 586                                                                                              NA
## 587                                                                                              NA
## 588                                                                                              NA
## 589                                      http://pbs.twimg.com/tweet_video_thumb/EUDtafPU0AAW1HY.jpg
## 590         http://pbs.twimg.com/ext_tw_video_thumb/1243309817214554114/pu/img/Q_55I8siCibk2y-7.jpg
## 591                                                                                              NA
## 592                                                                                              NA
## 593                                                                                              NA
## 594                                                                                              NA
## 595                                                                                              NA
## 596                                                                                              NA
## 597                                                                                              NA
## 598                                                  http://pbs.twimg.com/media/EUDhZUyX0AMnFV6.png
## 599         http://pbs.twimg.com/ext_tw_video_thumb/1243315283898650627/pu/img/CP2KpfaUM-H2TLYV.jpg
## 600                                                  http://pbs.twimg.com/media/EULvoT1XkAIGgVA.jpg
## 601                                                  http://pbs.twimg.com/media/EUKIXRpWkAIMmVZ.jpg
## 602                                                                                              NA
## 603                                                                                              NA
## 604                                                                                              NA
## 605                                                                                              NA
## 606                                                                                              NA
## 607                                                                                              NA
## 608                                                                                              NA
## 609                                                                                              NA
## 610                                                  http://pbs.twimg.com/media/EUEuiD6X0AAxHCQ.jpg
## 611                                                                                              NA
## 612                                                                                              NA
## 613                                                  http://pbs.twimg.com/media/EUILZBhXkAAJYis.png
## 614                                                                                              NA
## 615                                                  http://pbs.twimg.com/media/EUDwbVYWoAIPtGx.jpg
## 616                                                                                              NA
## 617                                                                                              NA
## 618                                                                                              NA
## 619                                                  http://pbs.twimg.com/media/EUFYpuAUMAA6Pct.jpg
## 620                                                                                              NA
## 621                                                  http://pbs.twimg.com/media/EUIJmdbUEAU0BO7.png
## 622                                                                                              NA
## 623                                                  http://pbs.twimg.com/media/EUJyroXWsAA5zv7.jpg
## 624                                                                                              NA
## 625                                                  http://pbs.twimg.com/media/EUE26HwXYAIEtJ-.jpg
## 626                                                                                              NA
## 627                                                                                              NA
## 628                                                  http://pbs.twimg.com/media/EUDWAXGXsAAwq0w.jpg
## 629                                                                                              NA
## 630                                                                                              NA
## 631                                                                                              NA
## 632                                                  http://pbs.twimg.com/media/EUDlWiMXsAE2PkB.jpg
## 633                                                                                              NA
## 634                                                  http://pbs.twimg.com/media/EUJgO0XXYAIbsP1.jpg
## 635                                                                                              NA
## 636                                                                                              NA
## 637                                                                                              NA
## 638                                                                                              NA
## 639                                                                                              NA
## 640                                      http://pbs.twimg.com/tweet_video_thumb/EUKYENxUUAA1USm.jpg
## 641  http://pbs.twimg.com/media/EULdjrBWAAADDY1.jpg, http://pbs.twimg.com/media/EULbSmaWAAAJWqr.jpg
## 642                                                                                              NA
## 643                                                                                              NA
## 644                                                                                              NA
## 645                                                                                              NA
## 646                                                                                              NA
## 647                                                                                              NA
## 648                                                                                              NA
## 649                                                                                              NA
## 650                                                                                              NA
## 651                                                                                              NA
## 652                                                  http://pbs.twimg.com/media/EUJMMhBXkAUCBpY.png
## 653                                                  http://pbs.twimg.com/media/EUJfl4bXQAANCMC.jpg
## 654                                                                                              NA
## 655                                                                                              NA
## 656                                                                                              NA
## 657                                                                                              NA
## 658                                                                                              NA
## 659                                                                                              NA
## 660                                                  http://pbs.twimg.com/media/EUKJMIRWsAQoFWv.jpg
## 661                                                                                              NA
## 662                                                                                              NA
## 663         http://pbs.twimg.com/ext_tw_video_thumb/1243382466632540169/pu/img/P7NXlioYb3YqtAPf.jpg
## 664                                                  http://pbs.twimg.com/media/EUESokRWoAUODLk.jpg
## 665                                                                                              NA
## 666                                                                                              NA
## 667                                                                                              NA
## 668                                                                                              NA
## 669                                                                                              NA
## 670                                                                                              NA
## 671                                                                                              NA
## 672                                                                                              NA
## 673                                                                                              NA
## 674                                                                                              NA
## 675                                                                                              NA
## 676                                                                                              NA
## 677                                                                                              NA
## 678                                                                                              NA
## 679                                                                                              NA
## 680                                                  http://pbs.twimg.com/media/EUDby0cWsAI7QGD.jpg
## 681                                                                                              NA
## 682                                                                                              NA
## 683                                                                                              NA
## 684                                                                                              NA
## 685                                                                                              NA
## 686                                                                                              NA
## 687                                                  http://pbs.twimg.com/media/EUIRX9uXsAIqw0x.jpg
## 688                                                  http://pbs.twimg.com/media/EUDog2KU8AU7iTz.jpg
## 689                                                                                              NA
## 690         http://pbs.twimg.com/ext_tw_video_thumb/1243269813302177792/pu/img/aohugMNhMdbYdoAF.jpg
## 691                                                  http://pbs.twimg.com/media/EUEGyy7XsAAXbSE.jpg
## 692                                                                                              NA
## 693                                                                                              NA
## 694                                                                                              NA
## 695                                                                                              NA
## 696                                                                                              NA
## 697                                                  http://pbs.twimg.com/media/EUJFJo9X0AExhD-.jpg
## 698                                                                                              NA
## 699                                                                                              NA
## 700                                                                                              NA
## 701                                                                                              NA
## 702                                                                                              NA
## 703                                                                                              NA
## 704                                                                                              NA
## 705                                                                                              NA
## 706                                                  http://pbs.twimg.com/media/EUJTEiJXkAEy89C.jpg
## 707                                                                                              NA
## 708                                                                                              NA
## 709                                                                                              NA
## 710                                                                                              NA
## 711                                                                                              NA
## 712                                                                                              NA
## 713                                                                                              NA
## 714                                                  http://pbs.twimg.com/media/EUEuEsVWoAE-jvC.jpg
## 715                                                                                              NA
## 716                                                                                              NA
## 717                                                  http://pbs.twimg.com/media/EUE5Z-JUEAAEafW.jpg
## 718                                                                                              NA
## 719                                                                                              NA
## 720                                                                                              NA
## 721                                                                                              NA
## 722                                                  http://pbs.twimg.com/media/EUKkGo9UYAA5o4M.jpg
## 723                                                                                              NA
## 724                                                                                              NA
## 725                                                                                              NA
## 726                                                  http://pbs.twimg.com/media/EUJiIs5WsAICsfv.jpg
## 727                                                                                              NA
## 728                                                                                              NA
## 729                                                                                              NA
## 730                                                                                              NA
## 731                                                                                              NA
## 732                                      http://pbs.twimg.com/tweet_video_thumb/EUL0oEFWAAYTl5x.jpg
## 733                                                                                              NA
## 734                                                                                              NA
## 735                                                                                              NA
## 736                                                                                              NA
## 737         http://pbs.twimg.com/ext_tw_video_thumb/1243707955352133633/pu/img/FA0VxtoDYAZaNLpA.jpg
## 738                                                  http://pbs.twimg.com/media/ET_R07cWAAkGHhY.jpg
## 739                                                                                              NA
## 740                                                  http://pbs.twimg.com/media/EUIubcKXkAIvBlG.jpg
## 741                                                                                              NA
## 742                                                  http://pbs.twimg.com/media/EUDX3Y1XQAAQ-hx.jpg
## 743                                                  http://pbs.twimg.com/media/EULYgqRXkAAATOy.jpg
## 744                                                                                              NA
## 745                                                                                              NA
## 746                                                                                              NA
## 747                                                                                              NA
## 748                                                                                              NA
## 749                                                                                              NA
## 750                                                                                              NA
## 751                                                  http://pbs.twimg.com/media/EUEepDEU4AEcq2l.jpg
## 752                                                  http://pbs.twimg.com/media/EUIrRomXsAUmb7k.jpg
## 753                                                  http://pbs.twimg.com/media/EUFrm3SUMAUB-RM.jpg
## 754                                                  http://pbs.twimg.com/media/EUEOZaoXQAEJwXS.jpg
## 755                                                  http://pbs.twimg.com/media/EUJJu0MX0AAucwS.jpg
## 756                                                  http://pbs.twimg.com/media/EULNPLTXQAAFT8i.jpg
## 757                                                  http://pbs.twimg.com/media/EUEKm5AWoAAmPq0.jpg
## 758                                                                                              NA
## 759                                                                                              NA
## 760                                                                                              NA
## 761                                                                                              NA
## 762                                                                                              NA
## 763                                                                                              NA
## 764                                                                                              NA
## 765                                                                                              NA
## 766                                                                                              NA
## 767                                                                                              NA
## 768                                                                                              NA
## 769                                                                                              NA
## 770                                                                                              NA
## 771                                                                                              NA
## 772                                                  http://pbs.twimg.com/media/EUId40tWoAEWtVX.jpg
## 773                                                  http://pbs.twimg.com/media/EUJFFIhWoAAJ4H4.jpg
## 774                                                  http://pbs.twimg.com/media/EUI7MHYXsAQMbGv.png
## 775                                                                                              NA
## 776                                                                                              NA
## 777                                                                                              NA
## 778                                                                                              NA
## 779                                                  http://pbs.twimg.com/media/EULMnAYWsAU81mr.jpg
## 780                                                  http://pbs.twimg.com/media/EUIWyauX0AE2VOZ.jpg
## 781                                                                                              NA
## 782                                                                                              NA
## 783                                                                                              NA
## 784                                                  http://pbs.twimg.com/media/EULnVVPVAAAj8j6.jpg
## 785                                                  http://pbs.twimg.com/media/EUDUoaDWoAALgpq.jpg
## 786                                                  http://pbs.twimg.com/media/EUJeeSdXYAIy1ci.jpg
## 787                                                                                              NA
## 788                                                                                              NA
## 789                                                  http://pbs.twimg.com/media/EUJk4nZXkAAdP6Q.jpg
## 790                                                                                              NA
## 791                                                                                              NA
## 792                                      http://pbs.twimg.com/tweet_video_thumb/EUIv8iOUcAA0XvH.jpg
## 793                                                                                              NA
## 794                                                                                              NA
## 795                                                                                              NA
## 796                                                                                              NA
## 797                                                                                              NA
## 798                                                                                              NA
## 799                                                                                              NA
## 800                                                                                              NA
## 801                                      http://pbs.twimg.com/tweet_video_thumb/EUJ2EE7U8AEjmuc.jpg
## 802                                                  http://pbs.twimg.com/media/EUDcN41WsAEQsUz.jpg
## 803                                                                                              NA
## 804                                                                                              NA
## 805                                                                                              NA
## 806                                                                                              NA
## 807                                                                                              NA
## 808                                                                                              NA
## 809                                                                                              NA
## 810                                                                                              NA
## 811                                                  http://pbs.twimg.com/media/EUE88baXgAAa_AC.jpg
## 812                                                                                              NA
## 813                                                                                              NA
## 814                                                                                              NA
## 815                                                  http://pbs.twimg.com/media/EUJbMEqWkAA4XPD.jpg
## 816                                                                                              NA
## 817                                                  http://pbs.twimg.com/media/EUDwjtgXYAA8M5S.jpg
## 818                                                                                              NA
## 819                                                  http://pbs.twimg.com/media/EUFWOveWsAEdw6-.jpg
## 820                                                                                              NA
## 821                                                                                              NA
## 822                                                  http://pbs.twimg.com/media/EUDbAzrXsAEd77t.jpg
## 823                                                                                              NA
## 824                                                  http://pbs.twimg.com/media/EUJ-_ogUcAEEBnp.jpg
## 825                                                                                              NA
## 826                                                  http://pbs.twimg.com/media/EUFpN7DU8AAAPRf.jpg
## 827                                                                                              NA
## 828                                                                                              NA
## 829                                                                                              NA
## 830                                                                                              NA
## 831                                                  http://pbs.twimg.com/media/EUL3t19UUAAhY4W.jpg
## 832                                                                                              NA
## 833                                                                                              NA
## 834                                                                                              NA
## 835                                                                                              NA
## 836                                                  http://pbs.twimg.com/media/EUKwujEXQAIBuMh.jpg
## 837                                                                                              NA
## 838                                                                                              NA
## 839                                                                                              NA
## 840                                                                                              NA
## 841                                                                                              NA
## 842                                                                                              NA
## 843                                                                                              NA
## 844                                                                                              NA
## 845                                                                                              NA
## 846                                                                                              NA
## 847                                                                                              NA
## 848                                                                                              NA
## 849                                                                                              NA
## 850                                                                                              NA
## 851                                                  http://pbs.twimg.com/media/EUL3jBlXYAA8jR_.jpg
## 852                                                                                              NA
## 853                                                                                              NA
## 854                                                                                              NA
## 855                                                                                              NA
## 856                                                                                              NA
## 857                                                                                              NA
## 858                                                  http://pbs.twimg.com/media/EUD97wYWAAMh81K.jpg
## 859                                                                                              NA
## 860                                                  http://pbs.twimg.com/media/EULbv5sXkAYuxOP.jpg
## 861                                                                                              NA
## 862                                                                                              NA
## 863                                                                                              NA
## 864                                                                                              NA
## 865                                                  http://pbs.twimg.com/media/EUJmaQhXkAA_COW.jpg
## 866                                                                                              NA
## 867                                                  http://pbs.twimg.com/media/EUDUGjtX0AArkzL.jpg
## 868                                                                                              NA
## 869                                                                                              NA
## 870                                                                                              NA
## 871                                                                                              NA
## 872                                                                                              NA
## 873                                                                                              NA
## 874                                                                                              NA
## 875                                                                                              NA
## 876                                                                                              NA
## 877                                                                                              NA
## 878                                                                                              NA
## 879                                                                                              NA
## 880                                                                                              NA
## 881                                                                                              NA
## 882                                                                                              NA
## 883                                                                                              NA
## 884                                                                                              NA
## 885                                                                                              NA
## 886                                                  http://pbs.twimg.com/media/EUDjfXRWkAI5gJa.jpg
## 887                                                                                              NA
## 888                                                                                              NA
## 889                                                                                              NA
## 890                                                  http://pbs.twimg.com/media/EUDovReWsAQC-Ok.jpg
## 891                                                                                              NA
## 892                                                                                              NA
## 893                                                  http://pbs.twimg.com/media/EUDRJUJWoAAZcl6.jpg
## 894                                                  http://pbs.twimg.com/media/EUC2zOcUcAA1jpv.jpg
## 895                                                                                              NA
## 896                                                                                              NA
## 897                                                                                              NA
## 898                                                  http://pbs.twimg.com/media/EUEVL03WkAAe-h0.jpg
## 899                                                                                              NA
## 900                                                                                              NA
## 901                                                                                              NA
## 902                                                  http://pbs.twimg.com/media/EULLBXdUwAABrGD.jpg
## 903                                                                                              NA
## 904                                                  http://pbs.twimg.com/media/EUJMKTBWkAcbrJN.jpg
## 905                                                                                              NA
## 906                                                                                              NA
## 907                                                                                              NA
## 908                                                  http://pbs.twimg.com/media/EUINnMLX0AQ9mlf.jpg
## 909                                                                                              NA
## 910                                                                                              NA
## 911                                                                                              NA
## 912                                                                                              NA
## 913                                                                                              NA
## 914                                                                                              NA
## 915                                                  http://pbs.twimg.com/media/EUJZI-7WsAMsv1G.jpg
## 916                                                  http://pbs.twimg.com/media/EUFjwejU0AIor-9.jpg
## 917                                                                                              NA
## 918                                                                                              NA
## 919                                                                                              NA
## 920                                                                                              NA
## 921                                                                                              NA
## 922                                                                                              NA
## 923                                                                                              NA
## 924                                                                                              NA
## 925         http://pbs.twimg.com/ext_tw_video_thumb/1243227929695453184/pu/img/HLMsE50BTKQQdnxs.jpg
## 926                                                                                              NA
## 927                                                                                              NA
## 928                                                  http://pbs.twimg.com/media/EUIfD0TXsAA9UGY.jpg
## 929                                                  http://pbs.twimg.com/media/EUJNme2WkAEYVoc.jpg
## 930         http://pbs.twimg.com/ext_tw_video_thumb/1243377446503600129/pu/img/rIpdtXBnishRmvne.jpg
## 931                                                                                              NA
## 932                                                                                              NA
## 933                                                                                              NA
## 934                                                  http://pbs.twimg.com/media/EULmUpzXkAI6lJe.jpg
## 935                                                                                              NA
## 936                                                                                              NA
## 937                                                  http://pbs.twimg.com/media/EUJ7rjVXQAEF1wN.jpg
## 938                                                                                              NA
## 939                                                                                              NA
## 940                                                  http://pbs.twimg.com/media/EUDX9gLWoAEaUag.jpg
## 941                                                  http://pbs.twimg.com/media/EUEDCZLWsAI6boS.jpg
## 942                                                                                              NA
## 943                                                                                              NA
## 944                                                                                              NA
## 945                                                  http://pbs.twimg.com/media/EUDm7wHXYAQF7zW.jpg
## 946                                                                                              NA
## 947                                                  http://pbs.twimg.com/media/EUKgqP9UMAchqj4.jpg
## 948         http://pbs.twimg.com/ext_tw_video_thumb/1243305808651116544/pu/img/7yAilq6gXWtkFHpz.jpg
## 949                                      http://pbs.twimg.com/tweet_video_thumb/EUFLi8_XkAE0228.jpg
## 950                                                                                              NA
## 951                                                                                              NA
## 952                                                  http://pbs.twimg.com/media/EUDs4HkXQAEWxw-.jpg
## 953                                                  http://pbs.twimg.com/media/EUJJC3SWAAMpb8u.jpg
## 954                                                                                              NA
## 955                                                                                              NA
## 956                                                  http://pbs.twimg.com/media/EUERIUuWkAAsSDP.png
## 957                                                  http://pbs.twimg.com/media/EUIV6a6WsAEZU08.jpg
## 958                                                                                              NA
## 959                                                                                              NA
## 960                                                                                              NA
## 961                                                                                              NA
## 962                                                                                              NA
## 963                                                                                              NA
## 964                                                                                              NA
## 965                                                  http://pbs.twimg.com/media/EUDSAsRUwAAq2A0.jpg
## 966                                                                                              NA
## 967                                                                                              NA
## 968                                                                                              NA
## 969                                                                                              NA
## 970                                                                                              NA
## 971                                                                                              NA
## 972                                                                                              NA
## 973                                                  http://pbs.twimg.com/media/EUEhpB7WAAwzr19.jpg
## 974                                                                                              NA
## 975                                                                                              NA
## 976                                                                                              NA
## 977                                                                                              NA
## 978                                                                                              NA
## 979                                                                                              NA
## 980                                                                                              NA
## 981                                      http://pbs.twimg.com/tweet_video_thumb/EUEyYlRXgAEW75e.jpg
## 982                                                                                              NA
## 983                                                                                              NA
## 984                                                                                              NA
## 985                                                                                              NA
## 986                                                                                              NA
## 987                                                                                              NA
## 988                                                                                              NA
## 989                                                                                              NA
## 990                                                                                              NA
## 991                                                                                              NA
## 992                                                                                              NA
## 993                                                  http://pbs.twimg.com/media/EUI3mvJXgAEuHBN.jpg
## 994                                                                                              NA
## 995                                                                                              NA
## 996                                                                                              NA
## 997                                                  http://pbs.twimg.com/media/EUIgZp5WAAI_E3C.png
## 998                                                  http://pbs.twimg.com/media/EUEVR6nWoAASJYH.jpg
## 999                                                                                              NA
## 1000                                                                                             NA
## 1001                                                                                             NA
## 1002                                                                                             NA
## 1003                                                                                             NA
## 1004                                                                                             NA
## 1005                                                                                             NA
## 1006                                                                                             NA
## 1007                                                                                             NA
## 1008                                                                                             NA
## 1009                                                                                             NA
## 1010                                                 http://pbs.twimg.com/media/EUJUUabVAAA9Q9l.jpg
## 1011                                                                                             NA
## 1012        http://pbs.twimg.com/ext_tw_video_thumb/1243732671806742528/pu/img/sRGiShA1hJm5UgI7.jpg
## 1013                                     http://pbs.twimg.com/tweet_video_thumb/EUJRwGGUYAAqi69.jpg
## 1014                                                 http://pbs.twimg.com/media/EUKp01lWkAEbT6h.jpg
## 1015                                                 http://pbs.twimg.com/media/EUEBjMlXgAYA8iA.jpg
## 1016                                                                                             NA
## 1017                                                                                             NA
## 1018                                                                                             NA
## 1019                                                                                             NA
## 1020                                                                                             NA
## 1021                                                                                             NA
## 1022                                                 http://pbs.twimg.com/media/EUFObXbWAAAjByS.jpg
## 1023                                                 http://pbs.twimg.com/media/EUIcZm3XgAI_oeL.jpg
## 1024                                                                                             NA
## 1025                                                                                             NA
## 1026                                                                                             NA
## 1027                                                                                             NA
## 1028                                                                                             NA
## 1029                                                                                             NA
## 1030                                                                                             NA
## 1031                                                                                             NA
## 1032                                                                                             NA
## 1033                                                                                             NA
## 1034                                                                                             NA
## 1035                                                                                             NA
## 1036                                                 http://pbs.twimg.com/media/EULyPo3XQAApuow.jpg
## 1037                                                                                             NA
## 1038                                                 http://pbs.twimg.com/media/EUIlsTTXgAE0qbP.jpg
## 1039                                                                                             NA
## 1040                                                                                             NA
## 1041                                                                                             NA
## 1042                                                                                             NA
## 1043                                                 http://pbs.twimg.com/media/EUEPI6kWAAcdOXm.jpg
## 1044                                                                                             NA
## 1045                                                                                             NA
## 1046                                                                                             NA
## 1047                                                                                             NA
## 1048                                                                                             NA
## 1049                                                                                             NA
## 1050                                                                                             NA
## 1051                                                                                             NA
## 1052                                                                                             NA
## 1053                                                 http://pbs.twimg.com/media/EUJdhoBXkAUY88D.jpg
## 1054                                     http://pbs.twimg.com/tweet_video_thumb/EUJLHRuXkAAwdgj.jpg
## 1055                                                                                             NA
## 1056                                                                                             NA
## 1057                                                                                             NA
## 1058                                                                                             NA
## 1059                                                                                             NA
## 1060                                                                                             NA
## 1061                                                                                             NA
## 1062                                                                                             NA
## 1063                                                                                             NA
## 1064                                                                                             NA
## 1065                                                                                             NA
## 1066                                                                                             NA
## 1067                                     http://pbs.twimg.com/tweet_video_thumb/EUDsCcMWkAEzohZ.jpg
## 1068                                                                                             NA
## 1069                                                                                             NA
## 1070                                                                                             NA
## 1071                                                                                             NA
## 1072                                                                                             NA
## 1073                                                                                             NA
## 1074                                                                                             NA
## 1075                                                                                             NA
## 1076                                                                                             NA
## 1077                                                                                             NA
## 1078                                                                                             NA
## 1079                                                                                             NA
## 1080                                                                                             NA
## 1081                                     http://pbs.twimg.com/tweet_video_thumb/EUEfwoYXsAAQMQV.jpg
## 1082                                                 http://pbs.twimg.com/media/EUK2EtXWsAA2iPK.jpg
## 1083                                                                                             NA
## 1084                                                                                             NA
## 1085                                                                                             NA
## 1086                                                                                             NA
## 1087                                                                                             NA
## 1088                                                 http://pbs.twimg.com/media/EUKyaAbU0AE2dG6.jpg
## 1089                                                                                             NA
## 1090                                                                                             NA
## 1091                                                                                             NA
## 1092                                                                                             NA
## 1093                                                                                             NA
## 1094                                                                                             NA
## 1095                                                                                             NA
## 1096                                                                                             NA
## 1097                                                                                             NA
## 1098                                                                                             NA
## 1099                                                                                             NA
## 1100                                                 http://pbs.twimg.com/media/EUI9Gf5XYAAFxuB.jpg
## 1101                                                                                             NA
## 1102                                                 http://pbs.twimg.com/media/EUJOJl5WAAE0QMq.jpg
## 1103                                                                                             NA
## 1104                                                                                             NA
## 1105                                                                                             NA
## 1106                                                                                             NA
## 1107                                                                                             NA
## 1108                                                                                             NA
## 1109                                                                                             NA
## 1110                                                                                             NA
## 1111                                                                                             NA
##                                            media_t.co
## 1                                                  NA
## 2                                                  NA
## 3                                                  NA
## 4                                                  NA
## 5                                                  NA
## 6                                                  NA
## 7                                                  NA
## 8                                                  NA
## 9                                                  NA
## 10                                                 NA
## 11                            https://t.co/AjrMprEZYA
## 12                            https://t.co/RRlalxxGl1
## 13                                                 NA
## 14                                                 NA
## 15                                                 NA
## 16                                                 NA
## 17                            https://t.co/8rr4aG6IZ7
## 18                                                 NA
## 19                                                 NA
## 20                                                 NA
## 21                                                 NA
## 22                                                 NA
## 23                                                 NA
## 24                                                 NA
## 25                                                 NA
## 26                                                 NA
## 27                            https://t.co/y4REXp8XAj
## 28                            https://t.co/3R3CFoA1kc
## 29                                                 NA
## 30                                                 NA
## 31                                                 NA
## 32                                                 NA
## 33                            https://t.co/de4psxyTNq
## 34                                                 NA
## 35                                                 NA
## 36                                                 NA
## 37                            https://t.co/zcU9Q0S1IT
## 38                            https://t.co/krtFLaIsap
## 39                                                 NA
## 40                                                 NA
## 41                                                 NA
## 42                                                 NA
## 43                                                 NA
## 44                                                 NA
## 45                                                 NA
## 46                            https://t.co/KSWprgXAC2
## 47                                                 NA
## 48                                                 NA
## 49                            https://t.co/VhuirS7Esq
## 50                                                 NA
## 51                                                 NA
## 52                                                 NA
## 53                                                 NA
## 54                            https://t.co/5z3YX2PzVP
## 55                                                 NA
## 56                                                 NA
## 57                                                 NA
## 58                                                 NA
## 59                                                 NA
## 60                                                 NA
## 61                            https://t.co/iNNkAJRW4d
## 62                                                 NA
## 63                                                 NA
## 64                                                 NA
## 65                                                 NA
## 66                                                 NA
## 67                            https://t.co/yvuAuNxgnY
## 68                                                 NA
## 69                            https://t.co/GUH37mtpYB
## 70                                                 NA
## 71                            https://t.co/FFchjBpieW
## 72                                                 NA
## 73                            https://t.co/sr778BlgJv
## 74                                                 NA
## 75                                                 NA
## 76                            https://t.co/PYsuhwicZZ
## 77                                                 NA
## 78                            https://t.co/L6JhtAKxlU
## 79                            https://t.co/fpjn2FX1tD
## 80                                                 NA
## 81                            https://t.co/LmwDRM7vn7
## 82                                                 NA
## 83                                                 NA
## 84                                                 NA
## 85                            https://t.co/J0QIT8T3Y4
## 86                                                 NA
## 87                                                 NA
## 88                            https://t.co/5ZlQ5s7NYz
## 89                            https://t.co/SkSwZ62vkV
## 90                                                 NA
## 91                                                 NA
## 92                                                 NA
## 93                            https://t.co/6Zylggaa62
## 94                                                 NA
## 95                                                 NA
## 96                            https://t.co/rk1DCFluX1
## 97                            https://t.co/jmeN5x2csK
## 98                            https://t.co/DcfecA3aFl
## 99                            https://t.co/XBHt1BhPJr
## 100                           https://t.co/Di8otjSMXJ
## 101                           https://t.co/v41CuZqlmt
## 102                                                NA
## 103                                                NA
## 104                                                NA
## 105                                                NA
## 106                                                NA
## 107                           https://t.co/uUXVWRqqVO
## 108                                                NA
## 109                                                NA
## 110                                                NA
## 111                                                NA
## 112                           https://t.co/67AppPJ6eA
## 113                                                NA
## 114                                                NA
## 115                           https://t.co/GqG2RJircj
## 116                           https://t.co/yTva4mX2D7
## 117                                                NA
## 118                           https://t.co/hqrUmpzp25
## 119                                                NA
## 120                                                NA
## 121                                                NA
## 122                                                NA
## 123                                                NA
## 124                           https://t.co/uW720zoAjr
## 125                                                NA
## 126                           https://t.co/IYvIg4DimG
## 127                                                NA
## 128                           https://t.co/10hFmHmEre
## 129                                                NA
## 130                                                NA
## 131                                                NA
## 132                                                NA
## 133                                                NA
## 134                                                NA
## 135                           https://t.co/MnNwSAPpjZ
## 136                                                NA
## 137                                                NA
## 138                                                NA
## 139                                                NA
## 140                           https://t.co/Y7nATRLxvX
## 141                                                NA
## 142                           https://t.co/uWxznu4FyW
## 143                                                NA
## 144                                                NA
## 145                                                NA
## 146                                                NA
## 147                                                NA
## 148                                                NA
## 149                           https://t.co/58xhTVT6x3
## 150                                                NA
## 151                                                NA
## 152                                                NA
## 153                                                NA
## 154                                                NA
## 155                                                NA
## 156                                                NA
## 157                           https://t.co/5MOoBKjp4a
## 158                                                NA
## 159                           https://t.co/K2FderhGyA
## 160                                                NA
## 161                                                NA
## 162                                                NA
## 163                                                NA
## 164                                                NA
## 165                                                NA
## 166                                                NA
## 167                                                NA
## 168                                                NA
## 169                           https://t.co/cO2FvADhW2
## 170                                                NA
## 171                           https://t.co/0rrW34bYVy
## 172                                                NA
## 173                                                NA
## 174                           https://t.co/nK313jlJPe
## 175                                                NA
## 176                                                NA
## 177                                                NA
## 178                                                NA
## 179                                                NA
## 180                                                NA
## 181                           https://t.co/X9WAjSOOvb
## 182                                                NA
## 183                                                NA
## 184                                                NA
## 185                           https://t.co/V61ZDGcW5f
## 186                                                NA
## 187                                                NA
## 188                           https://t.co/XqR8QxP49w
## 189                                                NA
## 190                                                NA
## 191                                                NA
## 192                                                NA
## 193                                                NA
## 194                           https://t.co/5taMFzVAWt
## 195                                                NA
## 196                                                NA
## 197                                                NA
## 198                                                NA
## 199                                                NA
## 200                                                NA
## 201                                                NA
## 202                                                NA
## 203                                                NA
## 204                                                NA
## 205                                                NA
## 206                                                NA
## 207                                                NA
## 208                                                NA
## 209                           https://t.co/HyYYNPhYof
## 210                                                NA
## 211                                                NA
## 212                           https://t.co/03Wq3sX4D8
## 213                                                NA
## 214                           https://t.co/5Gonl5rzzF
## 215                                                NA
## 216                                                NA
## 217                                                NA
## 218                           https://t.co/w2oufdUQQD
## 219                           https://t.co/QpyQNml3lJ
## 220                                                NA
## 221                                                NA
## 222                                                NA
## 223                                                NA
## 224                                                NA
## 225                                                NA
## 226                           https://t.co/CwfoVQaVpy
## 227                           https://t.co/l9vAOlWsX4
## 228                                                NA
## 229                                                NA
## 230                                                NA
## 231                                                NA
## 232                           https://t.co/EdHqUNlpVd
## 233                           https://t.co/ZHbhkcWvgC
## 234                                                NA
## 235                                                NA
## 236                                                NA
## 237                                                NA
## 238                                                NA
## 239                                                NA
## 240                           https://t.co/wEqKeHxttO
## 241                                                NA
## 242                                                NA
## 243                                                NA
## 244                                                NA
## 245                           https://t.co/WQtb0JNaof
## 246                                                NA
## 247                           https://t.co/H7mSnSZvjW
## 248                                                NA
## 249                                                NA
## 250                                                NA
## 251                                                NA
## 252                                                NA
## 253                                                NA
## 254                                                NA
## 255                                                NA
## 256                                                NA
## 257                                                NA
## 258                                                NA
## 259                                                NA
## 260                                                NA
## 261                                                NA
## 262                           https://t.co/Eo0Pif9iJn
## 263                                                NA
## 264                                                NA
## 265                           https://t.co/pSXRgZjlqq
## 266                                                NA
## 267                           https://t.co/IZCOLHlfpB
## 268                           https://t.co/VOMqnzGllP
## 269                                                NA
## 270                                                NA
## 271                                                NA
## 272                                                NA
## 273                                                NA
## 274                                                NA
## 275                                                NA
## 276                           https://t.co/E6S3oAXZX4
## 277                           https://t.co/Bdm6ZsfaLR
## 278                                                NA
## 279                                                NA
## 280                                                NA
## 281                                                NA
## 282                                                NA
## 283                                                NA
## 284                                                NA
## 285                                                NA
## 286                                                NA
## 287                                                NA
## 288                                                NA
## 289                                                NA
## 290                                                NA
## 291                                                NA
## 292                           https://t.co/GPgt1C83LY
## 293                                                NA
## 294                           https://t.co/slL0pu6nes
## 295                                                NA
## 296                                                NA
## 297                                                NA
## 298                           https://t.co/pzZW6quu56
## 299                           https://t.co/fwVIcdkRwh
## 300                                                NA
## 301                           https://t.co/OgEpdoTes4
## 302                           https://t.co/Sn9ygXwd5g
## 303                           https://t.co/zks0PgnltG
## 304                                                NA
## 305                           https://t.co/1XNZ61iiKl
## 306                                                NA
## 307                                                NA
## 308                           https://t.co/1dIvXJnhOP
## 309                                                NA
## 310                           https://t.co/RULzqybHEM
## 311                                                NA
## 312                                                NA
## 313                                                NA
## 314                                                NA
## 315                                                NA
## 316                                                NA
## 317                           https://t.co/jdMgvbpLqq
## 318                                                NA
## 319                                                NA
## 320                                                NA
## 321                                                NA
## 322                                                NA
## 323                                                NA
## 324                           https://t.co/OmVXF0stOM
## 325                                                NA
## 326                           https://t.co/Naxes4ZJrl
## 327                           https://t.co/PDkE7Dyf8C
## 328                                                NA
## 329                                                NA
## 330                           https://t.co/jhNvuB4XRe
## 331                                                NA
## 332                                                NA
## 333                                                NA
## 334                                                NA
## 335                                                NA
## 336                                                NA
## 337                                                NA
## 338                                                NA
## 339                           https://t.co/hGfvARhGqB
## 340                                                NA
## 341                           https://t.co/qnM9OoKFm6
## 342                                                NA
## 343                           https://t.co/BgGGtmIOAJ
## 344                                                NA
## 345                           https://t.co/w3GQOyRJfJ
## 346                                                NA
## 347                                                NA
## 348                                                NA
## 349                                                NA
## 350                           https://t.co/lVKUpqLAPl
## 351                                                NA
## 352                                                NA
## 353                                                NA
## 354                                                NA
## 355                           https://t.co/8oFnrrOlAX
## 356                           https://t.co/9d51008gll
## 357                                                NA
## 358                           https://t.co/BKonxqXAvR
## 359                                                NA
## 360                           https://t.co/KecYPts2i8
## 361                                                NA
## 362                                                NA
## 363                           https://t.co/SJ1x6OCV57
## 364                                                NA
## 365                                                NA
## 366                                                NA
## 367                           https://t.co/22nvBjOJQI
## 368                                                NA
## 369                                                NA
## 370                                                NA
## 371                           https://t.co/e8zTW5zXMr
## 372                           https://t.co/OqGhAIdrUy
## 373                           https://t.co/KrBsuHhwAV
## 374                                                NA
## 375                                                NA
## 376                           https://t.co/Sn3Uf2EVja
## 377                           https://t.co/088Jt9DF7B
## 378                                                NA
## 379                           https://t.co/wvteMYRkhO
## 380                           https://t.co/GqjEmi9IxK
## 381                           https://t.co/n89GPeA2hr
## 382                                                NA
## 383                                                NA
## 384                           https://t.co/kM5KmzRDD5
## 385                                                NA
## 386                           https://t.co/FjQgQBoAlB
## 387                                                NA
## 388                                                NA
## 389                           https://t.co/nZhffCI8nE
## 390                           https://t.co/oNdx90xUkX
## 391                                                NA
## 392                                                NA
## 393                                                NA
## 394                           https://t.co/d3i9MklTv8
## 395                                                NA
## 396                                                NA
## 397                                                NA
## 398                           https://t.co/boI0Y6siXL
## 399                                                NA
## 400                           https://t.co/t6M6LmpUlL
## 401                           https://t.co/EfAGANG0aH
## 402                                                NA
## 403                           https://t.co/36N7QTtzfM
## 404                                                NA
## 405                                                NA
## 406                                                NA
## 407                                                NA
## 408                           https://t.co/9gIgmfTDQF
## 409                                                NA
## 410                                                NA
## 411                                                NA
## 412                           https://t.co/4SN5bJqojH
## 413                                                NA
## 414                           https://t.co/GE2Yd3DylT
## 415                                                NA
## 416                                                NA
## 417                           https://t.co/axLR9wcesV
## 418                           https://t.co/10jXLnza0S
## 419                                                NA
## 420                                                NA
## 421                                                NA
## 422                           https://t.co/pOhK4C8Jip
## 423                                                NA
## 424                                                NA
## 425                           https://t.co/eNwM2EQNvY
## 426                                                NA
## 427                                                NA
## 428                                                NA
## 429                                                NA
## 430                                                NA
## 431                                                NA
## 432                                                NA
## 433                                                NA
## 434                                                NA
## 435                           https://t.co/KxjGlBnXvb
## 436                           https://t.co/IbivWXqA0j
## 437                                                NA
## 438                                                NA
## 439                           https://t.co/iniT806tnm
## 440                                                NA
## 441                                                NA
## 442                           https://t.co/GGNLpEBL9C
## 443                                                NA
## 444                                                NA
## 445                                                NA
## 446                                                NA
## 447                                                NA
## 448                                                NA
## 449                                                NA
## 450                           https://t.co/h8H0HC2G4J
## 451                                                NA
## 452                                                NA
## 453                                                NA
## 454                                                NA
## 455                                                NA
## 456                                                NA
## 457                                                NA
## 458                                                NA
## 459                                                NA
## 460                           https://t.co/KyZ5hMwfyr
## 461                                                NA
## 462                                                NA
## 463                                                NA
## 464                                                NA
## 465                                                NA
## 466                           https://t.co/CN6XYMyd2d
## 467                                                NA
## 468                           https://t.co/q53wqvnjsI
## 469                                                NA
## 470                                                NA
## 471                                                NA
## 472                                                NA
## 473                           https://t.co/pQVJ36OT3C
## 474                           https://t.co/axKseOQHZq
## 475                                                NA
## 476                                                NA
## 477                                                NA
## 478                           https://t.co/FK53HEhhEc
## 479                                                NA
## 480                                                NA
## 481                                                NA
## 482                                                NA
## 483                                                NA
## 484                                                NA
## 485                           https://t.co/TVZ1JRAWod
## 486                                                NA
## 487                                                NA
## 488                           https://t.co/q1e9hVjCzE
## 489                                                NA
## 490                                                NA
## 491                           https://t.co/ctY4VCKBHo
## 492                           https://t.co/g7wAgNnRRZ
## 493                                                NA
## 494                           https://t.co/h36FT78Pu6
## 495                           https://t.co/ER3mCCbp52
## 496                                                NA
## 497                                                NA
## 498                           https://t.co/L9DY8PynWc
## 499                           https://t.co/CRALkuGmPY
## 500                                                NA
## 501                           https://t.co/MeGJPfUMIV
## 502                           https://t.co/1eZCcnY1ri
## 503                                                NA
## 504                                                NA
## 505                                                NA
## 506                                                NA
## 507                                                NA
## 508                           https://t.co/ZfIZIkRBcH
## 509                                                NA
## 510                                                NA
## 511                                                NA
## 512                                                NA
## 513                                                NA
## 514                                                NA
## 515                                                NA
## 516                                                NA
## 517                                                NA
## 518                                                NA
## 519                                                NA
## 520                                                NA
## 521                                                NA
## 522                           https://t.co/sqFLig90WC
## 523                           https://t.co/Z6kJ3vOulJ
## 524                                                NA
## 525                                                NA
## 526                                                NA
## 527                                                NA
## 528                                                NA
## 529                                                NA
## 530                                                NA
## 531                                                NA
## 532                                                NA
## 533                                                NA
## 534                           https://t.co/I1HJzXrSav
## 535                           https://t.co/UeMGURrnlG
## 536                                                NA
## 537                                                NA
## 538                                                NA
## 539                                                NA
## 540                                                NA
## 541                                                NA
## 542                                                NA
## 543                                                NA
## 544                                                NA
## 545                                                NA
## 546                                                NA
## 547                                                NA
## 548                           https://t.co/2GXmMsy3zS
## 549                           https://t.co/PbmQzcRLlx
## 550                                                NA
## 551                                                NA
## 552                                                NA
## 553                                                NA
## 554                                                NA
## 555                                                NA
## 556                                                NA
## 557                                                NA
## 558                                                NA
## 559                           https://t.co/PgP72jqkHL
## 560                                                NA
## 561                                                NA
## 562                                                NA
## 563                           https://t.co/UqHx8rlCvk
## 564                           https://t.co/6Ty4aIiJEy
## 565                                                NA
## 566                                                NA
## 567                           https://t.co/twVlZoJRiL
## 568                                                NA
## 569                                                NA
## 570                                                NA
## 571                                                NA
## 572                                                NA
## 573                           https://t.co/bI7ztFe02p
## 574                           https://t.co/WmbeeiPTIn
## 575                                                NA
## 576                                                NA
## 577                                                NA
## 578                                                NA
## 579                                                NA
## 580                                                NA
## 581                                                NA
## 582                                                NA
## 583                                                NA
## 584                                                NA
## 585                                                NA
## 586                                                NA
## 587                                                NA
## 588                                                NA
## 589                           https://t.co/TPRgXFCsz4
## 590                           https://t.co/eXwT1as1Mo
## 591                                                NA
## 592                                                NA
## 593                                                NA
## 594                                                NA
## 595                                                NA
## 596                                                NA
## 597                                                NA
## 598                           https://t.co/Wu0uThXWYJ
## 599                           https://t.co/qzIXbMiGjH
## 600                           https://t.co/yIhDwccqwk
## 601                           https://t.co/yfc48xMPhk
## 602                                                NA
## 603                                                NA
## 604                                                NA
## 605                                                NA
## 606                                                NA
## 607                                                NA
## 608                                                NA
## 609                                                NA
## 610                           https://t.co/RXKYrEQa9T
## 611                                                NA
## 612                                                NA
## 613                           https://t.co/79mRNctgne
## 614                                                NA
## 615                           https://t.co/zCKPXYKUyj
## 616                                                NA
## 617                                                NA
## 618                                                NA
## 619                           https://t.co/UoLoY6OuJA
## 620                                                NA
## 621                           https://t.co/0WK7Sd9gho
## 622                                                NA
## 623                           https://t.co/91kKz9nQcl
## 624                                                NA
## 625                           https://t.co/tGHWQqB8LP
## 626                                                NA
## 627                                                NA
## 628                           https://t.co/TNJuKmcGLW
## 629                                                NA
## 630                                                NA
## 631                                                NA
## 632                           https://t.co/Chmjuml2ow
## 633                                                NA
## 634                           https://t.co/ibfourxW8s
## 635                                                NA
## 636                                                NA
## 637                                                NA
## 638                                                NA
## 639                                                NA
## 640                           https://t.co/Dl0OIFTr4x
## 641  https://t.co/qF51vyjrir, https://t.co/cJ3kgHB5HH
## 642                                                NA
## 643                                                NA
## 644                                                NA
## 645                                                NA
## 646                                                NA
## 647                                                NA
## 648                                                NA
## 649                                                NA
## 650                                                NA
## 651                                                NA
## 652                           https://t.co/6MljsBTmFL
## 653                           https://t.co/OFbQvdwjLH
## 654                                                NA
## 655                                                NA
## 656                                                NA
## 657                                                NA
## 658                                                NA
## 659                                                NA
## 660                           https://t.co/w0yHEiYlO7
## 661                                                NA
## 662                                                NA
## 663                           https://t.co/1LYpfDbpAP
## 664                           https://t.co/lYvFHYWTH1
## 665                                                NA
## 666                                                NA
## 667                                                NA
## 668                                                NA
## 669                                                NA
## 670                                                NA
## 671                                                NA
## 672                                                NA
## 673                                                NA
## 674                                                NA
## 675                                                NA
## 676                                                NA
## 677                                                NA
## 678                                                NA
## 679                                                NA
## 680                           https://t.co/u3UsM7L1ZO
## 681                                                NA
## 682                                                NA
## 683                                                NA
## 684                                                NA
## 685                                                NA
## 686                                                NA
## 687                           https://t.co/InlWINN6WN
## 688                           https://t.co/CMUKbdc48H
## 689                                                NA
## 690                           https://t.co/Px4AJinV7X
## 691                           https://t.co/EcIiyit2AS
## 692                                                NA
## 693                                                NA
## 694                                                NA
## 695                                                NA
## 696                                                NA
## 697                           https://t.co/WUtMW0zKKE
## 698                                                NA
## 699                                                NA
## 700                                                NA
## 701                                                NA
## 702                                                NA
## 703                                                NA
## 704                                                NA
## 705                                                NA
## 706                           https://t.co/KO4GqqHiJS
## 707                                                NA
## 708                                                NA
## 709                                                NA
## 710                                                NA
## 711                                                NA
## 712                                                NA
## 713                                                NA
## 714                           https://t.co/ViEQnm4jdh
## 715                                                NA
## 716                                                NA
## 717                           https://t.co/EgWirgaVEM
## 718                                                NA
## 719                                                NA
## 720                                                NA
## 721                                                NA
## 722                           https://t.co/1mCetLyFvi
## 723                                                NA
## 724                                                NA
## 725                                                NA
## 726                           https://t.co/uNW2psMEQc
## 727                                                NA
## 728                                                NA
## 729                                                NA
## 730                                                NA
## 731                                                NA
## 732                           https://t.co/ld81qhaGVl
## 733                                                NA
## 734                                                NA
## 735                                                NA
## 736                                                NA
## 737                           https://t.co/AKZzsIc5BK
## 738                           https://t.co/IpcRVm4srA
## 739                                                NA
## 740                           https://t.co/3sJ7tsIuYZ
## 741                                                NA
## 742                           https://t.co/U4cy6Poouq
## 743                           https://t.co/RQUBWtJ8qq
## 744                                                NA
## 745                                                NA
## 746                                                NA
## 747                                                NA
## 748                                                NA
## 749                                                NA
## 750                                                NA
## 751                           https://t.co/6xFsFgd9Xf
## 752                           https://t.co/TOgldXdKV7
## 753                           https://t.co/ZafyVJ9P8Q
## 754                           https://t.co/JtELbmeA9n
## 755                           https://t.co/dWXRuq85rS
## 756                           https://t.co/PGYY4q3YwS
## 757                           https://t.co/AEHuxYiU5T
## 758                                                NA
## 759                                                NA
## 760                                                NA
## 761                                                NA
## 762                                                NA
## 763                                                NA
## 764                                                NA
## 765                                                NA
## 766                                                NA
## 767                                                NA
## 768                                                NA
## 769                                                NA
## 770                                                NA
## 771                                                NA
## 772                           https://t.co/CBwbL63HoJ
## 773                           https://t.co/uCyeKgIVbR
## 774                           https://t.co/Dj1aQa6hbF
## 775                                                NA
## 776                                                NA
## 777                                                NA
## 778                                                NA
## 779                           https://t.co/AFkqnM0qYJ
## 780                           https://t.co/dfaHWzcYCM
## 781                                                NA
## 782                                                NA
## 783                                                NA
## 784                           https://t.co/tIjtXHtqkT
## 785                           https://t.co/QNCVOAYUil
## 786                           https://t.co/oNB69iC9Hs
## 787                                                NA
## 788                                                NA
## 789                           https://t.co/k8HmpfavOU
## 790                                                NA
## 791                                                NA
## 792                           https://t.co/b4EiNzQaeX
## 793                                                NA
## 794                                                NA
## 795                                                NA
## 796                                                NA
## 797                                                NA
## 798                                                NA
## 799                                                NA
## 800                                                NA
## 801                           https://t.co/e3x13Lhads
## 802                           https://t.co/2DRRWHYiBX
## 803                                                NA
## 804                                                NA
## 805                                                NA
## 806                                                NA
## 807                                                NA
## 808                                                NA
## 809                                                NA
## 810                                                NA
## 811                           https://t.co/1dK6gcaPtb
## 812                                                NA
## 813                                                NA
## 814                                                NA
## 815                           https://t.co/Sx6P7VDY6z
## 816                                                NA
## 817                           https://t.co/JEyTmRol2L
## 818                                                NA
## 819                           https://t.co/F9yo2Tfo6P
## 820                                                NA
## 821                                                NA
## 822                           https://t.co/NlVxbPlPML
## 823                                                NA
## 824                           https://t.co/oo4yz3Ltds
## 825                                                NA
## 826                           https://t.co/pzdO24BbBb
## 827                                                NA
## 828                                                NA
## 829                                                NA
## 830                                                NA
## 831                           https://t.co/pkZIHx4aIm
## 832                                                NA
## 833                                                NA
## 834                                                NA
## 835                                                NA
## 836                           https://t.co/axV2gftxzm
## 837                                                NA
## 838                                                NA
## 839                                                NA
## 840                                                NA
## 841                                                NA
## 842                                                NA
## 843                                                NA
## 844                                                NA
## 845                                                NA
## 846                                                NA
## 847                                                NA
## 848                                                NA
## 849                                                NA
## 850                                                NA
## 851                           https://t.co/RbNLOcBRgM
## 852                                                NA
## 853                                                NA
## 854                                                NA
## 855                                                NA
## 856                                                NA
## 857                                                NA
## 858                           https://t.co/uBGoQH5Qjc
## 859                                                NA
## 860                           https://t.co/UcmjSU9NFk
## 861                                                NA
## 862                                                NA
## 863                                                NA
## 864                                                NA
## 865                           https://t.co/p2HH23dSE8
## 866                                                NA
## 867                           https://t.co/N8dEUODHS7
## 868                                                NA
## 869                                                NA
## 870                                                NA
## 871                                                NA
## 872                                                NA
## 873                                                NA
## 874                                                NA
## 875                                                NA
## 876                                                NA
## 877                                                NA
## 878                                                NA
## 879                                                NA
## 880                                                NA
## 881                                                NA
## 882                                                NA
## 883                                                NA
## 884                                                NA
## 885                                                NA
## 886                           https://t.co/7tffWuzdef
## 887                                                NA
## 888                                                NA
## 889                                                NA
## 890                           https://t.co/eZ1u9Ls8Z9
## 891                                                NA
## 892                                                NA
## 893                           https://t.co/pRT1bHSWHu
## 894                           https://t.co/M7KG7V1dX2
## 895                                                NA
## 896                                                NA
## 897                                                NA
## 898                           https://t.co/USsWuL29a0
## 899                                                NA
## 900                                                NA
## 901                                                NA
## 902                           https://t.co/UU0zE5dJ8V
## 903                                                NA
## 904                           https://t.co/XdstPR1myz
## 905                                                NA
## 906                                                NA
## 907                                                NA
## 908                           https://t.co/W06W1ixUvf
## 909                                                NA
## 910                                                NA
## 911                                                NA
## 912                                                NA
## 913                                                NA
## 914                                                NA
## 915                           https://t.co/joyz2m611D
## 916                           https://t.co/TkKigYCFT7
## 917                                                NA
## 918                                                NA
## 919                                                NA
## 920                                                NA
## 921                                                NA
## 922                                                NA
## 923                                                NA
## 924                                                NA
## 925                           https://t.co/jZPs4jvIsx
## 926                                                NA
## 927                                                NA
## 928                           https://t.co/YbGLsum7NU
## 929                           https://t.co/mL7wwRkuBY
## 930                           https://t.co/9ztvdvPDFg
## 931                                                NA
## 932                                                NA
## 933                                                NA
## 934                           https://t.co/RLaevKcw73
## 935                                                NA
## 936                                                NA
## 937                           https://t.co/VFpJWp6b5n
## 938                                                NA
## 939                                                NA
## 940                           https://t.co/IGiB2C0qCD
## 941                           https://t.co/XpCLi20zVF
## 942                                                NA
## 943                                                NA
## 944                                                NA
## 945                           https://t.co/MUQZ5OXIpU
## 946                                                NA
## 947                           https://t.co/MLwPv4XEo6
## 948                           https://t.co/OPYXppvjwc
## 949                           https://t.co/HaAGSunJ44
## 950                                                NA
## 951                                                NA
## 952                           https://t.co/uqednseo0O
## 953                           https://t.co/M4P0GMtSlz
## 954                                                NA
## 955                                                NA
## 956                           https://t.co/L81NakX3hE
## 957                           https://t.co/VZ7UcKcGo1
## 958                                                NA
## 959                                                NA
## 960                                                NA
## 961                                                NA
## 962                                                NA
## 963                                                NA
## 964                                                NA
## 965                           https://t.co/HfQ01ZMdae
## 966                                                NA
## 967                                                NA
## 968                                                NA
## 969                                                NA
## 970                                                NA
## 971                                                NA
## 972                                                NA
## 973                           https://t.co/VdMEr8dFb4
## 974                                                NA
## 975                                                NA
## 976                                                NA
## 977                                                NA
## 978                                                NA
## 979                                                NA
## 980                                                NA
## 981                           https://t.co/nTwsAWRKxQ
## 982                                                NA
## 983                                                NA
## 984                                                NA
## 985                                                NA
## 986                                                NA
## 987                                                NA
## 988                                                NA
## 989                                                NA
## 990                                                NA
## 991                                                NA
## 992                                                NA
## 993                           https://t.co/oNZMV7GlHJ
## 994                                                NA
## 995                                                NA
## 996                                                NA
## 997                           https://t.co/tRp1vvn3Nh
## 998                           https://t.co/3JhupaoDk0
## 999                                                NA
## 1000                                               NA
## 1001                                               NA
## 1002                                               NA
## 1003                                               NA
## 1004                                               NA
## 1005                                               NA
## 1006                                               NA
## 1007                                               NA
## 1008                                               NA
## 1009                                               NA
## 1010                          https://t.co/Ymp2PRmMRQ
## 1011                                               NA
## 1012                          https://t.co/n8l5TwNitP
## 1013                          https://t.co/rSdYOPtQM2
## 1014                          https://t.co/hSVauIQMdJ
## 1015                          https://t.co/cWrllRBtub
## 1016                                               NA
## 1017                                               NA
## 1018                                               NA
## 1019                                               NA
## 1020                                               NA
## 1021                                               NA
## 1022                          https://t.co/P3N9Mg6RIh
## 1023                          https://t.co/2shjTkVITi
## 1024                                               NA
## 1025                                               NA
## 1026                                               NA
## 1027                                               NA
## 1028                                               NA
## 1029                                               NA
## 1030                                               NA
## 1031                                               NA
## 1032                                               NA
## 1033                                               NA
## 1034                                               NA
## 1035                                               NA
## 1036                          https://t.co/3ZHSZtnXU8
## 1037                                               NA
## 1038                          https://t.co/WfZO1YtZQK
## 1039                                               NA
## 1040                                               NA
## 1041                                               NA
## 1042                                               NA
## 1043                          https://t.co/opfeeqeUw9
## 1044                                               NA
## 1045                                               NA
## 1046                                               NA
## 1047                                               NA
## 1048                                               NA
## 1049                                               NA
## 1050                                               NA
## 1051                                               NA
## 1052                                               NA
## 1053                          https://t.co/GIcsClUCXh
## 1054                          https://t.co/RmdwFD0Kku
## 1055                                               NA
## 1056                                               NA
## 1057                                               NA
## 1058                                               NA
## 1059                                               NA
## 1060                                               NA
## 1061                                               NA
## 1062                                               NA
## 1063                                               NA
## 1064                                               NA
## 1065                                               NA
## 1066                                               NA
## 1067                          https://t.co/oQlC9l0AfW
## 1068                                               NA
## 1069                                               NA
## 1070                                               NA
## 1071                                               NA
## 1072                                               NA
## 1073                                               NA
## 1074                                               NA
## 1075                                               NA
## 1076                                               NA
## 1077                                               NA
## 1078                                               NA
## 1079                                               NA
## 1080                                               NA
## 1081                          https://t.co/aC5DPdP2IN
## 1082                          https://t.co/3buv9v220k
## 1083                                               NA
## 1084                                               NA
## 1085                                               NA
## 1086                                               NA
## 1087                                               NA
## 1088                          https://t.co/nfAXwmBa49
## 1089                                               NA
## 1090                                               NA
## 1091                                               NA
## 1092                                               NA
## 1093                                               NA
## 1094                                               NA
## 1095                                               NA
## 1096                                               NA
## 1097                                               NA
## 1098                                               NA
## 1099                                               NA
## 1100                          https://t.co/Ydr8TWZx2v
## 1101                                               NA
## 1102                          https://t.co/FaF24vAccR
## 1103                                               NA
## 1104                                               NA
## 1105                                               NA
## 1106                                               NA
## 1107                                               NA
## 1108                                               NA
## 1109                                               NA
## 1110                                               NA
## 1111                                               NA
##                                                                                                                            media_expanded_url
## 1                                                                                                                                          NA
## 2                                                                                                                                          NA
## 3                                                                                                                                          NA
## 4                                                                                                                                          NA
## 5                                                                                                                                          NA
## 6                                                                                                                                          NA
## 7                                                                                                                                          NA
## 8                                                                                                                                          NA
## 9                                                                                                                                          NA
## 10                                                                                                                                         NA
## 11                                                                     https://twitter.com/CityofPickering/status/1243233162412556288/photo/1
## 12                                                                           https://twitter.com/Patty0987/status/1243317490509381632/photo/1
## 13                                                                                                                                         NA
## 14                                                                                                                                         NA
## 15                                                                                                                                         NA
## 16                                                                                                                                         NA
## 17                                                                       https://twitter.com/Lumindustries/status/1243235698091704320/photo/1
## 18                                                                                                                                         NA
## 19                                                                                                                                         NA
## 20                                                                                                                                         NA
## 21                                                                                                                                         NA
## 22                                                                                                                                         NA
## 23                                                                                                                                         NA
## 24                                                                                                                                         NA
## 25                                                                                                                                         NA
## 26                                                                                                                                         NA
## 27                                                                            https://twitter.com/CMHAWECB/status/1243234147931389952/photo/1
## 28                                                                             https://twitter.com/DNYimga/status/1243264807589077001/photo/1
## 29                                                                                                                                         NA
## 30                                                                                                                                         NA
## 31                                                                                                                                         NA
## 32                                                                                                                                         NA
## 33                                                                        https://twitter.com/HowertonNews/status/1243355064594358273/photo/1
## 34                                                                                                                                         NA
## 35                                                                                                                                         NA
## 36                                                                                                                                         NA
## 37                                                                             https://twitter.com/MSalimu/status/1243817568114298880/photo/1
## 38                                                                           https://twitter.com/EFFAT_org/status/1243589199728726021/photo/1
## 39                                                                                                                                         NA
## 40                                                                                                                                         NA
## 41                                                                                                                                         NA
## 42                                                                                                                                         NA
## 43                                                                                                                                         NA
## 44                                                                                                                                         NA
## 45                                                                                                                                         NA
## 46                                                                        https://twitter.com/Comm_Bonilla/status/1243355076476858368/photo/1
## 47                                                                                                                                         NA
## 48                                                                                                                                         NA
## 49                                                                      https://twitter.com/FirstChoiceVeg/status/1243288988191993856/photo/1
## 50                                                                                                                                         NA
## 51                                                                                                                                         NA
## 52                                                                                                                                         NA
## 53                                                                                                                                         NA
## 54                                                                     https://twitter.com/NoahsArkHospice/status/1243334440937545733/photo/1
## 55                                                                                                                                         NA
## 56                                                                                                                                         NA
## 57                                                                                                                                         NA
## 58                                                                                                                                         NA
## 59                                                                                                                                         NA
## 60                                                                                                                                         NA
## 61                                                                           https://twitter.com/Kasliwala/status/1243340400779239424/photo/1
## 62                                                                                                                                         NA
## 63                                                                                                                                         NA
## 64                                                                                                                                         NA
## 65                                                                                                                                         NA
## 66                                                                                                                                         NA
## 67                                                                       https://twitter.com/SoberTool_App/status/1243776103849828352/photo/1
## 68                                                                                                                                         NA
## 69                                                                     https://twitter.com/AustinKellerman/status/1243267436062916608/photo/1
## 70                                                                                                                                         NA
## 71                                                                       https://twitter.com/SportBusiness/status/1243344006249095174/photo/1
## 72                                                                                                                                         NA
## 73                                                                            https://twitter.com/curogram/status/1243341092315152389/photo/1
## 74                                                                                                                                         NA
## 75                                                                                                                                         NA
## 76                                                                        https://twitter.com/johnbachtell/status/1243724112935161856/photo/1
## 77                                                                                                                                         NA
## 78                                                                         https://twitter.com/richwithtea/status/1243566324212785159/photo/1
## 79                                                                         https://twitter.com/deehfairley/status/1243309252799860747/photo/1
## 80                                                                                                                                         NA
## 81                                                                          https://twitter.com/WycliffeJb/status/1243795008404291585/video/1
## 82                                                                                                                                         NA
## 83                                                                                                                                         NA
## 84                                                                                                                                         NA
## 85                                                                              https://twitter.com/tjmule/status/1243632536116277248/photo/1
## 86                                                                                                                                         NA
## 87                                                                                                                                         NA
## 88                                                                     https://twitter.com/ColumbiaDoctors/status/1243674284826021889/photo/1
## 89                                                                           https://twitter.com/DLA_Piper/status/1243691274131169282/photo/1
## 90                                                                                                                                         NA
## 91                                                                                                                                         NA
## 92                                                                                                                                         NA
## 93                                                                       https://twitter.com/Daily_Express/status/1243628859188113408/photo/1
## 94                                                                                                                                         NA
## 95                                                                                                                                         NA
## 96                                                                        https://twitter.com/WITBANK_NEWS/status/1243225539059556352/photo/1
## 97                                                                        https://twitter.com/Charlie_APWS/status/1243711536243167238/photo/1
## 98                                                                     https://twitter.com/MyositisSupport/status/1243228815574196227/photo/1
## 99                                                                            https://twitter.com/LandGLab/status/1243823496540479489/photo/1
## 100                                                                             https://twitter.com/tjbtts/status/1243731683385446407/photo/1
## 101                                                                           https://twitter.com/RefeKids/status/1243813938007072769/photo/1
## 102                                                                                                                                        NA
## 103                                                                                                                                        NA
## 104                                                                                                                                        NA
## 105                                                                                                                                        NA
## 106                                                                                                                                        NA
## 107                                                                    https://twitter.com/solanheadlines1/status/1243768045845098496/photo/1
## 108                                                                                                                                        NA
## 109                                                                                                                                        NA
## 110                                                                                                                                        NA
## 111                                                                                                                                        NA
## 112                                                                         https://twitter.com/EllypopArt/status/1243231575040561157/photo/1
## 113                                                                                                                                        NA
## 114                                                                                                                                        NA
## 115                                                                         https://twitter.com/jlitwinetz/status/1243802106852761601/photo/1
## 116                                                                     https://twitter.com/TheRealROLAND2/status/1243613963994226690/photo/1
## 117                                                                                                                                        NA
## 118                                                                    https://twitter.com/PADOBSsecretary/status/1243583720705200128/photo/1
## 119                                                                                                                                        NA
## 120                                                                                                                                        NA
## 121                                                                                                                                        NA
## 122                                                                                                                                        NA
## 123                                                                                                                                        NA
## 124                                                                            https://twitter.com/680NEWS/status/1243581674039971849/video/1
## 125                                                                                                                                        NA
## 126                                                                    https://twitter.com/AlmuraikhiNihal/status/1243323024457322498/video/1
## 127                                                                                                                                        NA
## 128                                                                        https://twitter.com/shah_sheikh/status/1243317445705662465/photo/1
## 129                                                                                                                                        NA
## 130                                                                                                                                        NA
## 131                                                                                                                                        NA
## 132                                                                                                                                        NA
## 133                                                                                                                                        NA
## 134                                                                                                                                        NA
## 135                                                                       https://twitter.com/faluyikayode/status/1243228493112057857/photo/1
## 136                                                                                                                                        NA
## 137                                                                                                                                        NA
## 138                                                                                                                                        NA
## 139                                                                                                                                        NA
## 140                                                                              https://twitter.com/gcboe/status/1243584826613080066/photo/1
## 141                                                                                                                                        NA
## 142                                                                          https://twitter.com/MerriamKS/status/1243643832400519169/photo/1
## 143                                                                                                                                        NA
## 144                                                                                                                                        NA
## 145                                                                                                                                        NA
## 146                                                                                                                                        NA
## 147                                                                                                                                        NA
## 148                                                                                                                                        NA
## 149                                                                      https://twitter.com/bazecitymedia/status/1243326845136879618/photo/1
## 150                                                                                                                                        NA
## 151                                                                                                                                        NA
## 152                                                                                                                                        NA
## 153                                                                                                                                        NA
## 154                                                                                                                                        NA
## 155                                                                                                                                        NA
## 156                                                                                                                                        NA
## 157                                                                        https://twitter.com/ColmJDawson/status/1243566227404054529/video/1
## 158                                                                                                                                        NA
## 159                                                                             https://twitter.com/Venafi/status/1243666679407808512/photo/1
## 160                                                                                                                                        NA
## 161                                                                                                                                        NA
## 162                                                                                                                                        NA
## 163                                                                                                                                        NA
## 164                                                                                                                                        NA
## 165                                                                                                                                        NA
## 166                                                                                                                                        NA
## 167                                                                                                                                        NA
## 168                                                                                                                                        NA
## 169                                                                      https://twitter.com/SAFoundationN/status/1243826678004166656/video/1
## 170                                                                                                                                        NA
## 171                                                                           https://twitter.com/lykaboss/status/1243337671667146752/photo/1
## 172                                                                                                                                        NA
## 173                                                                                                                                        NA
## 174                                                                     https://twitter.com/Suresh17104120/status/1243747330852941825/photo/1
## 175                                                                                                                                        NA
## 176                                                                                                                                        NA
## 177                                                                                                                                        NA
## 178                                                                                                                                        NA
## 179                                                                                                                                        NA
## 180                                                                                                                                        NA
## 181                                                                     https://twitter.com/MayorofBurnaby/status/1243255519206408199/video/1
## 182                                                                                                                                        NA
## 183                                                                                                                                        NA
## 184                                                                                                                                        NA
## 185                                                                           https://twitter.com/TxID_Edu/status/1243239741236981760/photo/1
## 186                                                                                                                                        NA
## 187                                                                                                                                        NA
## 188                                                                         https://twitter.com/DeionNBCMT/status/1242910540105576450/video/1
## 189                                                                                                                                        NA
## 190                                                                                                                                        NA
## 191                                                                                                                                        NA
## 192                                                                                                                                        NA
## 193                                                                                                                                        NA
## 194                                                                        https://twitter.com/poeticindie/status/1242729812134944770/video/1
## 195                                                                                                                                        NA
## 196                                                                                                                                        NA
## 197                                                                                                                                        NA
## 198                                                                                                                                        NA
## 199                                                                                                                                        NA
## 200                                                                                                                                        NA
## 201                                                                                                                                        NA
## 202                                                                                                                                        NA
## 203                                                                                                                                        NA
## 204                                                                                                                                        NA
## 205                                                                                                                                        NA
## 206                                                                                                                                        NA
## 207                                                                                                                                        NA
## 208                                                                                                                                        NA
## 209                                                                           https://twitter.com/wagygirl/status/1243714839236595712/photo/1
## 210                                                                                                                                        NA
## 211                                                                                                                                        NA
## 212                                                                         https://twitter.com/CBCCalgary/status/1243566753277452288/photo/1
## 213                                                                                                                                        NA
## 214                                                                          https://twitter.com/QuickTake/status/1243306755523850241/video/1
## 215                                                                                                                                        NA
## 216                                                                                                                                        NA
## 217                                                                                                                                        NA
## 218                                                                         https://twitter.com/EmbacubaNZ/status/1243264356067889152/photo/1
## 219                                                                        https://twitter.com/cupidalaska/status/1243274952054394880/photo/1
## 220                                                                                                                                        NA
## 221                                                                                                                                        NA
## 222                                                                                                                                        NA
## 223                                                                                                                                        NA
## 224                                                                                                                                        NA
## 225                                                                                                                                        NA
## 226                                                                    https://twitter.com/BluePRintBrands/status/1243567897148100610/photo/1
## 227                                                                           https://twitter.com/Aly_Dar8/status/1243363291100930049/photo/1
## 228                                                                                                                                        NA
## 229                                                                                                                                        NA
## 230                                                                                                                                        NA
## 231                                                                                                                                        NA
## 232                                                                          https://twitter.com/jsrailton/status/1243259984764338176/photo/1
## 233                                                                    https://twitter.com/InsideNo9Tweets/status/1243692863554232321/photo/1
## 234                                                                                                                                        NA
## 235                                                                                                                                        NA
## 236                                                                                                                                        NA
## 237                                                                                                                                        NA
## 238                                                                                                                                        NA
## 239                                                                                                                                        NA
## 240                                                                              https://twitter.com/ukSJS/status/1243266561936363520/photo/1
## 241                                                                                                                                        NA
## 242                                                                                                                                        NA
## 243                                                                                                                                        NA
## 244                                                                                                                                        NA
## 245                                                                     https://twitter.com/revhumanrights/status/1243104429982670853/photo/1
## 246                                                                                                                                        NA
## 247                                                                           https://twitter.com/hunterei/status/1243353255247106048/photo/1
## 248                                                                                                                                        NA
## 249                                                                                                                                        NA
## 250                                                                                                                                        NA
## 251                                                                                                                                        NA
## 252                                                                                                                                        NA
## 253                                                                                                                                        NA
## 254                                                                                                                                        NA
## 255                                                                                                                                        NA
## 256                                                                                                                                        NA
## 257                                                                                                                                        NA
## 258                                                                                                                                        NA
## 259                                                                                                                                        NA
## 260                                                                                                                                        NA
## 261                                                                                                                                        NA
## 262                                                                       https://twitter.com/Alicia_Akeys/status/1243765063904907265/photo/1
## 263                                                                                                                                        NA
## 264                                                                                                                                        NA
## 265                                                                            https://twitter.com/Only4RM/status/1243665449738539014/photo/1
## 266                                                                                                                                        NA
## 267                                                                              https://twitter.com/ZAmmi/status/1243260859805323266/video/1
## 268                                                                      https://twitter.com/BrunswickGovt/status/1243666789751566338/photo/1
## 269                                                                                                                                        NA
## 270                                                                                                                                        NA
## 271                                                                                                                                        NA
## 272                                                                                                                                        NA
## 273                                                                                                                                        NA
## 274                                                                                                                                        NA
## 275                                                                                                                                        NA
## 276                                                                           https://twitter.com/ShSPDER1/status/1243590768289353729/photo/1
## 277                                                                     https://twitter.com/Mayankkrsinghr/status/1243331368953806853/photo/1
## 278                                                                                                                                        NA
## 279                                                                                                                                        NA
## 280                                                                                                                                        NA
## 281                                                                                                                                        NA
## 282                                                                                                                                        NA
## 283                                                                                                                                        NA
## 284                                                                                                                                        NA
## 285                                                                                                                                        NA
## 286                                                                                                                                        NA
## 287                                                                                                                                        NA
## 288                                                                                                                                        NA
## 289                                                                                                                                        NA
## 290                                                                                                                                        NA
## 291                                                                                                                                        NA
## 292                                                                    https://twitter.com/TheR4experience/status/1243643373942116355/photo/1
## 293                                                                                                                                        NA
## 294                                                                          https://twitter.com/pdartesia/status/1243631369583984641/photo/1
## 295                                                                                                                                        NA
## 296                                                                                                                                        NA
## 297                                                                                                                                        NA
## 298                                                                       https://twitter.com/MarcSkulnick/status/1243644667218059264/photo/1
## 299                                                                           https://twitter.com/MABRN999/status/1243328440486551556/photo/1
## 300                                                                                                                                        NA
## 301                                                                          https://twitter.com/NuniSasYu/status/1243602116553379842/photo/1
## 302                                                                     https://twitter.com/MovingMarkets_/status/1243747789848403969/photo/1
## 303                                                                           https://twitter.com/sn00pdad/status/1243672218283974663/video/1
## 304                                                                                                                                        NA
## 305                                                                             https://twitter.com/SKosgy/status/1243826970787549184/photo/1
## 306                                                                                                                                        NA
## 307                                                                                                                                        NA
## 308                                                                    https://twitter.com/ServproHaverhil/status/1243613894704279552/photo/1
## 309                                                                                                                                        NA
## 310                                                                           https://twitter.com/hine_hin/status/1243269286203924484/video/1
## 311                                                                                                                                        NA
## 312                                                                                                                                        NA
## 313                                                                                                                                        NA
## 314                                                                                                                                        NA
## 315                                                                                                                                        NA
## 316                                                                                                                                        NA
## 317                                                                        https://twitter.com/trustam1278/status/1243263497959608325/video/1
## 318                                                                                                                                        NA
## 319                                                                                                                                        NA
## 320                                                                                                                                        NA
## 321                                                                                                                                        NA
## 322                                                                                                                                        NA
## 323                                                                                                                                        NA
## 324                                                                           https://twitter.com/Arizton2/status/1243583739210465288/photo/1
## 325                                                                                                                                        NA
## 326                                                                           https://twitter.com/Bakerdun/status/1243631885642862592/video/1
## 327                                                                    https://twitter.com/perfectpolished/status/1243269837700333569/video/1
## 328                                                                                                                                        NA
## 329                                                                                                                                        NA
## 330                                                                     https://twitter.com/theworldinnews/status/1243263400966270986/photo/1
## 331                                                                                                                                        NA
## 332                                                                                                                                        NA
## 333                                                                                                                                        NA
## 334                                                                                                                                        NA
## 335                                                                                                                                        NA
## 336                                                                                                                                        NA
## 337                                                                                                                                        NA
## 338                                                                                                                                        NA
## 339                                                                     https://twitter.com/africanaffairs/status/1243651785987932165/photo/1
## 340                                                                                                                                        NA
## 341                                                                       https://twitter.com/thecraftykat/status/1243779543015571456/photo/1
## 342                                                                                                                                        NA
## 343                                                                      https://twitter.com/StuartShanker/status/1243304288073515014/photo/1
## 344                                                                                                                                        NA
## 345                                                                     https://twitter.com/elle_josephine/status/1243809483354062850/photo/1
## 346                                                                                                                                        NA
## 347                                                                                                                                        NA
## 348                                                                                                                                        NA
## 349                                                                                                                                        NA
## 350                                                                       https://twitter.com/Greensfelder/status/1243638907704610816/photo/1
## 351                                                                                                                                        NA
## 352                                                                                                                                        NA
## 353                                                                                                                                        NA
## 354                                                                                                                                        NA
## 355                                                                         https://twitter.com/JanesINTEL/status/1243583733942366209/photo/1
## 356                                                                             https://twitter.com/tv6tnt/status/1243578921532211200/video/1
## 357                                                                                                                                        NA
## 358                                                                           https://twitter.com/fmhansen/status/1243797559669215234/photo/1
## 359                                                                                                                                        NA
## 360                                                                       https://twitter.com/EdwardKallon/status/1243255485266104330/video/1
## 361                                                                                                                                        NA
## 362                                                                                                                                        NA
## 363                                                                        https://twitter.com/ShaulTurner/status/1243326555633434624/photo/1
## 364                                                                                                                                        NA
## 365                                                                                                                                        NA
## 366                                                                                                                                        NA
## 367                                                                       https://twitter.com/EvansShallom/status/1243646554822660104/photo/1
## 368                                                                                                                                        NA
## 369                                                                                                                                        NA
## 370                                                                                                                                        NA
## 371                                                                         https://twitter.com/JAMMULINKS/status/1243385173946667011/photo/1
## 372                                                                         https://twitter.com/MsVWebster/status/1243268337867657217/video/1
## 373                                                                           https://twitter.com/Bob_Grip/status/1243717873396260866/photo/1
## 374                                                                                                                                        NA
## 375                                                                                                                                        NA
## 376                                                                            https://twitter.com/nanaibm/status/1243824716470763522/photo/1
## 377                                                                            https://twitter.com/BikhamT/status/1243574607208161282/photo/1
## 378                                                                                                                                        NA
## 379                                                                          https://twitter.com/diannebee/status/1243566473202843649/photo/1
## 380                                                                     https://twitter.com/JasonPuckettTV/status/1243579579056500739/photo/1
## 381                                                                             https://twitter.com/espudo/status/1243743248205504512/photo/1
## 382                                                                                                                                        NA
## 383                                                                                                                                        NA
## 384                                                                    https://twitter.com/BHARATS66169558/status/1243751422056747008/photo/1
## 385                                                                                                                                        NA
## 386                                                                       https://twitter.com/dj_blue_eyes/status/1243830775507795968/photo/1
## 387                                                                                                                                        NA
## 388                                                                                                                                        NA
## 389                                                                        https://twitter.com/ChesterGlyn/status/1243286338423738368/photo/1
## 390                                                                      https://twitter.com/letspawsfirst/status/1243646628587884551/photo/1
## 391                                                                                                                                        NA
## 392                                                                                                                                        NA
## 393                                                                                                                                        NA
## 394                                                                           https://twitter.com/IWNGwent/status/1243569848963289090/photo/1
## 395                                                                                                                                        NA
## 396                                                                                                                                        NA
## 397                                                                                                                                        NA
## 398                                                                         https://twitter.com/YaleGlobal/status/1243336052754067459/photo/1
## 399                                                                                                                                        NA
## 400                                                                          https://twitter.com/allafrica/status/1243653826189672455/photo/1
## 401                                                                          https://twitter.com/FOX61News/status/1243232513901899778/photo/1
## 402                                                                                                                                        NA
## 403                                                                     https://twitter.com/JohnTerryTresh/status/1243580413660053504/video/1
## 404                                                                                                                                        NA
## 405                                                                                                                                        NA
## 406                                                                                                                                        NA
## 407                                                                                                                                        NA
## 408                                                                        https://twitter.com/chasbrennan/status/1243256026792472578/photo/1
## 409                                                                                                                                        NA
## 410                                                                                                                                        NA
## 411                                                                                                                                        NA
## 412                                                                      https://twitter.com/ClockhouseEN2/status/1243606900178067457/video/1
## 413                                                                                                                                        NA
## 414                                                                           https://twitter.com/chat_owl/status/1243243957670338563/photo/1
## 415                                                                                                                                        NA
## 416                                                                                                                                        NA
## 417                                                                         https://twitter.com/utaustin04/status/1243668037162729478/photo/1
## 418                                                                    https://twitter.com/sergiovivas1398/status/1243663300304326657/photo/1
## 419                                                                                                                                        NA
## 420                                                                                                                                        NA
## 421                                                                                                                                        NA
## 422                                                                      https://twitter.com/Current_Knewz/status/1243279211994976261/photo/1
## 423                                                                                                                                        NA
## 424                                                                                                                                        NA
## 425                                                                          https://twitter.com/QuickTake/status/1243789932998660097/video/1
## 426                                                                                                                                        NA
## 427                                                                                                                                        NA
## 428                                                                                                                                        NA
## 429                                                                                                                                        NA
## 430                                                                                                                                        NA
## 431                                                                                                                                        NA
## 432                                                                                                                                        NA
## 433                                                                                                                                        NA
## 434                                                                                                                                        NA
## 435                                                                            https://twitter.com/KNX1070/status/1243255713536696320/photo/1
## 436                                                                    https://twitter.com/Champ1Diversity/status/1243231125255806976/photo/1
## 437                                                                                                                                        NA
## 438                                                                                                                                        NA
## 439                                                                    https://twitter.com/PandemicCovid20/status/1243288382857285632/photo/1
## 440                                                                                                                                        NA
## 441                                                                                                                                        NA
## 442                                                                           https://twitter.com/DHIN_HIE/status/1243586596231929857/photo/1
## 443                                                                                                                                        NA
## 444                                                                                                                                        NA
## 445                                                                                                                                        NA
## 446                                                                                                                                        NA
## 447                                                                                                                                        NA
## 448                                                                                                                                        NA
## 449                                                                                                                                        NA
## 450                                                                            https://twitter.com/mairkrh/status/1243310842168426497/photo/1
## 451                                                                                                                                        NA
## 452                                                                                                                                        NA
## 453                                                                                                                                        NA
## 454                                                                                                                                        NA
## 455                                                                                                                                        NA
## 456                                                                                                                                        NA
## 457                                                                                                                                        NA
## 458                                                                                                                                        NA
## 459                                                                                                                                        NA
## 460                                                                    https://twitter.com/Jennife25073649/status/1243260787495485440/photo/1
## 461                                                                                                                                        NA
## 462                                                                                                                                        NA
## 463                                                                                                                                        NA
## 464                                                                                                                                        NA
## 465                                                                                                                                        NA
## 466                                                                             https://twitter.com/KathTX/status/1243637137691545601/photo/1
## 467                                                                                                                                        NA
## 468                                                                     https://twitter.com/WildsidePhotog/status/1243306224784945152/photo/1
## 469                                                                                                                                        NA
## 470                                                                                                                                        NA
## 471                                                                                                                                        NA
## 472                                                                                                                                        NA
## 473                                                                            https://twitter.com/bre77co/status/1243362375278854146/photo/1
## 474                                                                        https://twitter.com/thalesgroup/status/1243588718331658241/video/1
## 475                                                                                                                                        NA
## 476                                                                                                                                        NA
## 477                                                                                                                                        NA
## 478                                                                           https://twitter.com/WTFSahil/status/1243617876264783872/photo/1
## 479                                                                                                                                        NA
## 480                                                                                                                                        NA
## 481                                                                                                                                        NA
## 482                                                                                                                                        NA
## 483                                                                                                                                        NA
## 484                                                                                                                                        NA
## 485                                                                     https://twitter.com/YoutubeCherrie/status/1243257089293770753/video/1
## 486                                                                                                                                        NA
## 487                                                                                                                                        NA
## 488                                                                     https://twitter.com/Sou_HotWhopper/status/1243328361541189632/photo/1
## 489                                                                                                                                        NA
## 490                                                                                                                                        NA
## 491                                                                      https://twitter.com/Ahmadzai_rooh/status/1243809254340952064/photo/1
## 492                                                                    https://twitter.com/Mohitka93905897/status/1243589634652848135/video/1
## 493                                                                                                                                        NA
## 494                                                                      https://twitter.com/7NewsAdelaide/status/1243660701270298624/video/1
## 495                                                                            https://twitter.com/emkent5/status/1243294127762145284/photo/1
## 496                                                                                                                                        NA
## 497                                                                                                                                        NA
## 498                                                                          https://twitter.com/SumaMzee2/status/1243238415660974080/photo/1
## 499                                                                             https://twitter.com/soitiz/status/1243604703998590976/photo/1
## 500                                                                                                                                        NA
## 501                                                                          https://twitter.com/BuckForPA/status/1243253449195696134/photo/1
## 502                                                                            https://twitter.com/vijansi/status/1243235914513559552/photo/1
## 503                                                                                                                                        NA
## 504                                                                                                                                        NA
## 505                                                                                                                                        NA
## 506                                                                                                                                        NA
## 507                                                                                                                                        NA
## 508                                                                         https://twitter.com/KeaneJodie/status/1243284858417315841/photo/1
## 509                                                                                                                                        NA
## 510                                                                                                                                        NA
## 511                                                                                                                                        NA
## 512                                                                                                                                        NA
## 513                                                                                                                                        NA
## 514                                                                                                                                        NA
## 515                                                                                                                                        NA
## 516                                                                                                                                        NA
## 517                                                                                                                                        NA
## 518                                                                                                                                        NA
## 519                                                                                                                                        NA
## 520                                                                                                                                        NA
## 521                                                                                                                                        NA
## 522                                                                    https://twitter.com/DragonDigitalM1/status/1243312776858071046/photo/1
## 523                                                                      https://twitter.com/BernardDmello/status/1243746008120557568/photo/1
## 524                                                                                                                                        NA
## 525                                                                                                                                        NA
## 526                                                                                                                                        NA
## 527                                                                                                                                        NA
## 528                                                                                                                                        NA
## 529                                                                                                                                        NA
## 530                                                                                                                                        NA
## 531                                                                                                                                        NA
## 532                                                                                                                                        NA
## 533                                                                                                                                        NA
## 534                                                                           https://twitter.com/cirewebb/status/1243597448825749506/photo/1
## 535                                                                         https://twitter.com/johnfamous/status/1243663030799331328/photo/1
## 536                                                                                                                                        NA
## 537                                                                                                                                        NA
## 538                                                                                                                                        NA
## 539                                                                                                                                        NA
## 540                                                                                                                                        NA
## 541                                                                                                                                        NA
## 542                                                                                                                                        NA
## 543                                                                                                                                        NA
## 544                                                                                                                                        NA
## 545                                                                                                                                        NA
## 546                                                                                                                                        NA
## 547                                                                                                                                        NA
## 548                                                                        https://twitter.com/NRT_English/status/1243770921388826624/photo/1
## 549                                                                             https://twitter.com/Nax33r/status/1243607374578868224/video/1
## 550                                                                                                                                        NA
## 551                                                                                                                                        NA
## 552                                                                                                                                        NA
## 553                                                                                                                                        NA
## 554                                                                                                                                        NA
## 555                                                                                                                                        NA
## 556                                                                                                                                        NA
## 557                                                                                                                                        NA
## 558                                                                                                                                        NA
## 559                                                                    https://twitter.com/RedCrossBloodNC/status/1243675905953796097/photo/1
## 560                                                                                                                                        NA
## 561                                                                                                                                        NA
## 562                                                                                                                                        NA
## 563                                                                       https://twitter.com/ChimpReports/status/1243605775135752194/photo/1
## 564                                                                     https://twitter.com/clarkfornorman/status/1243627853087899656/photo/1
## 565                                                                                                                                        NA
## 566                                                                                                                                        NA
## 567                                                                     https://twitter.com/ThisIsMohit777/status/1243350866003783681/photo/1
## 568                                                                                                                                        NA
## 569                                                                                                                                        NA
## 570                                                                                                                                        NA
## 571                                                                                                                                        NA
## 572                                                                                                                                        NA
## 573                                                                    https://twitter.com/DonateAtDrivers/status/1243774850209996808/photo/1
## 574                                                                     https://twitter.com/MicheleONeilAU/status/1243652528681570304/photo/1
## 575                                                                                                                                        NA
## 576                                                                                                                                        NA
## 577                                                                                                                                        NA
## 578                                                                                                                                        NA
## 579                                                                                                                                        NA
## 580                                                                                                                                        NA
## 581                                                                                                                                        NA
## 582                                                                                                                                        NA
## 583                                                                                                                                        NA
## 584                                                                                                                                        NA
## 585                                                                                                                                        NA
## 586                                                                                                                                        NA
## 587                                                                                                                                        NA
## 588                                                                                                                                        NA
## 589                                                                     https://twitter.com/_DeepakSharma_/status/1243254552612102144/photo/1
## 590                                                                       https://twitter.com/JayJaramillo/status/1243309848193892357/video/1
## 591                                                                                                                                        NA
## 592                                                                                                                                        NA
## 593                                                                                                                                        NA
## 594                                                                                                                                        NA
## 595                                                                                                                                        NA
## 596                                                                                                                                        NA
## 597                                                                                                                                        NA
## 598                                                                           https://twitter.com/ICGPnews/status/1243275225510412288/photo/1
## 599                                                                      https://twitter.com/paulfrinkbhhs/status/1243315383236526084/video/1
## 600                                                                         https://twitter.com/GhanaYouth/status/1243819930648264705/photo/1
## 601                                                                    https://twitter.com/ResearchForGood/status/1243706383071170560/photo/1
## 602                                                                                                                                        NA
## 603                                                                                                                                        NA
## 604                                                                                                                                        NA
## 605                                                                                                                                        NA
## 606                                                                                                                                        NA
## 607                                                                                                                                        NA
## 608                                                                                                                                        NA
## 609                                                                                                                                        NA
## 610                                                                        https://twitter.com/jjburquhart/status/1243326140162412544/photo/1
## 611                                                                                                                                        NA
## 612                                                                                                                                        NA
## 613                                                                       https://twitter.com/CICRAcharity/status/1243568973310025730/photo/1
## 614                                                                                                                                        NA
## 615                                                                         https://twitter.com/Justin_SCF/status/1243257870621315073/photo/1
## 616                                                                                                                                        NA
## 617                                                                                                                                        NA
## 618                                                                                                                                        NA
## 619                                                                          https://twitter.com/KayOddone/status/1243372579613577216/photo/1
## 620                                                                                                                                        NA
## 621                                                                    https://twitter.com/AlissaA33893940/status/1243569827857543171/photo/1
## 622                                                                                                                                        NA
## 623                                                                           https://twitter.com/KPBSnews/status/1243682543754502144/photo/1
## 624                                                                                                                                        NA
## 625                                                                             https://twitter.com/psdxoh/status/1243335348773666816/photo/1
## 626                                                                                                                                        NA
## 627                                                                                                                                        NA
## 628                                                                            https://twitter.com/nhsswft/status/1243228800424476674/photo/1
## 629                                                                                                                                        NA
## 630                                                                                                                                        NA
## 631                                                                                                                                        NA
## 632                                                                          https://twitter.com/PFIpolicy/status/1243247365869445120/photo/1
## 633                                                                                                                                        NA
## 634                                                                         https://twitter.com/SteedFiona/status/1243662261354409985/photo/1
## 635                                                                                                                                        NA
## 636                                                                                                                                        NA
## 637                                                                                                                                        NA
## 638                                                                                                                                        NA
## 639                                                                                                                                        NA
## 640                                                                    https://twitter.com/isaacortega2900/status/1243723651741929472/photo/1
## 641  https://twitter.com/SelfdrivingC/status/1243800053136965632/photo/1, https://twitter.com/gerald_bader/status/1243797560759848961/photo/1
## 642                                                                                                                                        NA
## 643                                                                                                                                        NA
## 644                                                                                                                                        NA
## 645                                                                                                                                        NA
## 646                                                                                                                                        NA
## 647                                                                                                                                        NA
## 648                                                                                                                                        NA
## 649                                                                                                                                        NA
## 650                                                                                                                                        NA
## 651                                                                                                                                        NA
## 652                                                                       https://twitter.com/JohnMaddenTV/status/1243640540828229633/photo/1
## 653                                                                           https://twitter.com/musty527/status/1243661566957977602/photo/1
## 654                                                                                                                                        NA
## 655                                                                                                                                        NA
## 656                                                                                                                                        NA
## 657                                                                                                                                        NA
## 658                                                                                                                                        NA
## 659                                                                                                                                        NA
## 660                                                                        https://twitter.com/iamLisaHunt/status/1243707293679656960/photo/1
## 661                                                                                                                                        NA
## 662                                                                                                                                        NA
## 663                                                                        https://twitter.com/MrMikeBlake/status/1243382882392928256/video/1
## 664                                                                           https://twitter.com/nzlabour/status/1243295470400798720/photo/1
## 665                                                                                                                                        NA
## 666                                                                                                                                        NA
## 667                                                                                                                                        NA
## 668                                                                                                                                        NA
## 669                                                                                                                                        NA
## 670                                                                                                                                        NA
## 671                                                                                                                                        NA
## 672                                                                                                                                        NA
## 673                                                                                                                                        NA
## 674                                                                                                                                        NA
## 675                                                                                                                                        NA
## 676                                                                                                                                        NA
## 677                                                                                                                                        NA
## 678                                                                                                                                        NA
## 679                                                                                                                                        NA
## 680                                                                             https://twitter.com/KWCH12/status/1243235168040689665/photo/1
## 681                                                                                                                                        NA
## 682                                                                                                                                        NA
## 683                                                                                                                                        NA
## 684                                                                                                                                        NA
## 685                                                                                                                                        NA
## 686                                                                                                                                        NA
## 687                                                                     https://twitter.com/MiaStJohnBoxer/status/1243575557540810752/photo/1
## 688                                                                          https://twitter.com/LowyatNET/status/1243249174411243521/photo/1
## 689                                                                                                                                        NA
## 690                                                                             https://twitter.com/mthrel/status/1243269839915024387/video/1
## 691                                                                    https://twitter.com/VishalG31703954/status/1243282639156588544/photo/1
## 692                                                                                                                                        NA
## 693                                                                                                                                        NA
## 694                                                                                                                                        NA
## 695                                                                                                                                        NA
## 696                                                                                                                                        NA
## 697                                                                      https://twitter.com/msrkshahnawaz/status/1243632506328346624/photo/1
## 698                                                                                                                                        NA
## 699                                                                                                                                        NA
## 700                                                                                                                                        NA
## 701                                                                                                                                        NA
## 702                                                                                                                                        NA
## 703                                                                                                                                        NA
## 704                                                                                                                                        NA
## 705                                                                                                                                        NA
## 706                                                                       https://twitter.com/TheresaZ2019/status/1243647807682162690/photo/1
## 707                                                                                                                                        NA
## 708                                                                                                                                        NA
## 709                                                                                                                                        NA
## 710                                                                                                                                        NA
## 711                                                                                                                                        NA
## 712                                                                                                                                        NA
## 713                                                                                                                                        NA
## 714                                                                      https://twitter.com/realnikoraray/status/1243325639610023942/photo/1
## 715                                                                                                                                        NA
## 716                                                                                                                                        NA
## 717                                                                    https://twitter.com/Delawarenewsrep/status/1243338092011876352/photo/1
## 718                                                                                                                                        NA
## 719                                                                                                                                        NA
## 720                                                                                                                                        NA
## 721                                                                                                                                        NA
## 722                                                                    https://twitter.com/thejasminebrand/status/1243736885081427974/photo/1
## 723                                                                                                                                        NA
## 724                                                                                                                                        NA
## 725                                                                                                                                        NA
## 726                                                                           https://twitter.com/Nick_Kay/status/1243664351673884672/photo/1
## 727                                                                                                                                        NA
## 728                                                                                                                                        NA
## 729                                                                                                                                        NA
## 730                                                                                                                                        NA
## 731                                                                                                                                        NA
## 732                                                                          https://twitter.com/rhukkey_3/status/1243825426016894976/photo/1
## 733                                                                                                                                        NA
## 734                                                                                                                                        NA
## 735                                                                                                                                        NA
## 736                                                                                                                                        NA
## 737                                                                    https://twitter.com/lexymarienitzel/status/1243708055637897216/video/1
## 738                                                                       https://twitter.com/Act4Palestin/status/1242942743971856386/photo/1
## 739                                                                                                                                        NA
## 740                                                                      https://twitter.com/insights_west/status/1243607497769979904/photo/1
## 741                                                                                                                                        NA
## 742                                                                       https://twitter.com/travelweekly/status/1243230909693902853/photo/1
## 743                                                                       https://twitter.com/JMutinda_snr/status/1243794505339490305/photo/1
## 744                                                                                                                                        NA
## 745                                                                                                                                        NA
## 746                                                                                                                                        NA
## 747                                                                                                                                        NA
## 748                                                                                                                                        NA
## 749                                                                                                                                        NA
## 750                                                                                                                                        NA
## 751                                                                    https://twitter.com/PoliticRealitic/status/1243308674015055873/photo/1
## 752                                                                          https://twitter.com/swiftix24/status/1243604184399831043/photo/1
## 753                                                                    https://twitter.com/omaralabdullah2/status/1243393307671068679/photo/1
## 754                                                                         https://twitter.com/derekpoore/status/1243290805382586368/photo/1
## 755                                                                            https://twitter.com/gnoto62/status/1243637524075085825/photo/1
## 756                                                                    https://twitter.com/CapitalMidsNews/status/1243791682128117761/photo/1
## 757                                                                    https://twitter.com/SimoMachiLmryol/status/1243286649645289474/photo/1
## 758                                                                                                                                        NA
## 759                                                                                                                                        NA
## 760                                                                                                                                        NA
## 761                                                                                                                                        NA
## 762                                                                                                                                        NA
## 763                                                                                                                                        NA
## 764                                                                                                                                        NA
## 765                                                                                                                                        NA
## 766                                                                                                                                        NA
## 767                                                                                                                                        NA
## 768                                                                                                                                        NA
## 769                                                                                                                                        NA
## 770                                                                                                                                        NA
## 771                                                                                                                                        NA
## 772                                                                     https://twitter.com/ConsultingSior/status/1243589321317396480/photo/1
## 773                                                                        https://twitter.com/UMSocCogLab/status/1243632403450605568/photo/1
## 774                                                                       https://twitter.com/Tough_Muller/status/1243621919242563588/photo/1
## 775                                                                                                                                        NA
## 776                                                                                                                                        NA
## 777                                                                                                                                        NA
## 778                                                                                                                                        NA
## 779                                                                     https://twitter.com/EngrIkramDawar/status/1243781645200773121/photo/1
## 780                                                                           https://twitter.com/meobaldo/status/1243582871161405445/photo/1
## 781                                                                                                                                        NA
## 782                                                                                                                                        NA
## 783                                                                                                                                        NA
## 784                                                                            https://twitter.com/c_dabbz/status/1243810822242988037/photo/1
## 785                                                                    https://twitter.com/MacburyKristina/status/1243227296452001792/photo/1
## 786                                                                            https://twitter.com/05HAWKI/status/1243660345308258308/photo/1
## 787                                                                                                                                        NA
## 788                                                                                                                                        NA
## 789                                                                          https://twitter.com/HeraldWPG/status/1243667373179244544/photo/1
## 790                                                                                                                                        NA
## 791                                                                                                                                        NA
## 792                                                                     https://twitter.com/PetrasFreeMuse/status/1243609176099586048/photo/1
## 793                                                                                                                                        NA
## 794                                                                                                                                        NA
## 795                                                                                                                                        NA
## 796                                                                                                                                        NA
## 797                                                                                                                                        NA
## 798                                                                                                                                        NA
## 799                                                                                                                                        NA
## 800                                                                                                                                        NA
## 801                                                                         https://twitter.com/HanksMom44/status/1243686265049903106/photo/1
## 802                                                                          https://twitter.com/DanMidd84/status/1243235639035744257/photo/1
## 803                                                                                                                                        NA
## 804                                                                                                                                        NA
## 805                                                                                                                                        NA
## 806                                                                                                                                        NA
## 807                                                                                                                                        NA
## 808                                                                                                                                        NA
## 809                                                                                                                                        NA
## 810                                                                                                                                        NA
## 811                                                                        https://twitter.com/Libyan4life/status/1243341989346717696/photo/1
## 812                                                                                                                                        NA
## 813                                                                                                                                        NA
## 814                                                                                                                                        NA
## 815                                                                         https://twitter.com/247nigeria/status/1243656727276539908/photo/1
## 816                                                                                                                                        NA
## 817                                                                     https://twitter.com/Samsonprolific/status/1243258038418538497/photo/1
## 818                                                                                                                                        NA
## 819                                                                    https://twitter.com/DigitaliveWorld/status/1243369787427819521/photo/1
## 820                                                                                                                                        NA
## 821                                                                                                                                        NA
## 822                                                                            https://twitter.com/UoBarts/status/1243234310246760449/photo/1
## 823                                                                                                                                        NA
## 824                                                                        https://twitter.com/divaonline1/status/1243696251322765314/photo/1
## 825                                                                                                                                        NA
## 826                                                                         https://twitter.com/JimmyUmesh/status/1243390676122755072/photo/1
## 827                                                                                                                                        NA
## 828                                                                                                                                        NA
## 829                                                                                                                                        NA
## 830                                                                                                                                        NA
## 831                                                                            https://twitter.com/aertrip/status/1243828830147473409/photo/1
## 832                                                                                                                                        NA
## 833                                                                                                                                        NA
## 834                                                                                                                                        NA
## 835                                                                                                                                        NA
## 836                                                                       https://twitter.com/realiansaint/status/1243750762926260224/photo/1
## 837                                                                                                                                        NA
## 838                                                                                                                                        NA
## 839                                                                                                                                        NA
## 840                                                                                                                                        NA
## 841                                                                                                                                        NA
## 842                                                                                                                                        NA
## 843                                                                                                                                        NA
## 844                                                                                                                                        NA
## 845                                                                                                                                        NA
## 846                                                                                                                                        NA
## 847                                                                                                                                        NA
## 848                                                                                                                                        NA
## 849                                                                                                                                        NA
## 850                                                                                                                                        NA
## 851                                                                         https://twitter.com/Carmenable/status/1243828636114919424/photo/1
## 852                                                                                                                                        NA
## 853                                                                                                                                        NA
## 854                                                                                                                                        NA
## 855                                                                                                                                        NA
## 856                                                                                                                                        NA
## 857                                                                                                                                        NA
## 858                                                                        https://twitter.com/ABousquette/status/1243272708550463504/photo/1
## 859                                                                                                                                        NA
## 860                                                                             https://twitter.com/chubbm/status/1243798064810332165/photo/1
## 861                                                                                                                                        NA
## 862                                                                                                                                        NA
## 863                                                                                                                                        NA
## 864                                                                                                                                        NA
## 865                                                                       https://twitter.com/WesternUNews/status/1243669934984454144/photo/1
## 866                                                                                                                                        NA
## 867                                                                    https://twitter.com/Vic_toriaBailey/status/1243226714014179329/photo/1
## 868                                                                                                                                        NA
## 869                                                                                                                                        NA
## 870                                                                                                                                        NA
## 871                                                                                                                                        NA
## 872                                                                                                                                        NA
## 873                                                                                                                                        NA
## 874                                                                                                                                        NA
## 875                                                                                                                                        NA
## 876                                                                                                                                        NA
## 877                                                                                                                                        NA
## 878                                                                                                                                        NA
## 879                                                                                                                                        NA
## 880                                                                                                                                        NA
## 881                                                                                                                                        NA
## 882                                                                                                                                        NA
## 883                                                                                                                                        NA
## 884                                                                                                                                        NA
## 885                                                                                                                                        NA
## 886                                                                        https://twitter.com/mscenalover/status/1243243634075582464/photo/1
## 887                                                                                                                                        NA
## 888                                                                                                                                        NA
## 889                                                                                                                                        NA
## 890                                                                        https://twitter.com/leo_mulvany/status/1243249453546553347/photo/1
## 891                                                                                                                                        NA
## 892                                                                                                                                        NA
## 893                                                                      https://twitter.com/ProMarket_org/status/1243232497737109505/photo/1
## 894                                                                    https://twitter.com/OccHealthSafety/status/1243281571903426572/photo/1
## 895                                                                                                                                        NA
## 896                                                                                                                                        NA
## 897                                                                                                                                        NA
## 898                                                                       https://twitter.com/HolyDivine98/status/1243298271449305088/photo/1
## 899                                                                                                                                        NA
## 900                                                                                                                                        NA
## 901                                                                                                                                        NA
## 902                                                                        https://twitter.com/imSGaharwar/status/1243779679447736326/photo/1
## 903                                                                                                                                        NA
## 904                                                                      https://twitter.com/ParkerClimate/status/1243640189089710081/photo/1
## 905                                                                                                                                        NA
## 906                                                                                                                                        NA
## 907                                                                                                                                        NA
## 908                                                                    https://twitter.com/EastHertsPolice/status/1243571455343890436/photo/1
## 909                                                                                                                                        NA
## 910                                                                                                                                        NA
## 911                                                                                                                                        NA
## 912                                                                                                                                        NA
## 913                                                                                                                                        NA
## 914                                                                                                                                        NA
## 915                                                                       https://twitter.com/lindoscott14/status/1243654463975567360/photo/1
## 916                                                                      https://twitter.com/daputsetyadii/status/1243384663852208132/photo/1
## 917                                                                                                                                        NA
## 918                                                                                                                                        NA
## 919                                                                                                                                        NA
## 920                                                                                                                                        NA
## 921                                                                                                                                        NA
## 922                                                                                                                                        NA
## 923                                                                                                                                        NA
## 924                                                                                                                                        NA
## 925                                                                          https://twitter.com/AJGershTV/status/1243228031075975169/video/1
## 926                                                                                                                                        NA
## 927                                                                                                                                        NA
## 928                                                                            https://twitter.com/DCUC_HQ/status/1243590609035759622/photo/1
## 929                                                                    https://twitter.com/PalmdaleMedical/status/1243641795067641859/photo/1
## 930                                                                          https://twitter.com/itskarugu/status/1243377511632781313/video/1
## 931                                                                                                                                        NA
## 932                                                                                                                                        NA
## 933                                                                                                                                        NA
## 934                                                                      https://twitter.com/defencealerts/status/1243809717916520450/photo/1
## 935                                                                                                                                        NA
## 936                                                                                                                                        NA
## 937                                                                            https://twitter.com/Local12/status/1243699323587588096/photo/1
## 938                                                                                                                                        NA
## 939                                                                                                                                        NA
## 940                                                                    https://twitter.com/ImnotaREALgamer/status/1243230952614133760/photo/1
## 941                                                                    https://twitter.com/cazenave_franck/status/1243278314204250112/photo/1
## 942                                                                                                                                        NA
## 943                                                                                                                                        NA
## 944                                                                                                                                        NA
## 945                                                                       https://twitter.com/MommyMagen00/status/1243247414837940226/photo/1
## 946                                                                                                                                        NA
## 947                                                                      https://twitter.com/openletterbot/status/1243733098396659712/photo/1
## 948                                                                     https://twitter.com/InlandRegional/status/1243306027124002817/video/1
## 949                                                                    https://twitter.com/AmazingDouglass/status/1243358046127919106/photo/1
## 950                                                                                                                                        NA
## 951                                                                                                                                        NA
## 952                                                                           https://twitter.com/PHSAofBC/status/1243253950050164737/photo/1
## 953                                                                           https://twitter.com/mgotoo16/status/1243636817724944386/photo/1
## 954                                                                                                                                        NA
## 955                                                                                                                                        NA
## 956                                                                             https://twitter.com/NASWCO/status/1243293808827207680/photo/1
## 957                                                                     https://twitter.com/TheBindingSite/status/1243580549727432707/photo/1
## 958                                                                                                                                        NA
## 959                                                                                                                                        NA
## 960                                                                                                                                        NA
## 961                                                                                                                                        NA
## 962                                                                                                                                        NA
## 963                                                                                                                                        NA
## 964                                                                                                                                        NA
## 965                                                                          https://twitter.com/insideHPC/status/1243274524646232064/photo/1
## 966                                                                                                                                        NA
## 967                                                                                                                                        NA
## 968                                                                                                                                        NA
## 969                                                                                                                                        NA
## 970                                                                                                                                        NA
## 971                                                                                                                                        NA
## 972                                                                                                                                        NA
## 973                                                                      https://twitter.com/Evelyn1234515/status/1243311996839305216/photo/1
## 974                                                                                                                                        NA
## 975                                                                                                                                        NA
## 976                                                                                                                                        NA
## 977                                                                                                                                        NA
## 978                                                                                                                                        NA
## 979                                                                                                                                        NA
## 980                                                                                                                                        NA
## 981                                                                           https://twitter.com/aightdom/status/1243330380381458433/photo/1
## 982                                                                                                                                        NA
## 983                                                                                                                                        NA
## 984                                                                                                                                        NA
## 985                                                                                                                                        NA
## 986                                                                                                                                        NA
## 987                                                                                                                                        NA
## 988                                                                                                                                        NA
## 989                                                                                                                                        NA
## 990                                                                                                                                        NA
## 991                                                                                                                                        NA
## 992                                                                                                                                        NA
## 993                                                                    https://twitter.com/CityofRoseville/status/1243617587445010432/photo/1
## 994                                                                                                                                        NA
## 995                                                                                                                                        NA
## 996                                                                                                                                        NA
## 997                                                                       https://twitter.com/ISDFPR_Watch/status/1243593098908839937/photo/1
## 998                                                                         https://twitter.com/frog_happy/status/1243298396095594497/photo/1
## 999                                                                                                                                        NA
## 1000                                                                                                                                       NA
## 1001                                                                                                                                       NA
## 1002                                                                                                                                       NA
## 1003                                                                                                                                       NA
## 1004                                                                                                                                       NA
## 1005                                                                                                                                       NA
## 1006                                                                                                                                       NA
## 1007                                                                                                                                       NA
## 1008                                                                                                                                       NA
## 1009                                                                                                                                       NA
## 1010                                                                    https://twitter.com/CHPBaldwinPark/status/1243649166166786049/photo/1
## 1011                                                                                                                                       NA
## 1012                                                                      https://twitter.com/yp_hollywood/status/1243732706183262208/video/1
## 1013                                                                    https://twitter.com/insidethebadge/status/1243646340350926848/photo/1
## 1014                                                                   https://twitter.com/tripuranewslive/status/1243743174012604416/photo/1
## 1015                                                                        https://twitter.com/AmahPepple/status/1243276678278905856/photo/1
## 1016                                                                                                                                       NA
## 1017                                                                                                                                       NA
## 1018                                                                                                                                       NA
## 1019                                                                                                                                       NA
## 1020                                                                                                                                       NA
## 1021                                                                                                                                       NA
## 1022                                                                          https://twitter.com/MT_Strat/status/1243361208343728128/photo/1
## 1023                                                                   https://twitter.com/meldewey_photos/status/1243587676361629697/photo/1
## 1024                                                                                                                                       NA
## 1025                                                                                                                                       NA
## 1026                                                                                                                                       NA
## 1027                                                                                                                                       NA
## 1028                                                                                                                                       NA
## 1029                                                                                                                                       NA
## 1030                                                                                                                                       NA
## 1031                                                                                                                                       NA
## 1032                                                                                                                                       NA
## 1033                                                                                                                                       NA
## 1034                                                                                                                                       NA
## 1035                                                                                                                                       NA
## 1036                                                                       https://twitter.com/SueDudasova/status/1243822800189763585/photo/1
## 1037                                                                                                                                       NA
## 1038                                                                          https://twitter.com/Maan0078/status/1243597899960848397/photo/1
## 1039                                                                                                                                       NA
## 1040                                                                                                                                       NA
## 1041                                                                                                                                       NA
## 1042                                                                                                                                       NA
## 1043                                                                        https://twitter.com/RamyRefaey/status/1243291623175446529/photo/1
## 1044                                                                                                                                       NA
## 1045                                                                                                                                       NA
## 1046                                                                                                                                       NA
## 1047                                                                                                                                       NA
## 1048                                                                                                                                       NA
## 1049                                                                                                                                       NA
## 1050                                                                                                                                       NA
## 1051                                                                                                                                       NA
## 1052                                                                                                                                       NA
## 1053                                                                      https://twitter.com/rural_remote/status/1243659281230172160/photo/1
## 1054                                                                     https://twitter.com/VariousStrata/status/1243639042790604800/photo/1
## 1055                                                                                                                                       NA
## 1056                                                                                                                                       NA
## 1057                                                                                                                                       NA
## 1058                                                                                                                                       NA
## 1059                                                                                                                                       NA
## 1060                                                                                                                                       NA
## 1061                                                                                                                                       NA
## 1062                                                                                                                                       NA
## 1063                                                                                                                                       NA
## 1064                                                                                                                                       NA
## 1065                                                                                                                                       NA
## 1066                                                                                                                                       NA
## 1067                                                                        https://twitter.com/Mdalawize2/status/1243253040502759425/photo/1
## 1068                                                                                                                                       NA
## 1069                                                                                                                                       NA
## 1070                                                                                                                                       NA
## 1071                                                                                                                                       NA
## 1072                                                                                                                                       NA
## 1073                                                                                                                                       NA
## 1074                                                                                                                                       NA
## 1075                                                                                                                                       NA
## 1076                                                                                                                                       NA
## 1077                                                                                                                                       NA
## 1078                                                                                                                                       NA
## 1079                                                                                                                                       NA
## 1080                                                                                                                                       NA
## 1081                                                                         https://twitter.com/JaronSpor/status/1243309938379837440/photo/1
## 1082                                                                           https://twitter.com/erikrex/status/1243760058468573184/photo/1
## 1083                                                                                                                                       NA
## 1084                                                                                                                                       NA
## 1085                                                                                                                                       NA
## 1086                                                                                                                                       NA
## 1087                                                                                                                                       NA
## 1088                                                                     https://twitter.com/RichardKNaidu/status/1243752623166992384/photo/1
## 1089                                                                                                                                       NA
## 1090                                                                                                                                       NA
## 1091                                                                                                                                       NA
## 1092                                                                                                                                       NA
## 1093                                                                                                                                       NA
## 1094                                                                                                                                       NA
## 1095                                                                                                                                       NA
## 1096                                                                                                                                       NA
## 1097                                                                                                                                       NA
## 1098                                                                                                                                       NA
## 1099                                                                                                                                       NA
## 1100                                                                        https://twitter.com/duygumssuu/status/1243623641151086592/photo/1
## 1101                                                                                                                                       NA
## 1102                                                                     https://twitter.com/JacquesLouisa/status/1243642384682037249/photo/1
## 1103                                                                                                                                       NA
## 1104                                                                                                                                       NA
## 1105                                                                                                                                       NA
## 1106                                                                                                                                       NA
## 1107                                                                                                                                       NA
## 1108                                                                                                                                       NA
## 1109                                                                                                                                       NA
## 1110                                                                                                                                       NA
## 1111                                                                                                                                       NA
##        media_type
## 1              NA
## 2              NA
## 3              NA
## 4              NA
## 5              NA
## 6              NA
## 7              NA
## 8              NA
## 9              NA
## 10             NA
## 11          photo
## 12          photo
## 13             NA
## 14             NA
## 15             NA
## 16             NA
## 17          photo
## 18             NA
## 19             NA
## 20             NA
## 21             NA
## 22             NA
## 23             NA
## 24             NA
## 25             NA
## 26             NA
## 27          photo
## 28          photo
## 29             NA
## 30             NA
## 31             NA
## 32             NA
## 33          photo
## 34             NA
## 35             NA
## 36             NA
## 37          photo
## 38          photo
## 39             NA
## 40             NA
## 41             NA
## 42             NA
## 43             NA
## 44             NA
## 45             NA
## 46          photo
## 47             NA
## 48             NA
## 49          photo
## 50             NA
## 51             NA
## 52             NA
## 53             NA
## 54          photo
## 55             NA
## 56             NA
## 57             NA
## 58             NA
## 59             NA
## 60             NA
## 61          photo
## 62             NA
## 63             NA
## 64             NA
## 65             NA
## 66             NA
## 67          photo
## 68             NA
## 69          photo
## 70             NA
## 71          photo
## 72             NA
## 73          photo
## 74             NA
## 75             NA
## 76          photo
## 77             NA
## 78          photo
## 79          photo
## 80             NA
## 81          photo
## 82             NA
## 83             NA
## 84             NA
## 85          photo
## 86             NA
## 87             NA
## 88          photo
## 89          photo
## 90             NA
## 91             NA
## 92             NA
## 93          photo
## 94             NA
## 95             NA
## 96          photo
## 97          photo
## 98          photo
## 99          photo
## 100         photo
## 101         photo
## 102            NA
## 103            NA
## 104            NA
## 105            NA
## 106            NA
## 107         photo
## 108            NA
## 109            NA
## 110            NA
## 111            NA
## 112         photo
## 113            NA
## 114            NA
## 115         photo
## 116         photo
## 117            NA
## 118         photo
## 119            NA
## 120            NA
## 121            NA
## 122            NA
## 123            NA
## 124         photo
## 125            NA
## 126         photo
## 127            NA
## 128         photo
## 129            NA
## 130            NA
## 131            NA
## 132            NA
## 133            NA
## 134            NA
## 135         photo
## 136            NA
## 137            NA
## 138            NA
## 139            NA
## 140         photo
## 141            NA
## 142         photo
## 143            NA
## 144            NA
## 145            NA
## 146            NA
## 147            NA
## 148            NA
## 149         photo
## 150            NA
## 151            NA
## 152            NA
## 153            NA
## 154            NA
## 155            NA
## 156            NA
## 157         photo
## 158            NA
## 159         photo
## 160            NA
## 161            NA
## 162            NA
## 163            NA
## 164            NA
## 165            NA
## 166            NA
## 167            NA
## 168            NA
## 169         photo
## 170            NA
## 171         photo
## 172            NA
## 173            NA
## 174         photo
## 175            NA
## 176            NA
## 177            NA
## 178            NA
## 179            NA
## 180            NA
## 181         photo
## 182            NA
## 183            NA
## 184            NA
## 185         photo
## 186            NA
## 187            NA
## 188         photo
## 189            NA
## 190            NA
## 191            NA
## 192            NA
## 193            NA
## 194         photo
## 195            NA
## 196            NA
## 197            NA
## 198            NA
## 199            NA
## 200            NA
## 201            NA
## 202            NA
## 203            NA
## 204            NA
## 205            NA
## 206            NA
## 207            NA
## 208            NA
## 209         photo
## 210            NA
## 211            NA
## 212         photo
## 213            NA
## 214         photo
## 215            NA
## 216            NA
## 217            NA
## 218         photo
## 219         photo
## 220            NA
## 221            NA
## 222            NA
## 223            NA
## 224            NA
## 225            NA
## 226         photo
## 227         photo
## 228            NA
## 229            NA
## 230            NA
## 231            NA
## 232         photo
## 233         photo
## 234            NA
## 235            NA
## 236            NA
## 237            NA
## 238            NA
## 239            NA
## 240         photo
## 241            NA
## 242            NA
## 243            NA
## 244            NA
## 245         photo
## 246            NA
## 247         photo
## 248            NA
## 249            NA
## 250            NA
## 251            NA
## 252            NA
## 253            NA
## 254            NA
## 255            NA
## 256            NA
## 257            NA
## 258            NA
## 259            NA
## 260            NA
## 261            NA
## 262         photo
## 263            NA
## 264            NA
## 265         photo
## 266            NA
## 267         photo
## 268         photo
## 269            NA
## 270            NA
## 271            NA
## 272            NA
## 273            NA
## 274            NA
## 275            NA
## 276         photo
## 277         photo
## 278            NA
## 279            NA
## 280            NA
## 281            NA
## 282            NA
## 283            NA
## 284            NA
## 285            NA
## 286            NA
## 287            NA
## 288            NA
## 289            NA
## 290            NA
## 291            NA
## 292         photo
## 293            NA
## 294         photo
## 295            NA
## 296            NA
## 297            NA
## 298         photo
## 299         photo
## 300            NA
## 301         photo
## 302         photo
## 303         photo
## 304            NA
## 305         photo
## 306            NA
## 307            NA
## 308         photo
## 309            NA
## 310         photo
## 311            NA
## 312            NA
## 313            NA
## 314            NA
## 315            NA
## 316            NA
## 317         photo
## 318            NA
## 319            NA
## 320            NA
## 321            NA
## 322            NA
## 323            NA
## 324         photo
## 325            NA
## 326         photo
## 327         photo
## 328            NA
## 329            NA
## 330         photo
## 331            NA
## 332            NA
## 333            NA
## 334            NA
## 335            NA
## 336            NA
## 337            NA
## 338            NA
## 339         photo
## 340            NA
## 341         photo
## 342            NA
## 343         photo
## 344            NA
## 345         photo
## 346            NA
## 347            NA
## 348            NA
## 349            NA
## 350         photo
## 351            NA
## 352            NA
## 353            NA
## 354            NA
## 355         photo
## 356         photo
## 357            NA
## 358         photo
## 359            NA
## 360         photo
## 361            NA
## 362            NA
## 363         photo
## 364            NA
## 365            NA
## 366            NA
## 367         photo
## 368            NA
## 369            NA
## 370            NA
## 371         photo
## 372         photo
## 373         photo
## 374            NA
## 375            NA
## 376         photo
## 377         photo
## 378            NA
## 379         photo
## 380         photo
## 381         photo
## 382            NA
## 383            NA
## 384         photo
## 385            NA
## 386         photo
## 387            NA
## 388            NA
## 389         photo
## 390         photo
## 391            NA
## 392            NA
## 393            NA
## 394         photo
## 395            NA
## 396            NA
## 397            NA
## 398         photo
## 399            NA
## 400         photo
## 401         photo
## 402            NA
## 403         photo
## 404            NA
## 405            NA
## 406            NA
## 407            NA
## 408         photo
## 409            NA
## 410            NA
## 411            NA
## 412         photo
## 413            NA
## 414         photo
## 415            NA
## 416            NA
## 417         photo
## 418         photo
## 419            NA
## 420            NA
## 421            NA
## 422         photo
## 423            NA
## 424            NA
## 425         photo
## 426            NA
## 427            NA
## 428            NA
## 429            NA
## 430            NA
## 431            NA
## 432            NA
## 433            NA
## 434            NA
## 435         photo
## 436         photo
## 437            NA
## 438            NA
## 439         photo
## 440            NA
## 441            NA
## 442         photo
## 443            NA
## 444            NA
## 445            NA
## 446            NA
## 447            NA
## 448            NA
## 449            NA
## 450         photo
## 451            NA
## 452            NA
## 453            NA
## 454            NA
## 455            NA
## 456            NA
## 457            NA
## 458            NA
## 459            NA
## 460         photo
## 461            NA
## 462            NA
## 463            NA
## 464            NA
## 465            NA
## 466         photo
## 467            NA
## 468         photo
## 469            NA
## 470            NA
## 471            NA
## 472            NA
## 473         photo
## 474         photo
## 475            NA
## 476            NA
## 477            NA
## 478         photo
## 479            NA
## 480            NA
## 481            NA
## 482            NA
## 483            NA
## 484            NA
## 485         photo
## 486            NA
## 487            NA
## 488         photo
## 489            NA
## 490            NA
## 491         photo
## 492         photo
## 493            NA
## 494         photo
## 495         photo
## 496            NA
## 497            NA
## 498         photo
## 499         photo
## 500            NA
## 501         photo
## 502         photo
## 503            NA
## 504            NA
## 505            NA
## 506            NA
## 507            NA
## 508         photo
## 509            NA
## 510            NA
## 511            NA
## 512            NA
## 513            NA
## 514            NA
## 515            NA
## 516            NA
## 517            NA
## 518            NA
## 519            NA
## 520            NA
## 521            NA
## 522         photo
## 523         photo
## 524            NA
## 525            NA
## 526            NA
## 527            NA
## 528            NA
## 529            NA
## 530            NA
## 531            NA
## 532            NA
## 533            NA
## 534         photo
## 535         photo
## 536            NA
## 537            NA
## 538            NA
## 539            NA
## 540            NA
## 541            NA
## 542            NA
## 543            NA
## 544            NA
## 545            NA
## 546            NA
## 547            NA
## 548         photo
## 549         photo
## 550            NA
## 551            NA
## 552            NA
## 553            NA
## 554            NA
## 555            NA
## 556            NA
## 557            NA
## 558            NA
## 559         photo
## 560            NA
## 561            NA
## 562            NA
## 563         photo
## 564         photo
## 565            NA
## 566            NA
## 567         photo
## 568            NA
## 569            NA
## 570            NA
## 571            NA
## 572            NA
## 573         photo
## 574         photo
## 575            NA
## 576            NA
## 577            NA
## 578            NA
## 579            NA
## 580            NA
## 581            NA
## 582            NA
## 583            NA
## 584            NA
## 585            NA
## 586            NA
## 587            NA
## 588            NA
## 589         photo
## 590         photo
## 591            NA
## 592            NA
## 593            NA
## 594            NA
## 595            NA
## 596            NA
## 597            NA
## 598         photo
## 599         photo
## 600         photo
## 601         photo
## 602            NA
## 603            NA
## 604            NA
## 605            NA
## 606            NA
## 607            NA
## 608            NA
## 609            NA
## 610         photo
## 611            NA
## 612            NA
## 613         photo
## 614            NA
## 615         photo
## 616            NA
## 617            NA
## 618            NA
## 619         photo
## 620            NA
## 621         photo
## 622            NA
## 623         photo
## 624            NA
## 625         photo
## 626            NA
## 627            NA
## 628         photo
## 629            NA
## 630            NA
## 631            NA
## 632         photo
## 633            NA
## 634         photo
## 635            NA
## 636            NA
## 637            NA
## 638            NA
## 639            NA
## 640         photo
## 641  photo, photo
## 642            NA
## 643            NA
## 644            NA
## 645            NA
## 646            NA
## 647            NA
## 648            NA
## 649            NA
## 650            NA
## 651            NA
## 652         photo
## 653         photo
## 654            NA
## 655            NA
## 656            NA
## 657            NA
## 658            NA
## 659            NA
## 660         photo
## 661            NA
## 662            NA
## 663         photo
## 664         photo
## 665            NA
## 666            NA
## 667            NA
## 668            NA
## 669            NA
## 670            NA
## 671            NA
## 672            NA
## 673            NA
## 674            NA
## 675            NA
## 676            NA
## 677            NA
## 678            NA
## 679            NA
## 680         photo
## 681            NA
## 682            NA
## 683            NA
## 684            NA
## 685            NA
## 686            NA
## 687         photo
## 688         photo
## 689            NA
## 690         photo
## 691         photo
## 692            NA
## 693            NA
## 694            NA
## 695            NA
## 696            NA
## 697         photo
## 698            NA
## 699            NA
## 700            NA
## 701            NA
## 702            NA
## 703            NA
## 704            NA
## 705            NA
## 706         photo
## 707            NA
## 708            NA
## 709            NA
## 710            NA
## 711            NA
## 712            NA
## 713            NA
## 714         photo
## 715            NA
## 716            NA
## 717         photo
## 718            NA
## 719            NA
## 720            NA
## 721            NA
## 722         photo
## 723            NA
## 724            NA
## 725            NA
## 726         photo
## 727            NA
## 728            NA
## 729            NA
## 730            NA
## 731            NA
## 732         photo
## 733            NA
## 734            NA
## 735            NA
## 736            NA
## 737         photo
## 738         photo
## 739            NA
## 740         photo
## 741            NA
## 742         photo
## 743         photo
## 744            NA
## 745            NA
## 746            NA
## 747            NA
## 748            NA
## 749            NA
## 750            NA
## 751         photo
## 752         photo
## 753         photo
## 754         photo
## 755         photo
## 756         photo
## 757         photo
## 758            NA
## 759            NA
## 760            NA
## 761            NA
## 762            NA
## 763            NA
## 764            NA
## 765            NA
## 766            NA
## 767            NA
## 768            NA
## 769            NA
## 770            NA
## 771            NA
## 772         photo
## 773         photo
## 774         photo
## 775            NA
## 776            NA
## 777            NA
## 778            NA
## 779         photo
## 780         photo
## 781            NA
## 782            NA
## 783            NA
## 784         photo
## 785         photo
## 786         photo
## 787            NA
## 788            NA
## 789         photo
## 790            NA
## 791            NA
## 792         photo
## 793            NA
## 794            NA
## 795            NA
## 796            NA
## 797            NA
## 798            NA
## 799            NA
## 800            NA
## 801         photo
## 802         photo
## 803            NA
## 804            NA
## 805            NA
## 806            NA
## 807            NA
## 808            NA
## 809            NA
## 810            NA
## 811         photo
## 812            NA
## 813            NA
## 814            NA
## 815         photo
## 816            NA
## 817         photo
## 818            NA
## 819         photo
## 820            NA
## 821            NA
## 822         photo
## 823            NA
## 824         photo
## 825            NA
## 826         photo
## 827            NA
## 828            NA
## 829            NA
## 830            NA
## 831         photo
## 832            NA
## 833            NA
## 834            NA
## 835            NA
## 836         photo
## 837            NA
## 838            NA
## 839            NA
## 840            NA
## 841            NA
## 842            NA
## 843            NA
## 844            NA
## 845            NA
## 846            NA
## 847            NA
## 848            NA
## 849            NA
## 850            NA
## 851         photo
## 852            NA
## 853            NA
## 854            NA
## 855            NA
## 856            NA
## 857            NA
## 858         photo
## 859            NA
## 860         photo
## 861            NA
## 862            NA
## 863            NA
## 864            NA
## 865         photo
## 866            NA
## 867         photo
## 868            NA
## 869            NA
## 870            NA
## 871            NA
## 872            NA
## 873            NA
## 874            NA
## 875            NA
## 876            NA
## 877            NA
## 878            NA
## 879            NA
## 880            NA
## 881            NA
## 882            NA
## 883            NA
## 884            NA
## 885            NA
## 886         photo
## 887            NA
## 888            NA
## 889            NA
## 890         photo
## 891            NA
## 892            NA
## 893         photo
## 894         photo
## 895            NA
## 896            NA
## 897            NA
## 898         photo
## 899            NA
## 900            NA
## 901            NA
## 902         photo
## 903            NA
## 904         photo
## 905            NA
## 906            NA
## 907            NA
## 908         photo
## 909            NA
## 910            NA
## 911            NA
## 912            NA
## 913            NA
## 914            NA
## 915         photo
## 916         photo
## 917            NA
## 918            NA
## 919            NA
## 920            NA
## 921            NA
## 922            NA
## 923            NA
## 924            NA
## 925         photo
## 926            NA
## 927            NA
## 928         photo
## 929         photo
## 930         photo
## 931            NA
## 932            NA
## 933            NA
## 934         photo
## 935            NA
## 936            NA
## 937         photo
## 938            NA
## 939            NA
## 940         photo
## 941         photo
## 942            NA
## 943            NA
## 944            NA
## 945         photo
## 946            NA
## 947         photo
## 948         photo
## 949         photo
## 950            NA
## 951            NA
## 952         photo
## 953         photo
## 954            NA
## 955            NA
## 956         photo
## 957         photo
## 958            NA
## 959            NA
## 960            NA
## 961            NA
## 962            NA
## 963            NA
## 964            NA
## 965         photo
## 966            NA
## 967            NA
## 968            NA
## 969            NA
## 970            NA
## 971            NA
## 972            NA
## 973         photo
## 974            NA
## 975            NA
## 976            NA
## 977            NA
## 978            NA
## 979            NA
## 980            NA
## 981         photo
## 982            NA
## 983            NA
## 984            NA
## 985            NA
## 986            NA
## 987            NA
## 988            NA
## 989            NA
## 990            NA
## 991            NA
## 992            NA
## 993         photo
## 994            NA
## 995            NA
## 996            NA
## 997         photo
## 998         photo
## 999            NA
## 1000           NA
## 1001           NA
## 1002           NA
## 1003           NA
## 1004           NA
## 1005           NA
## 1006           NA
## 1007           NA
## 1008           NA
## 1009           NA
## 1010        photo
## 1011           NA
## 1012        photo
## 1013        photo
## 1014        photo
## 1015        photo
## 1016           NA
## 1017           NA
## 1018           NA
## 1019           NA
## 1020           NA
## 1021           NA
## 1022        photo
## 1023        photo
## 1024           NA
## 1025           NA
## 1026           NA
## 1027           NA
## 1028           NA
## 1029           NA
## 1030           NA
## 1031           NA
## 1032           NA
## 1033           NA
## 1034           NA
## 1035           NA
## 1036        photo
## 1037           NA
## 1038        photo
## 1039           NA
## 1040           NA
## 1041           NA
## 1042           NA
## 1043        photo
## 1044           NA
## 1045           NA
## 1046           NA
## 1047           NA
## 1048           NA
## 1049           NA
## 1050           NA
## 1051           NA
## 1052           NA
## 1053        photo
## 1054        photo
## 1055           NA
## 1056           NA
## 1057           NA
## 1058           NA
## 1059           NA
## 1060           NA
## 1061           NA
## 1062           NA
## 1063           NA
## 1064           NA
## 1065           NA
## 1066           NA
## 1067        photo
## 1068           NA
## 1069           NA
## 1070           NA
## 1071           NA
## 1072           NA
## 1073           NA
## 1074           NA
## 1075           NA
## 1076           NA
## 1077           NA
## 1078           NA
## 1079           NA
## 1080           NA
## 1081        photo
## 1082        photo
## 1083           NA
## 1084           NA
## 1085           NA
## 1086           NA
## 1087           NA
## 1088        photo
## 1089           NA
## 1090           NA
## 1091           NA
## 1092           NA
## 1093           NA
## 1094           NA
## 1095           NA
## 1096           NA
## 1097           NA
## 1098           NA
## 1099           NA
## 1100        photo
## 1101           NA
## 1102        photo
## 1103           NA
## 1104           NA
## 1105           NA
## 1106           NA
## 1107           NA
## 1108           NA
## 1109           NA
## 1110           NA
## 1111           NA
##                                                                                                                                                                                       ext_media_url
## 1                                                                                                                                                                                                NA
## 2                                                                                                                                                                                                NA
## 3                                                                                                                                                                                                NA
## 4                                                                                                                                                                                                NA
## 5                                                                                                                                                                                                NA
## 6                                                                                                                                                                                                NA
## 7                                                                                                                                                                                                NA
## 8                                                                                                                                                                                                NA
## 9                                                                                                                                                                                                NA
## 10                                                                                                                                                                                               NA
## 11                                                                                                                                                   http://pbs.twimg.com/media/EUDZ9wYWkAACGnA.jpg
## 12                                                                                                                                                   http://pbs.twimg.com/media/EUEmqcQXkAMPISr.jpg
## 13                                                                                                                                                                                               NA
## 14                                                                                                                                                                                               NA
## 15                                                                                                                                                                                               NA
## 16                                                                                                                                                                                               NA
## 17                                                                                                                                                   http://pbs.twimg.com/media/EUDbveTWsAAwkso.jpg
## 18                                                                                                                                                                                               NA
## 19                                                                                                                                                                                               NA
## 20                                                                                                                                                                                               NA
## 21                                                                                                                                                                                               NA
## 22                                                                                                                                                                                               NA
## 23                                                                                                                                                                                               NA
## 24                                                                                                                                                                                               NA
## 25                                                                                                                                                                                               NA
## 26                                                                                                                                                                                               NA
## 27                                                                                                                                                   http://pbs.twimg.com/media/EUDa3ajWoAISsRE.jpg
## 28                                                                                                                                                   http://pbs.twimg.com/media/EUD2wItWAAE-ijj.jpg
## 29                                                                                                                                                                                               NA
## 30                                                                                                                                                                                               NA
## 31                                                                                                                                                                                               NA
## 32                                                                                                                                                                                               NA
## 33                                                                                                                                                   http://pbs.twimg.com/media/EUFIzBPWsAAp_i_.jpg
## 34                                                                                                                                                                                               NA
## 35                                                                                                                                                                                               NA
## 36                                                                                                                                                                                               NA
## 37                                                                                                                                                   http://pbs.twimg.com/media/EULteHjXYAAxRRL.jpg
## 38                                                                                                                                                   http://pbs.twimg.com/media/EUIaNgPWkAIjUGb.png
## 39                                                                                                                                                                                               NA
## 40                                                                                                                                                                                               NA
## 41                                                                                                                                                                                               NA
## 42                                                                                                                                                                                               NA
## 43                                                                                                                                                                                               NA
## 44                                                                                                                                                                                               NA
## 45                                                                                                                                                                                               NA
## 46                                                                                                                                                   http://pbs.twimg.com/media/EUFI2hgWoAAxZaT.jpg
## 47                                                                                                                                                                                               NA
## 48                                                                                                                                                                                               NA
## 49   http://pbs.twimg.com/media/EUEMvcZWAAAtvIo.jpg, http://pbs.twimg.com/media/EUEMvceXsAQaMKc.jpg, http://pbs.twimg.com/media/EUEMvcYXkAAZhow.jpg, http://pbs.twimg.com/media/EUEMvcbWsAIg7Ol.jpg
## 50                                                                                                                                                                                               NA
## 51                                                                                                                                                                                               NA
## 52                                                                                                                                                                                               NA
## 53                                                                                                                                                                                               NA
## 54                                                                                                                                                   http://pbs.twimg.com/media/EUE2FR4XkAoJ_u3.jpg
## 55                                                                                                                                                                                               NA
## 56                                                                                                                                                                                               NA
## 57                                                                                                                                                                                               NA
## 58                                                                                                                                                                                               NA
## 59                                                                                                                                                                                               NA
## 60                                                                                                                                                                                               NA
## 61                                                                                                                                                   http://pbs.twimg.com/media/EUE7gGAX0AA2UT8.jpg
## 62                                                                                                                                                                                               NA
## 63                                                                                                                                                                                               NA
## 64                                                                                                                                                                                               NA
## 65                                                                                                                                                                                               NA
## 66                                                                                                                                                                                               NA
## 67                                                                                                                                                   http://pbs.twimg.com/media/EULHulIWkAA1BQu.jpg
## 68                                                                                                                                                                                               NA
## 69                                                                                                                                       http://pbs.twimg.com/tweet_video_thumb/EUD5HLLWoAIGZXg.jpg
## 70                                                                                                                                                                                               NA
## 71                                                                                                                                                   http://pbs.twimg.com/media/EUE-yLIXYAApG7i.jpg
## 72                                                                                                                                                                                               NA
## 73                                                                                                                                                   http://pbs.twimg.com/media/EUE8IlvXQAECgkv.jpg
## 74                                                                                                                                                                                               NA
## 75                                                                                                                                                                                               NA
## 76                                                                                                                                                   http://pbs.twimg.com/media/EUKYVYoXYAASaE2.jpg
## 77                                                                                                                                                                                               NA
## 78                                                                                                                                                   http://pbs.twimg.com/media/EUII-Z_XYAEuLAP.jpg
## 79                                                                                                                                                   http://pbs.twimg.com/media/EUEfKJRX0AAu-fI.jpg
## 80                                                                                                                                                                                               NA
## 81                                                                                                          http://pbs.twimg.com/ext_tw_video_thumb/1243794955497332745/pu/img/-N60B7VQS_Y45Ok-.jpg
## 82                                                                                                                                                                                               NA
## 83                                                                                                                                                                                               NA
## 84                                                                                                                                                                                               NA
## 85                                                                                                                                       http://pbs.twimg.com/tweet_video_thumb/EUJFMlMXQAErBkt.jpg
## 86                                                                                                                                                                                               NA
## 87                                                                                                                                                                                               NA
## 88                                                                                                                                                   http://pbs.twimg.com/media/EUJrK6cWkAIQ4sf.jpg
## 89                                                                                                                                                   http://pbs.twimg.com/media/EUJ6n4cWAAIe1uL.jpg
## 90                                                                                                                                                                                               NA
## 91                                                                                                                                                                                               NA
## 92                                                                                                                                                                                               NA
## 93                                                                                                                                                   http://pbs.twimg.com/media/EUH4JgCX0AEjX2O.jpg
## 94                                                                                                                                                                                               NA
## 95                                                                                                                                                                                               NA
## 96                                                                                                                                                   http://pbs.twimg.com/media/EUDTCVoXkAUp3ov.jpg
## 97                                                                                                                                       http://pbs.twimg.com/tweet_video_thumb/EUKNCy6UwAAobzV.jpg
## 98                                                                                                                                                   http://pbs.twimg.com/media/EUDWBMLWoAIBPfC.jpg
## 99                                                                                                                                       http://pbs.twimg.com/tweet_video_thumb/EULy3xxUMAA90NO.jpg
## 100                                                                                                                                                  http://pbs.twimg.com/media/EUKfXvmXsAAsKJi.jpg
## 101                                                                                                                                                  http://pbs.twimg.com/media/EULqCJeXgAA5yac.jpg
## 102                                                                                                                                                                                              NA
## 103                                                                                                                                                                                              NA
## 104                                                                                                                                                                                              NA
## 105                                                                                                                                                                                              NA
## 106                                                                                                                                                                                              NA
## 107                                                                                                                                                  http://pbs.twimg.com/media/EULAchJU4AQ5_82.jpg
## 108                                                                                                                                                                                              NA
## 109                                                                                                                                                                                              NA
## 110                                                                                                                                                                                              NA
## 111                                                                                                                                                                                              NA
## 112                                                                                                  http://pbs.twimg.com/media/EUDYhAVWkAEE979.jpg, http://pbs.twimg.com/media/EUDYhAVX0AIE59S.jpg
## 113                                                                                                                                                                                              NA
## 114                                                                                                                                                                                              NA
## 115                                                                                                                                                  http://pbs.twimg.com/media/EULfbOVXkAA8WqA.jpg
## 116                                                                                                                                                  http://pbs.twimg.com/media/EUI0Tv_XQAIhWqK.jpg
## 117                                                                                                                                                                                              NA
## 118                                                                                                                                                  http://pbs.twimg.com/media/EUIYzSYWsAEORha.jpg
## 119                                                                                                                                                                                              NA
## 120                                                                                                                                                                                              NA
## 121                                                                                                                                                                                              NA
## 122                                                                                                                                                                                              NA
## 123                                                                                                                                                                                              NA
## 124                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243581578468634626/pu/img/t4423orkV_bGVu7l.jpg
## 125                                                                                                                                                                                              NA
## 126                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243322771943415808/pu/img/1Rbd9S4H4NG61KVA.jpg
## 127                                                                                                                                                                                              NA
## 128                                                                                                                                                  http://pbs.twimg.com/media/EUEmoMJUMAIYagp.jpg
## 129                                                                                                                                                                                              NA
## 130                                                                                                                                                                                              NA
## 131                                                                                                                                                                                              NA
## 132                                                                                                                                                                                              NA
## 133                                                                                                                                                                                              NA
## 134                                                                                                                                                                                              NA
## 135  http://pbs.twimg.com/media/EUDVsSgXsAIU8by.jpg, http://pbs.twimg.com/media/EUDVtjxXQAAg-Gl.jpg, http://pbs.twimg.com/media/EUDVtzuXkAAV4dp.jpg, http://pbs.twimg.com/media/EUDVuBMXkAE2JC0.jpg
## 136                                                                                                                                                                                              NA
## 137                                                                                                                                                                                              NA
## 138                                                                                                                                                                                              NA
## 139                                                                                                                                                                                              NA
## 140                                                                                                                                                  http://pbs.twimg.com/media/EUIZt8qWoAcFyyF.png
## 141                                                                                                                                                                                              NA
## 142                                                                                                                                                  http://pbs.twimg.com/media/EUJPeXEWAAAttcM.jpg
## 143                                                                                                                                                                                              NA
## 144                                                                                                                                                                                              NA
## 145                                                                                                                                                                                              NA
## 146                                                                                                                                                                                              NA
## 147                                                                                                                                                                                              NA
## 148                                                                                                                                                                                              NA
## 149                                                                                                                                                  http://pbs.twimg.com/media/EUEvLUKX0AAXzn2.jpg
## 150                                                                                                                                                                                              NA
## 151                                                                                                                                                                                              NA
## 152                                                                                                                                                                                              NA
## 153                                                                                                                                                                                              NA
## 154                                                                                                                                                                                              NA
## 155                                                                                                                                                                                              NA
## 156                                                                                                                                                                                              NA
## 157                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243566182730534914/pu/img/QXrsDBw2STkjtl7P.jpg
## 158                                                                                                                                                                                              NA
## 159                                                                                                                                                  http://pbs.twimg.com/media/EUJkQN9WAAM-G3L.png
## 160                                                                                                                                                                                              NA
## 161                                                                                                                                                                                              NA
## 162                                                                                                                                                                                              NA
## 163                                                                                                                                                                                              NA
## 164                                                                                                                                                                                              NA
## 165                                                                                                                                                                                              NA
## 166                                                                                                                                                                                              NA
## 167                                                                                                                                                                                              NA
## 168                                                                                                                                                                                              NA
## 169                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243826538371584001/pu/img/6HCklwy7zaDnujFs.jpg
## 170                                                                                                                                                                                              NA
## 171                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUE5A2tXkAAnEzM.jpg
## 172                                                                                                                                                                                              NA
## 173                                                                                                                                                                                              NA
## 174                                                                                                                                                  http://pbs.twimg.com/media/EUKtlU8UYAICxq_.jpg
## 175                                                                                                                                                                                              NA
## 176                                                                                                                                                                                              NA
## 177                                                                                                                                                                                              NA
## 178                                                                                                                                                                                              NA
## 179                                                                                                                                                                                              NA
## 180                                                                                                                                                                                              NA
## 181                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243255442442276873/pu/img/VpZSZyA-QauJxLAu.jpg
## 182                                                                                                                                                                                              NA
## 183                                                                                                                                                                                              NA
## 184                                                                                                                                                                                              NA
## 185                                                                                                  http://pbs.twimg.com/media/EUDf8sCUwAAMjkm.jpg, http://pbs.twimg.com/media/EUDf8sCUcAAz79A.png
## 186                                                                                                                                                                                              NA
## 187                                                                                                                                                                                              NA
## 188                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1242910266171375616/pu/img/bVR9xsQiGyrzDyVN.jpg
## 189                                                                                                                                                                                              NA
## 190                                                                                                                                                                                              NA
## 191                                                                                                                                                                                              NA
## 192                                                                                                                                                                                              NA
## 193                                                                                                                                                                                              NA
## 194                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1242729580005392384/pu/img/iXSS5jScm7o2afy_.jpg
## 195                                                                                                                                                                                              NA
## 196                                                                                                                                                                                              NA
## 197                                                                                                                                                                                              NA
## 198                                                                                                                                                                                              NA
## 199                                                                                                                                                                                              NA
## 200                                                                                                                                                                                              NA
## 201                                                                                                                                                                                              NA
## 202                                                                                                                                                                                              NA
## 203                                                                                                                                                                                              NA
## 204                                                                                                                                                                                              NA
## 205                                                                                                                                                                                              NA
## 206                                                                                                                                                                                              NA
## 207                                                                                                                                                                                              NA
## 208                                                                                                                                                                                              NA
## 209                                                  http://pbs.twimg.com/media/EUKP_fCUUAAXBjU.jpg, http://pbs.twimg.com/media/EUKQA9zUcAAEGoz.jpg, http://pbs.twimg.com/media/EUKQCFwUUAAjlJS.jpg
## 210                                                                                                                                                                                              NA
## 211                                                                                                                                                                                              NA
## 212                                                                                                                                                  http://pbs.twimg.com/media/EUIJXwsWoAcjmRt.jpg
## 213                                                                                                                                                                                              NA
## 214                                                                                                           http://pbs.twimg.com/amplify_video_thumb/1240746305644830722/img/BVjSw5l0amfLRtXS.jpg
## 215                                                                                                                                                                                              NA
## 216                                                                                                                                                                                              NA
## 217                                                                                                                                                                                              NA
## 218                                                                                                                                                  http://pbs.twimg.com/media/EUD2VuNVAAAkm5e.jpg
## 219                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUD_-ZVWsAAzHY_.jpg
## 220                                                                                                                                                                                              NA
## 221                                                                                                                                                                                              NA
## 222                                                                                                                                                                                              NA
## 223                                                                                                                                                                                              NA
## 224                                                                                                                                                                                              NA
## 225                                                                                                                                                                                              NA
## 226                                                                                                                                                  http://pbs.twimg.com/media/EUIKaIQU0AEGvKe.jpg
## 227                                                                                                  http://pbs.twimg.com/media/EUFQTclWAAAfyb8.jpg, http://pbs.twimg.com/media/EUFQUTXWkAAd4Cp.jpg
## 228                                                                                                                                                                                              NA
## 229                                                                                                                                                                                              NA
## 230                                                                                                                                                                                              NA
## 231                                                                                                                                                                                              NA
## 232                                                                                                                                                  http://pbs.twimg.com/media/EUDyQQNWoAA1Vvp.jpg
## 233                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUJ7-31WoA0jmaJ.jpg
## 234                                                                                                                                                                                              NA
## 235                                                                                                                                                                                              NA
## 236                                                                                                                                                                                              NA
## 237                                                                                                                                                                                              NA
## 238                                                                                                                                                                                              NA
## 239                                                                                                                                                                                              NA
## 240                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUD4V-KWkAUxSdb.jpg
## 241                                                                                                                                                                                              NA
## 242                                                                                                                                                                                              NA
## 243                                                                                                                                                                                              NA
## 244                                                                                                                                                                                              NA
## 245                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUBk2FKU4AEt8Y0.jpg
## 246                                                                                                                                                                                              NA
## 247                                                                                                                                                  http://pbs.twimg.com/media/EUFHKtAU4AMdr40.jpg
## 248                                                                                                                                                                                              NA
## 249                                                                                                                                                                                              NA
## 250                                                                                                                                                                                              NA
## 251                                                                                                                                                                                              NA
## 252                                                                                                                                                                                              NA
## 253                                                                                                                                                                                              NA
## 254                                                                                                                                                                                              NA
## 255                                                                                                                                                                                              NA
## 256                                                                                                                                                                                              NA
## 257                                                                                                                                                                                              NA
## 258                                                                                                                                                                                              NA
## 259                                                                                                                                                                                              NA
## 260                                                                                                                                                                                              NA
## 261                                                                                                                                                                                              NA
## 262                                                                                                                                                  http://pbs.twimg.com/media/EUK9umEWAAU_b-u.jpg
## 263                                                                                                                                                                                              NA
## 264                                                                                                                                                                                              NA
## 265                                                                                                                                                  http://pbs.twimg.com/media/EUJjIjRWkAsQB6J.jpg
## 266                                                                                                                                                                                              NA
## 267                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243260503528558593/pu/img/vulGrbiKhnI2UtH8.jpg
## 268                                                                                                                                                  http://pbs.twimg.com/media/EUJkJRUWoAABq7K.jpg
## 269                                                                                                                                                                                              NA
## 270                                                                                                                                                                                              NA
## 271                                                                                                                                                                                              NA
## 272                                                                                                                                                                                              NA
## 273                                                                                                                                                                                              NA
## 274                                                                                                                                                                                              NA
## 275                                                                                                                                                                                              NA
## 276                                                                                                                                                  http://pbs.twimg.com/media/EUIeaMzWoAAeiYo.jpg
## 277                                                                                                                                                  http://pbs.twimg.com/media/EUEzRszXQAE-UXS.jpg
## 278                                                                                                                                                                                              NA
## 279                                                                                                                                                                                              NA
## 280                                                                                                                                                                                              NA
## 281                                                                                                                                                                                              NA
## 282                                                                                                                                                                                              NA
## 283                                                                                                                                                                                              NA
## 284                                                                                                                                                                                              NA
## 285                                                                                                                                                                                              NA
## 286                                                                                                                                                                                              NA
## 287                                                                                                                                                                                              NA
## 288                                                                                                                                                                                              NA
## 289                                                                                                                                                                                              NA
## 290                                                                                                                                                                                              NA
## 291                                                                                                                                                                                              NA
## 292                                                                                                                                                  http://pbs.twimg.com/media/EUJO6a4XQAEmFjd.jpg
## 293                                                                                                                                                                                              NA
## 294                                                                                                                                                  http://pbs.twimg.com/media/EUJEI95WkAMmiFu.jpg
## 295                                                                                                                                                                                              NA
## 296                                                                                                                                                                                              NA
## 297                                                                                                                                                                                              NA
## 298                                                                                                                                                  http://pbs.twimg.com/media/EUJQOaGXgAAvOWU.jpg
## 299                                                                                                                                                  http://pbs.twimg.com/media/EUEwftNWAAM-TjN.jpg
## 300                                                                                                                                                                                              NA
## 301                                                                                                                                                  http://pbs.twimg.com/media/EUIpSTVX0AEn8UG.jpg
## 302                                                                                                                                                  http://pbs.twimg.com/media/EUKuBh8XsAENIg8.jpg
## 303                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243672130870562818/pu/img/giaLi-cZXp2S4HHD.jpg
## 304                                                                                                                                                                                              NA
## 305                                                                                                                                                  http://pbs.twimg.com/media/EUL2CXwXgAAI5aj.jpg
## 306                                                                                                                                                                                              NA
## 307                                                                                                                                                                                              NA
## 308                                                                                                                                                  http://pbs.twimg.com/media/EUI0Pw1WoAEYSFd.jpg
## 309                                                                                                                                                                                              NA
## 310                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243269237944340480/pu/img/3lR-s10l4f-wCpPj.jpg
## 311                                                                                                                                                                                              NA
## 312                                                                                                                                                                                              NA
## 313                                                                                                                                                                                              NA
## 314                                                                                                                                                                                              NA
## 315                                                                                                                                                                                              NA
## 316                                                                                                                                                                                              NA
## 317                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243263229217910784/pu/img/jdIxXiKHWijiUamx.jpg
## 318                                                                                                                                                                                              NA
## 319                                                                                                                                                                                              NA
## 320                                                                                                                                                                                              NA
## 321                                                                                                                                                                                              NA
## 322                                                                                                                                                                                              NA
## 323                                                                                                                                                                                              NA
## 324                                                                                                                                                  http://pbs.twimg.com/media/EUIY0e0XQAEC3Zz.jpg
## 325                                                                                                                                                                                              NA
## 326                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243631667899781123/pu/img/tW-_ZaPEOzUByZgA.jpg
## 327                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243269783312830466/pu/img/zTeHavPtNNU0NxZ-.jpg
## 328                                                                                                                                                                                              NA
## 329                                                                                                                                                                                              NA
## 330                                                                                                                                                  http://pbs.twimg.com/media/EUD1eWKWsAEXt8u.jpg
## 331                                                                                                                                                                                              NA
## 332                                                                                                                                                                                              NA
## 333                                                                                                                                                                                              NA
## 334                                                                                                                                                                                              NA
## 335                                                                                                                                                                                              NA
## 336                                                                                                                                                                                              NA
## 337                                                                                                                                                                                              NA
## 338                                                                                                                                                                                              NA
## 339                                                                                                                                                  http://pbs.twimg.com/media/EUJWnqhX0AAp_to.jpg
## 340                                                                                                                                                                                              NA
## 341                                                                                                  http://pbs.twimg.com/media/EULK5K8WkAEB8yI.jpg, http://pbs.twimg.com/media/EULK5pdXQAUdZg6.jpg
## 342                                                                                                                                                                                              NA
## 343                                                                                                                                                  http://pbs.twimg.com/media/EUEaqPVWoAQiRaY.jpg
## 344                                                                                                                                                                                              NA
## 345                                                                                                                                                  http://pbs.twimg.com/media/EULlszkUwAEex0P.jpg
## 346                                                                                                                                                                                              NA
## 347                                                                                                                                                                                              NA
## 348                                                                                                                                                                                              NA
## 349                                                                                                                                                                                              NA
## 350                                                                                                                                                  http://pbs.twimg.com/media/EUJIOsEWsAEjEDF.jpg
## 351                                                                                                                                                                                              NA
## 352                                                                                                                                                                                              NA
## 353                                                                                                                                                                                              NA
## 354                                                                                                                                                                                              NA
## 355                                                                                                                                                  http://pbs.twimg.com/media/EUIY0NlXkAIskyE.jpg
## 356                                                                                                                                                  http://pbs.twimg.com/media/EUITyWHWAAI1XzB.jpg
## 357                                                                                                                                                                                              NA
## 358                                                                                                                                                  http://pbs.twimg.com/media/EULbSX_U4AE2h4_.jpg
## 359                                                                                                                                                                                              NA
## 360                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243255405842780162/pu/img/SOY9H8_6AGSNLyZh.jpg
## 361                                                                                                                                                                                              NA
## 362                                                                                                                                                                                              NA
## 363                                                                                                                                                  http://pbs.twimg.com/media/EUEu6QdUYAAbMi1.jpg
## 364                                                                                                                                                                                              NA
## 365                                                                                                                                                                                              NA
## 366                                                                                                                                                                                              NA
## 367                                                                                                                                                  http://pbs.twimg.com/media/EUJRsntXQAERkBC.jpg
## 368                                                                                                                                                                                              NA
## 369                                                                                                                                                                                              NA
## 370                                                                                                                                                                                              NA
## 371                                                                                                                                                  http://pbs.twimg.com/media/EUFkMWaUEAQOZ7b.jpg
## 372                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243268291298299905/pu/img/aRXEM5Xg-zunfrEo.jpg
## 373                                                                                                                                                  http://pbs.twimg.com/media/EUKS0DnXsAIQBkv.jpg
## 374                                                                                                                                                                                              NA
## 375                                                                                                                                                                                              NA
## 376                                                                                                                                                  http://pbs.twimg.com/media/EULz_K_WoAEa1VC.jpg
## 377                                                                                                                                                  http://pbs.twimg.com/media/EUIQZ0DXkAE7OwE.jpg
## 378                                                                                                                                                                                              NA
## 379                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUIJHKgWoAAtK-K.jpg
## 380                                                                                                  http://pbs.twimg.com/media/EUIUED3WkAIkgU6.jpg, http://pbs.twimg.com/media/EUIUtoTX0AYy9Kt.jpg
## 381                                                                                                                                                  http://pbs.twimg.com/media/EUKp5BuU8AI3A18.jpg
## 382                                                                                                                                                                                              NA
## 383                                                                                                                                                                                              NA
## 384                                                                                                                                                  http://pbs.twimg.com/media/EUKxURvU8AAxyXe.jpg
## 385                                                                                                                                                                                              NA
## 386                                                                                                                                                  http://pbs.twimg.com/media/EUL5flJXYAAurer.jpg
## 387                                                                                                                                                                                              NA
## 388                                                                                                                                                                                              NA
## 389                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUEKVEEWkAApqz9.jpg
## 390                                                                                                                                                  http://pbs.twimg.com/media/EUJSA8kXQAIuWzM.jpg
## 391                                                                                                                                                                                              NA
## 392                                                                                                                                                                                              NA
## 393                                                                                                                                                                                              NA
## 394                                                                                                                                                  http://pbs.twimg.com/media/EUIMLhjWAAIje2z.jpg
## 395                                                                                                                                                                                              NA
## 396                                                                                                                                                                                              NA
## 397                                                                                                                                                                                              NA
## 398                                                                                                                                                  http://pbs.twimg.com/media/EUE3f-XWoAE3yzQ.jpg
## 399                                                                                                                                                                                              NA
## 400                                                                                                                                                  http://pbs.twimg.com/media/EUJYkIcXQAAkE5k.jpg
## 401                                                                                                                                                  http://pbs.twimg.com/media/EUDZX-gXgAA2HEK.png
## 402                                                                                                                                                                                              NA
## 403                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243579851874983938/pu/img/A-UC1qRoXTDZW4eV.jpg
## 404                                                                                                                                                                                              NA
## 405                                                                                                                                                                                              NA
## 406                                                                                                                                                                                              NA
## 407                                                                                                                                                                                              NA
## 408                                                                                                                                                  http://pbs.twimg.com/media/EUDuqp-VAAEsCre.jpg
## 409                                                                                                                                                                                              NA
## 410                                                                                                                                                                                              NA
## 411                                                                                                                                                                                              NA
## 412                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243606765192785922/pu/img/pCfwfW8dLIhJ5OCJ.jpg
## 413                                                                                                                                                                                              NA
## 414                                                                                                                                                  http://pbs.twimg.com/media/EUDjykbXQAET2b6.jpg
## 415                                                                                                                                                                                              NA
## 416                                                                                                                                                                                              NA
## 417                                                                                                                                                  http://pbs.twimg.com/media/EUJldXIXkAIM47h.jpg
## 418                                                                                                  http://pbs.twimg.com/media/EUJhLUIVAAAgM5v.jpg, http://pbs.twimg.com/media/EUJhLUJU0AA8u_s.jpg
## 419                                                                                                                                                                                              NA
## 420                                                                                                                                                                                              NA
## 421                                                                                                                                                                                              NA
## 422                                                                                                                                                  http://pbs.twimg.com/media/EUED2p9VAAAl2iy.jpg
## 423                                                                                                                                                                                              NA
## 424                                                                                                                                                                                              NA
## 425                                                                                                           http://pbs.twimg.com/amplify_video_thumb/1243309953563209729/img/iJgHnQeVR60lpgca.jpg
## 426                                                                                                                                                                                              NA
## 427                                                                                                                                                                                              NA
## 428                                                                                                                                                                                              NA
## 429                                                                                                                                                                                              NA
## 430                                                                                                                                                                                              NA
## 431                                                                                                                                                                                              NA
## 432                                                                                                                                                                                              NA
## 433                                                                                                                                                                                              NA
## 434                                                                                                                                                                                              NA
## 435                                                                                                  http://pbs.twimg.com/media/EUDtI-NU8AAqMJR.jpg, http://pbs.twimg.com/media/EUDtI-sUwAAdPrQ.jpg
## 436                                                                                                                                                  http://pbs.twimg.com/media/EUDYHQDX0AM4OSc.jpg
## 437                                                                                                                                                                                              NA
## 438                                                                                                                                                                                              NA
## 439                                                                                                                                                  http://pbs.twimg.com/media/EUEMMgZUwAAv-V1.jpg
## 440                                                                                                                                                                                              NA
## 441                                                                                                                                                                                              NA
## 442                                                                                                                                                  http://pbs.twimg.com/media/EUIbawMWsAEUK59.jpg
## 443                                                                                                                                                                                              NA
## 444                                                                                                                                                                                              NA
## 445                                                                                                                                                                                              NA
## 446                                                                                                                                                                                              NA
## 447                                                                                                                                                                                              NA
## 448                                                                                                                                                                                              NA
## 449                                                                                                                                                                                              NA
## 450                                                                                                                                                  http://pbs.twimg.com/media/EUEgnqaXgAIH8Zy.jpg
## 451                                                                                                                                                                                              NA
## 452                                                                                                                                                                                              NA
## 453                                                                                                                                                                                              NA
## 454                                                                                                                                                                                              NA
## 455                                                                                                                                                                                              NA
## 456                                                                                                                                                                                              NA
## 457                                                                                                                                                                                              NA
## 458                                                                                                                                                                                              NA
## 459                                                                                                                                                                                              NA
## 460                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUDzF--XsAIOwRL.jpg
## 461                                                                                                                                                                                              NA
## 462                                                                                                                                                                                              NA
## 463                                                                                                                                                                                              NA
## 464                                                                                                                                                                                              NA
## 465                                                                                                                                                                                              NA
## 466                                                                                                                                                  http://pbs.twimg.com/media/EUJJRkXXYAIeT0I.png
## 467                                                                                                                                                                                              NA
## 468                                                                                                                                                  http://pbs.twimg.com/media/EUEcN5sX0AE8R9U.png
## 469                                                                                                                                                                                              NA
## 470                                                                                                                                                                                              NA
## 471                                                                                                                                                                                              NA
## 472                                                                                                                                                                                              NA
## 473                                                                                                                                                  http://pbs.twimg.com/media/EUFPevXUcAAcAFk.jpg
## 474                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243588135377911809/pu/img/z8rLOXXMplzMAE3y.jpg
## 475                                                                                                                                                                                              NA
## 476                                                                                                                                                                                              NA
## 477                                                                                                                                                                                              NA
## 478                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUI33DPXgAc-_a3.jpg
## 479                                                                                                                                                                                              NA
## 480                                                                                                                                                                                              NA
## 481                                                                                                                                                                                              NA
## 482                                                                                                                                                                                              NA
## 483                                                                                                                                                                                              NA
## 484                                                                                                                                                                                              NA
## 485                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243256894761897985/pu/img/ECvstQWwnSr1W69m.jpg
## 486                                                                                                                                                                                              NA
## 487                                                                                                                                                                                              NA
## 488                                                                                                                                                  http://pbs.twimg.com/media/EUEwcnHUUAAAh--.png
## 489                                                                                                                                                                                              NA
## 490                                                                                                                                                                                              NA
## 491                                                                                                                                                  http://pbs.twimg.com/media/EULl53FXgAAw52u.jpg
## 492                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243589280078934016/pu/img/GxOdLSJZ6rmFz3S6.jpg
## 493                                                                                                                                                                                              NA
## 494                                                                                                                                                  http://pbs.twimg.com/media/EUJeQVvUcAE_CYc.jpg
## 495                                                                                                                                                  http://pbs.twimg.com/media/EUERaWHXQAAFcvx.jpg
## 496                                                                                                                                                                                              NA
## 497                                                                                                                                                                                              NA
## 498                                                                                                                                                  http://pbs.twimg.com/media/EUDevIAXgAACzrX.jpg
## 499                                                                                                                                                  http://pbs.twimg.com/media/EUIr2L7XYAEWSKv.png
## 500                                                                                                                                                                                              NA
## 501                                                                                                                                                  http://pbs.twimg.com/media/EUDsXktXsAIoHX1.jpg
## 502                                                                                                                                                  http://pbs.twimg.com/media/EUDceB0X0AEfOVT.jpg
## 503                                                                                                                                                                                              NA
## 504                                                                                                                                                                                              NA
## 505                                                                                                                                                                                              NA
## 506                                                                                                                                                                                              NA
## 507                                                                                                                                                                                              NA
## 508                                                                                                                                                  http://pbs.twimg.com/media/EUEHSQxXsAA70GW.jpg
## 509                                                                                                                                                                                              NA
## 510                                                                                                                                                                                              NA
## 511                                                                                                                                                                                              NA
## 512                                                                                                                                                                                              NA
## 513                                                                                                                                                                                              NA
## 514                                                                                                                                                                                              NA
## 515                                                                                                                                                                                              NA
## 516                                                                                                                                                                                              NA
## 517                                                                                                                                                                                              NA
## 518                                                                                                                                                                                              NA
## 519                                                                                                                                                                                              NA
## 520                                                                                                                                                                                              NA
## 521                                                                                                                                                                                              NA
## 522                                                                                                                                                  http://pbs.twimg.com/media/EUEQKqrWsAMzQ7L.png
## 523                                                                                                                                                  http://pbs.twimg.com/media/EUKsDboX0AI2a6H.jpg
## 524                                                                                                                                                                                              NA
## 525                                                                                                                                                                                              NA
## 526                                                                                                                                                                                              NA
## 527                                                                                                                                                                                              NA
## 528                                                                                                                                                                                              NA
## 529                                                                                                                                                                                              NA
## 530                                                                                                                                                                                              NA
## 531                                                                                                                                                                                              NA
## 532                                                                                                                                                                                              NA
## 533                                                                                                                                                                                              NA
## 534                                                                                                                                                  http://pbs.twimg.com/media/EUIlSfPXgAchoIR.jpg
## 535                                                                                                                                                  http://pbs.twimg.com/media/EUJg7lXWsAAUBPS.jpg
## 536                                                                                                                                                                                              NA
## 537                                                                                                                                                                                              NA
## 538                                                                                                                                                                                              NA
## 539                                                                                                                                                                                              NA
## 540                                                                                                                                                                                              NA
## 541                                                                                                                                                                                              NA
## 542                                                                                                                                                                                              NA
## 543                                                                                                                                                                                              NA
## 544                                                                                                                                                                                              NA
## 545                                                                                                                                                                                              NA
## 546                                                                                                                                                                                              NA
## 547                                                                                                                                                                                              NA
## 548                                                                                                                                                  http://pbs.twimg.com/media/EULDDljX0AY3MbE.png
## 549                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243607238184484869/pu/img/-qdv1utGAEdgG080.jpg
## 550                                                                                                                                                                                              NA
## 551                                                                                                                                                                                              NA
## 552                                                                                                                                                                                              NA
## 553                                                                                                                                                                                              NA
## 554                                                                                                                                                                                              NA
## 555                                                                                                                                                                                              NA
## 556                                                                                                                                                                                              NA
## 557                                                                                                                                                                                              NA
## 558                                                                                                                                                                                              NA
## 559                                                                                                                                                  http://pbs.twimg.com/media/EUJsl7MXQAc0-FS.jpg
## 560                                                                                                                                                                                              NA
## 561                                                                                                                                                                                              NA
## 562                                                                                                                                                                                              NA
## 563                                                                                                                                                  http://pbs.twimg.com/media/EUIs3JyWsAYiyMj.jpg
## 564                                                                                                                                                  http://pbs.twimg.com/media/EUI_5HJWsAAcRrY.jpg
## 565                                                                                                                                                                                              NA
## 566                                                                                                                                                                                              NA
## 567                                                                                                                                                  http://pbs.twimg.com/media/EUFFBGdU8AARxBb.jpg
## 568                                                                                                                                                                                              NA
## 569                                                                                                                                                                                              NA
## 570                                                                                                                                                                                              NA
## 571                                                                                                                                                                                              NA
## 572                                                                                                                                                                                              NA
## 573                                                                                                                                                  http://pbs.twimg.com/media/EULFLDnUcAUSpsJ.jpg
## 574                                                                                                                                                  http://pbs.twimg.com/media/EUJXYF4UUAAf8fd.jpg
## 575                                                                                                                                                                                              NA
## 576                                                                                                                                                                                              NA
## 577                                                                                                                                                                                              NA
## 578                                                                                                                                                                                              NA
## 579                                                                                                                                                                                              NA
## 580                                                                                                                                                                                              NA
## 581                                                                                                                                                                                              NA
## 582                                                                                                                                                                                              NA
## 583                                                                                                                                                                                              NA
## 584                                                                                                                                                                                              NA
## 585                                                                                                                                                                                              NA
## 586                                                                                                                                                                                              NA
## 587                                                                                                                                                                                              NA
## 588                                                                                                                                                                                              NA
## 589                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUDtafPU0AAW1HY.jpg
## 590                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243309817214554114/pu/img/Q_55I8siCibk2y-7.jpg
## 591                                                                                                                                                                                              NA
## 592                                                                                                                                                                                              NA
## 593                                                                                                                                                                                              NA
## 594                                                                                                                                                                                              NA
## 595                                                                                                                                                                                              NA
## 596                                                                                                                                                                                              NA
## 597                                                                                                                                                                                              NA
## 598                                                                                                                                                  http://pbs.twimg.com/media/EUDhZUyX0AMnFV6.png
## 599                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243315283898650627/pu/img/CP2KpfaUM-H2TLYV.jpg
## 600                                                                                                                                                  http://pbs.twimg.com/media/EULvoT1XkAIGgVA.jpg
## 601                                                                                                                                                  http://pbs.twimg.com/media/EUKIXRpWkAIMmVZ.jpg
## 602                                                                                                                                                                                              NA
## 603                                                                                                                                                                                              NA
## 604                                                                                                                                                                                              NA
## 605                                                                                                                                                                                              NA
## 606                                                                                                                                                                                              NA
## 607                                                                                                                                                                                              NA
## 608                                                                                                                                                                                              NA
## 609                                                                                                                                                                                              NA
## 610                                                                                                                                                  http://pbs.twimg.com/media/EUEuiD6X0AAxHCQ.jpg
## 611                                                                                                                                                                                              NA
## 612                                                                                                                                                                                              NA
## 613                                                                                                                                                  http://pbs.twimg.com/media/EUILZBhXkAAJYis.png
## 614                                                                                                                                                                                              NA
## 615                                                                                                                                                  http://pbs.twimg.com/media/EUDwbVYWoAIPtGx.jpg
## 616                                                                                                                                                                                              NA
## 617                                                                                                                                                                                              NA
## 618                                                                                                                                                                                              NA
## 619                                                                                                                                                  http://pbs.twimg.com/media/EUFYpuAUMAA6Pct.jpg
## 620                                                                                                                                                                                              NA
## 621                                                                                                                                                  http://pbs.twimg.com/media/EUIJmdbUEAU0BO7.png
## 622                                                                                                                                                                                              NA
## 623                                                                                                                                                  http://pbs.twimg.com/media/EUJyroXWsAA5zv7.jpg
## 624                                                                                                                                                                                              NA
## 625                                                                                                                                                  http://pbs.twimg.com/media/EUE26HwXYAIEtJ-.jpg
## 626                                                                                                                                                                                              NA
## 627                                                                                                                                                                                              NA
## 628                                                                                                                                                  http://pbs.twimg.com/media/EUDWAXGXsAAwq0w.jpg
## 629                                                                                                                                                                                              NA
## 630                                                                                                                                                                                              NA
## 631                                                                                                                                                                                              NA
## 632                                                                                                                                                  http://pbs.twimg.com/media/EUDlWiMXsAE2PkB.jpg
## 633                                                                                                                                                                                              NA
## 634                                                                                                                                                  http://pbs.twimg.com/media/EUJgO0XXYAIbsP1.jpg
## 635                                                                                                                                                                                              NA
## 636                                                                                                                                                                                              NA
## 637                                                                                                                                                                                              NA
## 638                                                                                                                                                                                              NA
## 639                                                                                                                                                                                              NA
## 640                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUKYENxUUAA1USm.jpg
## 641                                                                                                  http://pbs.twimg.com/media/EULdjrBWAAADDY1.jpg, http://pbs.twimg.com/media/EULbSmaWAAAJWqr.jpg
## 642                                                                                                                                                                                              NA
## 643                                                                                                                                                                                              NA
## 644                                                                                                                                                                                              NA
## 645                                                                                                                                                                                              NA
## 646                                                                                                                                                                                              NA
## 647                                                                                                                                                                                              NA
## 648                                                                                                                                                                                              NA
## 649                                                                                                                                                                                              NA
## 650                                                                                                                                                                                              NA
## 651                                                                                                                                                                                              NA
## 652                                                                                                                                                  http://pbs.twimg.com/media/EUJMMhBXkAUCBpY.png
## 653                                                                                                  http://pbs.twimg.com/media/EUJfl4bXQAANCMC.jpg, http://pbs.twimg.com/media/EUJfmVFXQAcju5X.jpg
## 654                                                                                                                                                                                              NA
## 655                                                                                                                                                                                              NA
## 656                                                                                                                                                                                              NA
## 657                                                                                                                                                                                              NA
## 658                                                                                                                                                                                              NA
## 659                                                                                                                                                                                              NA
## 660                                                                                                                                                  http://pbs.twimg.com/media/EUKJMIRWsAQoFWv.jpg
## 661                                                                                                                                                                                              NA
## 662                                                                                                                                                                                              NA
## 663                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243382466632540169/pu/img/P7NXlioYb3YqtAPf.jpg
## 664                                                                                                                                                  http://pbs.twimg.com/media/EUESokRWoAUODLk.jpg
## 665                                                                                                                                                                                              NA
## 666                                                                                                                                                                                              NA
## 667                                                                                                                                                                                              NA
## 668                                                                                                                                                                                              NA
## 669                                                                                                                                                                                              NA
## 670                                                                                                                                                                                              NA
## 671                                                                                                                                                                                              NA
## 672                                                                                                                                                                                              NA
## 673                                                                                                                                                                                              NA
## 674                                                                                                                                                                                              NA
## 675                                                                                                                                                                                              NA
## 676                                                                                                                                                                                              NA
## 677                                                                                                                                                                                              NA
## 678                                                                                                                                                                                              NA
## 679                                                                                                                                                                                              NA
## 680                                                                                                                                                  http://pbs.twimg.com/media/EUDby0cWsAI7QGD.jpg
## 681                                                                                                                                                                                              NA
## 682                                                                                                                                                                                              NA
## 683                                                                                                                                                                                              NA
## 684                                                                                                                                                                                              NA
## 685                                                                                                                                                                                              NA
## 686                                                                                                                                                                                              NA
## 687                                                                                                                                                  http://pbs.twimg.com/media/EUIRX9uXsAIqw0x.jpg
## 688                                                                                                  http://pbs.twimg.com/media/EUDog2KU8AU7iTz.jpg, http://pbs.twimg.com/media/EUDog2MUcAAHDu4.jpg
## 689                                                                                                                                                                                              NA
## 690                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243269813302177792/pu/img/aohugMNhMdbYdoAF.jpg
## 691                                                                                                                                                  http://pbs.twimg.com/media/EUEGyy7XsAAXbSE.jpg
## 692                                                                                                                                                                                              NA
## 693                                                                                                                                                                                              NA
## 694                                                                                                                                                                                              NA
## 695                                                                                                                                                                                              NA
## 696                                                                                                                                                                                              NA
## 697                                                                                                                                                  http://pbs.twimg.com/media/EUJFJo9X0AExhD-.jpg
## 698                                                                                                                                                                                              NA
## 699                                                                                                                                                                                              NA
## 700                                                                                                                                                                                              NA
## 701                                                                                                                                                                                              NA
## 702                                                                                                                                                                                              NA
## 703                                                                                                                                                                                              NA
## 704                                                                                                                                                                                              NA
## 705                                                                                                                                                                                              NA
## 706                                                                                                                                                  http://pbs.twimg.com/media/EUJTEiJXkAEy89C.jpg
## 707                                                                                                                                                                                              NA
## 708                                                                                                                                                                                              NA
## 709                                                                                                                                                                                              NA
## 710                                                                                                                                                                                              NA
## 711                                                                                                                                                                                              NA
## 712                                                                                                                                                                                              NA
## 713                                                                                                                                                                                              NA
## 714                                                                                                                                                  http://pbs.twimg.com/media/EUEuEsVWoAE-jvC.jpg
## 715                                                                                                                                                                                              NA
## 716                                                                                                                                                                                              NA
## 717                                                                                                                                                  http://pbs.twimg.com/media/EUE5Z-JUEAAEafW.jpg
## 718                                                                                                                                                                                              NA
## 719                                                                                                                                                                                              NA
## 720                                                                                                                                                                                              NA
## 721                                                                                                                                                                                              NA
## 722                                                                                                                                                  http://pbs.twimg.com/media/EUKkGo9UYAA5o4M.jpg
## 723                                                                                                                                                                                              NA
## 724                                                                                                                                                                                              NA
## 725                                                                                                                                                                                              NA
## 726                                                                                                                                                  http://pbs.twimg.com/media/EUJiIs5WsAICsfv.jpg
## 727                                                                                                                                                                                              NA
## 728                                                                                                                                                                                              NA
## 729                                                                                                                                                                                              NA
## 730                                                                                                                                                                                              NA
## 731                                                                                                                                                                                              NA
## 732                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUL0oEFWAAYTl5x.jpg
## 733                                                                                                                                                                                              NA
## 734                                                                                                                                                                                              NA
## 735                                                                                                                                                                                              NA
## 736                                                                                                                                                                                              NA
## 737                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243707955352133633/pu/img/FA0VxtoDYAZaNLpA.jpg
## 738                                                                                                                                                  http://pbs.twimg.com/media/ET_R07cWAAkGHhY.jpg
## 739                                                                                                                                                                                              NA
## 740                                                                                                                                                  http://pbs.twimg.com/media/EUIubcKXkAIvBlG.jpg
## 741                                                                                                                                                                                              NA
## 742                                                                                                                                                  http://pbs.twimg.com/media/EUDX3Y1XQAAQ-hx.jpg
## 743                                                                                                                                                  http://pbs.twimg.com/media/EULYgqRXkAAATOy.jpg
## 744                                                                                                                                                                                              NA
## 745                                                                                                                                                                                              NA
## 746                                                                                                                                                                                              NA
## 747                                                                                                                                                                                              NA
## 748                                                                                                                                                                                              NA
## 749                                                                                                                                                                                              NA
## 750                                                                                                                                                                                              NA
## 751                                                                                                                                                  http://pbs.twimg.com/media/EUEepDEU4AEcq2l.jpg
## 752                                                                                                                                                  http://pbs.twimg.com/media/EUIrRomXsAUmb7k.jpg
## 753                                                                                                                                                  http://pbs.twimg.com/media/EUFrm3SUMAUB-RM.jpg
## 754                                                                                                                                                  http://pbs.twimg.com/media/EUEOZaoXQAEJwXS.jpg
## 755                                                                                                                                                  http://pbs.twimg.com/media/EUJJu0MX0AAucwS.jpg
## 756                                                                                                                                                  http://pbs.twimg.com/media/EULNPLTXQAAFT8i.jpg
## 757                                                                                                                                                  http://pbs.twimg.com/media/EUEKm5AWoAAmPq0.jpg
## 758                                                                                                                                                                                              NA
## 759                                                                                                                                                                                              NA
## 760                                                                                                                                                                                              NA
## 761                                                                                                                                                                                              NA
## 762                                                                                                                                                                                              NA
## 763                                                                                                                                                                                              NA
## 764                                                                                                                                                                                              NA
## 765                                                                                                                                                                                              NA
## 766                                                                                                                                                                                              NA
## 767                                                                                                                                                                                              NA
## 768                                                                                                                                                                                              NA
## 769                                                                                                                                                                                              NA
## 770                                                                                                                                                                                              NA
## 771                                                                                                                                                                                              NA
## 772                                                                                                                                                  http://pbs.twimg.com/media/EUId40tWoAEWtVX.jpg
## 773                                                                                                                                                  http://pbs.twimg.com/media/EUJFFIhWoAAJ4H4.jpg
## 774                                                                                                                                                  http://pbs.twimg.com/media/EUI7MHYXsAQMbGv.png
## 775                                                                                                                                                                                              NA
## 776                                                                                                                                                                                              NA
## 777                                                                                                                                                                                              NA
## 778                                                                                                                                                                                              NA
## 779                                                                                                                                                  http://pbs.twimg.com/media/EULMnAYWsAU81mr.jpg
## 780                                                                                                                                                  http://pbs.twimg.com/media/EUIWyauX0AE2VOZ.jpg
## 781                                                                                                                                                                                              NA
## 782                                                                                                                                                                                              NA
## 783                                                                                                                                                                                              NA
## 784                                                  http://pbs.twimg.com/media/EULnVVPVAAAj8j6.jpg, http://pbs.twimg.com/media/EULnVV4UYAAumW0.jpg, http://pbs.twimg.com/media/EULnVV3UEAIZbgt.jpg
## 785                                                                                                                                                  http://pbs.twimg.com/media/EUDUoaDWoAALgpq.jpg
## 786                                                                                                                                                  http://pbs.twimg.com/media/EUJeeSdXYAIy1ci.jpg
## 787                                                                                                                                                                                              NA
## 788                                                                                                                                                                                              NA
## 789                                                                                                  http://pbs.twimg.com/media/EUJk4nZXkAAdP6Q.jpg, http://pbs.twimg.com/media/EUJk4nKXYAAkB-J.jpg
## 790                                                                                                                                                                                              NA
## 791                                                                                                                                                                                              NA
## 792                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUIv8iOUcAA0XvH.jpg
## 793                                                                                                                                                                                              NA
## 794                                                                                                                                                                                              NA
## 795                                                                                                                                                                                              NA
## 796                                                                                                                                                                                              NA
## 797                                                                                                                                                                                              NA
## 798                                                                                                                                                                                              NA
## 799                                                                                                                                                                                              NA
## 800                                                                                                                                                                                              NA
## 801                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUJ2EE7U8AEjmuc.jpg
## 802                                                                                                                                                  http://pbs.twimg.com/media/EUDcN41WsAEQsUz.jpg
## 803                                                                                                                                                                                              NA
## 804                                                                                                                                                                                              NA
## 805                                                                                                                                                                                              NA
## 806                                                                                                                                                                                              NA
## 807                                                                                                                                                                                              NA
## 808                                                                                                                                                                                              NA
## 809                                                                                                                                                                                              NA
## 810                                                                                                                                                                                              NA
## 811                                                  http://pbs.twimg.com/media/EUE88baXgAAa_AC.jpg, http://pbs.twimg.com/media/EUE88bZXYAYAQqQ.jpg, http://pbs.twimg.com/media/EUE88bbWkAAakuy.jpg
## 812                                                                                                                                                                                              NA
## 813                                                                                                                                                                                              NA
## 814                                                                                                                                                                                              NA
## 815                                                                                                                                                  http://pbs.twimg.com/media/EUJbMEqWkAA4XPD.jpg
## 816                                                                                                                                                                                              NA
## 817                                                                                                  http://pbs.twimg.com/media/EUDwjtgXYAA8M5S.jpg, http://pbs.twimg.com/media/EUDwlKeWsAE6P5b.jpg
## 818                                                                                                                                                                                              NA
## 819                                                                                                                                                  http://pbs.twimg.com/media/EUFWOveWsAEdw6-.jpg
## 820                                                                                                                                                                                              NA
## 821                                                                                                                                                                                              NA
## 822                                                                                                                                                  http://pbs.twimg.com/media/EUDbAzrXsAEd77t.jpg
## 823                                                                                                                                                                                              NA
## 824                                                                                                                                                  http://pbs.twimg.com/media/EUJ-_ogUcAEEBnp.jpg
## 825                                                                                                                                                                                              NA
## 826                                                                                                                                                  http://pbs.twimg.com/media/EUFpN7DU8AAAPRf.jpg
## 827                                                                                                                                                                                              NA
## 828                                                                                                                                                                                              NA
## 829                                                                                                                                                                                              NA
## 830                                                                                                                                                                                              NA
## 831  http://pbs.twimg.com/media/EUL3t19UUAAhY4W.jpg, http://pbs.twimg.com/media/EUL3t1-UUAIXk9g.jpg, http://pbs.twimg.com/media/EUL3t2dVAAAJvXN.jpg, http://pbs.twimg.com/media/EUL3t4VUwAAWZkV.jpg
## 832                                                                                                                                                                                              NA
## 833                                                                                                                                                                                              NA
## 834                                                                                                                                                                                              NA
## 835                                                                                                                                                                                              NA
## 836                                                                                                                                                  http://pbs.twimg.com/media/EUKwujEXQAIBuMh.jpg
## 837                                                                                                                                                                                              NA
## 838                                                                                                                                                                                              NA
## 839                                                                                                                                                                                              NA
## 840                                                                                                                                                                                              NA
## 841                                                                                                                                                                                              NA
## 842                                                                                                                                                                                              NA
## 843                                                                                                                                                                                              NA
## 844                                                                                                                                                                                              NA
## 845                                                                                                                                                                                              NA
## 846                                                                                                                                                                                              NA
## 847                                                                                                                                                                                              NA
## 848                                                                                                                                                                                              NA
## 849                                                                                                                                                                                              NA
## 850                                                                                                                                                                                              NA
## 851                                                                                                                                                  http://pbs.twimg.com/media/EUL3jBlXYAA8jR_.jpg
## 852                                                                                                                                                                                              NA
## 853                                                                                                                                                                                              NA
## 854                                                                                                                                                                                              NA
## 855                                                                                                                                                                                              NA
## 856                                                                                                                                                                                              NA
## 857                                                                                                                                                                                              NA
## 858                                                                                                                                                  http://pbs.twimg.com/media/EUD97wYWAAMh81K.jpg
## 859                                                                                                                                                                                              NA
## 860                                                                                                                                                  http://pbs.twimg.com/media/EULbv5sXkAYuxOP.jpg
## 861                                                                                                                                                                                              NA
## 862                                                                                                                                                                                              NA
## 863                                                                                                                                                                                              NA
## 864                                                                                                                                                                                              NA
## 865                                                                                                                                                  http://pbs.twimg.com/media/EUJmaQhXkAA_COW.jpg
## 866                                                                                                                                                                                              NA
## 867                                                                                                                                                  http://pbs.twimg.com/media/EUDUGjtX0AArkzL.jpg
## 868                                                                                                                                                                                              NA
## 869                                                                                                                                                                                              NA
## 870                                                                                                                                                                                              NA
## 871                                                                                                                                                                                              NA
## 872                                                                                                                                                                                              NA
## 873                                                                                                                                                                                              NA
## 874                                                                                                                                                                                              NA
## 875                                                                                                                                                                                              NA
## 876                                                                                                                                                                                              NA
## 877                                                                                                                                                                                              NA
## 878                                                                                                                                                                                              NA
## 879                                                                                                                                                                                              NA
## 880                                                                                                                                                                                              NA
## 881                                                                                                                                                                                              NA
## 882                                                                                                                                                                                              NA
## 883                                                                                                                                                                                              NA
## 884                                                                                                                                                                                              NA
## 885                                                                                                                                                                                              NA
## 886                                                                                                                                                  http://pbs.twimg.com/media/EUDjfXRWkAI5gJa.jpg
## 887                                                                                                                                                                                              NA
## 888                                                                                                                                                                                              NA
## 889                                                                                                                                                                                              NA
## 890                                                                                                                                                  http://pbs.twimg.com/media/EUDovReWsAQC-Ok.jpg
## 891                                                                                                                                                                                              NA
## 892                                                                                                                                                                                              NA
## 893                                                                                                                                                  http://pbs.twimg.com/media/EUDRJUJWoAAZcl6.jpg
## 894                                                                                                                                                  http://pbs.twimg.com/media/EUC2zOcUcAA1jpv.jpg
## 895                                                                                                                                                                                              NA
## 896                                                                                                                                                                                              NA
## 897                                                                                                                                                                                              NA
## 898                                                                                                                                                  http://pbs.twimg.com/media/EUEVL03WkAAe-h0.jpg
## 899                                                                                                                                                                                              NA
## 900                                                                                                                                                                                              NA
## 901                                                                                                                                                                                              NA
## 902                                                                                                                                                  http://pbs.twimg.com/media/EULLBXdUwAABrGD.jpg
## 903                                                                                                                                                                                              NA
## 904                                                                                                                                                  http://pbs.twimg.com/media/EUJMKTBWkAcbrJN.jpg
## 905                                                                                                                                                                                              NA
## 906                                                                                                                                                                                              NA
## 907                                                                                                                                                                                              NA
## 908                                                                                                                                                  http://pbs.twimg.com/media/EUINnMLX0AQ9mlf.jpg
## 909                                                                                                                                                                                              NA
## 910                                                                                                                                                                                              NA
## 911                                                                                                                                                                                              NA
## 912                                                                                                                                                                                              NA
## 913                                                                                                                                                                                              NA
## 914                                                                                                                                                                                              NA
## 915                                                                                                                                                  http://pbs.twimg.com/media/EUJZI-7WsAMsv1G.jpg
## 916  http://pbs.twimg.com/media/EUFjwejU0AIor-9.jpg, http://pbs.twimg.com/media/EUFjwe1U0AIqAJH.jpg, http://pbs.twimg.com/media/EUFjweiU0A8hhbY.jpg, http://pbs.twimg.com/media/EUFjweoU8AM0b6a.jpg
## 917                                                                                                                                                                                              NA
## 918                                                                                                                                                                                              NA
## 919                                                                                                                                                                                              NA
## 920                                                                                                                                                                                              NA
## 921                                                                                                                                                                                              NA
## 922                                                                                                                                                                                              NA
## 923                                                                                                                                                                                              NA
## 924                                                                                                                                                                                              NA
## 925                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243227929695453184/pu/img/HLMsE50BTKQQdnxs.jpg
## 926                                                                                                                                                                                              NA
## 927                                                                                                                                                                                              NA
## 928                                                                                                                                                  http://pbs.twimg.com/media/EUIfD0TXsAA9UGY.jpg
## 929                                                                                                  http://pbs.twimg.com/media/EUJNme2WkAEYVoc.jpg, http://pbs.twimg.com/media/EUJNme0XYAA9z4Y.jpg
## 930                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243377446503600129/pu/img/rIpdtXBnishRmvne.jpg
## 931                                                                                                                                                                                              NA
## 932                                                                                                                                                                                              NA
## 933                                                                                                                                                                                              NA
## 934                                                  http://pbs.twimg.com/media/EULmUpzXkAI6lJe.jpg, http://pbs.twimg.com/media/EULmVQbXQAEiOq0.jpg, http://pbs.twimg.com/media/EULmVyLWkAAAJzX.jpg
## 935                                                                                                                                                                                              NA
## 936                                                                                                                                                                                              NA
## 937                                                                                                                                                  http://pbs.twimg.com/media/EUJ7rjVXQAEF1wN.jpg
## 938                                                                                                                                                                                              NA
## 939                                                                                                                                                                                              NA
## 940                                                                                                                                                  http://pbs.twimg.com/media/EUDX9gLWoAEaUag.jpg
## 941                                                                                                                                                  http://pbs.twimg.com/media/EUEDCZLWsAI6boS.jpg
## 942                                                                                                                                                                                              NA
## 943                                                                                                                                                                                              NA
## 944                                                                                                                                                                                              NA
## 945                                                                                                                                                  http://pbs.twimg.com/media/EUDm7wHXYAQF7zW.jpg
## 946                                                                                                                                                                                              NA
## 947                                                                                                                                                  http://pbs.twimg.com/media/EUKgqP9UMAchqj4.jpg
## 948                                                                                                         http://pbs.twimg.com/ext_tw_video_thumb/1243305808651116544/pu/img/7yAilq6gXWtkFHpz.jpg
## 949                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUFLi8_XkAE0228.jpg
## 950                                                                                                                                                                                              NA
## 951                                                                                                                                                                                              NA
## 952                                                                                                                                                  http://pbs.twimg.com/media/EUDs4HkXQAEWxw-.jpg
## 953                                                                                                                                                  http://pbs.twimg.com/media/EUJJC3SWAAMpb8u.jpg
## 954                                                                                                                                                                                              NA
## 955                                                                                                                                                                                              NA
## 956                                                                                                                                                  http://pbs.twimg.com/media/EUERIUuWkAAsSDP.png
## 957                                                  http://pbs.twimg.com/media/EUIV6a6WsAEZU08.jpg, http://pbs.twimg.com/media/EUIV6oqXgAc9-6y.jpg, http://pbs.twimg.com/media/EUIV60MXkAcHx0e.jpg
## 958                                                                                                                                                                                              NA
## 959                                                                                                                                                                                              NA
## 960                                                                                                                                                                                              NA
## 961                                                                                                                                                                                              NA
## 962                                                                                                                                                                                              NA
## 963                                                                                                                                                                                              NA
## 964                                                                                                                                                                                              NA
## 965                                                                                                                                                  http://pbs.twimg.com/media/EUDSAsRUwAAq2A0.jpg
## 966                                                                                                                                                                                              NA
## 967                                                                                                                                                                                              NA
## 968                                                                                                                                                                                              NA
## 969                                                                                                                                                                                              NA
## 970                                                                                                                                                                                              NA
## 971                                                                                                                                                                                              NA
## 972                                                                                                                                                                                              NA
## 973                                                                                                                                                  http://pbs.twimg.com/media/EUEhpB7WAAwzr19.jpg
## 974                                                                                                                                                                                              NA
## 975                                                                                                                                                                                              NA
## 976                                                                                                                                                                                              NA
## 977                                                                                                                                                                                              NA
## 978                                                                                                                                                                                              NA
## 979                                                                                                                                                                                              NA
## 980                                                                                                                                                                                              NA
## 981                                                                                                                                      http://pbs.twimg.com/tweet_video_thumb/EUEyYlRXgAEW75e.jpg
## 982                                                                                                                                                                                              NA
## 983                                                                                                                                                                                              NA
## 984                                                                                                                                                                                              NA
## 985                                                                                                                                                                                              NA
## 986                                                                                                                                                                                              NA
## 987                                                                                                                                                                                              NA
## 988                                                                                                                                                                                              NA
## 989                                                                                                                                                                                              NA
## 990                                                                                                                                                                                              NA
## 991                                                                                                                                                                                              NA
## 992                                                                                                                                                                                              NA
## 993                                                                                                                                                  http://pbs.twimg.com/media/EUI3mvJXgAEuHBN.jpg
## 994                                                                                                                                                                                              NA
## 995                                                                                                                                                                                              NA
## 996                                                                                                                                                                                              NA
## 997                                                                                                                                                  http://pbs.twimg.com/media/EUIgZp5WAAI_E3C.png
## 998                                                                                                                                                  http://pbs.twimg.com/media/EUEVR6nWoAASJYH.jpg
## 999                                                                                                                                                                                              NA
## 1000                                                                                                                                                                                             NA
## 1001                                                                                                                                                                                             NA
## 1002                                                                                                                                                                                             NA
## 1003                                                                                                                                                                                             NA
## 1004                                                                                                                                                                                             NA
## 1005                                                                                                                                                                                             NA
## 1006                                                                                                                                                                                             NA
## 1007                                                                                                                                                                                             NA
## 1008                                                                                                                                                                                             NA
## 1009                                                                                                                                                                                             NA
## 1010                                                                                                                                                 http://pbs.twimg.com/media/EUJUUabVAAA9Q9l.jpg
## 1011                                                                                                                                                                                             NA
## 1012                                                                                                        http://pbs.twimg.com/ext_tw_video_thumb/1243732671806742528/pu/img/sRGiShA1hJm5UgI7.jpg
## 1013                                                                                                                                     http://pbs.twimg.com/tweet_video_thumb/EUJRwGGUYAAqi69.jpg
## 1014                                                                                                                                                 http://pbs.twimg.com/media/EUKp01lWkAEbT6h.jpg
## 1015                                                                                                                                                 http://pbs.twimg.com/media/EUEBjMlXgAYA8iA.jpg
## 1016                                                                                                                                                                                             NA
## 1017                                                                                                                                                                                             NA
## 1018                                                                                                                                                                                             NA
## 1019                                                                                                                                                                                             NA
## 1020                                                                                                                                                                                             NA
## 1021                                                                                                                                                                                             NA
## 1022                                                                                                                                                 http://pbs.twimg.com/media/EUFObXbWAAAjByS.jpg
## 1023                                                                                                                                                 http://pbs.twimg.com/media/EUIcZm3XgAI_oeL.jpg
## 1024                                                                                                                                                                                             NA
## 1025                                                                                                                                                                                             NA
## 1026                                                                                                                                                                                             NA
## 1027                                                                                                                                                                                             NA
## 1028                                                                                                                                                                                             NA
## 1029                                                                                                                                                                                             NA
## 1030                                                                                                                                                                                             NA
## 1031                                                                                                                                                                                             NA
## 1032                                                                                                                                                                                             NA
## 1033                                                                                                                                                                                             NA
## 1034                                                                                                                                                                                             NA
## 1035                                                                                                                                                                                             NA
## 1036                                                                                                                                                 http://pbs.twimg.com/media/EULyPo3XQAApuow.jpg
## 1037                                                                                                                                                                                             NA
## 1038                                                                                                                                                 http://pbs.twimg.com/media/EUIlsTTXgAE0qbP.jpg
## 1039                                                                                                                                                                                             NA
## 1040                                                                                                                                                                                             NA
## 1041                                                                                                                                                                                             NA
## 1042                                                                                                                                                                                             NA
## 1043                                                                                                                                                 http://pbs.twimg.com/media/EUEPI6kWAAcdOXm.jpg
## 1044                                                                                                                                                                                             NA
## 1045                                                                                                                                                                                             NA
## 1046                                                                                                                                                                                             NA
## 1047                                                                                                                                                                                             NA
## 1048                                                                                                                                                                                             NA
## 1049                                                                                                                                                                                             NA
## 1050                                                                                                                                                                                             NA
## 1051                                                                                                                                                                                             NA
## 1052                                                                                                                                                                                             NA
## 1053                                                                                                                                                 http://pbs.twimg.com/media/EUJdhoBXkAUY88D.jpg
## 1054                                                                                                                                     http://pbs.twimg.com/tweet_video_thumb/EUJLHRuXkAAwdgj.jpg
## 1055                                                                                                                                                                                             NA
## 1056                                                                                                                                                                                             NA
## 1057                                                                                                                                                                                             NA
## 1058                                                                                                                                                                                             NA
## 1059                                                                                                                                                                                             NA
## 1060                                                                                                                                                                                             NA
## 1061                                                                                                                                                                                             NA
## 1062                                                                                                                                                                                             NA
## 1063                                                                                                                                                                                             NA
## 1064                                                                                                                                                                                             NA
## 1065                                                                                                                                                                                             NA
## 1066                                                                                                                                                                                             NA
## 1067                                                                                                                                     http://pbs.twimg.com/tweet_video_thumb/EUDsCcMWkAEzohZ.jpg
## 1068                                                                                                                                                                                             NA
## 1069                                                                                                                                                                                             NA
## 1070                                                                                                                                                                                             NA
## 1071                                                                                                                                                                                             NA
## 1072                                                                                                                                                                                             NA
## 1073                                                                                                                                                                                             NA
## 1074                                                                                                                                                                                             NA
## 1075                                                                                                                                                                                             NA
## 1076                                                                                                                                                                                             NA
## 1077                                                                                                                                                                                             NA
## 1078                                                                                                                                                                                             NA
## 1079                                                                                                                                                                                             NA
## 1080                                                                                                                                                                                             NA
## 1081                                                                                                                                     http://pbs.twimg.com/tweet_video_thumb/EUEfwoYXsAAQMQV.jpg
## 1082                                                                                                                                                 http://pbs.twimg.com/media/EUK2EtXWsAA2iPK.jpg
## 1083                                                                                                                                                                                             NA
## 1084                                                                                                                                                                                             NA
## 1085                                                                                                                                                                                             NA
## 1086                                                                                                                                                                                             NA
## 1087                                                                                                                                                                                             NA
## 1088 http://pbs.twimg.com/media/EUKyaAbU0AE2dG6.jpg, http://pbs.twimg.com/media/EUKyaAaVAAEagMU.jpg, http://pbs.twimg.com/media/EUKyaAbVAAEAZm0.jpg, http://pbs.twimg.com/media/EUKyaAbU8AAlnIE.jpg
## 1089                                                                                                                                                                                             NA
## 1090                                                                                                                                                                                             NA
## 1091                                                                                                                                                                                             NA
## 1092                                                                                                                                                                                             NA
## 1093                                                                                                                                                                                             NA
## 1094                                                                                                                                                                                             NA
## 1095                                                                                                                                                                                             NA
## 1096                                                                                                                                                                                             NA
## 1097                                                                                                                                                                                             NA
## 1098                                                                                                                                                                                             NA
## 1099                                                                                                                                                                                             NA
## 1100                                                                                                                                                 http://pbs.twimg.com/media/EUI9Gf5XYAAFxuB.jpg
## 1101                                                                                                                                                                                             NA
## 1102                                                                                                                                                 http://pbs.twimg.com/media/EUJOJl5WAAE0QMq.jpg
## 1103                                                                                                                                                                                             NA
## 1104                                                                                                                                                                                             NA
## 1105                                                                                                                                                                                             NA
## 1106                                                                                                                                                                                             NA
## 1107                                                                                                                                                                                             NA
## 1108                                                                                                                                                                                             NA
## 1109                                                                                                                                                                                             NA
## 1110                                                                                                                                                                                             NA
## 1111                                                                                                                                                                                             NA
##                                                                                          ext_media_t.co
## 1                                                                                                    NA
## 2                                                                                                    NA
## 3                                                                                                    NA
## 4                                                                                                    NA
## 5                                                                                                    NA
## 6                                                                                                    NA
## 7                                                                                                    NA
## 8                                                                                                    NA
## 9                                                                                                    NA
## 10                                                                                                   NA
## 11                                                                              https://t.co/AjrMprEZYA
## 12                                                                              https://t.co/RRlalxxGl1
## 13                                                                                                   NA
## 14                                                                                                   NA
## 15                                                                                                   NA
## 16                                                                                                   NA
## 17                                                                              https://t.co/8rr4aG6IZ7
## 18                                                                                                   NA
## 19                                                                                                   NA
## 20                                                                                                   NA
## 21                                                                                                   NA
## 22                                                                                                   NA
## 23                                                                                                   NA
## 24                                                                                                   NA
## 25                                                                                                   NA
## 26                                                                                                   NA
## 27                                                                              https://t.co/y4REXp8XAj
## 28                                                                              https://t.co/3R3CFoA1kc
## 29                                                                                                   NA
## 30                                                                                                   NA
## 31                                                                                                   NA
## 32                                                                                                   NA
## 33                                                                              https://t.co/de4psxyTNq
## 34                                                                                                   NA
## 35                                                                                                   NA
## 36                                                                                                   NA
## 37                                                                              https://t.co/zcU9Q0S1IT
## 38                                                                              https://t.co/krtFLaIsap
## 39                                                                                                   NA
## 40                                                                                                   NA
## 41                                                                                                   NA
## 42                                                                                                   NA
## 43                                                                                                   NA
## 44                                                                                                   NA
## 45                                                                                                   NA
## 46                                                                              https://t.co/KSWprgXAC2
## 47                                                                                                   NA
## 48                                                                                                   NA
## 49   https://t.co/VhuirS7Esq, https://t.co/VhuirS7Esq, https://t.co/VhuirS7Esq, https://t.co/VhuirS7Esq
## 50                                                                                                   NA
## 51                                                                                                   NA
## 52                                                                                                   NA
## 53                                                                                                   NA
## 54                                                                              https://t.co/5z3YX2PzVP
## 55                                                                                                   NA
## 56                                                                                                   NA
## 57                                                                                                   NA
## 58                                                                                                   NA
## 59                                                                                                   NA
## 60                                                                                                   NA
## 61                                                                              https://t.co/iNNkAJRW4d
## 62                                                                                                   NA
## 63                                                                                                   NA
## 64                                                                                                   NA
## 65                                                                                                   NA
## 66                                                                                                   NA
## 67                                                                              https://t.co/yvuAuNxgnY
## 68                                                                                                   NA
## 69                                                                              https://t.co/GUH37mtpYB
## 70                                                                                                   NA
## 71                                                                              https://t.co/FFchjBpieW
## 72                                                                                                   NA
## 73                                                                              https://t.co/sr778BlgJv
## 74                                                                                                   NA
## 75                                                                                                   NA
## 76                                                                              https://t.co/PYsuhwicZZ
## 77                                                                                                   NA
## 78                                                                              https://t.co/L6JhtAKxlU
## 79                                                                              https://t.co/fpjn2FX1tD
## 80                                                                                                   NA
## 81                                                                              https://t.co/LmwDRM7vn7
## 82                                                                                                   NA
## 83                                                                                                   NA
## 84                                                                                                   NA
## 85                                                                              https://t.co/J0QIT8T3Y4
## 86                                                                                                   NA
## 87                                                                                                   NA
## 88                                                                              https://t.co/5ZlQ5s7NYz
## 89                                                                              https://t.co/SkSwZ62vkV
## 90                                                                                                   NA
## 91                                                                                                   NA
## 92                                                                                                   NA
## 93                                                                              https://t.co/6Zylggaa62
## 94                                                                                                   NA
## 95                                                                                                   NA
## 96                                                                              https://t.co/rk1DCFluX1
## 97                                                                              https://t.co/jmeN5x2csK
## 98                                                                              https://t.co/DcfecA3aFl
## 99                                                                              https://t.co/XBHt1BhPJr
## 100                                                                             https://t.co/Di8otjSMXJ
## 101                                                                             https://t.co/v41CuZqlmt
## 102                                                                                                  NA
## 103                                                                                                  NA
## 104                                                                                                  NA
## 105                                                                                                  NA
## 106                                                                                                  NA
## 107                                                                             https://t.co/uUXVWRqqVO
## 108                                                                                                  NA
## 109                                                                                                  NA
## 110                                                                                                  NA
## 111                                                                                                  NA
## 112                                                    https://t.co/67AppPJ6eA, https://t.co/67AppPJ6eA
## 113                                                                                                  NA
## 114                                                                                                  NA
## 115                                                                             https://t.co/GqG2RJircj
## 116                                                                             https://t.co/yTva4mX2D7
## 117                                                                                                  NA
## 118                                                                             https://t.co/hqrUmpzp25
## 119                                                                                                  NA
## 120                                                                                                  NA
## 121                                                                                                  NA
## 122                                                                                                  NA
## 123                                                                                                  NA
## 124                                                                             https://t.co/uW720zoAjr
## 125                                                                                                  NA
## 126                                                                             https://t.co/IYvIg4DimG
## 127                                                                                                  NA
## 128                                                                             https://t.co/10hFmHmEre
## 129                                                                                                  NA
## 130                                                                                                  NA
## 131                                                                                                  NA
## 132                                                                                                  NA
## 133                                                                                                  NA
## 134                                                                                                  NA
## 135  https://t.co/MnNwSAPpjZ, https://t.co/MnNwSAPpjZ, https://t.co/MnNwSAPpjZ, https://t.co/MnNwSAPpjZ
## 136                                                                                                  NA
## 137                                                                                                  NA
## 138                                                                                                  NA
## 139                                                                                                  NA
## 140                                                                             https://t.co/Y7nATRLxvX
## 141                                                                                                  NA
## 142                                                                             https://t.co/uWxznu4FyW
## 143                                                                                                  NA
## 144                                                                                                  NA
## 145                                                                                                  NA
## 146                                                                                                  NA
## 147                                                                                                  NA
## 148                                                                                                  NA
## 149                                                                             https://t.co/58xhTVT6x3
## 150                                                                                                  NA
## 151                                                                                                  NA
## 152                                                                                                  NA
## 153                                                                                                  NA
## 154                                                                                                  NA
## 155                                                                                                  NA
## 156                                                                                                  NA
## 157                                                                             https://t.co/5MOoBKjp4a
## 158                                                                                                  NA
## 159                                                                             https://t.co/K2FderhGyA
## 160                                                                                                  NA
## 161                                                                                                  NA
## 162                                                                                                  NA
## 163                                                                                                  NA
## 164                                                                                                  NA
## 165                                                                                                  NA
## 166                                                                                                  NA
## 167                                                                                                  NA
## 168                                                                                                  NA
## 169                                                                             https://t.co/cO2FvADhW2
## 170                                                                                                  NA
## 171                                                                             https://t.co/0rrW34bYVy
## 172                                                                                                  NA
## 173                                                                                                  NA
## 174                                                                             https://t.co/nK313jlJPe
## 175                                                                                                  NA
## 176                                                                                                  NA
## 177                                                                                                  NA
## 178                                                                                                  NA
## 179                                                                                                  NA
## 180                                                                                                  NA
## 181                                                                             https://t.co/X9WAjSOOvb
## 182                                                                                                  NA
## 183                                                                                                  NA
## 184                                                                                                  NA
## 185                                                    https://t.co/V61ZDGcW5f, https://t.co/V61ZDGcW5f
## 186                                                                                                  NA
## 187                                                                                                  NA
## 188                                                                             https://t.co/XqR8QxP49w
## 189                                                                                                  NA
## 190                                                                                                  NA
## 191                                                                                                  NA
## 192                                                                                                  NA
## 193                                                                                                  NA
## 194                                                                             https://t.co/5taMFzVAWt
## 195                                                                                                  NA
## 196                                                                                                  NA
## 197                                                                                                  NA
## 198                                                                                                  NA
## 199                                                                                                  NA
## 200                                                                                                  NA
## 201                                                                                                  NA
## 202                                                                                                  NA
## 203                                                                                                  NA
## 204                                                                                                  NA
## 205                                                                                                  NA
## 206                                                                                                  NA
## 207                                                                                                  NA
## 208                                                                                                  NA
## 209                           https://t.co/HyYYNPhYof, https://t.co/HyYYNPhYof, https://t.co/HyYYNPhYof
## 210                                                                                                  NA
## 211                                                                                                  NA
## 212                                                                             https://t.co/03Wq3sX4D8
## 213                                                                                                  NA
## 214                                                                             https://t.co/5Gonl5rzzF
## 215                                                                                                  NA
## 216                                                                                                  NA
## 217                                                                                                  NA
## 218                                                                             https://t.co/w2oufdUQQD
## 219                                                                             https://t.co/QpyQNml3lJ
## 220                                                                                                  NA
## 221                                                                                                  NA
## 222                                                                                                  NA
## 223                                                                                                  NA
## 224                                                                                                  NA
## 225                                                                                                  NA
## 226                                                                             https://t.co/CwfoVQaVpy
## 227                                                    https://t.co/l9vAOlWsX4, https://t.co/l9vAOlWsX4
## 228                                                                                                  NA
## 229                                                                                                  NA
## 230                                                                                                  NA
## 231                                                                                                  NA
## 232                                                                             https://t.co/EdHqUNlpVd
## 233                                                                             https://t.co/ZHbhkcWvgC
## 234                                                                                                  NA
## 235                                                                                                  NA
## 236                                                                                                  NA
## 237                                                                                                  NA
## 238                                                                                                  NA
## 239                                                                                                  NA
## 240                                                                             https://t.co/wEqKeHxttO
## 241                                                                                                  NA
## 242                                                                                                  NA
## 243                                                                                                  NA
## 244                                                                                                  NA
## 245                                                                             https://t.co/WQtb0JNaof
## 246                                                                                                  NA
## 247                                                                             https://t.co/H7mSnSZvjW
## 248                                                                                                  NA
## 249                                                                                                  NA
## 250                                                                                                  NA
## 251                                                                                                  NA
## 252                                                                                                  NA
## 253                                                                                                  NA
## 254                                                                                                  NA
## 255                                                                                                  NA
## 256                                                                                                  NA
## 257                                                                                                  NA
## 258                                                                                                  NA
## 259                                                                                                  NA
## 260                                                                                                  NA
## 261                                                                                                  NA
## 262                                                                             https://t.co/Eo0Pif9iJn
## 263                                                                                                  NA
## 264                                                                                                  NA
## 265                                                                             https://t.co/pSXRgZjlqq
## 266                                                                                                  NA
## 267                                                                             https://t.co/IZCOLHlfpB
## 268                                                                             https://t.co/VOMqnzGllP
## 269                                                                                                  NA
## 270                                                                                                  NA
## 271                                                                                                  NA
## 272                                                                                                  NA
## 273                                                                                                  NA
## 274                                                                                                  NA
## 275                                                                                                  NA
## 276                                                                             https://t.co/E6S3oAXZX4
## 277                                                                             https://t.co/Bdm6ZsfaLR
## 278                                                                                                  NA
## 279                                                                                                  NA
## 280                                                                                                  NA
## 281                                                                                                  NA
## 282                                                                                                  NA
## 283                                                                                                  NA
## 284                                                                                                  NA
## 285                                                                                                  NA
## 286                                                                                                  NA
## 287                                                                                                  NA
## 288                                                                                                  NA
## 289                                                                                                  NA
## 290                                                                                                  NA
## 291                                                                                                  NA
## 292                                                                             https://t.co/GPgt1C83LY
## 293                                                                                                  NA
## 294                                                                             https://t.co/slL0pu6nes
## 295                                                                                                  NA
## 296                                                                                                  NA
## 297                                                                                                  NA
## 298                                                                             https://t.co/pzZW6quu56
## 299                                                                             https://t.co/fwVIcdkRwh
## 300                                                                                                  NA
## 301                                                                             https://t.co/OgEpdoTes4
## 302                                                                             https://t.co/Sn9ygXwd5g
## 303                                                                             https://t.co/zks0PgnltG
## 304                                                                                                  NA
## 305                                                                             https://t.co/1XNZ61iiKl
## 306                                                                                                  NA
## 307                                                                                                  NA
## 308                                                                             https://t.co/1dIvXJnhOP
## 309                                                                                                  NA
## 310                                                                             https://t.co/RULzqybHEM
## 311                                                                                                  NA
## 312                                                                                                  NA
## 313                                                                                                  NA
## 314                                                                                                  NA
## 315                                                                                                  NA
## 316                                                                                                  NA
## 317                                                                             https://t.co/jdMgvbpLqq
## 318                                                                                                  NA
## 319                                                                                                  NA
## 320                                                                                                  NA
## 321                                                                                                  NA
## 322                                                                                                  NA
## 323                                                                                                  NA
## 324                                                                             https://t.co/OmVXF0stOM
## 325                                                                                                  NA
## 326                                                                             https://t.co/Naxes4ZJrl
## 327                                                                             https://t.co/PDkE7Dyf8C
## 328                                                                                                  NA
## 329                                                                                                  NA
## 330                                                                             https://t.co/jhNvuB4XRe
## 331                                                                                                  NA
## 332                                                                                                  NA
## 333                                                                                                  NA
## 334                                                                                                  NA
## 335                                                                                                  NA
## 336                                                                                                  NA
## 337                                                                                                  NA
## 338                                                                                                  NA
## 339                                                                             https://t.co/hGfvARhGqB
## 340                                                                                                  NA
## 341                                                    https://t.co/qnM9OoKFm6, https://t.co/qnM9OoKFm6
## 342                                                                                                  NA
## 343                                                                             https://t.co/BgGGtmIOAJ
## 344                                                                                                  NA
## 345                                                                             https://t.co/w3GQOyRJfJ
## 346                                                                                                  NA
## 347                                                                                                  NA
## 348                                                                                                  NA
## 349                                                                                                  NA
## 350                                                                             https://t.co/lVKUpqLAPl
## 351                                                                                                  NA
## 352                                                                                                  NA
## 353                                                                                                  NA
## 354                                                                                                  NA
## 355                                                                             https://t.co/8oFnrrOlAX
## 356                                                                             https://t.co/9d51008gll
## 357                                                                                                  NA
## 358                                                                             https://t.co/BKonxqXAvR
## 359                                                                                                  NA
## 360                                                                             https://t.co/KecYPts2i8
## 361                                                                                                  NA
## 362                                                                                                  NA
## 363                                                                             https://t.co/SJ1x6OCV57
## 364                                                                                                  NA
## 365                                                                                                  NA
## 366                                                                                                  NA
## 367                                                                             https://t.co/22nvBjOJQI
## 368                                                                                                  NA
## 369                                                                                                  NA
## 370                                                                                                  NA
## 371                                                                             https://t.co/e8zTW5zXMr
## 372                                                                             https://t.co/OqGhAIdrUy
## 373                                                                             https://t.co/KrBsuHhwAV
## 374                                                                                                  NA
## 375                                                                                                  NA
## 376                                                                             https://t.co/Sn3Uf2EVja
## 377                                                                             https://t.co/088Jt9DF7B
## 378                                                                                                  NA
## 379                                                                             https://t.co/wvteMYRkhO
## 380                                                    https://t.co/GqjEmi9IxK, https://t.co/GqjEmi9IxK
## 381                                                                             https://t.co/n89GPeA2hr
## 382                                                                                                  NA
## 383                                                                                                  NA
## 384                                                                             https://t.co/kM5KmzRDD5
## 385                                                                                                  NA
## 386                                                                             https://t.co/FjQgQBoAlB
## 387                                                                                                  NA
## 388                                                                                                  NA
## 389                                                                             https://t.co/nZhffCI8nE
## 390                                                                             https://t.co/oNdx90xUkX
## 391                                                                                                  NA
## 392                                                                                                  NA
## 393                                                                                                  NA
## 394                                                                             https://t.co/d3i9MklTv8
## 395                                                                                                  NA
## 396                                                                                                  NA
## 397                                                                                                  NA
## 398                                                                             https://t.co/boI0Y6siXL
## 399                                                                                                  NA
## 400                                                                             https://t.co/t6M6LmpUlL
## 401                                                                             https://t.co/EfAGANG0aH
## 402                                                                                                  NA
## 403                                                                             https://t.co/36N7QTtzfM
## 404                                                                                                  NA
## 405                                                                                                  NA
## 406                                                                                                  NA
## 407                                                                                                  NA
## 408                                                                             https://t.co/9gIgmfTDQF
## 409                                                                                                  NA
## 410                                                                                                  NA
## 411                                                                                                  NA
## 412                                                                             https://t.co/4SN5bJqojH
## 413                                                                                                  NA
## 414                                                                             https://t.co/GE2Yd3DylT
## 415                                                                                                  NA
## 416                                                                                                  NA
## 417                                                                             https://t.co/axLR9wcesV
## 418                                                    https://t.co/10jXLnza0S, https://t.co/10jXLnza0S
## 419                                                                                                  NA
## 420                                                                                                  NA
## 421                                                                                                  NA
## 422                                                                             https://t.co/pOhK4C8Jip
## 423                                                                                                  NA
## 424                                                                                                  NA
## 425                                                                             https://t.co/eNwM2EQNvY
## 426                                                                                                  NA
## 427                                                                                                  NA
## 428                                                                                                  NA
## 429                                                                                                  NA
## 430                                                                                                  NA
## 431                                                                                                  NA
## 432                                                                                                  NA
## 433                                                                                                  NA
## 434                                                                                                  NA
## 435                                                    https://t.co/KxjGlBnXvb, https://t.co/KxjGlBnXvb
## 436                                                                             https://t.co/IbivWXqA0j
## 437                                                                                                  NA
## 438                                                                                                  NA
## 439                                                                             https://t.co/iniT806tnm
## 440                                                                                                  NA
## 441                                                                                                  NA
## 442                                                                             https://t.co/GGNLpEBL9C
## 443                                                                                                  NA
## 444                                                                                                  NA
## 445                                                                                                  NA
## 446                                                                                                  NA
## 447                                                                                                  NA
## 448                                                                                                  NA
## 449                                                                                                  NA
## 450                                                                             https://t.co/h8H0HC2G4J
## 451                                                                                                  NA
## 452                                                                                                  NA
## 453                                                                                                  NA
## 454                                                                                                  NA
## 455                                                                                                  NA
## 456                                                                                                  NA
## 457                                                                                                  NA
## 458                                                                                                  NA
## 459                                                                                                  NA
## 460                                                                             https://t.co/KyZ5hMwfyr
## 461                                                                                                  NA
## 462                                                                                                  NA
## 463                                                                                                  NA
## 464                                                                                                  NA
## 465                                                                                                  NA
## 466                                                                             https://t.co/CN6XYMyd2d
## 467                                                                                                  NA
## 468                                                                             https://t.co/q53wqvnjsI
## 469                                                                                                  NA
## 470                                                                                                  NA
## 471                                                                                                  NA
## 472                                                                                                  NA
## 473                                                                             https://t.co/pQVJ36OT3C
## 474                                                                             https://t.co/axKseOQHZq
## 475                                                                                                  NA
## 476                                                                                                  NA
## 477                                                                                                  NA
## 478                                                                             https://t.co/FK53HEhhEc
## 479                                                                                                  NA
## 480                                                                                                  NA
## 481                                                                                                  NA
## 482                                                                                                  NA
## 483                                                                                                  NA
## 484                                                                                                  NA
## 485                                                                             https://t.co/TVZ1JRAWod
## 486                                                                                                  NA
## 487                                                                                                  NA
## 488                                                                             https://t.co/q1e9hVjCzE
## 489                                                                                                  NA
## 490                                                                                                  NA
## 491                                                                             https://t.co/ctY4VCKBHo
## 492                                                                             https://t.co/g7wAgNnRRZ
## 493                                                                                                  NA
## 494                                                                             https://t.co/h36FT78Pu6
## 495                                                                             https://t.co/ER3mCCbp52
## 496                                                                                                  NA
## 497                                                                                                  NA
## 498                                                                             https://t.co/L9DY8PynWc
## 499                                                                             https://t.co/CRALkuGmPY
## 500                                                                                                  NA
## 501                                                                             https://t.co/MeGJPfUMIV
## 502                                                                             https://t.co/1eZCcnY1ri
## 503                                                                                                  NA
## 504                                                                                                  NA
## 505                                                                                                  NA
## 506                                                                                                  NA
## 507                                                                                                  NA
## 508                                                                             https://t.co/ZfIZIkRBcH
## 509                                                                                                  NA
## 510                                                                                                  NA
## 511                                                                                                  NA
## 512                                                                                                  NA
## 513                                                                                                  NA
## 514                                                                                                  NA
## 515                                                                                                  NA
## 516                                                                                                  NA
## 517                                                                                                  NA
## 518                                                                                                  NA
## 519                                                                                                  NA
## 520                                                                                                  NA
## 521                                                                                                  NA
## 522                                                                             https://t.co/sqFLig90WC
## 523                                                                             https://t.co/Z6kJ3vOulJ
## 524                                                                                                  NA
## 525                                                                                                  NA
## 526                                                                                                  NA
## 527                                                                                                  NA
## 528                                                                                                  NA
## 529                                                                                                  NA
## 530                                                                                                  NA
## 531                                                                                                  NA
## 532                                                                                                  NA
## 533                                                                                                  NA
## 534                                                                             https://t.co/I1HJzXrSav
## 535                                                                             https://t.co/UeMGURrnlG
## 536                                                                                                  NA
## 537                                                                                                  NA
## 538                                                                                                  NA
## 539                                                                                                  NA
## 540                                                                                                  NA
## 541                                                                                                  NA
## 542                                                                                                  NA
## 543                                                                                                  NA
## 544                                                                                                  NA
## 545                                                                                                  NA
## 546                                                                                                  NA
## 547                                                                                                  NA
## 548                                                                             https://t.co/2GXmMsy3zS
## 549                                                                             https://t.co/PbmQzcRLlx
## 550                                                                                                  NA
## 551                                                                                                  NA
## 552                                                                                                  NA
## 553                                                                                                  NA
## 554                                                                                                  NA
## 555                                                                                                  NA
## 556                                                                                                  NA
## 557                                                                                                  NA
## 558                                                                                                  NA
## 559                                                                             https://t.co/PgP72jqkHL
## 560                                                                                                  NA
## 561                                                                                                  NA
## 562                                                                                                  NA
## 563                                                                             https://t.co/UqHx8rlCvk
## 564                                                                             https://t.co/6Ty4aIiJEy
## 565                                                                                                  NA
## 566                                                                                                  NA
## 567                                                                             https://t.co/twVlZoJRiL
## 568                                                                                                  NA
## 569                                                                                                  NA
## 570                                                                                                  NA
## 571                                                                                                  NA
## 572                                                                                                  NA
## 573                                                                             https://t.co/bI7ztFe02p
## 574                                                                             https://t.co/WmbeeiPTIn
## 575                                                                                                  NA
## 576                                                                                                  NA
## 577                                                                                                  NA
## 578                                                                                                  NA
## 579                                                                                                  NA
## 580                                                                                                  NA
## 581                                                                                                  NA
## 582                                                                                                  NA
## 583                                                                                                  NA
## 584                                                                                                  NA
## 585                                                                                                  NA
## 586                                                                                                  NA
## 587                                                                                                  NA
## 588                                                                                                  NA
## 589                                                                             https://t.co/TPRgXFCsz4
## 590                                                                             https://t.co/eXwT1as1Mo
## 591                                                                                                  NA
## 592                                                                                                  NA
## 593                                                                                                  NA
## 594                                                                                                  NA
## 595                                                                                                  NA
## 596                                                                                                  NA
## 597                                                                                                  NA
## 598                                                                             https://t.co/Wu0uThXWYJ
## 599                                                                             https://t.co/qzIXbMiGjH
## 600                                                                             https://t.co/yIhDwccqwk
## 601                                                                             https://t.co/yfc48xMPhk
## 602                                                                                                  NA
## 603                                                                                                  NA
## 604                                                                                                  NA
## 605                                                                                                  NA
## 606                                                                                                  NA
## 607                                                                                                  NA
## 608                                                                                                  NA
## 609                                                                                                  NA
## 610                                                                             https://t.co/RXKYrEQa9T
## 611                                                                                                  NA
## 612                                                                                                  NA
## 613                                                                             https://t.co/79mRNctgne
## 614                                                                                                  NA
## 615                                                                             https://t.co/zCKPXYKUyj
## 616                                                                                                  NA
## 617                                                                                                  NA
## 618                                                                                                  NA
## 619                                                                             https://t.co/UoLoY6OuJA
## 620                                                                                                  NA
## 621                                                                             https://t.co/0WK7Sd9gho
## 622                                                                                                  NA
## 623                                                                             https://t.co/91kKz9nQcl
## 624                                                                                                  NA
## 625                                                                             https://t.co/tGHWQqB8LP
## 626                                                                                                  NA
## 627                                                                                                  NA
## 628                                                                             https://t.co/TNJuKmcGLW
## 629                                                                                                  NA
## 630                                                                                                  NA
## 631                                                                                                  NA
## 632                                                                             https://t.co/Chmjuml2ow
## 633                                                                                                  NA
## 634                                                                             https://t.co/ibfourxW8s
## 635                                                                                                  NA
## 636                                                                                                  NA
## 637                                                                                                  NA
## 638                                                                                                  NA
## 639                                                                                                  NA
## 640                                                                             https://t.co/Dl0OIFTr4x
## 641                                                    https://t.co/qF51vyjrir, https://t.co/cJ3kgHB5HH
## 642                                                                                                  NA
## 643                                                                                                  NA
## 644                                                                                                  NA
## 645                                                                                                  NA
## 646                                                                                                  NA
## 647                                                                                                  NA
## 648                                                                                                  NA
## 649                                                                                                  NA
## 650                                                                                                  NA
## 651                                                                                                  NA
## 652                                                                             https://t.co/6MljsBTmFL
## 653                                                    https://t.co/OFbQvdwjLH, https://t.co/OFbQvdwjLH
## 654                                                                                                  NA
## 655                                                                                                  NA
## 656                                                                                                  NA
## 657                                                                                                  NA
## 658                                                                                                  NA
## 659                                                                                                  NA
## 660                                                                             https://t.co/w0yHEiYlO7
## 661                                                                                                  NA
## 662                                                                                                  NA
## 663                                                                             https://t.co/1LYpfDbpAP
## 664                                                                             https://t.co/lYvFHYWTH1
## 665                                                                                                  NA
## 666                                                                                                  NA
## 667                                                                                                  NA
## 668                                                                                                  NA
## 669                                                                                                  NA
## 670                                                                                                  NA
## 671                                                                                                  NA
## 672                                                                                                  NA
## 673                                                                                                  NA
## 674                                                                                                  NA
## 675                                                                                                  NA
## 676                                                                                                  NA
## 677                                                                                                  NA
## 678                                                                                                  NA
## 679                                                                                                  NA
## 680                                                                             https://t.co/u3UsM7L1ZO
## 681                                                                                                  NA
## 682                                                                                                  NA
## 683                                                                                                  NA
## 684                                                                                                  NA
## 685                                                                                                  NA
## 686                                                                                                  NA
## 687                                                                             https://t.co/InlWINN6WN
## 688                                                    https://t.co/CMUKbdc48H, https://t.co/CMUKbdc48H
## 689                                                                                                  NA
## 690                                                                             https://t.co/Px4AJinV7X
## 691                                                                             https://t.co/EcIiyit2AS
## 692                                                                                                  NA
## 693                                                                                                  NA
## 694                                                                                                  NA
## 695                                                                                                  NA
## 696                                                                                                  NA
## 697                                                                             https://t.co/WUtMW0zKKE
## 698                                                                                                  NA
## 699                                                                                                  NA
## 700                                                                                                  NA
## 701                                                                                                  NA
## 702                                                                                                  NA
## 703                                                                                                  NA
## 704                                                                                                  NA
## 705                                                                                                  NA
## 706                                                                             https://t.co/KO4GqqHiJS
## 707                                                                                                  NA
## 708                                                                                                  NA
## 709                                                                                                  NA
## 710                                                                                                  NA
## 711                                                                                                  NA
## 712                                                                                                  NA
## 713                                                                                                  NA
## 714                                                                             https://t.co/ViEQnm4jdh
## 715                                                                                                  NA
## 716                                                                                                  NA
## 717                                                                             https://t.co/EgWirgaVEM
## 718                                                                                                  NA
## 719                                                                                                  NA
## 720                                                                                                  NA
## 721                                                                                                  NA
## 722                                                                             https://t.co/1mCetLyFvi
## 723                                                                                                  NA
## 724                                                                                                  NA
## 725                                                                                                  NA
## 726                                                                             https://t.co/uNW2psMEQc
## 727                                                                                                  NA
## 728                                                                                                  NA
## 729                                                                                                  NA
## 730                                                                                                  NA
## 731                                                                                                  NA
## 732                                                                             https://t.co/ld81qhaGVl
## 733                                                                                                  NA
## 734                                                                                                  NA
## 735                                                                                                  NA
## 736                                                                                                  NA
## 737                                                                             https://t.co/AKZzsIc5BK
## 738                                                                             https://t.co/IpcRVm4srA
## 739                                                                                                  NA
## 740                                                                             https://t.co/3sJ7tsIuYZ
## 741                                                                                                  NA
## 742                                                                             https://t.co/U4cy6Poouq
## 743                                                                             https://t.co/RQUBWtJ8qq
## 744                                                                                                  NA
## 745                                                                                                  NA
## 746                                                                                                  NA
## 747                                                                                                  NA
## 748                                                                                                  NA
## 749                                                                                                  NA
## 750                                                                                                  NA
## 751                                                                             https://t.co/6xFsFgd9Xf
## 752                                                                             https://t.co/TOgldXdKV7
## 753                                                                             https://t.co/ZafyVJ9P8Q
## 754                                                                             https://t.co/JtELbmeA9n
## 755                                                                             https://t.co/dWXRuq85rS
## 756                                                                             https://t.co/PGYY4q3YwS
## 757                                                                             https://t.co/AEHuxYiU5T
## 758                                                                                                  NA
## 759                                                                                                  NA
## 760                                                                                                  NA
## 761                                                                                                  NA
## 762                                                                                                  NA
## 763                                                                                                  NA
## 764                                                                                                  NA
## 765                                                                                                  NA
## 766                                                                                                  NA
## 767                                                                                                  NA
## 768                                                                                                  NA
## 769                                                                                                  NA
## 770                                                                                                  NA
## 771                                                                                                  NA
## 772                                                                             https://t.co/CBwbL63HoJ
## 773                                                                             https://t.co/uCyeKgIVbR
## 774                                                                             https://t.co/Dj1aQa6hbF
## 775                                                                                                  NA
## 776                                                                                                  NA
## 777                                                                                                  NA
## 778                                                                                                  NA
## 779                                                                             https://t.co/AFkqnM0qYJ
## 780                                                                             https://t.co/dfaHWzcYCM
## 781                                                                                                  NA
## 782                                                                                                  NA
## 783                                                                                                  NA
## 784                           https://t.co/tIjtXHtqkT, https://t.co/tIjtXHtqkT, https://t.co/tIjtXHtqkT
## 785                                                                             https://t.co/QNCVOAYUil
## 786                                                                             https://t.co/oNB69iC9Hs
## 787                                                                                                  NA
## 788                                                                                                  NA
## 789                                                    https://t.co/k8HmpfavOU, https://t.co/k8HmpfavOU
## 790                                                                                                  NA
## 791                                                                                                  NA
## 792                                                                             https://t.co/b4EiNzQaeX
## 793                                                                                                  NA
## 794                                                                                                  NA
## 795                                                                                                  NA
## 796                                                                                                  NA
## 797                                                                                                  NA
## 798                                                                                                  NA
## 799                                                                                                  NA
## 800                                                                                                  NA
## 801                                                                             https://t.co/e3x13Lhads
## 802                                                                             https://t.co/2DRRWHYiBX
## 803                                                                                                  NA
## 804                                                                                                  NA
## 805                                                                                                  NA
## 806                                                                                                  NA
## 807                                                                                                  NA
## 808                                                                                                  NA
## 809                                                                                                  NA
## 810                                                                                                  NA
## 811                           https://t.co/1dK6gcaPtb, https://t.co/1dK6gcaPtb, https://t.co/1dK6gcaPtb
## 812                                                                                                  NA
## 813                                                                                                  NA
## 814                                                                                                  NA
## 815                                                                             https://t.co/Sx6P7VDY6z
## 816                                                                                                  NA
## 817                                                    https://t.co/JEyTmRol2L, https://t.co/JEyTmRol2L
## 818                                                                                                  NA
## 819                                                                             https://t.co/F9yo2Tfo6P
## 820                                                                                                  NA
## 821                                                                                                  NA
## 822                                                                             https://t.co/NlVxbPlPML
## 823                                                                                                  NA
## 824                                                                             https://t.co/oo4yz3Ltds
## 825                                                                                                  NA
## 826                                                                             https://t.co/pzdO24BbBb
## 827                                                                                                  NA
## 828                                                                                                  NA
## 829                                                                                                  NA
## 830                                                                                                  NA
## 831  https://t.co/pkZIHx4aIm, https://t.co/pkZIHx4aIm, https://t.co/pkZIHx4aIm, https://t.co/pkZIHx4aIm
## 832                                                                                                  NA
## 833                                                                                                  NA
## 834                                                                                                  NA
## 835                                                                                                  NA
## 836                                                                             https://t.co/axV2gftxzm
## 837                                                                                                  NA
## 838                                                                                                  NA
## 839                                                                                                  NA
## 840                                                                                                  NA
## 841                                                                                                  NA
## 842                                                                                                  NA
## 843                                                                                                  NA
## 844                                                                                                  NA
## 845                                                                                                  NA
## 846                                                                                                  NA
## 847                                                                                                  NA
## 848                                                                                                  NA
## 849                                                                                                  NA
## 850                                                                                                  NA
## 851                                                                             https://t.co/RbNLOcBRgM
## 852                                                                                                  NA
## 853                                                                                                  NA
## 854                                                                                                  NA
## 855                                                                                                  NA
## 856                                                                                                  NA
## 857                                                                                                  NA
## 858                                                                             https://t.co/uBGoQH5Qjc
## 859                                                                                                  NA
## 860                                                                             https://t.co/UcmjSU9NFk
## 861                                                                                                  NA
## 862                                                                                                  NA
## 863                                                                                                  NA
## 864                                                                                                  NA
## 865                                                                             https://t.co/p2HH23dSE8
## 866                                                                                                  NA
## 867                                                                             https://t.co/N8dEUODHS7
## 868                                                                                                  NA
## 869                                                                                                  NA
## 870                                                                                                  NA
## 871                                                                                                  NA
## 872                                                                                                  NA
## 873                                                                                                  NA
## 874                                                                                                  NA
## 875                                                                                                  NA
## 876                                                                                                  NA
## 877                                                                                                  NA
## 878                                                                                                  NA
## 879                                                                                                  NA
## 880                                                                                                  NA
## 881                                                                                                  NA
## 882                                                                                                  NA
## 883                                                                                                  NA
## 884                                                                                                  NA
## 885                                                                                                  NA
## 886                                                                             https://t.co/7tffWuzdef
## 887                                                                                                  NA
## 888                                                                                                  NA
## 889                                                                                                  NA
## 890                                                                             https://t.co/eZ1u9Ls8Z9
## 891                                                                                                  NA
## 892                                                                                                  NA
## 893                                                                             https://t.co/pRT1bHSWHu
## 894                                                                             https://t.co/M7KG7V1dX2
## 895                                                                                                  NA
## 896                                                                                                  NA
## 897                                                                                                  NA
## 898                                                                             https://t.co/USsWuL29a0
## 899                                                                                                  NA
## 900                                                                                                  NA
## 901                                                                                                  NA
## 902                                                                             https://t.co/UU0zE5dJ8V
## 903                                                                                                  NA
## 904                                                                             https://t.co/XdstPR1myz
## 905                                                                                                  NA
## 906                                                                                                  NA
## 907                                                                                                  NA
## 908                                                                             https://t.co/W06W1ixUvf
## 909                                                                                                  NA
## 910                                                                                                  NA
## 911                                                                                                  NA
## 912                                                                                                  NA
## 913                                                                                                  NA
## 914                                                                                                  NA
## 915                                                                             https://t.co/joyz2m611D
## 916  https://t.co/TkKigYCFT7, https://t.co/TkKigYCFT7, https://t.co/TkKigYCFT7, https://t.co/TkKigYCFT7
## 917                                                                                                  NA
## 918                                                                                                  NA
## 919                                                                                                  NA
## 920                                                                                                  NA
## 921                                                                                                  NA
## 922                                                                                                  NA
## 923                                                                                                  NA
## 924                                                                                                  NA
## 925                                                                             https://t.co/jZPs4jvIsx
## 926                                                                                                  NA
## 927                                                                                                  NA
## 928                                                                             https://t.co/YbGLsum7NU
## 929                                                    https://t.co/mL7wwRkuBY, https://t.co/mL7wwRkuBY
## 930                                                                             https://t.co/9ztvdvPDFg
## 931                                                                                                  NA
## 932                                                                                                  NA
## 933                                                                                                  NA
## 934                           https://t.co/RLaevKcw73, https://t.co/RLaevKcw73, https://t.co/RLaevKcw73
## 935                                                                                                  NA
## 936                                                                                                  NA
## 937                                                                             https://t.co/VFpJWp6b5n
## 938                                                                                                  NA
## 939                                                                                                  NA
## 940                                                                             https://t.co/IGiB2C0qCD
## 941                                                                             https://t.co/XpCLi20zVF
## 942                                                                                                  NA
## 943                                                                                                  NA
## 944                                                                                                  NA
## 945                                                                             https://t.co/MUQZ5OXIpU
## 946                                                                                                  NA
## 947                                                                             https://t.co/MLwPv4XEo6
## 948                                                                             https://t.co/OPYXppvjwc
## 949                                                                             https://t.co/HaAGSunJ44
## 950                                                                                                  NA
## 951                                                                                                  NA
## 952                                                                             https://t.co/uqednseo0O
## 953                                                                             https://t.co/M4P0GMtSlz
## 954                                                                                                  NA
## 955                                                                                                  NA
## 956                                                                             https://t.co/L81NakX3hE
## 957                           https://t.co/VZ7UcKcGo1, https://t.co/VZ7UcKcGo1, https://t.co/VZ7UcKcGo1
## 958                                                                                                  NA
## 959                                                                                                  NA
## 960                                                                                                  NA
## 961                                                                                                  NA
## 962                                                                                                  NA
## 963                                                                                                  NA
## 964                                                                                                  NA
## 965                                                                             https://t.co/HfQ01ZMdae
## 966                                                                                                  NA
## 967                                                                                                  NA
## 968                                                                                                  NA
## 969                                                                                                  NA
## 970                                                                                                  NA
## 971                                                                                                  NA
## 972                                                                                                  NA
## 973                                                                             https://t.co/VdMEr8dFb4
## 974                                                                                                  NA
## 975                                                                                                  NA
## 976                                                                                                  NA
## 977                                                                                                  NA
## 978                                                                                                  NA
## 979                                                                                                  NA
## 980                                                                                                  NA
## 981                                                                             https://t.co/nTwsAWRKxQ
## 982                                                                                                  NA
## 983                                                                                                  NA
## 984                                                                                                  NA
## 985                                                                                                  NA
## 986                                                                                                  NA
## 987                                                                                                  NA
## 988                                                                                                  NA
## 989                                                                                                  NA
## 990                                                                                                  NA
## 991                                                                                                  NA
## 992                                                                                                  NA
## 993                                                                             https://t.co/oNZMV7GlHJ
## 994                                                                                                  NA
## 995                                                                                                  NA
## 996                                                                                                  NA
## 997                                                                             https://t.co/tRp1vvn3Nh
## 998                                                                             https://t.co/3JhupaoDk0
## 999                                                                                                  NA
## 1000                                                                                                 NA
## 1001                                                                                                 NA
## 1002                                                                                                 NA
## 1003                                                                                                 NA
## 1004                                                                                                 NA
## 1005                                                                                                 NA
## 1006                                                                                                 NA
## 1007                                                                                                 NA
## 1008                                                                                                 NA
## 1009                                                                                                 NA
## 1010                                                                            https://t.co/Ymp2PRmMRQ
## 1011                                                                                                 NA
## 1012                                                                            https://t.co/n8l5TwNitP
## 1013                                                                            https://t.co/rSdYOPtQM2
## 1014                                                                            https://t.co/hSVauIQMdJ
## 1015                                                                            https://t.co/cWrllRBtub
## 1016                                                                                                 NA
## 1017                                                                                                 NA
## 1018                                                                                                 NA
## 1019                                                                                                 NA
## 1020                                                                                                 NA
## 1021                                                                                                 NA
## 1022                                                                            https://t.co/P3N9Mg6RIh
## 1023                                                                            https://t.co/2shjTkVITi
## 1024                                                                                                 NA
## 1025                                                                                                 NA
## 1026                                                                                                 NA
## 1027                                                                                                 NA
## 1028                                                                                                 NA
## 1029                                                                                                 NA
## 1030                                                                                                 NA
## 1031                                                                                                 NA
## 1032                                                                                                 NA
## 1033                                                                                                 NA
## 1034                                                                                                 NA
## 1035                                                                                                 NA
## 1036                                                                            https://t.co/3ZHSZtnXU8
## 1037                                                                                                 NA
## 1038                                                                            https://t.co/WfZO1YtZQK
## 1039                                                                                                 NA
## 1040                                                                                                 NA
## 1041                                                                                                 NA
## 1042                                                                                                 NA
## 1043                                                                            https://t.co/opfeeqeUw9
## 1044                                                                                                 NA
## 1045                                                                                                 NA
## 1046                                                                                                 NA
## 1047                                                                                                 NA
## 1048                                                                                                 NA
## 1049                                                                                                 NA
## 1050                                                                                                 NA
## 1051                                                                                                 NA
## 1052                                                                                                 NA
## 1053                                                                            https://t.co/GIcsClUCXh
## 1054                                                                            https://t.co/RmdwFD0Kku
## 1055                                                                                                 NA
## 1056                                                                                                 NA
## 1057                                                                                                 NA
## 1058                                                                                                 NA
## 1059                                                                                                 NA
## 1060                                                                                                 NA
## 1061                                                                                                 NA
## 1062                                                                                                 NA
## 1063                                                                                                 NA
## 1064                                                                                                 NA
## 1065                                                                                                 NA
## 1066                                                                                                 NA
## 1067                                                                            https://t.co/oQlC9l0AfW
## 1068                                                                                                 NA
## 1069                                                                                                 NA
## 1070                                                                                                 NA
## 1071                                                                                                 NA
## 1072                                                                                                 NA
## 1073                                                                                                 NA
## 1074                                                                                                 NA
## 1075                                                                                                 NA
## 1076                                                                                                 NA
## 1077                                                                                                 NA
## 1078                                                                                                 NA
## 1079                                                                                                 NA
## 1080                                                                                                 NA
## 1081                                                                            https://t.co/aC5DPdP2IN
## 1082                                                                            https://t.co/3buv9v220k
## 1083                                                                                                 NA
## 1084                                                                                                 NA
## 1085                                                                                                 NA
## 1086                                                                                                 NA
## 1087                                                                                                 NA
## 1088 https://t.co/nfAXwmBa49, https://t.co/nfAXwmBa49, https://t.co/nfAXwmBa49, https://t.co/nfAXwmBa49
## 1089                                                                                                 NA
## 1090                                                                                                 NA
## 1091                                                                                                 NA
## 1092                                                                                                 NA
## 1093                                                                                                 NA
## 1094                                                                                                 NA
## 1095                                                                                                 NA
## 1096                                                                                                 NA
## 1097                                                                                                 NA
## 1098                                                                                                 NA
## 1099                                                                                                 NA
## 1100                                                                            https://t.co/Ydr8TWZx2v
## 1101                                                                                                 NA
## 1102                                                                            https://t.co/FaF24vAccR
## 1103                                                                                                 NA
## 1104                                                                                                 NA
## 1105                                                                                                 NA
## 1106                                                                                                 NA
## 1107                                                                                                 NA
## 1108                                                                                                 NA
## 1109                                                                                                 NA
## 1110                                                                                                 NA
## 1111                                                                                                 NA
##                                                                                                                                                                                                                                                                          ext_media_expanded_url
## 1                                                                                                                                                                                                                                                                                            NA
## 2                                                                                                                                                                                                                                                                                            NA
## 3                                                                                                                                                                                                                                                                                            NA
## 4                                                                                                                                                                                                                                                                                            NA
## 5                                                                                                                                                                                                                                                                                            NA
## 6                                                                                                                                                                                                                                                                                            NA
## 7                                                                                                                                                                                                                                                                                            NA
## 8                                                                                                                                                                                                                                                                                            NA
## 9                                                                                                                                                                                                                                                                                            NA
## 10                                                                                                                                                                                                                                                                                           NA
## 11                                                                                                                                                                                                                       https://twitter.com/CityofPickering/status/1243233162412556288/photo/1
## 12                                                                                                                                                                                                                             https://twitter.com/Patty0987/status/1243317490509381632/photo/1
## 13                                                                                                                                                                                                                                                                                           NA
## 14                                                                                                                                                                                                                                                                                           NA
## 15                                                                                                                                                                                                                                                                                           NA
## 16                                                                                                                                                                                                                                                                                           NA
## 17                                                                                                                                                                                                                         https://twitter.com/Lumindustries/status/1243235698091704320/photo/1
## 18                                                                                                                                                                                                                                                                                           NA
## 19                                                                                                                                                                                                                                                                                           NA
## 20                                                                                                                                                                                                                                                                                           NA
## 21                                                                                                                                                                                                                                                                                           NA
## 22                                                                                                                                                                                                                                                                                           NA
## 23                                                                                                                                                                                                                                                                                           NA
## 24                                                                                                                                                                                                                                                                                           NA
## 25                                                                                                                                                                                                                                                                                           NA
## 26                                                                                                                                                                                                                                                                                           NA
## 27                                                                                                                                                                                                                              https://twitter.com/CMHAWECB/status/1243234147931389952/photo/1
## 28                                                                                                                                                                                                                               https://twitter.com/DNYimga/status/1243264807589077001/photo/1
## 29                                                                                                                                                                                                                                                                                           NA
## 30                                                                                                                                                                                                                                                                                           NA
## 31                                                                                                                                                                                                                                                                                           NA
## 32                                                                                                                                                                                                                                                                                           NA
## 33                                                                                                                                                                                                                          https://twitter.com/HowertonNews/status/1243355064594358273/photo/1
## 34                                                                                                                                                                                                                                                                                           NA
## 35                                                                                                                                                                                                                                                                                           NA
## 36                                                                                                                                                                                                                                                                                           NA
## 37                                                                                                                                                                                                                               https://twitter.com/MSalimu/status/1243817568114298880/photo/1
## 38                                                                                                                                                                                                                             https://twitter.com/EFFAT_org/status/1243589199728726021/photo/1
## 39                                                                                                                                                                                                                                                                                           NA
## 40                                                                                                                                                                                                                                                                                           NA
## 41                                                                                                                                                                                                                                                                                           NA
## 42                                                                                                                                                                                                                                                                                           NA
## 43                                                                                                                                                                                                                                                                                           NA
## 44                                                                                                                                                                                                                                                                                           NA
## 45                                                                                                                                                                                                                                                                                           NA
## 46                                                                                                                                                                                                                          https://twitter.com/Comm_Bonilla/status/1243355076476858368/photo/1
## 47                                                                                                                                                                                                                                                                                           NA
## 48                                                                                                                                                                                                                                                                                           NA
## 49   https://twitter.com/FirstChoiceVeg/status/1243288988191993856/photo/1, https://twitter.com/FirstChoiceVeg/status/1243288988191993856/photo/1, https://twitter.com/FirstChoiceVeg/status/1243288988191993856/photo/1, https://twitter.com/FirstChoiceVeg/status/1243288988191993856/photo/1
## 50                                                                                                                                                                                                                                                                                           NA
## 51                                                                                                                                                                                                                                                                                           NA
## 52                                                                                                                                                                                                                                                                                           NA
## 53                                                                                                                                                                                                                                                                                           NA
## 54                                                                                                                                                                                                                       https://twitter.com/NoahsArkHospice/status/1243334440937545733/photo/1
## 55                                                                                                                                                                                                                                                                                           NA
## 56                                                                                                                                                                                                                                                                                           NA
## 57                                                                                                                                                                                                                                                                                           NA
## 58                                                                                                                                                                                                                                                                                           NA
## 59                                                                                                                                                                                                                                                                                           NA
## 60                                                                                                                                                                                                                                                                                           NA
## 61                                                                                                                                                                                                                             https://twitter.com/Kasliwala/status/1243340400779239424/photo/1
## 62                                                                                                                                                                                                                                                                                           NA
## 63                                                                                                                                                                                                                                                                                           NA
## 64                                                                                                                                                                                                                                                                                           NA
## 65                                                                                                                                                                                                                                                                                           NA
## 66                                                                                                                                                                                                                                                                                           NA
## 67                                                                                                                                                                                                                         https://twitter.com/SoberTool_App/status/1243776103849828352/photo/1
## 68                                                                                                                                                                                                                                                                                           NA
## 69                                                                                                                                                                                                                       https://twitter.com/AustinKellerman/status/1243267436062916608/photo/1
## 70                                                                                                                                                                                                                                                                                           NA
## 71                                                                                                                                                                                                                         https://twitter.com/SportBusiness/status/1243344006249095174/photo/1
## 72                                                                                                                                                                                                                                                                                           NA
## 73                                                                                                                                                                                                                              https://twitter.com/curogram/status/1243341092315152389/photo/1
## 74                                                                                                                                                                                                                                                                                           NA
## 75                                                                                                                                                                                                                                                                                           NA
## 76                                                                                                                                                                                                                          https://twitter.com/johnbachtell/status/1243724112935161856/photo/1
## 77                                                                                                                                                                                                                                                                                           NA
## 78                                                                                                                                                                                                                           https://twitter.com/richwithtea/status/1243566324212785159/photo/1
## 79                                                                                                                                                                                                                           https://twitter.com/deehfairley/status/1243309252799860747/photo/1
## 80                                                                                                                                                                                                                                                                                           NA
## 81                                                                                                                                                                                                                            https://twitter.com/WycliffeJb/status/1243795008404291585/video/1
## 82                                                                                                                                                                                                                                                                                           NA
## 83                                                                                                                                                                                                                                                                                           NA
## 84                                                                                                                                                                                                                                                                                           NA
## 85                                                                                                                                                                                                                                https://twitter.com/tjmule/status/1243632536116277248/photo/1
## 86                                                                                                                                                                                                                                                                                           NA
## 87                                                                                                                                                                                                                                                                                           NA
## 88                                                                                                                                                                                                                       https://twitter.com/ColumbiaDoctors/status/1243674284826021889/photo/1
## 89                                                                                                                                                                                                                             https://twitter.com/DLA_Piper/status/1243691274131169282/photo/1
## 90                                                                                                                                                                                                                                                                                           NA
## 91                                                                                                                                                                                                                                                                                           NA
## 92                                                                                                                                                                                                                                                                                           NA
## 93                                                                                                                                                                                                                         https://twitter.com/Daily_Express/status/1243628859188113408/photo/1
## 94                                                                                                                                                                                                                                                                                           NA
## 95                                                                                                                                                                                                                                                                                           NA
## 96                                                                                                                                                                                                                          https://twitter.com/WITBANK_NEWS/status/1243225539059556352/photo/1
## 97                                                                                                                                                                                                                          https://twitter.com/Charlie_APWS/status/1243711536243167238/photo/1
## 98                                                                                                                                                                                                                       https://twitter.com/MyositisSupport/status/1243228815574196227/photo/1
## 99                                                                                                                                                                                                                              https://twitter.com/LandGLab/status/1243823496540479489/photo/1
## 100                                                                                                                                                                                                                               https://twitter.com/tjbtts/status/1243731683385446407/photo/1
## 101                                                                                                                                                                                                                             https://twitter.com/RefeKids/status/1243813938007072769/photo/1
## 102                                                                                                                                                                                                                                                                                          NA
## 103                                                                                                                                                                                                                                                                                          NA
## 104                                                                                                                                                                                                                                                                                          NA
## 105                                                                                                                                                                                                                                                                                          NA
## 106                                                                                                                                                                                                                                                                                          NA
## 107                                                                                                                                                                                                                      https://twitter.com/solanheadlines1/status/1243768045845098496/photo/1
## 108                                                                                                                                                                                                                                                                                          NA
## 109                                                                                                                                                                                                                                                                                          NA
## 110                                                                                                                                                                                                                                                                                          NA
## 111                                                                                                                                                                                                                                                                                          NA
## 112                                                                                                                                                        https://twitter.com/EllypopArt/status/1243231575040561157/photo/1, https://twitter.com/EllypopArt/status/1243231575040561157/photo/1
## 113                                                                                                                                                                                                                                                                                          NA
## 114                                                                                                                                                                                                                                                                                          NA
## 115                                                                                                                                                                                                                           https://twitter.com/jlitwinetz/status/1243802106852761601/photo/1
## 116                                                                                                                                                                                                                       https://twitter.com/TheRealROLAND2/status/1243613963994226690/photo/1
## 117                                                                                                                                                                                                                                                                                          NA
## 118                                                                                                                                                                                                                      https://twitter.com/PADOBSsecretary/status/1243583720705200128/photo/1
## 119                                                                                                                                                                                                                                                                                          NA
## 120                                                                                                                                                                                                                                                                                          NA
## 121                                                                                                                                                                                                                                                                                          NA
## 122                                                                                                                                                                                                                                                                                          NA
## 123                                                                                                                                                                                                                                                                                          NA
## 124                                                                                                                                                                                                                              https://twitter.com/680NEWS/status/1243581674039971849/video/1
## 125                                                                                                                                                                                                                                                                                          NA
## 126                                                                                                                                                                                                                      https://twitter.com/AlmuraikhiNihal/status/1243323024457322498/video/1
## 127                                                                                                                                                                                                                                                                                          NA
## 128                                                                                                                                                                                                                          https://twitter.com/shah_sheikh/status/1243317445705662465/photo/1
## 129                                                                                                                                                                                                                                                                                          NA
## 130                                                                                                                                                                                                                                                                                          NA
## 131                                                                                                                                                                                                                                                                                          NA
## 132                                                                                                                                                                                                                                                                                          NA
## 133                                                                                                                                                                                                                                                                                          NA
## 134                                                                                                                                                                                                                                                                                          NA
## 135          https://twitter.com/faluyikayode/status/1243228493112057857/photo/1, https://twitter.com/faluyikayode/status/1243228493112057857/photo/1, https://twitter.com/faluyikayode/status/1243228493112057857/photo/1, https://twitter.com/faluyikayode/status/1243228493112057857/photo/1
## 136                                                                                                                                                                                                                                                                                          NA
## 137                                                                                                                                                                                                                                                                                          NA
## 138                                                                                                                                                                                                                                                                                          NA
## 139                                                                                                                                                                                                                                                                                          NA
## 140                                                                                                                                                                                                                                https://twitter.com/gcboe/status/1243584826613080066/photo/1
## 141                                                                                                                                                                                                                                                                                          NA
## 142                                                                                                                                                                                                                            https://twitter.com/MerriamKS/status/1243643832400519169/photo/1
## 143                                                                                                                                                                                                                                                                                          NA
## 144                                                                                                                                                                                                                                                                                          NA
## 145                                                                                                                                                                                                                                                                                          NA
## 146                                                                                                                                                                                                                                                                                          NA
## 147                                                                                                                                                                                                                                                                                          NA
## 148                                                                                                                                                                                                                                                                                          NA
## 149                                                                                                                                                                                                                        https://twitter.com/bazecitymedia/status/1243326845136879618/photo/1
## 150                                                                                                                                                                                                                                                                                          NA
## 151                                                                                                                                                                                                                                                                                          NA
## 152                                                                                                                                                                                                                                                                                          NA
## 153                                                                                                                                                                                                                                                                                          NA
## 154                                                                                                                                                                                                                                                                                          NA
## 155                                                                                                                                                                                                                                                                                          NA
## 156                                                                                                                                                                                                                                                                                          NA
## 157                                                                                                                                                                                                                          https://twitter.com/ColmJDawson/status/1243566227404054529/video/1
## 158                                                                                                                                                                                                                                                                                          NA
## 159                                                                                                                                                                                                                               https://twitter.com/Venafi/status/1243666679407808512/photo/1
## 160                                                                                                                                                                                                                                                                                          NA
## 161                                                                                                                                                                                                                                                                                          NA
## 162                                                                                                                                                                                                                                                                                          NA
## 163                                                                                                                                                                                                                                                                                          NA
## 164                                                                                                                                                                                                                                                                                          NA
## 165                                                                                                                                                                                                                                                                                          NA
## 166                                                                                                                                                                                                                                                                                          NA
## 167                                                                                                                                                                                                                                                                                          NA
## 168                                                                                                                                                                                                                                                                                          NA
## 169                                                                                                                                                                                                                        https://twitter.com/SAFoundationN/status/1243826678004166656/video/1
## 170                                                                                                                                                                                                                                                                                          NA
## 171                                                                                                                                                                                                                             https://twitter.com/lykaboss/status/1243337671667146752/photo/1
## 172                                                                                                                                                                                                                                                                                          NA
## 173                                                                                                                                                                                                                                                                                          NA
## 174                                                                                                                                                                                                                       https://twitter.com/Suresh17104120/status/1243747330852941825/photo/1
## 175                                                                                                                                                                                                                                                                                          NA
## 176                                                                                                                                                                                                                                                                                          NA
## 177                                                                                                                                                                                                                                                                                          NA
## 178                                                                                                                                                                                                                                                                                          NA
## 179                                                                                                                                                                                                                                                                                          NA
## 180                                                                                                                                                                                                                                                                                          NA
## 181                                                                                                                                                                                                                       https://twitter.com/MayorofBurnaby/status/1243255519206408199/video/1
## 182                                                                                                                                                                                                                                                                                          NA
## 183                                                                                                                                                                                                                                                                                          NA
## 184                                                                                                                                                                                                                                                                                          NA
## 185                                                                                                                                                            https://twitter.com/TxID_Edu/status/1243239741236981760/photo/1, https://twitter.com/TxID_Edu/status/1243239741236981760/photo/1
## 186                                                                                                                                                                                                                                                                                          NA
## 187                                                                                                                                                                                                                                                                                          NA
## 188                                                                                                                                                                                                                           https://twitter.com/DeionNBCMT/status/1242910540105576450/video/1
## 189                                                                                                                                                                                                                                                                                          NA
## 190                                                                                                                                                                                                                                                                                          NA
## 191                                                                                                                                                                                                                                                                                          NA
## 192                                                                                                                                                                                                                                                                                          NA
## 193                                                                                                                                                                                                                                                                                          NA
## 194                                                                                                                                                                                                                          https://twitter.com/poeticindie/status/1242729812134944770/video/1
## 195                                                                                                                                                                                                                                                                                          NA
## 196                                                                                                                                                                                                                                                                                          NA
## 197                                                                                                                                                                                                                                                                                          NA
## 198                                                                                                                                                                                                                                                                                          NA
## 199                                                                                                                                                                                                                                                                                          NA
## 200                                                                                                                                                                                                                                                                                          NA
## 201                                                                                                                                                                                                                                                                                          NA
## 202                                                                                                                                                                                                                                                                                          NA
## 203                                                                                                                                                                                                                                                                                          NA
## 204                                                                                                                                                                                                                                                                                          NA
## 205                                                                                                                                                                                                                                                                                          NA
## 206                                                                                                                                                                                                                                                                                          NA
## 207                                                                                                                                                                                                                                                                                          NA
## 208                                                                                                                                                                                                                                                                                          NA
## 209                                                                                           https://twitter.com/wagygirl/status/1243714839236595712/photo/1, https://twitter.com/wagygirl/status/1243714839236595712/photo/1, https://twitter.com/wagygirl/status/1243714839236595712/photo/1
## 210                                                                                                                                                                                                                                                                                          NA
## 211                                                                                                                                                                                                                                                                                          NA
## 212                                                                                                                                                                                                                           https://twitter.com/CBCCalgary/status/1243566753277452288/photo/1
## 213                                                                                                                                                                                                                                                                                          NA
## 214                                                                                                                                                                                                                            https://twitter.com/QuickTake/status/1243306755523850241/video/1
## 215                                                                                                                                                                                                                                                                                          NA
## 216                                                                                                                                                                                                                                                                                          NA
## 217                                                                                                                                                                                                                                                                                          NA
## 218                                                                                                                                                                                                                           https://twitter.com/EmbacubaNZ/status/1243264356067889152/photo/1
## 219                                                                                                                                                                                                                          https://twitter.com/cupidalaska/status/1243274952054394880/photo/1
## 220                                                                                                                                                                                                                                                                                          NA
## 221                                                                                                                                                                                                                                                                                          NA
## 222                                                                                                                                                                                                                                                                                          NA
## 223                                                                                                                                                                                                                                                                                          NA
## 224                                                                                                                                                                                                                                                                                          NA
## 225                                                                                                                                                                                                                                                                                          NA
## 226                                                                                                                                                                                                                      https://twitter.com/BluePRintBrands/status/1243567897148100610/photo/1
## 227                                                                                                                                                            https://twitter.com/Aly_Dar8/status/1243363291100930049/photo/1, https://twitter.com/Aly_Dar8/status/1243363291100930049/photo/1
## 228                                                                                                                                                                                                                                                                                          NA
## 229                                                                                                                                                                                                                                                                                          NA
## 230                                                                                                                                                                                                                                                                                          NA
## 231                                                                                                                                                                                                                                                                                          NA
## 232                                                                                                                                                                                                                            https://twitter.com/jsrailton/status/1243259984764338176/photo/1
## 233                                                                                                                                                                                                                      https://twitter.com/InsideNo9Tweets/status/1243692863554232321/photo/1
## 234                                                                                                                                                                                                                                                                                          NA
## 235                                                                                                                                                                                                                                                                                          NA
## 236                                                                                                                                                                                                                                                                                          NA
## 237                                                                                                                                                                                                                                                                                          NA
## 238                                                                                                                                                                                                                                                                                          NA
## 239                                                                                                                                                                                                                                                                                          NA
## 240                                                                                                                                                                                                                                https://twitter.com/ukSJS/status/1243266561936363520/photo/1
## 241                                                                                                                                                                                                                                                                                          NA
## 242                                                                                                                                                                                                                                                                                          NA
## 243                                                                                                                                                                                                                                                                                          NA
## 244                                                                                                                                                                                                                                                                                          NA
## 245                                                                                                                                                                                                                       https://twitter.com/revhumanrights/status/1243104429982670853/photo/1
## 246                                                                                                                                                                                                                                                                                          NA
## 247                                                                                                                                                                                                                             https://twitter.com/hunterei/status/1243353255247106048/photo/1
## 248                                                                                                                                                                                                                                                                                          NA
## 249                                                                                                                                                                                                                                                                                          NA
## 250                                                                                                                                                                                                                                                                                          NA
## 251                                                                                                                                                                                                                                                                                          NA
## 252                                                                                                                                                                                                                                                                                          NA
## 253                                                                                                                                                                                                                                                                                          NA
## 254                                                                                                                                                                                                                                                                                          NA
## 255                                                                                                                                                                                                                                                                                          NA
## 256                                                                                                                                                                                                                                                                                          NA
## 257                                                                                                                                                                                                                                                                                          NA
## 258                                                                                                                                                                                                                                                                                          NA
## 259                                                                                                                                                                                                                                                                                          NA
## 260                                                                                                                                                                                                                                                                                          NA
## 261                                                                                                                                                                                                                                                                                          NA
## 262                                                                                                                                                                                                                         https://twitter.com/Alicia_Akeys/status/1243765063904907265/photo/1
## 263                                                                                                                                                                                                                                                                                          NA
## 264                                                                                                                                                                                                                                                                                          NA
## 265                                                                                                                                                                                                                              https://twitter.com/Only4RM/status/1243665449738539014/photo/1
## 266                                                                                                                                                                                                                                                                                          NA
## 267                                                                                                                                                                                                                                https://twitter.com/ZAmmi/status/1243260859805323266/video/1
## 268                                                                                                                                                                                                                        https://twitter.com/BrunswickGovt/status/1243666789751566338/photo/1
## 269                                                                                                                                                                                                                                                                                          NA
## 270                                                                                                                                                                                                                                                                                          NA
## 271                                                                                                                                                                                                                                                                                          NA
## 272                                                                                                                                                                                                                                                                                          NA
## 273                                                                                                                                                                                                                                                                                          NA
## 274                                                                                                                                                                                                                                                                                          NA
## 275                                                                                                                                                                                                                                                                                          NA
## 276                                                                                                                                                                                                                             https://twitter.com/ShSPDER1/status/1243590768289353729/photo/1
## 277                                                                                                                                                                                                                       https://twitter.com/Mayankkrsinghr/status/1243331368953806853/photo/1
## 278                                                                                                                                                                                                                                                                                          NA
## 279                                                                                                                                                                                                                                                                                          NA
## 280                                                                                                                                                                                                                                                                                          NA
## 281                                                                                                                                                                                                                                                                                          NA
## 282                                                                                                                                                                                                                                                                                          NA
## 283                                                                                                                                                                                                                                                                                          NA
## 284                                                                                                                                                                                                                                                                                          NA
## 285                                                                                                                                                                                                                                                                                          NA
## 286                                                                                                                                                                                                                                                                                          NA
## 287                                                                                                                                                                                                                                                                                          NA
## 288                                                                                                                                                                                                                                                                                          NA
## 289                                                                                                                                                                                                                                                                                          NA
## 290                                                                                                                                                                                                                                                                                          NA
## 291                                                                                                                                                                                                                                                                                          NA
## 292                                                                                                                                                                                                                      https://twitter.com/TheR4experience/status/1243643373942116355/photo/1
## 293                                                                                                                                                                                                                                                                                          NA
## 294                                                                                                                                                                                                                            https://twitter.com/pdartesia/status/1243631369583984641/photo/1
## 295                                                                                                                                                                                                                                                                                          NA
## 296                                                                                                                                                                                                                                                                                          NA
## 297                                                                                                                                                                                                                                                                                          NA
## 298                                                                                                                                                                                                                         https://twitter.com/MarcSkulnick/status/1243644667218059264/photo/1
## 299                                                                                                                                                                                                                             https://twitter.com/MABRN999/status/1243328440486551556/photo/1
## 300                                                                                                                                                                                                                                                                                          NA
## 301                                                                                                                                                                                                                            https://twitter.com/NuniSasYu/status/1243602116553379842/photo/1
## 302                                                                                                                                                                                                                       https://twitter.com/MovingMarkets_/status/1243747789848403969/photo/1
## 303                                                                                                                                                                                                                             https://twitter.com/sn00pdad/status/1243672218283974663/video/1
## 304                                                                                                                                                                                                                                                                                          NA
## 305                                                                                                                                                                                                                               https://twitter.com/SKosgy/status/1243826970787549184/photo/1
## 306                                                                                                                                                                                                                                                                                          NA
## 307                                                                                                                                                                                                                                                                                          NA
## 308                                                                                                                                                                                                                      https://twitter.com/ServproHaverhil/status/1243613894704279552/photo/1
## 309                                                                                                                                                                                                                                                                                          NA
## 310                                                                                                                                                                                                                             https://twitter.com/hine_hin/status/1243269286203924484/video/1
## 311                                                                                                                                                                                                                                                                                          NA
## 312                                                                                                                                                                                                                                                                                          NA
## 313                                                                                                                                                                                                                                                                                          NA
## 314                                                                                                                                                                                                                                                                                          NA
## 315                                                                                                                                                                                                                                                                                          NA
## 316                                                                                                                                                                                                                                                                                          NA
## 317                                                                                                                                                                                                                          https://twitter.com/trustam1278/status/1243263497959608325/video/1
## 318                                                                                                                                                                                                                                                                                          NA
## 319                                                                                                                                                                                                                                                                                          NA
## 320                                                                                                                                                                                                                                                                                          NA
## 321                                                                                                                                                                                                                                                                                          NA
## 322                                                                                                                                                                                                                                                                                          NA
## 323                                                                                                                                                                                                                                                                                          NA
## 324                                                                                                                                                                                                                             https://twitter.com/Arizton2/status/1243583739210465288/photo/1
## 325                                                                                                                                                                                                                                                                                          NA
## 326                                                                                                                                                                                                                             https://twitter.com/Bakerdun/status/1243631885642862592/video/1
## 327                                                                                                                                                                                                                      https://twitter.com/perfectpolished/status/1243269837700333569/video/1
## 328                                                                                                                                                                                                                                                                                          NA
## 329                                                                                                                                                                                                                                                                                          NA
## 330                                                                                                                                                                                                                       https://twitter.com/theworldinnews/status/1243263400966270986/photo/1
## 331                                                                                                                                                                                                                                                                                          NA
## 332                                                                                                                                                                                                                                                                                          NA
## 333                                                                                                                                                                                                                                                                                          NA
## 334                                                                                                                                                                                                                                                                                          NA
## 335                                                                                                                                                                                                                                                                                          NA
## 336                                                                                                                                                                                                                                                                                          NA
## 337                                                                                                                                                                                                                                                                                          NA
## 338                                                                                                                                                                                                                                                                                          NA
## 339                                                                                                                                                                                                                       https://twitter.com/africanaffairs/status/1243651785987932165/photo/1
## 340                                                                                                                                                                                                                                                                                          NA
## 341                                                                                                                                                    https://twitter.com/thecraftykat/status/1243779543015571456/photo/1, https://twitter.com/thecraftykat/status/1243779543015571456/photo/1
## 342                                                                                                                                                                                                                                                                                          NA
## 343                                                                                                                                                                                                                        https://twitter.com/StuartShanker/status/1243304288073515014/photo/1
## 344                                                                                                                                                                                                                                                                                          NA
## 345                                                                                                                                                                                                                       https://twitter.com/elle_josephine/status/1243809483354062850/photo/1
## 346                                                                                                                                                                                                                                                                                          NA
## 347                                                                                                                                                                                                                                                                                          NA
## 348                                                                                                                                                                                                                                                                                          NA
## 349                                                                                                                                                                                                                                                                                          NA
## 350                                                                                                                                                                                                                         https://twitter.com/Greensfelder/status/1243638907704610816/photo/1
## 351                                                                                                                                                                                                                                                                                          NA
## 352                                                                                                                                                                                                                                                                                          NA
## 353                                                                                                                                                                                                                                                                                          NA
## 354                                                                                                                                                                                                                                                                                          NA
## 355                                                                                                                                                                                                                           https://twitter.com/JanesINTEL/status/1243583733942366209/photo/1
## 356                                                                                                                                                                                                                               https://twitter.com/tv6tnt/status/1243578921532211200/video/1
## 357                                                                                                                                                                                                                                                                                          NA
## 358                                                                                                                                                                                                                             https://twitter.com/fmhansen/status/1243797559669215234/photo/1
## 359                                                                                                                                                                                                                                                                                          NA
## 360                                                                                                                                                                                                                         https://twitter.com/EdwardKallon/status/1243255485266104330/video/1
## 361                                                                                                                                                                                                                                                                                          NA
## 362                                                                                                                                                                                                                                                                                          NA
## 363                                                                                                                                                                                                                          https://twitter.com/ShaulTurner/status/1243326555633434624/photo/1
## 364                                                                                                                                                                                                                                                                                          NA
## 365                                                                                                                                                                                                                                                                                          NA
## 366                                                                                                                                                                                                                                                                                          NA
## 367                                                                                                                                                                                                                         https://twitter.com/EvansShallom/status/1243646554822660104/photo/1
## 368                                                                                                                                                                                                                                                                                          NA
## 369                                                                                                                                                                                                                                                                                          NA
## 370                                                                                                                                                                                                                                                                                          NA
## 371                                                                                                                                                                                                                           https://twitter.com/JAMMULINKS/status/1243385173946667011/photo/1
## 372                                                                                                                                                                                                                           https://twitter.com/MsVWebster/status/1243268337867657217/video/1
## 373                                                                                                                                                                                                                             https://twitter.com/Bob_Grip/status/1243717873396260866/photo/1
## 374                                                                                                                                                                                                                                                                                          NA
## 375                                                                                                                                                                                                                                                                                          NA
## 376                                                                                                                                                                                                                              https://twitter.com/nanaibm/status/1243824716470763522/photo/1
## 377                                                                                                                                                                                                                              https://twitter.com/BikhamT/status/1243574607208161282/photo/1
## 378                                                                                                                                                                                                                                                                                          NA
## 379                                                                                                                                                                                                                            https://twitter.com/diannebee/status/1243566473202843649/photo/1
## 380                                                                                                                                                https://twitter.com/JasonPuckettTV/status/1243579579056500739/photo/1, https://twitter.com/JasonPuckettTV/status/1243579579056500739/photo/1
## 381                                                                                                                                                                                                                               https://twitter.com/espudo/status/1243743248205504512/photo/1
## 382                                                                                                                                                                                                                                                                                          NA
## 383                                                                                                                                                                                                                                                                                          NA
## 384                                                                                                                                                                                                                      https://twitter.com/BHARATS66169558/status/1243751422056747008/photo/1
## 385                                                                                                                                                                                                                                                                                          NA
## 386                                                                                                                                                                                                                         https://twitter.com/dj_blue_eyes/status/1243830775507795968/photo/1
## 387                                                                                                                                                                                                                                                                                          NA
## 388                                                                                                                                                                                                                                                                                          NA
## 389                                                                                                                                                                                                                          https://twitter.com/ChesterGlyn/status/1243286338423738368/photo/1
## 390                                                                                                                                                                                                                        https://twitter.com/letspawsfirst/status/1243646628587884551/photo/1
## 391                                                                                                                                                                                                                                                                                          NA
## 392                                                                                                                                                                                                                                                                                          NA
## 393                                                                                                                                                                                                                                                                                          NA
## 394                                                                                                                                                                                                                             https://twitter.com/IWNGwent/status/1243569848963289090/photo/1
## 395                                                                                                                                                                                                                                                                                          NA
## 396                                                                                                                                                                                                                                                                                          NA
## 397                                                                                                                                                                                                                                                                                          NA
## 398                                                                                                                                                                                                                           https://twitter.com/YaleGlobal/status/1243336052754067459/photo/1
## 399                                                                                                                                                                                                                                                                                          NA
## 400                                                                                                                                                                                                                            https://twitter.com/allafrica/status/1243653826189672455/photo/1
## 401                                                                                                                                                                                                                            https://twitter.com/FOX61News/status/1243232513901899778/photo/1
## 402                                                                                                                                                                                                                                                                                          NA
## 403                                                                                                                                                                                                                       https://twitter.com/JohnTerryTresh/status/1243580413660053504/video/1
## 404                                                                                                                                                                                                                                                                                          NA
## 405                                                                                                                                                                                                                                                                                          NA
## 406                                                                                                                                                                                                                                                                                          NA
## 407                                                                                                                                                                                                                                                                                          NA
## 408                                                                                                                                                                                                                          https://twitter.com/chasbrennan/status/1243256026792472578/photo/1
## 409                                                                                                                                                                                                                                                                                          NA
## 410                                                                                                                                                                                                                                                                                          NA
## 411                                                                                                                                                                                                                                                                                          NA
## 412                                                                                                                                                                                                                        https://twitter.com/ClockhouseEN2/status/1243606900178067457/video/1
## 413                                                                                                                                                                                                                                                                                          NA
## 414                                                                                                                                                                                                                             https://twitter.com/chat_owl/status/1243243957670338563/photo/1
## 415                                                                                                                                                                                                                                                                                          NA
## 416                                                                                                                                                                                                                                                                                          NA
## 417                                                                                                                                                                                                                           https://twitter.com/utaustin04/status/1243668037162729478/photo/1
## 418                                                                                                                                              https://twitter.com/sergiovivas1398/status/1243663300304326657/photo/1, https://twitter.com/sergiovivas1398/status/1243663300304326657/photo/1
## 419                                                                                                                                                                                                                                                                                          NA
## 420                                                                                                                                                                                                                                                                                          NA
## 421                                                                                                                                                                                                                                                                                          NA
## 422                                                                                                                                                                                                                        https://twitter.com/Current_Knewz/status/1243279211994976261/photo/1
## 423                                                                                                                                                                                                                                                                                          NA
## 424                                                                                                                                                                                                                                                                                          NA
## 425                                                                                                                                                                                                                            https://twitter.com/QuickTake/status/1243789932998660097/video/1
## 426                                                                                                                                                                                                                                                                                          NA
## 427                                                                                                                                                                                                                                                                                          NA
## 428                                                                                                                                                                                                                                                                                          NA
## 429                                                                                                                                                                                                                                                                                          NA
## 430                                                                                                                                                                                                                                                                                          NA
## 431                                                                                                                                                                                                                                                                                          NA
## 432                                                                                                                                                                                                                                                                                          NA
## 433                                                                                                                                                                                                                                                                                          NA
## 434                                                                                                                                                                                                                                                                                          NA
## 435                                                                                                                                                              https://twitter.com/KNX1070/status/1243255713536696320/photo/1, https://twitter.com/KNX1070/status/1243255713536696320/photo/1
## 436                                                                                                                                                                                                                      https://twitter.com/Champ1Diversity/status/1243231125255806976/photo/1
## 437                                                                                                                                                                                                                                                                                          NA
## 438                                                                                                                                                                                                                                                                                          NA
## 439                                                                                                                                                                                                                      https://twitter.com/PandemicCovid20/status/1243288382857285632/photo/1
## 440                                                                                                                                                                                                                                                                                          NA
## 441                                                                                                                                                                                                                                                                                          NA
## 442                                                                                                                                                                                                                             https://twitter.com/DHIN_HIE/status/1243586596231929857/photo/1
## 443                                                                                                                                                                                                                                                                                          NA
## 444                                                                                                                                                                                                                                                                                          NA
## 445                                                                                                                                                                                                                                                                                          NA
## 446                                                                                                                                                                                                                                                                                          NA
## 447                                                                                                                                                                                                                                                                                          NA
## 448                                                                                                                                                                                                                                                                                          NA
## 449                                                                                                                                                                                                                                                                                          NA
## 450                                                                                                                                                                                                                              https://twitter.com/mairkrh/status/1243310842168426497/photo/1
## 451                                                                                                                                                                                                                                                                                          NA
## 452                                                                                                                                                                                                                                                                                          NA
## 453                                                                                                                                                                                                                                                                                          NA
## 454                                                                                                                                                                                                                                                                                          NA
## 455                                                                                                                                                                                                                                                                                          NA
## 456                                                                                                                                                                                                                                                                                          NA
## 457                                                                                                                                                                                                                                                                                          NA
## 458                                                                                                                                                                                                                                                                                          NA
## 459                                                                                                                                                                                                                                                                                          NA
## 460                                                                                                                                                                                                                      https://twitter.com/Jennife25073649/status/1243260787495485440/photo/1
## 461                                                                                                                                                                                                                                                                                          NA
## 462                                                                                                                                                                                                                                                                                          NA
## 463                                                                                                                                                                                                                                                                                          NA
## 464                                                                                                                                                                                                                                                                                          NA
## 465                                                                                                                                                                                                                                                                                          NA
## 466                                                                                                                                                                                                                               https://twitter.com/KathTX/status/1243637137691545601/photo/1
## 467                                                                                                                                                                                                                                                                                          NA
## 468                                                                                                                                                                                                                       https://twitter.com/WildsidePhotog/status/1243306224784945152/photo/1
## 469                                                                                                                                                                                                                                                                                          NA
## 470                                                                                                                                                                                                                                                                                          NA
## 471                                                                                                                                                                                                                                                                                          NA
## 472                                                                                                                                                                                                                                                                                          NA
## 473                                                                                                                                                                                                                              https://twitter.com/bre77co/status/1243362375278854146/photo/1
## 474                                                                                                                                                                                                                          https://twitter.com/thalesgroup/status/1243588718331658241/video/1
## 475                                                                                                                                                                                                                                                                                          NA
## 476                                                                                                                                                                                                                                                                                          NA
## 477                                                                                                                                                                                                                                                                                          NA
## 478                                                                                                                                                                                                                             https://twitter.com/WTFSahil/status/1243617876264783872/photo/1
## 479                                                                                                                                                                                                                                                                                          NA
## 480                                                                                                                                                                                                                                                                                          NA
## 481                                                                                                                                                                                                                                                                                          NA
## 482                                                                                                                                                                                                                                                                                          NA
## 483                                                                                                                                                                                                                                                                                          NA
## 484                                                                                                                                                                                                                                                                                          NA
## 485                                                                                                                                                                                                                       https://twitter.com/YoutubeCherrie/status/1243257089293770753/video/1
## 486                                                                                                                                                                                                                                                                                          NA
## 487                                                                                                                                                                                                                                                                                          NA
## 488                                                                                                                                                                                                                       https://twitter.com/Sou_HotWhopper/status/1243328361541189632/photo/1
## 489                                                                                                                                                                                                                                                                                          NA
## 490                                                                                                                                                                                                                                                                                          NA
## 491                                                                                                                                                                                                                        https://twitter.com/Ahmadzai_rooh/status/1243809254340952064/photo/1
## 492                                                                                                                                                                                                                      https://twitter.com/Mohitka93905897/status/1243589634652848135/video/1
## 493                                                                                                                                                                                                                                                                                          NA
## 494                                                                                                                                                                                                                        https://twitter.com/7NewsAdelaide/status/1243660701270298624/video/1
## 495                                                                                                                                                                                                                              https://twitter.com/emkent5/status/1243294127762145284/photo/1
## 496                                                                                                                                                                                                                                                                                          NA
## 497                                                                                                                                                                                                                                                                                          NA
## 498                                                                                                                                                                                                                            https://twitter.com/SumaMzee2/status/1243238415660974080/photo/1
## 499                                                                                                                                                                                                                               https://twitter.com/soitiz/status/1243604703998590976/photo/1
## 500                                                                                                                                                                                                                                                                                          NA
## 501                                                                                                                                                                                                                            https://twitter.com/BuckForPA/status/1243253449195696134/photo/1
## 502                                                                                                                                                                                                                              https://twitter.com/vijansi/status/1243235914513559552/photo/1
## 503                                                                                                                                                                                                                                                                                          NA
## 504                                                                                                                                                                                                                                                                                          NA
## 505                                                                                                                                                                                                                                                                                          NA
## 506                                                                                                                                                                                                                                                                                          NA
## 507                                                                                                                                                                                                                                                                                          NA
## 508                                                                                                                                                                                                                           https://twitter.com/KeaneJodie/status/1243284858417315841/photo/1
## 509                                                                                                                                                                                                                                                                                          NA
## 510                                                                                                                                                                                                                                                                                          NA
## 511                                                                                                                                                                                                                                                                                          NA
## 512                                                                                                                                                                                                                                                                                          NA
## 513                                                                                                                                                                                                                                                                                          NA
## 514                                                                                                                                                                                                                                                                                          NA
## 515                                                                                                                                                                                                                                                                                          NA
## 516                                                                                                                                                                                                                                                                                          NA
## 517                                                                                                                                                                                                                                                                                          NA
## 518                                                                                                                                                                                                                                                                                          NA
## 519                                                                                                                                                                                                                                                                                          NA
## 520                                                                                                                                                                                                                                                                                          NA
## 521                                                                                                                                                                                                                                                                                          NA
## 522                                                                                                                                                                                                                      https://twitter.com/DragonDigitalM1/status/1243312776858071046/photo/1
## 523                                                                                                                                                                                                                        https://twitter.com/BernardDmello/status/1243746008120557568/photo/1
## 524                                                                                                                                                                                                                                                                                          NA
## 525                                                                                                                                                                                                                                                                                          NA
## 526                                                                                                                                                                                                                                                                                          NA
## 527                                                                                                                                                                                                                                                                                          NA
## 528                                                                                                                                                                                                                                                                                          NA
## 529                                                                                                                                                                                                                                                                                          NA
## 530                                                                                                                                                                                                                                                                                          NA
## 531                                                                                                                                                                                                                                                                                          NA
## 532                                                                                                                                                                                                                                                                                          NA
## 533                                                                                                                                                                                                                                                                                          NA
## 534                                                                                                                                                                                                                             https://twitter.com/cirewebb/status/1243597448825749506/photo/1
## 535                                                                                                                                                                                                                           https://twitter.com/johnfamous/status/1243663030799331328/photo/1
## 536                                                                                                                                                                                                                                                                                          NA
## 537                                                                                                                                                                                                                                                                                          NA
## 538                                                                                                                                                                                                                                                                                          NA
## 539                                                                                                                                                                                                                                                                                          NA
## 540                                                                                                                                                                                                                                                                                          NA
## 541                                                                                                                                                                                                                                                                                          NA
## 542                                                                                                                                                                                                                                                                                          NA
## 543                                                                                                                                                                                                                                                                                          NA
## 544                                                                                                                                                                                                                                                                                          NA
## 545                                                                                                                                                                                                                                                                                          NA
## 546                                                                                                                                                                                                                                                                                          NA
## 547                                                                                                                                                                                                                                                                                          NA
## 548                                                                                                                                                                                                                          https://twitter.com/NRT_English/status/1243770921388826624/photo/1
## 549                                                                                                                                                                                                                               https://twitter.com/Nax33r/status/1243607374578868224/video/1
## 550                                                                                                                                                                                                                                                                                          NA
## 551                                                                                                                                                                                                                                                                                          NA
## 552                                                                                                                                                                                                                                                                                          NA
## 553                                                                                                                                                                                                                                                                                          NA
## 554                                                                                                                                                                                                                                                                                          NA
## 555                                                                                                                                                                                                                                                                                          NA
## 556                                                                                                                                                                                                                                                                                          NA
## 557                                                                                                                                                                                                                                                                                          NA
## 558                                                                                                                                                                                                                                                                                          NA
## 559                                                                                                                                                                                                                      https://twitter.com/RedCrossBloodNC/status/1243675905953796097/photo/1
## 560                                                                                                                                                                                                                                                                                          NA
## 561                                                                                                                                                                                                                                                                                          NA
## 562                                                                                                                                                                                                                                                                                          NA
## 563                                                                                                                                                                                                                         https://twitter.com/ChimpReports/status/1243605775135752194/photo/1
## 564                                                                                                                                                                                                                       https://twitter.com/clarkfornorman/status/1243627853087899656/photo/1
## 565                                                                                                                                                                                                                                                                                          NA
## 566                                                                                                                                                                                                                                                                                          NA
## 567                                                                                                                                                                                                                       https://twitter.com/ThisIsMohit777/status/1243350866003783681/photo/1
## 568                                                                                                                                                                                                                                                                                          NA
## 569                                                                                                                                                                                                                                                                                          NA
## 570                                                                                                                                                                                                                                                                                          NA
## 571                                                                                                                                                                                                                                                                                          NA
## 572                                                                                                                                                                                                                                                                                          NA
## 573                                                                                                                                                                                                                      https://twitter.com/DonateAtDrivers/status/1243774850209996808/photo/1
## 574                                                                                                                                                                                                                       https://twitter.com/MicheleONeilAU/status/1243652528681570304/photo/1
## 575                                                                                                                                                                                                                                                                                          NA
## 576                                                                                                                                                                                                                                                                                          NA
## 577                                                                                                                                                                                                                                                                                          NA
## 578                                                                                                                                                                                                                                                                                          NA
## 579                                                                                                                                                                                                                                                                                          NA
## 580                                                                                                                                                                                                                                                                                          NA
## 581                                                                                                                                                                                                                                                                                          NA
## 582                                                                                                                                                                                                                                                                                          NA
## 583                                                                                                                                                                                                                                                                                          NA
## 584                                                                                                                                                                                                                                                                                          NA
## 585                                                                                                                                                                                                                                                                                          NA
## 586                                                                                                                                                                                                                                                                                          NA
## 587                                                                                                                                                                                                                                                                                          NA
## 588                                                                                                                                                                                                                                                                                          NA
## 589                                                                                                                                                                                                                       https://twitter.com/_DeepakSharma_/status/1243254552612102144/photo/1
## 590                                                                                                                                                                                                                         https://twitter.com/JayJaramillo/status/1243309848193892357/video/1
## 591                                                                                                                                                                                                                                                                                          NA
## 592                                                                                                                                                                                                                                                                                          NA
## 593                                                                                                                                                                                                                                                                                          NA
## 594                                                                                                                                                                                                                                                                                          NA
## 595                                                                                                                                                                                                                                                                                          NA
## 596                                                                                                                                                                                                                                                                                          NA
## 597                                                                                                                                                                                                                                                                                          NA
## 598                                                                                                                                                                                                                             https://twitter.com/ICGPnews/status/1243275225510412288/photo/1
## 599                                                                                                                                                                                                                        https://twitter.com/paulfrinkbhhs/status/1243315383236526084/video/1
## 600                                                                                                                                                                                                                           https://twitter.com/GhanaYouth/status/1243819930648264705/photo/1
## 601                                                                                                                                                                                                                      https://twitter.com/ResearchForGood/status/1243706383071170560/photo/1
## 602                                                                                                                                                                                                                                                                                          NA
## 603                                                                                                                                                                                                                                                                                          NA
## 604                                                                                                                                                                                                                                                                                          NA
## 605                                                                                                                                                                                                                                                                                          NA
## 606                                                                                                                                                                                                                                                                                          NA
## 607                                                                                                                                                                                                                                                                                          NA
## 608                                                                                                                                                                                                                                                                                          NA
## 609                                                                                                                                                                                                                                                                                          NA
## 610                                                                                                                                                                                                                          https://twitter.com/jjburquhart/status/1243326140162412544/photo/1
## 611                                                                                                                                                                                                                                                                                          NA
## 612                                                                                                                                                                                                                                                                                          NA
## 613                                                                                                                                                                                                                         https://twitter.com/CICRAcharity/status/1243568973310025730/photo/1
## 614                                                                                                                                                                                                                                                                                          NA
## 615                                                                                                                                                                                                                           https://twitter.com/Justin_SCF/status/1243257870621315073/photo/1
## 616                                                                                                                                                                                                                                                                                          NA
## 617                                                                                                                                                                                                                                                                                          NA
## 618                                                                                                                                                                                                                                                                                          NA
## 619                                                                                                                                                                                                                            https://twitter.com/KayOddone/status/1243372579613577216/photo/1
## 620                                                                                                                                                                                                                                                                                          NA
## 621                                                                                                                                                                                                                      https://twitter.com/AlissaA33893940/status/1243569827857543171/photo/1
## 622                                                                                                                                                                                                                                                                                          NA
## 623                                                                                                                                                                                                                             https://twitter.com/KPBSnews/status/1243682543754502144/photo/1
## 624                                                                                                                                                                                                                                                                                          NA
## 625                                                                                                                                                                                                                               https://twitter.com/psdxoh/status/1243335348773666816/photo/1
## 626                                                                                                                                                                                                                                                                                          NA
## 627                                                                                                                                                                                                                                                                                          NA
## 628                                                                                                                                                                                                                              https://twitter.com/nhsswft/status/1243228800424476674/photo/1
## 629                                                                                                                                                                                                                                                                                          NA
## 630                                                                                                                                                                                                                                                                                          NA
## 631                                                                                                                                                                                                                                                                                          NA
## 632                                                                                                                                                                                                                            https://twitter.com/PFIpolicy/status/1243247365869445120/photo/1
## 633                                                                                                                                                                                                                                                                                          NA
## 634                                                                                                                                                                                                                           https://twitter.com/SteedFiona/status/1243662261354409985/photo/1
## 635                                                                                                                                                                                                                                                                                          NA
## 636                                                                                                                                                                                                                                                                                          NA
## 637                                                                                                                                                                                                                                                                                          NA
## 638                                                                                                                                                                                                                                                                                          NA
## 639                                                                                                                                                                                                                                                                                          NA
## 640                                                                                                                                                                                                                      https://twitter.com/isaacortega2900/status/1243723651741929472/photo/1
## 641                                                                                                                                                    https://twitter.com/SelfdrivingC/status/1243800053136965632/photo/1, https://twitter.com/gerald_bader/status/1243797560759848961/photo/1
## 642                                                                                                                                                                                                                                                                                          NA
## 643                                                                                                                                                                                                                                                                                          NA
## 644                                                                                                                                                                                                                                                                                          NA
## 645                                                                                                                                                                                                                                                                                          NA
## 646                                                                                                                                                                                                                                                                                          NA
## 647                                                                                                                                                                                                                                                                                          NA
## 648                                                                                                                                                                                                                                                                                          NA
## 649                                                                                                                                                                                                                                                                                          NA
## 650                                                                                                                                                                                                                                                                                          NA
## 651                                                                                                                                                                                                                                                                                          NA
## 652                                                                                                                                                                                                                         https://twitter.com/JohnMaddenTV/status/1243640540828229633/photo/1
## 653                                                                                                                                                            https://twitter.com/musty527/status/1243661566957977602/photo/1, https://twitter.com/musty527/status/1243661566957977602/photo/1
## 654                                                                                                                                                                                                                                                                                          NA
## 655                                                                                                                                                                                                                                                                                          NA
## 656                                                                                                                                                                                                                                                                                          NA
## 657                                                                                                                                                                                                                                                                                          NA
## 658                                                                                                                                                                                                                                                                                          NA
## 659                                                                                                                                                                                                                                                                                          NA
## 660                                                                                                                                                                                                                          https://twitter.com/iamLisaHunt/status/1243707293679656960/photo/1
## 661                                                                                                                                                                                                                                                                                          NA
## 662                                                                                                                                                                                                                                                                                          NA
## 663                                                                                                                                                                                                                          https://twitter.com/MrMikeBlake/status/1243382882392928256/video/1
## 664                                                                                                                                                                                                                             https://twitter.com/nzlabour/status/1243295470400798720/photo/1
## 665                                                                                                                                                                                                                                                                                          NA
## 666                                                                                                                                                                                                                                                                                          NA
## 667                                                                                                                                                                                                                                                                                          NA
## 668                                                                                                                                                                                                                                                                                          NA
## 669                                                                                                                                                                                                                                                                                          NA
## 670                                                                                                                                                                                                                                                                                          NA
## 671                                                                                                                                                                                                                                                                                          NA
## 672                                                                                                                                                                                                                                                                                          NA
## 673                                                                                                                                                                                                                                                                                          NA
## 674                                                                                                                                                                                                                                                                                          NA
## 675                                                                                                                                                                                                                                                                                          NA
## 676                                                                                                                                                                                                                                                                                          NA
## 677                                                                                                                                                                                                                                                                                          NA
## 678                                                                                                                                                                                                                                                                                          NA
## 679                                                                                                                                                                                                                                                                                          NA
## 680                                                                                                                                                                                                                               https://twitter.com/KWCH12/status/1243235168040689665/photo/1
## 681                                                                                                                                                                                                                                                                                          NA
## 682                                                                                                                                                                                                                                                                                          NA
## 683                                                                                                                                                                                                                                                                                          NA
## 684                                                                                                                                                                                                                                                                                          NA
## 685                                                                                                                                                                                                                                                                                          NA
## 686                                                                                                                                                                                                                                                                                          NA
## 687                                                                                                                                                                                                                       https://twitter.com/MiaStJohnBoxer/status/1243575557540810752/photo/1
## 688                                                                                                                                                          https://twitter.com/LowyatNET/status/1243249174411243521/photo/1, https://twitter.com/LowyatNET/status/1243249174411243521/photo/1
## 689                                                                                                                                                                                                                                                                                          NA
## 690                                                                                                                                                                                                                               https://twitter.com/mthrel/status/1243269839915024387/video/1
## 691                                                                                                                                                                                                                      https://twitter.com/VishalG31703954/status/1243282639156588544/photo/1
## 692                                                                                                                                                                                                                                                                                          NA
## 693                                                                                                                                                                                                                                                                                          NA
## 694                                                                                                                                                                                                                                                                                          NA
## 695                                                                                                                                                                                                                                                                                          NA
## 696                                                                                                                                                                                                                                                                                          NA
## 697                                                                                                                                                                                                                        https://twitter.com/msrkshahnawaz/status/1243632506328346624/photo/1
## 698                                                                                                                                                                                                                                                                                          NA
## 699                                                                                                                                                                                                                                                                                          NA
## 700                                                                                                                                                                                                                                                                                          NA
## 701                                                                                                                                                                                                                                                                                          NA
## 702                                                                                                                                                                                                                                                                                          NA
## 703                                                                                                                                                                                                                                                                                          NA
## 704                                                                                                                                                                                                                                                                                          NA
## 705                                                                                                                                                                                                                                                                                          NA
## 706                                                                                                                                                                                                                         https://twitter.com/TheresaZ2019/status/1243647807682162690/photo/1
## 707                                                                                                                                                                                                                                                                                          NA
## 708                                                                                                                                                                                                                                                                                          NA
## 709                                                                                                                                                                                                                                                                                          NA
## 710                                                                                                                                                                                                                                                                                          NA
## 711                                                                                                                                                                                                                                                                                          NA
## 712                                                                                                                                                                                                                                                                                          NA
## 713                                                                                                                                                                                                                                                                                          NA
## 714                                                                                                                                                                                                                        https://twitter.com/realnikoraray/status/1243325639610023942/photo/1
## 715                                                                                                                                                                                                                                                                                          NA
## 716                                                                                                                                                                                                                                                                                          NA
## 717                                                                                                                                                                                                                      https://twitter.com/Delawarenewsrep/status/1243338092011876352/photo/1
## 718                                                                                                                                                                                                                                                                                          NA
## 719                                                                                                                                                                                                                                                                                          NA
## 720                                                                                                                                                                                                                                                                                          NA
## 721                                                                                                                                                                                                                                                                                          NA
## 722                                                                                                                                                                                                                      https://twitter.com/thejasminebrand/status/1243736885081427974/photo/1
## 723                                                                                                                                                                                                                                                                                          NA
## 724                                                                                                                                                                                                                                                                                          NA
## 725                                                                                                                                                                                                                                                                                          NA
## 726                                                                                                                                                                                                                             https://twitter.com/Nick_Kay/status/1243664351673884672/photo/1
## 727                                                                                                                                                                                                                                                                                          NA
## 728                                                                                                                                                                                                                                                                                          NA
## 729                                                                                                                                                                                                                                                                                          NA
## 730                                                                                                                                                                                                                                                                                          NA
## 731                                                                                                                                                                                                                                                                                          NA
## 732                                                                                                                                                                                                                            https://twitter.com/rhukkey_3/status/1243825426016894976/photo/1
## 733                                                                                                                                                                                                                                                                                          NA
## 734                                                                                                                                                                                                                                                                                          NA
## 735                                                                                                                                                                                                                                                                                          NA
## 736                                                                                                                                                                                                                                                                                          NA
## 737                                                                                                                                                                                                                      https://twitter.com/lexymarienitzel/status/1243708055637897216/video/1
## 738                                                                                                                                                                                                                         https://twitter.com/Act4Palestin/status/1242942743971856386/photo/1
## 739                                                                                                                                                                                                                                                                                          NA
## 740                                                                                                                                                                                                                        https://twitter.com/insights_west/status/1243607497769979904/photo/1
## 741                                                                                                                                                                                                                                                                                          NA
## 742                                                                                                                                                                                                                         https://twitter.com/travelweekly/status/1243230909693902853/photo/1
## 743                                                                                                                                                                                                                         https://twitter.com/JMutinda_snr/status/1243794505339490305/photo/1
## 744                                                                                                                                                                                                                                                                                          NA
## 745                                                                                                                                                                                                                                                                                          NA
## 746                                                                                                                                                                                                                                                                                          NA
## 747                                                                                                                                                                                                                                                                                          NA
## 748                                                                                                                                                                                                                                                                                          NA
## 749                                                                                                                                                                                                                                                                                          NA
## 750                                                                                                                                                                                                                                                                                          NA
## 751                                                                                                                                                                                                                      https://twitter.com/PoliticRealitic/status/1243308674015055873/photo/1
## 752                                                                                                                                                                                                                            https://twitter.com/swiftix24/status/1243604184399831043/photo/1
## 753                                                                                                                                                                                                                      https://twitter.com/omaralabdullah2/status/1243393307671068679/photo/1
## 754                                                                                                                                                                                                                           https://twitter.com/derekpoore/status/1243290805382586368/photo/1
## 755                                                                                                                                                                                                                              https://twitter.com/gnoto62/status/1243637524075085825/photo/1
## 756                                                                                                                                                                                                                      https://twitter.com/CapitalMidsNews/status/1243791682128117761/photo/1
## 757                                                                                                                                                                                                                      https://twitter.com/SimoMachiLmryol/status/1243286649645289474/photo/1
## 758                                                                                                                                                                                                                                                                                          NA
## 759                                                                                                                                                                                                                                                                                          NA
## 760                                                                                                                                                                                                                                                                                          NA
## 761                                                                                                                                                                                                                                                                                          NA
## 762                                                                                                                                                                                                                                                                                          NA
## 763                                                                                                                                                                                                                                                                                          NA
## 764                                                                                                                                                                                                                                                                                          NA
## 765                                                                                                                                                                                                                                                                                          NA
## 766                                                                                                                                                                                                                                                                                          NA
## 767                                                                                                                                                                                                                                                                                          NA
## 768                                                                                                                                                                                                                                                                                          NA
## 769                                                                                                                                                                                                                                                                                          NA
## 770                                                                                                                                                                                                                                                                                          NA
## 771                                                                                                                                                                                                                                                                                          NA
## 772                                                                                                                                                                                                                       https://twitter.com/ConsultingSior/status/1243589321317396480/photo/1
## 773                                                                                                                                                                                                                          https://twitter.com/UMSocCogLab/status/1243632403450605568/photo/1
## 774                                                                                                                                                                                                                         https://twitter.com/Tough_Muller/status/1243621919242563588/photo/1
## 775                                                                                                                                                                                                                                                                                          NA
## 776                                                                                                                                                                                                                                                                                          NA
## 777                                                                                                                                                                                                                                                                                          NA
## 778                                                                                                                                                                                                                                                                                          NA
## 779                                                                                                                                                                                                                       https://twitter.com/EngrIkramDawar/status/1243781645200773121/photo/1
## 780                                                                                                                                                                                                                             https://twitter.com/meobaldo/status/1243582871161405445/photo/1
## 781                                                                                                                                                                                                                                                                                          NA
## 782                                                                                                                                                                                                                                                                                          NA
## 783                                                                                                                                                                                                                                                                                          NA
## 784                                                                                              https://twitter.com/c_dabbz/status/1243810822242988037/photo/1, https://twitter.com/c_dabbz/status/1243810822242988037/photo/1, https://twitter.com/c_dabbz/status/1243810822242988037/photo/1
## 785                                                                                                                                                                                                                      https://twitter.com/MacburyKristina/status/1243227296452001792/photo/1
## 786                                                                                                                                                                                                                              https://twitter.com/05HAWKI/status/1243660345308258308/photo/1
## 787                                                                                                                                                                                                                                                                                          NA
## 788                                                                                                                                                                                                                                                                                          NA
## 789                                                                                                                                                          https://twitter.com/HeraldWPG/status/1243667373179244544/photo/1, https://twitter.com/HeraldWPG/status/1243667373179244544/photo/1
## 790                                                                                                                                                                                                                                                                                          NA
## 791                                                                                                                                                                                                                                                                                          NA
## 792                                                                                                                                                                                                                       https://twitter.com/PetrasFreeMuse/status/1243609176099586048/photo/1
## 793                                                                                                                                                                                                                                                                                          NA
## 794                                                                                                                                                                                                                                                                                          NA
## 795                                                                                                                                                                                                                                                                                          NA
## 796                                                                                                                                                                                                                                                                                          NA
## 797                                                                                                                                                                                                                                                                                          NA
## 798                                                                                                                                                                                                                                                                                          NA
## 799                                                                                                                                                                                                                                                                                          NA
## 800                                                                                                                                                                                                                                                                                          NA
## 801                                                                                                                                                                                                                           https://twitter.com/HanksMom44/status/1243686265049903106/photo/1
## 802                                                                                                                                                                                                                            https://twitter.com/DanMidd84/status/1243235639035744257/photo/1
## 803                                                                                                                                                                                                                                                                                          NA
## 804                                                                                                                                                                                                                                                                                          NA
## 805                                                                                                                                                                                                                                                                                          NA
## 806                                                                                                                                                                                                                                                                                          NA
## 807                                                                                                                                                                                                                                                                                          NA
## 808                                                                                                                                                                                                                                                                                          NA
## 809                                                                                                                                                                                                                                                                                          NA
## 810                                                                                                                                                                                                                                                                                          NA
## 811                                                                                  https://twitter.com/Libyan4life/status/1243341989346717696/photo/1, https://twitter.com/Libyan4life/status/1243341989346717696/photo/1, https://twitter.com/Libyan4life/status/1243341989346717696/photo/1
## 812                                                                                                                                                                                                                                                                                          NA
## 813                                                                                                                                                                                                                                                                                          NA
## 814                                                                                                                                                                                                                                                                                          NA
## 815                                                                                                                                                                                                                           https://twitter.com/247nigeria/status/1243656727276539908/photo/1
## 816                                                                                                                                                                                                                                                                                          NA
## 817                                                                                                                                                https://twitter.com/Samsonprolific/status/1243258038418538497/photo/1, https://twitter.com/Samsonprolific/status/1243258038418538497/photo/1
## 818                                                                                                                                                                                                                                                                                          NA
## 819                                                                                                                                                                                                                      https://twitter.com/DigitaliveWorld/status/1243369787427819521/photo/1
## 820                                                                                                                                                                                                                                                                                          NA
## 821                                                                                                                                                                                                                                                                                          NA
## 822                                                                                                                                                                                                                              https://twitter.com/UoBarts/status/1243234310246760449/photo/1
## 823                                                                                                                                                                                                                                                                                          NA
## 824                                                                                                                                                                                                                          https://twitter.com/divaonline1/status/1243696251322765314/photo/1
## 825                                                                                                                                                                                                                                                                                          NA
## 826                                                                                                                                                                                                                           https://twitter.com/JimmyUmesh/status/1243390676122755072/photo/1
## 827                                                                                                                                                                                                                                                                                          NA
## 828                                                                                                                                                                                                                                                                                          NA
## 829                                                                                                                                                                                                                                                                                          NA
## 830                                                                                                                                                                                                                                                                                          NA
## 831                              https://twitter.com/aertrip/status/1243828830147473409/photo/1, https://twitter.com/aertrip/status/1243828830147473409/photo/1, https://twitter.com/aertrip/status/1243828830147473409/photo/1, https://twitter.com/aertrip/status/1243828830147473409/photo/1
## 832                                                                                                                                                                                                                                                                                          NA
## 833                                                                                                                                                                                                                                                                                          NA
## 834                                                                                                                                                                                                                                                                                          NA
## 835                                                                                                                                                                                                                                                                                          NA
## 836                                                                                                                                                                                                                         https://twitter.com/realiansaint/status/1243750762926260224/photo/1
## 837                                                                                                                                                                                                                                                                                          NA
## 838                                                                                                                                                                                                                                                                                          NA
## 839                                                                                                                                                                                                                                                                                          NA
## 840                                                                                                                                                                                                                                                                                          NA
## 841                                                                                                                                                                                                                                                                                          NA
## 842                                                                                                                                                                                                                                                                                          NA
## 843                                                                                                                                                                                                                                                                                          NA
## 844                                                                                                                                                                                                                                                                                          NA
## 845                                                                                                                                                                                                                                                                                          NA
## 846                                                                                                                                                                                                                                                                                          NA
## 847                                                                                                                                                                                                                                                                                          NA
## 848                                                                                                                                                                                                                                                                                          NA
## 849                                                                                                                                                                                                                                                                                          NA
## 850                                                                                                                                                                                                                                                                                          NA
## 851                                                                                                                                                                                                                           https://twitter.com/Carmenable/status/1243828636114919424/photo/1
## 852                                                                                                                                                                                                                                                                                          NA
## 853                                                                                                                                                                                                                                                                                          NA
## 854                                                                                                                                                                                                                                                                                          NA
## 855                                                                                                                                                                                                                                                                                          NA
## 856                                                                                                                                                                                                                                                                                          NA
## 857                                                                                                                                                                                                                                                                                          NA
## 858                                                                                                                                                                                                                          https://twitter.com/ABousquette/status/1243272708550463504/photo/1
## 859                                                                                                                                                                                                                                                                                          NA
## 860                                                                                                                                                                                                                               https://twitter.com/chubbm/status/1243798064810332165/photo/1
## 861                                                                                                                                                                                                                                                                                          NA
## 862                                                                                                                                                                                                                                                                                          NA
## 863                                                                                                                                                                                                                                                                                          NA
## 864                                                                                                                                                                                                                                                                                          NA
## 865                                                                                                                                                                                                                         https://twitter.com/WesternUNews/status/1243669934984454144/photo/1
## 866                                                                                                                                                                                                                                                                                          NA
## 867                                                                                                                                                                                                                      https://twitter.com/Vic_toriaBailey/status/1243226714014179329/photo/1
## 868                                                                                                                                                                                                                                                                                          NA
## 869                                                                                                                                                                                                                                                                                          NA
## 870                                                                                                                                                                                                                                                                                          NA
## 871                                                                                                                                                                                                                                                                                          NA
## 872                                                                                                                                                                                                                                                                                          NA
## 873                                                                                                                                                                                                                                                                                          NA
## 874                                                                                                                                                                                                                                                                                          NA
## 875                                                                                                                                                                                                                                                                                          NA
## 876                                                                                                                                                                                                                                                                                          NA
## 877                                                                                                                                                                                                                                                                                          NA
## 878                                                                                                                                                                                                                                                                                          NA
## 879                                                                                                                                                                                                                                                                                          NA
## 880                                                                                                                                                                                                                                                                                          NA
## 881                                                                                                                                                                                                                                                                                          NA
## 882                                                                                                                                                                                                                                                                                          NA
## 883                                                                                                                                                                                                                                                                                          NA
## 884                                                                                                                                                                                                                                                                                          NA
## 885                                                                                                                                                                                                                                                                                          NA
## 886                                                                                                                                                                                                                          https://twitter.com/mscenalover/status/1243243634075582464/photo/1
## 887                                                                                                                                                                                                                                                                                          NA
## 888                                                                                                                                                                                                                                                                                          NA
## 889                                                                                                                                                                                                                                                                                          NA
## 890                                                                                                                                                                                                                          https://twitter.com/leo_mulvany/status/1243249453546553347/photo/1
## 891                                                                                                                                                                                                                                                                                          NA
## 892                                                                                                                                                                                                                                                                                          NA
## 893                                                                                                                                                                                                                        https://twitter.com/ProMarket_org/status/1243232497737109505/photo/1
## 894                                                                                                                                                                                                                      https://twitter.com/OccHealthSafety/status/1243281571903426572/photo/1
## 895                                                                                                                                                                                                                                                                                          NA
## 896                                                                                                                                                                                                                                                                                          NA
## 897                                                                                                                                                                                                                                                                                          NA
## 898                                                                                                                                                                                                                         https://twitter.com/HolyDivine98/status/1243298271449305088/photo/1
## 899                                                                                                                                                                                                                                                                                          NA
## 900                                                                                                                                                                                                                                                                                          NA
## 901                                                                                                                                                                                                                                                                                          NA
## 902                                                                                                                                                                                                                          https://twitter.com/imSGaharwar/status/1243779679447736326/photo/1
## 903                                                                                                                                                                                                                                                                                          NA
## 904                                                                                                                                                                                                                        https://twitter.com/ParkerClimate/status/1243640189089710081/photo/1
## 905                                                                                                                                                                                                                                                                                          NA
## 906                                                                                                                                                                                                                                                                                          NA
## 907                                                                                                                                                                                                                                                                                          NA
## 908                                                                                                                                                                                                                      https://twitter.com/EastHertsPolice/status/1243571455343890436/photo/1
## 909                                                                                                                                                                                                                                                                                          NA
## 910                                                                                                                                                                                                                                                                                          NA
## 911                                                                                                                                                                                                                                                                                          NA
## 912                                                                                                                                                                                                                                                                                          NA
## 913                                                                                                                                                                                                                                                                                          NA
## 914                                                                                                                                                                                                                                                                                          NA
## 915                                                                                                                                                                                                                         https://twitter.com/lindoscott14/status/1243654463975567360/photo/1
## 916      https://twitter.com/daputsetyadii/status/1243384663852208132/photo/1, https://twitter.com/daputsetyadii/status/1243384663852208132/photo/1, https://twitter.com/daputsetyadii/status/1243384663852208132/photo/1, https://twitter.com/daputsetyadii/status/1243384663852208132/photo/1
## 917                                                                                                                                                                                                                                                                                          NA
## 918                                                                                                                                                                                                                                                                                          NA
## 919                                                                                                                                                                                                                                                                                          NA
## 920                                                                                                                                                                                                                                                                                          NA
## 921                                                                                                                                                                                                                                                                                          NA
## 922                                                                                                                                                                                                                                                                                          NA
## 923                                                                                                                                                                                                                                                                                          NA
## 924                                                                                                                                                                                                                                                                                          NA
## 925                                                                                                                                                                                                                            https://twitter.com/AJGershTV/status/1243228031075975169/video/1
## 926                                                                                                                                                                                                                                                                                          NA
## 927                                                                                                                                                                                                                                                                                          NA
## 928                                                                                                                                                                                                                              https://twitter.com/DCUC_HQ/status/1243590609035759622/photo/1
## 929                                                                                                                                              https://twitter.com/PalmdaleMedical/status/1243641795067641859/photo/1, https://twitter.com/PalmdaleMedical/status/1243641795067641859/photo/1
## 930                                                                                                                                                                                                                            https://twitter.com/itskarugu/status/1243377511632781313/video/1
## 931                                                                                                                                                                                                                                                                                          NA
## 932                                                                                                                                                                                                                                                                                          NA
## 933                                                                                                                                                                                                                                                                                          NA
## 934                                                                            https://twitter.com/defencealerts/status/1243809717916520450/photo/1, https://twitter.com/defencealerts/status/1243809717916520450/photo/1, https://twitter.com/defencealerts/status/1243809717916520450/photo/1
## 935                                                                                                                                                                                                                                                                                          NA
## 936                                                                                                                                                                                                                                                                                          NA
## 937                                                                                                                                                                                                                              https://twitter.com/Local12/status/1243699323587588096/photo/1
## 938                                                                                                                                                                                                                                                                                          NA
## 939                                                                                                                                                                                                                                                                                          NA
## 940                                                                                                                                                                                                                      https://twitter.com/ImnotaREALgamer/status/1243230952614133760/photo/1
## 941                                                                                                                                                                                                                      https://twitter.com/cazenave_franck/status/1243278314204250112/photo/1
## 942                                                                                                                                                                                                                                                                                          NA
## 943                                                                                                                                                                                                                                                                                          NA
## 944                                                                                                                                                                                                                                                                                          NA
## 945                                                                                                                                                                                                                         https://twitter.com/MommyMagen00/status/1243247414837940226/photo/1
## 946                                                                                                                                                                                                                                                                                          NA
## 947                                                                                                                                                                                                                        https://twitter.com/openletterbot/status/1243733098396659712/photo/1
## 948                                                                                                                                                                                                                       https://twitter.com/InlandRegional/status/1243306027124002817/video/1
## 949                                                                                                                                                                                                                      https://twitter.com/AmazingDouglass/status/1243358046127919106/photo/1
## 950                                                                                                                                                                                                                                                                                          NA
## 951                                                                                                                                                                                                                                                                                          NA
## 952                                                                                                                                                                                                                             https://twitter.com/PHSAofBC/status/1243253950050164737/photo/1
## 953                                                                                                                                                                                                                             https://twitter.com/mgotoo16/status/1243636817724944386/photo/1
## 954                                                                                                                                                                                                                                                                                          NA
## 955                                                                                                                                                                                                                                                                                          NA
## 956                                                                                                                                                                                                                               https://twitter.com/NASWCO/status/1243293808827207680/photo/1
## 957                                                                         https://twitter.com/TheBindingSite/status/1243580549727432707/photo/1, https://twitter.com/TheBindingSite/status/1243580549727432707/photo/1, https://twitter.com/TheBindingSite/status/1243580549727432707/photo/1
## 958                                                                                                                                                                                                                                                                                          NA
## 959                                                                                                                                                                                                                                                                                          NA
## 960                                                                                                                                                                                                                                                                                          NA
## 961                                                                                                                                                                                                                                                                                          NA
## 962                                                                                                                                                                                                                                                                                          NA
## 963                                                                                                                                                                                                                                                                                          NA
## 964                                                                                                                                                                                                                                                                                          NA
## 965                                                                                                                                                                                                                            https://twitter.com/insideHPC/status/1243274524646232064/photo/1
## 966                                                                                                                                                                                                                                                                                          NA
## 967                                                                                                                                                                                                                                                                                          NA
## 968                                                                                                                                                                                                                                                                                          NA
## 969                                                                                                                                                                                                                                                                                          NA
## 970                                                                                                                                                                                                                                                                                          NA
## 971                                                                                                                                                                                                                                                                                          NA
## 972                                                                                                                                                                                                                                                                                          NA
## 973                                                                                                                                                                                                                        https://twitter.com/Evelyn1234515/status/1243311996839305216/photo/1
## 974                                                                                                                                                                                                                                                                                          NA
## 975                                                                                                                                                                                                                                                                                          NA
## 976                                                                                                                                                                                                                                                                                          NA
## 977                                                                                                                                                                                                                                                                                          NA
## 978                                                                                                                                                                                                                                                                                          NA
## 979                                                                                                                                                                                                                                                                                          NA
## 980                                                                                                                                                                                                                                                                                          NA
## 981                                                                                                                                                                                                                             https://twitter.com/aightdom/status/1243330380381458433/photo/1
## 982                                                                                                                                                                                                                                                                                          NA
## 983                                                                                                                                                                                                                                                                                          NA
## 984                                                                                                                                                                                                                                                                                          NA
## 985                                                                                                                                                                                                                                                                                          NA
## 986                                                                                                                                                                                                                                                                                          NA
## 987                                                                                                                                                                                                                                                                                          NA
## 988                                                                                                                                                                                                                                                                                          NA
## 989                                                                                                                                                                                                                                                                                          NA
## 990                                                                                                                                                                                                                                                                                          NA
## 991                                                                                                                                                                                                                                                                                          NA
## 992                                                                                                                                                                                                                                                                                          NA
## 993                                                                                                                                                                                                                      https://twitter.com/CityofRoseville/status/1243617587445010432/photo/1
## 994                                                                                                                                                                                                                                                                                          NA
## 995                                                                                                                                                                                                                                                                                          NA
## 996                                                                                                                                                                                                                                                                                          NA
## 997                                                                                                                                                                                                                         https://twitter.com/ISDFPR_Watch/status/1243593098908839937/photo/1
## 998                                                                                                                                                                                                                           https://twitter.com/frog_happy/status/1243298396095594497/photo/1
## 999                                                                                                                                                                                                                                                                                          NA
## 1000                                                                                                                                                                                                                                                                                         NA
## 1001                                                                                                                                                                                                                                                                                         NA
## 1002                                                                                                                                                                                                                                                                                         NA
## 1003                                                                                                                                                                                                                                                                                         NA
## 1004                                                                                                                                                                                                                                                                                         NA
## 1005                                                                                                                                                                                                                                                                                         NA
## 1006                                                                                                                                                                                                                                                                                         NA
## 1007                                                                                                                                                                                                                                                                                         NA
## 1008                                                                                                                                                                                                                                                                                         NA
## 1009                                                                                                                                                                                                                                                                                         NA
## 1010                                                                                                                                                                                                                      https://twitter.com/CHPBaldwinPark/status/1243649166166786049/photo/1
## 1011                                                                                                                                                                                                                                                                                         NA
## 1012                                                                                                                                                                                                                        https://twitter.com/yp_hollywood/status/1243732706183262208/video/1
## 1013                                                                                                                                                                                                                      https://twitter.com/insidethebadge/status/1243646340350926848/photo/1
## 1014                                                                                                                                                                                                                     https://twitter.com/tripuranewslive/status/1243743174012604416/photo/1
## 1015                                                                                                                                                                                                                          https://twitter.com/AmahPepple/status/1243276678278905856/photo/1
## 1016                                                                                                                                                                                                                                                                                         NA
## 1017                                                                                                                                                                                                                                                                                         NA
## 1018                                                                                                                                                                                                                                                                                         NA
## 1019                                                                                                                                                                                                                                                                                         NA
## 1020                                                                                                                                                                                                                                                                                         NA
## 1021                                                                                                                                                                                                                                                                                         NA
## 1022                                                                                                                                                                                                                            https://twitter.com/MT_Strat/status/1243361208343728128/photo/1
## 1023                                                                                                                                                                                                                     https://twitter.com/meldewey_photos/status/1243587676361629697/photo/1
## 1024                                                                                                                                                                                                                                                                                         NA
## 1025                                                                                                                                                                                                                                                                                         NA
## 1026                                                                                                                                                                                                                                                                                         NA
## 1027                                                                                                                                                                                                                                                                                         NA
## 1028                                                                                                                                                                                                                                                                                         NA
## 1029                                                                                                                                                                                                                                                                                         NA
## 1030                                                                                                                                                                                                                                                                                         NA
## 1031                                                                                                                                                                                                                                                                                         NA
## 1032                                                                                                                                                                                                                                                                                         NA
## 1033                                                                                                                                                                                                                                                                                         NA
## 1034                                                                                                                                                                                                                                                                                         NA
## 1035                                                                                                                                                                                                                                                                                         NA
## 1036                                                                                                                                                                                                                         https://twitter.com/SueDudasova/status/1243822800189763585/photo/1
## 1037                                                                                                                                                                                                                                                                                         NA
## 1038                                                                                                                                                                                                                            https://twitter.com/Maan0078/status/1243597899960848397/photo/1
## 1039                                                                                                                                                                                                                                                                                         NA
## 1040                                                                                                                                                                                                                                                                                         NA
## 1041                                                                                                                                                                                                                                                                                         NA
## 1042                                                                                                                                                                                                                                                                                         NA
## 1043                                                                                                                                                                                                                          https://twitter.com/RamyRefaey/status/1243291623175446529/photo/1
## 1044                                                                                                                                                                                                                                                                                         NA
## 1045                                                                                                                                                                                                                                                                                         NA
## 1046                                                                                                                                                                                                                                                                                         NA
## 1047                                                                                                                                                                                                                                                                                         NA
## 1048                                                                                                                                                                                                                                                                                         NA
## 1049                                                                                                                                                                                                                                                                                         NA
## 1050                                                                                                                                                                                                                                                                                         NA
## 1051                                                                                                                                                                                                                                                                                         NA
## 1052                                                                                                                                                                                                                                                                                         NA
## 1053                                                                                                                                                                                                                        https://twitter.com/rural_remote/status/1243659281230172160/photo/1
## 1054                                                                                                                                                                                                                       https://twitter.com/VariousStrata/status/1243639042790604800/photo/1
## 1055                                                                                                                                                                                                                                                                                         NA
## 1056                                                                                                                                                                                                                                                                                         NA
## 1057                                                                                                                                                                                                                                                                                         NA
## 1058                                                                                                                                                                                                                                                                                         NA
## 1059                                                                                                                                                                                                                                                                                         NA
## 1060                                                                                                                                                                                                                                                                                         NA
## 1061                                                                                                                                                                                                                                                                                         NA
## 1062                                                                                                                                                                                                                                                                                         NA
## 1063                                                                                                                                                                                                                                                                                         NA
## 1064                                                                                                                                                                                                                                                                                         NA
## 1065                                                                                                                                                                                                                                                                                         NA
## 1066                                                                                                                                                                                                                                                                                         NA
## 1067                                                                                                                                                                                                                          https://twitter.com/Mdalawize2/status/1243253040502759425/photo/1
## 1068                                                                                                                                                                                                                                                                                         NA
## 1069                                                                                                                                                                                                                                                                                         NA
## 1070                                                                                                                                                                                                                                                                                         NA
## 1071                                                                                                                                                                                                                                                                                         NA
## 1072                                                                                                                                                                                                                                                                                         NA
## 1073                                                                                                                                                                                                                                                                                         NA
## 1074                                                                                                                                                                                                                                                                                         NA
## 1075                                                                                                                                                                                                                                                                                         NA
## 1076                                                                                                                                                                                                                                                                                         NA
## 1077                                                                                                                                                                                                                                                                                         NA
## 1078                                                                                                                                                                                                                                                                                         NA
## 1079                                                                                                                                                                                                                                                                                         NA
## 1080                                                                                                                                                                                                                                                                                         NA
## 1081                                                                                                                                                                                                                           https://twitter.com/JaronSpor/status/1243309938379837440/photo/1
## 1082                                                                                                                                                                                                                             https://twitter.com/erikrex/status/1243760058468573184/photo/1
## 1083                                                                                                                                                                                                                                                                                         NA
## 1084                                                                                                                                                                                                                                                                                         NA
## 1085                                                                                                                                                                                                                                                                                         NA
## 1086                                                                                                                                                                                                                                                                                         NA
## 1087                                                                                                                                                                                                                                                                                         NA
## 1088     https://twitter.com/RichardKNaidu/status/1243752623166992384/photo/1, https://twitter.com/RichardKNaidu/status/1243752623166992384/photo/1, https://twitter.com/RichardKNaidu/status/1243752623166992384/photo/1, https://twitter.com/RichardKNaidu/status/1243752623166992384/photo/1
## 1089                                                                                                                                                                                                                                                                                         NA
## 1090                                                                                                                                                                                                                                                                                         NA
## 1091                                                                                                                                                                                                                                                                                         NA
## 1092                                                                                                                                                                                                                                                                                         NA
## 1093                                                                                                                                                                                                                                                                                         NA
## 1094                                                                                                                                                                                                                                                                                         NA
## 1095                                                                                                                                                                                                                                                                                         NA
## 1096                                                                                                                                                                                                                                                                                         NA
## 1097                                                                                                                                                                                                                                                                                         NA
## 1098                                                                                                                                                                                                                                                                                         NA
## 1099                                                                                                                                                                                                                                                                                         NA
## 1100                                                                                                                                                                                                                          https://twitter.com/duygumssuu/status/1243623641151086592/photo/1
## 1101                                                                                                                                                                                                                                                                                         NA
## 1102                                                                                                                                                                                                                       https://twitter.com/JacquesLouisa/status/1243642384682037249/photo/1
## 1103                                                                                                                                                                                                                                                                                         NA
## 1104                                                                                                                                                                                                                                                                                         NA
## 1105                                                                                                                                                                                                                                                                                         NA
## 1106                                                                                                                                                                                                                                                                                         NA
## 1107                                                                                                                                                                                                                                                                                         NA
## 1108                                                                                                                                                                                                                                                                                         NA
## 1109                                                                                                                                                                                                                                                                                         NA
## 1110                                                                                                                                                                                                                                                                                         NA
## 1111                                                                                                                                                                                                                                                                                         NA
##      ext_media_type
## 1              <NA>
## 2              <NA>
## 3              <NA>
## 4              <NA>
## 5              <NA>
## 6              <NA>
## 7              <NA>
## 8              <NA>
## 9              <NA>
## 10             <NA>
## 11             <NA>
## 12             <NA>
## 13             <NA>
## 14             <NA>
## 15             <NA>
## 16             <NA>
## 17             <NA>
## 18             <NA>
## 19             <NA>
## 20             <NA>
## 21             <NA>
## 22             <NA>
## 23             <NA>
## 24             <NA>
## 25             <NA>
## 26             <NA>
## 27             <NA>
## 28             <NA>
## 29             <NA>
## 30             <NA>
## 31             <NA>
## 32             <NA>
## 33             <NA>
## 34             <NA>
## 35             <NA>
## 36             <NA>
## 37             <NA>
## 38             <NA>
## 39             <NA>
## 40             <NA>
## 41             <NA>
## 42             <NA>
## 43             <NA>
## 44             <NA>
## 45             <NA>
## 46             <NA>
## 47             <NA>
## 48             <NA>
## 49             <NA>
## 50             <NA>
## 51             <NA>
## 52             <NA>
## 53             <NA>
## 54             <NA>
## 55             <NA>
## 56             <NA>
## 57             <NA>
## 58             <NA>
## 59             <NA>
## 60             <NA>
## 61             <NA>
## 62             <NA>
## 63             <NA>
## 64             <NA>
## 65             <NA>
## 66             <NA>
## 67             <NA>
## 68             <NA>
## 69             <NA>
## 70             <NA>
## 71             <NA>
## 72             <NA>
## 73             <NA>
## 74             <NA>
## 75             <NA>
## 76             <NA>
## 77             <NA>
## 78             <NA>
## 79             <NA>
## 80             <NA>
## 81             <NA>
## 82             <NA>
## 83             <NA>
## 84             <NA>
## 85             <NA>
## 86             <NA>
## 87             <NA>
## 88             <NA>
## 89             <NA>
## 90             <NA>
## 91             <NA>
## 92             <NA>
## 93             <NA>
## 94             <NA>
## 95             <NA>
## 96             <NA>
## 97             <NA>
## 98             <NA>
## 99             <NA>
## 100            <NA>
## 101            <NA>
## 102            <NA>
## 103            <NA>
## 104            <NA>
## 105            <NA>
## 106            <NA>
## 107            <NA>
## 108            <NA>
## 109            <NA>
## 110            <NA>
## 111            <NA>
## 112            <NA>
## 113            <NA>
## 114            <NA>
## 115            <NA>
## 116            <NA>
## 117            <NA>
## 118            <NA>
## 119            <NA>
## 120            <NA>
## 121            <NA>
## 122            <NA>
## 123            <NA>
## 124            <NA>
## 125            <NA>
## 126            <NA>
## 127            <NA>
## 128            <NA>
## 129            <NA>
## 130            <NA>
## 131            <NA>
## 132            <NA>
## 133            <NA>
## 134            <NA>
## 135            <NA>
## 136            <NA>
## 137            <NA>
## 138            <NA>
## 139            <NA>
## 140            <NA>
## 141            <NA>
## 142            <NA>
## 143            <NA>
## 144            <NA>
## 145            <NA>
## 146            <NA>
## 147            <NA>
## 148            <NA>
## 149            <NA>
## 150            <NA>
## 151            <NA>
## 152            <NA>
## 153            <NA>
## 154            <NA>
## 155            <NA>
## 156            <NA>
## 157            <NA>
## 158            <NA>
## 159            <NA>
## 160            <NA>
## 161            <NA>
## 162            <NA>
## 163            <NA>
## 164            <NA>
## 165            <NA>
## 166            <NA>
## 167            <NA>
## 168            <NA>
## 169            <NA>
## 170            <NA>
## 171            <NA>
## 172            <NA>
## 173            <NA>
## 174            <NA>
## 175            <NA>
## 176            <NA>
## 177            <NA>
## 178            <NA>
## 179            <NA>
## 180            <NA>
## 181            <NA>
## 182            <NA>
## 183            <NA>
## 184            <NA>
## 185            <NA>
## 186            <NA>
## 187            <NA>
## 188            <NA>
## 189            <NA>
## 190            <NA>
## 191            <NA>
## 192            <NA>
## 193            <NA>
## 194            <NA>
## 195            <NA>
## 196            <NA>
## 197            <NA>
## 198            <NA>
## 199            <NA>
## 200            <NA>
## 201            <NA>
## 202            <NA>
## 203            <NA>
## 204            <NA>
## 205            <NA>
## 206            <NA>
## 207            <NA>
## 208            <NA>
## 209            <NA>
## 210            <NA>
## 211            <NA>
## 212            <NA>
## 213            <NA>
## 214            <NA>
## 215            <NA>
## 216            <NA>
## 217            <NA>
## 218            <NA>
## 219            <NA>
## 220            <NA>
## 221            <NA>
## 222            <NA>
## 223            <NA>
## 224            <NA>
## 225            <NA>
## 226            <NA>
## 227            <NA>
## 228            <NA>
## 229            <NA>
## 230            <NA>
## 231            <NA>
## 232            <NA>
## 233            <NA>
## 234            <NA>
## 235            <NA>
## 236            <NA>
## 237            <NA>
## 238            <NA>
## 239            <NA>
## 240            <NA>
## 241            <NA>
## 242            <NA>
## 243            <NA>
## 244            <NA>
## 245            <NA>
## 246            <NA>
## 247            <NA>
## 248            <NA>
## 249            <NA>
## 250            <NA>
## 251            <NA>
## 252            <NA>
## 253            <NA>
## 254            <NA>
## 255            <NA>
## 256            <NA>
## 257            <NA>
## 258            <NA>
## 259            <NA>
## 260            <NA>
## 261            <NA>
## 262            <NA>
## 263            <NA>
## 264            <NA>
## 265            <NA>
## 266            <NA>
## 267            <NA>
## 268            <NA>
## 269            <NA>
## 270            <NA>
## 271            <NA>
## 272            <NA>
## 273            <NA>
## 274            <NA>
## 275            <NA>
## 276            <NA>
## 277            <NA>
## 278            <NA>
## 279            <NA>
## 280            <NA>
## 281            <NA>
## 282            <NA>
## 283            <NA>
## 284            <NA>
## 285            <NA>
## 286            <NA>
## 287            <NA>
## 288            <NA>
## 289            <NA>
## 290            <NA>
## 291            <NA>
## 292            <NA>
## 293            <NA>
## 294            <NA>
## 295            <NA>
## 296            <NA>
## 297            <NA>
## 298            <NA>
## 299            <NA>
## 300            <NA>
## 301            <NA>
## 302            <NA>
## 303            <NA>
## 304            <NA>
## 305            <NA>
## 306            <NA>
## 307            <NA>
## 308            <NA>
## 309            <NA>
## 310            <NA>
## 311            <NA>
## 312            <NA>
## 313            <NA>
## 314            <NA>
## 315            <NA>
## 316            <NA>
## 317            <NA>
## 318            <NA>
## 319            <NA>
## 320            <NA>
## 321            <NA>
## 322            <NA>
## 323            <NA>
## 324            <NA>
## 325            <NA>
## 326            <NA>
## 327            <NA>
## 328            <NA>
## 329            <NA>
## 330            <NA>
## 331            <NA>
## 332            <NA>
## 333            <NA>
## 334            <NA>
## 335            <NA>
## 336            <NA>
## 337            <NA>
## 338            <NA>
## 339            <NA>
## 340            <NA>
## 341            <NA>
## 342            <NA>
## 343            <NA>
## 344            <NA>
## 345            <NA>
## 346            <NA>
## 347            <NA>
## 348            <NA>
## 349            <NA>
## 350            <NA>
## 351            <NA>
## 352            <NA>
## 353            <NA>
## 354            <NA>
## 355            <NA>
## 356            <NA>
## 357            <NA>
## 358            <NA>
## 359            <NA>
## 360            <NA>
## 361            <NA>
## 362            <NA>
## 363            <NA>
## 364            <NA>
## 365            <NA>
## 366            <NA>
## 367            <NA>
## 368            <NA>
## 369            <NA>
## 370            <NA>
## 371            <NA>
## 372            <NA>
## 373            <NA>
## 374            <NA>
## 375            <NA>
## 376            <NA>
## 377            <NA>
## 378            <NA>
## 379            <NA>
## 380            <NA>
## 381            <NA>
## 382            <NA>
## 383            <NA>
## 384            <NA>
## 385            <NA>
## 386            <NA>
## 387            <NA>
## 388            <NA>
## 389            <NA>
## 390            <NA>
## 391            <NA>
## 392            <NA>
## 393            <NA>
## 394            <NA>
## 395            <NA>
## 396            <NA>
## 397            <NA>
## 398            <NA>
## 399            <NA>
## 400            <NA>
## 401            <NA>
## 402            <NA>
## 403            <NA>
## 404            <NA>
## 405            <NA>
## 406            <NA>
## 407            <NA>
## 408            <NA>
## 409            <NA>
## 410            <NA>
## 411            <NA>
## 412            <NA>
## 413            <NA>
## 414            <NA>
## 415            <NA>
## 416            <NA>
## 417            <NA>
## 418            <NA>
## 419            <NA>
## 420            <NA>
## 421            <NA>
## 422            <NA>
## 423            <NA>
## 424            <NA>
## 425            <NA>
## 426            <NA>
## 427            <NA>
## 428            <NA>
## 429            <NA>
## 430            <NA>
## 431            <NA>
## 432            <NA>
## 433            <NA>
## 434            <NA>
## 435            <NA>
## 436            <NA>
## 437            <NA>
## 438            <NA>
## 439            <NA>
## 440            <NA>
## 441            <NA>
## 442            <NA>
## 443            <NA>
## 444            <NA>
## 445            <NA>
## 446            <NA>
## 447            <NA>
## 448            <NA>
## 449            <NA>
## 450            <NA>
## 451            <NA>
## 452            <NA>
## 453            <NA>
## 454            <NA>
## 455            <NA>
## 456            <NA>
## 457            <NA>
## 458            <NA>
## 459            <NA>
## 460            <NA>
## 461            <NA>
## 462            <NA>
## 463            <NA>
## 464            <NA>
## 465            <NA>
## 466            <NA>
## 467            <NA>
## 468            <NA>
## 469            <NA>
## 470            <NA>
## 471            <NA>
## 472            <NA>
## 473            <NA>
## 474            <NA>
## 475            <NA>
## 476            <NA>
## 477            <NA>
## 478            <NA>
## 479            <NA>
## 480            <NA>
## 481            <NA>
## 482            <NA>
## 483            <NA>
## 484            <NA>
## 485            <NA>
## 486            <NA>
## 487            <NA>
## 488            <NA>
## 489            <NA>
## 490            <NA>
## 491            <NA>
## 492            <NA>
## 493            <NA>
## 494            <NA>
## 495            <NA>
## 496            <NA>
## 497            <NA>
## 498            <NA>
## 499            <NA>
## 500            <NA>
## 501            <NA>
## 502            <NA>
## 503            <NA>
## 504            <NA>
## 505            <NA>
## 506            <NA>
## 507            <NA>
## 508            <NA>
## 509            <NA>
## 510            <NA>
## 511            <NA>
## 512            <NA>
## 513            <NA>
## 514            <NA>
## 515            <NA>
## 516            <NA>
## 517            <NA>
## 518            <NA>
## 519            <NA>
## 520            <NA>
## 521            <NA>
## 522            <NA>
## 523            <NA>
## 524            <NA>
## 525            <NA>
## 526            <NA>
## 527            <NA>
## 528            <NA>
## 529            <NA>
## 530            <NA>
## 531            <NA>
## 532            <NA>
## 533            <NA>
## 534            <NA>
## 535            <NA>
## 536            <NA>
## 537            <NA>
## 538            <NA>
## 539            <NA>
## 540            <NA>
## 541            <NA>
## 542            <NA>
## 543            <NA>
## 544            <NA>
## 545            <NA>
## 546            <NA>
## 547            <NA>
## 548            <NA>
## 549            <NA>
## 550            <NA>
## 551            <NA>
## 552            <NA>
## 553            <NA>
## 554            <NA>
## 555            <NA>
## 556            <NA>
## 557            <NA>
## 558            <NA>
## 559            <NA>
## 560            <NA>
## 561            <NA>
## 562            <NA>
## 563            <NA>
## 564            <NA>
## 565            <NA>
## 566            <NA>
## 567            <NA>
## 568            <NA>
## 569            <NA>
## 570            <NA>
## 571            <NA>
## 572            <NA>
## 573            <NA>
## 574            <NA>
## 575            <NA>
## 576            <NA>
## 577            <NA>
## 578            <NA>
## 579            <NA>
## 580            <NA>
## 581            <NA>
## 582            <NA>
## 583            <NA>
## 584            <NA>
## 585            <NA>
## 586            <NA>
## 587            <NA>
## 588            <NA>
## 589            <NA>
## 590            <NA>
## 591            <NA>
## 592            <NA>
## 593            <NA>
## 594            <NA>
## 595            <NA>
## 596            <NA>
## 597            <NA>
## 598            <NA>
## 599            <NA>
## 600            <NA>
## 601            <NA>
## 602            <NA>
## 603            <NA>
## 604            <NA>
## 605            <NA>
## 606            <NA>
## 607            <NA>
## 608            <NA>
## 609            <NA>
## 610            <NA>
## 611            <NA>
## 612            <NA>
## 613            <NA>
## 614            <NA>
## 615            <NA>
## 616            <NA>
## 617            <NA>
## 618            <NA>
## 619            <NA>
## 620            <NA>
## 621            <NA>
## 622            <NA>
## 623            <NA>
## 624            <NA>
## 625            <NA>
## 626            <NA>
## 627            <NA>
## 628            <NA>
## 629            <NA>
## 630            <NA>
## 631            <NA>
## 632            <NA>
## 633            <NA>
## 634            <NA>
## 635            <NA>
## 636            <NA>
## 637            <NA>
## 638            <NA>
## 639            <NA>
## 640            <NA>
## 641            <NA>
## 642            <NA>
## 643            <NA>
## 644            <NA>
## 645            <NA>
## 646            <NA>
## 647            <NA>
## 648            <NA>
## 649            <NA>
## 650            <NA>
## 651            <NA>
## 652            <NA>
## 653            <NA>
## 654            <NA>
## 655            <NA>
## 656            <NA>
## 657            <NA>
## 658            <NA>
## 659            <NA>
## 660            <NA>
## 661            <NA>
## 662            <NA>
## 663            <NA>
## 664            <NA>
## 665            <NA>
## 666            <NA>
## 667            <NA>
## 668            <NA>
## 669            <NA>
## 670            <NA>
## 671            <NA>
## 672            <NA>
## 673            <NA>
## 674            <NA>
## 675            <NA>
## 676            <NA>
## 677            <NA>
## 678            <NA>
## 679            <NA>
## 680            <NA>
## 681            <NA>
## 682            <NA>
## 683            <NA>
## 684            <NA>
## 685            <NA>
## 686            <NA>
## 687            <NA>
## 688            <NA>
## 689            <NA>
## 690            <NA>
## 691            <NA>
## 692            <NA>
## 693            <NA>
## 694            <NA>
## 695            <NA>
## 696            <NA>
## 697            <NA>
## 698            <NA>
## 699            <NA>
## 700            <NA>
## 701            <NA>
## 702            <NA>
## 703            <NA>
## 704            <NA>
## 705            <NA>
## 706            <NA>
## 707            <NA>
## 708            <NA>
## 709            <NA>
## 710            <NA>
## 711            <NA>
## 712            <NA>
## 713            <NA>
## 714            <NA>
## 715            <NA>
## 716            <NA>
## 717            <NA>
## 718            <NA>
## 719            <NA>
## 720            <NA>
## 721            <NA>
## 722            <NA>
## 723            <NA>
## 724            <NA>
## 725            <NA>
## 726            <NA>
## 727            <NA>
## 728            <NA>
## 729            <NA>
## 730            <NA>
## 731            <NA>
## 732            <NA>
## 733            <NA>
## 734            <NA>
## 735            <NA>
## 736            <NA>
## 737            <NA>
## 738            <NA>
## 739            <NA>
## 740            <NA>
## 741            <NA>
## 742            <NA>
## 743            <NA>
## 744            <NA>
## 745            <NA>
## 746            <NA>
## 747            <NA>
## 748            <NA>
## 749            <NA>
## 750            <NA>
## 751            <NA>
## 752            <NA>
## 753            <NA>
## 754            <NA>
## 755            <NA>
## 756            <NA>
## 757            <NA>
## 758            <NA>
## 759            <NA>
## 760            <NA>
## 761            <NA>
## 762            <NA>
## 763            <NA>
## 764            <NA>
## 765            <NA>
## 766            <NA>
## 767            <NA>
## 768            <NA>
## 769            <NA>
## 770            <NA>
## 771            <NA>
## 772            <NA>
## 773            <NA>
## 774            <NA>
## 775            <NA>
## 776            <NA>
## 777            <NA>
## 778            <NA>
## 779            <NA>
## 780            <NA>
## 781            <NA>
## 782            <NA>
## 783            <NA>
## 784            <NA>
## 785            <NA>
## 786            <NA>
## 787            <NA>
## 788            <NA>
## 789            <NA>
## 790            <NA>
## 791            <NA>
## 792            <NA>
## 793            <NA>
## 794            <NA>
## 795            <NA>
## 796            <NA>
## 797            <NA>
## 798            <NA>
## 799            <NA>
## 800            <NA>
## 801            <NA>
## 802            <NA>
## 803            <NA>
## 804            <NA>
## 805            <NA>
## 806            <NA>
## 807            <NA>
## 808            <NA>
## 809            <NA>
## 810            <NA>
## 811            <NA>
## 812            <NA>
## 813            <NA>
## 814            <NA>
## 815            <NA>
## 816            <NA>
## 817            <NA>
## 818            <NA>
## 819            <NA>
## 820            <NA>
## 821            <NA>
## 822            <NA>
## 823            <NA>
## 824            <NA>
## 825            <NA>
## 826            <NA>
## 827            <NA>
## 828            <NA>
## 829            <NA>
## 830            <NA>
## 831            <NA>
## 832            <NA>
## 833            <NA>
## 834            <NA>
## 835            <NA>
## 836            <NA>
## 837            <NA>
## 838            <NA>
## 839            <NA>
## 840            <NA>
## 841            <NA>
## 842            <NA>
## 843            <NA>
## 844            <NA>
## 845            <NA>
## 846            <NA>
## 847            <NA>
## 848            <NA>
## 849            <NA>
## 850            <NA>
## 851            <NA>
## 852            <NA>
## 853            <NA>
## 854            <NA>
## 855            <NA>
## 856            <NA>
## 857            <NA>
## 858            <NA>
## 859            <NA>
## 860            <NA>
## 861            <NA>
## 862            <NA>
## 863            <NA>
## 864            <NA>
## 865            <NA>
## 866            <NA>
## 867            <NA>
## 868            <NA>
## 869            <NA>
## 870            <NA>
## 871            <NA>
## 872            <NA>
## 873            <NA>
## 874            <NA>
## 875            <NA>
## 876            <NA>
## 877            <NA>
## 878            <NA>
## 879            <NA>
## 880            <NA>
## 881            <NA>
## 882            <NA>
## 883            <NA>
## 884            <NA>
## 885            <NA>
## 886            <NA>
## 887            <NA>
## 888            <NA>
## 889            <NA>
## 890            <NA>
## 891            <NA>
## 892            <NA>
## 893            <NA>
## 894            <NA>
## 895            <NA>
## 896            <NA>
## 897            <NA>
## 898            <NA>
## 899            <NA>
## 900            <NA>
## 901            <NA>
## 902            <NA>
## 903            <NA>
## 904            <NA>
## 905            <NA>
## 906            <NA>
## 907            <NA>
## 908            <NA>
## 909            <NA>
## 910            <NA>
## 911            <NA>
## 912            <NA>
## 913            <NA>
## 914            <NA>
## 915            <NA>
## 916            <NA>
## 917            <NA>
## 918            <NA>
## 919            <NA>
## 920            <NA>
## 921            <NA>
## 922            <NA>
## 923            <NA>
## 924            <NA>
## 925            <NA>
## 926            <NA>
## 927            <NA>
## 928            <NA>
## 929            <NA>
## 930            <NA>
## 931            <NA>
## 932            <NA>
## 933            <NA>
## 934            <NA>
## 935            <NA>
## 936            <NA>
## 937            <NA>
## 938            <NA>
## 939            <NA>
## 940            <NA>
## 941            <NA>
## 942            <NA>
## 943            <NA>
## 944            <NA>
## 945            <NA>
## 946            <NA>
## 947            <NA>
## 948            <NA>
## 949            <NA>
## 950            <NA>
## 951            <NA>
## 952            <NA>
## 953            <NA>
## 954            <NA>
## 955            <NA>
## 956            <NA>
## 957            <NA>
## 958            <NA>
## 959            <NA>
## 960            <NA>
## 961            <NA>
## 962            <NA>
## 963            <NA>
## 964            <NA>
## 965            <NA>
## 966            <NA>
## 967            <NA>
## 968            <NA>
## 969            <NA>
## 970            <NA>
## 971            <NA>
## 972            <NA>
## 973            <NA>
## 974            <NA>
## 975            <NA>
## 976            <NA>
## 977            <NA>
## 978            <NA>
## 979            <NA>
## 980            <NA>
## 981            <NA>
## 982            <NA>
## 983            <NA>
## 984            <NA>
## 985            <NA>
## 986            <NA>
## 987            <NA>
## 988            <NA>
## 989            <NA>
## 990            <NA>
## 991            <NA>
## 992            <NA>
## 993            <NA>
## 994            <NA>
## 995            <NA>
## 996            <NA>
## 997            <NA>
## 998            <NA>
## 999            <NA>
## 1000           <NA>
## 1001           <NA>
## 1002           <NA>
## 1003           <NA>
## 1004           <NA>
## 1005           <NA>
## 1006           <NA>
## 1007           <NA>
## 1008           <NA>
## 1009           <NA>
## 1010           <NA>
## 1011           <NA>
## 1012           <NA>
## 1013           <NA>
## 1014           <NA>
## 1015           <NA>
## 1016           <NA>
## 1017           <NA>
## 1018           <NA>
## 1019           <NA>
## 1020           <NA>
## 1021           <NA>
## 1022           <NA>
## 1023           <NA>
## 1024           <NA>
## 1025           <NA>
## 1026           <NA>
## 1027           <NA>
## 1028           <NA>
## 1029           <NA>
## 1030           <NA>
## 1031           <NA>
## 1032           <NA>
## 1033           <NA>
## 1034           <NA>
## 1035           <NA>
## 1036           <NA>
## 1037           <NA>
## 1038           <NA>
## 1039           <NA>
## 1040           <NA>
## 1041           <NA>
## 1042           <NA>
## 1043           <NA>
## 1044           <NA>
## 1045           <NA>
## 1046           <NA>
## 1047           <NA>
## 1048           <NA>
## 1049           <NA>
## 1050           <NA>
## 1051           <NA>
## 1052           <NA>
## 1053           <NA>
## 1054           <NA>
## 1055           <NA>
## 1056           <NA>
## 1057           <NA>
## 1058           <NA>
## 1059           <NA>
## 1060           <NA>
## 1061           <NA>
## 1062           <NA>
## 1063           <NA>
## 1064           <NA>
## 1065           <NA>
## 1066           <NA>
## 1067           <NA>
## 1068           <NA>
## 1069           <NA>
## 1070           <NA>
## 1071           <NA>
## 1072           <NA>
## 1073           <NA>
## 1074           <NA>
## 1075           <NA>
## 1076           <NA>
## 1077           <NA>
## 1078           <NA>
## 1079           <NA>
## 1080           <NA>
## 1081           <NA>
## 1082           <NA>
## 1083           <NA>
## 1084           <NA>
## 1085           <NA>
## 1086           <NA>
## 1087           <NA>
## 1088           <NA>
## 1089           <NA>
## 1090           <NA>
## 1091           <NA>
## 1092           <NA>
## 1093           <NA>
## 1094           <NA>
## 1095           <NA>
## 1096           <NA>
## 1097           <NA>
## 1098           <NA>
## 1099           <NA>
## 1100           <NA>
## 1101           <NA>
## 1102           <NA>
## 1103           <NA>
## 1104           <NA>
## 1105           <NA>
## 1106           <NA>
## 1107           <NA>
## 1108           <NA>
## 1109           <NA>
## 1110           <NA>
## 1111           <NA>
##                                                                                                                                                                                                                                                                                             mentions_user_id
## 1                                                                                                                                                                                                                                                                                                         NA
## 2                                                                                                                                                                                                                                                                                                         NA
## 3                                                                                                                                                                                                                                                                                                         NA
## 4                                                                                                                                                                                                                                                                                                         NA
## 5                                                                                                                                                                                                                                                                                                         NA
## 6                                                                                                                                                                                                                                                                                                         NA
## 7                                                                                                                                                                                                                                                                                                         NA
## 8                                                                                                                                                                                                                                                                                                         NA
## 9                                                                                                                                                                                                                                                                                                         NA
## 10                                                                                                                                                                                                                                                                                       1132028825339146240
## 11                                                                                                                                                                                                                                                                                                        NA
## 12                                                                                                                                                                                                                                                                                                        NA
## 13                                                                                                                                                                                                                                                                                                2233154425
## 14                                                                                                                                                                                                                                                                   770781940341288960, 16912983, 292929271
## 15                                                                                                                                                                                                                                                                                                        NA
## 16                                                                                                                                                                                                                                                                                                        NA
## 17                                                                                                                                                                                                                                                                                                        NA
## 18                                                                                                                                                                                                                                                                                                        NA
## 19                                                                                                                                                                                                                                                                                                        NA
## 20                                                                                                                                                                                                                                                                                                        NA
## 21                                                                                                                                                                                                                                                                                                        NA
## 22                                                                                                                                                                                                                                                                                                        NA
## 23                                                                                                                                                                                                                                                                                                        NA
## 24                                                                                                                                                                                                                                                                                                        NA
## 25                                                                                                                                                                                                                                                                                                        NA
## 26                                                                                                                                                                                                                                                                                                        NA
## 27                                                                                                                                                                                                                                                                                                        NA
## 28                                                                                                                                                                                                                                                                                                        NA
## 29                                                                                                                                                                                                                                                                                                        NA
## 30                                                                                                                                                                                                                                                                                                        NA
## 31                                                                                                                                                                                                                                                                             1239200222909206529, 61754291
## 32                                                                                                                                                                                                                                                                                                        NA
## 33                                                                                                                                                                                                                                                                                      377559359, 532562634
## 34                                                                                                                                                                                                                                                                                       2753021287, 7304782
## 35                                                                                                                                                                                                                                                                                                        NA
## 36                                                                                                                                                                                                                                                                                                        NA
## 37                                                                                                                                                                                                                                                                                                 500704345
## 38                                                                                                                                                                                                                                                                                                 267755964
## 39                                                                                                                                                                                                                                                                                                        NA
## 40                                                                                                                                                                                                                                                          14130366, 66780587, 74286565, 2970511, 981309937
## 41                                                                                                                                                                                                                                                                                                        NA
## 42                                                                                                                                                                                                                                                                                                        NA
## 43                                                                                                                                                                                                                                                                                                        NA
## 44                                                                                                                                                                                                                                                                                                        NA
## 45                                                                                                                                                                                                                                                                                                        NA
## 46                                                                                                                                                                                                                                                                                                        NA
## 47                                                                                                                                                                                                                                                                                                        NA
## 48                                                                                                                                                                                                                                                                                                        NA
## 49                                                                                                                                                                                                                                                                 475758783, 26477224, 246516111, 636302247
## 50                                                                                                                                                                                                                                                                                                 209356915
## 51                                                                                                                                                                                                                                                                                                        NA
## 52                                                                                                                                                                                                                                                                                       1058476563690373120
## 53                                                                                                                                                                                                                                                                                                  14584200
## 54                                                                                                                                                                                                                                                                                                        NA
## 55                                                                                                                                                                                                                                                                                                        NA
## 56                                                                                                                                                                                                                                                                                                 238101247
## 57                                                                                                                                                                                                                                                                                                  33474655
## 58                                                                                                                                                                                                                                                                                                        NA
## 59                                                                                                                                                                                                                                                                1186457132951986177, 4875285950, 511021343
## 60                                                                                                                                                                                                                                                                                                        NA
## 61                                                                                                                                                                                                                                                                                                        NA
## 62                                                                                                                                                                                                                                                                                        54647696, 19816859
## 63                                                                                                                                                                                                                                                                                                        NA
## 64                                                                                                                                                                                                                                                                                                  87979852
## 65                                                                                                                                                                                                                                                                                                 852269288
## 66                                                                                                                                                                                                                                                                                                        NA
## 67                                                                                                                                                                                                                                                                                                        NA
## 68                                                                                                                                                                                                                                                                                                        NA
## 69                                                                                                                                                                                                                                                                                                  14441010
## 70                                                                                                                                                                                                                                                                                                  14697575
## 71                                                                                                                                                                                                                                                                                                        NA
## 72                                                                                                                                                                                                                                                                                        54936590, 18839785
## 73                                                                                                                                                                                                                                                                                                        NA
## 74                                                                                                                                                                                                                                                                                       1216067404964466688
## 75                                                                                                                                                                                                                                                                                                        NA
## 76                                                                                                                                                                                                                                                                                                        NA
## 77                                                                                                                                                                                                                                                                                                2536960383
## 78                                                                                                                                                                                                                                                                                                        NA
## 79                                                                                                                                                                                                                                                                                                        NA
## 80                                                                                                                                                                                                                                                                                                        NA
## 81                                                                                                                                                                                                                                                                           407781903, 16712223, 3460039877
## 82                                                                                                                                                                                                                                                                                                        NA
## 83                                                                                                                                                                                                                                                                            826470410267025408, 3123662112
## 84                                                                                                                                                                                                                                                                                                        NA
## 85                                                                                                                                                                                                                                                                                        785493637257887744
## 86                                                                                                                                                                                                    47323938, 2914442873, 31524221, 1162687218, 747064131166044160, 703558202454118400, 705694814612938752
## 87                                                                                                                                                                                                                                                                                                        NA
## 88                                                                                                                                                                                                                                                                                      312840253, 248795646
## 89                                                                                                                                                                                                                                                                                                        NA
## 90                                                                                                                                                                                                                                                                                                        NA
## 91                                                                                                                                                                                                                                                                                                        NA
## 92                                                                                                                                                                                                                                                                                                        NA
## 93                                                                                                                                                                                                                                                                                                        NA
## 94                                                                                                                                                                                                                                                                                                        NA
## 95                                                                                                                                                                                                                                                                                                        NA
## 96                                                                                                                                                                                                                                                                                                        NA
## 97                                                                                                                                                                                                                                                                                                3112518756
## 98                                                                                                                                                                                                                                                                                                        NA
## 99                                                                                                                                                                                                                                                                                                        NA
## 100                                                                                                                                                                                                                                                                                                  2677931
## 101                                                                                                                                                                                                                                                                                                       NA
## 102                                                                                                                                                                                                                                                                                                       NA
## 103                                                                                                                                                                                                                                                                                                       NA
## 104                                                                                                                                                                                                                                                                                                162124716
## 105                                                                                                                                                                                                                                                                                                       NA
## 106                                                                                                                                                                                                                                                                                               2862577383
## 107                                                                                                                                                                                                                                                                                                       NA
## 108                                                                                                                                                                                                                                                                   770781940341288960, 878247600096509952
## 109                                                                                                                                                                                                                                                                            38181641, 1065899507282518017
## 110                                                                                                                                                                                                                                                                                                       NA
## 111                                                                                                                                                                                                                                                                   705694814612938752, 705694814612938752
## 112                                                                                                                                                                                                                                                                                                       NA
## 113                                                                                                                                                                                                                                                                                                       NA
## 114                                                                                                                                                                                                                                                                                                       NA
## 115                                                                                                                                                                                                                                                                                                       NA
## 116                                                                                                                                                                                                                                                                                                       NA
## 117                                                                                                                                                                                                                                                                                                       NA
## 118                                                                                                                                                                                                                                                                                                 20402945
## 119                                                                                                                                                                                                                     471741741, 2695241174, 53355887, 3171712086, 758907989545791488, 143726523, 37034483
## 120                                                                                                                                                                                                                                                                                                       NA
## 121                                                                                                                                                                                                                                                                                                169041906
## 122                                                                                                                                                                                                                                                                                                       NA
## 123                                                                                                                                                                                                                                                                                                       NA
## 124                                                                                                                                                                                                                                                                            14260960, 368881225, 82451778
## 125                                                                                                                                                                                                                                                                                                       NA
## 126                                                                                                                                                                                                                                                                                                       NA
## 127                                                                                                                                                                                                                                                                                                       NA
## 128                                                                                                                                                                                                                                                                                                       NA
## 129                                                                                                                                                                                                                                                                                   1615737216, 2340920154
## 130                                                                                                                                                                                                                                                                                                       NA
## 131                                                                                                                                                                                                                                                                                                       NA
## 132                                                                                                                                                                                                                                                                                      1019887446417215489
## 133                                                                                                                                                                                                                                                                                                       NA
## 134                                                                                                                                                                                                                                                                                                       NA
## 135                                                                                                                                                                                                                                                                                                 13576142
## 136                                                                                                                                                                                                                                                                                                       NA
## 137                                                                                                                                                                                                                                                                                                       NA
## 138                                                                                                                                                                                                                                                                                                 25073877
## 139                                                                                                                                                                                                                                                                                       97491242, 16591122
## 140                                                                                                                                                                                                                                                                                                       NA
## 141                                                                                                                                                                                                                                                                 207809313, 18839785, 58243368, 381949397
## 142                                                                                                                                                                                                                                                                                                       NA
## 143                                                                                                                                                                                                                                                                                                       NA
## 144                                                                                                                                                                                                                                                                                                 19211550
## 145                                                                                                                                                                                                                                   18839785, 471741741, 461841349, 42606652, 34245009, 811972460560019456
## 146                                                                                                                                                                                                                                                                                                       NA
## 147                                                                                                                                                                                                                                                                                                       NA
## 148                                                                                                                                                                                                                                                                                                 25073877
## 149                                                                                                                                                                                                                                                                                                       NA
## 150                                                                                                                                                                                                                                                                                               1112436697
## 151                                                                                                                                                                                                                                                                                                       NA
## 152                                                                                                                                                                                                                                                                                                       NA
## 153                                                                                                                                                                                                                                                                                                       NA
## 154                                                                                                                                                                                                                                                                                                       NA
## 155                                                                                                                                                                                                                                                                                                       NA
## 156                                                                                                                                                                                                                                                                               759251, 15224867, 18170896
## 157                                                                                                                                                                                                                                                                                                       NA
## 158                                                                                                                                                                                                                                                                                                 17022537
## 159                                                                                                                                                                                                                                                                                                       NA
## 160                                                                                                                                                                                                                                                                                       938815535843815425
## 161                                                                                                                                                                                                                                                                                                       NA
## 162                                                                                                                                                                                                                                                                                                       NA
## 163                                                                                                                                                                                                                                                                                                       NA
## 164                                                                                                                                                                                                                                                                                                       NA
## 165                                                                                                                                                                                                                                                                                                       NA
## 166                                                                                                                                                                                                                                                                                                       NA
## 167                                                                                                                                                                                                                                                                                       75541946, 25073877
## 168                                                                                                                                                                                                                                                                                                       NA
## 169                                                                                                                                                                                                                                                 2961880449, 1133920393, 2997446035, 92945681, 2528914012
## 170                                                                                                                                                                                                                                                                                                       NA
## 171                                                                                                                                                                                                                                                                                                       NA
## 172                                                                                                                                                                                 50941469, 541625472, 118787224, 2558684335, 3138637447, 136479128, 272308257, 2152243347, 1059786926406828032, 192942692
## 173                                                                                                                                                                                                                                                                                                       NA
## 174                                                                                                                                                                                                                                                                                                       NA
## 175                                                                                                                                                                                                                                                                                                232268199
## 176                                                                                                                                                                                                                                                                                                       NA
## 177                                                                                                                                                                                                                                                                                                       NA
## 178                                                                                                                                                                                                                                                                                               2251588934
## 179                                                                                                                                                                                                                                                                                                       NA
## 180                                                                                                                                                                                                                                                                                                       NA
## 181                                                                                                                                                                                                                                                                                                       NA
## 182                                                                                                                                                                                                                                                                                                       NA
## 183                                                                                                                                                                                                                                            2391761484, 402285996, 19240249, 20711586, 77500023, 22680659
## 184                                                                                                                                                                                                                                                                                                 21303464
## 185                                                                                                                                                                                                                                                                                                       NA
## 186                                                                                                                                                                                                                                                                                                       NA
## 187                                                                                                                                                                                                                                                                                                       NA
## 188                                                                                                                                                                                                                                                                                                       NA
## 189                                                                                                                                                                                                                                                                           17409452, 957547182, 198084264
## 190                                                                                                                                                                                                                                             67336622, 22164187, 424392859, 819556229848694784, 577086212
## 191                                                                                                                                                                                                                                                                                                       NA
## 192                                                                                                                                                                                                                                                                                                       NA
## 193                                                                                                                                                                                                                                                                                                       NA
## 194                                                                                                                                                                                                                                                                                                       NA
## 195                                                                                                                                                                                                                                                                                                       NA
## 196                                                                                                                                                                                                                                                                                                       NA
## 197                                                                                                                                                                                                                                                                                       952977622400577536
## 198                                                                                                                                                                                                                                                                                                       NA
## 199                                                                                                                                                                                                                                                                                                       NA
## 200                                                                                                                                                                                                                                                                                       851808935397011456
## 201                                                                                                                                                                                          1130134891, 3259255644, 4636666998, 2597666894, 1324334436, 717686709983424513, 18839785, 471741741, 2541363451
## 202                                                                                                                                                                                                                                                                                                       NA
## 203                                                                                                                                                                                                                                                                                                       NA
## 204                                                                                                                                                                                                                                                                                                       NA
## 205                                                                                                                                                                                                                                                                                                       NA
## 206                                                                                                                                                                                                                                                                                                       NA
## 207                                                                                                                                                                                                                                                                                                       NA
## 208                                                                                                                                                                                                                                                                                                       NA
## 209                                                                                                                                                                                                                                                                                                       NA
## 210                                                                                                                                                                                                                                                                                       998276701284159488
## 211                                                                                                                                                                                                                                                                                                 20217019
## 212                                                                                                                                                                                                                                                                                                       NA
## 213                                                                                                                                                                                                                                                                                                115105973
## 214                                                                                                                                                                                                                                                                                                 34713362
## 215  787646081987403776, 1957837244, 113208276, 3783815248, 595214005, 1467352740, 1593224094, 4730403444, 98172698, 1060547875220779009, 863261922, 809177267595341824, 67211693, 2191744794, 216385540, 987820603, 11650472, 3930472251, 1098281493137317888, 4459642286, 3012462963, 4190667705, 20217019
## 216                                                                                                                                                                                                                                                                                                179297823
## 217                                                                                                                                                                                                                                                                                                       NA
## 218                                                                                                                                                                                                                                                                                                       NA
## 219                                                                                                                                                                                                                                                                                                       NA
## 220                                                                                                                                                                                                                                                                                               1339835893
## 221                                                                                                                                                                                                                                                                                                514817281
## 222                                                                                                                                                                                                                                                                                                       NA
## 223                                                                                                                                                                                                                                                                                               2183120874
## 224                                                                                                                                                                                                                                                                                                       NA
## 225                                                                                                                                                                                                                                                                                               1262797633
## 226                                                                                                                                                                                                                                                                                                       NA
## 227                                                                                                                                                                                                                                                                                                       NA
## 228                                                                                                                                                                                                                                                                                                       NA
## 229                                                                                                                                                                                                                                                                                                       NA
## 230                                                                                                                                                                                                                                                                              14499829, 807095, 134758540
## 231                                                                                                                                                                                                                                                                            34934634, 1144281673443528706
## 232                                                                                                                                                                                                                                                                                      1227264768123252742
## 233                                                                                                                                                                                                                                                                                                       NA
## 234                                                                                                                                                                                                                                                                                                       NA
## 235                                                                                                                                                                                                                                                                                                345301111
## 236                                                                                                                                                                                                                                                                         143039548, 368314502, 2986235404
## 237                                                                                                                                                                                                                                                                                                       NA
## 238                                                                                                                                                                                                                                                                                                       NA
## 239                                                                                                                                                                                                                                                                                                362144301
## 240                                                                                                                                                                                                                                                                                                       NA
## 241                                                                                                                                                                                                                                                                                     18464266, 3695759352
## 242                                                                                                                                                                                                                                                                                                       NA
## 243                                                                                                                                                                                                                                                                                                       NA
## 244                                                                                                                                                                                                                                                                                                       NA
## 245                                                                                                                                                                                                                                                                                                       NA
## 246                                                                                                                                                                                                                                                                                                       NA
## 247                                                                                                                                                                                                                                                                                   4184166614, 1421927148
## 248                                                                                                                                                                                                                                                                                                       NA
## 249                                                                                                                                                                                                                                                                                                       NA
## 250                                                                                                                                                                                                                                                                                                 10228272
## 251                                                                                                                                                                                                                                                                                                       NA
## 252                                                                                                                                                                                                                                                                                                       NA
## 253                                                                                                                                                                                                                                                                                                       NA
## 254                                                                                                                                                                                                                                                                                                       NA
## 255                                                                                                                                                                                                                                                                           19615522, 105219413, 388695685
## 256                                                                                                                                                                                                                                                                                                       NA
## 257                                                                                                                                                                                                                                                                                                       NA
## 258                                                                                                                                                                                                                                                                                                       NA
## 259                                                                                                                                                                                                                                            126145733, 35583898, 48933073, 3073889033, 714624595106611201
## 260                                                                                                                                                                                                                                                                                      1179874603750973440
## 261                                                                                                                                                                                                                                                                                                 21894784
## 262                                                                                                                                                                                                                                                                                                       NA
## 263                                                                                                                                                                                                                                                                                                       NA
## 264                                                                                                                                                                                                                                                                                                278343138
## 265                                                                                                                                                                                                                                                                                                       NA
## 266                                                                                                                                                                                                                                                                                                975200486
## 267                                                                                                                                                                                                                                                                                                       NA
## 268                                                                                                                                                                                                                                                                                                146569971
## 269                                                                                                                                                                                                                                                                                                       NA
## 270                                                                                                                                                                                                                                                                                                122453931
## 271                                                                                                                                                                                                                                                                                                       NA
## 272                                                                                                                                                                                                                                                                                                       NA
## 273                                                                                                                                                                                                                                                                                                       NA
## 274                                                                                                                                                                                                                                                                                                       NA
## 275                                                                                                                                                                                                                                                                                                       NA
## 276                                                                                                                                                                                                                                                                                                       NA
## 277                                                                                                                                                                                                                                                         831320691580497920, 894450550032519170, 25073877
## 278                                                                                                                                                                                                                                                                                                588532966
## 279                                                                                                                                                                                                                                                                                                       NA
## 280                                                                                                                                                                                                                                                                                                       NA
## 281                                                                                                                                                                                                                                                                                                 18170896
## 282                                                                                                                                                                                                                                                                                                       NA
## 283                                                                                                                                                                                                                                                                                                       NA
## 284                                                                                                                                                                                                                                                                                                       NA
## 285                                                                                                                                                                                                                                                              1176545327219916800, 2509256527, 3255630260
## 286                                                                                                                                                                                                 106322069, 801164078, 24061566, 267790019, 50563540, 28486596, 250654708, 310451259, 176165364, 57875508
## 287                                                                                                                                                                                                                                                                                                 25073877
## 288                                                                                                                                                                                                                                                                                                       NA
## 289                                                                                                                                                                                                                                                                                       36728196, 22650211
## 290                                                                                                                                                                                                                                                                                   1391891144, 1698025896
## 291                                                                                                                                                                                                                                                                                                       NA
## 292                                                                                                                                                                                                                                                                                                       NA
## 293                                                                                                                                                                                                                                                                                                       NA
## 294                                                                                                                                                                                                                                                                                                       NA
## 295                                                                                                                                                                                                                                                                                                743413651
## 296                                                                                                                                                                                                                                                                                                       NA
## 297                                                                                                                                                                                                                                                                                               1512587958
## 298                                                                                                                                                                                                                                                                                                       NA
## 299                                                                                                                                                                                                                                                                                       822215679726100480
## 300                                                                                                                                                                                                                                                                           1225914837047312384, 398172747
## 301                                                                                                                                                                                                                                                                                               2835451658
## 302                                                                                                                                                                                                                                                                                                       NA
## 303                                                                                                                                                                                                                                                                                                       NA
## 304                                                                                                                                                                                                                                                                                                       NA
## 305                                                                                                                                                                                                                                                                                   1492752330, 2854482238
## 306                                                                                                                                                                                                                                                                                                       NA
## 307                                                                                                                                                                                                                                                                                                112047805
## 308                                                                                                                                                                                                                                                                                                       NA
## 309                                                                                                                                                                                                                                                                                                       NA
## 310                                                                                                                                                                                                                                                                                                 10215212
## 311                                                                                                                                                                                                                                                                                                       NA
## 312                                                                                                                                                                                                                                                                                                 65254718
## 313                                                                                                                                                                                                                                                                                                       NA
## 314                                                                                                                                                                                                                                                                                                 18777618
## 315                                                                                                                                                                                                                                                                                                145125358
## 316                                                                                                                                                                                                                                                                                      1121761443970342912
## 317                                                                                                                                                                                                                                                                                                       NA
## 318                                                                                                                                                                                                                                                                             21148293, 16664681, 21842779
## 319                                                                                                                                                                                                                                                                                                       NA
## 320                                                                                                                                                                                                                                                                            1117746906837528577, 17060573
## 321                                                                                                                                                                                                                                                                                                246939630
## 322                                                                                                                                                                                                                                                                                                       NA
## 323                                                                                                                                                                                                                                                                                                       NA
## 324                                                                                                                                                                                                                                                                                                       NA
## 325                                                                                                                                                                                                                                                                                                       NA
## 326                                                                                                                                                                                                                                                                                                       NA
## 327                                                                                                                                                                                                                                                                                                       NA
## 328                                                                                                                                                                                                                                                                                               1948294874
## 329                                                                                                                                                                                                                                                                                                157406699
## 330                                                                                                                                                                                                                                                                                                       NA
## 331                                                                                                                                                                                                                                                                                                       NA
## 332                                                                                                                                                                                                                                                                                                       NA
## 333                                                                                                                                                                                                                                                                                                       NA
## 334                                                                                                                                                                                                                                                                                                 31533642
## 335                                                                                                                                                                                                                                                                                                       NA
## 336                                                                                                                      751854631375015941, 3046415977, 3733638193, 3046415977, 881071531954065408, 928868977572331522, 956141682965102592, 2687516120, 1110766140970754048, 2665238888, 863416413473472513
## 337                                                                                                                                                                                                                                                                                                 25073877
## 338                                                                                                                                                                                                                                                                                               4091551984
## 339                                                                                                                                                                                                                                                                                      68545047, 145935897
## 340                                                                                                                                                                                                                                                                          1098282114674393088, 2874102076
## 341                                                                                                                                                                                                                                                                                                       NA
## 342                                                                                                                                                                                                                                                                                                       NA
## 343                                                                                                                                                                                                                                                                        434293982, 4742265109, 2834236480
## 344                                                                                                                                                                                                                                                                                                       NA
## 345                                                                                                                                                                                                                                                                                                       NA
## 346                                                                                                                                                                                                                                                                                                       NA
## 347                                                                                                                                                                                                                                                                                                       NA
## 348                                                                                                                                                                                                                                                                                      1116473153151283200
## 349                                                                                                                                                                                                                                                                                               3342530218
## 350                                                                                                                                                                                                                                                                                                       NA
## 351                                                                                                                                                                                                                                                                                                       NA
## 352                                                                                                                                                                                                                                                                                                       NA
## 353                                                                                                                                                                                                                                                                                                       NA
## 354                                                                                                                                                                                                                                                                                                       NA
## 355                                                                                                                                                                                                                                                                                                 25104363
## 356                                                                                                                                                                                                                                                                                                       NA
## 357                                                                                                                                                                                                                                                                                                       NA
## 358                                                                                                                                                                                                                                                                                                       NA
## 359                                                                                                                                                                                                                                                                                                       NA
## 360                                                                                                                                                                                                                                                                14499829, 3066095291, 300492970, 57264842
## 361                                                                                                                                                                                                                                                                                                 27677483
## 362                                                                                                                                                                                                                                                                                                       NA
## 363                                                                                                                                                                                                                                                                                                 18777618
## 364                                                                                                                                                                                                                                                                                                       NA
## 365                                                                                                                                                                                                                                                                                                 20353789
## 366                                                                                                                                                                                                                                                                                                       NA
## 367                                                                                                                                                                                                                                                                                                       NA
## 368                                                                                                                                                                                                                                                                  25320639, 1035374516946395137, 25073877
## 369                                                                                                                                                                                                                                                                          705706292, 259395895, 165204211
## 370                                                                                                                                                                                                                                                                 219521368, 1003895325025865730, 80803819
## 371                                                                                                                                                                                                                                                                  889413560173969409, 1015930703526031361
## 372                                                                                                                                                                                                                                                                                                       NA
## 373                                                                                                                                                                                                                                                                                                       NA
## 374                                                                                                                                                                                                                                                                                               1325563478
## 375                                                                                                                                                                                                                                                                                      531892451, 20815041
## 376                                                                                                                                                                                                                                                                                                       NA
## 377                                                                                                                                                                                                                                                                                                       NA
## 378                                                                                                                                                                                                                                                                                      1005460195202551808
## 379                                                                                                                                                                                                                                                                             25073877, 822215673812119553
## 380                                                                                                                                                                                                                                                                                                       NA
## 381                                                                                                                                                                                                                                                                                                       NA
## 382                                                                                                                                                                                                                                                                                      3819701, 2277104654
## 383                                                                                                                                                                                                                                                                                                       NA
## 384                                                                                                                                                                                                                                                               18839785, 571878474, 207809313, 3437532637
## 385                                                                                                                                                                                                                                                                                                       NA
## 386                                                                                                                                                                                                                                                                                                       NA
## 387                                                                                                                                                                                                                                                                                      151765032, 96493517
## 388                                                                                                                                                                                                                                                                                                471677441
## 389                                                                                                                                                                                                                                                                                                       NA
## 390                                                                                                                                                                                                                                                                                      1136063449379811328
## 391                                                                                                                                                                                                                                                                                                       NA
## 392                                                                                                                                                                                                                                                                                                       NA
## 393                                                                                                                                                                                                                                                                                                  2067661
## 394                                                                                                                                                                                                                                                                                                       NA
## 395                                                                                                                                                                                                                                                                                                       NA
## 396                                                                                                                                                                                                                                                                                                       NA
## 397                                                                                                                                                                                                                                                                                                 17815585
## 398                                                                                                                                                                                                                                                                                                       NA
## 399                                                                                                                                                                                                                                                                                                       NA
## 400                                                                                                                                                                                                                                                                                                       NA
## 401                                                                                                                                                                                                                                                                                                       NA
## 402                                                                                                                                                                                                                                                                                       20817523, 19513103
## 403                                                                                                                                                                                                                                                       52934222, 104872280, 974995792380473345, 247217109
## 404                                                                                                                                                                                                                                                                                                 10228272
## 405                                                                                                                                                                                                                                                              61822673, 2229105296, 4725070758, 635167769
## 406                                                                                                                                                                                                                                                                                                       NA
## 407                                                                                                                                                                                                                                                                                                       NA
## 408                                                                                                                                                                                                                                                                                                       NA
## 409                                                                                                                                                                                                                                                                                                       NA
## 410                                                                                                                                                                                                                                                                                                       NA
## 411                                                                                                                                                                                                                                                                                                       NA
## 412                                                                                                                                                                                                                                                                                                       NA
## 413                                                                                                                                                                                                                                                                                                       NA
## 414                                                                                                                                                                                                                                                                                                       NA
## 415                                                                                                                                                                                                                                                                                                       NA
## 416                                                                                                                                                                                                                                                                                                       NA
## 417                                                                                                                                                                                                                                                     3577338972, 4031790274, 15791186, 881416530046492672
## 418                                                                                                                                                                                                                                                                                                       NA
## 419                                                                                                                                                                                                                                                                                                       NA
## 420                                                                                                                                                                                                                                                                                                       NA
## 421                                                                                                                                                                                                                                                                                                  3562471
## 422                                                                                                                                                                                                                                                                                                       NA
## 423                                                                                                                                                                                                                                                                                                       NA
## 424                                                                                                                                                                                                                                                                             244655353, 939091, 254175684
## 425                                                                                                                                                                                                                                                                                                       NA
## 426                                                                                                                                                                                                                                                                                                       NA
## 427                                                                                                                                                                                                                                                                                       20699709, 20699709
## 428                                                                                                                                                                                                                                                                                                       NA
## 429                                                                                                                                                                                                                                                                                                       NA
## 430                                                                                                                                                                                                                                                                                                       NA
## 431                                                                                                                                                                                                                                                                                                       NA
## 432                                                                                                                                                                                                                                                                                                       NA
## 433                                                                                                                                                                                                                                                                                                       NA
## 434                                                                                                                                                                                                                                                                                                  1367531
## 435                                                                                                                                                                                                                                                                                                       NA
## 436                                                                                                                                                                                                                                                                                                       NA
## 437                                                                                                                                                                                                                                                                                                       NA
## 438                                                                                                                                                                                                                                                                                                       NA
## 439                                                                                                                                                                                                                                                                                                       NA
## 440                                                                                                                                                                                                                                                                                                       NA
## 441                                                                                                                                                                                                                                                                                                       NA
## 442                                                                                                                                                                                                                                                                                                 47356175
## 443                                                                                                                                                                                                                                                                                                373564351
## 444                                                                                                                                                                                                                                                                                       23375688, 14230524
## 445                                                                                                                                                                                                                                                                                                       NA
## 446                                                                                                                                                                                                                                                                                    3291617399, 724631353
## 447                                                                                                                                                                                                                                                                                                       NA
## 448                                                                                                                                                                                                                                                                                                118787224
## 449                                                                                                                                                                                                                                                                          2916915026, 20479321, 391036558
## 450                                                                                                                                                                                                                                                                          19426551, 123276343, 4916001683
## 451                                                                                                                                                                                                                                              129018405, 746323, 16261638, 15846372, 370476539, 142299055
## 452                                                                                                                                                                                                                                                                                                       NA
## 453                                                                                                                                                                                                                                                                                                550614944
## 454                                                                                                                                                                                                                                                                                     243718221, 116502194
## 455                                                                                                                                                                                                                                                                                       822215679726100480
## 456                                                                                                                                                                                                                                                                                                       NA
## 457                                                                                                                                                                                                                                                                                                       NA
## 458                                                                                                                                                                                                                                                                           4397092817, 874199928079306753
## 459                                                                                                                                                                                                                                                                                                       NA
## 460                                                                                                                                                                                                                                                                                                       NA
## 461                                                                                                                                                                                                                                                                                                  2493701
## 462                                                                                                                                                                                                                                                                                                       NA
## 463                                                                                                                                                                                                                                                                                                       NA
## 464                                                                                                                                                                                                                                                                                                 41476705
## 465                                                                                                                                                                                                                                                                                                 34262462
## 466                                                                                                                                                                                                                                                                                                       NA
## 467                                                                                                                                                                                                                                                                                               2966532212
## 468                                                                                                                                                                                                                                                                                                 25073877
## 469                                                                                                                                                                                                                                                                                                       NA
## 470                                                                                                                                                                                                                                                                                                       NA
## 471                                                                                                                                                                                                                                                                                                       NA
## 472                                                                                                                                                                                                                                                                                                       NA
## 473                                                                                                                                                                                                                                                                                                       NA
## 474                                                                                                                                                                                                                                                                                                       NA
## 475                                                                                                                                                                                                                                                                                                166374616
## 476                                                                                                                                                                                                                                                                                                       NA
## 477                                                                                                                                                                                                                         138182116, 25073877, 818910970567344128, 988573326376427520, 1100397619040452608
## 478                                                                                                                                                                                                                                                                                                       NA
## 479                                                                                                                                                                                                                                                                                                       NA
## 480                                                                                                                                                                                                                                                                                                       NA
## 481                                                                                                                                                                                                                                                                                                       NA
## 482                                                                                                                                                                                                                                                                            192947735, 993828220003897344
## 483                                                                                                                                                                                                                                                                                                       NA
## 484                                                                                                                                                                                                                                                                                                 20945761
## 485                                                                                                                                                                                                                                                                                                       NA
## 486                                                                                                                                                                                                                                                       1238205108468322304, 495654029, 23894123, 17980523
## 487                                                                                                                                                                                                                                                                                                       NA
## 488                                                                                                                                                                                                                                                                 233343317, 612253780, 780554980847517696
## 489                                                                                                                                                                                                                                                                                                107169191
## 490                                                                                                                                                                                                                                           475348159, 160279548, 476559036, 859582620501397504, 224495471
## 491                                                                                                                                                                                                                                                                                                       NA
## 492                                                                                                                                                                                                                                                    471741741, 1447949844, 3292245242, 39240673, 18839785
## 493                                                                                                                                                                                                                                                                            875215761932828672, 928946516
## 494                                                                                                                                                                                                                                                                                      153647786, 29938031
## 495                                                                                                                                                                                                                                                                                                       NA
## 496                                                                                                                                                                                                                                                                                                       NA
## 497                                                                                                                                                                                                                                                                                                 56883209
## 498                                                                                                                                                                                                                                                                                                 21997871
## 499                                                                                                                                                                                                                                                                                               2380259108
## 500                                                                                                                                                                                                                                                                             25073877, 822215673812119553
## 501                                                                                                                                                                                                                                                                                                       NA
## 502                                                                                                                                                                                                                                                                                                       NA
## 503                                                                                                                                                                                                                                                                                                       NA
## 504                                                                                                                                                                                                                                                                                                       NA
## 505                                                                                                                                                                                                                                                                                                       NA
## 506                                                                                                                                                                                                                                                                                                 22221262
## 507                                                                                                                                                                                                                                                       14344823, 1249982359, 15207668, 19739126, 25073877
## 508                                                                                                                                                                                                                                                                       1517760493, 3323674823, 2989199450
## 509                                                                                                                                                                                                                                                                                                       NA
## 510                                                                                                                                                                                                                                                                                                       NA
## 511                                                                                                                                                                                                                                                                                                       NA
## 512                                                                                                                                                                                                                                                                                               2908170952
## 513                                                                                                                                                                                                                                                                                                       NA
## 514                                                                                                                                                                                                                                                                                                       NA
## 515                                                                                                                                                                                                                                                                             89068115, 27311044, 25073877
## 516                                                                                                                                                                                                                                                                                                       NA
## 517                                                                                                                                                                                                                                                                                                       NA
## 518                                                                                                                                                                                                                                                                                                264316796
## 519                                                                                                                                                                                                                                                                                                       NA
## 520                                                                                                                                                                                                                                                                                                384233102
## 521                                                                                                                                                                                                                                                                                                       NA
## 522                                                                                                                                                                                                                                                                                                       NA
## 523                                                                                                                                                                                                                                                     1274690550, 19929890, 2574072036, 56304605, 37034483
## 524                                                                                                                                                                                                                                                                                                       NA
## 525                                                                                                                                                                                                                                                                                                       NA
## 526                                                                                                                                                                                                                                                                                                       NA
## 527                                                                                                                                                                                                                                                                                                       NA
## 528                                                                                                                                                                                                                                                                                                       NA
## 529                                                                                                                                                                                                                                                                                                       NA
## 530                                                                                                                                                                                                                                                                                                       NA
## 531                                                                                                                                                                                                                                                                                                 25073877
## 532                                                                                                                                                                                                                                                                                                       NA
## 533                                                                                                                                                                                                                                                                                                       NA
## 534                                                                                                                                                                                                                                                                                                       NA
## 535                                                                                                                                                                                                                                                                                                       NA
## 536                                                                                                                                                                                                                                                                                                       NA
## 537                                                                                                                                                                                                                                                                                                       NA
## 538                                                                                                                                                                                                                                                                        2964950313, 1157355307, 203414077
## 539                                                                                                                                                                                                                                                                                                       NA
## 540                                                                                                                                                                                                                                                                                                       NA
## 541                                                                                                                                                                                                                                                                                       854930141469868037
## 542                                                                                                                                                                                                                                                                                                       NA
## 543                                                                                                                                                                                                                                                                                                       NA
## 544                                                                                                                                                                                                                                                                                                       NA
## 545                                                                                                                                                                                                                                                                                                       NA
## 546                                                                                                                                                                                                                                                                                       28626403, 15917758
## 547                                                                                                                                                                                                                                                                                                 54885400
## 548                                                                                                                                                                                                                                                                                                       NA
## 549                                                                                                                                                                                                                                                                                                       NA
## 550                                                                                                                                                                                                                                                                                                       NA
## 551                                                                                                                                                                                                                                                                                                       NA
## 552                                                                                                                                                                                                                                                                                                 10228272
## 553                                                                                                                                                                                                                                                                                               1152653462
## 554                                                                                                                                                                                                                                                                                                       NA
## 555                                                                                                                                                                                                                                                                                                       NA
## 556                                                                                                                                                                                                                                                                                                       NA
## 557                                                                                                                                                                                                                                                                                      1201445258178879488
## 558                                                                                                                                                                                                                                                                                                       NA
## 559                                                                                                                                                                                                                                                                                                       NA
## 560                                                                                                                                                                                                                                                                                                       NA
## 561                                                                                                                                                                                                                                                                                                 14224719
## 562                                                                                                                                                                                                                                                                                                       NA
## 563                                                                                                                                                                                                                                                                                                       NA
## 564                                                                                                                                                                                                                                                                                                370808273
## 565                                                                                                                                                                                                                                                                                                807337182
## 566                                                                                                                                                                                                                                                                                                       NA
## 567                                                                                                                                                                                                                                                                                                       NA
## 568                                                                                                                                                                                                                                                                                                       NA
## 569                                                                                                                                                                                                                                                                                      1042592899693608960
## 570                                                                                                                                                                                                                                                                                                       NA
## 571                                                                                                                                                                                                                                                                                                       NA
## 572                                                                                                                                                                                                                                                                                                       NA
## 573                                                                                                                                                                                                                                                                                                       NA
## 574                                                                                                                                                                                                                                                                                                 18753424
## 575                                                                                                                                                                                                                                                                                                       NA
## 576                                                                                                                                                                                                                                                                                                       NA
## 577                                                                                                                                                                                                                                                                                                 18363030
## 578                                                                                                                                                                                                                                                                                                       NA
## 579                                                                                                                                                                                                                                                                                                 19093936
## 580                                                                                                                                                                                                                                                                                                       NA
## 581                                                                                                                                                                                                                                                                                       41160276, 17091571
## 582                                                                                                                                                                                                                                                                           1092232849371979776, 203123011
## 583                                                                                                                                                                                                                                                                                                       NA
## 584                                                                                                                                                                                                                                                                                                       NA
## 585                                                                                                                                                                                                                                                                          493632195, 297159414, 321841033
## 586                                                                                                                                                                                                                                                                                                       NA
## 587                                                                                                                                                                                                                                                                                                       NA
## 588                                                                                                                                                                                                                                                                                                       NA
## 589                                                                                                                                                                                                                                                                                                       NA
## 590                                                                                                                                                                                                                                                                                                 25073877
## 591                                                                                                                                                                                                                                                                                                       NA
## 592                                                                                                                                                                                                                                                                                                       NA
## 593                                                                                                                                                                                                                                                                                                 39155029
## 594                                                                                                                                                                                                                                                                                                   985401
## 595                                                                                                                                                                                                                                                                                       16812342, 25073877
## 596                                                                                                                                                                                                                                                                                      1055590459819593733
## 597                                                                                                                                                                                                                                                                                                       NA
## 598                                                                                                                                                                                                                                                                         2406725442, 159108303, 104182491
## 599                                                                                                                                                                                                                                                                                                       NA
## 600                                                                                                                                                                                                                                                                                                250034169
## 601                                                                                                                                                                                                                                                                                                 56804231
## 602                                                                                                                                                                                                                                                                                                       NA
## 603                                                                                                                                                                                                                                                                                                       NA
## 604                                                                                                                                                                                                                                                                                                       NA
## 605                                                                                                                                                                                                                                                                                                       NA
## 606                                                                                                                                                                                                                                                                                                       NA
## 607                                                                                                                                                                                                                                                                                                       NA
## 608                                                                                                                                                                                                                                                                                       814630642755530752
## 609                                                                                                                                                                                                                                                                                                       NA
## 610                                                                                                                                                                                                                                                                                                       NA
## 611                                                                                                                                                                                                                                                                                                       NA
## 612                                                                                                                                                                                                                                                                                    3082401232, 212210291
## 613                                                                                                                                                                                                                                                                                                       NA
## 614                                                                                                                                                                                                                                                                                                       NA
## 615                                                                                                                                                                                                                                                                                                350202556
## 616                                                                                                                                                                                                                                                                                                 14344823
## 617                                                                                                                                                                                                                                                                                                       NA
## 618                                                                                                                                                                                                                                                                                                       NA
## 619                                                                                                                                                                                                                                                                                                       NA
## 620                                                                                                                                                                                                                                                                                                143152420
## 621                                                                                                                                                                                                                                                                                                       NA
## 622                                                                                                                                                                                                                                                                                                       NA
## 623                                                                                                                                                                                                                                                                                                       NA
## 624                                                                                                                                                                                                                                                                                                       NA
## 625                                                                                                                                                                                                                                                                                       86089860, 86089860
## 626                                                                                                                                                                                                                                                                                                779898205
## 627                                                                                                                                                                                                                                                                             24973934, 34968878, 31496613
## 628                                                                                                                                                                                                                                                                                                       NA
## 629                                                                                                                                                                                                                                                                                                 87193615
## 630                                                                                                                                                                                                                                                                                                 53469538
## 631                                                                                                                                                                                                                                                                                                       NA
## 632                                                                                                                                                                                                                                                                                                       NA
## 633                                                                                                                                                                                                                                                                                                       NA
## 634                                                                                                                                                                                                                                                                                   2353148705, 4871410077
## 635                                                                                                                                                                                                                                                                                                       NA
## 636                                                                                                                                                                                                                                                     529114116, 41629785, 35772382, 298509747, 2468192501
## 637                                                                                                                                                                                                                                                                                                405427035
## 638                                                                                                                                                                                                                                               29938031, 15590888, 96234820, 20793816, 23024272, 19103481
## 639                                                                                                                                                                                                                                                                                                       NA
## 640                                                                                                                                                                                                                                                                                                       NA
## 641                                                                                                                                                                                                                                                                                                       NA
## 642                                                                                                                                                                                                                                                                                      18774246, 121562670
## 643                                                                                                                                                                                                                                                                                                 57887546
## 644                                                                                                                                                                                                                                                                                     343679171, 343679171
## 645                                                                                                                                                                                                                                                      1311351074, 17004618, 1218324988966531072, 68727303
## 646                                                                                                                                                                                                                                                                           1243375088923074561, 305694283
## 647                                                                                                                                                                                                                                                                                                 79218153
## 648                                                                                                                                                                                                                                                                                                       NA
## 649                                                                                                                                                                                                                                                                                                       NA
## 650                                                                                                                                                                                                                                                                                                       NA
## 651                                                                                                                                                                                                                                                                                                       NA
## 652                                                                                                                                                                                                                                                                                                 18908973
## 653                                                                                                                                                                                                                                                                                   1651439857, 2179992194
## 654                                                                                                                                                                                                                                                                                               4707327216
## 655                                                                                                                                                                                                                                                                                                       NA
## 656                                                                                                                                                                                                                                                                                                       NA
## 657                                                                                                                                                                                                                                                                            833911266263474176, 264908467
## 658                                                                                                                                                                                                                                                                                                276254736
## 659                                                                                                                                                                                                                                                                                       830847475464470528
## 660                                                                                                                                                                                                                                                                                                 19568591
## 661                                                                                                                                                                                                                                                                                                       NA
## 662                                                                                                                                                                                                                                            1023732633505882113, 995742847931420673, 462938661, 121438877
## 663                                                                                                                                                                                                                                                                                                 17944853
## 664                                                                                                                                                                                                                                                                                                       NA
## 665                                                                                                                                                                                                                                                                                                       NA
## 666                                                                                                                                                                                                                                                                                                 10228272
## 667                                                                                                                                                                                                                                                                                                103849564
## 668                                                                                                                                                                                                                                                                                                       NA
## 669                                                                                                                                                                                                                                                                                                       NA
## 670                                                                                                                                                                                                                                                                                                       NA
## 671                                                                                                                                                                                                                                                                                                       NA
## 672                                                                                                                                                                                                                                                                                                       NA
## 673                                                                                                                                                                                                                                                                                      1003672320781807616
## 674                                                                                                                                                                                                                                                                                                       NA
## 675                                                                                                                                                                                                                                                                                                       NA
## 676                                                                                                                                                                                                                                                                                                 24713778
## 677                                                                                                                                                                                                                                                                                                       NA
## 678                                                                                                                                                                                                                                                                             755263949646368768, 28354074
## 679                                                                                                                                                                                                                                                                                                       NA
## 680                                                                                                                                                                                                                                                                                                       NA
## 681                                                                                                                                                                                                                                                                                                       NA
## 682                                                                                                                                                                                                                                                                                                       NA
## 683                                                                                                                                                                                                                                                                                                       NA
## 684                                                                                                                                                                                                                                                                                                       NA
## 685                                                                                                                                                                                                                                                                                                       NA
## 686                                                                                                                                                                                                                                                                                                 95431448
## 687                                                                                                                                                                                                                                                                                                 49857543
## 688                                                                                                                                                                                                                                                                                                       NA
## 689                                                                                                                                                                                                                                                                                       775158750546161664
## 690                                                                                                                                                                                                                                                                                                 10215212
## 691                                                                                                                                                                                                                                                                                                       NA
## 692                                                                                                                                                                                                                                                                                                       NA
## 693                                                                                                                                                                                                                                                                                                       NA
## 694                                                                                                                                                                                                                                                                                                331244103
## 695                                                                                                                                                                                                                                                                                                 47813521
## 696                                                                                                                                                                                                                                                                                                       NA
## 697                                                                                                                                                                                                                                                                                                       NA
## 698                                                                                                                                                                                                                                                                                                       NA
## 699                                                                                                                                                                                                                                                                                                 18089975
## 700                                                                                                                                                                                                                                                                                                       NA
## 701                                                                                                                                                                                                                                                                                                       NA
## 702                                                                                                                                                                                                                                                                                                       NA
## 703                                                                                                                                                                                                                                                                                      373033271, 19211550
## 704                                                                                                                                                                                                                                                                                                       NA
## 705                                                                                                                                                                                                                                                                                                       NA
## 706                                                                                                                                                                                                                                                                                                       NA
## 707                                                                                                                                                                                                                                                                             19245279, 746042153416200192
## 708                                                                                                                                                                                                                                                                                                 15292041
## 709                                                                                                                                                                                                                                                                                                       NA
## 710                                                                                                                                                                                                                                                                                                       NA
## 711                                                                                                                                                                                                                                                                                                       NA
## 712                                                                                                                                                                                                                                                                                                       NA
## 713                                                                                                                                                                                                                                  240649814, 18839785, 1447949844, 60937837, 95588504, 769108935726997504
## 714                                                                                                                                                                                                                                                                                                       NA
## 715                                                                                                                                                                                                                                                                                                       NA
## 716                                                                                                                                                                                                                                                                                                       NA
## 717                                                                                                                                                                                                                                                                                                       NA
## 718                                                                                                                                                                                                                                                                                                       NA
## 719                                                                                                                                                                                                                                                                                                 25073877
## 720                                                                                                                                                                                                                                                                                                       NA
## 721                                                                                                                                                                                                                                                                                     25073877, 3951966796
## 722                                                                                                                                                                                                                                                                                                       NA
## 723                                                                                                                                                                                                                                                                                       704882735815401472
## 724                                                                                                                                                                                                                                                                                                       NA
## 725                                                                                                                                                                                                                                                                                                       NA
## 726                                                                                                                                                                                                                                                                                       787215955063664640
## 727                                                                                                                                                                                                                                                                                                       NA
## 728                                                                                                                                                                                                                                                                                                       NA
## 729                                                                                                                                                                                                                                                                                                       NA
## 730                                                                                                                                                                                                                                                                                                 18774246
## 731                                                                                                                                                                                                                                                                                                       NA
## 732                                                                                                                                                                                                                                                                                   3238948245, 1374478567
## 733                                                                                                                                                                                                                                                                                                 43963249
## 734                                                                                                                                                                                                                                                                                                       NA
## 735                                                                                                                                                                                                                                                                                                       NA
## 736                                                                                                                                                                                                                                                                                                       NA
## 737                                                                                                                                                                                                                                                                                                       NA
## 738                                                                                                                                                                                                                                                                                                       NA
## 739                                                                                                                                                                                                                                                                                                       NA
## 740                                                                                                                                                                                                                                                                                                       NA
## 741                                                                                                                                                                                                                                                                                                173996982
## 742                                                                                                                                                                                                                                                                                      121073270, 84047875
## 743                                                                                                                                                                                                                                                                                                       NA
## 744                                                                                                                                                                                                                                                                                                 91478624
## 745                                                                                                                                                                                                                                                                                                 15009164
## 746                                                                                                                                                                                                                                                                                                       NA
## 747                                                                                                                                                                                                                                                                                                       NA
## 748                                                                                                                                                                                                                                                                                                       NA
## 749                                                                                                                                                                                                                                                                                                194605439
## 750                                                                                                                                                                                                                                                                                                       NA
## 751                                                                                              954954085840584704, 266101942, 964287241471197184, 1089842873388826625, 1216461331802529793, 907461015532584960, 532789238, 1129127427664429056, 10275462, 1065869268, 16129920, 813286, 1367531, 107125748
## 752                                                                                                                                                                                                                                                                                                       NA
## 753                                                                                                                                                                                                                                                                                                       NA
## 754                                                                                                                                                                                                                                                                                                       NA
## 755                                                                                                                                                                                                                                                                                                 20596281
## 756                                                                                                                                                                                                                                                                                                102994475
## 757                                                                                                                                                                                                                                                                                                 25073877
## 758                                                                                                                                                                                                                                                                                                       NA
## 759                                                                                                                                                                                                                                                                                                738149822
## 760                                                                                                                                                                                                                                                                                                       NA
## 761                                                                                                                                                                                                                                                                                                       NA
## 762                                                                                                                                                                                                                                                                                                       NA
## 763                                                                                                                                                                                                                                                                                                       NA
## 764                                                                                                                                                                                                                                                                                                  1344951
## 765                                                                                                                                                                                                                                                                                                       NA
## 766                                                                                                                                                                                                                                                                                                       NA
## 767                                                                                                                                                                                                                                                                                                       NA
## 768                                                                                                                                                                                                                                                                                       93949373, 36960352
## 769                                                                                                                                                                                                                                                                                                       NA
## 770                                                                                                                                                                                                                                                                             17444764, 17220817, 28023330
## 771                                                                                                                                                                                                                                                                                                       NA
## 772                                                                                                                                                                                                                                                                                                 69298376
## 773                                                                                                                                                                                                                                                                                                       NA
## 774                                                                                                                                                                                                                                                                             14678103, 78060290, 52770751
## 775                                                                                                                                                                                                                                                                                       952637684626919424
## 776                                                                                                                                                                                                                                                                                                500704345
## 777                                                                                                                                                                                                                                                                                                       NA
## 778                                                                                                                                                                                                                                                                                                       NA
## 779                                                                                                                                                                                                                                                                                                       NA
## 780                                                                                                                                                                                                                                                                                                       NA
## 781                                                                                                                                                                                                                                                                                                       NA
## 782                                                                                                                                                                                                                                                                                       17733320, 41635723
## 783                                                                                                                                                                                                                                                                                                       NA
## 784                                                                                                                                                                                                                                                                                                       NA
## 785                                                                                                                                                                                                                                                                                                       NA
## 786                                                                                                                                                                                                                                                                                                       NA
## 787                                                                                                                                                                                                                                                                                       15506669, 44196397
## 788                                                                                                                                                                                                            37034483, 19897138, 89732309, 18472984, 374526155, 83529586, 2791245386, 1097553362, 19929890
## 789                                                                                                                                                                                                                                                                                                       NA
## 790                                                                                                                                                                                                                                                                                       700617769474129920
## 791                                                                                                                                                                                                                                                                                                407781903
## 792                                                                                                                                                                                                                                                                                       14859642, 41266395
## 793                                                                                                                                                                                                                                                                                                       NA
## 794                                                                                                                                                                                                                                                                                               3155786002
## 795                                                                                                                                                                                                                                                                                                       NA
## 796                                                                                                                                                                                                                                                                                                       NA
## 797                                                                                                                                                                                                                                                                                                       NA
## 798                                                                                                                                                                                                                                                                                                       NA
## 799                                                                                                                                                                                                                                                                           971145370326781953, 1246136822
## 800                                                                                                                                                                                                                                                                                                       NA
## 801                                                                                                                                                                                                                                                                                                196168350
## 802                                                                                                                                                                                                                                                                                     441911983, 827609114
## 803                                                                                                                                                                                                                                                                                                541068411
## 804                                                                                                                                                                                                                                                                                                       NA
## 805                                                                                                                                                                                                                                                                            600097847, 16143516, 18144581
## 806                                                                                                                                                                                                                                                                                       791744773707235328
## 807                                                                                                                                                                                                                                                                                                 21148293
## 808                                                                                                                                                                                                                                                                                                       NA
## 809                                                                                                                                                                                                                                                                                                       NA
## 810                                                                                                                                                                                                                                                                            3445758553, 201421060, 807095
## 811                                                                                                                                                                                                                                                                                                       NA
## 812                                                                                                                                                                                                                                                                                      16785360, 544268841
## 813                                                                                                                                                                                                                                                                                                       NA
## 814                                                                                                                                                                                                                                                                                                       NA
## 815                                                                                                                                                              14499829, 2936714848, 2914442873, 263284370, 125346858, 2890844201, 277920665, 700342504365887488, 1537137440, 5988062, 91478624, 176396711
## 816                                                                                                                                                                                                                                                                                     33912784, 2215067640
## 817                                                                                                                                                                                                                                                                                                118666965
## 818                                                                                                                                                                                                                                                                                                       NA
## 819                                                                                                                                                                                                                                                                                                       NA
## 820                                                                                                                                                                                                                                                                                                 18382184
## 821                                                                                                                                                                                                                                                                                                       NA
## 822                                                                                                                                                                                                                                           126296958, 335373412, 52047154, 171858231, 16806285, 469307135
## 823                                                                                                                                                                                                                                                                                                 20177010
## 824                                                                                                                                                                                                                                                                                                 70431502
## 825                                                                                                                                                                                                                                                                                                       NA
## 826                                                                                                                                                                                                                                                                                                       NA
## 827                                                                                                                                                                                                                                                                                                       NA
## 828                                                                                                                                                                                                                                                                                                       NA
## 829                                                                                                                                                                                                                                                                                                       NA
## 830                                                                                                                                                                                                                                                                                                       NA
## 831                                                                                                                                                                                                                                                                                                       NA
## 832                                                                                                                                                                                                                                                                           1339835893, 25073877, 14377605
## 833                                                                                                                                                                                                                                                                                                       NA
## 834                                                                                                                                                                                                                                                                             24053850, 32435247, 26747046
## 835                                                                                                                                                                                                                                                      930133384936001537, 1733765090, 41233451, 102071743
## 836                                                                                                                                                                                                                                                                                                       NA
## 837                                                                                                                                                                                                                                                                                                       NA
## 838                                                                                                                                                                                                                                                                                                       NA
## 839                                                                                                                                                                                                                                                                                                       NA
## 840                                                                                                                                                                                                                                                                                                       NA
## 841                                                                                                                                                                                                                                                                                                       NA
## 842                                                                                                                                                                                                                                                                                                       NA
## 843                                                                                                                                                                                                                                                                                                       NA
## 844                                                                                                                                                                                                                                                                                                       NA
## 845                                                                                                                                                                                                                                                                                                       NA
## 846                                                                                                                                                                                                                                                                                                       NA
## 847                                                                                                                                                                                                                                                                                                       NA
## 848                                                                                                                                                                                                                                                                                                229466877
## 849                                                                                                                                                                                                                                                                  746371177174679552, 1241090826, 7587032
## 850                                                                                                                                                                                                                                                                                                       NA
## 851                                                                                                                                                                                                                                                                                                       NA
## 852                                                                                                                                                                                                                                                                                                       NA
## 853                                                                                                                                                                                                                                                                                                       NA
## 854                                                                                                                                                                                                                                                                                                       NA
## 855                                                                                                                                                                                                                                                                                                       NA
## 856                                                                                                                                                                                                                                                                                      1242511625074008064
## 857                                                                                                                                                                                                                                                                                                       NA
## 858                                                                                                                                                                                                                                                                                                       NA
## 859                                                                                                                                                                                                                                                                                                       NA
## 860                                                                                                                                                                                                                                                                                                       NA
## 861                                                                                                                                                                                                                                                                                                       NA
## 862                                                                                                                                                                                                                                                                                                       NA
## 863                                                                                                                                                                                                                                                                                                       NA
## 864                                                                                                                                                                                                                                                                                                 10228272
## 865                                                                                                                                                                                                                                                                                                       NA
## 866                                                                                                                                                                                                                                                                            989139154989613059, 147321516
## 867                                                                                                                                                                                                                                                                                                       NA
## 868                                                                                                                                                                                                                                                                                                       NA
## 869                                                                                                                                                                                                                                                                                                 10228272
## 870                                                                                                                                                                                                                                                                                                       NA
## 871                                                                                                                                                                                                                                                                                               2998864022
## 872                                                                                                                                                                                                                                                                                                 17358750
## 873                                                                                                                                                                                                                                                                                       755127537089470464
## 874                                                                                                                                                                                                                                                                                                       NA
## 875                                                                                                                                                                                                                                                                                                       NA
## 876                                                                                                                                                                                                                                           113700310, 868137108766052352, 1229826044556869634, 1886468286
## 877                                                                                                                                                                                                                                                                                       829881163472916481
## 878                                                                                                                                                                                                                                                                                        426028646, 939091
## 879                                                                                                                                                                                                                                                                                                       NA
## 880                                                                                                                                                                                                                                                                                                       NA
## 881                                                                                                                                                                                                                                                                                                       NA
## 882                                                                                                                                                                                                                                                                                                520685404
## 883                                                                                                                                                                                                                                                                                                110396781
## 884                                                                                                                                                                                                                                                                                                 82821040
## 885                                                                                                                                                                                                                                                                                                       NA
## 886                                                                                                                                                                                                                                                                                                959354996
## 887                                                                                                                                                                                                                                                                                                       NA
## 888                                                                                                                                                                                                                                                         1215420238973399040, 943914025695481856, 1917731
## 889                                                                                                                                                                                                                                                                                                       NA
## 890                                                                                                                                                                                                                                                                                                       NA
## 891                                                                                                                                                                                                                                                                          1030902468, 72013267, 193526287
## 892                                                                                                                                                                                                                                                                                                       NA
## 893                                                                                                                                                                                                                                                                                                       NA
## 894                                                                                                                                                                                                                                                                                                       NA
## 895                                                                                                                                                                                                                                                                                                       NA
## 896                                                                                                                                                                                                                                                                                                       NA
## 897                                                                                                                                                                                                                                                                                                       NA
## 898                                                                                                                                                                                                                                                                                                       NA
## 899                                                                                                                                                                                                                                                                                                 14780915
## 900                                                                                                                                                                                                                                                                                                       NA
## 901                                                                                                                                                                                                                                                                                                       NA
## 902                                                                                                                                                                                                                                                                             12407832, 966923171399024649
## 903                                                                                                                                                                                                                                                                                                       NA
## 904                                                                                                                                                                                                                                                                                                       NA
## 905                                                                                                                                                                                                                                                                          218027755, 34036358, 1950378002
## 906                                                                                                                                                                                                                                                       936912667104694272, 979599536, 1084924525232513025
## 907                                                                                                                                                                                                                                                                   17462502, 73469605, 17462502, 73469605
## 908                                                                                                                                                                                                                                                                                                       NA
## 909                                                                                                                                                                                                                                                                                                       NA
## 910                                                                                                                                                                                                                                                                                                       NA
## 911                                                                                                                                                                                                                                                                                                  2890961
## 912                                                                                                                                                                                                                                                                                                       NA
## 913                                                                                                                                                                                                                                                                                      1183109735244914688
## 914                                                                                                                                                                                                                                                                                                       NA
## 915                                                                                                                                                                                                                                                                                                       NA
## 916                                                                                                                                                                                                                                                                                                       NA
## 917                                                                                                                                                                                                                                                                                                       NA
## 918                                                                                                                                                                                                                                                                                                       NA
## 919                                                                                                                                                                                                                                                                                                       NA
## 920                                                                                                                                                                                                                                                                                                       NA
## 921                                                                                                                                                                                                                                                                                                       NA
## 922                                                                                                                                                                                                                                                                                                       NA
## 923                                                                                                                                                                                                                                                                                                182758739
## 924                                                                                                                                                                                                                                                                                                       NA
## 925                                                                                                                                                                                                                                                                                                       NA
## 926                                                                                                                                                                                                                                                                                                       NA
## 927                                                                                                                                                                                                                                                                                                       NA
## 928                                                                                                                                                                                                                                                                                                       NA
## 929                                                                                                                                                                                                                                                                                                       NA
## 930                                                                                                                                                                                                                                                                                                       NA
## 931                                                                                                                                                                                                                                                                                                       NA
## 932                                                                                                                                                                                                                                                                                                       NA
## 933                                                                                                                                                                                                                                                                                                 19767193
## 934                                                                                                                                                                                                                                                                                                       NA
## 935                                                                                                                                                                                                                                                                                                       NA
## 936                                                                                                                                                                                                                                                                                                 22667478
## 937                                                                                                                                                                                                                                                                                                       NA
## 938                                                                                                                                                                                                                                                                                                 19106719
## 939                                                                                                                                                                                                                                                                                                       NA
## 940                                                                                                                                                                                                                                                                                                       NA
## 941                                                                                                                                                                                                                                                                                                       NA
## 942                                                                                                                                                                                                                                                                                                300463737
## 943                                                                                                                                                                                                                                                                                                       NA
## 944                                                                                                                                                                                                                                                                                                       NA
## 945                                                                                                                                                                                                                                                                                                       NA
## 946                                                                                                                                                                                                                                                                                                 41243579
## 947                                                                                                                                                                                                                                                                                                 11347122
## 948                                                                                                                                                                                                                                                                                                       NA
## 949                                                                                                                                                                                                                                                                                                139823781
## 950                                                                                                                                                                                                                                                                                                       NA
## 951                                                                                                                                                                                                                                                                                                       NA
## 952                                                                                                                                                                                                                                                                                                       NA
## 953                                                                                                                                                                                                                                                                                                       NA
## 954                                                                                                                                                                                                                                                                                                       NA
## 955                                                                                                                                                                                                                                                                                                       NA
## 956                                                                                                                                                                                                                                                                                                       NA
## 957                                                                                                                                                                                                                                                                                                       NA
## 958                                                                                                                                                                                                                                                                                                       NA
## 959                                                                                                                                                                                                                                                                                                       NA
## 960                                                                                                                                                                                                                                                                                                 17232815
## 961                                                                                                                                                                                                                                                                                                       NA
## 962                                                                                                                                                                                                                                                                                                       NA
## 963                                                                                                                                                                                                                                                                                                742543573
## 964                                                                                                                                                                                                                                                                                                       NA
## 965                                                                                                                                                                                                                                                                                                       NA
## 966                                                                                                                                                                                                                                                                                                       NA
## 967                                                                                                                                                                                                                                                                                                 17980523
## 968                                                                                                                                                                                                                                                                                                       NA
## 969                                                                                                                                                                                                                                                                                                       NA
## 970                                                                                                                                                                                                                                                                                                       NA
## 971                                                                                                                                                                                                                                                                                                       NA
## 972                                                                                                                                                                                                                                                                                                       NA
## 973                                                                                                                                                                                                                                                                                                       NA
## 974                                                                                                                                                                                                                                                                                                       NA
## 975                                                                                                                                                                                                                                                                                                       NA
## 976                                                                                                                                                                                                                                                                                                       NA
## 977                                                                                                                                                                                                                                                                                                       NA
## 978                                                                                                                                                                                                                                                                                                720314424
## 979                                                                                                                                                                                                                                                                                                225265639
## 980                                                                                                                                                                                                                                                                                                 10228272
## 981                                                                                                                                                                                                                                                                                                       NA
## 982                                                                                                                                                                                                                                                                                                 14312391
## 983                                                                                                                                                                                                                                                                                                       NA
## 984                                                                                                                                                                                                                                                                                                       NA
## 985                                                                                                                                                                                                                                                                                                       NA
## 986                                                                                                                                                                                                                                                                                                       NA
## 987                                                                                                                                                                                                                                                                                                       NA
## 988                                                                                                                                                                                                                                                                                                       NA
## 989                                                                                                                                                                                                                                                                                                       NA
## 990                                                                                                                                                                                                                                                                                                       NA
## 991                                                                                                                                                                                                                                                                                                 37601149
## 992                                                                                                                                                                                                                                                                                                       NA
## 993                                                                                                                                                                                                                                                                                                       NA
## 994                                                                                                                                                                                                                                                                                                 95463107
## 995                                                                                                                                                                                                                                                                                                 15066271
## 996                                                                                                                                                                                                                                                                                      1225135593937465344
## 997                                                                                                                                                                                                                                                                                      36339766, 510379055
## 998                                                                                                                                                                                                                                                                                                       NA
## 999                                                                                                                                                                                                                                                                          4491254053, 1039139660927258625
## 1000                                                                                                                                                                                                                                                     3124524385, 828277954446761984, 1077707749893554176
## 1001                                                                                                                                                                                                                                                                                                      NA
## 1002                                                                                                                                                                                                                                                                                                25238117
## 1003                                                                                                                                                                                                                                                        53159373, 80944550, 16129920, 21414576, 34713362
## 1004                                                                                                                                                                                                                                                                                                      NA
## 1005                                                                                                                                                                                                                                                                25073877, 15764644, 138203134, 216776631
## 1006                                                                                                                                                                                                                                                                           53059816, 890207246, 28308561
## 1007                                                                                                                                                                                                                                                                                                      NA
## 1008                                                                                                                                                                                                                                                                                                      NA
## 1009                                                                                                                                                                                                                                                                                                      NA
## 1010                                                                                                                                                                                                                                                                                                      NA
## 1011                                                                                                                                                                                                                                                                                      948946378939609089
## 1012                                                                                                                                                                                                                                                                                               443090107
## 1013                                                                                                                                                                                                                                                                                               124038192
## 1014                                                                                                                                                                                                                                                                                                      NA
## 1015                                                                                                                                                                                                                                                                                                      NA
## 1016                                                                                                                                                                                                                                                                                                      NA
## 1017                                                                                                                                                                                                                                                                                                      NA
## 1018                                                                                                                                                                                                                                                                                              2698496316
## 1019                                                                                                                                                                                                                                                                          1060655470178787328, 121597316
## 1020                                                                                                                                                                                                                                                                                              4068337756
## 1021                                                                                                                                                                                                                                                                                                26572460
## 1022                                                                                                                                                                                                                                                                                      36131454, 23555906
## 1023                                                                                                                                                                                                                                                                                      934771493220880384
## 1024                                                                                                                                                                                                                                                                                                      NA
## 1025                                                                                                                                                                                                                                                                                                      NA
## 1026                                                                                                                                                                                                                                                                                                16017475
## 1027                                                                                                                                                                                                                                                                                                      NA
## 1028                                                                                                                                                                                                                                                                                                      NA
## 1029                                                                                                                                                                                                                                                                                                      NA
## 1030                                                                                                                                                                                                                                                                                                      NA
## 1031                                                                                                                                                                                                                                                                                                      NA
## 1032                                                                                                                                                                                                                                                                                                      NA
## 1033                                                                                                                                                                                                                                                                                               522701657
## 1034                                                                                                                                                                                                                                                                                                23128315
## 1035                                                                                                                                                                                                                                                                                                      NA
## 1036                                                                                                                                                                                                                                                                                                      NA
## 1037                                                                                                                                                                                                                                                                                   2750127259, 232268199
## 1038                                                                                                                                                                                                                                                                                                      NA
## 1039                                                                                                                                                                                                                                                                                                      NA
## 1040                                                                                                                                                                                                                                                                                                      NA
## 1041                                                                                                                                                                                                                                                                                                14887150
## 1042                                                                                                                                                                                                                                                                                                 7972552
## 1043                                                                                                                                                                                                                                                                                                      NA
## 1044                                                                                                                                                                                                                                                                                                      NA
## 1045                                                                                                                                                                                                                                                                                                10228272
## 1046                                                                                                                                                                                                                                                                                                21522338
## 1047                                                                                                                                                                                                                                                                                                29442313
## 1048                                                                                                                                                                                                                                                                                      983831766665490432
## 1049                                                                                                                                                                                                                                                                                      722793491059769344
## 1050                                                                                                                                                                                                                                                                                               402091163
## 1051                                                                                                                                                                                                                                           1169715382971768833, 931286316, 1216789047990984705, 25073877
## 1052                                                                                                                                                                                                                                                                                                      NA
## 1053                                                                                                                                                                                                                                                                                                      NA
## 1054                                                                                                                                                                                                                                                                                                25073877
## 1055                                                                                                                                           872896981299068929, 247217109, 1968436734, 333509549, 823908762, 725274921920811009, 14159148, 145935897, 515838635, 1074629833697693696, 1085276131413147649
## 1056                                                                                                                                                                                                                                                                                              3064000930
## 1057                                                                                                                                                                                                                                                                                                87028400
## 1058                                                                                                                                                                                                                                                                                                      NA
## 1059                                                                                                                                                                                                                                                                                                      NA
## 1060                                                                                                                                                                                                                                                                                               371726146
## 1061                                                                                                                                                                                                                                                                                              2490177326
## 1062                                                                                                                                                                                                                                                                                      985916593065476096
## 1063                                                                                                                                                                                                                                                                                              1286312880
## 1064                                                                                                                                                                                                                                                                                                      NA
## 1065                                                                                                                                                                                                                                                                                                      NA
## 1066                                                                                                                                                                                                                                                                                                      NA
## 1067                                                                                                                                                                                                                                                                                                      NA
## 1068                                                                                                                                                                                                                                                                                                      NA
## 1069                                                                                                                                                                                                                                                                                                      NA
## 1070                                                                                                                                                                                                                                                                                                      NA
## 1071                                                                                                                                                                                                                                                                                                      NA
## 1072                                                                                                                                                                                                                                                                                                      NA
## 1073                                                                                                                                                                                                                                                                                                      NA
## 1074                                                                                                                                                                                                                                                                                                      NA
## 1075                                                                                                                                                                                                                                                                                                      NA
## 1076                                                                                                                                                                                                                                                                                                      NA
## 1077                                                                                                                                                                                                                                                                                        759251, 22799750
## 1078                                                                                                                                                                                                                                                                                                      NA
## 1079                                                                                                                                                                                                                                                                                    216464191, 253983571
## 1080                                                                                                                                                                                                                                                                                                      NA
## 1081                                                                                                                                                                                                                                                                                                      NA
## 1082                                                                                                                                                                                                                                                                                                      NA
## 1083                                                                                                                                                                                                                                                                                                      NA
## 1084                                                                                                                                                                                                                                                                                                      NA
## 1085                                                                                                                                                                                                                                                                                      59320075, 59320075
## 1086                                                                                                                                                                                                                                                                                                      NA
## 1087                                                                                                                                                                                                                                                                                                      NA
## 1088                                                                                                                                                                                                                                                                                                      NA
## 1089                                                                                                                                                                                                                                                                                              4917249014
## 1090                                                                                                                                                                                                                                                                          1007042541915725824, 422186331
## 1091                                                                                                                                                                                                                                                                 133566838, 849513614339952642, 82268145
## 1092                                                                                                                                                                                                                                                                                                      NA
## 1093                                                                                                                                                                                                                                                                                                      NA
## 1094                                                                                                                                                                                                                                                                                                10228272
## 1095                                                                                                                                                                                                                                                                                               398212417
## 1096                                                                                                                                                                                                                                                                                              3131144855
## 1097                                                                                                                                                                                                                                                                                                      NA
## 1098                                                                                                                                                                                                                                                                                                      NA
## 1099                                                                                                                                                                                                                                                                            743199714502402048, 14574763
## 1100                                                                                                                                                                                                                                                                                                      NA
## 1101                                                                                                                                                                                                                                                                                                      NA
## 1102                                                                                                                                                                                                                                                                                                      NA
## 1103                                                                                                                                                                                                                                                                                                      NA
## 1104                                                                                                                                                                                                                                                                                                      NA
## 1105                                                                                                                                                                                                                                                                                                      NA
## 1106                                                                                                                                                                                                                                                                                                      NA
## 1107                                                                                                                                                                                                                                                                                                74148054
## 1108                                                                                                                                                                                                                                                                                                      NA
## 1109                                                                                                                                                                                                                                                                                                      NA
## 1110                                                                                                                                                                                                                                                                                     1054332434630799363
## 1111                                                                                                                                                                                                                                                                                                      NA
##                                                                                                                                                                                                                                                                                       mentions_screen_name
## 1                                                                                                                                                                                                                                                                                                       NA
## 2                                                                                                                                                                                                                                                                                                       NA
## 3                                                                                                                                                                                                                                                                                                       NA
## 4                                                                                                                                                                                                                                                                                                       NA
## 5                                                                                                                                                                                                                                                                                                       NA
## 6                                                                                                                                                                                                                                                                                                       NA
## 7                                                                                                                                                                                                                                                                                                       NA
## 8                                                                                                                                                                                                                                                                                                       NA
## 9                                                                                                                                                                                                                                                                                                       NA
## 10                                                                                                                                                                                                                                                                                            unusual4tune
## 11                                                                                                                                                                                                                                                                                                      NA
## 12                                                                                                                                                                                                                                                                                                      NA
## 13                                                                                                                                                                                                                                                                                             StephenKing
## 14                                                                                                                                                                                                                                                                 RudyGiuliani, jeffgiesea, charliekirk11
## 15                                                                                                                                                                                                                                                                                                      NA
## 16                                                                                                                                                                                                                                                                                                      NA
## 17                                                                                                                                                                                                                                                                                                      NA
## 18                                                                                                                                                                                                                                                                                                      NA
## 19                                                                                                                                                                                                                                                                                                      NA
## 20                                                                                                                                                                                                                                                                                                      NA
## 21                                                                                                                                                                                                                                                                                                      NA
## 22                                                                                                                                                                                                                                                                                                      NA
## 23                                                                                                                                                                                                                                                                                                      NA
## 24                                                                                                                                                                                                                                                                                                      NA
## 25                                                                                                                                                                                                                                                                                                      NA
## 26                                                                                                                                                                                                                                                                                                      NA
## 27                                                                                                                                                                                                                                                                                                      NA
## 28                                                                                                                                                                                                                                                                                                      NA
## 29                                                                                                                                                                                                                                                                                                      NA
## 30                                                                                                                                                                                                                                                                                                      NA
## 31                                                                                                                                                                                                                                                                               PrinceMolekga, kulanicool
## 32                                                                                                                                                                                                                                                                                                      NA
## 33                                                                                                                                                                                                                                                                              JudgeChrisHill, JudgeClayJ
## 34                                                                                                                                                                                                                                                                                  RebootHQ, jerrycolonna
## 35                                                                                                                                                                                                                                                                                                      NA
## 36                                                                                                                                                                                                                                                                                                      NA
## 37                                                                                                                                                                                                                                                                                                Pontifex
## 38                                                                                                                                                                                                                                                                                               IUFglobal
## 39                                                                                                                                                                                                                                                                                                      NA
## 40                                                                                                                                                                                                                                              sundarpichai, awscloud, Microsoft, lessin, FrontendMasters
## 41                                                                                                                                                                                                                                                                                                      NA
## 42                                                                                                                                                                                                                                                                                                      NA
## 43                                                                                                                                                                                                                                                                                                      NA
## 44                                                                                                                                                                                                                                                                                                      NA
## 45                                                                                                                                                                                                                                                                                                      NA
## 46                                                                                                                                                                                                                                                                                                      NA
## 47                                                                                                                                                                                                                                                                                                      NA
## 48                                                                                                                                                                                                                                                                                                      NA
## 49                                                                                                                                                                                                                                                thechefsforum, BBCLondonNews, SabrinaGhayour, MGaletti01
## 50                                                                                                                                                                                                                                                                                               CodyThorn
## 51                                                                                                                                                                                                                                                                                                      NA
## 52                                                                                                                                                                                                                                                                                              Reboticant
## 53                                                                                                                                                                                                                                                                                               Alienware
## 54                                                                                                                                                                                                                                                                                                      NA
## 55                                                                                                                                                                                                                                                                                                      NA
## 56                                                                                                                                                                                                                                                                                                wbcknews
## 57                                                                                                                                                                                                                                                                                           Cambridge_Uni
## 58                                                                                                                                                                                                                                                                                                      NA
## 59                                                                                                                                                                                                                                                                   angryablib, RobWarrenMD, JasonNixonAB
## 60                                                                                                                                                                                                                                                                                                      NA
## 61                                                                                                                                                                                                                                                                                                      NA
## 62                                                                                                                                                                                                                                                                                 HomaTav, PublishersWkly
## 63                                                                                                                                                                                                                                                                                                      NA
## 64                                                                                                                                                                                                                                                                                                ty_olsen
## 65                                                                                                                                                                                                                                                                                          BenjaminNorton
## 66                                                                                                                                                                                                                                                                                                      NA
## 67                                                                                                                                                                                                                                                                                                      NA
## 68                                                                                                                                                                                                                                                                                                      NA
## 69                                                                                                                                                                                                                                                                                            JohnsHopkins
## 70                                                                                                                                                                                                                                                                                                  News24
## 71                                                                                                                                                                                                                                                                                                      NA
## 72                                                                                                                                                                                                                                                                                    BSYBJP, narendramodi
## 73                                                                                                                                                                                                                                                                                                      NA
## 74                                                                                                                                                                                                                                                                                         lampert_poliana
## 75                                                                                                                                                                                                                                                                                                      NA
## 76                                                                                                                                                                                                                                                                                                      NA
## 77                                                                                                                                                                                                                                                                                          PallCare_Nurse
## 78                                                                                                                                                                                                                                                                                                      NA
## 79                                                                                                                                                                                                                                                                                                      NA
## 80                                                                                                                                                                                                                                                                                                      NA
## 81                                                                                                                                                                                                                                                                    MigunaMiguna, RobertAlai, NelsonHavi
## 82                                                                                                                                                                                                                                                                                                      NA
## 83                                                                                                                                                                                                                                                                               socialfoodhour, reddylane
## 84                                                                                                                                                                                                                                                                                                      NA
## 85                                                                                                                                                                                                                                                                                           securedatakit
## 86                                                                                                                                                                                                                      eggheader, ProfOsinbajo, kfayemi, APCNigeria, OfficialPDPNig, DigiCommsNG, NCDCgov
## 87                                                                                                                                                                                                                                                                                                      NA
## 88                                                                                                                                                                                                                                                                                   nyphospital, Columbia
## 89                                                                                                                                                                                                                                                                                                      NA
## 90                                                                                                                                                                                                                                                                                                      NA
## 91                                                                                                                                                                                                                                                                                                      NA
## 92                                                                                                                                                                                                                                                                                                      NA
## 93                                                                                                                                                                                                                                                                                                      NA
## 94                                                                                                                                                                                                                                                                                                      NA
## 95                                                                                                                                                                                                                                                                                                      NA
## 96                                                                                                                                                                                                                                                                                                      NA
## 97                                                                                                                                                                                                                                                                                              curnwah158
## 98                                                                                                                                                                                                                                                                                                      NA
## 99                                                                                                                                                                                                                                                                                                      NA
## 100                                                                                                                                                                                                                                                                                               Simpsons
## 101                                                                                                                                                                                                                                                                                                     NA
## 102                                                                                                                                                                                                                                                                                                     NA
## 103                                                                                                                                                                                                                                                                                                     NA
## 104                                                                                                                                                                                                                                                                                          sal_castaneda
## 105                                                                                                                                                                                                                                                                                                     NA
## 106                                                                                                                                                                                                                                                                                             RepKenBuck
## 107                                                                                                                                                                                                                                                                                                     NA
## 108                                                                                                                                                                                                                                                                             RudyGiuliani, RealCandaceO
## 109                                                                                                                                                                                                                                                                          DerbysPolice, DerPolDroneUnit
## 110                                                                                                                                                                                                                                                                                                     NA
## 111                                                                                                                                                                                                                                                                                       NCDCgov, NCDCgov
## 112                                                                                                                                                                                                                                                                                                     NA
## 113                                                                                                                                                                                                                                                                                                     NA
## 114                                                                                                                                                                                                                                                                                                     NA
## 115                                                                                                                                                                                                                                                                                                     NA
## 116                                                                                                                                                                                                                                                                                                     NA
## 117                                                                                                                                                                                                                                                                                                     NA
## 118                                                                                                                                                                                                                                                                                                   CNBC
## 119                                                                                                                                                                                                                     PMOIndia, ICMRDELHI, atulkasbekar, RahulGandhi, LilavatiHRC, HospitalHinduja, ndtv
## 120                                                                                                                                                                                                                                                                                                     NA
## 121                                                                                                                                                                                                                                                                                        PatriqKanyomozi
## 122                                                                                                                                                                                                                                                                                                     NA
## 123                                                                                                                                                                                                                                                                                                     NA
## 124                                                                                                                                                                                                                                                           JustinTrudeau, SteveRobertsTO, SarahParrott7
## 125                                                                                                                                                                                                                                                                                                     NA
## 126                                                                                                                                                                                                                                                                                                     NA
## 127                                                                                                                                                                                                                                                                                                     NA
## 128                                                                                                                                                                                                                                                                                                     NA
## 129                                                                                                                                                                                                                                                                                  benfelder_okc, joy4ok
## 130                                                                                                                                                                                                                                                                                                     NA
## 131                                                                                                                                                                                                                                                                                                     NA
## 132                                                                                                                                                                                                                                                                                        Vijayabaskarofl
## 133                                                                                                                                                                                                                                                                                                     NA
## 134                                                                                                                                                                                                                                                                                                     NA
## 135                                                                                                                                                                                                                                                                                          googlepodcast
## 136                                                                                                                                                                                                                                                                                                     NA
## 137                                                                                                                                                                                                                                                                                                     NA
## 138                                                                                                                                                                                                                                                                                        realDonaldTrump
## 139                                                                                                                                                                                                                                                                         theresabernardo, OntVetCollege
## 140                                                                                                                                                                                                                                                                                                     NA
## 141                                                                                                                                                                                                                                                    BJP4India, narendramodi, nsitharaman, ianuragthakur
## 142                                                                                                                                                                                                                                                                                                     NA
## 143                                                                                                                                                                                                                                                                                                     NA
## 144                                                                                                                                                                                                                                                                                          gatewaypundit
## 145                                                                                                                                                                                                                                    narendramodi, PMOIndia, ZeeNewsHindi, aajtak, indiatvnews, republic
## 146                                                                                                                                                                                                                                                                                                     NA
## 147                                                                                                                                                                                                                                                                                                     NA
## 148                                                                                                                                                                                                                                                                                        realDonaldTrump
## 149                                                                                                                                                                                                                                                                                                     NA
## 150                                                                                                                                                                                                                                                                                                DKMS_uk
## 151                                                                                                                                                                                                                                                                                                     NA
## 152                                                                                                                                                                                                                                                                                                     NA
## 153                                                                                                                                                                                                                                                                                                     NA
## 154                                                                                                                                                                                                                                                                                                     NA
## 155                                                                                                                                                                                                                                                                                                     NA
## 156                                                                                                                                                                                                                                                                     CNN, andersoncooper, drsanjaygupta
## 157                                                                                                                                                                                                                                                                                                     NA
## 158                                                                                                                                                                                                                                                                                                  DandC
## 159                                                                                                                                                                                                                                                                                                     NA
## 160                                                                                                                                                                                                                                                                                                BIPrime
## 161                                                                                                                                                                                                                                                                                                     NA
## 162                                                                                                                                                                                                                                                                                                     NA
## 163                                                                                                                                                                                                                                                                                                     NA
## 164                                                                                                                                                                                                                                                                                                     NA
## 165                                                                                                                                                                                                                                                                                                     NA
## 166                                                                                                                                                                                                                                                                                                     NA
## 167                                                                                                                                                                                                                                                                          LaraLeaTrump, realDonaldTrump
## 168                                                                                                                                                                                                                                                                                                     NA
## 169                                                                                                                                                                                                                              SAFoundationN, SAfridiOfficial, iamamirofficial, harbhajan_singh, CJordan
## 170                                                                                                                                                                                                                                                                                                     NA
## 171                                                                                                                                                                                                                                                                                                     NA
## 172                                                                                                                                                                                   PrabhasRaju, BTR_KTR, KTRTRS, TelanganaCMO, alluarjun, ssrajamouli, JAGANTRS, JAYANAVEENTRS, Dr_RakeshTRS, trsharish
## 173                                                                                                                                                                                                                                                                                                     NA
## 174                                                                                                                                                                                                                                                                                                     NA
## 175                                                                                                                                                                                                                                                                                             NYGovCuomo
## 176                                                                                                                                                                                                                                                                                                     NA
## 177                                                                                                                                                                                                                                                                                                     NA
## 178                                                                                                                                                                                                                                                                                         TheOfficialSBI
## 179                                                                                                                                                                                                                                                                                                     NA
## 180                                                                                                                                                                                                                                                                                                     NA
## 181                                                                                                                                                                                                                                                                                                     NA
## 182                                                                                                                                                                                                                                                                                                     NA
## 183                                                                                                                                                                                                                                     rfeenstra2, JanetBrown980, CKNW, GlobalBC, jillreports, steeletalk
## 184                                                                                                                                                                                                                                                                                          alykhansatchu
## 185                                                                                                                                                                                                                                                                                                     NA
## 186                                                                                                                                                                                                                                                                                                     NA
## 187                                                                                                                                                                                                                                                                                                     NA
## 188                                                                                                                                                                                                                                                                                                     NA
## 189                                                                                                                                                                                                                                                              SaharaReporters, followlasg, jidesanwoolu
## 190                                                                                                                                                                                                                                CGBadley, ZoeHowerska, BeverleyHughes1, Alan_Haselhurst, davegoddardsk2
## 191                                                                                                                                                                                                                                                                                                     NA
## 192                                                                                                                                                                                                                                                                                                     NA
## 193                                                                                                                                                                                                                                                                                                     NA
## 194                                                                                                                                                                                                                                                                                                     NA
## 195                                                                                                                                                                                                                                                                                                     NA
## 196                                                                                                                                                                                                                                                                                                     NA
## 197                                                                                                                                                                                                                                                                                            ElmaAksalic
## 198                                                                                                                                                                                                                                                                                                     NA
## 199                                                                                                                                                                                                                                                                                                     NA
## 200                                                                                                                                                                                                                                                                                             IAGovernor
## 201                                                                                                                                                                                      PrabhatChandrat, RPF_INDIA, rpfcr, CMOMaharashtra, PiyushGoyal, PiyushGoyalOffc, narendramodi, PMOIndia, HMOIndia
## 202                                                                                                                                                                                                                                                                                                     NA
## 203                                                                                                                                                                                                                                                                                                     NA
## 204                                                                                                                                                                                                                                                                                                     NA
## 205                                                                                                                                                                                                                                                                                                     NA
## 206                                                                                                                                                                                                                                                                                                     NA
## 207                                                                                                                                                                                                                                                                                                     NA
## 208                                                                                                                                                                                                                                                                                                     NA
## 209                                                                                                                                                                                                                                                                                                     NA
## 210                                                                                                                                                                                                                                                                                             e3_waitfor
## 211                                                                                                                                                                                                                                                                                              dougducey
## 212                                                                                                                                                                                                                                                                                                     NA
## 213                                                                                                                                                                                                                                                                                        SylvesterTurner
## 214                                                                                                                                                                                                                                                                                               business
## 215  felipem_jose, pinewoodsdojo, HewittNewton, njterrie, john_godish, sdauwm, foggybottomgal, gumboqueen3030, airbagmoments, RockyMountViews, MarilynT4, Ironyrulesall, Irishgawdess, tess_tess2, JamesEFinch, StevePPhill, matbo2, Out5p0ken, InhellJourney, shossy2, JustWhatNowWhy, BreSta7, dougducey
## 216                                                                                                                                                                                                                                                                                           WashInformer
## 217                                                                                                                                                                                                                                                                                                     NA
## 218                                                                                                                                                                                                                                                                                                     NA
## 219                                                                                                                                                                                                                                                                                                     NA
## 220                                                                                                                                                                                                                                                                                         HillaryClinton
## 221                                                                                                                                                                                                                                                                                         oliviaprentzel
## 222                                                                                                                                                                                                                                                                                                     NA
## 223                                                                                                                                                                                                                                                                                             umerjaffer
## 224                                                                                                                                                                                                                                                                                                     NA
## 225                                                                                                                                                                                                                                                                                                BigElad
## 226                                                                                                                                                                                                                                                                                                     NA
## 227                                                                                                                                                                                                                                                                                                     NA
## 228                                                                                                                                                                                                                                                                                                     NA
## 229                                                                                                                                                                                                                                                                                                     NA
## 230                                                                                                                                                                                                                                                                             WHO, nytimes, timesofindia
## 231                                                                                                                                                                                                                                                                        RFKHumanRights, bailfundnetwork
## 232                                                                                                                                                                                                                                                                                                JupeInc
## 233                                                                                                                                                                                                                                                                                                     NA
## 234                                                                                                                                                                                                                                                                                                     NA
## 235                                                                                                                                                                                                                                                                                           Worldometers
## 236                                                                                                                                                                                                                                                         educationgovuk, GavinWilliamson, GillianKeegan
## 237                                                                                                                                                                                                                                                                                                     NA
## 238                                                                                                                                                                                                                                                                                                     NA
## 239                                                                                                                                                                                                                                                                                          brianmoore666
## 240                                                                                                                                                                                                                                                                                                     NA
## 241                                                                                                                                                                                                                                                                                peterdaou, RebeccaforWA
## 242                                                                                                                                                                                                                                                                                                     NA
## 243                                                                                                                                                                                                                                                                                                     NA
## 244                                                                                                                                                                                                                                                                                                     NA
## 245                                                                                                                                                                                                                                                                                                     NA
## 246                                                                                                                                                                                                                                                                                                     NA
## 247                                                                                                                                                                                                                                                                                 MaamSyj, ArbetBernardo
## 248                                                                                                                                                                                                                                                                                                     NA
## 249                                                                                                                                                                                                                                                                                                     NA
## 250                                                                                                                                                                                                                                                                                                YouTube
## 251                                                                                                                                                                                                                                                                                                     NA
## 252                                                                                                                                                                                                                                                                                                     NA
## 253                                                                                                                                                                                                                                                                                                     NA
## 254                                                                                                                                                                                                                                                                                                     NA
## 255                                                                                                                                                                                                                                                         moniquebeaudin, sharon_kirkey, TenThreePodcast
## 256                                                                                                                                                                                                                                                                                                     NA
## 257                                                                                                                                                                                                                                                                                                     NA
## 258                                                                                                                                                                                                                                                                                                     NA
## 259                                                                                                                                                                                                                                            AshleyKSmalls, stephanieorme, ferchauda, FusRoDoc, Nerd_901
## 260                                                                                                                                                                                                                                                                                         eatlikeanimals
## 261                                                                                                                                                                                                                                                                                        danitasteinberg
## 262                                                                                                                                                                                                                                                                                                     NA
## 263                                                                                                                                                                                                                                                                                                     NA
## 264                                                                                                                                                                                                                                                                                           Akwangaderek
## 265                                                                                                                                                                                                                                                                                                     NA
## 266                                                                                                                                                                                                                                                                                        RepThomasMassie
## 267                                                                                                                                                                                                                                                                                                     NA
## 268                                                                                                                                                                                                                                                                                                 CDCgov
## 269                                                                                                                                                                                                                                                                                                     NA
## 270                                                                                                                                                                                                                                                                                           ImranKhanPTI
## 271                                                                                                                                                                                                                                                                                                     NA
## 272                                                                                                                                                                                                                                                                                                     NA
## 273                                                                                                                                                                                                                                                                                                     NA
## 274                                                                                                                                                                                                                                                                                                     NA
## 275                                                                                                                                                                                                                                                                                                     NA
## 276                                                                                                                                                                                                                                                                                                     NA
## 277                                                                                                                                                                                                                                                             DrEtiquette, gaye_gallops, realDonaldTrump
## 278                                                                                                                                                                                                                                                                                        SolaceWomensAid
## 279                                                                                                                                                                                                                                                                                                     NA
## 280                                                                                                                                                                                                                                                                                                     NA
## 281                                                                                                                                                                                                                                                                                          drsanjaygupta
## 282                                                                                                                                                                                                                                                                                                     NA
## 283                                                                                                                                                                                                                                                                                                     NA
## 284                                                                                                                                                                                                                                                                                                     NA
## 285                                                                                                                                                                                                                                                                  deedeedagumby1, agoodson93, KajiDousa
## 286                                                                                                                                                                              DerekBrunson, AungLANsang, danhardymma, DavidcBranchMMA, AngieOverkill, KendaPerez, jarchmma, IKEVF, heroheber, georgimma
## 287                                                                                                                                                                                                                                                                                        realDonaldTrump
## 288                                                                                                                                                                                                                                                                                                     NA
## 289                                                                                                                                                                                                                                                                                   BarbaraCorcoran, GMA
## 290                                                                                                                                                                                                                                                                               SyedaMahinu, KaleechBaig
## 291                                                                                                                                                                                                                                                                                                     NA
## 292                                                                                                                                                                                                                                                                                                     NA
## 293                                                                                                                                                                                                                                                                                                     NA
## 294                                                                                                                                                                                                                                                                                                     NA
## 295                                                                                                                                                                                                                                                                                              LoveLoriM
## 296                                                                                                                                                                                                                                                                                                     NA
## 297                                                                                                                                                                                                                                                                                           TALaustralia
## 298                                                                                                                                                                                                                                                                                                     NA
## 299                                                                                                                                                                                                                                                                                                  POTUS
## 300                                                                                                                                                                                                                                                                               LucPicat, JeremyKonyndyk
## 301                                                                                                                                                                                                                                                                                              MrAndyNgo
## 302                                                                                                                                                                                                                                                                                                     NA
## 303                                                                                                                                                                                                                                                                                                     NA
## 304                                                                                                                                                                                                                                                                                                     NA
## 305                                                                                                                                                                                                                                                                                 waluwande, EtalePhilip
## 306                                                                                                                                                                                                                                                                                                     NA
## 307                                                                                                                                                                                                                                                                                               brithume
## 308                                                                                                                                                                                                                                                                                                     NA
## 309                                                                                                                                                                                                                                                                                                     NA
## 310                                                                                                                                                                                                                                                                                                  NHSuk
## 311                                                                                                                                                                                                                                                                                                     NA
## 312                                                                                                                                                                                                                                                                                              hanitweet
## 313                                                                                                                                                                                                                                                                                                     NA
## 314                                                                                                                                                                                                                                                                                                   KDVR
## 315                                                                                                                                                                                                                                                                                             SrBachchan
## 316                                                                                                                                                                                                                                                                                           AlbertaPress
## 317                                                                                                                                                                                                                                                                                                     NA
## 318                                                                                                                                                                                                                                                                          kathygriffin, latimes, TheCDZ
## 319                                                                                                                                                                                                                                                                                                     NA
## 320                                                                                                                                                                                                                                                                          Leroy_Brown7, ComfortablySmug
## 321                                                                                                                                                                                                                                                                                          shannonrwatts
## 322                                                                                                                                                                                                                                                                                                     NA
## 323                                                                                                                                                                                                                                                                                                     NA
## 324                                                                                                                                                                                                                                                                                                     NA
## 325                                                                                                                                                                                                                                                                                                     NA
## 326                                                                                                                                                                                                                                                                                                     NA
## 327                                                                                                                                                                                                                                                                                                     NA
## 328                                                                                                                                                                                                                                                                                                 Gotham
## 329                                                                                                                                                                                                                                                                                         leeds24hrlocks
## 330                                                                                                                                                                                                                                                                                                     NA
## 331                                                                                                                                                                                                                                                                                                     NA
## 332                                                                                                                                                                                                                                                                                                     NA
## 333                                                                                                                                                                                                                                                                                                     NA
## 334                                                                                                                                                                                                                                                                                         missrusset2006
## 335                                                                                                                                                                                                                                                                                                     NA
## 336                                                                                                                                          VisakhapatnamJn, GVMC_OFFICIAL, GummallaSrijana, GVMC_OFFICIAL, vizagcitypolice, vizagcollector, vizaggoap, AndhraPradeshCM, OfficialMvv, MoHUA_India, dgp_ap
## 337                                                                                                                                                                                                                                                                                        realDonaldTrump
## 338                                                                                                                                                                                                                                                                                               tribelaw
## 339                                                                                                                                                                                                                                                                          africanaffairs, _AfricanUnion
## 340                                                                                                                                                                                                                                                                                CCrowe90, stclairashley
## 341                                                                                                                                                                                                                                                                                                     NA
## 342                                                                                                                                                                                                                                                                                                     NA
## 343                                                                                                                                                                                                                                                                     susanhopkins5, pcjurczak, Self_Reg
## 344                                                                                                                                                                                                                                                                                                     NA
## 345                                                                                                                                                                                                                                                                                                     NA
## 346                                                                                                                                                                                                                                                                                                     NA
## 347                                                                                                                                                                                                                                                                                                     NA
## 348                                                                                                                                                                                                                                                                                              ogajazzyk
## 349                                                                                                                                                                                                                                                                                         NPSOfficial_KE
## 350                                                                                                                                                                                                                                                                                                     NA
## 351                                                                                                                                                                                                                                                                                                     NA
## 352                                                                                                                                                                                                                                                                                                     NA
## 353                                                                                                                                                                                                                                                                                                     NA
## 354                                                                                                                                                                                                                                                                                                     NA
## 355                                                                                                                                                                                                                                                                                          BoeingDefense
## 356                                                                                                                                                                                                                                                                                                     NA
## 357                                                                                                                                                                                                                                                                                                     NA
## 358                                                                                                                                                                                                                                                                                                     NA
## 359                                                                                                                                                                                                                                                                                                     NA
## 360                                                                                                                                                                                                                                                              WHO, AminaJMohammed, UN_Piper, RonKayanja
## 361                                                                                                                                                                                                                                                                                                Essence
## 362                                                                                                                                                                                                                                                                                                     NA
## 363                                                                                                                                                                                                                                                                                                   KDVR
## 364                                                                                                                                                                                                                                                                                                     NA
## 365                                                                                                                                                                                                                                                                                            ChrisMBiggs
## 366                                                                                                                                                                                                                                                                                                     NA
## 367                                                                                                                                                                                                                                                                                                     NA
## 368                                                                                                                                                                                                                                                              jerome_corsi, QsentMeToo, realDonaldTrump
## 369                                                                                                                                                                                                                                                         rebeccaballhaus, JohnJHarwood, AndrewRestuccia
## 370                                                                                                                                                                                                                                                                        tayokun, JosepBorrellF, eu_eeas
## 371                                                                                                                                                                                                                                                                              jmcjammu, CMGuptaOfficial
## 372                                                                                                                                                                                                                                                                                                     NA
## 373                                                                                                                                                                                                                                                                                                     NA
## 374                                                                                                                                                                                                                                                                                        Ianblackford_MP
## 375                                                                                                                                                                                                                                                                                          abbvie, Roche
## 376                                                                                                                                                                                                                                                                                                     NA
## 377                                                                                                                                                                                                                                                                                                     NA
## 378                                                                                                                                                                                                                                                                                            Jane_nkyalo
## 379                                                                                                                                                                                                                                                                            realDonaldTrump, WhiteHouse
## 380                                                                                                                                                                                                                                                                                                     NA
## 381                                                                                                                                                                                                                                                                                                     NA
## 382                                                                                                                                                                                                                                                                                       ZDNet, linked_do
## 383                                                                                                                                                                                                                                                                                                     NA
## 384                                                                                                                                                                                                                                                   narendramodi, DDNational, BJP4India, myogiadityanath
## 385                                                                                                                                                                                                                                                                                                     NA
## 386                                                                                                                                                                                                                                                                                                     NA
## 387                                                                                                                                                                                                                                                                         katemclennan1, katemccccartney
## 388                                                                                                                                                                                                                                                                                             gtconway3d
## 389                                                                                                                                                                                                                                                                                                     NA
## 390                                                                                                                                                                                                                                                                                          letspawsfirst
## 391                                                                                                                                                                                                                                                                                                     NA
## 392                                                                                                                                                                                                                                                                                                     NA
## 393                                                                                                                                                                                                                                                                                                   WLWT
## 394                                                                                                                                                                                                                                                                                                     NA
## 395                                                                                                                                                                                                                                                                                                     NA
## 396                                                                                                                                                                                                                                                                                                     NA
## 397                                                                                                                                                                                                                                                                                             InsideNoVA
## 398                                                                                                                                                                                                                                                                                                     NA
## 399                                                                                                                                                                                                                                                                                                     NA
## 400                                                                                                                                                                                                                                                                                                     NA
## 401                                                                                                                                                                                                                                                                                                     NA
## 402                                                                                                                                                                                                                                                                            CharityVillage, VolunteerTO
## 403                                                                                                                                                                                                                                                                 benkoku, Citi973, CitiTVGH, NAkufoAddo
## 404                                                                                                                                                                                                                                                                                                YouTube
## 405                                                                                                                                                                                                                                                    sliccardo, CM_Magdalena, SylviaArenas, MayaEsparza3
## 406                                                                                                                                                                                                                                                                                                     NA
## 407                                                                                                                                                                                                                                                                                                     NA
## 408                                                                                                                                                                                                                                                                                                     NA
## 409                                                                                                                                                                                                                                                                                                     NA
## 410                                                                                                                                                                                                                                                                                                     NA
## 411                                                                                                                                                                                                                                                                                                     NA
## 412                                                                                                                                                                                                                                                                                                     NA
## 413                                                                                                                                                                                                                                                                                                     NA
## 414                                                                                                                                                                                                                                                                                                     NA
## 415                                                                                                                                                                                                                                                                                                     NA
## 416                                                                                                                                                                                                                                                                                                     NA
## 417                                                                                                                                                                                                                                                           Stewart_Creek, Roms_10, KHOU, imnotascribble
## 418                                                                                                                                                                                                                                                                                                     NA
## 419                                                                                                                                                                                                                                                                                                     NA
## 420                                                                                                                                                                                                                                                                                                     NA
## 421                                                                                                                                                                                                                                                                                                   null
## 422                                                                                                                                                                                                                                                                                                     NA
## 423                                                                                                                                                                                                                                                                                                     NA
## 424                                                                                                                                                                                                                                                                     davidaxelrod, JoeBiden, LarryRasky
## 425                                                                                                                                                                                                                                                                                                     NA
## 426                                                                                                                                                                                                                                                                                                     NA
## 427                                                                                                                                                                                                                                                                       bbcquestiontime, bbcquestiontime
## 428                                                                                                                                                                                                                                                                                                     NA
## 429                                                                                                                                                                                                                                                                                                     NA
## 430                                                                                                                                                                                                                                                                                                     NA
## 431                                                                                                                                                                                                                                                                                                     NA
## 432                                                                                                                                                                                                                                                                                                     NA
## 433                                                                                                                                                                                                                                                                                                     NA
## 434                                                                                                                                                                                                                                                                                                FoxNews
## 435                                                                                                                                                                                                                                                                                                     NA
## 436                                                                                                                                                                                                                                                                                                     NA
## 437                                                                                                                                                                                                                                                                                                     NA
## 438                                                                                                                                                                                                                                                                                                     NA
## 439                                                                                                                                                                                                                                                                                                     NA
## 440                                                                                                                                                                                                                                                                                                     NA
## 441                                                                                                                                                                                                                                                                                                     NA
## 442                                                                                                                                                                                                                                                                                          Delaware_DHSS
## 443                                                                                                                                                                                                                                                                                            Khanoisseur
## 444                                                                                                                                                                                                                                                                                  selenagomez, ladygaga
## 445                                                                                                                                                                                                                                                                                                     NA
## 446                                                                                                                                                                                                                                                                                      ZLevyMD, ercowboy
## 447                                                                                                                                                                                                                                                                                                     NA
## 448                                                                                                                                                                                                                                                                                                 KTRTRS
## 449                                                                                                                                                                                                                                                                             GovHawaii, KHONnews, Kauai
## 450                                                                                                                                                                                                                                                                      NFL, BarstoolBigCat, PardonMyTake
## 451                                                                                                                                                                                                                               KeithSpiro, jeffpulver, TedRubin, BonnieHunt_real, BobSocci, BobCoughlin
## 452                                                                                                                                                                                                                                                                                                     NA
## 453                                                                                                                                                                                                                                                                                              The_vijju
## 454                                                                                                                                                                                                                                                                            gabbyrodriguess, globalnews
## 455                                                                                                                                                                                                                                                                                                  POTUS
## 456                                                                                                                                                                                                                                                                                                     NA
## 457                                                                                                                                                                                                                                                                                                     NA
## 458                                                                                                                                                                                                                                                                            InDarknessShine, eosfanatic
## 459                                                                                                                                                                                                                                                                                                     NA
## 460                                                                                                                                                                                                                                                                                                     NA
## 461                                                                                                                                                                                                                                                                                                   NUnl
## 462                                                                                                                                                                                                                                                                                                     NA
## 463                                                                                                                                                                                                                                                                                                     NA
## 464                                                                                                                                                                                                                                                                                               Artforum
## 465                                                                                                                                                                                                                                                                                             SputnikInt
## 466                                                                                                                                                                                                                                                                                                     NA
## 467                                                                                                                                                                                                                                                                                         DasShaktikanta
## 468                                                                                                                                                                                                                                                                                        realDonaldTrump
## 469                                                                                                                                                                                                                                                                                                     NA
## 470                                                                                                                                                                                                                                                                                                     NA
## 471                                                                                                                                                                                                                                                                                                     NA
## 472                                                                                                                                                                                                                                                                                                     NA
## 473                                                                                                                                                                                                                                                                                                     NA
## 474                                                                                                                                                                                                                                                                                                     NA
## 475                                                                                                                                                                                                                                                                                           LouisianaGov
## 476                                                                                                                                                                                                                                                                                                     NA
## 477                                                                                                                                                                                                                                                trish_regan, realDonaldTrump, VP, SecPompeo, JuanGuaido
## 478                                                                                                                                                                                                                                                                                                     NA
## 479                                                                                                                                                                                                                                                                                                     NA
## 480                                                                                                                                                                                                                                                                                                     NA
## 481                                                                                                                                                                                                                                                                                                     NA
## 482                                                                                                                                                                                                                                                                                    davido, thechefchii
## 483                                                                                                                                                                                                                                                                                                     NA
## 484                                                                                                                                                                                                                                                                                            KarlDDawson
## 485                                                                                                                                                                                                                                                                                                     NA
## 486                                                                                                                                                                                                                                                   JarredProvich, geracechris, StocksAllUp, mitchellvii
## 487                                                                                                                                                                                                                                                                                                     NA
## 488                                                                                                                                                                                                                                                      noplaceforsheep, NickThiwerspoon, D_LittleproudMP
## 489                                                                                                                                                                                                                                                                                        ASlobComesClean
## 490                                                                                                                                                                                                                                  M_Stamatakis, docandrewmurray, fiona_bull, DrKateEds, ConversationEDU
## 491                                                                                                                                                                                                                                                                                                     NA
## 492                                                                                                                                                                                                                                                   PMOIndia, AmitShah, AjTakNews, ABPNews, narendramodi
## 493                                                                                                                                                                                                                                                                                    accellres, CDAA_inc
## 494                                                                                                                                                                                                                                                                                            myer, Coles
## 495                                                                                                                                                                                                                                                                                                     NA
## 496                                                                                                                                                                                                                                                                                                     NA
## 497                                                                                                                                                                                                                                                                                           govsingapore
## 498                                                                                                                                                                                                                                                                                                  Salym
## 499                                                                                                                                                                                                                                                                                            The_NewArab
## 500                                                                                                                                                                                                                                                                            realDonaldTrump, WhiteHouse
## 501                                                                                                                                                                                                                                                                                                     NA
## 502                                                                                                                                                                                                                                                                                                     NA
## 503                                                                                                                                                                                                                                                                                                     NA
## 504                                                                                                                                                                                                                                                                                                     NA
## 505                                                                                                                                                                                                                                                                                                     NA
## 506                                                                                                                                                                                                                                                                                           stabroeknews
## 507                                                                                                                                                                                                                                          SenateGOP, senatemajldr, HouseGOP, GOPLeader, realDonaldTrump
## 508                                                                                                                                                                                                                                                              DWteVelde, deodat_maharaj, sherillyn_raga
## 509                                                                                                                                                                                                                                                                                                     NA
## 510                                                                                                                                                                                                                                                                                                     NA
## 511                                                                                                                                                                                                                                                                                                     NA
## 512                                                                                                                                                                                                                                                                                         DiamondandSilk
## 513                                                                                                                                                                                                                                                                                                     NA
## 514                                                                                                                                                                                                                                                                                                     NA
## 515                                                                                                                                                                                                                                                              ErinMPerrine, DanaPerino, realDonaldTrump
## 516                                                                                                                                                                                                                                                                                                     NA
## 517                                                                                                                                                                                                                                                                                                     NA
## 518                                                                                                                                                                                                                                                                                           Zlatan_Ibile
## 519                                                                                                                                                                                                                                                                                                     NA
## 520                                                                                                                                                                                                                                                                                              randlight
## 521                                                                                                                                                                                                                                                                                                     NA
## 522                                                                                                                                                                                                                                                                                                     NA
## 523                                                                                                                                                                                                                                              TVMohandasPai, BDUTT, ShekharGupta, sardesairajdeep, ndtv
## 524                                                                                                                                                                                                                                                                                                     NA
## 525                                                                                                                                                                                                                                                                                                     NA
## 526                                                                                                                                                                                                                                                                                                     NA
## 527                                                                                                                                                                                                                                                                                                     NA
## 528                                                                                                                                                                                                                                                                                                     NA
## 529                                                                                                                                                                                                                                                                                                     NA
## 530                                                                                                                                                                                                                                                                                                     NA
## 531                                                                                                                                                                                                                                                                                        realDonaldTrump
## 532                                                                                                                                                                                                                                                                                                     NA
## 533                                                                                                                                                                                                                                                                                                     NA
## 534                                                                                                                                                                                                                                                                                                     NA
## 535                                                                                                                                                                                                                                                                                                     NA
## 536                                                                                                                                                                                                                                                                                                     NA
## 537                                                                                                                                                                                                                                                                                                     NA
## 538                                                                                                                                                                                                                                                            NGRPresident, CorrectionsNg, raufaregbesola
## 539                                                                                                                                                                                                                                                                                                     NA
## 540                                                                                                                                                                                                                                                                                                     NA
## 541                                                                                                                                                                                                                                                                                        AnkitRawat98075
## 542                                                                                                                                                                                                                                                                                                     NA
## 543                                                                                                                                                                                                                                                                                                     NA
## 544                                                                                                                                                                                                                                                                                                     NA
## 545                                                                                                                                                                                                                                                                                                     NA
## 546                                                                                                                                                                                                                                                                                     NickLaFave, wzzm13
## 547                                                                                                                                                                                                                                                                                                 USNavy
## 548                                                                                                                                                                                                                                                                                                     NA
## 549                                                                                                                                                                                                                                                                                                     NA
## 550                                                                                                                                                                                                                                                                                                     NA
## 551                                                                                                                                                                                                                                                                                                     NA
## 552                                                                                                                                                                                                                                                                                                YouTube
## 553                                                                                                                                                                                                                                                                                                TeamRVH
## 554                                                                                                                                                                                                                                                                                                     NA
## 555                                                                                                                                                                                                                                                                                                     NA
## 556                                                                                                                                                                                                                                                                                                     NA
## 557                                                                                                                                                                                                                                                                                        BRIJESH40374114
## 558                                                                                                                                                                                                                                                                                                     NA
## 559                                                                                                                                                                                                                                                                                                     NA
## 560                                                                                                                                                                                                                                                                                                     NA
## 561                                                                                                                                                                                                                                                                                        10DowningStreet
## 562                                                                                                                                                                                                                                                                                                     NA
## 563                                                                                                                                                                                                                                                                                                     NA
## 564                                                                                                                                                                                                                                                                                        BloombergDotOrg
## 565                                                                                                                                                                                                                                                                                            marklewismd
## 566                                                                                                                                                                                                                                                                                                     NA
## 567                                                                                                                                                                                                                                                                                                     NA
## 568                                                                                                                                                                                                                                                                                                     NA
## 569                                                                                                                                                                                                                                                                                         Tirath89123746
## 570                                                                                                                                                                                                                                                                                                     NA
## 571                                                                                                                                                                                                                                                                                                     NA
## 572                                                                                                                                                                                                                                                                                                     NA
## 573                                                                                                                                                                                                                                                                                                     NA
## 574                                                                                                                                                                                                                                                                                             sunriseon7
## 575                                                                                                                                                                                                                                                                                                     NA
## 576                                                                                                                                                                                                                                                                                                     NA
## 577                                                                                                                                                                                                                                                                                            FourSeasons
## 578                                                                                                                                                                                                                                                                                                     NA
## 579                                                                                                                                                                                                                                                                                           5280Magazine
## 580                                                                                                                                                                                                                                                                                                     NA
## 581                                                                                                                                                                                                                                                                                  prageru, DennisPrager
## 582                                                                                                                                                                                                                                                                                       Oochka3, CTVNews
## 583                                                                                                                                                                                                                                                                                                     NA
## 584                                                                                                                                                                                                                                                                                                     NA
## 585                                                                                                                                                                                                                                                              GrainGrowersLtd, theGRDC, NationalFarmers
## 586                                                                                                                                                                                                                                                                                                     NA
## 587                                                                                                                                                                                                                                                                                                     NA
## 588                                                                                                                                                                                                                                                                                                     NA
## 589                                                                                                                                                                                                                                                                                                     NA
## 590                                                                                                                                                                                                                                                                                        realDonaldTrump
## 591                                                                                                                                                                                                                                                                                                     NA
## 592                                                                                                                                                                                                                                                                                                     NA
## 593                                                                                                                                                                                                                                                                                                 mkraju
## 594                                                                                                                                                                                                                                                                                          24hourfitness
## 595                                                                                                                                                                                                                                                                              purtheil, realDonaldTrump
## 596                                                                                                                                                                                                                                                                                        Bellomatawalle1
## 597                                                                                                                                                                                                                                                                                                     NA
## 598                                                                                                                                                                                                                                                                          mikey0callaghan, UL, ICGPnews
## 599                                                                                                                                                                                                                                                                                                     NA
## 600                                                                                                                                                                                                                                                                                              UKinGhana
## 601                                                                                                                                                                                                                                                                                         BaillieForGood
## 602                                                                                                                                                                                                                                                                                                     NA
## 603                                                                                                                                                                                                                                                                                                     NA
## 604                                                                                                                                                                                                                                                                                                     NA
## 605                                                                                                                                                                                                                                                                                                     NA
## 606                                                                                                                                                                                                                                                                                                     NA
## 607                                                                                                                                                                                                                                                                                                     NA
## 608                                                                                                                                                                                                                                                                                                 EMD4ME
## 609                                                                                                                                                                                                                                                                                                     NA
## 610                                                                                                                                                                                                                                                                                                     NA
## 611                                                                                                                                                                                                                                                                                                     NA
## 612                                                                                                                                                                                                                                                                                nazifaz_, WarwickLabour
## 613                                                                                                                                                                                                                                                                                                     NA
## 614                                                                                                                                                                                                                                                                                                     NA
## 615                                                                                                                                                                                                                                                                                            Somerset_CF
## 616                                                                                                                                                                                                                                                                                              SenateGOP
## 617                                                                                                                                                                                                                                                                                                     NA
## 618                                                                                                                                                                                                                                                                                                     NA
## 619                                                                                                                                                                                                                                                                                                     NA
## 620                                                                                                                                                                                                                                                                                        beholdcosmicwav
## 621                                                                                                                                                                                                                                                                                                     NA
## 622                                                                                                                                                                                                                                                                                                     NA
## 623                                                                                                                                                                                                                                                                                                     NA
## 624                                                                                                                                                                                                                                                                                                     NA
## 625                                                                                                                                                                                                                                                                                     SamsClub, SamsClub
## 626                                                                                                                                                                                                                                                                                            tanamongeau
## 627                                                                                                                                                                                                                                                                            californiapuc, SDGE, PGE4Me
## 628                                                                                                                                                                                                                                                                                                     NA
## 629                                                                                                                                                                                                                                                                                              psac_afpc
## 630                                                                                                                                                                                                                                                                                               spreaker
## 631                                                                                                                                                                                                                                                                                                     NA
## 632                                                                                                                                                                                                                                                                                                     NA
## 633                                                                                                                                                                                                                                                                                                     NA
## 634                                                                                                                                                                                                                                                                              AherneMike95, ULHospitals
## 635                                                                                                                                                                                                                                                                                                     NA
## 636                                                                                                                                                                                                                                             56kylecoop, GulfstreamPark, HRRN, HRRNBaron, AnnouncerPete
## 637                                                                                                                                                                                                                                                                                         ArvindKejriwal
## 638                                                                                                                                                                                                                                                Coles, woolworths, auspost, amazon, ALDIAustralia, Uber
## 639                                                                                                                                                                                                                                                                                                     NA
## 640                                                                                                                                                                                                                                                                                                     NA
## 641                                                                                                                                                                                                                                                                                                     NA
## 642                                                                                                                                                                                                                                                                                    Baddiel, WeeMissBea
## 643                                                                                                                                                                                                                                                                                              DoubleEph
## 644                                                                                                                                                                                                                                                                           JohnACrimmins, JohnACrimmins
## 645                                                                                                                                                                                                                                                         JGPharmD, NickKristof, V2019N, stuartathompson
## 646                                                                                                                                                                                                                                                                          MargotR90016343, MargotRobbie
## 647                                                                                                                                                                                                                                                                                           CommDigiNews
## 648                                                                                                                                                                                                                                                                                                     NA
## 649                                                                                                                                                                                                                                                                                                     NA
## 650                                                                                                                                                                                                                                                                                                     NA
## 651                                                                                                                                                                                                                                                                                                     NA
## 652                                                                                                                                                                                                                                                                                          3NewsNowOmaha
## 653                                                                                                                                                                                                                                                                              nigerianports, AguraHotel
## 654                                                                                                                                                                                                                                                                                         PuneCityPolice
## 655                                                                                                                                                                                                                                                                                                     NA
## 656                                                                                                                                                                                                                                                                                                     NA
## 657                                                                                                                                                                                                                                                                          KayceeMaduYEG, rebeccakschulz
## 658                                                                                                                                                                                                                                                                                              Postmates
## 659                                                                                                                                                                                                                                                                                              san614617
## 660                                                                                                                                                                                                                                                                                             ananavarro
## 661                                                                                                                                                                                                                                                                                                     NA
## 662                                                                                                                                                                                                                                           rachelgould1996, thescottishsn, FionaCMcQueen, NHS_Education
## 663                                                                                                                                                                                                                                                                                            krispykreme
## 664                                                                                                                                                                                                                                                                                                     NA
## 665                                                                                                                                                                                                                                                                                                     NA
## 666                                                                                                                                                                                                                                                                                                YouTube
## 667                                                                                                                                                                                                                                                                                             YRDeshmukh
## 668                                                                                                                                                                                                                                                                                                     NA
## 669                                                                                                                                                                                                                                                                                                     NA
## 670                                                                                                                                                                                                                                                                                                     NA
## 671                                                                                                                                                                                                                                                                                                     NA
## 672                                                                                                                                                                                                                                                                                                     NA
## 673                                                                                                                                                                                                                                                                                            GovParsonMO
## 674                                                                                                                                                                                                                                                                                                     NA
## 675                                                                                                                                                                                                                                                                                                     NA
## 676                                                                                                                                                                                                                                                                                               UNOSNews
## 677                                                                                                                                                                                                                                                                                                     NA
## 678                                                                                                                                                                                                                                                                                      dsgngal, jdwickie
## 679                                                                                                                                                                                                                                                                                                     NA
## 680                                                                                                                                                                                                                                                                                                     NA
## 681                                                                                                                                                                                                                                                                                                     NA
## 682                                                                                                                                                                                                                                                                                                     NA
## 683                                                                                                                                                                                                                                                                                                     NA
## 684                                                                                                                                                                                                                                                                                                     NA
## 685                                                                                                                                                                                                                                                                                                     NA
## 686                                                                                                                                                                                                                                                                                            BostonGlobe
## 687                                                                                                                                                                                                                                                                                         LaurenceRifkin
## 688                                                                                                                                                                                                                                                                                                     NA
## 689                                                                                                                                                                                                                                                                                            _chaybay21_
## 690                                                                                                                                                                                                                                                                                                  NHSuk
## 691                                                                                                                                                                                                                                                                                                     NA
## 692                                                                                                                                                                                                                                                                                                     NA
## 693                                                                                                                                                                                                                                                                                                     NA
## 694                                                                                                                                                                                                                                                                                                  CDPHE
## 695                                                                                                                                                                                                                                                                                                 JZarif
## 696                                                                                                                                                                                                                                                                                                     NA
## 697                                                                                                                                                                                                                                                                                                     NA
## 698                                                                                                                                                                                                                                                                                                     NA
## 699                                                                                                                                                                                                                                                                                             drjenndowd
## 700                                                                                                                                                                                                                                                                                                     NA
## 701                                                                                                                                                                                                                                                                                                     NA
## 702                                                                                                                                                                                                                                                                                                     NA
## 703                                                                                                                                                                                                                                                                            Wil_Johnson1, gatewaypundit
## 704                                                                                                                                                                                                                                                                                                     NA
## 705                                                                                                                                                                                                                                                                                                     NA
## 706                                                                                                                                                                                                                                                                                                     NA
## 707                                                                                                                                                                                                                                                                            JennMGreenberg, Cody_Floate
## 708                                                                                                                                                                                                                                                                                            medickinson
## 709                                                                                                                                                                                                                                                                                                     NA
## 710                                                                                                                                                                                                                                                                                                     NA
## 711                                                                                                                                                                                                                                                                                                     NA
## 712                                                                                                                                                                                                                                                                                                     NA
## 713                                                                                                                                                                                                                                    TimesNow, narendramodi, AmitShah, Swamy39, amitmalviya, MajorPoonia
## 714                                                                                                                                                                                                                                                                                                     NA
## 715                                                                                                                                                                                                                                                                                                     NA
## 716                                                                                                                                                                                                                                                                                                     NA
## 717                                                                                                                                                                                                                                                                                                     NA
## 718                                                                                                                                                                                                                                                                                                     NA
## 719                                                                                                                                                                                                                                                                                        realDonaldTrump
## 720                                                                                                                                                                                                                                                                                                     NA
## 721                                                                                                                                                                                                                                                                       realDonaldTrump, Kayrile02025449
## 722                                                                                                                                                                                                                                                                                                     NA
## 723                                                                                                                                                                                                                                                                                                GladysB
## 724                                                                                                                                                                                                                                                                                                     NA
## 725                                                                                                                                                                                                                                                                                                     NA
## 726                                                                                                                                                                                                                                                                                          ChalklineTech
## 727                                                                                                                                                                                                                                                                                                     NA
## 728                                                                                                                                                                                                                                                                                                     NA
## 729                                                                                                                                                                                                                                                                                                     NA
## 730                                                                                                                                                                                                                                                                                                Baddiel
## 731                                                                                                                                                                                                                                                                                                     NA
## 732                                                                                                                                                                                                                                                                               greaterheights_, Dclasyc
## 733                                                                                                                                                                                                                                                                                         HouseDemocrats
## 734                                                                                                                                                                                                                                                                                                     NA
## 735                                                                                                                                                                                                                                                                                                     NA
## 736                                                                                                                                                                                                                                                                                                     NA
## 737                                                                                                                                                                                                                                                                                                     NA
## 738                                                                                                                                                                                                                                                                                                     NA
## 739                                                                                                                                                                                                                                                                                                     NA
## 740                                                                                                                                                                                                                                                                                                     NA
## 741                                                                                                                                                                                                                                                                                                 Curbed
## 742                                                                                                                                                                                                                                                                                Lucy_Huxley, ABTAtravel
## 743                                                                                                                                                                                                                                                                                                     NA
## 744                                                                                                                                                                                                                                                                                                 Forbes
## 745                                                                                                                                                                                                                                                                                            JoeKnowsGov
## 746                                                                                                                                                                                                                                                                                                     NA
## 747                                                                                                                                                                                                                                                                                                     NA
## 748                                                                                                                                                                                                                                                                                                     NA
## 749                                                                                                                                                                                                                                                                                             RTGACADEMY
## 750                                                                                                                                                                                                                                                                                                     NA
## 751                                                                                                   AshburnDusty, Azdeb1957, MaryPea10015905, NotSoSuper_Dave, EmeraldEagle79, The_Webologist, DynastyFrank, leftontheradio, MichaelRoach, JohnFromCranber, maddow, BarackObama, FoxNews, FoxNewsOpinion
## 752                                                                                                                                                                                                                                                                                                     NA
## 753                                                                                                                                                                                                                                                                                                     NA
## 754                                                                                                                                                                                                                                                                                                     NA
## 755                                                                                                                                                                                                                                                                                                   UNDP
## 756                                                                                                                                                                                                                                                                                             unilincoln
## 757                                                                                                                                                                                                                                                                                        realDonaldTrump
## 758                                                                                                                                                                                                                                                                                                     NA
## 759                                                                                                                                                                                                                                                                                           vinayak_jain
## 760                                                                                                                                                                                                                                                                                                     NA
## 761                                                                                                                                                                                                                                                                                                     NA
## 762                                                                                                                                                                                                                                                                                                     NA
## 763                                                                                                                                                                                                                                                                                                     NA
## 764                                                                                                                                                                                                                                                                                                  WIRED
## 765                                                                                                                                                                                                                                                                                                     NA
## 766                                                                                                                                                                                                                                                                                                     NA
## 767                                                                                                                                                                                                                                                                                                     NA
## 768                                                                                                                                                                                                                                                                                         USOCC, FDICgov
## 769                                                                                                                                                                                                                                                                                                     NA
## 770                                                                                                                                                                                                                                                                    FUNimation, PrimeVideo, Crunchyroll
## 771                                                                                                                                                                                                                                                                                                     NA
## 772                                                                                                                                                                                                                                                                                                HSELive
## 773                                                                                                                                                                                                                                                                                                     NA
## 774                                                                                                                                                                                                                                                                     NASM, AmCollSurgeons, NightShiftMD
## 775                                                                                                                                                                                                                                                                                        PatriotsSoapbox
## 776                                                                                                                                                                                                                                                                                               Pontifex
## 777                                                                                                                                                                                                                                                                                                     NA
## 778                                                                                                                                                                                                                                                                                                     NA
## 779                                                                                                                                                                                                                                                                                                     NA
## 780                                                                                                                                                                                                                                                                                                     NA
## 781                                                                                                                                                                                                                                                                                                     NA
## 782                                                                                                                                                                                                                                                                             BellaTwins, coasttocoastam
## 783                                                                                                                                                                                                                                                                                                     NA
## 784                                                                                                                                                                                                                                                                                                     NA
## 785                                                                                                                                                                                                                                                                                                     NA
## 786                                                                                                                                                                                                                                                                                                     NA
## 787                                                                                                                                                                                                                                                                                    JeffBezos, elonmusk
## 788                                                                                                                                                                                            ndtv, IndiaToday, bainjal, tanvishukla, SreenivasanJain, PrannoyRoyNDTV, aroonpurie, vineetjaintimes, BDUTT
## 789                                                                                                                                                                                                                                                                                                     NA
## 790                                                                                                                                                                                                                                                                                             2tb_adrian
## 791                                                                                                                                                                                                                                                                                           MigunaMiguna
## 792                                                                                                                                                                                                                                                                                   KTVB, GovernorLittle
## 793                                                                                                                                                                                                                                                                                                     NA
## 794                                                                                                                                                                                                                                                                                                 irdirc
## 795                                                                                                                                                                                                                                                                                                     NA
## 796                                                                                                                                                                                                                                                                                                     NA
## 797                                                                                                                                                                                                                                                                                                     NA
## 798                                                                                                                                                                                                                                                                                                     NA
## 799                                                                                                                                                                                                                                                                                 Comicalsuicide, fogken
## 800                                                                                                                                                                                                                                                                                                     NA
## 801                                                                                                                                                                                                                                                                                             AnnCoulter
## 802                                                                                                                                                                                                                                                                            HitmanHatton, SauerlandBros
## 803                                                                                                                                                                                                                                                                                         funds4disaster
## 804                                                                                                                                                                                                                                                                                                     NA
## 805                                                                                                                                                                                                                                                                     MSCSealift, US_FEMA, USNorthernCmd
## 806                                                                                                                                                                                                                                                                                              MingGao26
## 807                                                                                                                                                                                                                                                                                           kathygriffin
## 808                                                                                                                                                                                                                                                                                                     NA
## 809                                                                                                                                                                                                                                                                                                     NA
## 810                                                                                                                                                                                                                                                                              Rubenbaeza8, GHS, nytimes
## 811                                                                                                                                                                                                                                                                                                     NA
## 812                                                                                                                                                                                                                                                                                cmckenney, ShawnMenard1
## 813                                                                                                                                                                                                                                                                                                     NA
## 814                                                                                                                                                                                                                                                                                                     NA
## 815                                                                                                                                                  WHO, MBuhari, ProfOsinbajo, NTANewsNow, channelstv, HerbertOWigwe, TonyOElumelu, jimoviafoundatn, alakijaofficial, TheEconomist, Forbes, DangoteGroup
## 816                                                                                                                                                                                                                                                                                 loeschtwins, PicPedant
## 817                                                                                                                                                                                                                                                                                         Samsonprolific
## 818                                                                                                                                                                                                                                                                                                     NA
## 819                                                                                                                                                                                                                                                                                                     NA
## 820                                                                                                                                                                                                                                                                                        AdamParkhomenko
## 821                                                                                                                                                                                                                                                                                                     NA
## 822                                                                                                                                                                                                                           BedfordTweets, WeAreBCA, quarryatstlukes, ThePlaceBedford, uniofbeds, SEMLEP
## 823                                                                                                                                                                                                                                                                                               KCCINews
## 824                                                                                                                                                                                                                                                                                        OwensboroHealth
## 825                                                                                                                                                                                                                                                                                                     NA
## 826                                                                                                                                                                                                                                                                                                     NA
## 827                                                                                                                                                                                                                                                                                                     NA
## 828                                                                                                                                                                                                                                                                                                     NA
## 829                                                                                                                                                                                                                                                                                                     NA
## 830                                                                                                                                                                                                                                                                                                     NA
## 831                                                                                                                                                                                                                                                                                                     NA
## 832                                                                                                                                                                                                                                                          HillaryClinton, realDonaldTrump, TheDemocrats
## 833                                                                                                                                                                                                                                                                                                     NA
## 834                                                                                                                                                                                                                                                                         Goodmoisturizer, A_S12, sbjsbd
## 835                                                                                                                                                                                                                                                       JimSantilli, richviss, NikkiRedeemed, GovWhitmer
## 836                                                                                                                                                                                                                                                                                                     NA
## 837                                                                                                                                                                                                                                                                                                     NA
## 838                                                                                                                                                                                                                                                                                                     NA
## 839                                                                                                                                                                                                                                                                                                     NA
## 840                                                                                                                                                                                                                                                                                                     NA
## 841                                                                                                                                                                                                                                                                                                     NA
## 842                                                                                                                                                                                                                                                                                                     NA
## 843                                                                                                                                                                                                                                                                                                     NA
## 844                                                                                                                                                                                                                                                                                                     NA
## 845                                                                                                                                                                                                                                                                                                     NA
## 846                                                                                                                                                                                                                                                                                                     NA
## 847                                                                                                                                                                                                                                                                                                     NA
## 848                                                                                                                                                                                                                                                                                            LeoVaradkar
## 849                                                                                                                                                                                                                                                                    nickreeves9876, gwcollinge, SkyNews
## 850                                                                                                                                                                                                                                                                                                     NA
## 851                                                                                                                                                                                                                                                                                                     NA
## 852                                                                                                                                                                                                                                                                                                     NA
## 853                                                                                                                                                                                                                                                                                                     NA
## 854                                                                                                                                                                                                                                                                                                     NA
## 855                                                                                                                                                                                                                                                                                                     NA
## 856                                                                                                                                                                                                                                                                                         worthlessmind2
## 857                                                                                                                                                                                                                                                                                                     NA
## 858                                                                                                                                                                                                                                                                                                     NA
## 859                                                                                                                                                                                                                                                                                                     NA
## 860                                                                                                                                                                                                                                                                                                     NA
## 861                                                                                                                                                                                                                                                                                                     NA
## 862                                                                                                                                                                                                                                                                                                     NA
## 863                                                                                                                                                                                                                                                                                                     NA
## 864                                                                                                                                                                                                                                                                                                YouTube
## 865                                                                                                                                                                                                                                                                                                     NA
## 866                                                                                                                                                                                                                                                                                   pepperdem5, BBSimons
## 867                                                                                                                                                                                                                                                                                                     NA
## 868                                                                                                                                                                                                                                                                                                     NA
## 869                                                                                                                                                                                                                                                                                                YouTube
## 870                                                                                                                                                                                                                                                                                                     NA
## 871                                                                                                                                                                                                                                                                                             essenviews
## 872                                                                                                                                                                                                                                                                                           ericgarcetti
## 873                                                                                                                                                                                                                                                                                             fiftyyears
## 874                                                                                                                                                                                                                                                                                                     NA
## 875                                                                                                                                                                                                                                                                                                     NA
## 876                                                                                                                                                                                                                                                        Lilpoo404, OCDrises, Covid_19_UK, Inevitable_ET
## 877                                                                                                                                                                                                                                                                                         SusannaLHarris
## 878                                                                                                                                                                                                                                                                                  JohnDelaney, JoeBiden
## 879                                                                                                                                                                                                                                                                                                     NA
## 880                                                                                                                                                                                                                                                                                                     NA
## 881                                                                                                                                                                                                                                                                                                     NA
## 882                                                                                                                                                                                                                                                                                                 dukope
## 883                                                                                                                                                                                                                                                                                                 ajplus
## 884                                                                                                                                                                                                                                                                                            chennaicorp
## 885                                                                                                                                                                                                                                                                                                     NA
## 886                                                                                                                                                                                                                                                                                            itsjojosiwa
## 887                                                                                                                                                                                                                                                                                                     NA
## 888                                                                                                                                                                                                                                                                    Derp_Decider, Storm_22xoxo, thehill
## 889                                                                                                                                                                                                                                                                                                     NA
## 890                                                                                                                                                                                                                                                                                                     NA
## 891                                                                                                                                                                                                                                                                         WeleSeg, AndiMakinana, tumie09
## 892                                                                                                                                                                                                                                                                                                     NA
## 893                                                                                                                                                                                                                                                                                                     NA
## 894                                                                                                                                                                                                                                                                                                     NA
## 895                                                                                                                                                                                                                                                                                                     NA
## 896                                                                                                                                                                                                                                                                                                     NA
## 897                                                                                                                                                                                                                                                                                                     NA
## 898                                                                                                                                                                                                                                                                                                     NA
## 899                                                                                                                                                                                                                                                                                           RollingStone
## 900                                                                                                                                                                                                                                                                                                     NA
## 901                                                                                                                                                                                                                                                                                                     NA
## 902                                                                                                                                                                                                                                                                                        pmo, airtelbank
## 903                                                                                                                                                                                                                                                                                                     NA
## 904                                                                                                                                                                                                                                                                                                     NA
## 905                                                                                                                                                                                                                                                         ToddJCefaratti, gabrielsherman, teigland_cindy
## 906                                                                                                                                                                                                                                                                 ReneeMarieHern2, wtpact5js, GovBillLee
## 907                                                                                                                                                                                                                                                   TedMielczarek, johnregehr, TedMielczarek, johnregehr
## 908                                                                                                                                                                                                                                                                                                     NA
## 909                                                                                                                                                                                                                                                                                                     NA
## 910                                                                                                                                                                                                                                                                                                     NA
## 911                                                                                                                                                                                                                                                                                                Gizmodo
## 912                                                                                                                                                                                                                                                                                                     NA
## 913                                                                                                                                                                                                                                                                                              W_S_O_S_D
## 914                                                                                                                                                                                                                                                                                                     NA
## 915                                                                                                                                                                                                                                                                                                     NA
## 916                                                                                                                                                                                                                                                                                                     NA
## 917                                                                                                                                                                                                                                                                                                     NA
## 918                                                                                                                                                                                                                                                                                                     NA
## 919                                                                                                                                                                                                                                                                                                     NA
## 920                                                                                                                                                                                                                                                                                                     NA
## 921                                                                                                                                                                                                                                                                                                     NA
## 922                                                                                                                                                                                                                                                                                                     NA
## 923                                                                                                                                                                                                                                                                                        lerato_morapedi
## 924                                                                                                                                                                                                                                                                                                     NA
## 925                                                                                                                                                                                                                                                                                                     NA
## 926                                                                                                                                                                                                                                                                                                     NA
## 927                                                                                                                                                                                                                                                                                                     NA
## 928                                                                                                                                                                                                                                                                                                     NA
## 929                                                                                                                                                                                                                                                                                                     NA
## 930                                                                                                                                                                                                                                                                                                     NA
## 931                                                                                                                                                                                                                                                                                                     NA
## 932                                                                                                                                                                                                                                                                                                     NA
## 933                                                                                                                                                                                                                                                                                              edyong209
## 934                                                                                                                                                                                                                                                                                                     NA
## 935                                                                                                                                                                                                                                                                                                     NA
## 936                                                                                                                                                                                                                                                                                                   EBRD
## 937                                                                                                                                                                                                                                                                                                     NA
## 938                                                                                                                                                                                                                                                                                                    MAS
## 939                                                                                                                                                                                                                                                                                                     NA
## 940                                                                                                                                                                                                                                                                                                     NA
## 941                                                                                                                                                                                                                                                                                                     NA
## 942                                                                                                                                                                                                                                                                                        MINationalGuard
## 943                                                                                                                                                                                                                                                                                                     NA
## 944                                                                                                                                                                                                                                                                                                     NA
## 945                                                                                                                                                                                                                                                                                                     NA
## 946                                                                                                                                                                                                                                                                                                  ECADF
## 947                                                                                                                                                                                                                                                                                            GavinNewsom
## 948                                                                                                                                                                                                                                                                                                     NA
## 949                                                                                                                                                                                                                                                                                            BetteMidler
## 950                                                                                                                                                                                                                                                                                                     NA
## 951                                                                                                                                                                                                                                                                                                     NA
## 952                                                                                                                                                                                                                                                                                                     NA
## 953                                                                                                                                                                                                                                                                                                     NA
## 954                                                                                                                                                                                                                                                                                                     NA
## 955                                                                                                                                                                                                                                                                                                     NA
## 956                                                                                                                                                                                                                                                                                                     NA
## 957                                                                                                                                                                                                                                                                                                     NA
## 958                                                                                                                                                                                                                                                                                                     NA
## 959                                                                                                                                                                                                                                                                                                     NA
## 960                                                                                                                                                                                                                                                                                           DonorsChoose
## 961                                                                                                                                                                                                                                                                                                     NA
## 962                                                                                                                                                                                                                                                                                                     NA
## 963                                                                                                                                                                                                                                                                                         P_H_S_Official
## 964                                                                                                                                                                                                                                                                                                     NA
## 965                                                                                                                                                                                                                                                                                                     NA
## 966                                                                                                                                                                                                                                                                                                     NA
## 967                                                                                                                                                                                                                                                                                            mitchellvii
## 968                                                                                                                                                                                                                                                                                                     NA
## 969                                                                                                                                                                                                                                                                                                     NA
## 970                                                                                                                                                                                                                                                                                                     NA
## 971                                                                                                                                                                                                                                                                                                     NA
## 972                                                                                                                                                                                                                                                                                                     NA
## 973                                                                                                                                                                                                                                                                                                     NA
## 974                                                                                                                                                                                                                                                                                                     NA
## 975                                                                                                                                                                                                                                                                                                     NA
## 976                                                                                                                                                                                                                                                                                                     NA
## 977                                                                                                                                                                                                                                                                                                     NA
## 978                                                                                                                                                                                                                                                                                           tehreemazeem
## 979                                                                                                                                                                                                                                                                                                 ddale8
## 980                                                                                                                                                                                                                                                                                                YouTube
## 981                                                                                                                                                                                                                                                                                                     NA
## 982                                                                                                                                                                                                                                                                                             ABAJournal
## 983                                                                                                                                                                                                                                                                                                     NA
## 984                                                                                                                                                                                                                                                                                                     NA
## 985                                                                                                                                                                                                                                                                                                     NA
## 986                                                                                                                                                                                                                                                                                                     NA
## 987                                                                                                                                                                                                                                                                                                     NA
## 988                                                                                                                                                                                                                                                                                                     NA
## 989                                                                                                                                                                                                                                                                                                     NA
## 990                                                                                                                                                                                                                                                                                                     NA
## 991                                                                                                                                                                                                                                                                                             PaulKagame
## 992                                                                                                                                                                                                                                                                                                     NA
## 993                                                                                                                                                                                                                                                                                                     NA
## 994                                                                                                                                                                                                                                                                                           SykesCharlie
## 995                                                                                                                                                                                                                                                                                                  PCMag
## 996                                                                                                                                                                                                                                                                                        covidperspectiv
## 997                                                                                                                                                                                                                                                                               RUSI_org, MChalmers_RUSI
## 998                                                                                                                                                                                                                                                                                                     NA
## 999                                                                                                                                                                                                                                                                               fourie_art, CJ_isnowblue
## 1000                                                                                                                                                                                                                                                                    SteveSisolak, PPA_USA, Free2CareHC
## 1001                                                                                                                                                                                                                                                                                                    NA
## 1002                                                                                                                                                                                                                                                                                            DeleMomodu
## 1003                                                                                                                                                                                                                                         RandiRhodes, StephMillerShow, maddow, Thom_Hartmann, business
## 1004                                                                                                                                                                                                                                                                                                    NA
## 1005                                                                                                                                                                                                                                                    realDonaldTrump, SpeakerPelosi, AOC, BernieSanders
## 1006                                                                                                                                                                                                                                                            VT_LiberalArts, CestLaBrianna, BINederland
## 1007                                                                                                                                                                                                                                                                                                    NA
## 1008                                                                                                                                                                                                                                                                                                    NA
## 1009                                                                                                                                                                                                                                                                                                    NA
## 1010                                                                                                                                                                                                                                                                                                    NA
## 1011                                                                                                                                                                                                                                                                                             GovMurphy
## 1012                                                                                                                                                                                                                                                                                        LiveeAihhReese
## 1013                                                                                                                                                                                                                                                                                            RegalFilms
## 1014                                                                                                                                                                                                                                                                                                    NA
## 1015                                                                                                                                                                                                                                                                                                    NA
## 1016                                                                                                                                                                                                                                                                                                    NA
## 1017                                                                                                                                                                                                                                                                                                    NA
## 1018                                                                                                                                                                                                                                                                                             ALMLGROUP
## 1019                                                                                                                                                                                                                                                                              GovDunleavy, sfchronicle
## 1020                                                                                                                                                                                                                                                                                          lawcrimenews
## 1021                                                                                                                                                                                                                                                                                         SpaceForceDoD
## 1022                                                                                                                                                                                                                                                                          RushMedical, chitribopinions
## 1023                                                                                                                                                                                                                                                                                         TCLcollective
## 1024                                                                                                                                                                                                                                                                                                    NA
## 1025                                                                                                                                                                                                                                                                                                    NA
## 1026                                                                                                                                                                                                                                                                                         NateSilver538
## 1027                                                                                                                                                                                                                                                                                                    NA
## 1028                                                                                                                                                                                                                                                                                                    NA
## 1029                                                                                                                                                                                                                                                                                                    NA
## 1030                                                                                                                                                                                                                                                                                                    NA
## 1031                                                                                                                                                                                                                                                                                                    NA
## 1032                                                                                                                                                                                                                                                                                                    NA
## 1033                                                                                                                                                                                                                                                                                               zoom_us
## 1034                                                                                                                                                                                                                                                                                          GernotWagner
## 1035                                                                                                                                                                                                                                                                                                    NA
## 1036                                                                                                                                                                                                                                                                                                    NA
## 1037                                                                                                                                                                                                                                                                              RepLeeZeldin, NYGovCuomo
## 1038                                                                                                                                                                                                                                                                                                    NA
## 1039                                                                                                                                                                                                                                                                                                    NA
## 1040                                                                                                                                                                                                                                                                                                    NA
## 1041                                                                                                                                                                                                                                                                                            sarahtavel
## 1042                                                                                                                                                                                                                                                                                        courierjournal
## 1043                                                                                                                                                                                                                                                                                                    NA
## 1044                                                                                                                                                                                                                                                                                                    NA
## 1045                                                                                                                                                                                                                                                                                               YouTube
## 1046                                                                                                                                                                                                                                                                                         marwilliamson
## 1047                                                                                                                                                                                                                                                                                            SenSanders
## 1048                                                                                                                                                                                                                                                                                             bloglovin
## 1049                                                                                                                                                                                                                                                                                                   DNC
## 1050                                                                                                                                                                                                                                                                                           TheSSEHydro
## 1051                                                                                                                                                                                                                                           GraceSm16250397, ScottPresler, kaniff_ken1, realDonaldTrump
## 1052                                                                                                                                                                                                                                                                                                    NA
## 1053                                                                                                                                                                                                                                                                                                    NA
## 1054                                                                                                                                                                                                                                                                                       realDonaldTrump
## 1055                                                                                                                                                                       1_odonkor, NAkufoAddo, GhanaPresidency, rashpelp, UN_SDG, EuropeInGhana, UN, _AfricanUnion, UNDPPA, NDCYouthWing, ndccommbureau
## 1056                                                                                                                                                                                                                                                                                            Fareham_IC
## 1057                                                                                                                                                                                                                                                                                           leicspolice
## 1058                                                                                                                                                                                                                                                                                                    NA
## 1059                                                                                                                                                                                                                                                                                                    NA
## 1060                                                                                                                                                                                                                                                                                             KateAndrs
## 1061                                                                                                                                                                                                                                                                                             camorborg
## 1062                                                                                                                                                                                                                                                                                            disneyplus
## 1063                                                                                                                                                                                                                                                                                        allinwithchris
## 1064                                                                                                                                                                                                                                                                                                    NA
## 1065                                                                                                                                                                                                                                                                                                    NA
## 1066                                                                                                                                                                                                                                                                                                    NA
## 1067                                                                                                                                                                                                                                                                                                    NA
## 1068                                                                                                                                                                                                                                                                                                    NA
## 1069                                                                                                                                                                                                                                                                                                    NA
## 1070                                                                                                                                                                                                                                                                                                    NA
## 1071                                                                                                                                                                                                                                                                                                    NA
## 1072                                                                                                                                                                                                                                                                                                    NA
## 1073                                                                                                                                                                                                                                                                                                    NA
## 1074                                                                                                                                                                                                                                                                                                    NA
## 1075                                                                                                                                                                                                                                                                                                    NA
## 1076                                                                                                                                                                                                                                                                                                    NA
## 1077                                                                                                                                                                                                                                                                                       CNN, ChrisCuomo
## 1078                                                                                                                                                                                                                                                                                                    NA
## 1079                                                                                                                                                                                                                                                                             AntonPilgram, Commuterist
## 1080                                                                                                                                                                                                                                                                                                    NA
## 1081                                                                                                                                                                                                                                                                                                    NA
## 1082                                                                                                                                                                                                                                                                                                    NA
## 1083                                                                                                                                                                                                                                                                                                    NA
## 1084                                                                                                                                                                                                                                                                                                    NA
## 1085                                                                                                                                                                                                                                                                                        ncsecu, ncsecu
## 1086                                                                                                                                                                                                                                                                                                    NA
## 1087                                                                                                                                                                                                                                                                                                    NA
## 1088                                                                                                                                                                                                                                                                                                    NA
## 1089                                                                                                                                                                                                                                                                                           TheLensNews
## 1090                                                                                                                                                                                                                                                                       eschatoL0GICal, AmIDoinItWright
## 1091                                                                                                                                                                                                                                                          AusCopyright, CopyrightAgency, screenrights1
## 1092                                                                                                                                                                                                                                                                                                    NA
## 1093                                                                                                                                                                                                                                                                                                    NA
## 1094                                                                                                                                                                                                                                                                                               YouTube
## 1095                                                                                                                                                                                                                                                                                           dino_melaye
## 1096                                                                                                                                                                                                                                                                                          BorisJohnson
## 1097                                                                                                                                                                                                                                                                                                    NA
## 1098                                                                                                                                                                                                                                                                                                    NA
## 1099                                                                                                                                                                                                                                                                                     akreana_, Vodacom
## 1100                                                                                                                                                                                                                                                                                                    NA
## 1101                                                                                                                                                                                                                                                                                                    NA
## 1102                                                                                                                                                                                                                                                                                                    NA
## 1103                                                                                                                                                                                                                                                                                                    NA
## 1104                                                                                                                                                                                                                                                                                                    NA
## 1105                                                                                                                                                                                                                                                                                                    NA
## 1106                                                                                                                                                                                                                                                                                                    NA
## 1107                                                                                                                                                                                                                                                                                       LocalMediaAssoc
## 1108                                                                                                                                                                                                                                                                                                    NA
## 1109                                                                                                                                                                                                                                                                                                    NA
## 1110                                                                                                                                                                                                                                                                                       MichiganAdvance
## 1111                                                                                                                                                                                                                                                                                                    NA
##      lang    quoted_status_id
## 1      en                <NA>
## 2      en                <NA>
## 3      en                <NA>
## 4      en 1243338196374740994
## 5      en 1243300739042156547
## 6      en                <NA>
## 7      en                <NA>
## 8      en                <NA>
## 9      en 1243236942017253376
## 10     en                <NA>
## 11     en                <NA>
## 12     en                <NA>
## 13     en                <NA>
## 14     en                <NA>
## 15     en                <NA>
## 16     en                <NA>
## 17     en                <NA>
## 18     en                <NA>
## 19     en                <NA>
## 20     en                <NA>
## 21     en                <NA>
## 22     en                <NA>
## 23     en                <NA>
## 24     en                <NA>
## 25     en                <NA>
## 26     en                <NA>
## 27     en                <NA>
## 28     en                <NA>
## 29     en                <NA>
## 30     en                <NA>
## 31     en                <NA>
## 32     en                <NA>
## 33     en                <NA>
## 34     en                <NA>
## 35     en                <NA>
## 36     en 1243723231208640513
## 37     en                <NA>
## 38     en                <NA>
## 39     en                <NA>
## 40     en                <NA>
## 41     en                <NA>
## 42     en                <NA>
## 43     en 1243314620737236992
## 44     en                <NA>
## 45     en                <NA>
## 46     en                <NA>
## 47     en                <NA>
## 48     en                <NA>
## 49     en                <NA>
## 50     en                <NA>
## 51     en 1243548368820977670
## 52     en                <NA>
## 53     en                <NA>
## 54     en                <NA>
## 55     en                <NA>
## 56     en                <NA>
## 57     en                <NA>
## 58     en                <NA>
## 59     en                <NA>
## 60     en                <NA>
## 61     en                <NA>
## 62     en                <NA>
## 63     en                <NA>
## 64     en                <NA>
## 65     en                <NA>
## 66     en                <NA>
## 67     en                <NA>
## 68     en                <NA>
## 69     en                <NA>
## 70     en                <NA>
## 71     en                <NA>
## 72     en                <NA>
## 73     en                <NA>
## 74     en                <NA>
## 75     en                <NA>
## 76     en 1243680397055209474
## 77     en 1243688448285909002
## 78     en                <NA>
## 79     en                <NA>
## 80     en                <NA>
## 81     en                <NA>
## 82     en                <NA>
## 83     en                <NA>
## 84     en                <NA>
## 85     en                <NA>
## 86     en                <NA>
## 87     en                <NA>
## 88     en                <NA>
## 89     en                <NA>
## 90     en                <NA>
## 91     en                <NA>
## 92     en                <NA>
## 93     en                <NA>
## 94     en                <NA>
## 95     en                <NA>
## 96     en                <NA>
## 97     en                <NA>
## 98     en                <NA>
## 99     en                <NA>
## 100    en                <NA>
## 101    en                <NA>
## 102    en                <NA>
## 103    en                <NA>
## 104    en                <NA>
## 105    en 1243631594314903552
## 106    en                <NA>
## 107    en                <NA>
## 108    en                <NA>
## 109    en                <NA>
## 110    en 1243813318034370562
## 111    en                <NA>
## 112    en                <NA>
## 113    en                <NA>
## 114    en                <NA>
## 115    en                <NA>
## 116    en                <NA>
## 117    en                <NA>
## 118    en                <NA>
## 119    en                <NA>
## 120    en 1243309423184969730
## 121    en                <NA>
## 122    en                <NA>
## 123    en                <NA>
## 124    en                <NA>
## 125    en                <NA>
## 126    en                <NA>
## 127    en                <NA>
## 128    en                <NA>
## 129    en                <NA>
## 130    en                <NA>
## 131    en 1243613671634407437
## 132    en                <NA>
## 133    en                <NA>
## 134    en                <NA>
## 135    en                <NA>
## 136    en                <NA>
## 137    en                <NA>
## 138    en                <NA>
## 139    en                <NA>
## 140    en                <NA>
## 141    en                <NA>
## 142    en                <NA>
## 143    en                <NA>
## 144    en                <NA>
## 145    en                <NA>
## 146    en                <NA>
## 147    en                <NA>
## 148    en                <NA>
## 149    en                <NA>
## 150    en                <NA>
## 151    en                <NA>
## 152    en                <NA>
## 153    en                <NA>
## 154    en 1243114650314702849
## 155    en                <NA>
## 156    en                <NA>
## 157    en                <NA>
## 158    en                <NA>
## 159    en                <NA>
## 160    en                <NA>
## 161    en                <NA>
## 162    en                <NA>
## 163    en                <NA>
## 164    en                <NA>
## 165    en                <NA>
## 166    en 1242558186659381251
## 167    en                <NA>
## 168    en                <NA>
## 169    en                <NA>
## 170    en                <NA>
## 171    en                <NA>
## 172    en 1243240965760057344
## 173    en 1242823768831131649
## 174    en                <NA>
## 175    en                <NA>
## 176    en                <NA>
## 177    en                <NA>
## 178    en                <NA>
## 179    en                <NA>
## 180    en                <NA>
## 181    en                <NA>
## 182    en                <NA>
## 183    en                <NA>
## 184    en 1243708856644956160
## 185    en                <NA>
## 186    en 1243717473440075776
## 187    en                <NA>
## 188    en                <NA>
## 189    en                <NA>
## 190    en                <NA>
## 191    en                <NA>
## 192    en                <NA>
## 193    en                <NA>
## 194    en                <NA>
## 195    en                <NA>
## 196    en                <NA>
## 197    en                <NA>
## 198    en                <NA>
## 199    en                <NA>
## 200    en                <NA>
## 201    en                <NA>
## 202    en                <NA>
## 203    en                <NA>
## 204    en                <NA>
## 205    en                <NA>
## 206    en                <NA>
## 207    en                <NA>
## 208    en                <NA>
## 209    en                <NA>
## 210    en                <NA>
## 211    en                <NA>
## 212    en                <NA>
## 213    en                <NA>
## 214    en                <NA>
## 215    en                <NA>
## 216    en                <NA>
## 217    en                <NA>
## 218    en                <NA>
## 219    en                <NA>
## 220    en                <NA>
## 221    en                <NA>
## 222    en                <NA>
## 223    en                <NA>
## 224    en                <NA>
## 225    en 1243554691973353483
## 226    en                <NA>
## 227    en                <NA>
## 228    en                <NA>
## 229    en                <NA>
## 230    en                <NA>
## 231    en 1243540142838685696
## 232    en                <NA>
## 233    en                <NA>
## 234    en 1243283431217340416
## 235    en                <NA>
## 236    en                <NA>
## 237    en                <NA>
## 238    en                <NA>
## 239    en                <NA>
## 240    en                <NA>
## 241    en                <NA>
## 242    en                <NA>
## 243    en 1243042745343782912
## 244    en                <NA>
## 245    en                <NA>
## 246    en                <NA>
## 247    en                <NA>
## 248    en                <NA>
## 249    en                <NA>
## 250    en                <NA>
## 251    en                <NA>
## 252    en                <NA>
## 253    en                <NA>
## 254    en                <NA>
## 255    en                <NA>
## 256    en 1243690469172879362
## 257    en                <NA>
## 258    en 1242905328209080331
## 259    en                <NA>
## 260    en 1242691788122382337
## 261    en                <NA>
## 262    en                <NA>
## 263    en 1243550363686449152
## 264    en                <NA>
## 265    en                <NA>
## 266    en                <NA>
## 267    en                <NA>
## 268    en                <NA>
## 269    en                <NA>
## 270    en 1243569907201118208
## 271    en                <NA>
## 272    en                <NA>
## 273    en                <NA>
## 274    en                <NA>
## 275    en                <NA>
## 276    en                <NA>
## 277    en                <NA>
## 278    en 1242900678311362561
## 279    en 1243580036118204423
## 280    en                <NA>
## 281    en                <NA>
## 282    en 1243183681671397377
## 283    en                <NA>
## 284    en                <NA>
## 285    en                <NA>
## 286    en                <NA>
## 287    en 1243345750521757700
## 288    en                <NA>
## 289    en                <NA>
## 290    en                <NA>
## 291    en                <NA>
## 292    en                <NA>
## 293    en                <NA>
## 294    en                <NA>
## 295    en                <NA>
## 296    en                <NA>
## 297    en                <NA>
## 298    en                <NA>
## 299    en 1243134126800220160
## 300    en                <NA>
## 301    en                <NA>
## 302    en                <NA>
## 303    en                <NA>
## 304    en                <NA>
## 305    en                <NA>
## 306    en                <NA>
## 307    en                <NA>
## 308    en                <NA>
## 309    en                <NA>
## 310    en                <NA>
## 311    en                <NA>
## 312    en                <NA>
## 313    en                <NA>
## 314    en                <NA>
## 315    en                <NA>
## 316    en                <NA>
## 317    en                <NA>
## 318    en                <NA>
## 319    en                <NA>
## 320    en                <NA>
## 321    en                <NA>
## 322    en                <NA>
## 323    en 1243600808131911683
## 324    en                <NA>
## 325    en                <NA>
## 326    en                <NA>
## 327    en                <NA>
## 328    en                <NA>
## 329    en                <NA>
## 330    en                <NA>
## 331    en                <NA>
## 332    en                <NA>
## 333    en 1243586376513224705
## 334    en                <NA>
## 335    en                <NA>
## 336    en                <NA>
## 337    en                <NA>
## 338    en                <NA>
## 339    en                <NA>
## 340    en                <NA>
## 341    en                <NA>
## 342    en                <NA>
## 343    en                <NA>
## 344    en                <NA>
## 345    en                <NA>
## 346    en                <NA>
## 347    en                <NA>
## 348    en                <NA>
## 349    en                <NA>
## 350    en                <NA>
## 351    en                <NA>
## 352    en                <NA>
## 353    en                <NA>
## 354    en                <NA>
## 355    en                <NA>
## 356    en                <NA>
## 357    en                <NA>
## 358    en                <NA>
## 359    en                <NA>
## 360    en                <NA>
## 361    en                <NA>
## 362    en                <NA>
## 363    en                <NA>
## 364    en                <NA>
## 365    en                <NA>
## 366    en                <NA>
## 367    en                <NA>
## 368    en                <NA>
## 369    en                <NA>
## 370    en                <NA>
## 371    en                <NA>
## 372    en                <NA>
## 373    en                <NA>
## 374    en                <NA>
## 375    en 1243579936432173056
## 376    en                <NA>
## 377    en                <NA>
## 378    en                <NA>
## 379    en                <NA>
## 380    en                <NA>
## 381    en                <NA>
## 382    en                <NA>
## 383    en                <NA>
## 384    en                <NA>
## 385    en                <NA>
## 386    en                <NA>
## 387    en 1242656904913932290
## 388    en                <NA>
## 389    en                <NA>
## 390    en                <NA>
## 391    en                <NA>
## 392    en                <NA>
## 393    en                <NA>
## 394    en                <NA>
## 395    en                <NA>
## 396    en                <NA>
## 397    en                <NA>
## 398    en                <NA>
## 399    en                <NA>
## 400    en                <NA>
## 401    en                <NA>
## 402    en                <NA>
## 403    en                <NA>
## 404    en                <NA>
## 405    en                <NA>
## 406    en                <NA>
## 407    en                <NA>
## 408    en                <NA>
## 409    en                <NA>
## 410    en                <NA>
## 411    en                <NA>
## 412    en                <NA>
## 413    en                <NA>
## 414    en                <NA>
## 415    en                <NA>
## 416    en                <NA>
## 417    en                <NA>
## 418    en                <NA>
## 419    en                <NA>
## 420    en                <NA>
## 421    en                <NA>
## 422    en                <NA>
## 423    en                <NA>
## 424    en                <NA>
## 425    en                <NA>
## 426    en                <NA>
## 427    en                <NA>
## 428    en                <NA>
## 429    en                <NA>
## 430    en                <NA>
## 431    en                <NA>
## 432    en                <NA>
## 433    en                <NA>
## 434    en                <NA>
## 435    en                <NA>
## 436    en                <NA>
## 437    en                <NA>
## 438    en 1243709410502942720
## 439    en                <NA>
## 440    en                <NA>
## 441    en                <NA>
## 442    en                <NA>
## 443    en                <NA>
## 444    en                <NA>
## 445    en                <NA>
## 446    en                <NA>
## 447    en                <NA>
## 448    en                <NA>
## 449    en                <NA>
## 450    en                <NA>
## 451    en 1243025657338134529
## 452    en                <NA>
## 453    en                <NA>
## 454    en                <NA>
## 455    en                <NA>
## 456    en                <NA>
## 457    en                <NA>
## 458    en                <NA>
## 459    en                <NA>
## 460    en                <NA>
## 461    en                <NA>
## 462    en                <NA>
## 463    en                <NA>
## 464    en                <NA>
## 465    en                <NA>
## 466    en                <NA>
## 467    en                <NA>
## 468    en                <NA>
## 469    en                <NA>
## 470    en                <NA>
## 471    en                <NA>
## 472    en                <NA>
## 473    en                <NA>
## 474    en                <NA>
## 475    en                <NA>
## 476    en                <NA>
## 477    en                <NA>
## 478    en                <NA>
## 479    en                <NA>
## 480    en                <NA>
## 481    en                <NA>
## 482    en                <NA>
## 483    en                <NA>
## 484    en                <NA>
## 485    en                <NA>
## 486    en                <NA>
## 487    en                <NA>
## 488    en                <NA>
## 489    en                <NA>
## 490    en                <NA>
## 491    en                <NA>
## 492    en                <NA>
## 493    en                <NA>
## 494    en                <NA>
## 495    en                <NA>
## 496    en 1242456083341418496
## 497    en                <NA>
## 498    en                <NA>
## 499    en                <NA>
## 500    en                <NA>
## 501    en                <NA>
## 502    en                <NA>
## 503    en                <NA>
## 504    en                <NA>
## 505    en                <NA>
## 506    en                <NA>
## 507    en                <NA>
## 508    en                <NA>
## 509    en                <NA>
## 510    en                <NA>
## 511    en                <NA>
## 512    en                <NA>
## 513    en 1243585563883683842
## 514    en                <NA>
## 515    en                <NA>
## 516    en                <NA>
## 517    en                <NA>
## 518    en                <NA>
## 519    en                <NA>
## 520    en                <NA>
## 521    en                <NA>
## 522    en                <NA>
## 523    en                <NA>
## 524    en 1243585355183357957
## 525    en                <NA>
## 526    en                <NA>
## 527    en                <NA>
## 528    en 1243245251332059137
## 529    en                <NA>
## 530    en                <NA>
## 531    en                <NA>
## 532    en 1243403433245212672
## 533    en                <NA>
## 534    en                <NA>
## 535    en                <NA>
## 536    en                <NA>
## 537    en                <NA>
## 538    en                <NA>
## 539    en                <NA>
## 540    en                <NA>
## 541    en                <NA>
## 542    en                <NA>
## 543    en                <NA>
## 544    en                <NA>
## 545    en                <NA>
## 546    en                <NA>
## 547    en                <NA>
## 548    en                <NA>
## 549    en                <NA>
## 550    en                <NA>
## 551    en                <NA>
## 552    en                <NA>
## 553    en 1243588490274557952
## 554    en                <NA>
## 555    en                <NA>
## 556    en                <NA>
## 557    en                <NA>
## 558    en 1243158375375896576
## 559    en                <NA>
## 560    en                <NA>
## 561    en                <NA>
## 562    en                <NA>
## 563    en                <NA>
## 564    en                <NA>
## 565    en                <NA>
## 566    en                <NA>
## 567    en                <NA>
## 568    en                <NA>
## 569    en                <NA>
## 570    en                <NA>
## 571    en                <NA>
## 572    en                <NA>
## 573    en                <NA>
## 574    en                <NA>
## 575    en                <NA>
## 576    en                <NA>
## 577    en                <NA>
## 578    en                <NA>
## 579    en                <NA>
## 580    en                <NA>
## 581    en                <NA>
## 582    en                <NA>
## 583    en                <NA>
## 584    en                <NA>
## 585    en                <NA>
## 586    en                <NA>
## 587    en                <NA>
## 588    en 1243255552928624640
## 589    en                <NA>
## 590    en                <NA>
## 591    en                <NA>
## 592    en                <NA>
## 593    en                <NA>
## 594    en                <NA>
## 595    en                <NA>
## 596    en                <NA>
## 597    en                <NA>
## 598    en                <NA>
## 599    en                <NA>
## 600    en                <NA>
## 601    en                <NA>
## 602    en                <NA>
## 603    en 1243092170065707008
## 604    en                <NA>
## 605    en                <NA>
## 606    en                <NA>
## 607    en                <NA>
## 608    en                <NA>
## 609    en                <NA>
## 610    en                <NA>
## 611    en                <NA>
## 612    en                <NA>
## 613    en                <NA>
## 614    en                <NA>
## 615    en                <NA>
## 616    en 1243665121995563008
## 617    en  994696175575068672
## 618    en                <NA>
## 619    en                <NA>
## 620    en                <NA>
## 621    en                <NA>
## 622    en                <NA>
## 623    en                <NA>
## 624    en                <NA>
## 625    en                <NA>
## 626    en                <NA>
## 627    en                <NA>
## 628    en                <NA>
## 629    en                <NA>
## 630    en                <NA>
## 631    en                <NA>
## 632    en                <NA>
## 633    en                <NA>
## 634    en                <NA>
## 635    en                <NA>
## 636    en                <NA>
## 637    en 1243624026834120705
## 638    en 1243654241467555845
## 639    en                <NA>
## 640    en                <NA>
## 641    en 1243797560759848961
## 642    en                <NA>
## 643    en                <NA>
## 644    en                <NA>
## 645    en                <NA>
## 646    en                <NA>
## 647    en                <NA>
## 648    en                <NA>
## 649    en                <NA>
## 650    en                <NA>
## 651    en                <NA>
## 652    en                <NA>
## 653    en                <NA>
## 654    en                <NA>
## 655    en                <NA>
## 656    en                <NA>
## 657    en                <NA>
## 658    en                <NA>
## 659    en                <NA>
## 660    en                <NA>
## 661    en                <NA>
## 662    en                <NA>
## 663    en                <NA>
## 664    en                <NA>
## 665    en 1239977383207342080
## 666    en                <NA>
## 667    en                <NA>
## 668    en                <NA>
## 669    en                <NA>
## 670    en                <NA>
## 671    en                <NA>
## 672    en                <NA>
## 673    en                <NA>
## 674    en                <NA>
## 675    en                <NA>
## 676    en                <NA>
## 677    en 1243513535356973056
## 678    en                <NA>
## 679    en                <NA>
## 680    en                <NA>
## 681    en 1243744464939577344
## 682    en                <NA>
## 683    en                <NA>
## 684    en                <NA>
## 685    en                <NA>
## 686    en                <NA>
## 687    en                <NA>
## 688    en                <NA>
## 689    en                <NA>
## 690    en                <NA>
## 691    en                <NA>
## 692    en                <NA>
## 693    en                <NA>
## 694    en                <NA>
## 695    en                <NA>
## 696    en                <NA>
## 697    en                <NA>
## 698    en                <NA>
## 699    en                <NA>
## 700    en                <NA>
## 701    en                <NA>
## 702    en                <NA>
## 703    en                <NA>
## 704    en                <NA>
## 705    en                <NA>
## 706    en                <NA>
## 707    en                <NA>
## 708    en 1243609141978906624
## 709    en                <NA>
## 710    en 1243514600395595776
## 711    en                <NA>
## 712    en                <NA>
## 713    en                <NA>
## 714    en                <NA>
## 715    en                <NA>
## 716    en                <NA>
## 717    en                <NA>
## 718    en                <NA>
## 719    en                <NA>
## 720    en                <NA>
## 721    en                <NA>
## 722    en                <NA>
## 723    en                <NA>
## 724    en                <NA>
## 725    en                <NA>
## 726    en                <NA>
## 727    en                <NA>
## 728    en                <NA>
## 729    en                <NA>
## 730    en                <NA>
## 731    en                <NA>
## 732    en                <NA>
## 733    en                <NA>
## 734    en                <NA>
## 735    en                <NA>
## 736    en                <NA>
## 737    en                <NA>
## 738    en                <NA>
## 739    en                <NA>
## 740    en                <NA>
## 741    en                <NA>
## 742    en                <NA>
## 743    en                <NA>
## 744    en                <NA>
## 745    en                <NA>
## 746    en                <NA>
## 747    en                <NA>
## 748    en                <NA>
## 749    en                <NA>
## 750    en                <NA>
## 751    en                <NA>
## 752    en                <NA>
## 753    en                <NA>
## 754    en                <NA>
## 755    en                <NA>
## 756    en                <NA>
## 757    en                <NA>
## 758    en                <NA>
## 759    en                <NA>
## 760    en                <NA>
## 761    en                <NA>
## 762    en                <NA>
## 763    en                <NA>
## 764    en                <NA>
## 765    en                <NA>
## 766    en                <NA>
## 767    en                <NA>
## 768    en                <NA>
## 769    en 1243098300334530560
## 770    en                <NA>
## 771    en                <NA>
## 772    en                <NA>
## 773    en                <NA>
## 774    en                <NA>
## 775    en                <NA>
## 776    en 1243523163364999168
## 777    en 1243001183276396544
## 778    en                <NA>
## 779    en                <NA>
## 780    en                <NA>
## 781    en                <NA>
## 782    en                <NA>
## 783    en                <NA>
## 784    en                <NA>
## 785    en                <NA>
## 786    en                <NA>
## 787    en 1243680163054915584
## 788    en                <NA>
## 789    en                <NA>
## 790    en                <NA>
## 791    en                <NA>
## 792    en                <NA>
## 793    en                <NA>
## 794    en                <NA>
## 795    en                <NA>
## 796    en                <NA>
## 797    en                <NA>
## 798    en                <NA>
## 799    en                <NA>
## 800    en                <NA>
## 801    en                <NA>
## 802    en 1243221750508290049
## 803    en                <NA>
## 804    en 1240086435874643970
## 805    en 1243569736035618816
## 806    en                <NA>
## 807    en 1243326327282860035
## 808    en                <NA>
## 809    en                <NA>
## 810    en                <NA>
## 811    en                <NA>
## 812    en                <NA>
## 813    en                <NA>
## 814    en                <NA>
## 815    en                <NA>
## 816    en                <NA>
## 817    en                <NA>
## 818    en                <NA>
## 819    en                <NA>
## 820    en                <NA>
## 821    en                <NA>
## 822    en                <NA>
## 823    en                <NA>
## 824    en                <NA>
## 825    en                <NA>
## 826    en                <NA>
## 827    en                <NA>
## 828    en                <NA>
## 829    en                <NA>
## 830    en                <NA>
## 831    en                <NA>
## 832    en                <NA>
## 833    en                <NA>
## 834    en                <NA>
## 835    en                <NA>
## 836    en                <NA>
## 837    en                <NA>
## 838    en                <NA>
## 839    en                <NA>
## 840    en                <NA>
## 841    en                <NA>
## 842    en 1243243318923988992
## 843    en                <NA>
## 844    en 1243613157332901890
## 845    en                <NA>
## 846    en                <NA>
## 847    en 1243356406297677824
## 848    en                <NA>
## 849    en                <NA>
## 850    en                <NA>
## 851    en                <NA>
## 852    en                <NA>
## 853    en                <NA>
## 854    en                <NA>
## 855    en                <NA>
## 856    en                <NA>
## 857    en 1243274376553934849
## 858    en                <NA>
## 859    en                <NA>
## 860    en                <NA>
## 861    en                <NA>
## 862    en                <NA>
## 863    en                <NA>
## 864    en                <NA>
## 865    en                <NA>
## 866    en                <NA>
## 867    en                <NA>
## 868    en                <NA>
## 869    en                <NA>
## 870    en                <NA>
## 871    en                <NA>
## 872    en                <NA>
## 873    en                <NA>
## 874    en                <NA>
## 875    en                <NA>
## 876    en                <NA>
## 877    en                <NA>
## 878    en                <NA>
## 879    en                <NA>
## 880    en                <NA>
## 881    en                <NA>
## 882    en                <NA>
## 883    en                <NA>
## 884    en                <NA>
## 885    en 1243751869236817921
## 886    en                <NA>
## 887    en                <NA>
## 888    en                <NA>
## 889    en                <NA>
## 890    en                <NA>
## 891    en                <NA>
## 892    en                <NA>
## 893    en                <NA>
## 894    en                <NA>
## 895    en                <NA>
## 896    en                <NA>
## 897    en                <NA>
## 898    en                <NA>
## 899    en                <NA>
## 900    en                <NA>
## 901    en                <NA>
## 902    en                <NA>
## 903    en 1243177836560564224
## 904    en                <NA>
## 905    en                <NA>
## 906    en                <NA>
## 907    en                <NA>
## 908    en                <NA>
## 909    en                <NA>
## 910    en 1243258252416213003
## 911    en                <NA>
## 912    en 1243221243110686721
## 913    en                <NA>
## 914    en                <NA>
## 915    en                <NA>
## 916    en                <NA>
## 917    en                <NA>
## 918    en                <NA>
## 919    en                <NA>
## 920    en                <NA>
## 921    en                <NA>
## 922    en 1243536884564967431
## 923    en                <NA>
## 924    en                <NA>
## 925    en                <NA>
## 926    en                <NA>
## 927    en                <NA>
## 928    en                <NA>
## 929    en                <NA>
## 930    en                <NA>
## 931    en                <NA>
## 932    en                <NA>
## 933    en                <NA>
## 934    en                <NA>
## 935    en                <NA>
## 936    en                <NA>
## 937    en                <NA>
## 938    en                <NA>
## 939    en                <NA>
## 940    en                <NA>
## 941    en                <NA>
## 942    en                <NA>
## 943    en                <NA>
## 944    en 1242628347034767361
## 945    en                <NA>
## 946    en                <NA>
## 947    en                <NA>
## 948    en                <NA>
## 949    en                <NA>
## 950    en                <NA>
## 951    en                <NA>
## 952    en                <NA>
## 953    en                <NA>
## 954    en                <NA>
## 955    en                <NA>
## 956    en                <NA>
## 957    en                <NA>
## 958    en                <NA>
## 959    en                <NA>
## 960    en                <NA>
## 961    en                <NA>
## 962    en                <NA>
## 963    en                <NA>
## 964    en                <NA>
## 965    en                <NA>
## 966    en                <NA>
## 967    en                <NA>
## 968    en                <NA>
## 969    en                <NA>
## 970    en                <NA>
## 971    en                <NA>
## 972    en 1243656904850669570
## 973    en                <NA>
## 974    en                <NA>
## 975    en                <NA>
## 976    en                <NA>
## 977    en 1242992699516518401
## 978    en                <NA>
## 979    en                <NA>
## 980    en                <NA>
## 981    en                <NA>
## 982    en                <NA>
## 983    en                <NA>
## 984    en                <NA>
## 985    en                <NA>
## 986    en                <NA>
## 987    en                <NA>
## 988    en                <NA>
## 989    en                <NA>
## 990    en                <NA>
## 991    en 1243638126247063556
## 992    en                <NA>
## 993    en                <NA>
## 994    en                <NA>
## 995    en                <NA>
## 996    en                <NA>
## 997    en                <NA>
## 998    en                <NA>
## 999    en                <NA>
## 1000   en 1242758217777786880
## 1001   en                <NA>
## 1002   en                <NA>
## 1003   en                <NA>
## 1004   en                <NA>
## 1005   en                <NA>
## 1006   en                <NA>
## 1007   en 1243615037111119875
## 1008   en                <NA>
## 1009   en                <NA>
## 1010   en                <NA>
## 1011   en                <NA>
## 1012   en                <NA>
## 1013   en                <NA>
## 1014   en                <NA>
## 1015   en                <NA>
## 1016   en                <NA>
## 1017   en                <NA>
## 1018   en                <NA>
## 1019   en                <NA>
## 1020   en                <NA>
## 1021   en                <NA>
## 1022   en                <NA>
## 1023   en 1243560968761860100
## 1024   en                <NA>
## 1025   en                <NA>
## 1026   en                <NA>
## 1027   en 1243287171966083075
## 1028   en                <NA>
## 1029   en                <NA>
## 1030   en 1243556939369496576
## 1031   en                <NA>
## 1032   en                <NA>
## 1033   en                <NA>
## 1034   en 1243255545445773315
## 1035   en 1243534482742878209
## 1036   en                <NA>
## 1037   en 1243210360334815232
## 1038   en                <NA>
## 1039   en 1243416222051364874
## 1040   en 1243095935036436480
## 1041   en                <NA>
## 1042   en                <NA>
## 1043   en                <NA>
## 1044   en                <NA>
## 1045   en                <NA>
## 1046   en                <NA>
## 1047   en                <NA>
## 1048   en                <NA>
## 1049   en                <NA>
## 1050   en                <NA>
## 1051   en                <NA>
## 1052   en                <NA>
## 1053   en                <NA>
## 1054   en                <NA>
## 1055   en                <NA>
## 1056   en                <NA>
## 1057   en                <NA>
## 1058   en                <NA>
## 1059   en                <NA>
## 1060   en                <NA>
## 1061   en                <NA>
## 1062   en                <NA>
## 1063   en                <NA>
## 1064   en                <NA>
## 1065   en                <NA>
## 1066   en                <NA>
## 1067   en                <NA>
## 1068   en                <NA>
## 1069   en                <NA>
## 1070   en                <NA>
## 1071   en                <NA>
## 1072   en                <NA>
## 1073   en 1243353538123771905
## 1074   en                <NA>
## 1075   en 1243572588200280064
## 1076   en                <NA>
## 1077   en                <NA>
## 1078   en                <NA>
## 1079   en                <NA>
## 1080   en                <NA>
## 1081   en                <NA>
## 1082   en                <NA>
## 1083   en                <NA>
## 1084   en                <NA>
## 1085   en                <NA>
## 1086   en                <NA>
## 1087   en                <NA>
## 1088   en                <NA>
## 1089   en                <NA>
## 1090   en                <NA>
## 1091   en                <NA>
## 1092   en                <NA>
## 1093   en                <NA>
## 1094   en                <NA>
## 1095   en                <NA>
## 1096   en                <NA>
## 1097   en                <NA>
## 1098   en                <NA>
## 1099   en                <NA>
## 1100   en                <NA>
## 1101   en 1243246832224014336
## 1102   en                <NA>
## 1103   en                <NA>
## 1104   en                <NA>
## 1105   en                <NA>
## 1106   en                <NA>
## 1107   en                <NA>
## 1108   en                <NA>
## 1109   en                <NA>
## 1110   en                <NA>
## 1111   en                <NA>
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      quoted_text
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wow.\n\nThe German Embassy has just recommended that all German citizens who are currently in the United States return home as quickly as possible.\n\nThat... tells you a lot about how badly America is handling the pandemic. https://t.co/8EYbruGigB
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is reported the Governor will sign this tomorrow.  What you need to know about the many changes in Ohio education rules https://t.co/DrWU4ky4Zn
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @Jane610D RIP Kious Jordan Kelly, 48 years old.\n\nNYC Nurse Who Treated COVID-19 Patients Dies as One Hospital Reports 13 Deaths in 24 Hours #GetMePPE \n\nhttps://t.co/yCTZP60R6e https://t.co/RH9MGtU4Jx
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is why social distancing is so important\n\nhttps://t.co/thlBcssppa https://t.co/NVLiGLYxb0
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           One month ago today, Trump said "when you have 15 people, and the 15 within a couple of days is going to be down to close to zero, that’s a pretty good job we’ve done."\n\nAs of today, the US, with 81,782 confirmed cases, has more total cases than any country in the world.
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Another 181 people have died from coronavirus in the UK - taking death toll in the country to 759\n\nhttps://t.co/JqOTf72eRX https://t.co/iBnn3eUH4B
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thread - A NYC ER doctor describes the scene to me they are seeing: \n\n“Stretchers are packed in metal to metal, stacked 3 deep head to toe, with no space for doctors or nurses to walk to patients,” this physician said.
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A beautiful version of The Parting Glass from @Hozier with a dedication to all the people who have lost their lives to this virus, including the health worker who died today.\n\n#LateLate #StayAtHome https://t.co/RdQRPML64Y
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #<U+0627><U+0632>_<U+06A9><U+0631><U+0648><U+0646><U+0627>_<U+0622><U+0645><U+0648><U+062E><U+062A><U+0645>:\n<U+062E><U+0627><U+0646><U+0647> <U+0648> <U+062E><U+0627><U+0646><U+0648><U+0627><U+062F><U+0647> <U+0627><U+0645><U+0646> <U+062A><U+0631><U+06CC><U+0646> <U+062C><U+0627><U+06CC> <U+062F><U+0646><U+06CC><U+0627><U+0633><U+062A>.\n#<U+06A9><U+0631><U+0648><U+0646><U+0627>\n#<U+0642><U+0631><U+0646><U+0637><U+06CC><U+0646><U+0647> https://t.co/OOJVIwvhye
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <U+0631><U+06CC><U+06CC><U+0633> <U+0627><U+0646><U+062C><U+0645><U+0646> <U+062C><U+0627><U+06CC><U+06AF><U+0627><U+0647><U+200C><U+062F><U+0627><U+0631><U+0627><U+0646> <U+06A9><U+0644> <U+06A9><U+0634><U+0648><U+0631> <U+062F><U+0631> <U+06AF><U+0641><U+062A><U+200C><U+0648><U+06AF><U+0648> <U+0628><U+0627> #<U+0627><U+06CC><U+0644><U+0646><U+0627>:\n<U+062A><U+0635><U+0645><U+06CC><U+0645> <U+062C><U+0627><U+06CC><U+06AF><U+0627><U+0647><U+200C><U+062F><U+0627><U+0631><U+0627><U+0646> <U+0628><U+0631><U+0627><U+06CC> <U+062A><U+0639><U+0637><U+06CC><U+0644><U+06CC> <U+06F7><U+06F0> <U+062F><U+0631><U+0635><U+062F> <U+0633><U+06A9><U+0648><U+0647><U+0627><U+06CC> <U+0639><U+0631><U+0636><U+0647> <U+0633><U+0648><U+062E><U+062A> <U+062F><U+0631> <U+0642><U+0627><U+0644><U+0628> "<U+0637><U+0631><U+062D> <U+0646><U+062C><U+0627><U+062A>"\nhttps://t.co/3b4NvvZyFi https://t.co/yP7AquOPH2
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Watch: Dr. Birx rips media hysteria over a potential shortage of beds and ventilators: \n\n“There are still ICU beds remaining and there is still... over a thousand or two thousand ventilators that have not been utilized yet.” https://t.co/h7JakkhUO0
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Film Screening Day 11: THE LONGEST SUMMER by Gentiana Gashi.\nIn light of the current #COVID19 situation all over the world, DokuFest announces a film screening of a short film on a daily basis. #SweetAndShortQuarantine #rriNshpi \nhttps://t.co/PgejppepEB
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We face this great crisis, one that requires immediate monetary relief for human beings, and it's packed full of relief for wealthy corporations and billionaire slush funds, and Republican Senators were still balking because they fear it might be too generous for working people
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Drive-thru #COVID19 testing for symptomatic seniors age 65 and over will be available BY APPOINTMENT ONLY beginning tomorrow at @Marlins Park. DIAL 305-499-8767 to request an appointment. https://t.co/yVAmTeHoxq
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Darling #Prabhas contributes \n4 Crores to the government to fight against #coronavirus <U+0001F44F><U+0001F64F>\n\n3 crores to @PMOIndia Relief Fund &amp; 50 lakhs each to @TelanganaCMO Relief Fund and @AndhraPradeshCM Relief Fund <U+0001F64C>\n#StayHomeStaySafe\n#IndiaBattlesCoronavirus https://t.co/tPxwyK6ugQ
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Looking for ways to keep your child learning at home? MoneySense has a range of free fun activities and interactive games that introduce young people to basic money skills: https://t.co/A9Ki1bgbqM https://t.co/lVeAl4zdz5
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #China overseas arrival new #coronavirus infections today (official figures + Foreign Ministry has said 90% Chinese citizens): Total 54 - #Shanghai 17, #Guangdong 11, #Fujian 6, #Tianjin 5, #Zhejiang 4, #Beijing 3, #Liaoning 3, #InnerMongolia 2, #Jilin 2, #Shandong 1.
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Another proof that tells me that #covid19 is a bioweapon. The tests kits from China are not WORKING! So what exactly did Jack Ma Donate? These are end times. This Spanish Journalist tips us #IJCovid19 #StayAtHomeAndStaySafe \n#CoronavirusOutbreak \n#DrKemiOlunloyo https://t.co/lJt6LjGl9t
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Governor called in the National Guard, but still no stay-at-home order.\n\nIf we're calling in the Guard, the Governor should strongly consider calling for civilian volunteers.\n\nI don't understand why our government is making such half-assed decisions right now.\n\n#mogov https://t.co/BkGAkLGCw2
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now more than ever, mass incarceration is a matter of life or death. We're proud to announce our partnership with community bail funds to accelerate emergency #MassBailOut actions across the country. Help @bailfundnetwork #FreeThemAll and save lives. https://t.co/7hzIyY6Cfy https://t.co/XNRk9gWuny
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We are implementing the Quarantine Act to keep all Canadians safe. So let me be clear: If you do not go home and stay home for at least 14 days after coming back into Canada, you could face serious fines or prison time.
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I know all of Texas tired of these mfs <U+0001F624> https://t.co/44qZxuf2Q8
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I intubated my colleague today, a young, healthy ER doc like me. This is what I learned...
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LameStream Media is the dominant force in trying to get me to keep our Country closed as long as possible in the hope that it will be detrimental to my election success. The real people want to get back to work ASAP.  We will be stronger than ever before!
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thanks to @newscientist for including #eatliketheanimals on their list of best new books for 2020! \nhttps://t.co/nQcVC8ta86 https://t.co/Zb7URsAkZN
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Daily Check in.\nHow are you all feeling today after the news this week. #CYPStNN #peersupport
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In these testing times, it is most important that we use all our resources to help those who have none. Nobody should go hungry in the lockdown. Help us help them. Join the movement. Donate generously. #coronafreepakistan #bhaeehazirhai\n#pakistan #riseup #noworneverpakistan https://t.co/OhvH4kwSFp
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Charities have warned that self-isolation could lead to a rise in incidents of domestic violence.\n\n@SolaceWomensAid have launched an emergency campaign, after taking more calls from people concerned about being isolated with their abuser. https://t.co/eOuNCv2vWL
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A COVID-19 patient shares her horrendous story of how they're dealing with testing.\n\nThis should open eyes for all of us.\n\ncc: @SankarshanT\n@jamewils @roadscholarz\n @inquestioner @SidrahDP @RURALINDIA\n\nhttps://t.co/Vf91fjwadh
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Anxiety over the spread of COVID-19 in Texas breached the walls of an immigration detention center this week.\n\nIt led to what some described as a disturbance inside the complex that officers in the facility met with pepper spray. With @ProPublica. https://t.co/dEJ8cYrWOm
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               @NPR Congratulations to #Trump\n\n1300 Americans are dead\n85,000+ have Corona virus\n2000+ in critical condition\nNumbers are growing 20% each day\n\nAnd only 1 #FckingMoron who doesn't give 2 shits about his own country.\n\n#COVID19 #TrumpVirus https://t.co/QzWs7AFL7D
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A new study finds hydroxychloroquine, a malaria drug Trump touted as a virus treatment, is no more effective than conventional care https://t.co/BqSNGxNua4
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Excellent chart on how great it is if you can get on one of the govt's support schemes for employees &amp; the self-employed - and how bad it is if you can't https://t.co/h2qpCnGTwA
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         someone’s either slacking on anti-covid protocol or worrying too much.    <U+2014>- the former sounds more fitting.\n\n <U+275B>  やれやれ   . . \n\n  should i call Watari ?      <U+275C> https://t.co/1lstobkDyM
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Roche deelt samenstelling en receptuur van een vloeistof die nodig is voor coronatesten met de Nederlandse overheid. We begrijpen de enorme vraag naar COVID-19-tests en doen alles wat in ons vermogen ligt om patienten en zorgverleners te ondersteunen. https://t.co/saltFVVn56 https://t.co/SE6adDTL0i
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We were asked to deliver a PSA from the Australian govermnent https://t.co/LOEec3QuDX
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <U+0645><U+0627><U+0630><U+0627> <U+0641><U+0639><U+0644><U+062A> <U+062D><U+0643><U+0648><U+0645><U+0629> <U+0627><U+0644><U+0645><U+0645><U+0644><U+0643><U+0629> <U+0644><U+062D><U+0645><U+0627><U+064A><U+0629> <U+0634><U+0639><U+0628><U+0647><U+0627> <U+0645><U+0646> <U+0641><U+064A><U+0631><U+0648><U+0633> <U+0643><U+0648><U+0631><U+0648><U+0646><U+0627><U+061F>\n\nWhat has the government of the Kingdom of Saudi Arabia done to protect its people from Covid-19? https://t.co/BFhckuHt4M
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dozens of employees at Boston hospitals test positive for coronavirus https://t.co/ivTIdEVTez
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "At the beginning, we anticipate 300 a day, then 500 and we hope to reach 1,000" said Maria Mota, a well-known researcher in the area of <U+200B><U+200B>the malaria parasite, recipient of the 2013 Pessoa Prize. The results of a test, will take about two to three hours." https://t.co/5xiy9eilgi
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BREAKING: Italy confirms a record 919 new deaths due to coronavirus and 5,959 new cases, raising total to 9,134 dead and 86,498 cases https://t.co/47MXF0XUJ0
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       White House coronavirus coordinator DEBORAH BIRX says  "[Trump is] so attentive to the scientific literature and the details and the data”\n\nhttps://t.co/sRmLUvbQh9
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have noticed an increase in the number of anxiety and stress related cases we see, and understandably so in this very tough times. /1 https://t.co/bFRuxoIAMr
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Guys, who wants to help? Here are 2 ways you can help us ASAP:\n1. More Capital, we have drained our personal savings, taken loans, taken investments, need more money. \n2. Who's got a private jet? Please DM me &amp; huge thanks! #PPESupplies #entrepeneurs #COVID2019 \nWe need you too<U+2764><U+FE0F>
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RVH has taken 'emergency planning to a new level of preparedness' https://t.co/2jgRxyCiM2 https://t.co/jcQXhJHyfp
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 558  <U+0926><U+0947><U+0936> <U+0915><U+0947> <U+0938><U+093E><U+092E><U+0928><U+0947> <U+092C><U+0921><U+093C><U+093E> <U+0938><U+0902><U+0915><U+091F> <U+0939><U+0948>, <U+0910><U+0938><U+0947> <U+092E><U+0947><U+0902> <U+0939><U+092E><U+093E><U+0930><U+0940> <U+091B><U+094B><U+091F><U+0940> <U+0938><U+0940> <U+0915><U+094B><U+0936><U+093F><U+0936> <U+0915><U+0941><U+091B> <U+0932><U+094B><U+0917><U+094B><U+0902> <U+0915><U+094B> <U+092C><U+0921><U+093C><U+0940> <U+0930><U+093E><U+0939><U+0924> <U+0926><U+0947> <U+0938><U+0915><U+0924><U+0940> <U+0939><U+0948>. PM <U+0930><U+093F><U+0932><U+0940><U+092B><U+093C> <U+092B><U+0902><U+0921> <U+092E><U+0947><U+0902> <U+092E><U+0948><U+0902> <U+090F><U+0915> <U+0932><U+093E><U+0916> <U+0930><U+0941><U+092A><U+092F><U+0947> <U+0926><U+0947> <U+0930><U+0939><U+0940> <U+0939><U+0942><U+0901>. <U+0907><U+0938><U+0947> <U+092C><U+0924><U+093E><U+0928><U+0947> <U+0915><U+093E> <U+092E><U+0915><U+093C><U+0938><U+0926> <U+0938><U+093F><U+0930><U+094D><U+092B><U+093C> <U+092F><U+0947> <U+0939><U+0948> <U+0915><U+093F> <U+0906><U+092A> <U+092D><U+0940> <U+0905><U+0917><U+0930> <U+0938><U+0915><U+094D><U+0937><U+092E> <U+0939><U+0948><U+0902> <U+0924><U+094B> <U+091B><U+094B><U+091F><U+0940> <U+0938><U+0940> <U+0915><U+094B><U+0936><U+093F><U+0936> <U+091C><U+093C><U+0930><U+0942><U+0930> <U+0915><U+0930><U+0947><U+0902> <U+0001F64F>\n\n#coronavirusindia #PMReliefFund #GharBaithoZindaRaho https://t.co/u0cbE2HJaC
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 COVID-19: City of Vancouver to provide update on coronavirus impacts https://t.co/WFeWqKqYCB
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Govt say 97,000 coronovirus tests done. One of highest levels in Europe. Really....? A week ago Germany had already done 167,000 and Italy 206,000......
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ! Trump says he's told Vice President Mike Pence not to call the governors of Washington or Michigan.\n\n"They don't treat you right, I don't call."\n\nHe says Pence is a different type of person and will call anyway.
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the next pandemic occurs (and make no mistake, it will) and the federal government is unable to respond in a coordinated and effective fashion to protect the lives of US citizens and others, this decision by John Bolton and Donald Trump will be why. https://t.co/iMSzopSRaI
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 637                                                                                                       <U+0930><U+093E><U+0924> <U+0915><U+0947> 1 <U+092C><U+091C><U+0947> <U+0939><U+0948><U+0902>, 28 <U+092E><U+093E><U+0930><U+094D><U+091A>..<U+092F><U+0947> <U+0928><U+094B><U+090F><U+0921><U+093E> <U+0915><U+093E> <U+0938><U+0947><U+0915><U+094D><U+091F><U+0930> 12 <U+0939><U+0948>, 50-60 <U+0938><U+0902><U+0916><U+094D><U+092F><U+093E> <U+092E><U+0947><U+0902> <U+092F><U+0947> <U+0932><U+094B><U+0917> <U+0926><U+093F><U+0932><U+094D><U+0932><U+0940> <U+0938><U+0947> <U+092C><U+0926><U+093E><U+092F><U+0942><U+0901>, <U+090F><U+091F><U+093E>, <U+0915><U+093E><U+0938><U+0917><U+0902><U+091C> <U+091C><U+093E><U+0930><U+0939><U+0947> <U+0939><U+0948><U+0902>, <U+0915><U+0939><U+0924><U+0947> <U+0939><U+0948><U+0902> @ArvindKejriwal <U+0928><U+0947> <U+0916><U+093E><U+0928><U+0947> <U+0915><U+0940> <U+0935><U+094D><U+092F><U+0935><U+0938><U+094D><U+0925><U+093E> <U+0909><U+0928><U+0915><U+0947> <U+0932><U+093F><U+090F> <U+0915><U+0940> <U+0939><U+0948><U+0902> <U+091C><U+093F><U+0928><U+0915><U+0947> <U+092A><U+093E><U+0938> <U+0915><U+093E><U+0917><U+093C><U+091C><U+093C> <U+0939><U+0948>, <U+0907><U+0928><U+0915><U+0947> <U+0938><U+093E><U+0925> <U+091B><U+094B><U+091F><U+0947> <U+091B><U+094B><U+091F><U+0947> <U+092C><U+091A><U+094D><U+091A><U+0947> <U+0939><U+0948><U+0902>.. Plz Help @AnkitLal @AamAadmiParty @PrashantABP https://t.co/EYTNnu4g3O
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A new survey of frontline workers shows the stress of COVID19 has already lead to a significant increase in reports of domestic abuse: 45% identified reports of escalating violence. The sector needs urgent support. So what do we do? My @smh column: https://t.co/oYWLfouLsj
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bird lays off about 30% of workforce amid COVID-19 pandemic via Megan Rose Dickey https://t.co/kSUzW50hJf #ML #AI #Analytics #Automation https://t.co/ExHyVhGHJl
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    While #COVID19 has been stabilizing in China, the rest of the world is still grappling with unknowns. This is especially true in the U.S. In this short Q&amp;A, Teresa Kong, Portfolio Manager, provides her #marketinsights. #investing
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Geraldo Rivera claims "the epidemic of fear" is "the real epidemic in New York and the other hotspots." https://t.co/kKWAmphfDy
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Meet Minal Dakhave Bhosale, the R&amp;D Chief of Mylab. She led the team that designed India's first indigenous  #COVID19 testing kit. Delivered the kit  before delivering her baby. Who said women can't  do well in #STEM. Do read this story. Inspirational! https://t.co/VmGq0WeOuV https://t.co/cLI3ul1quw
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The country is on lockdown and the only place most of us will be going to relieve our cabin fever is the supermarket. Before you go, here are a few things to think about to keep yourself and others #COVID19 safe https://t.co/5uRMaFHXM5
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If you're puzzled that Trump's approval rating has actually climbed recently, remember that presidential approval generally surges in the early stages of a crisis.\n\nFor instance, over the first two months of the Iran hostage crisis, Jimmy Carter's approval jumped from 32% to 58%. https://t.co/LvAyMuFlRh
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The fact Prince Charles has been struck down with the deadly coronavirus highlights how the infectious disease "shows no sign of discriminating" says the Royal Editor at the Daily Mirror's @rjmyers.\n\nhttps://t.co/M9WfSiKDNg
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Statio Orbis #PrayTogether https://t.co/XPYdKmhbHg
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Exciting News: My dad and his team received FDA approval today for a "splitter" device that allows 4 patients to be on 1 ventilator!! This is going to be a game changer in this #COVID19 pandemic.\n\nhttps://t.co/SMcwkFs12z
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BREAKING: We’re launching a test that can detect COVID-19 in as little as 5 minutes<U+2014>bringing rapid testing to the frontlines. https://t.co/LqnRpPpqMM https://t.co/W8jyN2az8G
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <U+0001F37F>@GeorgeForeman vs @mrdavidhaye now: https://t.co/Lx1b5yF9Cu\n\n#ForemanHaye #StayHome <U+0001F3C6> #eAliTrophy
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a critically important graph.\nSouth Korea tested everyone while Italy only tested sick people. Look at ages 20-29. Young people are walking around spreading the virus even though they “feel fine”. This is why literally *everyone* needs to STAY HOME https://t.co/po5Obxi1nM
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               With the Battleship @USSIowa as a backdrop, #USNSMercy arrives at the @PortofLA this morning to serve as a referral hospital in Los Angeles for non-#COVID19 patients in support of the nation’s response efforts. #USNavyAlwaysThere https://t.co/QeUvhL6JV8
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yeah,my 16 y.o. daughter blames everyone, but herself for her problems too.\n\nUpdate: Kathy Griffin Released From Hospital with Abdominal Infection, Still Blames Trump After Hospital Refuses to Test Her For Coronavirus https://t.co/pOetOMjkRp via @gatewaypundit
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Report: 'Don't compel us to deploy Army', says @AjitPawarSpeaks on lockdown violations in Maharashtra. | #CoronaHarega \n\nhttps://t.co/7VEHKLOPPE
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     "[Our measures] MAY be working - I can't say they ARE, but they MAY be...The next two weeks are a critical time when we'll know if what we're doing is making enough of a difference," says Dr. Bonnie Henry, adding she lays awake at night worrying that curve may start to go back up
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   President Trump on the Republican National Convention in Charlotte, NC: “No way I’m canceling ... We are at the end of August. I think we’ll be in great shape long before then.”\n\nHe added he might have a rally in Milwaukee where the Democrats’ national convention is planned.
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hey @united  - I miss you! :( Hope to see you again soon!
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Where are Pak Universities? Everywhere in the world Universities are providing guideline to the Govts through leading reserach and policy papers,why Pak Unis are silent spectators? We need to up the game...Vc’s must initiate reserach..up the game guys #coronavirusinpakistan
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Happy birthday to my badass niece Lauren! One of those heroic nurses out there today on the front line! https://t.co/O2jnakp9wC
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have a new information hub to help individuals and organisations navigate data protection issues during the coronavirus outbreak. We will add new and relevant information to the hub as the pandemic continues. More here:  https://t.co/ktg49YjhK8 https://t.co/h5bEj3mrjX
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Please share this everywhere. Show it to your kids and your parents!!!!!\n\nPSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! - YouTube https://t.co/AcQDquHJHs
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           @Kerri8News @13DavidAlan @8NEWS Correction, you mean just as testing ramps up to reveal 604 cases in Virginia. That subtle distinction in your understanding will be helpful to you going forward.
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Want to see the true potential impact of ignoring social distancing? Through a partnership with @xmodesocial, we analyzed secondary locations of anonymized mobile devices that were active at a single Ft. Lauderdale beach during spring break. This is where they went across the US: https://t.co/3A3ePn9Vin
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         India show us how to deal with people who ignore the virus to go to Mosques. https://t.co/fHWDcm4HLc
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There’s Still No Deal in Wet’suwet’en But Pipeline Construction Is Ongoing - VICE https://t.co/slo5uLWq4D
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ibiribwa birabonetse Leta igobotse abaturage bayo: Umuceri,akawunga,makaroni, ifu y'igikoma,amasabune,bigeze ku mirenge imwe n'imwe ... ni byiza kabisa! https://t.co/m4D2WoJgDj
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <NA>
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               #StupidIsAsStupidDoes, Arizona man drinks poison and dies, media blames the president and @GovSisolak makes the blunder of the century risking the live of his constituents for political means. #Hydroxychloroquine  https://t.co/nAMv0I5CIO
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Some Wuhan residents who previously tested positive for coronavirus and then recovered are now testing positive for a second time.\n\nOfficials are trying to figure out what that means for diagnostic tools and efforts to stop the spread.\nhttps://t.co/Lc2QW2hiOQ
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We’ve just had our first online meetup! Good to “see” each other again. Lots of discussion around how to stay creative in these strange times. We’ll bring you some arty updates next week! #art #Leeds #Harrogate #Halifax #Yorkshire
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Anyone that still likes this guy should receive a mental health evaluation! According to Juan, Trump is putting out massive amounts of misinformation. The Dr’s and medical experts are all standing with Trump during the briefings. The briefings are NOT rallies. SHUT UP JUAN. <U+0001F621><U+0001F621> https://t.co/mYnLDtJ23T
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "[Trump is] so attentive to the scientific literature &amp; the details &amp; the data. I think his ability to analyze &amp; integrate data that comes out of his long history in business has really been a real benefit” -- this is shocking, hackish stuff from Dr. Birx. https://t.co/c2phsRYaJs
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Oh hey, it's just about time to log on for today's Radio Corona Zoom show with @CostaSamaras @DrJaneFlegal &amp; @GernotWagner. Hope you can join us! https://t.co/wzjszs2JZh
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NEWS!!! <U+0001F4E2><U+0001F4E2><U+0001F4E2>\n\nUpdated weekly paper on #socialprotection country responses to #coronavirus is *OUT*!!!\n\nWe moved from 45 to 84 countries! \nExamined 283 programs!\n90 #cashtransfers!\nAnd much more!\n\nDownload it <U+0001F447>and help us update it next week<U+0001F64F>:\nhttps://t.co/wCT5RM4FT2 https://t.co/ddMWLV2d4Y
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gov. Cuomo just said the stimulus package could've &amp; should've provided additional support for the NYS budget. \n\nHe is right.\n\nHere's the context not mentioned:\n\nMcConnell offered the FMAP language Cuomo asked for &amp; Schumer blocked it, resulting in the loss of SIX BILLION for NY.
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Plummeting attendance will force widespread closure of early learning centres. Without adequate Federal Government support, many may never reopen #auspol https://t.co/Y0cXpvHYEb
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            China strengthened measures to prevent #AfricanSwineFever Thursday, vowing to crack down on unlawful practices as illegal transportation of pigs among provinces recently came to light. The #ASF has killed the hog herd by almost 50%. https://t.co/LOIEDjhXuT
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "We see the problem with a healthcare system that's based on employers: You have to have a job to have healthcare. Well how does that work when you have mass unemployment, which is where the United States seems to be heading after today’s shocking figures?" -@mehdirhasan https://t.co/8qYTQ9KSyQ
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Never knew John Kerry had such a good sense of humor! Very impressed! https://t.co/vCVNMUeY2h
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Update<U+2757><U+FE0F>\n@okstate<U+00A0>just received the reagents to perform 10,000<U+00A0>#COVID19<U+00A0>tests! Thank you to<U+00A0>@burnshargis, Dr. Shrum &amp; the healthcare workers who are working to increase our state's testing kit capacity. These kits will help Oklahoma make data-driven decisions to<U+00A0>#FlattenTheCurve. https://t.co/qBqnC5EiLY
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <NA>
##        quoted_created_at                  quoted_source quoted_favorite_count
## 1                   <NA>                           <NA>                    NA
## 2                   <NA>                           <NA>                    NA
## 3                   <NA>                           <NA>                    NA
## 4    2020-03-27 00:45:00                Twitter Web App                  9971
## 5    2020-03-26 22:16:10             Twitter for iPhone                    14
## 6                   <NA>                           <NA>                    NA
## 7                   <NA>                           <NA>                    NA
## 8                   <NA>                           <NA>                    NA
## 9    2020-03-26 18:02:39             Twitter Web Client                    97
## 10                  <NA>                           <NA>                    NA
## 11                  <NA>                           <NA>                    NA
## 12                  <NA>                           <NA>                    NA
## 13                  <NA>                           <NA>                    NA
## 14                  <NA>                           <NA>                    NA
## 15                  <NA>                           <NA>                    NA
## 16                  <NA>                           <NA>                    NA
## 17                  <NA>                           <NA>                    NA
## 18                  <NA>                           <NA>                    NA
## 19                  <NA>                           <NA>                    NA
## 20                  <NA>                           <NA>                    NA
## 21                  <NA>                           <NA>                    NA
## 22                  <NA>                           <NA>                    NA
## 23                  <NA>                           <NA>                    NA
## 24                  <NA>                           <NA>                    NA
## 25                  <NA>                           <NA>                    NA
## 26                  <NA>                           <NA>                    NA
## 27                  <NA>                           <NA>                    NA
## 28                  <NA>                           <NA>                    NA
## 29                  <NA>                           <NA>                    NA
## 30                  <NA>                           <NA>                    NA
## 31                  <NA>                           <NA>                    NA
## 32                  <NA>                           <NA>                    NA
## 33                  <NA>                           <NA>                    NA
## 34                  <NA>                           <NA>                    NA
## 35                  <NA>                           <NA>                    NA
## 36   2020-03-28 02:15:00           Twitter Media Studio                   716
## 37                  <NA>                           <NA>                    NA
## 38                  <NA>                           <NA>                    NA
## 39                  <NA>                           <NA>                    NA
## 40                  <NA>                           <NA>                    NA
## 41                  <NA>                           <NA>                    NA
## 42                  <NA>                           <NA>                    NA
## 43   2020-03-26 23:11:19                      TweetDeck                 84806
## 44                  <NA>                           <NA>                    NA
## 45                  <NA>                           <NA>                    NA
## 46                  <NA>                           <NA>                    NA
## 47                  <NA>                           <NA>                    NA
## 48                  <NA>                           <NA>                    NA
## 49                  <NA>                           <NA>                    NA
## 50                  <NA>                           <NA>                    NA
## 51   2020-03-27 14:40:09                     SocialFlow                   452
## 52                  <NA>                           <NA>                    NA
## 53                  <NA>                           <NA>                    NA
## 54                  <NA>                           <NA>                    NA
## 55                  <NA>                           <NA>                    NA
## 56                  <NA>                           <NA>                    NA
## 57                  <NA>                           <NA>                    NA
## 58                  <NA>                           <NA>                    NA
## 59                  <NA>                           <NA>                    NA
## 60                  <NA>                           <NA>                    NA
## 61                  <NA>                           <NA>                    NA
## 62                  <NA>                           <NA>                    NA
## 63                  <NA>                           <NA>                    NA
## 64                  <NA>                           <NA>                    NA
## 65                  <NA>                           <NA>                    NA
## 66                  <NA>                           <NA>                    NA
## 67                  <NA>                           <NA>                    NA
## 68                  <NA>                           <NA>                    NA
## 69                  <NA>                           <NA>                    NA
## 70                  <NA>                           <NA>                    NA
## 71                  <NA>                           <NA>                    NA
## 72                  <NA>                           <NA>                    NA
## 73                  <NA>                           <NA>                    NA
## 74                  <NA>                           <NA>                    NA
## 75                  <NA>                           <NA>                    NA
## 76   2020-03-27 23:24:47             Twitter for iPhone                  4824
## 77   2020-03-27 23:56:47           Twitter Media Studio                 17076
## 78                  <NA>                           <NA>                    NA
## 79                  <NA>                           <NA>                    NA
## 80                  <NA>                           <NA>                    NA
## 81                  <NA>                           <NA>                    NA
## 82                  <NA>                           <NA>                    NA
## 83                  <NA>                           <NA>                    NA
## 84                  <NA>                           <NA>                    NA
## 85                  <NA>                           <NA>                    NA
## 86                  <NA>                           <NA>                    NA
## 87                  <NA>                           <NA>                    NA
## 88                  <NA>                           <NA>                    NA
## 89                  <NA>                           <NA>                    NA
## 90                  <NA>                           <NA>                    NA
## 91                  <NA>                           <NA>                    NA
## 92                  <NA>                           <NA>                    NA
## 93                  <NA>                           <NA>                    NA
## 94                  <NA>                           <NA>                    NA
## 95                  <NA>                           <NA>                    NA
## 96                  <NA>                           <NA>                    NA
## 97                  <NA>                           <NA>                    NA
## 98                  <NA>                           <NA>                    NA
## 99                  <NA>                           <NA>                    NA
## 100                 <NA>                           <NA>                    NA
## 101                 <NA>                           <NA>                    NA
## 102                 <NA>                           <NA>                    NA
## 103                 <NA>                           <NA>                    NA
## 104                 <NA>                           <NA>                    NA
## 105  2020-03-27 20:10:52                Twitter Web App                    26
## 106                 <NA>                           <NA>                    NA
## 107                 <NA>                           <NA>                    NA
## 108                 <NA>                           <NA>                    NA
## 109                 <NA>                           <NA>                    NA
## 110  2020-03-28 08:12:58            Twitter for Android                     6
## 111                 <NA>                           <NA>                    NA
## 112                 <NA>                           <NA>                    NA
## 113                 <NA>                           <NA>                    NA
## 114                 <NA>                           <NA>                    NA
## 115                 <NA>                           <NA>                    NA
## 116                 <NA>                           <NA>                    NA
## 117                 <NA>                           <NA>                    NA
## 118                 <NA>                           <NA>                    NA
## 119                 <NA>                           <NA>                    NA
## 120  2020-03-26 22:50:40             Twitter for iPhone                    74
## 121                 <NA>                           <NA>                    NA
## 122                 <NA>                           <NA>                    NA
## 123                 <NA>                           <NA>                    NA
## 124                 <NA>                           <NA>                    NA
## 125                 <NA>                           <NA>                    NA
## 126                 <NA>                           <NA>                    NA
## 127                 <NA>                           <NA>                    NA
## 128                 <NA>                           <NA>                    NA
## 129                 <NA>                           <NA>                    NA
## 130                 <NA>                           <NA>                    NA
## 131  2020-03-27 18:59:39                Twitter Web App                     3
## 132                 <NA>                           <NA>                    NA
## 133                 <NA>                           <NA>                    NA
## 134                 <NA>                           <NA>                    NA
## 135                 <NA>                           <NA>                    NA
## 136                 <NA>                           <NA>                    NA
## 137                 <NA>                           <NA>                    NA
## 138                 <NA>                           <NA>                    NA
## 139                 <NA>                           <NA>                    NA
## 140                 <NA>                           <NA>                    NA
## 141                 <NA>                           <NA>                    NA
## 142                 <NA>                           <NA>                    NA
## 143                 <NA>                           <NA>                    NA
## 144                 <NA>                           <NA>                    NA
## 145                 <NA>                           <NA>                    NA
## 146                 <NA>                           <NA>                    NA
## 147                 <NA>                           <NA>                    NA
## 148                 <NA>                           <NA>                    NA
## 149                 <NA>                           <NA>                    NA
## 150                 <NA>                           <NA>                    NA
## 151                 <NA>                           <NA>                    NA
## 152                 <NA>                           <NA>                    NA
## 153                 <NA>                           <NA>                    NA
## 154  2020-03-26 09:56:43                Twitter Web App                   905
## 155                 <NA>                           <NA>                    NA
## 156                 <NA>                           <NA>                    NA
## 157                 <NA>                           <NA>                    NA
## 158                 <NA>                           <NA>                    NA
## 159                 <NA>                           <NA>                    NA
## 160                 <NA>                           <NA>                    NA
## 161                 <NA>                           <NA>                    NA
## 162                 <NA>                           <NA>                    NA
## 163                 <NA>                           <NA>                    NA
## 164                 <NA>                           <NA>                    NA
## 165                 <NA>                           <NA>                    NA
## 166  2020-03-24 21:05:31                Twitter Web App                    48
## 167                 <NA>                           <NA>                    NA
## 168                 <NA>                           <NA>                    NA
## 169                 <NA>                           <NA>                    NA
## 170                 <NA>                           <NA>                    NA
## 171                 <NA>                           <NA>                    NA
## 172  2020-03-26 18:18:39            Twitter for Android                  5134
## 173  2020-03-25 14:40:51                Twitter Web App                    13
## 174                 <NA>                           <NA>                    NA
## 175                 <NA>                           <NA>                    NA
## 176                 <NA>                           <NA>                    NA
## 177                 <NA>                           <NA>                    NA
## 178                 <NA>                           <NA>                    NA
## 179                 <NA>                           <NA>                    NA
## 180                 <NA>                           <NA>                    NA
## 181                 <NA>                           <NA>                    NA
## 182                 <NA>                           <NA>                    NA
## 183                 <NA>                           <NA>                    NA
## 184  2020-03-28 01:17:53             Twitter for iPhone                    24
## 185                 <NA>                           <NA>                    NA
## 186  2020-03-28 01:52:07            Twitter for Android                   490
## 187                 <NA>                           <NA>                    NA
## 188                 <NA>                           <NA>                    NA
## 189                 <NA>                           <NA>                    NA
## 190                 <NA>                           <NA>                    NA
## 191                 <NA>                           <NA>                    NA
## 192                 <NA>                           <NA>                    NA
## 193                 <NA>                           <NA>                    NA
## 194                 <NA>                           <NA>                    NA
## 195                 <NA>                           <NA>                    NA
## 196                 <NA>                           <NA>                    NA
## 197                 <NA>                           <NA>                    NA
## 198                 <NA>                           <NA>                    NA
## 199                 <NA>                           <NA>                    NA
## 200                 <NA>                           <NA>                    NA
## 201                 <NA>                           <NA>                    NA
## 202                 <NA>                           <NA>                    NA
## 203                 <NA>                           <NA>                    NA
## 204                 <NA>                           <NA>                    NA
## 205                 <NA>                           <NA>                    NA
## 206                 <NA>                           <NA>                    NA
## 207                 <NA>                           <NA>                    NA
## 208                 <NA>                           <NA>                    NA
## 209                 <NA>                           <NA>                    NA
## 210                 <NA>                           <NA>                    NA
## 211                 <NA>                           <NA>                    NA
## 212                 <NA>                           <NA>                    NA
## 213                 <NA>                           <NA>                    NA
## 214                 <NA>                           <NA>                    NA
## 215                 <NA>                           <NA>                    NA
## 216                 <NA>                           <NA>                    NA
## 217                 <NA>                           <NA>                    NA
## 218                 <NA>                           <NA>                    NA
## 219                 <NA>                           <NA>                    NA
## 220                 <NA>                           <NA>                    NA
## 221                 <NA>                           <NA>                    NA
## 222                 <NA>                           <NA>                    NA
## 223                 <NA>                           <NA>                    NA
## 224                 <NA>                           <NA>                    NA
## 225  2020-03-27 15:05:17                Twitter Web App                    37
## 226                 <NA>                           <NA>                    NA
## 227                 <NA>                           <NA>                    NA
## 228                 <NA>                           <NA>                    NA
## 229                 <NA>                           <NA>                    NA
## 230                 <NA>                           <NA>                    NA
## 231  2020-03-27 14:07:28                Twitter Web App                    33
## 232                 <NA>                           <NA>                    NA
## 233                 <NA>                           <NA>                    NA
## 234  2020-03-26 21:07:23             Twitter for iPhone                 33209
## 235                 <NA>                           <NA>                    NA
## 236                 <NA>                           <NA>                    NA
## 237                 <NA>                           <NA>                    NA
## 238                 <NA>                           <NA>                    NA
## 239                 <NA>                           <NA>                    NA
## 240                 <NA>                           <NA>                    NA
## 241                 <NA>                           <NA>                    NA
## 242                 <NA>                           <NA>                    NA
## 243  2020-03-26 05:10:59             Twitter for iPhone                 23810
## 244                 <NA>                           <NA>                    NA
## 245                 <NA>                           <NA>                    NA
## 246                 <NA>                           <NA>                    NA
## 247                 <NA>                           <NA>                    NA
## 248                 <NA>                           <NA>                    NA
## 249                 <NA>                           <NA>                    NA
## 250                 <NA>                           <NA>                    NA
## 251                 <NA>                           <NA>                    NA
## 252                 <NA>                           <NA>                    NA
## 253                 <NA>                           <NA>                    NA
## 254                 <NA>                           <NA>                    NA
## 255                 <NA>                           <NA>                    NA
## 256  2020-03-28 00:04:49             Twitter for iPhone                 90832
## 257                 <NA>                           <NA>                    NA
## 258  2020-03-25 20:04:56             Twitter for iPhone                222568
## 259                 <NA>                           <NA>                    NA
## 260  2020-03-25 05:56:25                Twitter Web App                    14
## 261                 <NA>                           <NA>                    NA
## 262                 <NA>                           <NA>                    NA
## 263  2020-03-27 14:48:05             Twitter for iPhone                     0
## 264                 <NA>                           <NA>                    NA
## 265                 <NA>                           <NA>                    NA
## 266                 <NA>                           <NA>                    NA
## 267                 <NA>                           <NA>                    NA
## 268                 <NA>                           <NA>                    NA
## 269                 <NA>                           <NA>                    NA
## 270  2020-03-27 16:05:44            Twitter for Android                  1375
## 271                 <NA>                           <NA>                    NA
## 272                 <NA>                           <NA>                    NA
## 273                 <NA>                           <NA>                    NA
## 274                 <NA>                           <NA>                    NA
## 275                 <NA>                           <NA>                    NA
## 276                 <NA>                           <NA>                    NA
## 277                 <NA>                           <NA>                    NA
## 278  2020-03-25 19:46:28 Twitter Media Studio - LiveCut                    42
## 279  2020-03-27 16:45:59            Twitter for Android                   339
## 280                 <NA>                           <NA>                    NA
## 281                 <NA>                           <NA>                    NA
## 282  2020-03-26 14:31:01                  Sprout Social                    45
## 283                 <NA>                           <NA>                    NA
## 284                 <NA>                           <NA>                    NA
## 285                 <NA>                           <NA>                    NA
## 286                 <NA>                           <NA>                    NA
## 287  2020-03-27 01:15:01            Twitter for Android                    13
## 288                 <NA>                           <NA>                    NA
## 289                 <NA>                           <NA>                    NA
## 290                 <NA>                           <NA>                    NA
## 291                 <NA>                           <NA>                    NA
## 292                 <NA>                           <NA>                    NA
## 293                 <NA>                           <NA>                    NA
## 294                 <NA>                           <NA>                    NA
## 295                 <NA>                           <NA>                    NA
## 296                 <NA>                           <NA>                    NA
## 297                 <NA>                           <NA>                    NA
## 298                 <NA>                           <NA>                    NA
## 299  2020-03-26 11:14:06                     SocialFlow                   680
## 300                 <NA>                           <NA>                    NA
## 301                 <NA>                           <NA>                    NA
## 302                 <NA>                           <NA>                    NA
## 303                 <NA>                           <NA>                    NA
## 304                 <NA>                           <NA>                    NA
## 305                 <NA>                           <NA>                    NA
## 306                 <NA>                           <NA>                    NA
## 307                 <NA>                           <NA>                    NA
## 308                 <NA>                           <NA>                    NA
## 309                 <NA>                           <NA>                    NA
## 310                 <NA>                           <NA>                    NA
## 311                 <NA>                           <NA>                    NA
## 312                 <NA>                           <NA>                    NA
## 313                 <NA>                           <NA>                    NA
## 314                 <NA>                           <NA>                    NA
## 315                 <NA>                           <NA>                    NA
## 316                 <NA>                           <NA>                    NA
## 317                 <NA>                           <NA>                    NA
## 318                 <NA>                           <NA>                    NA
## 319                 <NA>                           <NA>                    NA
## 320                 <NA>                           <NA>                    NA
## 321                 <NA>                           <NA>                    NA
## 322                 <NA>                           <NA>                    NA
## 323  2020-03-27 18:08:32                Twitter Web App                     4
## 324                 <NA>                           <NA>                    NA
## 325                 <NA>                           <NA>                    NA
## 326                 <NA>                           <NA>                    NA
## 327                 <NA>                           <NA>                    NA
## 328                 <NA>                           <NA>                    NA
## 329                 <NA>                           <NA>                    NA
## 330                 <NA>                           <NA>                    NA
## 331                 <NA>                           <NA>                    NA
## 332                 <NA>                           <NA>                    NA
## 333  2020-03-27 17:11:11             Twitter for iPhone                     0
## 334                 <NA>                           <NA>                    NA
## 335                 <NA>                           <NA>                    NA
## 336                 <NA>                           <NA>                    NA
## 337                 <NA>                           <NA>                    NA
## 338                 <NA>                           <NA>                    NA
## 339                 <NA>                           <NA>                    NA
## 340                 <NA>                           <NA>                    NA
## 341                 <NA>                           <NA>                    NA
## 342                 <NA>                           <NA>                    NA
## 343                 <NA>                           <NA>                    NA
## 344                 <NA>                           <NA>                    NA
## 345                 <NA>                           <NA>                    NA
## 346                 <NA>                           <NA>                    NA
## 347                 <NA>                           <NA>                    NA
## 348                 <NA>                           <NA>                    NA
## 349                 <NA>                           <NA>                    NA
## 350                 <NA>                           <NA>                    NA
## 351                 <NA>                           <NA>                    NA
## 352                 <NA>                           <NA>                    NA
## 353                 <NA>                           <NA>                    NA
## 354                 <NA>                           <NA>                    NA
## 355                 <NA>                           <NA>                    NA
## 356                 <NA>                           <NA>                    NA
## 357                 <NA>                           <NA>                    NA
## 358                 <NA>                           <NA>                    NA
## 359                 <NA>                           <NA>                    NA
## 360                 <NA>                           <NA>                    NA
## 361                 <NA>                           <NA>                    NA
## 362                 <NA>                           <NA>                    NA
## 363                 <NA>                           <NA>                    NA
## 364                 <NA>                           <NA>                    NA
## 365                 <NA>                           <NA>                    NA
## 366                 <NA>                           <NA>                    NA
## 367                 <NA>                           <NA>                    NA
## 368                 <NA>                           <NA>                    NA
## 369                 <NA>                           <NA>                    NA
## 370                 <NA>                           <NA>                    NA
## 371                 <NA>                           <NA>                    NA
## 372                 <NA>                           <NA>                    NA
## 373                 <NA>                           <NA>                    NA
## 374                 <NA>                           <NA>                    NA
## 375  2020-03-27 16:45:36                         Coosto                    42
## 376                 <NA>                           <NA>                    NA
## 377                 <NA>                           <NA>                    NA
## 378                 <NA>                           <NA>                    NA
## 379                 <NA>                           <NA>                    NA
## 380                 <NA>                           <NA>                    NA
## 381                 <NA>                           <NA>                    NA
## 382                 <NA>                           <NA>                    NA
## 383                 <NA>                           <NA>                    NA
## 384                 <NA>                           <NA>                    NA
## 385                 <NA>                           <NA>                    NA
## 386                 <NA>                           <NA>                    NA
## 387  2020-03-25 03:37:48             Twitter for iPhone                  5490
## 388                 <NA>                           <NA>                    NA
## 389                 <NA>                           <NA>                    NA
## 390                 <NA>                           <NA>                    NA
## 391                 <NA>                           <NA>                    NA
## 392                 <NA>                           <NA>                    NA
## 393                 <NA>                           <NA>                    NA
## 394                 <NA>                           <NA>                    NA
## 395                 <NA>                           <NA>                    NA
## 396                 <NA>                           <NA>                    NA
## 397                 <NA>                           <NA>                    NA
## 398                 <NA>                           <NA>                    NA
## 399                 <NA>                           <NA>                    NA
## 400                 <NA>                           <NA>                    NA
## 401                 <NA>                           <NA>                    NA
## 402                 <NA>                           <NA>                    NA
## 403                 <NA>                           <NA>                    NA
## 404                 <NA>                           <NA>                    NA
## 405                 <NA>                           <NA>                    NA
## 406                 <NA>                           <NA>                    NA
## 407                 <NA>                           <NA>                    NA
## 408                 <NA>                           <NA>                    NA
## 409                 <NA>                           <NA>                    NA
## 410                 <NA>                           <NA>                    NA
## 411                 <NA>                           <NA>                    NA
## 412                 <NA>                           <NA>                    NA
## 413                 <NA>                           <NA>                    NA
## 414                 <NA>                           <NA>                    NA
## 415                 <NA>                           <NA>                    NA
## 416                 <NA>                           <NA>                    NA
## 417                 <NA>                           <NA>                    NA
## 418                 <NA>                           <NA>                    NA
## 419                 <NA>                           <NA>                    NA
## 420                 <NA>                           <NA>                    NA
## 421                 <NA>                           <NA>                    NA
## 422                 <NA>                           <NA>                    NA
## 423                 <NA>                           <NA>                    NA
## 424                 <NA>                           <NA>                    NA
## 425                 <NA>                           <NA>                    NA
## 426                 <NA>                           <NA>                    NA
## 427                 <NA>                           <NA>                    NA
## 428                 <NA>                           <NA>                    NA
## 429                 <NA>                           <NA>                    NA
## 430                 <NA>                           <NA>                    NA
## 431                 <NA>                           <NA>                    NA
## 432                 <NA>                           <NA>                    NA
## 433                 <NA>                           <NA>                    NA
## 434                 <NA>                           <NA>                    NA
## 435                 <NA>                           <NA>                    NA
## 436                 <NA>                           <NA>                    NA
## 437                 <NA>                           <NA>                    NA
## 438  2020-03-28 01:20:05                    Twitter Ads                  3982
## 439                 <NA>                           <NA>                    NA
## 440                 <NA>                           <NA>                    NA
## 441                 <NA>                           <NA>                    NA
## 442                 <NA>                           <NA>                    NA
## 443                 <NA>                           <NA>                    NA
## 444                 <NA>                           <NA>                    NA
## 445                 <NA>                           <NA>                    NA
## 446                 <NA>                           <NA>                    NA
## 447                 <NA>                           <NA>                    NA
## 448                 <NA>                           <NA>                    NA
## 449                 <NA>                           <NA>                    NA
## 450                 <NA>                           <NA>                    NA
## 451  2020-03-26 04:03:05                 SocialNewsDesk                    39
## 452                 <NA>                           <NA>                    NA
## 453                 <NA>                           <NA>                    NA
## 454                 <NA>                           <NA>                    NA
## 455                 <NA>                           <NA>                    NA
## 456                 <NA>                           <NA>                    NA
## 457                 <NA>                           <NA>                    NA
## 458                 <NA>                           <NA>                    NA
## 459                 <NA>                           <NA>                    NA
## 460                 <NA>                           <NA>                    NA
## 461                 <NA>                           <NA>                    NA
## 462                 <NA>                           <NA>                    NA
## 463                 <NA>                           <NA>                    NA
## 464                 <NA>                           <NA>                    NA
## 465                 <NA>                           <NA>                    NA
## 466                 <NA>                           <NA>                    NA
## 467                 <NA>                           <NA>                    NA
## 468                 <NA>                           <NA>                    NA
## 469                 <NA>                           <NA>                    NA
## 470                 <NA>                           <NA>                    NA
## 471                 <NA>                           <NA>                    NA
## 472                 <NA>                           <NA>                    NA
## 473                 <NA>                           <NA>                    NA
## 474                 <NA>                           <NA>                    NA
## 475                 <NA>                           <NA>                    NA
## 476                 <NA>                           <NA>                    NA
## 477                 <NA>                           <NA>                    NA
## 478                 <NA>                           <NA>                    NA
## 479                 <NA>                           <NA>                    NA
## 480                 <NA>                           <NA>                    NA
## 481                 <NA>                           <NA>                    NA
## 482                 <NA>                           <NA>                    NA
## 483                 <NA>                           <NA>                    NA
## 484                 <NA>                           <NA>                    NA
## 485                 <NA>                           <NA>                    NA
## 486                 <NA>                           <NA>                    NA
## 487                 <NA>                           <NA>                    NA
## 488                 <NA>                           <NA>                    NA
## 489                 <NA>                           <NA>                    NA
## 490                 <NA>                           <NA>                    NA
## 491                 <NA>                           <NA>                    NA
## 492                 <NA>                           <NA>                    NA
## 493                 <NA>                           <NA>                    NA
## 494                 <NA>                           <NA>                    NA
## 495                 <NA>                           <NA>                    NA
## 496  2020-03-24 14:19:48            Twitter for Android                     8
## 497                 <NA>                           <NA>                    NA
## 498                 <NA>                           <NA>                    NA
## 499                 <NA>                           <NA>                    NA
## 500                 <NA>                           <NA>                    NA
## 501                 <NA>                           <NA>                    NA
## 502                 <NA>                           <NA>                    NA
## 503                 <NA>                           <NA>                    NA
## 504                 <NA>                           <NA>                    NA
## 505                 <NA>                           <NA>                    NA
## 506                 <NA>                           <NA>                    NA
## 507                 <NA>                           <NA>                    NA
## 508                 <NA>                           <NA>                    NA
## 509                 <NA>                           <NA>                    NA
## 510                 <NA>                           <NA>                    NA
## 511                 <NA>                           <NA>                    NA
## 512                 <NA>                           <NA>                    NA
## 513  2020-03-27 17:07:57                      TweetDeck                  2513
## 514                 <NA>                           <NA>                    NA
## 515                 <NA>                           <NA>                    NA
## 516                 <NA>                           <NA>                    NA
## 517                 <NA>                           <NA>                    NA
## 518                 <NA>                           <NA>                    NA
## 519                 <NA>                           <NA>                    NA
## 520                 <NA>                           <NA>                    NA
## 521                 <NA>                           <NA>                    NA
## 522                 <NA>                           <NA>                    NA
## 523                 <NA>                           <NA>                    NA
## 524  2020-03-27 17:07:08                Twitter Web App                   113
## 525                 <NA>                           <NA>                    NA
## 526                 <NA>                           <NA>                    NA
## 527                 <NA>                           <NA>                    NA
## 528  2020-03-26 18:35:40             Twitter for iPhone                   187
## 529                 <NA>                           <NA>                    NA
## 530                 <NA>                           <NA>                    NA
## 531                 <NA>                           <NA>                    NA
## 532  2020-03-27 05:04:14            Twitter for Android                     4
## 533                 <NA>                           <NA>                    NA
## 534                 <NA>                           <NA>                    NA
## 535                 <NA>                           <NA>                    NA
## 536                 <NA>                           <NA>                    NA
## 537                 <NA>                           <NA>                    NA
## 538                 <NA>                           <NA>                    NA
## 539                 <NA>                           <NA>                    NA
## 540                 <NA>                           <NA>                    NA
## 541                 <NA>                           <NA>                    NA
## 542                 <NA>                           <NA>                    NA
## 543                 <NA>                           <NA>                    NA
## 544                 <NA>                           <NA>                    NA
## 545                 <NA>                           <NA>                    NA
## 546                 <NA>                           <NA>                    NA
## 547                 <NA>                           <NA>                    NA
## 548                 <NA>                           <NA>                    NA
## 549                 <NA>                           <NA>                    NA
## 550                 <NA>                           <NA>                    NA
## 551                 <NA>                           <NA>                    NA
## 552                 <NA>                           <NA>                    NA
## 553  2020-03-27 17:19:35                        dlvr.it                     1
## 554                 <NA>                           <NA>                    NA
## 555                 <NA>                           <NA>                    NA
## 556                 <NA>                           <NA>                    NA
## 557                 <NA>                           <NA>                    NA
## 558  2020-03-26 12:50:28             Twitter for iPhone                 53157
## 559                 <NA>                           <NA>                    NA
## 560                 <NA>                           <NA>                    NA
## 561                 <NA>                           <NA>                    NA
## 562                 <NA>                           <NA>                    NA
## 563                 <NA>                           <NA>                    NA
## 564                 <NA>                           <NA>                    NA
## 565                 <NA>                           <NA>                    NA
## 566                 <NA>                           <NA>                    NA
## 567                 <NA>                           <NA>                    NA
## 568                 <NA>                           <NA>                    NA
## 569                 <NA>                           <NA>                    NA
## 570                 <NA>                           <NA>                    NA
## 571                 <NA>                           <NA>                    NA
## 572                 <NA>                           <NA>                    NA
## 573                 <NA>                           <NA>                    NA
## 574                 <NA>                           <NA>                    NA
## 575                 <NA>                           <NA>                    NA
## 576                 <NA>                           <NA>                    NA
## 577                 <NA>                           <NA>                    NA
## 578                 <NA>                           <NA>                    NA
## 579                 <NA>                           <NA>                    NA
## 580                 <NA>                           <NA>                    NA
## 581                 <NA>                           <NA>                    NA
## 582                 <NA>                           <NA>                    NA
## 583                 <NA>                           <NA>                    NA
## 584                 <NA>                           <NA>                    NA
## 585                 <NA>                           <NA>                    NA
## 586                 <NA>                           <NA>                    NA
## 587                 <NA>                           <NA>                    NA
## 588  2020-03-26 19:16:37                 Echobox Social                     3
## 589                 <NA>                           <NA>                    NA
## 590                 <NA>                           <NA>                    NA
## 591                 <NA>                           <NA>                    NA
## 592                 <NA>                           <NA>                    NA
## 593                 <NA>                           <NA>                    NA
## 594                 <NA>                           <NA>                    NA
## 595                 <NA>                           <NA>                    NA
## 596                 <NA>                           <NA>                    NA
## 597                 <NA>                           <NA>                    NA
## 598                 <NA>                           <NA>                    NA
## 599                 <NA>                           <NA>                    NA
## 600                 <NA>                           <NA>                    NA
## 601                 <NA>                           <NA>                    NA
## 602                 <NA>                           <NA>                    NA
## 603  2020-03-26 08:27:23                      TweetDeck                  6265
## 604                 <NA>                           <NA>                    NA
## 605                 <NA>                           <NA>                    NA
## 606                 <NA>                           <NA>                    NA
## 607                 <NA>                           <NA>                    NA
## 608                 <NA>                           <NA>                    NA
## 609                 <NA>                           <NA>                    NA
## 610                 <NA>                           <NA>                    NA
## 611                 <NA>                           <NA>                    NA
## 612                 <NA>                           <NA>                    NA
## 613                 <NA>                           <NA>                    NA
## 614                 <NA>                           <NA>                    NA
## 615                 <NA>                           <NA>                    NA
## 616  2020-03-27 22:24:05             Twitter Web Client                  5800
## 617  2018-05-10 21:50:23             Twitter Web Client                 55631
## 618                 <NA>                           <NA>                    NA
## 619                 <NA>                           <NA>                    NA
## 620                 <NA>                           <NA>                    NA
## 621                 <NA>                           <NA>                    NA
## 622                 <NA>                           <NA>                    NA
## 623                 <NA>                           <NA>                    NA
## 624                 <NA>                           <NA>                    NA
## 625                 <NA>                           <NA>                    NA
## 626                 <NA>                           <NA>                    NA
## 627                 <NA>                           <NA>                    NA
## 628                 <NA>                           <NA>                    NA
## 629                 <NA>                           <NA>                    NA
## 630                 <NA>                           <NA>                    NA
## 631                 <NA>                           <NA>                    NA
## 632                 <NA>                           <NA>                    NA
## 633                 <NA>                           <NA>                    NA
## 634                 <NA>                           <NA>                    NA
## 635                 <NA>                           <NA>                    NA
## 636                 <NA>                           <NA>                    NA
## 637  2020-03-27 19:40:48             Twitter for iPhone                  1945
## 638  2020-03-27 21:40:51             Twitter for iPhone                   431
## 639                 <NA>                           <NA>                    NA
## 640                 <NA>                           <NA>                    NA
## 641  2020-03-28 07:10:21                          IFTTT                     0
## 642                 <NA>                           <NA>                    NA
## 643                 <NA>                           <NA>                    NA
## 644                 <NA>                           <NA>                    NA
## 645                 <NA>                           <NA>                    NA
## 646                 <NA>                           <NA>                    NA
## 647                 <NA>                           <NA>                    NA
## 648                 <NA>                           <NA>                    NA
## 649                 <NA>                           <NA>                    NA
## 650                 <NA>                           <NA>                    NA
## 651                 <NA>                           <NA>                    NA
## 652                 <NA>                           <NA>                    NA
## 653                 <NA>                           <NA>                    NA
## 654                 <NA>                           <NA>                    NA
## 655                 <NA>                           <NA>                    NA
## 656                 <NA>                           <NA>                    NA
## 657                 <NA>                           <NA>                    NA
## 658                 <NA>                           <NA>                    NA
## 659                 <NA>                           <NA>                    NA
## 660                 <NA>                           <NA>                    NA
## 661                 <NA>                           <NA>                    NA
## 662                 <NA>                           <NA>                    NA
## 663                 <NA>                           <NA>                    NA
## 664                 <NA>                           <NA>                    NA
## 665  2020-03-17 18:10:20        Twitter for Advertisers                    80
## 666                 <NA>                           <NA>                    NA
## 667                 <NA>                           <NA>                    NA
## 668                 <NA>                           <NA>                    NA
## 669                 <NA>                           <NA>                    NA
## 670                 <NA>                           <NA>                    NA
## 671                 <NA>                           <NA>                    NA
## 672                 <NA>                           <NA>                    NA
## 673                 <NA>                           <NA>                    NA
## 674                 <NA>                           <NA>                    NA
## 675                 <NA>                           <NA>                    NA
## 676                 <NA>                           <NA>                    NA
## 677  2020-03-27 12:21:44                Twitter Web App                   234
## 678                 <NA>                           <NA>                    NA
## 679                 <NA>                           <NA>                    NA
## 680                 <NA>                           <NA>                    NA
## 681  2020-03-28 03:39:22            Twitter for Android                  4850
## 682                 <NA>                           <NA>                    NA
## 683                 <NA>                           <NA>                    NA
## 684                 <NA>                           <NA>                    NA
## 685                 <NA>                           <NA>                    NA
## 686                 <NA>                           <NA>                    NA
## 687                 <NA>                           <NA>                    NA
## 688                 <NA>                           <NA>                    NA
## 689                 <NA>                           <NA>                    NA
## 690                 <NA>                           <NA>                    NA
## 691                 <NA>                           <NA>                    NA
## 692                 <NA>                           <NA>                    NA
## 693                 <NA>                           <NA>                    NA
## 694                 <NA>                           <NA>                    NA
## 695                 <NA>                           <NA>                    NA
## 696                 <NA>                           <NA>                    NA
## 697                 <NA>                           <NA>                    NA
## 698                 <NA>                           <NA>                    NA
## 699                 <NA>                           <NA>                    NA
## 700                 <NA>                           <NA>                    NA
## 701                 <NA>                           <NA>                    NA
## 702                 <NA>                           <NA>                    NA
## 703                 <NA>                           <NA>                    NA
## 704                 <NA>                           <NA>                    NA
## 705                 <NA>                           <NA>                    NA
## 706                 <NA>                           <NA>                    NA
## 707                 <NA>                           <NA>                    NA
## 708  2020-03-27 18:41:39             Twitter for iPhone                    97
## 709                 <NA>                           <NA>                    NA
## 710  2020-03-27 12:25:58                Twitter Web App                  3177
## 711                 <NA>                           <NA>                    NA
## 712                 <NA>                           <NA>                    NA
## 713                 <NA>                           <NA>                    NA
## 714                 <NA>                           <NA>                    NA
## 715                 <NA>                           <NA>                    NA
## 716                 <NA>                           <NA>                    NA
## 717                 <NA>                           <NA>                    NA
## 718                 <NA>                           <NA>                    NA
## 719                 <NA>                           <NA>                    NA
## 720                 <NA>                           <NA>                    NA
## 721                 <NA>                           <NA>                    NA
## 722                 <NA>                           <NA>                    NA
## 723                 <NA>                           <NA>                    NA
## 724                 <NA>                           <NA>                    NA
## 725                 <NA>                           <NA>                    NA
## 726                 <NA>                           <NA>                    NA
## 727                 <NA>                           <NA>                    NA
## 728                 <NA>                           <NA>                    NA
## 729                 <NA>                           <NA>                    NA
## 730                 <NA>                           <NA>                    NA
## 731                 <NA>                           <NA>                    NA
## 732                 <NA>                           <NA>                    NA
## 733                 <NA>                           <NA>                    NA
## 734                 <NA>                           <NA>                    NA
## 735                 <NA>                           <NA>                    NA
## 736                 <NA>                           <NA>                    NA
## 737                 <NA>                           <NA>                    NA
## 738                 <NA>                           <NA>                    NA
## 739                 <NA>                           <NA>                    NA
## 740                 <NA>                           <NA>                    NA
## 741                 <NA>                           <NA>                    NA
## 742                 <NA>                           <NA>                    NA
## 743                 <NA>                           <NA>                    NA
## 744                 <NA>                           <NA>                    NA
## 745                 <NA>                           <NA>                    NA
## 746                 <NA>                           <NA>                    NA
## 747                 <NA>                           <NA>                    NA
## 748                 <NA>                           <NA>                    NA
## 749                 <NA>                           <NA>                    NA
## 750                 <NA>                           <NA>                    NA
## 751                 <NA>                           <NA>                    NA
## 752                 <NA>                           <NA>                    NA
## 753                 <NA>                           <NA>                    NA
## 754                 <NA>                           <NA>                    NA
## 755                 <NA>                           <NA>                    NA
## 756                 <NA>                           <NA>                    NA
## 757                 <NA>                           <NA>                    NA
## 758                 <NA>                           <NA>                    NA
## 759                 <NA>                           <NA>                    NA
## 760                 <NA>                           <NA>                    NA
## 761                 <NA>                           <NA>                    NA
## 762                 <NA>                           <NA>                    NA
## 763                 <NA>                           <NA>                    NA
## 764                 <NA>                           <NA>                    NA
## 765                 <NA>                           <NA>                    NA
## 766                 <NA>                           <NA>                    NA
## 767                 <NA>                           <NA>                    NA
## 768                 <NA>                           <NA>                    NA
## 769  2020-03-26 08:51:45                      TweetDeck                    14
## 770                 <NA>                           <NA>                    NA
## 771                 <NA>                           <NA>                    NA
## 772                 <NA>                           <NA>                    NA
## 773                 <NA>                           <NA>                    NA
## 774                 <NA>                           <NA>                    NA
## 775                 <NA>                           <NA>                    NA
## 776  2020-03-27 13:00:00                      TweetDeck                  8897
## 777  2020-03-26 02:25:50                Twitter Web App                 31040
## 778                 <NA>                           <NA>                    NA
## 779                 <NA>                           <NA>                    NA
## 780                 <NA>                           <NA>                    NA
## 781                 <NA>                           <NA>                    NA
## 782                 <NA>                           <NA>                    NA
## 783                 <NA>                           <NA>                    NA
## 784                 <NA>                           <NA>                    NA
## 785                 <NA>                           <NA>                    NA
## 786                 <NA>                           <NA>                    NA
## 787  2020-03-27 23:23:51                Twitter Web App                 55945
## 788                 <NA>                           <NA>                    NA
## 789                 <NA>                           <NA>                    NA
## 790                 <NA>                           <NA>                    NA
## 791                 <NA>                           <NA>                    NA
## 792                 <NA>                           <NA>                    NA
## 793                 <NA>                           <NA>                    NA
## 794                 <NA>                           <NA>                    NA
## 795                 <NA>                           <NA>                    NA
## 796                 <NA>                           <NA>                    NA
## 797                 <NA>                           <NA>                    NA
## 798                 <NA>                           <NA>                    NA
## 799                 <NA>                           <NA>                    NA
## 800                 <NA>                           <NA>                    NA
## 801                 <NA>                           <NA>                    NA
## 802  2020-03-26 17:02:17                Twitter Web App                    16
## 803                 <NA>                           <NA>                    NA
## 804  2020-03-18 01:23:40             Twitter for iPhone                  3829
## 805  2020-03-27 16:05:04                Twitter Web App                  1849
## 806                 <NA>                           <NA>                    NA
## 807  2020-03-26 23:57:50             Twitter Web Client                     0
## 808                 <NA>                           <NA>                    NA
## 809                 <NA>                           <NA>                    NA
## 810                 <NA>                           <NA>                    NA
## 811                 <NA>                           <NA>                    NA
## 812                 <NA>                           <NA>                    NA
## 813                 <NA>                           <NA>                    NA
## 814                 <NA>                           <NA>                    NA
## 815                 <NA>                           <NA>                    NA
## 816                 <NA>                           <NA>                    NA
## 817                 <NA>                           <NA>                    NA
## 818                 <NA>                           <NA>                    NA
## 819                 <NA>                           <NA>                    NA
## 820                 <NA>                           <NA>                    NA
## 821                 <NA>                           <NA>                    NA
## 822                 <NA>                           <NA>                    NA
## 823                 <NA>                           <NA>                    NA
## 824                 <NA>                           <NA>                    NA
## 825                 <NA>                           <NA>                    NA
## 826                 <NA>                           <NA>                    NA
## 827                 <NA>                           <NA>                    NA
## 828                 <NA>                           <NA>                    NA
## 829                 <NA>                           <NA>                    NA
## 830                 <NA>                           <NA>                    NA
## 831                 <NA>                           <NA>                    NA
## 832                 <NA>                           <NA>                    NA
## 833                 <NA>                           <NA>                    NA
## 834                 <NA>                           <NA>                    NA
## 835                 <NA>                           <NA>                    NA
## 836                 <NA>                           <NA>                    NA
## 837                 <NA>                           <NA>                    NA
## 838                 <NA>                           <NA>                    NA
## 839                 <NA>                           <NA>                    NA
## 840                 <NA>                           <NA>                    NA
## 841                 <NA>                           <NA>                    NA
## 842  2020-03-26 18:28:00                      TweetDeck                   243
## 843                 <NA>                           <NA>                    NA
## 844  2020-03-27 18:57:36                Twitter Web App                    79
## 845                 <NA>                           <NA>                    NA
## 846                 <NA>                           <NA>                    NA
## 847  2020-03-27 01:57:22             Twitter for iPhone                   384
## 848                 <NA>                           <NA>                    NA
## 849                 <NA>                           <NA>                    NA
## 850                 <NA>                           <NA>                    NA
## 851                 <NA>                           <NA>                    NA
## 852                 <NA>                           <NA>                    NA
## 853                 <NA>                           <NA>                    NA
## 854                 <NA>                           <NA>                    NA
## 855                 <NA>                           <NA>                    NA
## 856                 <NA>                           <NA>                    NA
## 857  2020-03-26 20:31:24                      TweetDeck                    15
## 858                 <NA>                           <NA>                    NA
## 859                 <NA>                           <NA>                    NA
## 860                 <NA>                           <NA>                    NA
## 861                 <NA>                           <NA>                    NA
## 862                 <NA>                           <NA>                    NA
## 863                 <NA>                           <NA>                    NA
## 864                 <NA>                           <NA>                    NA
## 865                 <NA>                           <NA>                    NA
## 866                 <NA>                           <NA>                    NA
## 867                 <NA>                           <NA>                    NA
## 868                 <NA>                           <NA>                    NA
## 869                 <NA>                           <NA>                    NA
## 870                 <NA>                           <NA>                    NA
## 871                 <NA>                           <NA>                    NA
## 872                 <NA>                           <NA>                    NA
## 873                 <NA>                           <NA>                    NA
## 874                 <NA>                           <NA>                    NA
## 875                 <NA>                           <NA>                    NA
## 876                 <NA>                           <NA>                    NA
## 877                 <NA>                           <NA>                    NA
## 878                 <NA>                           <NA>                    NA
## 879                 <NA>                           <NA>                    NA
## 880                 <NA>                           <NA>                    NA
## 881                 <NA>                           <NA>                    NA
## 882                 <NA>                           <NA>                    NA
## 883                 <NA>                           <NA>                    NA
## 884                 <NA>                           <NA>                    NA
## 885  2020-03-28 04:08:48             Twitter for iPhone                 10656
## 886                 <NA>                           <NA>                    NA
## 887                 <NA>                           <NA>                    NA
## 888                 <NA>                           <NA>                    NA
## 889                 <NA>                           <NA>                    NA
## 890                 <NA>                           <NA>                    NA
## 891                 <NA>                           <NA>                    NA
## 892                 <NA>                           <NA>                    NA
## 893                 <NA>                           <NA>                    NA
## 894                 <NA>                           <NA>                    NA
## 895                 <NA>                           <NA>                    NA
## 896                 <NA>                           <NA>                    NA
## 897                 <NA>                           <NA>                    NA
## 898                 <NA>                           <NA>                    NA
## 899                 <NA>                           <NA>                    NA
## 900                 <NA>                           <NA>                    NA
## 901                 <NA>                           <NA>                    NA
## 902                 <NA>                           <NA>                    NA
## 903  2020-03-26 14:07:48             Twitter for iPhone                    32
## 904                 <NA>                           <NA>                    NA
## 905                 <NA>                           <NA>                    NA
## 906                 <NA>                           <NA>                    NA
## 907                 <NA>                           <NA>                    NA
## 908                 <NA>                           <NA>                    NA
## 909                 <NA>                           <NA>                    NA
## 910  2020-03-26 19:27:20                 Hootsuite Inc.                    25
## 911                 <NA>                           <NA>                    NA
## 912  2020-03-26 17:00:16               Twitter for iPad                    60
## 913                 <NA>                           <NA>                    NA
## 914                 <NA>                           <NA>                    NA
## 915                 <NA>                           <NA>                    NA
## 916                 <NA>                           <NA>                    NA
## 917                 <NA>                           <NA>                    NA
## 918                 <NA>                           <NA>                    NA
## 919                 <NA>                           <NA>                    NA
## 920                 <NA>                           <NA>                    NA
## 921                 <NA>                           <NA>                    NA
## 922  2020-03-27 13:54:31                Twitter Web App                     0
## 923                 <NA>                           <NA>                    NA
## 924                 <NA>                           <NA>                    NA
## 925                 <NA>                           <NA>                    NA
## 926                 <NA>                           <NA>                    NA
## 927                 <NA>                           <NA>                    NA
## 928                 <NA>                           <NA>                    NA
## 929                 <NA>                           <NA>                    NA
## 930                 <NA>                           <NA>                    NA
## 931                 <NA>                           <NA>                    NA
## 932                 <NA>                           <NA>                    NA
## 933                 <NA>                           <NA>                    NA
## 934                 <NA>                           <NA>                    NA
## 935                 <NA>                           <NA>                    NA
## 936                 <NA>                           <NA>                    NA
## 937                 <NA>                           <NA>                    NA
## 938                 <NA>                           <NA>                    NA
## 939                 <NA>                           <NA>                    NA
## 940                 <NA>                           <NA>                    NA
## 941                 <NA>                           <NA>                    NA
## 942                 <NA>                           <NA>                    NA
## 943                 <NA>                           <NA>                    NA
## 944  2020-03-25 01:44:19                Twitter Web App                 12166
## 945                 <NA>                           <NA>                    NA
## 946                 <NA>                           <NA>                    NA
## 947                 <NA>                           <NA>                    NA
## 948                 <NA>                           <NA>                    NA
## 949                 <NA>                           <NA>                    NA
## 950                 <NA>                           <NA>                    NA
## 951                 <NA>                           <NA>                    NA
## 952                 <NA>                           <NA>                    NA
## 953                 <NA>                           <NA>                    NA
## 954                 <NA>                           <NA>                    NA
## 955                 <NA>                           <NA>                    NA
## 956                 <NA>                           <NA>                    NA
## 957                 <NA>                           <NA>                    NA
## 958                 <NA>                           <NA>                    NA
## 959                 <NA>                           <NA>                    NA
## 960                 <NA>                           <NA>                    NA
## 961                 <NA>                           <NA>                    NA
## 962                 <NA>                           <NA>                    NA
## 963                 <NA>                           <NA>                    NA
## 964                 <NA>                           <NA>                    NA
## 965                 <NA>                           <NA>                    NA
## 966                 <NA>                           <NA>                    NA
## 967                 <NA>                           <NA>                    NA
## 968                 <NA>                           <NA>                    NA
## 969                 <NA>                           <NA>                    NA
## 970                 <NA>                           <NA>                    NA
## 971                 <NA>                           <NA>                    NA
## 972  2020-03-27 21:51:26                Twitter Web App                   331
## 973                 <NA>                           <NA>                    NA
## 974                 <NA>                           <NA>                    NA
## 975                 <NA>                           <NA>                    NA
## 976                 <NA>                           <NA>                    NA
## 977  2020-03-26 01:52:07               Twitter for iPad                   122
## 978                 <NA>                           <NA>                    NA
## 979                 <NA>                           <NA>                    NA
## 980                 <NA>                           <NA>                    NA
## 981                 <NA>                           <NA>                    NA
## 982                 <NA>                           <NA>                    NA
## 983                 <NA>                           <NA>                    NA
## 984                 <NA>                           <NA>                    NA
## 985                 <NA>                           <NA>                    NA
## 986                 <NA>                           <NA>                    NA
## 987                 <NA>                           <NA>                    NA
## 988                 <NA>                           <NA>                    NA
## 989                 <NA>                           <NA>                    NA
## 990                 <NA>                           <NA>                    NA
## 991  2020-03-27 20:36:49            Twitter for Android                  1068
## 992                 <NA>                           <NA>                    NA
## 993                 <NA>                           <NA>                    NA
## 994                 <NA>                           <NA>                    NA
## 995                 <NA>                           <NA>                    NA
## 996                 <NA>                           <NA>                    NA
## 997                 <NA>                           <NA>                    NA
## 998                 <NA>                           <NA>                    NA
## 999                 <NA>                           <NA>                    NA
## 1000 2020-03-25 10:20:23                Twitter Web App                     5
## 1001                <NA>                           <NA>                    NA
## 1002                <NA>                           <NA>                    NA
## 1003                <NA>                           <NA>                    NA
## 1004                <NA>                           <NA>                    NA
## 1005                <NA>                           <NA>                    NA
## 1006                <NA>                           <NA>                    NA
## 1007 2020-03-27 19:05:04                     SocialFlow                  6511
## 1008                <NA>                           <NA>                    NA
## 1009                <NA>                           <NA>                    NA
## 1010                <NA>                           <NA>                    NA
## 1011                <NA>                           <NA>                    NA
## 1012                <NA>                           <NA>                    NA
## 1013                <NA>                           <NA>                    NA
## 1014                <NA>                           <NA>                    NA
## 1015                <NA>                           <NA>                    NA
## 1016                <NA>                           <NA>                    NA
## 1017                <NA>                           <NA>                    NA
## 1018                <NA>                           <NA>                    NA
## 1019                <NA>                           <NA>                    NA
## 1020                <NA>                           <NA>                    NA
## 1021                <NA>                           <NA>                    NA
## 1022                <NA>                           <NA>                    NA
## 1023 2020-03-27 15:30:13             Twitter for iPhone                     7
## 1024                <NA>                           <NA>                    NA
## 1025                <NA>                           <NA>                    NA
## 1026                <NA>                           <NA>                    NA
## 1027 2020-03-26 21:22:15             Twitter for iPhone                   919
## 1028                <NA>                           <NA>                    NA
## 1029                <NA>                           <NA>                    NA
## 1030 2020-03-27 15:14:13             Twitter for iPhone                 21943
## 1031                <NA>                           <NA>                    NA
## 1032                <NA>                           <NA>                    NA
## 1033                <NA>                           <NA>                    NA
## 1034 2020-03-26 19:16:35                Twitter Web App                    18
## 1035 2020-03-27 13:44:59                Twitter Web App                    64
## 1036                <NA>                           <NA>                    NA
## 1037 2020-03-26 16:17:02                Twitter Web App                 16179
## 1038                <NA>                           <NA>                    NA
## 1039 2020-03-27 05:55:03                 Hootsuite Inc.                    11
## 1040 2020-03-26 08:42:21                Twitter Web App                   301
## 1041                <NA>                           <NA>                    NA
## 1042                <NA>                           <NA>                    NA
## 1043                <NA>                           <NA>                    NA
## 1044                <NA>                           <NA>                    NA
## 1045                <NA>                           <NA>                    NA
## 1046                <NA>                           <NA>                    NA
## 1047                <NA>                           <NA>                    NA
## 1048                <NA>                           <NA>                    NA
## 1049                <NA>                           <NA>                    NA
## 1050                <NA>                           <NA>                    NA
## 1051                <NA>                           <NA>                    NA
## 1052                <NA>                           <NA>                    NA
## 1053                <NA>                           <NA>                    NA
## 1054                <NA>                           <NA>                    NA
## 1055                <NA>                           <NA>                    NA
## 1056                <NA>                           <NA>                    NA
## 1057                <NA>                           <NA>                    NA
## 1058                <NA>                           <NA>                    NA
## 1059                <NA>                           <NA>                    NA
## 1060                <NA>                           <NA>                    NA
## 1061                <NA>                           <NA>                    NA
## 1062                <NA>                           <NA>                    NA
## 1063                <NA>                           <NA>                    NA
## 1064                <NA>                           <NA>                    NA
## 1065                <NA>                           <NA>                    NA
## 1066                <NA>                           <NA>                    NA
## 1067                <NA>                           <NA>                    NA
## 1068                <NA>                           <NA>                    NA
## 1069                <NA>                           <NA>                    NA
## 1070                <NA>                           <NA>                    NA
## 1071                <NA>                           <NA>                    NA
## 1072                <NA>                           <NA>                    NA
## 1073 2020-03-27 01:45:58             Twitter for iPhone                  1314
## 1074                <NA>                           <NA>                    NA
## 1075 2020-03-27 16:16:24             Twitter for iPhone                 99523
## 1076                <NA>                           <NA>                    NA
## 1077                <NA>                           <NA>                    NA
## 1078                <NA>                           <NA>                    NA
## 1079                <NA>                           <NA>                    NA
## 1080                <NA>                           <NA>                    NA
## 1081                <NA>                           <NA>                    NA
## 1082                <NA>                           <NA>                    NA
## 1083                <NA>                           <NA>                    NA
## 1084                <NA>                           <NA>                    NA
## 1085                <NA>                           <NA>                    NA
## 1086                <NA>                           <NA>                    NA
## 1087                <NA>                           <NA>                    NA
## 1088                <NA>                           <NA>                    NA
## 1089                <NA>                           <NA>                    NA
## 1090                <NA>                           <NA>                    NA
## 1091                <NA>                           <NA>                    NA
## 1092                <NA>                           <NA>                    NA
## 1093                <NA>                           <NA>                    NA
## 1094                <NA>                           <NA>                    NA
## 1095                <NA>                           <NA>                    NA
## 1096                <NA>                           <NA>                    NA
## 1097                <NA>                           <NA>                    NA
## 1098                <NA>                           <NA>                    NA
## 1099                <NA>                           <NA>                    NA
## 1100                <NA>                           <NA>                    NA
## 1101 2020-03-26 18:41:57             Twitter for iPhone                   520
## 1102                <NA>                           <NA>                    NA
## 1103                <NA>                           <NA>                    NA
## 1104                <NA>                           <NA>                    NA
## 1105                <NA>                           <NA>                    NA
## 1106                <NA>                           <NA>                    NA
## 1107                <NA>                           <NA>                    NA
## 1108                <NA>                           <NA>                    NA
## 1109                <NA>                           <NA>                    NA
## 1110                <NA>                           <NA>                    NA
## 1111                <NA>                           <NA>                    NA
##      quoted_retweet_count      quoted_user_id quoted_screen_name
## 1                      NA                <NA>               <NA>
## 2                      NA                <NA>               <NA>
## 3                      NA                <NA>               <NA>
## 4                    4287           301863076       Yascha_Mounk
## 5                      12           370297361     PatCiccantelli
## 6                      NA                <NA>               <NA>
## 7                      NA                <NA>               <NA>
## 8                      NA                <NA>               <NA>
## 9                      40           755835576    AynRandPaulRyan
## 10                     NA                <NA>               <NA>
## 11                     NA                <NA>               <NA>
## 12                     NA                <NA>               <NA>
## 13                     NA                <NA>               <NA>
## 14                     NA                <NA>               <NA>
## 15                     NA                <NA>               <NA>
## 16                     NA                <NA>               <NA>
## 17                     NA                <NA>               <NA>
## 18                     NA                <NA>               <NA>
## 19                     NA                <NA>               <NA>
## 20                     NA                <NA>               <NA>
## 21                     NA                <NA>               <NA>
## 22                     NA                <NA>               <NA>
## 23                     NA                <NA>               <NA>
## 24                     NA                <NA>               <NA>
## 25                     NA                <NA>               <NA>
## 26                     NA                <NA>               <NA>
## 27                     NA                <NA>               <NA>
## 28                     NA                <NA>               <NA>
## 29                     NA                <NA>               <NA>
## 30                     NA                <NA>               <NA>
## 31                     NA                <NA>               <NA>
## 32                     NA                <NA>               <NA>
## 33                     NA                <NA>               <NA>
## 34                     NA                <NA>               <NA>
## 35                     NA                <NA>               <NA>
## 36                    471              742143           BBCWorld
## 37                     NA                <NA>               <NA>
## 38                     NA                <NA>               <NA>
## 39                     NA                <NA>               <NA>
## 40                     NA                <NA>               <NA>
## 41                     NA                <NA>               <NA>
## 42                     NA                <NA>               <NA>
## 43                  28956            14529929         jaketapper
## 44                     NA                <NA>               <NA>
## 45                     NA                <NA>               <NA>
## 46                     NA                <NA>               <NA>
## 47                     NA                <NA>               <NA>
## 48                     NA                <NA>               <NA>
## 49                     NA                <NA>               <NA>
## 50                     NA                <NA>               <NA>
## 51                    345              612473            BBCNews
## 52                     NA                <NA>               <NA>
## 53                     NA                <NA>               <NA>
## 54                     NA                <NA>               <NA>
## 55                     NA                <NA>               <NA>
## 56                     NA                <NA>               <NA>
## 57                     NA                <NA>               <NA>
## 58                     NA                <NA>               <NA>
## 59                     NA                <NA>               <NA>
## 60                     NA                <NA>               <NA>
## 61                     NA                <NA>               <NA>
## 62                     NA                <NA>               <NA>
## 63                     NA                <NA>               <NA>
## 64                     NA                <NA>               <NA>
## 65                     NA                <NA>               <NA>
## 66                     NA                <NA>               <NA>
## 67                     NA                <NA>               <NA>
## 68                     NA                <NA>               <NA>
## 69                     NA                <NA>               <NA>
## 70                     NA                <NA>               <NA>
## 71                     NA                <NA>               <NA>
## 72                     NA                <NA>               <NA>
## 73                     NA                <NA>               <NA>
## 74                     NA                <NA>               <NA>
## 75                     NA                <NA>               <NA>
## 76                   2907            65277959          ShimonPro
## 77                   5307           113447429    RTELateLateShow
## 78                     NA                <NA>               <NA>
## 79                     NA                <NA>               <NA>
## 80                     NA                <NA>               <NA>
## 81                     NA                <NA>               <NA>
## 82                     NA                <NA>               <NA>
## 83                     NA                <NA>               <NA>
## 84                     NA                <NA>               <NA>
## 85                     NA                <NA>               <NA>
## 86                     NA                <NA>               <NA>
## 87                     NA                <NA>               <NA>
## 88                     NA                <NA>               <NA>
## 89                     NA                <NA>               <NA>
## 90                     NA                <NA>               <NA>
## 91                     NA                <NA>               <NA>
## 92                     NA                <NA>               <NA>
## 93                     NA                <NA>               <NA>
## 94                     NA                <NA>               <NA>
## 95                     NA                <NA>               <NA>
## 96                     NA                <NA>               <NA>
## 97                     NA                <NA>               <NA>
## 98                     NA                <NA>               <NA>
## 99                     NA                <NA>               <NA>
## 100                    NA                <NA>               <NA>
## 101                    NA                <NA>               <NA>
## 102                    NA                <NA>               <NA>
## 103                    NA                <NA>               <NA>
## 104                    NA                <NA>               <NA>
## 105                     2  962254495034953728           ftmkrm83
## 106                    NA                <NA>               <NA>
## 107                    NA                <NA>               <NA>
## 108                    NA                <NA>               <NA>
## 109                    NA                <NA>               <NA>
## 110                     0          3044697511           ilnanews
## 111                    NA                <NA>               <NA>
## 112                    NA                <NA>               <NA>
## 113                    NA                <NA>               <NA>
## 114                    NA                <NA>               <NA>
## 115                    NA                <NA>               <NA>
## 116                    NA                <NA>               <NA>
## 117                    NA                <NA>               <NA>
## 118                    NA                <NA>               <NA>
## 119                    NA                <NA>               <NA>
## 120                    38  711356961107918849           TVNewsHQ
## 121                    NA                <NA>               <NA>
## 122                    NA                <NA>               <NA>
## 123                    NA                <NA>               <NA>
## 124                    NA                <NA>               <NA>
## 125                    NA                <NA>               <NA>
## 126                    NA                <NA>               <NA>
## 127                    NA                <NA>               <NA>
## 128                    NA                <NA>               <NA>
## 129                    NA                <NA>               <NA>
## 130                    NA                <NA>               <NA>
## 131                     1           297323302           DokuFest
## 132                    NA                <NA>               <NA>
## 133                    NA                <NA>               <NA>
## 134                    NA                <NA>               <NA>
## 135                    NA                <NA>               <NA>
## 136                    NA                <NA>               <NA>
## 137                    NA                <NA>               <NA>
## 138                    NA                <NA>               <NA>
## 139                    NA                <NA>               <NA>
## 140                    NA                <NA>               <NA>
## 141                    NA                <NA>               <NA>
## 142                    NA                <NA>               <NA>
## 143                    NA                <NA>               <NA>
## 144                    NA                <NA>               <NA>
## 145                    NA                <NA>               <NA>
## 146                    NA                <NA>               <NA>
## 147                    NA                <NA>               <NA>
## 148                    NA                <NA>               <NA>
## 149                    NA                <NA>               <NA>
## 150                    NA                <NA>               <NA>
## 151                    NA                <NA>               <NA>
## 152                    NA                <NA>               <NA>
## 153                    NA                <NA>               <NA>
## 154                   289            14869615         JuliusGoat
## 155                    NA                <NA>               <NA>
## 156                    NA                <NA>               <NA>
## 157                    NA                <NA>               <NA>
## 158                    NA                <NA>               <NA>
## 159                    NA                <NA>               <NA>
## 160                    NA                <NA>               <NA>
## 161                    NA                <NA>               <NA>
## 162                    NA                <NA>               <NA>
## 163                    NA                <NA>               <NA>
## 164                    NA                <NA>               <NA>
## 165                    NA                <NA>               <NA>
## 166                    44            29828364        CityofMiami
## 167                    NA                <NA>               <NA>
## 168                    NA                <NA>               <NA>
## 169                    NA                <NA>               <NA>
## 170                    NA                <NA>               <NA>
## 171                    NA                <NA>               <NA>
## 172                  1037            50941469        PrabhasRaju
## 173                    15           282082724      NW_MoneySense
## 174                    NA                <NA>               <NA>
## 175                    NA                <NA>               <NA>
## 176                    NA                <NA>               <NA>
## 177                    NA                <NA>               <NA>
## 178                    NA                <NA>               <NA>
## 179                    NA                <NA>               <NA>
## 180                    NA                <NA>               <NA>
## 181                    NA                <NA>               <NA>
## 182                    NA                <NA>               <NA>
## 183                    NA                <NA>               <NA>
## 184                    11           243983947    StephenMcDonell
## 185                    NA                <NA>               <NA>
## 186                   246            16910746       KemiOlunloyo
## 187                    NA                <NA>               <NA>
## 188                    NA                <NA>               <NA>
## 189                    NA                <NA>               <NA>
## 190                    NA                <NA>               <NA>
## 191                    NA                <NA>               <NA>
## 192                    NA                <NA>               <NA>
## 193                    NA                <NA>               <NA>
## 194                    NA                <NA>               <NA>
## 195                    NA                <NA>               <NA>
## 196                    NA                <NA>               <NA>
## 197                    NA                <NA>               <NA>
## 198                    NA                <NA>               <NA>
## 199                    NA                <NA>               <NA>
## 200                    NA                <NA>               <NA>
## 201                    NA                <NA>               <NA>
## 202                    NA                <NA>               <NA>
## 203                    NA                <NA>               <NA>
## 204                    NA                <NA>               <NA>
## 205                    NA                <NA>               <NA>
## 206                    NA                <NA>               <NA>
## 207                    NA                <NA>               <NA>
## 208                    NA                <NA>               <NA>
## 209                    NA                <NA>               <NA>
## 210                    NA                <NA>               <NA>
## 211                    NA                <NA>               <NA>
## 212                    NA                <NA>               <NA>
## 213                    NA                <NA>               <NA>
## 214                    NA                <NA>               <NA>
## 215                    NA                <NA>               <NA>
## 216                    NA                <NA>               <NA>
## 217                    NA                <NA>               <NA>
## 218                    NA                <NA>               <NA>
## 219                    NA                <NA>               <NA>
## 220                    NA                <NA>               <NA>
## 221                    NA                <NA>               <NA>
## 222                    NA                <NA>               <NA>
## 223                    NA                <NA>               <NA>
## 224                    NA                <NA>               <NA>
## 225                    17          1262797633            BigElad
## 226                    NA                <NA>               <NA>
## 227                    NA                <NA>               <NA>
## 228                    NA                <NA>               <NA>
## 229                    NA                <NA>               <NA>
## 230                    NA                <NA>               <NA>
## 231                    24            34934634     RFKHumanRights
## 232                    NA                <NA>               <NA>
## 233                    NA                <NA>               <NA>
## 234                  8399            14260960      JustinTrudeau
## 235                    NA                <NA>               <NA>
## 236                    NA                <NA>               <NA>
## 237                    NA                <NA>               <NA>
## 238                    NA                <NA>               <NA>
## 239                    NA                <NA>               <NA>
## 240                    NA                <NA>               <NA>
## 241                    NA                <NA>               <NA>
## 242                    NA                <NA>               <NA>
## 243                  5957  722591291842801664        yo_boi_erik
## 244                    NA                <NA>               <NA>
## 245                    NA                <NA>               <NA>
## 246                    NA                <NA>               <NA>
## 247                    NA                <NA>               <NA>
## 248                    NA                <NA>               <NA>
## 249                    NA                <NA>               <NA>
## 250                    NA                <NA>               <NA>
## 251                    NA                <NA>               <NA>
## 252                    NA                <NA>               <NA>
## 253                    NA                <NA>               <NA>
## 254                    NA                <NA>               <NA>
## 255                    NA                <NA>               <NA>
## 256                 26247            91641460         DavidZodda
## 257                    NA                <NA>               <NA>
## 258                 48359            25073877    realDonaldTrump
## 259                    NA                <NA>               <NA>
## 260                     4 1179874603750973440     eatlikeanimals
## 261                    NA                <NA>               <NA>
## 262                    NA                <NA>               <NA>
## 263                     0 1132607455752544256            CYPStNN
## 264                    NA                <NA>               <NA>
## 265                    NA                <NA>               <NA>
## 266                    NA                <NA>               <NA>
## 267                    NA                <NA>               <NA>
## 268                    NA                <NA>               <NA>
## 269                    NA                <NA>               <NA>
## 270                   181            69229721       AliZafarsays
## 271                    NA                <NA>               <NA>
## 272                    NA                <NA>               <NA>
## 273                    NA                <NA>               <NA>
## 274                    NA                <NA>               <NA>
## 275                    NA                <NA>               <NA>
## 276                    NA                <NA>               <NA>
## 277                    NA                <NA>               <NA>
## 278                    36           354267800             5_News
## 279                   195             9061602         yoursvivek
## 280                    NA                <NA>               <NA>
## 281                    NA                <NA>               <NA>
## 282                    57            44513878       TexasTribune
## 283                    NA                <NA>               <NA>
## 284                    NA                <NA>               <NA>
## 285                    NA                <NA>               <NA>
## 286                    NA                <NA>               <NA>
## 287                    12  821420676766662656    TheWisemanSaid2
## 288                    NA                <NA>               <NA>
## 289                    NA                <NA>               <NA>
## 290                    NA                <NA>               <NA>
## 291                    NA                <NA>               <NA>
## 292                    NA                <NA>               <NA>
## 293                    NA                <NA>               <NA>
## 294                    NA                <NA>               <NA>
## 295                    NA                <NA>               <NA>
## 296                    NA                <NA>               <NA>
## 297                    NA                <NA>               <NA>
## 298                    NA                <NA>               <NA>
## 299                   492            34713362           business
## 300                    NA                <NA>               <NA>
## 301                    NA                <NA>               <NA>
## 302                    NA                <NA>               <NA>
## 303                    NA                <NA>               <NA>
## 304                    NA                <NA>               <NA>
## 305                    NA                <NA>               <NA>
## 306                    NA                <NA>               <NA>
## 307                    NA                <NA>               <NA>
## 308                    NA                <NA>               <NA>
## 309                    NA                <NA>               <NA>
## 310                    NA                <NA>               <NA>
## 311                    NA                <NA>               <NA>
## 312                    NA                <NA>               <NA>
## 313                    NA                <NA>               <NA>
## 314                    NA                <NA>               <NA>
## 315                    NA                <NA>               <NA>
## 316                    NA                <NA>               <NA>
## 317                    NA                <NA>               <NA>
## 318                    NA                <NA>               <NA>
## 319                    NA                <NA>               <NA>
## 320                    NA                <NA>               <NA>
## 321                    NA                <NA>               <NA>
## 322                    NA                <NA>               <NA>
## 323                     3          3051234070       AlpeshPaleja
## 324                    NA                <NA>               <NA>
## 325                    NA                <NA>               <NA>
## 326                    NA                <NA>               <NA>
## 327                    NA                <NA>               <NA>
## 328                    NA                <NA>               <NA>
## 329                    NA                <NA>               <NA>
## 330                    NA                <NA>               <NA>
## 331                    NA                <NA>               <NA>
## 332                    NA                <NA>               <NA>
## 333                     0  742896086533177344      GodButnotKira
## 334                    NA                <NA>               <NA>
## 335                    NA                <NA>               <NA>
## 336                    NA                <NA>               <NA>
## 337                    NA                <NA>               <NA>
## 338                    NA                <NA>               <NA>
## 339                    NA                <NA>               <NA>
## 340                    NA                <NA>               <NA>
## 341                    NA                <NA>               <NA>
## 342                    NA                <NA>               <NA>
## 343                    NA                <NA>               <NA>
## 344                    NA                <NA>               <NA>
## 345                    NA                <NA>               <NA>
## 346                    NA                <NA>               <NA>
## 347                    NA                <NA>               <NA>
## 348                    NA                <NA>               <NA>
## 349                    NA                <NA>               <NA>
## 350                    NA                <NA>               <NA>
## 351                    NA                <NA>               <NA>
## 352                    NA                <NA>               <NA>
## 353                    NA                <NA>               <NA>
## 354                    NA                <NA>               <NA>
## 355                    NA                <NA>               <NA>
## 356                    NA                <NA>               <NA>
## 357                    NA                <NA>               <NA>
## 358                    NA                <NA>               <NA>
## 359                    NA                <NA>               <NA>
## 360                    NA                <NA>               <NA>
## 361                    NA                <NA>               <NA>
## 362                    NA                <NA>               <NA>
## 363                    NA                <NA>               <NA>
## 364                    NA                <NA>               <NA>
## 365                    NA                <NA>               <NA>
## 366                    NA                <NA>               <NA>
## 367                    NA                <NA>               <NA>
## 368                    NA                <NA>               <NA>
## 369                    NA                <NA>               <NA>
## 370                    NA                <NA>               <NA>
## 371                    NA                <NA>               <NA>
## 372                    NA                <NA>               <NA>
## 373                    NA                <NA>               <NA>
## 374                    NA                <NA>               <NA>
## 375                    22           187844091            RocheNL
## 376                    NA                <NA>               <NA>
## 377                    NA                <NA>               <NA>
## 378                    NA                <NA>               <NA>
## 379                    NA                <NA>               <NA>
## 380                    NA                <NA>               <NA>
## 381                    NA                <NA>               <NA>
## 382                    NA                <NA>               <NA>
## 383                    NA                <NA>               <NA>
## 384                    NA                <NA>               <NA>
## 385                    NA                <NA>               <NA>
## 386                    NA                <NA>               <NA>
## 387                  1613           151765032      katemclennan1
## 388                    NA                <NA>               <NA>
## 389                    NA                <NA>               <NA>
## 390                    NA                <NA>               <NA>
## 391                    NA                <NA>               <NA>
## 392                    NA                <NA>               <NA>
## 393                    NA                <NA>               <NA>
## 394                    NA                <NA>               <NA>
## 395                    NA                <NA>               <NA>
## 396                    NA                <NA>               <NA>
## 397                    NA                <NA>               <NA>
## 398                    NA                <NA>               <NA>
## 399                    NA                <NA>               <NA>
## 400                    NA                <NA>               <NA>
## 401                    NA                <NA>               <NA>
## 402                    NA                <NA>               <NA>
## 403                    NA                <NA>               <NA>
## 404                    NA                <NA>               <NA>
## 405                    NA                <NA>               <NA>
## 406                    NA                <NA>               <NA>
## 407                    NA                <NA>               <NA>
## 408                    NA                <NA>               <NA>
## 409                    NA                <NA>               <NA>
## 410                    NA                <NA>               <NA>
## 411                    NA                <NA>               <NA>
## 412                    NA                <NA>               <NA>
## 413                    NA                <NA>               <NA>
## 414                    NA                <NA>               <NA>
## 415                    NA                <NA>               <NA>
## 416                    NA                <NA>               <NA>
## 417                    NA                <NA>               <NA>
## 418                    NA                <NA>               <NA>
## 419                    NA                <NA>               <NA>
## 420                    NA                <NA>               <NA>
## 421                    NA                <NA>               <NA>
## 422                    NA                <NA>               <NA>
## 423                    NA                <NA>               <NA>
## 424                    NA                <NA>               <NA>
## 425                    NA                <NA>               <NA>
## 426                    NA                <NA>               <NA>
## 427                    NA                <NA>               <NA>
## 428                    NA                <NA>               <NA>
## 429                    NA                <NA>               <NA>
## 430                    NA                <NA>               <NA>
## 431                    NA                <NA>               <NA>
## 432                    NA                <NA>               <NA>
## 433                    NA                <NA>               <NA>
## 434                    NA                <NA>               <NA>
## 435                    NA                <NA>               <NA>
## 436                    NA                <NA>               <NA>
## 437                    NA                <NA>               <NA>
## 438                  4011          2761843375     MOISaudiArabia
## 439                    NA                <NA>               <NA>
## 440                    NA                <NA>               <NA>
## 441                    NA                <NA>               <NA>
## 442                    NA                <NA>               <NA>
## 443                    NA                <NA>               <NA>
## 444                    NA                <NA>               <NA>
## 445                    NA                <NA>               <NA>
## 446                    NA                <NA>               <NA>
## 447                    NA                <NA>               <NA>
## 448                    NA                <NA>               <NA>
## 449                    NA                <NA>               <NA>
## 450                    NA                <NA>               <NA>
## 451                    38            21419504               WCVB
## 452                    NA                <NA>               <NA>
## 453                    NA                <NA>               <NA>
## 454                    NA                <NA>               <NA>
## 455                    NA                <NA>               <NA>
## 456                    NA                <NA>               <NA>
## 457                    NA                <NA>               <NA>
## 458                    NA                <NA>               <NA>
## 459                    NA                <NA>               <NA>
## 460                    NA                <NA>               <NA>
## 461                    NA                <NA>               <NA>
## 462                    NA                <NA>               <NA>
## 463                    NA                <NA>               <NA>
## 464                    NA                <NA>               <NA>
## 465                    NA                <NA>               <NA>
## 466                    NA                <NA>               <NA>
## 467                    NA                <NA>               <NA>
## 468                    NA                <NA>               <NA>
## 469                    NA                <NA>               <NA>
## 470                    NA                <NA>               <NA>
## 471                    NA                <NA>               <NA>
## 472                    NA                <NA>               <NA>
## 473                    NA                <NA>               <NA>
## 474                    NA                <NA>               <NA>
## 475                    NA                <NA>               <NA>
## 476                    NA                <NA>               <NA>
## 477                    NA                <NA>               <NA>
## 478                    NA                <NA>               <NA>
## 479                    NA                <NA>               <NA>
## 480                    NA                <NA>               <NA>
## 481                    NA                <NA>               <NA>
## 482                    NA                <NA>               <NA>
## 483                    NA                <NA>               <NA>
## 484                    NA                <NA>               <NA>
## 485                    NA                <NA>               <NA>
## 486                    NA                <NA>               <NA>
## 487                    NA                <NA>               <NA>
## 488                    NA                <NA>               <NA>
## 489                    NA                <NA>               <NA>
## 490                    NA                <NA>               <NA>
## 491                    NA                <NA>               <NA>
## 492                    NA                <NA>               <NA>
## 493                    NA                <NA>               <NA>
## 494                    NA                <NA>               <NA>
## 495                    NA                <NA>               <NA>
## 496                     5             6692952       JoanaAMorais
## 497                    NA                <NA>               <NA>
## 498                    NA                <NA>               <NA>
## 499                    NA                <NA>               <NA>
## 500                    NA                <NA>               <NA>
## 501                    NA                <NA>               <NA>
## 502                    NA                <NA>               <NA>
## 503                    NA                <NA>               <NA>
## 504                    NA                <NA>               <NA>
## 505                    NA                <NA>               <NA>
## 506                    NA                <NA>               <NA>
## 507                    NA                <NA>               <NA>
## 508                    NA                <NA>               <NA>
## 509                    NA                <NA>               <NA>
## 510                    NA                <NA>               <NA>
## 511                    NA                <NA>               <NA>
## 512                    NA                <NA>               <NA>
## 513                  1791          2985479932            BNODesk
## 514                    NA                <NA>               <NA>
## 515                    NA                <NA>               <NA>
## 516                    NA                <NA>               <NA>
## 517                    NA                <NA>               <NA>
## 518                    NA                <NA>               <NA>
## 519                    NA                <NA>               <NA>
## 520                    NA                <NA>               <NA>
## 521                    NA                <NA>               <NA>
## 522                    NA                <NA>               <NA>
## 523                    NA                <NA>               <NA>
## 524                    40          4878610324    politvidchannel
## 525                    NA                <NA>               <NA>
## 526                    NA                <NA>               <NA>
## 527                    NA                <NA>               <NA>
## 528                   210          1712238235    MentallyAwareNG
## 529                    NA                <NA>               <NA>
## 530                    NA                <NA>               <NA>
## 531                    NA                <NA>               <NA>
## 532                     1  972293598484905984     SmritiZaneveld
## 533                    NA                <NA>               <NA>
## 534                    NA                <NA>               <NA>
## 535                    NA                <NA>               <NA>
## 536                    NA                <NA>               <NA>
## 537                    NA                <NA>               <NA>
## 538                    NA                <NA>               <NA>
## 539                    NA                <NA>               <NA>
## 540                    NA                <NA>               <NA>
## 541                    NA                <NA>               <NA>
## 542                    NA                <NA>               <NA>
## 543                    NA                <NA>               <NA>
## 544                    NA                <NA>               <NA>
## 545                    NA                <NA>               <NA>
## 546                    NA                <NA>               <NA>
## 547                    NA                <NA>               <NA>
## 548                    NA                <NA>               <NA>
## 549                    NA                <NA>               <NA>
## 550                    NA                <NA>               <NA>
## 551                    NA                <NA>               <NA>
## 552                    NA                <NA>               <NA>
## 553                     1          3803574083        BarrieToday
## 554                    NA                <NA>               <NA>
## 555                    NA                <NA>               <NA>
## 556                    NA                <NA>               <NA>
## 557                    NA                <NA>               <NA>
## 558                  8295          2957682932          chitraaum
## 559                    NA                <NA>               <NA>
## 560                    NA                <NA>               <NA>
## 561                    NA                <NA>               <NA>
## 562                    NA                <NA>               <NA>
## 563                    NA                <NA>               <NA>
## 564                    NA                <NA>               <NA>
## 565                    NA                <NA>               <NA>
## 566                    NA                <NA>               <NA>
## 567                    NA                <NA>               <NA>
## 568                    NA                <NA>               <NA>
## 569                    NA                <NA>               <NA>
## 570                    NA                <NA>               <NA>
## 571                    NA                <NA>               <NA>
## 572                    NA                <NA>               <NA>
## 573                    NA                <NA>               <NA>
## 574                    NA                <NA>               <NA>
## 575                    NA                <NA>               <NA>
## 576                    NA                <NA>               <NA>
## 577                    NA                <NA>               <NA>
## 578                    NA                <NA>               <NA>
## 579                    NA                <NA>               <NA>
## 580                    NA                <NA>               <NA>
## 581                    NA                <NA>               <NA>
## 582                    NA                <NA>               <NA>
## 583                    NA                <NA>               <NA>
## 584                    NA                <NA>               <NA>
## 585                    NA                <NA>               <NA>
## 586                    NA                <NA>               <NA>
## 587                    NA                <NA>               <NA>
## 588                     2            12089642       VancouverSun
## 589                    NA                <NA>               <NA>
## 590                    NA                <NA>               <NA>
## 591                    NA                <NA>               <NA>
## 592                    NA                <NA>               <NA>
## 593                    NA                <NA>               <NA>
## 594                    NA                <NA>               <NA>
## 595                    NA                <NA>               <NA>
## 596                    NA                <NA>               <NA>
## 597                    NA                <NA>               <NA>
## 598                    NA                <NA>               <NA>
## 599                    NA                <NA>               <NA>
## 600                    NA                <NA>               <NA>
## 601                    NA                <NA>               <NA>
## 602                    NA                <NA>               <NA>
## 603                  2616           106118793         BBCNormanS
## 604                    NA                <NA>               <NA>
## 605                    NA                <NA>               <NA>
## 606                    NA                <NA>               <NA>
## 607                    NA                <NA>               <NA>
## 608                    NA                <NA>               <NA>
## 609                    NA                <NA>               <NA>
## 610                    NA                <NA>               <NA>
## 611                    NA                <NA>               <NA>
## 612                    NA                <NA>               <NA>
## 613                    NA                <NA>               <NA>
## 614                    NA                <NA>               <NA>
## 615                    NA                <NA>               <NA>
## 616                  2165           225265639             ddale8
## 617                 32789          1413698887      AtomicAnalyst
## 618                    NA                <NA>               <NA>
## 619                    NA                <NA>               <NA>
## 620                    NA                <NA>               <NA>
## 621                    NA                <NA>               <NA>
## 622                    NA                <NA>               <NA>
## 623                    NA                <NA>               <NA>
## 624                    NA                <NA>               <NA>
## 625                    NA                <NA>               <NA>
## 626                    NA                <NA>               <NA>
## 627                    NA                <NA>               <NA>
## 628                    NA                <NA>               <NA>
## 629                    NA                <NA>               <NA>
## 630                    NA                <NA>               <NA>
## 631                    NA                <NA>               <NA>
## 632                    NA                <NA>               <NA>
## 633                    NA                <NA>               <NA>
## 634                    NA                <NA>               <NA>
## 635                    NA                <NA>               <NA>
## 636                    NA                <NA>               <NA>
## 637                  1030          1293579344        AbhayVishen
## 638                   303            21128334         bairdjulia
## 639                    NA                <NA>               <NA>
## 640                    NA                <NA>               <NA>
## 641                     0          2976957591       gerald_bader
## 642                    NA                <NA>               <NA>
## 643                    NA                <NA>               <NA>
## 644                    NA                <NA>               <NA>
## 645                    NA                <NA>               <NA>
## 646                    NA                <NA>               <NA>
## 647                    NA                <NA>               <NA>
## 648                    NA                <NA>               <NA>
## 649                    NA                <NA>               <NA>
## 650                    NA                <NA>               <NA>
## 651                    NA                <NA>               <NA>
## 652                    NA                <NA>               <NA>
## 653                    NA                <NA>               <NA>
## 654                    NA                <NA>               <NA>
## 655                    NA                <NA>               <NA>
## 656                    NA                <NA>               <NA>
## 657                    NA                <NA>               <NA>
## 658                    NA                <NA>               <NA>
## 659                    NA                <NA>               <NA>
## 660                    NA                <NA>               <NA>
## 661                    NA                <NA>               <NA>
## 662                    NA                <NA>               <NA>
## 663                    NA                <NA>               <NA>
## 664                    NA                <NA>               <NA>
## 665                    24           539362113       MatthewsAsia
## 666                    NA                <NA>               <NA>
## 667                    NA                <NA>               <NA>
## 668                    NA                <NA>               <NA>
## 669                    NA                <NA>               <NA>
## 670                    NA                <NA>               <NA>
## 671                    NA                <NA>               <NA>
## 672                    NA                <NA>               <NA>
## 673                    NA                <NA>               <NA>
## 674                    NA                <NA>               <NA>
## 675                    NA                <NA>               <NA>
## 676                    NA                <NA>               <NA>
## 677                    40          2537753422         revrrlewis
## 678                    NA                <NA>               <NA>
## 679                    NA                <NA>               <NA>
## 680                    NA                <NA>               <NA>
## 681                  1445          2471291899            IasAlok
## 682                    NA                <NA>               <NA>
## 683                    NA                <NA>               <NA>
## 684                    NA                <NA>               <NA>
## 685                    NA                <NA>               <NA>
## 686                    NA                <NA>               <NA>
## 687                    NA                <NA>               <NA>
## 688                    NA                <NA>               <NA>
## 689                    NA                <NA>               <NA>
## 690                    NA                <NA>               <NA>
## 691                    NA                <NA>               <NA>
## 692                    NA                <NA>               <NA>
## 693                    NA                <NA>               <NA>
## 694                    NA                <NA>               <NA>
## 695                    NA                <NA>               <NA>
## 696                    NA                <NA>               <NA>
## 697                    NA                <NA>               <NA>
## 698                    NA                <NA>               <NA>
## 699                    NA                <NA>               <NA>
## 700                    NA                <NA>               <NA>
## 701                    NA                <NA>               <NA>
## 702                    NA                <NA>               <NA>
## 703                    NA                <NA>               <NA>
## 704                    NA                <NA>               <NA>
## 705                    NA                <NA>               <NA>
## 706                    NA                <NA>               <NA>
## 707                    NA                <NA>               <NA>
## 708                    49            15292041        medickinson
## 709                    NA                <NA>               <NA>
## 710                  1015          3060489838        KevinMKruse
## 711                    NA                <NA>               <NA>
## 712                    NA                <NA>               <NA>
## 713                    NA                <NA>               <NA>
## 714                    NA                <NA>               <NA>
## 715                    NA                <NA>               <NA>
## 716                    NA                <NA>               <NA>
## 717                    NA                <NA>               <NA>
## 718                    NA                <NA>               <NA>
## 719                    NA                <NA>               <NA>
## 720                    NA                <NA>               <NA>
## 721                    NA                <NA>               <NA>
## 722                    NA                <NA>               <NA>
## 723                    NA                <NA>               <NA>
## 724                    NA                <NA>               <NA>
## 725                    NA                <NA>               <NA>
## 726                    NA                <NA>               <NA>
## 727                    NA                <NA>               <NA>
## 728                    NA                <NA>               <NA>
## 729                    NA                <NA>               <NA>
## 730                    NA                <NA>               <NA>
## 731                    NA                <NA>               <NA>
## 732                    NA                <NA>               <NA>
## 733                    NA                <NA>               <NA>
## 734                    NA                <NA>               <NA>
## 735                    NA                <NA>               <NA>
## 736                    NA                <NA>               <NA>
## 737                    NA                <NA>               <NA>
## 738                    NA                <NA>               <NA>
## 739                    NA                <NA>               <NA>
## 740                    NA                <NA>               <NA>
## 741                    NA                <NA>               <NA>
## 742                    NA                <NA>               <NA>
## 743                    NA                <NA>               <NA>
## 744                    NA                <NA>               <NA>
## 745                    NA                <NA>               <NA>
## 746                    NA                <NA>               <NA>
## 747                    NA                <NA>               <NA>
## 748                    NA                <NA>               <NA>
## 749                    NA                <NA>               <NA>
## 750                    NA                <NA>               <NA>
## 751                    NA                <NA>               <NA>
## 752                    NA                <NA>               <NA>
## 753                    NA                <NA>               <NA>
## 754                    NA                <NA>               <NA>
## 755                    NA                <NA>               <NA>
## 756                    NA                <NA>               <NA>
## 757                    NA                <NA>               <NA>
## 758                    NA                <NA>               <NA>
## 759                    NA                <NA>               <NA>
## 760                    NA                <NA>               <NA>
## 761                    NA                <NA>               <NA>
## 762                    NA                <NA>               <NA>
## 763                    NA                <NA>               <NA>
## 764                    NA                <NA>               <NA>
## 765                    NA                <NA>               <NA>
## 766                    NA                <NA>               <NA>
## 767                    NA                <NA>               <NA>
## 768                    NA                <NA>               <NA>
## 769                     4            16834659        SkyNewsAust
## 770                    NA                <NA>               <NA>
## 771                    NA                <NA>               <NA>
## 772                    NA                <NA>               <NA>
## 773                    NA                <NA>               <NA>
## 774                    NA                <NA>               <NA>
## 775                    NA                <NA>               <NA>
## 776                  2636           500704345           Pontifex
## 777                  9708          4395817661           india_pu
## 778                    NA                <NA>               <NA>
## 779                    NA                <NA>               <NA>
## 780                    NA                <NA>               <NA>
## 781                    NA                <NA>               <NA>
## 782                    NA                <NA>               <NA>
## 783                    NA                <NA>               <NA>
## 784                    NA                <NA>               <NA>
## 785                    NA                <NA>               <NA>
## 786                    NA                <NA>               <NA>
## 787                 23080           360054369         AbbottNews
## 788                    NA                <NA>               <NA>
## 789                    NA                <NA>               <NA>
## 790                    NA                <NA>               <NA>
## 791                    NA                <NA>               <NA>
## 792                    NA                <NA>               <NA>
## 793                    NA                <NA>               <NA>
## 794                    NA                <NA>               <NA>
## 795                    NA                <NA>               <NA>
## 796                    NA                <NA>               <NA>
## 797                    NA                <NA>               <NA>
## 798                    NA                <NA>               <NA>
## 799                    NA                <NA>               <NA>
## 800                    NA                <NA>               <NA>
## 801                    NA                <NA>               <NA>
## 802                     3          4053209344      WBSuperSeries
## 803                    NA                <NA>               <NA>
## 804                  3057          2741335327           EM_RESUS
## 805                   590            28468549     USPacificFleet
## 806                    NA                <NA>               <NA>
## 807                     0            33692477      RedMonkeySays
## 808                    NA                <NA>               <NA>
## 809                    NA                <NA>               <NA>
## 810                    NA                <NA>               <NA>
## 811                    NA                <NA>               <NA>
## 812                    NA                <NA>               <NA>
## 813                    NA                <NA>               <NA>
## 814                    NA                <NA>               <NA>
## 815                    NA                <NA>               <NA>
## 816                    NA                <NA>               <NA>
## 817                    NA                <NA>               <NA>
## 818                    NA                <NA>               <NA>
## 819                    NA                <NA>               <NA>
## 820                    NA                <NA>               <NA>
## 821                    NA                <NA>               <NA>
## 822                    NA                <NA>               <NA>
## 823                    NA                <NA>               <NA>
## 824                    NA                <NA>               <NA>
## 825                    NA                <NA>               <NA>
## 826                    NA                <NA>               <NA>
## 827                    NA                <NA>               <NA>
## 828                    NA                <NA>               <NA>
## 829                    NA                <NA>               <NA>
## 830                    NA                <NA>               <NA>
## 831                    NA                <NA>               <NA>
## 832                    NA                <NA>               <NA>
## 833                    NA                <NA>               <NA>
## 834                    NA                <NA>               <NA>
## 835                    NA                <NA>               <NA>
## 836                    NA                <NA>               <NA>
## 837                    NA                <NA>               <NA>
## 838                    NA                <NA>               <NA>
## 839                    NA                <NA>               <NA>
## 840                    NA                <NA>               <NA>
## 841                    NA                <NA>               <NA>
## 842                    39           240649814           TimesNow
## 843                    NA                <NA>               <NA>
## 844                    37           264303725           CBCtanya
## 845                    NA                <NA>               <NA>
## 846                    NA                <NA>               <NA>
## 847                   173            89887215            Yamiche
## 848                    NA                <NA>               <NA>
## 849                    NA                <NA>               <NA>
## 850                    NA                <NA>               <NA>
## 851                    NA                <NA>               <NA>
## 852                    NA                <NA>               <NA>
## 853                    NA                <NA>               <NA>
## 854                    NA                <NA>               <NA>
## 855                    NA                <NA>               <NA>
## 856                    NA                <NA>               <NA>
## 857                     0             2569261      petershankman
## 858                    NA                <NA>               <NA>
## 859                    NA                <NA>               <NA>
## 860                    NA                <NA>               <NA>
## 861                    NA                <NA>               <NA>
## 862                    NA                <NA>               <NA>
## 863                    NA                <NA>               <NA>
## 864                    NA                <NA>               <NA>
## 865                    NA                <NA>               <NA>
## 866                    NA                <NA>               <NA>
## 867                    NA                <NA>               <NA>
## 868                    NA                <NA>               <NA>
## 869                    NA                <NA>               <NA>
## 870                    NA                <NA>               <NA>
## 871                    NA                <NA>               <NA>
## 872                    NA                <NA>               <NA>
## 873                    NA                <NA>               <NA>
## 874                    NA                <NA>               <NA>
## 875                    NA                <NA>               <NA>
## 876                    NA                <NA>               <NA>
## 877                    NA                <NA>               <NA>
## 878                    NA                <NA>               <NA>
## 879                    NA                <NA>               <NA>
## 880                    NA                <NA>               <NA>
## 881                    NA                <NA>               <NA>
## 882                    NA                <NA>               <NA>
## 883                    NA                <NA>               <NA>
## 884                    NA                <NA>               <NA>
## 885                  1668           113286385      fawadchaudhry
## 886                    NA                <NA>               <NA>
## 887                    NA                <NA>               <NA>
## 888                    NA                <NA>               <NA>
## 889                    NA                <NA>               <NA>
## 890                    NA                <NA>               <NA>
## 891                    NA                <NA>               <NA>
## 892                    NA                <NA>               <NA>
## 893                    NA                <NA>               <NA>
## 894                    NA                <NA>               <NA>
## 895                    NA                <NA>               <NA>
## 896                    NA                <NA>               <NA>
## 897                    NA                <NA>               <NA>
## 898                    NA                <NA>               <NA>
## 899                    NA                <NA>               <NA>
## 900                    NA                <NA>               <NA>
## 901                    NA                <NA>               <NA>
## 902                    NA                <NA>               <NA>
## 903                     1          1710232142      JustinoBrooks
## 904                    NA                <NA>               <NA>
## 905                    NA                <NA>               <NA>
## 906                    NA                <NA>               <NA>
## 907                    NA                <NA>               <NA>
## 908                    NA                <NA>               <NA>
## 909                    NA                <NA>               <NA>
## 910                    28            52753292            ICOnews
## 911                    NA                <NA>               <NA>
## 912                    37          2174828818        draiochta14
## 913                    NA                <NA>               <NA>
## 914                    NA                <NA>               <NA>
## 915                    NA                <NA>               <NA>
## 916                    NA                <NA>               <NA>
## 917                    NA                <NA>               <NA>
## 918                    NA                <NA>               <NA>
## 919                    NA                <NA>               <NA>
## 920                    NA                <NA>               <NA>
## 921                    NA                <NA>               <NA>
## 922                     0           137436229         LWHensler3
## 923                    NA                <NA>               <NA>
## 924                    NA                <NA>               <NA>
## 925                    NA                <NA>               <NA>
## 926                    NA                <NA>               <NA>
## 927                    NA                <NA>               <NA>
## 928                    NA                <NA>               <NA>
## 929                    NA                <NA>               <NA>
## 930                    NA                <NA>               <NA>
## 931                    NA                <NA>               <NA>
## 932                    NA                <NA>               <NA>
## 933                    NA                <NA>               <NA>
## 934                    NA                <NA>               <NA>
## 935                    NA                <NA>               <NA>
## 936                    NA                <NA>               <NA>
## 937                    NA                <NA>               <NA>
## 938                    NA                <NA>               <NA>
## 939                    NA                <NA>               <NA>
## 940                    NA                <NA>               <NA>
## 941                    NA                <NA>               <NA>
## 942                    NA                <NA>               <NA>
## 943                    NA                <NA>               <NA>
## 944                  9621 1241040436904460294        TectonixGEO
## 945                    NA                <NA>               <NA>
## 946                    NA                <NA>               <NA>
## 947                    NA                <NA>               <NA>
## 948                    NA                <NA>               <NA>
## 949                    NA                <NA>               <NA>
## 950                    NA                <NA>               <NA>
## 951                    NA                <NA>               <NA>
## 952                    NA                <NA>               <NA>
## 953                    NA                <NA>               <NA>
## 954                    NA                <NA>               <NA>
## 955                    NA                <NA>               <NA>
## 956                    NA                <NA>               <NA>
## 957                    NA                <NA>               <NA>
## 958                    NA                <NA>               <NA>
## 959                    NA                <NA>               <NA>
## 960                    NA                <NA>               <NA>
## 961                    NA                <NA>               <NA>
## 962                    NA                <NA>               <NA>
## 963                    NA                <NA>               <NA>
## 964                    NA                <NA>               <NA>
## 965                    NA                <NA>               <NA>
## 966                    NA                <NA>               <NA>
## 967                    NA                <NA>               <NA>
## 968                    NA                <NA>               <NA>
## 969                    NA                <NA>               <NA>
## 970                    NA                <NA>               <NA>
## 971                    NA                <NA>               <NA>
## 972                   182 1229057886657138690      Bollocks_Dogz
## 973                    NA                <NA>               <NA>
## 974                    NA                <NA>               <NA>
## 975                    NA                <NA>               <NA>
## 976                    NA                <NA>               <NA>
## 977                   133           467576758          RussDiabo
## 978                    NA                <NA>               <NA>
## 979                    NA                <NA>               <NA>
## 980                    NA                <NA>               <NA>
## 981                    NA                <NA>               <NA>
## 982                    NA                <NA>               <NA>
## 983                    NA                <NA>               <NA>
## 984                    NA                <NA>               <NA>
## 985                    NA                <NA>               <NA>
## 986                    NA                <NA>               <NA>
## 987                    NA                <NA>               <NA>
## 988                    NA                <NA>               <NA>
## 989                    NA                <NA>               <NA>
## 990                    NA                <NA>               <NA>
## 991                   117 1082551201626025984    AngelMutabaruka
## 992                    NA                <NA>               <NA>
## 993                    NA                <NA>               <NA>
## 994                    NA                <NA>               <NA>
## 995                    NA                <NA>               <NA>
## 996                    NA                <NA>               <NA>
## 997                    NA                <NA>               <NA>
## 998                    NA                <NA>               <NA>
## 999                    NA                <NA>               <NA>
## 1000                    4  982947209644773376             nkagin
## 1001                   NA                <NA>               <NA>
## 1002                   NA                <NA>               <NA>
## 1003                   NA                <NA>               <NA>
## 1004                   NA                <NA>               <NA>
## 1005                   NA                <NA>               <NA>
## 1006                   NA                <NA>               <NA>
## 1007                 5585             5392522                NPR
## 1008                   NA                <NA>               <NA>
## 1009                   NA                <NA>               <NA>
## 1010                   NA                <NA>               <NA>
## 1011                   NA                <NA>               <NA>
## 1012                   NA                <NA>               <NA>
## 1013                   NA                <NA>               <NA>
## 1014                   NA                <NA>               <NA>
## 1015                   NA                <NA>               <NA>
## 1016                   NA                <NA>               <NA>
## 1017                   NA                <NA>               <NA>
## 1018                   NA                <NA>               <NA>
## 1019                   NA                <NA>               <NA>
## 1020                   NA                <NA>               <NA>
## 1021                   NA                <NA>               <NA>
## 1022                   NA                <NA>               <NA>
## 1023                    3  934771493220880384      TCLcollective
## 1024                   NA                <NA>               <NA>
## 1025                   NA                <NA>               <NA>
## 1026                   NA                <NA>               <NA>
## 1027                  638  997538850472898562    MAGAPATRIOT_TGM
## 1028                   NA                <NA>               <NA>
## 1029                   NA                <NA>               <NA>
## 1030                 5740           288277167            atrupar
## 1031                   NA                <NA>               <NA>
## 1032                   NA                <NA>               <NA>
## 1033                   NA                <NA>               <NA>
## 1034                    5             2261261            jtemple
## 1035                   36  710533452186181632         Ugentilini
## 1036                   NA                <NA>               <NA>
## 1037                 9957          2750127259       RepLeeZeldin
## 1038                   NA                <NA>               <NA>
## 1039                    9            86257323    AmandaRishworth
## 1040                  139            49616273    globaltimesnews
## 1041                   NA                <NA>               <NA>
## 1042                   NA                <NA>               <NA>
## 1043                   NA                <NA>               <NA>
## 1044                   NA                <NA>               <NA>
## 1045                   NA                <NA>               <NA>
## 1046                   NA                <NA>               <NA>
## 1047                   NA                <NA>               <NA>
## 1048                   NA                <NA>               <NA>
## 1049                   NA                <NA>               <NA>
## 1050                   NA                <NA>               <NA>
## 1051                   NA                <NA>               <NA>
## 1052                   NA                <NA>               <NA>
## 1053                   NA                <NA>               <NA>
## 1054                   NA                <NA>               <NA>
## 1055                   NA                <NA>               <NA>
## 1056                   NA                <NA>               <NA>
## 1057                   NA                <NA>               <NA>
## 1058                   NA                <NA>               <NA>
## 1059                   NA                <NA>               <NA>
## 1060                   NA                <NA>               <NA>
## 1061                   NA                <NA>               <NA>
## 1062                   NA                <NA>               <NA>
## 1063                   NA                <NA>               <NA>
## 1064                   NA                <NA>               <NA>
## 1065                   NA                <NA>               <NA>
## 1066                   NA                <NA>               <NA>
## 1067                   NA                <NA>               <NA>
## 1068                   NA                <NA>               <NA>
## 1069                   NA                <NA>               <NA>
## 1070                   NA                <NA>               <NA>
## 1071                   NA                <NA>               <NA>
## 1072                   NA                <NA>               <NA>
## 1073                  468  820705814906339328        justicedems
## 1074                   NA                <NA>               <NA>
## 1075                20112            25073877    realDonaldTrump
## 1076                   NA                <NA>               <NA>
## 1077                   NA                <NA>               <NA>
## 1078                   NA                <NA>               <NA>
## 1079                   NA                <NA>               <NA>
## 1080                   NA                <NA>               <NA>
## 1081                   NA                <NA>               <NA>
## 1082                   NA                <NA>               <NA>
## 1083                   NA                <NA>               <NA>
## 1084                   NA                <NA>               <NA>
## 1085                   NA                <NA>               <NA>
## 1086                   NA                <NA>               <NA>
## 1087                   NA                <NA>               <NA>
## 1088                   NA                <NA>               <NA>
## 1089                   NA                <NA>               <NA>
## 1090                   NA                <NA>               <NA>
## 1091                   NA                <NA>               <NA>
## 1092                   NA                <NA>               <NA>
## 1093                   NA                <NA>               <NA>
## 1094                   NA                <NA>               <NA>
## 1095                   NA                <NA>               <NA>
## 1096                   NA                <NA>               <NA>
## 1097                   NA                <NA>               <NA>
## 1098                   NA                <NA>               <NA>
## 1099                   NA                <NA>               <NA>
## 1100                   NA                <NA>               <NA>
## 1101                  122  865210877678686208           GovStitt
## 1102                   NA                <NA>               <NA>
## 1103                   NA                <NA>               <NA>
## 1104                   NA                <NA>               <NA>
## 1105                   NA                <NA>               <NA>
## 1106                   NA                <NA>               <NA>
## 1107                   NA                <NA>               <NA>
## 1108                   NA                <NA>               <NA>
## 1109                   NA                <NA>               <NA>
## 1110                   NA                <NA>               <NA>
## 1111                   NA                <NA>               <NA>
##                                                                                                         quoted_name
## 1                                                                                                              <NA>
## 2                                                                                                              <NA>
## 3                                                                                                              <NA>
## 4                                                                                                      Yascha Mounk
## 5                                                                                                   Pat Ciccantelli
## 6                                                                                                              <NA>
## 7                                                                                                              <NA>
## 8                                                                                                              <NA>
## 9                                                                                           Holly Figueroa O'Reilly
## 10                                                                                                             <NA>
## 11                                                                                                             <NA>
## 12                                                                                                             <NA>
## 13                                                                                                             <NA>
## 14                                                                                                             <NA>
## 15                                                                                                             <NA>
## 16                                                                                                             <NA>
## 17                                                                                                             <NA>
## 18                                                                                                             <NA>
## 19                                                                                                             <NA>
## 20                                                                                                             <NA>
## 21                                                                                                             <NA>
## 22                                                                                                             <NA>
## 23                                                                                                             <NA>
## 24                                                                                                             <NA>
## 25                                                                                                             <NA>
## 26                                                                                                             <NA>
## 27                                                                                                             <NA>
## 28                                                                                                             <NA>
## 29                                                                                                             <NA>
## 30                                                                                                             <NA>
## 31                                                                                                             <NA>
## 32                                                                                                             <NA>
## 33                                                                                                             <NA>
## 34                                                                                                             <NA>
## 35                                                                                                             <NA>
## 36                                                                                                 BBC News (World)
## 37                                                                                                             <NA>
## 38                                                                                                             <NA>
## 39                                                                                                             <NA>
## 40                                                                                                             <NA>
## 41                                                                                                             <NA>
## 42                                                                                                             <NA>
## 43                                                                                                      Jake Tapper
## 44                                                                                                             <NA>
## 45                                                                                                             <NA>
## 46                                                                                                             <NA>
## 47                                                                                                             <NA>
## 48                                                                                                             <NA>
## 49                                                                                                             <NA>
## 50                                                                                                             <NA>
## 51                                                                                                    BBC News (UK)
## 52                                                                                                             <NA>
## 53                                                                                                             <NA>
## 54                                                                                                             <NA>
## 55                                                                                                             <NA>
## 56                                                                                                             <NA>
## 57                                                                                                             <NA>
## 58                                                                                                             <NA>
## 59                                                                                                             <NA>
## 60                                                                                                             <NA>
## 61                                                                                                             <NA>
## 62                                                                                                             <NA>
## 63                                                                                                             <NA>
## 64                                                                                                             <NA>
## 65                                                                                                             <NA>
## 66                                                                                                             <NA>
## 67                                                                                                             <NA>
## 68                                                                                                             <NA>
## 69                                                                                                             <NA>
## 70                                                                                                             <NA>
## 71                                                                                                             <NA>
## 72                                                                                                             <NA>
## 73                                                                                                             <NA>
## 74                                                                                                             <NA>
## 75                                                                                                             <NA>
## 76                                                                                                 Shimon Prokupecz
## 77                                                                                               The Late Late Show
## 78                                                                                                             <NA>
## 79                                                                                                             <NA>
## 80                                                                                                             <NA>
## 81                                                                                                             <NA>
## 82                                                                                                             <NA>
## 83                                                                                                             <NA>
## 84                                                                                                             <NA>
## 85                                                                                                             <NA>
## 86                                                                                                             <NA>
## 87                                                                                                             <NA>
## 88                                                                                                             <NA>
## 89                                                                                                             <NA>
## 90                                                                                                             <NA>
## 91                                                                                                             <NA>
## 92                                                                                                             <NA>
## 93                                                                                                             <NA>
## 94                                                                                                             <NA>
## 95                                                                                                             <NA>
## 96                                                                                                             <NA>
## 97                                                                                                             <NA>
## 98                                                                                                             <NA>
## 99                                                                                                             <NA>
## 100                                                                                                            <NA>
## 101                                                                                                            <NA>
## 102                                                                                                            <NA>
## 103                                                                                                            <NA>
## 104                                                                                                            <NA>
## 105                                                                      Fatima<U+0001F6A9><U+0001F1EE><U+0001F1F7>
## 106                                                                                                            <NA>
## 107                                                                                                            <NA>
## 108                                                                                                            <NA>
## 109                                                                                                            <NA>
## 110  ILNA/<U+062E><U+0628><U+0631><U+06AF><U+0632><U+0627><U+0631><U+06CC> <U+0627><U+06CC><U+0644><U+0646><U+0627>
## 111                                                                                                            <NA>
## 112                                                                                                            <NA>
## 113                                                                                                            <NA>
## 114                                                                                                            <NA>
## 115                                                                                                            <NA>
## 116                                                                                                            <NA>
## 117                                                                                                            <NA>
## 118                                                                                                            <NA>
## 119                                                                                                            <NA>
## 120                                                                                                      TV News HQ
## 121                                                                                                            <NA>
## 122                                                                                                            <NA>
## 123                                                                                                            <NA>
## 124                                                                                                            <NA>
## 125                                                                                                            <NA>
## 126                                                                                                            <NA>
## 127                                                                                                            <NA>
## 128                                                                                                            <NA>
## 129                                                                                                            <NA>
## 130                                                                                                            <NA>
## 131                                                                                                        DokuFest
## 132                                                                                                            <NA>
## 133                                                                                                            <NA>
## 134                                                                                                            <NA>
## 135                                                                                                            <NA>
## 136                                                                                                            <NA>
## 137                                                                                                            <NA>
## 138                                                                                                            <NA>
## 139                                                                                                            <NA>
## 140                                                                                                            <NA>
## 141                                                                                                            <NA>
## 142                                                                                                            <NA>
## 143                                                                                                            <NA>
## 144                                                                                                            <NA>
## 145                                                                                                            <NA>
## 146                                                                                                            <NA>
## 147                                                                                                            <NA>
## 148                                                                                                            <NA>
## 149                                                                                                            <NA>
## 150                                                                                                            <NA>
## 151                                                                                                            <NA>
## 152                                                                                                            <NA>
## 153                                                                                                            <NA>
## 154                                                                                                      A.R. Moxon
## 155                                                                                                            <NA>
## 156                                                                                                            <NA>
## 157                                                                                                            <NA>
## 158                                                                                                            <NA>
## 159                                                                                                            <NA>
## 160                                                                                                            <NA>
## 161                                                                                                            <NA>
## 162                                                                                                            <NA>
## 163                                                                                                            <NA>
## 164                                                                                                            <NA>
## 165                                                                                                            <NA>
## 166                                                                                                   City of Miami
## 167                                                                                                            <NA>
## 168                                                                                                            <NA>
## 169                                                                                                            <NA>
## 170                                                                                                            <NA>
## 171                                                                                                            <NA>
## 172                                                                                                         Prabhas
## 173                                                                                              NatWest MoneySense
## 174                                                                                                            <NA>
## 175                                                                                                            <NA>
## 176                                                                                                            <NA>
## 177                                                                                                            <NA>
## 178                                                                                                            <NA>
## 179                                                                                                            <NA>
## 180                                                                                                            <NA>
## 181                                                                                                            <NA>
## 182                                                                                                            <NA>
## 183                                                                                                            <NA>
## 184                                                                                                Stephen McDonell
## 185                                                                                                            <NA>
## 186                                         #DrKemiOlunloyo Pharm.D<U+0001F48A><U+0001F637><U+0001F1F3><U+0001F1EC>
## 187                                                                                                            <NA>
## 188                                                                                                            <NA>
## 189                                                                                                            <NA>
## 190                                                                                                            <NA>
## 191                                                                                                            <NA>
## 192                                                                                                            <NA>
## 193                                                                                                            <NA>
## 194                                                                                                            <NA>
## 195                                                                                                            <NA>
## 196                                                                                                            <NA>
## 197                                                                                                            <NA>
## 198                                                                                                            <NA>
## 199                                                                                                            <NA>
## 200                                                                                                            <NA>
## 201                                                                                                            <NA>
## 202                                                                                                            <NA>
## 203                                                                                                            <NA>
## 204                                                                                                            <NA>
## 205                                                                                                            <NA>
## 206                                                                                                            <NA>
## 207                                                                                                            <NA>
## 208                                                                                                            <NA>
## 209                                                                                                            <NA>
## 210                                                                                                            <NA>
## 211                                                                                                            <NA>
## 212                                                                                                            <NA>
## 213                                                                                                            <NA>
## 214                                                                                                            <NA>
## 215                                                                                                            <NA>
## 216                                                                                                            <NA>
## 217                                                                                                            <NA>
## 218                                                                                                            <NA>
## 219                                                                                                            <NA>
## 220                                                                                                            <NA>
## 221                                                                                                            <NA>
## 222                                                                                                            <NA>
## 223                                                                                                            <NA>
## 224                                                                                                            <NA>
## 225                                                                                                      Elad Gross
## 226                                                                                                            <NA>
## 227                                                                                                            <NA>
## 228                                                                                                            <NA>
## 229                                                                                                            <NA>
## 230                                                                                                            <NA>
## 231                                                                                                RFK Human Rights
## 232                                                                                                            <NA>
## 233                                                                                                            <NA>
## 234                                                                                                  Justin Trudeau
## 235                                                                                                            <NA>
## 236                                                                                                            <NA>
## 237                                                                                                            <NA>
## 238                                                                                                            <NA>
## 239                                                                                                            <NA>
## 240                                                                                                            <NA>
## 241                                                                                                            <NA>
## 242                                                                                                            <NA>
## 243                                                                               Air-Wick <U+0001F6E9><U+0001F41D>
## 244                                                                                                            <NA>
## 245                                                                                                            <NA>
## 246                                                                                                            <NA>
## 247                                                                                                            <NA>
## 248                                                                                                            <NA>
## 249                                                                                                            <NA>
## 250                                                                                                            <NA>
## 251                                                                                                            <NA>
## 252                                                                                                            <NA>
## 253                                                                                                            <NA>
## 254                                                                                                            <NA>
## 255                                                                                                            <NA>
## 256                                                                                                 David Zodda, MD
## 257                                                                                                            <NA>
## 258                                                                                                 Donald J. Trump
## 259                                                                                                            <NA>
## 260                                                                  Prof David Raubenheimer & Prof Stephen Simpson
## 261                                                                                                            <NA>
## 262                                                                                                            <NA>
## 263                                                                                       CYP Student Nurse Network
## 264                                                                                                            <NA>
## 265                                                                                                            <NA>
## 266                                                                                                            <NA>
## 267                                                                                                            <NA>
## 268                                                                                                            <NA>
## 269                                                                                                            <NA>
## 270                                                                                                       Ali Zafar
## 271                                                                                                            <NA>
## 272                                                                                                            <NA>
## 273                                                                                                            <NA>
## 274                                                                                                            <NA>
## 275                                                                                                            <NA>
## 276                                                                                                            <NA>
## 277                                                                                                            <NA>
## 278                                                                                                  Channel 5 News
## 279                                                                                                  Vivek Kushwaha
## 280                                                                                                            <NA>
## 281                                                                                                            <NA>
## 282                                                                                                   Texas Tribune
## 283                                                                                                            <NA>
## 284                                                                                                            <NA>
## 285                                                                                                            <NA>
## 286                                                                                                            <NA>
## 287                                                                            The Wiseman Said<U+0001F5E8><U+FE0F>
## 288                                                                                                            <NA>
## 289                                                                                                            <NA>
## 290                                                                                                            <NA>
## 291                                                                                                            <NA>
## 292                                                                                                            <NA>
## 293                                                                                                            <NA>
## 294                                                                                                            <NA>
## 295                                                                                                            <NA>
## 296                                                                                                            <NA>
## 297                                                                                                            <NA>
## 298                                                                                                            <NA>
## 299                                                                                                       Bloomberg
## 300                                                                                                            <NA>
## 301                                                                                                            <NA>
## 302                                                                                                            <NA>
## 303                                                                                                            <NA>
## 304                                                                                                            <NA>
## 305                                                                                                            <NA>
## 306                                                                                                            <NA>
## 307                                                                                                            <NA>
## 308                                                                                                            <NA>
## 309                                                                                                            <NA>
## 310                                                                                                            <NA>
## 311                                                                                                            <NA>
## 312                                                                                                            <NA>
## 313                                                                                                            <NA>
## 314                                                                                                            <NA>
## 315                                                                                                            <NA>
## 316                                                                                                            <NA>
## 317                                                                                                            <NA>
## 318                                                                                                            <NA>
## 319                                                                                                            <NA>
## 320                                                                                                            <NA>
## 321                                                                                                            <NA>
## 322                                                                                                            <NA>
## 323                                                                                                   Alpesh Paleja
## 324                                                                                                            <NA>
## 325                                                                                                            <NA>
## 326                                                                                                            <NA>
## 327                                                                                                            <NA>
## 328                                                                                                            <NA>
## 329                                                                                                            <NA>
## 330                                                                                                            <NA>
## 331                                                                                                            <NA>
## 332                                                                                                            <NA>
## 333                                                                  <U+207D> † <U+207E> ,YAGAMI LIGHT . <U+275E>
## 334                                                                                                            <NA>
## 335                                                                                                            <NA>
## 336                                                                                                            <NA>
## 337                                                                                                            <NA>
## 338                                                                                                            <NA>
## 339                                                                                                            <NA>
## 340                                                                                                            <NA>
## 341                                                                                                            <NA>
## 342                                                                                                            <NA>
## 343                                                                                                            <NA>
## 344                                                                                                            <NA>
## 345                                                                                                            <NA>
## 346                                                                                                            <NA>
## 347                                                                                                            <NA>
## 348                                                                                                            <NA>
## 349                                                                                                            <NA>
## 350                                                                                                            <NA>
## 351                                                                                                            <NA>
## 352                                                                                                            <NA>
## 353                                                                                                            <NA>
## 354                                                                                                            <NA>
## 355                                                                                                            <NA>
## 356                                                                                                            <NA>
## 357                                                                                                            <NA>
## 358                                                                                                            <NA>
## 359                                                                                                            <NA>
## 360                                                                                                            <NA>
## 361                                                                                                            <NA>
## 362                                                                                                            <NA>
## 363                                                                                                            <NA>
## 364                                                                                                            <NA>
## 365                                                                                                            <NA>
## 366                                                                                                            <NA>
## 367                                                                                                            <NA>
## 368                                                                                                            <NA>
## 369                                                                                                            <NA>
## 370                                                                                                            <NA>
## 371                                                                                                            <NA>
## 372                                                                                                            <NA>
## 373                                                                                                            <NA>
## 374                                                                                                            <NA>
## 375                                                                                                 Roche Nederland
## 376                                                                                                            <NA>
## 377                                                                                                            <NA>
## 378                                                                                                            <NA>
## 379                                                                                                            <NA>
## 380                                                                                                            <NA>
## 381                                                                                                            <NA>
## 382                                                                                                            <NA>
## 383                                                                                                            <NA>
## 384                                                                                                            <NA>
## 385                                                                                                            <NA>
## 386                                                                                                            <NA>
## 387                                                                                                   Kate McLennan
## 388                                                                                                            <NA>
## 389                                                                                                            <NA>
## 390                                                                                                            <NA>
## 391                                                                                                            <NA>
## 392                                                                                                            <NA>
## 393                                                                                                            <NA>
## 394                                                                                                            <NA>
## 395                                                                                                            <NA>
## 396                                                                                                            <NA>
## 397                                                                                                            <NA>
## 398                                                                                                            <NA>
## 399                                                                                                            <NA>
## 400                                                                                                            <NA>
## 401                                                                                                            <NA>
## 402                                                                                                            <NA>
## 403                                                                                                            <NA>
## 404                                                                                                            <NA>
## 405                                                                                                            <NA>
## 406                                                                                                            <NA>
## 407                                                                                                            <NA>
## 408                                                                                                            <NA>
## 409                                                                                                            <NA>
## 410                                                                                                            <NA>
## 411                                                                                                            <NA>
## 412                                                                                                            <NA>
## 413                                                                                                            <NA>
## 414                                                                                                            <NA>
## 415                                                                                                            <NA>
## 416                                                                                                            <NA>
## 417                                                                                                            <NA>
## 418                                                                                                            <NA>
## 419                                                                                                            <NA>
## 420                                                                                                            <NA>
## 421                                                                                                            <NA>
## 422                                                                                                            <NA>
## 423                                                                                                            <NA>
## 424                                                                                                            <NA>
## 425                                                                                                            <NA>
## 426                                                                                                            <NA>
## 427                                                                                                            <NA>
## 428                                                                                                            <NA>
## 429                                                                                                            <NA>
## 430                                                                                                            <NA>
## 431                                                                                                            <NA>
## 432                                                                                                            <NA>
## 433                                                                                                            <NA>
## 434                                                                                                            <NA>
## 435                                                                                                            <NA>
## 436                                                                                                            <NA>
## 437                                                                                                            <NA>
## 438       <U+0648><U+0632><U+0627><U+0631><U+0629> <U+0627><U+0644><U+062F><U+0627><U+062E><U+0644><U+064A><U+0629>
## 439                                                                                                            <NA>
## 440                                                                                                            <NA>
## 441                                                                                                            <NA>
## 442                                                                                                            <NA>
## 443                                                                                                            <NA>
## 444                                                                                                            <NA>
## 445                                                                                                            <NA>
## 446                                                                                                            <NA>
## 447                                                                                                            <NA>
## 448                                                                                                            <NA>
## 449                                                                                                            <NA>
## 450                                                                                                            <NA>
## 451                                                                                                  WCVB-TV Boston
## 452                                                                                                            <NA>
## 453                                                                                                            <NA>
## 454                                                                                                            <NA>
## 455                                                                                                            <NA>
## 456                                                                                                            <NA>
## 457                                                                                                            <NA>
## 458                                                                                                            <NA>
## 459                                                                                                            <NA>
## 460                                                                                                            <NA>
## 461                                                                                                            <NA>
## 462                                                                                                            <NA>
## 463                                                                                                            <NA>
## 464                                                                                                            <NA>
## 465                                                                                                            <NA>
## 466                                                                                                            <NA>
## 467                                                                                                            <NA>
## 468                                                                                                            <NA>
## 469                                                                                                            <NA>
## 470                                                                                                            <NA>
## 471                                                                                                            <NA>
## 472                                                                                                            <NA>
## 473                                                                                                            <NA>
## 474                                                                                                            <NA>
## 475                                                                                                            <NA>
## 476                                                                                                            <NA>
## 477                                                                                                            <NA>
## 478                                                                                                            <NA>
## 479                                                                                                            <NA>
## 480                                                                                                            <NA>
## 481                                                                                                            <NA>
## 482                                                                                                            <NA>
## 483                                                                                                            <NA>
## 484                                                                                                            <NA>
## 485                                                                                                            <NA>
## 486                                                                                                            <NA>
## 487                                                                                                            <NA>
## 488                                                                                                            <NA>
## 489                                                                                                            <NA>
## 490                                                                                                            <NA>
## 491                                                                                                            <NA>
## 492                                                                                                            <NA>
## 493                                                                                                            <NA>
## 494                                                                                                            <NA>
## 495                                                                                                            <NA>
## 496                                                                                                    Joana Morais
## 497                                                                                                            <NA>
## 498                                                                                                            <NA>
## 499                                                                                                            <NA>
## 500                                                                                                            <NA>
## 501                                                                                                            <NA>
## 502                                                                                                            <NA>
## 503                                                                                                            <NA>
## 504                                                                                                            <NA>
## 505                                                                                                            <NA>
## 506                                                                                                            <NA>
## 507                                                                                                            <NA>
## 508                                                                                                            <NA>
## 509                                                                                                            <NA>
## 510                                                                                                            <NA>
## 511                                                                                                            <NA>
## 512                                                                                                            <NA>
## 513                                                                                                    BNO Newsroom
## 514                                                                                                            <NA>
## 515                                                                                                            <NA>
## 516                                                                                                            <NA>
## 517                                                                                                            <NA>
## 518                                                                                                            <NA>
## 519                                                                                                            <NA>
## 520                                                                                                            <NA>
## 521                                                                                                            <NA>
## 522                                                                                                            <NA>
## 523                                                                                                            <NA>
## 524                                                                                            PoliticsVideoChannel
## 525                                                                                                            <NA>
## 526                                                                                                            <NA>
## 527                                                                                                            <NA>
## 528                                                                                            MentallyAwareNigeria
## 529                                                                                                            <NA>
## 530                                                                                                            <NA>
## 531                                                                                                            <NA>
## 532                                                                                         Smriti Agrawal Zaneveld
## 533                                                                                                            <NA>
## 534                                                                                                            <NA>
## 535                                                                                                            <NA>
## 536                                                                                                            <NA>
## 537                                                                                                            <NA>
## 538                                                                                                            <NA>
## 539                                                                                                            <NA>
## 540                                                                                                            <NA>
## 541                                                                                                            <NA>
## 542                                                                                                            <NA>
## 543                                                                                                            <NA>
## 544                                                                                                            <NA>
## 545                                                                                                            <NA>
## 546                                                                                                            <NA>
## 547                                                                                                            <NA>
## 548                                                                                                            <NA>
## 549                                                                                                            <NA>
## 550                                                                                                            <NA>
## 551                                                                                                            <NA>
## 552                                                                                                            <NA>
## 553                                                                                                     BarrieToday
## 554                                                                                                            <NA>
## 555                                                                                                            <NA>
## 556                                                                                                            <NA>
## 557                                                                                                            <NA>
## 558                                                                                                 Chitra Tripathi
## 559                                                                                                            <NA>
## 560                                                                                                            <NA>
## 561                                                                                                            <NA>
## 562                                                                                                            <NA>
## 563                                                                                                            <NA>
## 564                                                                                                            <NA>
## 565                                                                                                            <NA>
## 566                                                                                                            <NA>
## 567                                                                                                            <NA>
## 568                                                                                                            <NA>
## 569                                                                                                            <NA>
## 570                                                                                                            <NA>
## 571                                                                                                            <NA>
## 572                                                                                                            <NA>
## 573                                                                                                            <NA>
## 574                                                                                                            <NA>
## 575                                                                                                            <NA>
## 576                                                                                                            <NA>
## 577                                                                                                            <NA>
## 578                                                                                                            <NA>
## 579                                                                                                            <NA>
## 580                                                                                                            <NA>
## 581                                                                                                            <NA>
## 582                                                                                                            <NA>
## 583                                                                                                            <NA>
## 584                                                                                                            <NA>
## 585                                                                                                            <NA>
## 586                                                                                                            <NA>
## 587                                                                                                            <NA>
## 588                                                                                               The Vancouver Sun
## 589                                                                                                            <NA>
## 590                                                                                                            <NA>
## 591                                                                                                            <NA>
## 592                                                                                                            <NA>
## 593                                                                                                            <NA>
## 594                                                                                                            <NA>
## 595                                                                                                            <NA>
## 596                                                                                                            <NA>
## 597                                                                                                            <NA>
## 598                                                                                                            <NA>
## 599                                                                                                            <NA>
## 600                                                                                                            <NA>
## 601                                                                                                            <NA>
## 602                                                                                                            <NA>
## 603                                                                                                    norman smith
## 604                                                                                                            <NA>
## 605                                                                                                            <NA>
## 606                                                                                                            <NA>
## 607                                                                                                            <NA>
## 608                                                                                                            <NA>
## 609                                                                                                            <NA>
## 610                                                                                                            <NA>
## 611                                                                                                            <NA>
## 612                                                                                                            <NA>
## 613                                                                                                            <NA>
## 614                                                                                                            <NA>
## 615                                                                                                            <NA>
## 616                                                                                                     Daniel Dale
## 617                                                                                                Stephen Schwartz
## 618                                                                                                            <NA>
## 619                                                                                                            <NA>
## 620                                                                                                            <NA>
## 621                                                                                                            <NA>
## 622                                                                                                            <NA>
## 623                                                                                                            <NA>
## 624                                                                                                            <NA>
## 625                                                                                                            <NA>
## 626                                                                                                            <NA>
## 627                                                                                                            <NA>
## 628                                                                                                            <NA>
## 629                                                                                                            <NA>
## 630                                                                                                            <NA>
## 631                                                                                                            <NA>
## 632                                                                                                            <NA>
## 633                                                                                                            <NA>
## 634                                                                                                            <NA>
## 635                                                                                                            <NA>
## 636                                                                                                            <NA>
## 637                                                                                               Abhay Kumar Singh
## 638                                                                                                     Julia Baird
## 639                                                                                                            <NA>
## 640                                                                                                            <NA>
## 641                                                                                            Dr. Gerald Bader,PhD
## 642                                                                                                            <NA>
## 643                                                                                                            <NA>
## 644                                                                                                            <NA>
## 645                                                                                                            <NA>
## 646                                                                                                            <NA>
## 647                                                                                                            <NA>
## 648                                                                                                            <NA>
## 649                                                                                                            <NA>
## 650                                                                                                            <NA>
## 651                                                                                                            <NA>
## 652                                                                                                            <NA>
## 653                                                                                                            <NA>
## 654                                                                                                            <NA>
## 655                                                                                                            <NA>
## 656                                                                                                            <NA>
## 657                                                                                                            <NA>
## 658                                                                                                            <NA>
## 659                                                                                                            <NA>
## 660                                                                                                            <NA>
## 661                                                                                                            <NA>
## 662                                                                                                            <NA>
## 663                                                                                                            <NA>
## 664                                                                                                            <NA>
## 665                                                                                                   Matthews Asia
## 666                                                                                                            <NA>
## 667                                                                                                            <NA>
## 668                                                                                                            <NA>
## 669                                                                                                            <NA>
## 670                                                                                                            <NA>
## 671                                                                                                            <NA>
## 672                                                                                                            <NA>
## 673                                                                                                            <NA>
## 674                                                                                                            <NA>
## 675                                                                                                            <NA>
## 676                                                                                                            <NA>
## 677                                                                                                     Bobby Lewis
## 678                                                                                                            <NA>
## 679                                                                                                            <NA>
## 680                                                                                                            <NA>
## 681                                                                             Alok Kumar <U+0001F1EE><U+0001F1F3>
## 682                                                                                                            <NA>
## 683                                                                                                            <NA>
## 684                                                                                                            <NA>
## 685                                                                                                            <NA>
## 686                                                                                                            <NA>
## 687                                                                                                            <NA>
## 688                                                                                                            <NA>
## 689                                                                                                            <NA>
## 690                                                                                                            <NA>
## 691                                                                                                            <NA>
## 692                                                                                                            <NA>
## 693                                                                                                            <NA>
## 694                                                                                                            <NA>
## 695                                                                                                            <NA>
## 696                                                                                                            <NA>
## 697                                                                                                            <NA>
## 698                                                                                                            <NA>
## 699                                                                                                            <NA>
## 700                                                                                                            <NA>
## 701                                                                                                            <NA>
## 702                                                                                                            <NA>
## 703                                                                                                            <NA>
## 704                                                                                                            <NA>
## 705                                                                                                            <NA>
## 706                                                                                                            <NA>
## 707                                                                                                            <NA>
## 708                                                                                           Dr Michelle Dickinson
## 709                                                                                                            <NA>
## 710                                                                                                  Kevin M. Kruse
## 711                                                                                                            <NA>
## 712                                                                                                            <NA>
## 713                                                                                                            <NA>
## 714                                                                                                            <NA>
## 715                                                                                                            <NA>
## 716                                                                                                            <NA>
## 717                                                                                                            <NA>
## 718                                                                                                            <NA>
## 719                                                                                                            <NA>
## 720                                                                                                            <NA>
## 721                                                                                                            <NA>
## 722                                                                                                            <NA>
## 723                                                                                                            <NA>
## 724                                                                                                            <NA>
## 725                                                                                                            <NA>
## 726                                                                                                            <NA>
## 727                                                                                                            <NA>
## 728                                                                                                            <NA>
## 729                                                                                                            <NA>
## 730                                                                                                            <NA>
## 731                                                                                                            <NA>
## 732                                                                                                            <NA>
## 733                                                                                                            <NA>
## 734                                                                                                            <NA>
## 735                                                                                                            <NA>
## 736                                                                                                            <NA>
## 737                                                                                                            <NA>
## 738                                                                                                            <NA>
## 739                                                                                                            <NA>
## 740                                                                                                            <NA>
## 741                                                                                                            <NA>
## 742                                                                                                            <NA>
## 743                                                                                                            <NA>
## 744                                                                                                            <NA>
## 745                                                                                                            <NA>
## 746                                                                                                            <NA>
## 747                                                                                                            <NA>
## 748                                                                                                            <NA>
## 749                                                                                                            <NA>
## 750                                                                                                            <NA>
## 751                                                                                                            <NA>
## 752                                                                                                            <NA>
## 753                                                                                                            <NA>
## 754                                                                                                            <NA>
## 755                                                                                                            <NA>
## 756                                                                                                            <NA>
## 757                                                                                                            <NA>
## 758                                                                                                            <NA>
## 759                                                                                                            <NA>
## 760                                                                                                            <NA>
## 761                                                                                                            <NA>
## 762                                                                                                            <NA>
## 763                                                                                                            <NA>
## 764                                                                                                            <NA>
## 765                                                                                                            <NA>
## 766                                                                                                            <NA>
## 767                                                                                                            <NA>
## 768                                                                                                            <NA>
## 769                                                                                              Sky News Australia
## 770                                                                                                            <NA>
## 771                                                                                                            <NA>
## 772                                                                                                            <NA>
## 773                                                                                                            <NA>
## 774                                                                                                            <NA>
## 775                                                                                                            <NA>
## 776                                                                                                    Pope Francis
## 777                                                                                              India Perez-Urbano
## 778                                                                                                            <NA>
## 779                                                                                                            <NA>
## 780                                                                                                            <NA>
## 781                                                                                                            <NA>
## 782                                                                                                            <NA>
## 783                                                                                                            <NA>
## 784                                                                                                            <NA>
## 785                                                                                                            <NA>
## 786                                                                                                            <NA>
## 787                                                                                                          Abbott
## 788                                                                                                            <NA>
## 789                                                                                                            <NA>
## 790                                                                                                            <NA>
## 791                                                                                                            <NA>
## 792                                                                                                            <NA>
## 793                                                                                                            <NA>
## 794                                                                                                            <NA>
## 795                                                                                                            <NA>
## 796                                                                                                            <NA>
## 797                                                                                                            <NA>
## 798                                                                                                            <NA>
## 799                                                                                                            <NA>
## 800                                                                                                            <NA>
## 801                                                                                                            <NA>
## 802                                                                                       World Boxing Super Series
## 803                                                                                                            <NA>
## 804                                                                                                 Sam Ghali, M.D.
## 805                                                                                              U.S. Pacific Fleet
## 806                                                                                                            <NA>
## 807                                                                                     Red Monkey Says<U+0001F435>
## 808                                                                                                            <NA>
## 809                                                                                                            <NA>
## 810                                                                                                            <NA>
## 811                                                                                                            <NA>
## 812                                                                                                            <NA>
## 813                                                                                                            <NA>
## 814                                                                                                            <NA>
## 815                                                                                                            <NA>
## 816                                                                                                            <NA>
## 817                                                                                                            <NA>
## 818                                                                                                            <NA>
## 819                                                                                                            <NA>
## 820                                                                                                            <NA>
## 821                                                                                                            <NA>
## 822                                                                                                            <NA>
## 823                                                                                                            <NA>
## 824                                                                                                            <NA>
## 825                                                                                                            <NA>
## 826                                                                                                            <NA>
## 827                                                                                                            <NA>
## 828                                                                                                            <NA>
## 829                                                                                                            <NA>
## 830                                                                                                            <NA>
## 831                                                                                                            <NA>
## 832                                                                                                            <NA>
## 833                                                                                                            <NA>
## 834                                                                                                            <NA>
## 835                                                                                                            <NA>
## 836                                                                                                            <NA>
## 837                                                                                                            <NA>
## 838                                                                                                            <NA>
## 839                                                                                                            <NA>
## 840                                                                                                            <NA>
## 841                                                                                                            <NA>
## 842                                                                                                       TIMES NOW
## 843                                                                                                            <NA>
## 844                                                                                                  Tanya Fletcher
## 845                                                                                                            <NA>
## 846                                                                                                            <NA>
## 847                                                                                                Yamiche Alcindor
## 848                                                                                                            <NA>
## 849                                                                                                            <NA>
## 850                                                                                                            <NA>
## 851                                                                                                            <NA>
## 852                                                                                                            <NA>
## 853                                                                                                            <NA>
## 854                                                                                                            <NA>
## 855                                                                                                            <NA>
## 856                                                                                                            <NA>
## 857                                                                                                  Peter Shankman
## 858                                                                                                            <NA>
## 859                                                                                                            <NA>
## 860                                                                                                            <NA>
## 861                                                                                                            <NA>
## 862                                                                                                            <NA>
## 863                                                                                                            <NA>
## 864                                                                                                            <NA>
## 865                                                                                                            <NA>
## 866                                                                                                            <NA>
## 867                                                                                                            <NA>
## 868                                                                                                            <NA>
## 869                                                                                                            <NA>
## 870                                                                                                            <NA>
## 871                                                                                                            <NA>
## 872                                                                                                            <NA>
## 873                                                                                                            <NA>
## 874                                                                                                            <NA>
## 875                                                                                                            <NA>
## 876                                                                                                            <NA>
## 877                                                                                                            <NA>
## 878                                                                                                            <NA>
## 879                                                                                                            <NA>
## 880                                                                                                            <NA>
## 881                                                                                                            <NA>
## 882                                                                                                            <NA>
## 883                                                                                                            <NA>
## 884                                                                                                            <NA>
## 885                                                                                                Ch Fawad Hussain
## 886                                                                                                            <NA>
## 887                                                                                                            <NA>
## 888                                                                                                            <NA>
## 889                                                                                                            <NA>
## 890                                                                                                            <NA>
## 891                                                                                                            <NA>
## 892                                                                                                            <NA>
## 893                                                                                                            <NA>
## 894                                                                                                            <NA>
## 895                                                                                                            <NA>
## 896                                                                                                            <NA>
## 897                                                                                                            <NA>
## 898                                                                                                            <NA>
## 899                                                                                                            <NA>
## 900                                                                                                            <NA>
## 901                                                                                                            <NA>
## 902                                                                                                            <NA>
## 903                                                                                                   Justin Brooks
## 904                                                                                                            <NA>
## 905                                                                                                            <NA>
## 906                                                                                                            <NA>
## 907                                                                                                            <NA>
## 908                                                                                                            <NA>
## 909                                                                                                            <NA>
## 910                                                                                                             ICO
## 911                                                                                                            <NA>
## 912                                                                                                  Terry Dresbach
## 913                                                                                                            <NA>
## 914                                                                                                            <NA>
## 915                                                                                                            <NA>
## 916                                                                                                            <NA>
## 917                                                                                                            <NA>
## 918                                                                                                            <NA>
## 919                                                                                                            <NA>
## 920                                                                                                            <NA>
## 921                                                                                                            <NA>
## 922                                                                                               Louis Hensler III
## 923                                                                                                            <NA>
## 924                                                                                                            <NA>
## 925                                                                                                            <NA>
## 926                                                                                                            <NA>
## 927                                                                                                            <NA>
## 928                                                                                                            <NA>
## 929                                                                                                            <NA>
## 930                                                                                                            <NA>
## 931                                                                                                            <NA>
## 932                                                                                                            <NA>
## 933                                                                                                            <NA>
## 934                                                                                                            <NA>
## 935                                                                                                            <NA>
## 936                                                                                                            <NA>
## 937                                                                                                            <NA>
## 938                                                                                                            <NA>
## 939                                                                                                            <NA>
## 940                                                                                                            <NA>
## 941                                                                                                            <NA>
## 942                                                                                                            <NA>
## 943                                                                                                            <NA>
## 944                                                                                                    Tectonix GEO
## 945                                                                                                            <NA>
## 946                                                                                                            <NA>
## 947                                                                                                            <NA>
## 948                                                                                                            <NA>
## 949                                                                                                            <NA>
## 950                                                                                                            <NA>
## 951                                                                                                            <NA>
## 952                                                                                                            <NA>
## 953                                                                                                            <NA>
## 954                                                                                                            <NA>
## 955                                                                                                            <NA>
## 956                                                                                                            <NA>
## 957                                                                                                            <NA>
## 958                                                                                                            <NA>
## 959                                                                                                            <NA>
## 960                                                                                                            <NA>
## 961                                                                                                            <NA>
## 962                                                                                                            <NA>
## 963                                                                                                            <NA>
## 964                                                                                                            <NA>
## 965                                                                                                            <NA>
## 966                                                                                                            <NA>
## 967                                                                                                            <NA>
## 968                                                                                                            <NA>
## 969                                                                                                            <NA>
## 970                                                                                                            <NA>
## 971                                                                                                            <NA>
## 972  Dogz Bollox<U+0001F3F4><U+000E0067><U+000E0062><U+000E0065><U+000E006E><U+000E0067><U+000E007F>Right Wing News
## 973                                                                                                            <NA>
## 974                                                                                                            <NA>
## 975                                                                                                            <NA>
## 976                                                                                                            <NA>
## 977                                                                                                      Russ Diabo
## 978                                                                                                            <NA>
## 979                                                                                                            <NA>
## 980                                                                                                            <NA>
## 981                                                                                                            <NA>
## 982                                                                                                            <NA>
## 983                                                                                                            <NA>
## 984                                                                                                            <NA>
## 985                                                                                                            <NA>
## 986                                                                                                            <NA>
## 987                                                                                                            <NA>
## 988                                                                                                            <NA>
## 989                                                                                                            <NA>
## 990                                                                                                            <NA>
## 991                                                                                               Mutabaruka Angeli
## 992                                                                                                            <NA>
## 993                                                                                                            <NA>
## 994                                                                                                            <NA>
## 995                                                                                                            <NA>
## 996                                                                                                            <NA>
## 997                                                                                                            <NA>
## 998                                                                                                            <NA>
## 999                                                                                                            <NA>
## 1000                                                                                        Very Low Carb Lifestyle
## 1001                                                                                                           <NA>
## 1002                                                                                                           <NA>
## 1003                                                                                                           <NA>
## 1004                                                                                                           <NA>
## 1005                                                                                                           <NA>
## 1006                                                                                                           <NA>
## 1007                                                                                                            NPR
## 1008                                                                                                           <NA>
## 1009                                                                                                           <NA>
## 1010                                                                                                           <NA>
## 1011                                                                                                           <NA>
## 1012                                                                                                           <NA>
## 1013                                                                                                           <NA>
## 1014                                                                                                           <NA>
## 1015                                                                                                           <NA>
## 1016                                                                                                           <NA>
## 1017                                                                                                           <NA>
## 1018                                                                                                           <NA>
## 1019                                                                                                           <NA>
## 1020                                                                                                           <NA>
## 1021                                                                                                           <NA>
## 1022                                                                                                           <NA>
## 1023                                                                                             TCL Art Collective
## 1024                                                                                                           <NA>
## 1025                                                                                                           <NA>
## 1026                                                                                                           <NA>
## 1027                                                                                                   MAGA PATRIOT
## 1028                                                                                                           <NA>
## 1029                                                                                                           <NA>
## 1030                                                                                                    Aaron Rupar
## 1031                                                                                                           <NA>
## 1032                                                                                                           <NA>
## 1033                                                                                                           <NA>
## 1034                                                                                                   James Temple
## 1035                                                                                                  Ugo Gentilini
## 1036                                                                                                           <NA>
## 1037                                                                                                     Lee Zeldin
## 1038                                                                                                           <NA>
## 1039                                                                                            Amanda Rishworth MP
## 1040                                                                                                   Global Times
## 1041                                                                                                           <NA>
## 1042                                                                                                           <NA>
## 1043                                                                                                           <NA>
## 1044                                                                                                           <NA>
## 1045                                                                                                           <NA>
## 1046                                                                                                           <NA>
## 1047                                                                                                           <NA>
## 1048                                                                                                           <NA>
## 1049                                                                                                           <NA>
## 1050                                                                                                           <NA>
## 1051                                                                                                           <NA>
## 1052                                                                                                           <NA>
## 1053                                                                                                           <NA>
## 1054                                                                                                           <NA>
## 1055                                                                                                           <NA>
## 1056                                                                                                           <NA>
## 1057                                                                                                           <NA>
## 1058                                                                                                           <NA>
## 1059                                                                                                           <NA>
## 1060                                                                                                           <NA>
## 1061                                                                                                           <NA>
## 1062                                                                                                           <NA>
## 1063                                                                                                           <NA>
## 1064                                                                                                           <NA>
## 1065                                                                                                           <NA>
## 1066                                                                                                           <NA>
## 1067                                                                                                           <NA>
## 1068                                                                                                           <NA>
## 1069                                                                                                           <NA>
## 1070                                                                                                           <NA>
## 1071                                                                                                           <NA>
## 1072                                                                                                           <NA>
## 1073                                                                                              Justice Democrats
## 1074                                                                                                           <NA>
## 1075                                                                                                Donald J. Trump
## 1076                                                                                                           <NA>
## 1077                                                                                                           <NA>
## 1078                                                                                                           <NA>
## 1079                                                                                                           <NA>
## 1080                                                                                                           <NA>
## 1081                                                                                                           <NA>
## 1082                                                                                                           <NA>
## 1083                                                                                                           <NA>
## 1084                                                                                                           <NA>
## 1085                                                                                                           <NA>
## 1086                                                                                                           <NA>
## 1087                                                                                                           <NA>
## 1088                                                                                                           <NA>
## 1089                                                                                                           <NA>
## 1090                                                                                                           <NA>
## 1091                                                                                                           <NA>
## 1092                                                                                                           <NA>
## 1093                                                                                                           <NA>
## 1094                                                                                                           <NA>
## 1095                                                                                                           <NA>
## 1096                                                                                                           <NA>
## 1097                                                                                                           <NA>
## 1098                                                                                                           <NA>
## 1099                                                                                                           <NA>
## 1100                                                                                                           <NA>
## 1101                                                                                           Governor Kevin Stitt
## 1102                                                                                                           <NA>
## 1103                                                                                                           <NA>
## 1104                                                                                                           <NA>
## 1105                                                                                                           <NA>
## 1106                                                                                                           <NA>
## 1107                                                                                                           <NA>
## 1108                                                                                                           <NA>
## 1109                                                                                                           <NA>
## 1110                                                                                                           <NA>
## 1111                                                                                                           <NA>
##      quoted_followers_count quoted_friends_count quoted_statuses_count
## 1                        NA                   NA                    NA
## 2                        NA                   NA                    NA
## 3                        NA                   NA                    NA
## 4                     74950                 1869                  9844
## 5                       356                  132                   205
## 6                        NA                   NA                    NA
## 7                        NA                   NA                    NA
## 8                        NA                   NA                    NA
## 9                    238608                 5923                 77436
## 10                       NA                   NA                    NA
## 11                       NA                   NA                    NA
## 12                       NA                   NA                    NA
## 13                       NA                   NA                    NA
## 14                       NA                   NA                    NA
## 15                       NA                   NA                    NA
## 16                       NA                   NA                    NA
## 17                       NA                   NA                    NA
## 18                       NA                   NA                    NA
## 19                       NA                   NA                    NA
## 20                       NA                   NA                    NA
## 21                       NA                   NA                    NA
## 22                       NA                   NA                    NA
## 23                       NA                   NA                    NA
## 24                       NA                   NA                    NA
## 25                       NA                   NA                    NA
## 26                       NA                   NA                    NA
## 27                       NA                   NA                    NA
## 28                       NA                   NA                    NA
## 29                       NA                   NA                    NA
## 30                       NA                   NA                    NA
## 31                       NA                   NA                    NA
## 32                       NA                   NA                    NA
## 33                       NA                   NA                    NA
## 34                       NA                   NA                    NA
## 35                       NA                   NA                    NA
## 36                 27390992                   71                307461
## 37                       NA                   NA                    NA
## 38                       NA                   NA                    NA
## 39                       NA                   NA                    NA
## 40                       NA                   NA                    NA
## 41                       NA                   NA                    NA
## 42                       NA                   NA                    NA
## 43                  2355991                 8405                209450
## 44                       NA                   NA                    NA
## 45                       NA                   NA                    NA
## 46                       NA                   NA                    NA
## 47                       NA                   NA                    NA
## 48                       NA                   NA                    NA
## 49                       NA                   NA                    NA
## 50                       NA                   NA                    NA
## 51                 10736451                  101                411316
## 52                       NA                   NA                    NA
## 53                       NA                   NA                    NA
## 54                       NA                   NA                    NA
## 55                       NA                   NA                    NA
## 56                       NA                   NA                    NA
## 57                       NA                   NA                    NA
## 58                       NA                   NA                    NA
## 59                       NA                   NA                    NA
## 60                       NA                   NA                    NA
## 61                       NA                   NA                    NA
## 62                       NA                   NA                    NA
## 63                       NA                   NA                    NA
## 64                       NA                   NA                    NA
## 65                       NA                   NA                    NA
## 66                       NA                   NA                    NA
## 67                       NA                   NA                    NA
## 68                       NA                   NA                    NA
## 69                       NA                   NA                    NA
## 70                       NA                   NA                    NA
## 71                       NA                   NA                    NA
## 72                       NA                   NA                    NA
## 73                       NA                   NA                    NA
## 74                       NA                   NA                    NA
## 75                       NA                   NA                    NA
## 76                   107855                  889                 18578
## 77                   185693                 1284                  4220
## 78                       NA                   NA                    NA
## 79                       NA                   NA                    NA
## 80                       NA                   NA                    NA
## 81                       NA                   NA                    NA
## 82                       NA                   NA                    NA
## 83                       NA                   NA                    NA
## 84                       NA                   NA                    NA
## 85                       NA                   NA                    NA
## 86                       NA                   NA                    NA
## 87                       NA                   NA                    NA
## 88                       NA                   NA                    NA
## 89                       NA                   NA                    NA
## 90                       NA                   NA                    NA
## 91                       NA                   NA                    NA
## 92                       NA                   NA                    NA
## 93                       NA                   NA                    NA
## 94                       NA                   NA                    NA
## 95                       NA                   NA                    NA
## 96                       NA                   NA                    NA
## 97                       NA                   NA                    NA
## 98                       NA                   NA                    NA
## 99                       NA                   NA                    NA
## 100                      NA                   NA                    NA
## 101                      NA                   NA                    NA
## 102                      NA                   NA                    NA
## 103                      NA                   NA                    NA
## 104                      NA                   NA                    NA
## 105                    5451                  344                 64354
## 106                      NA                   NA                    NA
## 107                      NA                   NA                    NA
## 108                      NA                   NA                    NA
## 109                      NA                   NA                    NA
## 110                   60845                   17                 32336
## 111                      NA                   NA                    NA
## 112                      NA                   NA                    NA
## 113                      NA                   NA                    NA
## 114                      NA                   NA                    NA
## 115                      NA                   NA                    NA
## 116                      NA                   NA                    NA
## 117                      NA                   NA                    NA
## 118                      NA                   NA                    NA
## 119                      NA                   NA                    NA
## 120                   15024                 5621                 13166
## 121                      NA                   NA                    NA
## 122                      NA                   NA                    NA
## 123                      NA                   NA                    NA
## 124                      NA                   NA                    NA
## 125                      NA                   NA                    NA
## 126                      NA                   NA                    NA
## 127                      NA                   NA                    NA
## 128                      NA                   NA                    NA
## 129                      NA                   NA                    NA
## 130                      NA                   NA                    NA
## 131                    4145                  182                  1285
## 132                      NA                   NA                    NA
## 133                      NA                   NA                    NA
## 134                      NA                   NA                    NA
## 135                      NA                   NA                    NA
## 136                      NA                   NA                    NA
## 137                      NA                   NA                    NA
## 138                      NA                   NA                    NA
## 139                      NA                   NA                    NA
## 140                      NA                   NA                    NA
## 141                      NA                   NA                    NA
## 142                      NA                   NA                    NA
## 143                      NA                   NA                    NA
## 144                      NA                   NA                    NA
## 145                      NA                   NA                    NA
## 146                      NA                   NA                    NA
## 147                      NA                   NA                    NA
## 148                      NA                   NA                    NA
## 149                      NA                   NA                    NA
## 150                      NA                   NA                    NA
## 151                      NA                   NA                    NA
## 152                      NA                   NA                    NA
## 153                      NA                   NA                    NA
## 154                  112982                  269                105734
## 155                      NA                   NA                    NA
## 156                      NA                   NA                    NA
## 157                      NA                   NA                    NA
## 158                      NA                   NA                    NA
## 159                      NA                   NA                    NA
## 160                      NA                   NA                    NA
## 161                      NA                   NA                    NA
## 162                      NA                   NA                    NA
## 163                      NA                   NA                    NA
## 164                      NA                   NA                    NA
## 165                      NA                   NA                    NA
## 166                  148500                  274                 14059
## 167                      NA                   NA                    NA
## 168                      NA                   NA                    NA
## 169                      NA                   NA                    NA
## 170                      NA                   NA                    NA
## 171                      NA                   NA                    NA
## 172                 1491220                    0                  3539
## 173                     397                  256                   215
## 174                      NA                   NA                    NA
## 175                      NA                   NA                    NA
## 176                      NA                   NA                    NA
## 177                      NA                   NA                    NA
## 178                      NA                   NA                    NA
## 179                      NA                   NA                    NA
## 180                      NA                   NA                    NA
## 181                      NA                   NA                    NA
## 182                      NA                   NA                    NA
## 183                      NA                   NA                    NA
## 184                   67335                  778                 44738
## 185                      NA                   NA                    NA
## 186                  136488                  115                110297
## 187                      NA                   NA                    NA
## 188                      NA                   NA                    NA
## 189                      NA                   NA                    NA
## 190                      NA                   NA                    NA
## 191                      NA                   NA                    NA
## 192                      NA                   NA                    NA
## 193                      NA                   NA                    NA
## 194                      NA                   NA                    NA
## 195                      NA                   NA                    NA
## 196                      NA                   NA                    NA
## 197                      NA                   NA                    NA
## 198                      NA                   NA                    NA
## 199                      NA                   NA                    NA
## 200                      NA                   NA                    NA
## 201                      NA                   NA                    NA
## 202                      NA                   NA                    NA
## 203                      NA                   NA                    NA
## 204                      NA                   NA                    NA
## 205                      NA                   NA                    NA
## 206                      NA                   NA                    NA
## 207                      NA                   NA                    NA
## 208                      NA                   NA                    NA
## 209                      NA                   NA                    NA
## 210                      NA                   NA                    NA
## 211                      NA                   NA                    NA
## 212                      NA                   NA                    NA
## 213                      NA                   NA                    NA
## 214                      NA                   NA                    NA
## 215                      NA                   NA                    NA
## 216                      NA                   NA                    NA
## 217                      NA                   NA                    NA
## 218                      NA                   NA                    NA
## 219                      NA                   NA                    NA
## 220                      NA                   NA                    NA
## 221                      NA                   NA                    NA
## 222                      NA                   NA                    NA
## 223                      NA                   NA                    NA
## 224                      NA                   NA                    NA
## 225                    3034                  350                  7580
## 226                      NA                   NA                    NA
## 227                      NA                   NA                    NA
## 228                      NA                   NA                    NA
## 229                      NA                   NA                    NA
## 230                      NA                   NA                    NA
## 231                   35022                 1664                 17028
## 232                      NA                   NA                    NA
## 233                      NA                   NA                    NA
## 234                 4862481                  950                 27909
## 235                      NA                   NA                    NA
## 236                      NA                   NA                    NA
## 237                      NA                   NA                    NA
## 238                      NA                   NA                    NA
## 239                      NA                   NA                    NA
## 240                      NA                   NA                    NA
## 241                      NA                   NA                    NA
## 242                      NA                   NA                    NA
## 243                      86                  128                  1081
## 244                      NA                   NA                    NA
## 245                      NA                   NA                    NA
## 246                      NA                   NA                    NA
## 247                      NA                   NA                    NA
## 248                      NA                   NA                    NA
## 249                      NA                   NA                    NA
## 250                      NA                   NA                    NA
## 251                      NA                   NA                    NA
## 252                      NA                   NA                    NA
## 253                      NA                   NA                    NA
## 254                      NA                   NA                    NA
## 255                      NA                   NA                    NA
## 256                    9829                 1351                  2687
## 257                      NA                   NA                    NA
## 258                75256467                   47                 50196
## 259                      NA                   NA                    NA
## 260                     110                  251                   102
## 261                      NA                   NA                    NA
## 262                      NA                   NA                    NA
## 263                    1549                 2202                  5812
## 264                      NA                   NA                    NA
## 265                      NA                   NA                    NA
## 266                      NA                   NA                    NA
## 267                      NA                   NA                    NA
## 268                      NA                   NA                    NA
## 269                      NA                   NA                    NA
## 270                 2444521                   87                 12310
## 271                      NA                   NA                    NA
## 272                      NA                   NA                    NA
## 273                      NA                   NA                    NA
## 274                      NA                   NA                    NA
## 275                      NA                   NA                    NA
## 276                      NA                   NA                    NA
## 277                      NA                   NA                    NA
## 278                   24640                  885                 31036
## 279                     695                  676                 37313
## 280                      NA                   NA                    NA
## 281                      NA                   NA                    NA
## 282                  219712                59796                 86826
## 283                      NA                   NA                    NA
## 284                      NA                   NA                    NA
## 285                      NA                   NA                    NA
## 286                      NA                   NA                    NA
## 287                   19403                19371                 27516
## 288                      NA                   NA                    NA
## 289                      NA                   NA                    NA
## 290                      NA                   NA                    NA
## 291                      NA                   NA                    NA
## 292                      NA                   NA                    NA
## 293                      NA                   NA                    NA
## 294                      NA                   NA                    NA
## 295                      NA                   NA                    NA
## 296                      NA                   NA                    NA
## 297                      NA                   NA                    NA
## 298                      NA                   NA                    NA
## 299                 6083679                 1286                557668
## 300                      NA                   NA                    NA
## 301                      NA                   NA                    NA
## 302                      NA                   NA                    NA
## 303                      NA                   NA                    NA
## 304                      NA                   NA                    NA
## 305                      NA                   NA                    NA
## 306                      NA                   NA                    NA
## 307                      NA                   NA                    NA
## 308                      NA                   NA                    NA
## 309                      NA                   NA                    NA
## 310                      NA                   NA                    NA
## 311                      NA                   NA                    NA
## 312                      NA                   NA                    NA
## 313                      NA                   NA                    NA
## 314                      NA                   NA                    NA
## 315                      NA                   NA                    NA
## 316                      NA                   NA                    NA
## 317                      NA                   NA                    NA
## 318                      NA                   NA                    NA
## 319                      NA                   NA                    NA
## 320                      NA                   NA                    NA
## 321                      NA                   NA                    NA
## 322                      NA                   NA                    NA
## 323                     505                  319                  2050
## 324                      NA                   NA                    NA
## 325                      NA                   NA                    NA
## 326                      NA                   NA                    NA
## 327                      NA                   NA                    NA
## 328                      NA                   NA                    NA
## 329                      NA                   NA                    NA
## 330                      NA                   NA                    NA
## 331                      NA                   NA                    NA
## 332                      NA                   NA                    NA
## 333                     589                  167                  7846
## 334                      NA                   NA                    NA
## 335                      NA                   NA                    NA
## 336                      NA                   NA                    NA
## 337                      NA                   NA                    NA
## 338                      NA                   NA                    NA
## 339                      NA                   NA                    NA
## 340                      NA                   NA                    NA
## 341                      NA                   NA                    NA
## 342                      NA                   NA                    NA
## 343                      NA                   NA                    NA
## 344                      NA                   NA                    NA
## 345                      NA                   NA                    NA
## 346                      NA                   NA                    NA
## 347                      NA                   NA                    NA
## 348                      NA                   NA                    NA
## 349                      NA                   NA                    NA
## 350                      NA                   NA                    NA
## 351                      NA                   NA                    NA
## 352                      NA                   NA                    NA
## 353                      NA                   NA                    NA
## 354                      NA                   NA                    NA
## 355                      NA                   NA                    NA
## 356                      NA                   NA                    NA
## 357                      NA                   NA                    NA
## 358                      NA                   NA                    NA
## 359                      NA                   NA                    NA
## 360                      NA                   NA                    NA
## 361                      NA                   NA                    NA
## 362                      NA                   NA                    NA
## 363                      NA                   NA                    NA
## 364                      NA                   NA                    NA
## 365                      NA                   NA                    NA
## 366                      NA                   NA                    NA
## 367                      NA                   NA                    NA
## 368                      NA                   NA                    NA
## 369                      NA                   NA                    NA
## 370                      NA                   NA                    NA
## 371                      NA                   NA                    NA
## 372                      NA                   NA                    NA
## 373                      NA                   NA                    NA
## 374                      NA                   NA                    NA
## 375                     584                  657                   848
## 376                      NA                   NA                    NA
## 377                      NA                   NA                    NA
## 378                      NA                   NA                    NA
## 379                      NA                   NA                    NA
## 380                      NA                   NA                    NA
## 381                      NA                   NA                    NA
## 382                      NA                   NA                    NA
## 383                      NA                   NA                    NA
## 384                      NA                   NA                    NA
## 385                      NA                   NA                    NA
## 386                      NA                   NA                    NA
## 387                   26181                  648                  4717
## 388                      NA                   NA                    NA
## 389                      NA                   NA                    NA
## 390                      NA                   NA                    NA
## 391                      NA                   NA                    NA
## 392                      NA                   NA                    NA
## 393                      NA                   NA                    NA
## 394                      NA                   NA                    NA
## 395                      NA                   NA                    NA
## 396                      NA                   NA                    NA
## 397                      NA                   NA                    NA
## 398                      NA                   NA                    NA
## 399                      NA                   NA                    NA
## 400                      NA                   NA                    NA
## 401                      NA                   NA                    NA
## 402                      NA                   NA                    NA
## 403                      NA                   NA                    NA
## 404                      NA                   NA                    NA
## 405                      NA                   NA                    NA
## 406                      NA                   NA                    NA
## 407                      NA                   NA                    NA
## 408                      NA                   NA                    NA
## 409                      NA                   NA                    NA
## 410                      NA                   NA                    NA
## 411                      NA                   NA                    NA
## 412                      NA                   NA                    NA
## 413                      NA                   NA                    NA
## 414                      NA                   NA                    NA
## 415                      NA                   NA                    NA
## 416                      NA                   NA                    NA
## 417                      NA                   NA                    NA
## 418                      NA                   NA                    NA
## 419                      NA                   NA                    NA
## 420                      NA                   NA                    NA
## 421                      NA                   NA                    NA
## 422                      NA                   NA                    NA
## 423                      NA                   NA                    NA
## 424                      NA                   NA                    NA
## 425                      NA                   NA                    NA
## 426                      NA                   NA                    NA
## 427                      NA                   NA                    NA
## 428                      NA                   NA                    NA
## 429                      NA                   NA                    NA
## 430                      NA                   NA                    NA
## 431                      NA                   NA                    NA
## 432                      NA                   NA                    NA
## 433                      NA                   NA                    NA
## 434                      NA                   NA                    NA
## 435                      NA                   NA                    NA
## 436                      NA                   NA                    NA
## 437                      NA                   NA                    NA
## 438                 3348138                    1                  3354
## 439                      NA                   NA                    NA
## 440                      NA                   NA                    NA
## 441                      NA                   NA                    NA
## 442                      NA                   NA                    NA
## 443                      NA                   NA                    NA
## 444                      NA                   NA                    NA
## 445                      NA                   NA                    NA
## 446                      NA                   NA                    NA
## 447                      NA                   NA                    NA
## 448                      NA                   NA                    NA
## 449                      NA                   NA                    NA
## 450                      NA                   NA                    NA
## 451                  292728                  974                468864
## 452                      NA                   NA                    NA
## 453                      NA                   NA                    NA
## 454                      NA                   NA                    NA
## 455                      NA                   NA                    NA
## 456                      NA                   NA                    NA
## 457                      NA                   NA                    NA
## 458                      NA                   NA                    NA
## 459                      NA                   NA                    NA
## 460                      NA                   NA                    NA
## 461                      NA                   NA                    NA
## 462                      NA                   NA                    NA
## 463                      NA                   NA                    NA
## 464                      NA                   NA                    NA
## 465                      NA                   NA                    NA
## 466                      NA                   NA                    NA
## 467                      NA                   NA                    NA
## 468                      NA                   NA                    NA
## 469                      NA                   NA                    NA
## 470                      NA                   NA                    NA
## 471                      NA                   NA                    NA
## 472                      NA                   NA                    NA
## 473                      NA                   NA                    NA
## 474                      NA                   NA                    NA
## 475                      NA                   NA                    NA
## 476                      NA                   NA                    NA
## 477                      NA                   NA                    NA
## 478                      NA                   NA                    NA
## 479                      NA                   NA                    NA
## 480                      NA                   NA                    NA
## 481                      NA                   NA                    NA
## 482                      NA                   NA                    NA
## 483                      NA                   NA                    NA
## 484                      NA                   NA                    NA
## 485                      NA                   NA                    NA
## 486                      NA                   NA                    NA
## 487                      NA                   NA                    NA
## 488                      NA                   NA                    NA
## 489                      NA                   NA                    NA
## 490                      NA                   NA                    NA
## 491                      NA                   NA                    NA
## 492                      NA                   NA                    NA
## 493                      NA                   NA                    NA
## 494                      NA                   NA                    NA
## 495                      NA                   NA                    NA
## 496                    7530                 3983                175874
## 497                      NA                   NA                    NA
## 498                      NA                   NA                    NA
## 499                      NA                   NA                    NA
## 500                      NA                   NA                    NA
## 501                      NA                   NA                    NA
## 502                      NA                   NA                    NA
## 503                      NA                   NA                    NA
## 504                      NA                   NA                    NA
## 505                      NA                   NA                    NA
## 506                      NA                   NA                    NA
## 507                      NA                   NA                    NA
## 508                      NA                   NA                    NA
## 509                      NA                   NA                    NA
## 510                      NA                   NA                    NA
## 511                      NA                   NA                    NA
## 512                      NA                   NA                    NA
## 513                  209063                    5                  6180
## 514                      NA                   NA                    NA
## 515                      NA                   NA                    NA
## 516                      NA                   NA                    NA
## 517                      NA                   NA                    NA
## 518                      NA                   NA                    NA
## 519                      NA                   NA                    NA
## 520                      NA                   NA                    NA
## 521                      NA                   NA                    NA
## 522                      NA                   NA                    NA
## 523                      NA                   NA                    NA
## 524                   94784                58296                  8884
## 525                      NA                   NA                    NA
## 526                      NA                   NA                    NA
## 527                      NA                   NA                    NA
## 528                   29879                  169                 36426
## 529                      NA                   NA                    NA
## 530                      NA                   NA                    NA
## 531                      NA                   NA                    NA
## 532                     117                  491                   141
## 533                      NA                   NA                    NA
## 534                      NA                   NA                    NA
## 535                      NA                   NA                    NA
## 536                      NA                   NA                    NA
## 537                      NA                   NA                    NA
## 538                      NA                   NA                    NA
## 539                      NA                   NA                    NA
## 540                      NA                   NA                    NA
## 541                      NA                   NA                    NA
## 542                      NA                   NA                    NA
## 543                      NA                   NA                    NA
## 544                      NA                   NA                    NA
## 545                      NA                   NA                    NA
## 546                      NA                   NA                    NA
## 547                      NA                   NA                    NA
## 548                      NA                   NA                    NA
## 549                      NA                   NA                    NA
## 550                      NA                   NA                    NA
## 551                      NA                   NA                    NA
## 552                      NA                   NA                    NA
## 553                    3401                  820                 26521
## 554                      NA                   NA                    NA
## 555                      NA                   NA                    NA
## 556                      NA                   NA                    NA
## 557                      NA                   NA                    NA
## 558                  423093                  467                 17685
## 559                      NA                   NA                    NA
## 560                      NA                   NA                    NA
## 561                      NA                   NA                    NA
## 562                      NA                   NA                    NA
## 563                      NA                   NA                    NA
## 564                      NA                   NA                    NA
## 565                      NA                   NA                    NA
## 566                      NA                   NA                    NA
## 567                      NA                   NA                    NA
## 568                      NA                   NA                    NA
## 569                      NA                   NA                    NA
## 570                      NA                   NA                    NA
## 571                      NA                   NA                    NA
## 572                      NA                   NA                    NA
## 573                      NA                   NA                    NA
## 574                      NA                   NA                    NA
## 575                      NA                   NA                    NA
## 576                      NA                   NA                    NA
## 577                      NA                   NA                    NA
## 578                      NA                   NA                    NA
## 579                      NA                   NA                    NA
## 580                      NA                   NA                    NA
## 581                      NA                   NA                    NA
## 582                      NA                   NA                    NA
## 583                      NA                   NA                    NA
## 584                      NA                   NA                    NA
## 585                      NA                   NA                    NA
## 586                      NA                   NA                    NA
## 587                      NA                   NA                    NA
## 588                  250370                 1015                290917
## 589                      NA                   NA                    NA
## 590                      NA                   NA                    NA
## 591                      NA                   NA                    NA
## 592                      NA                   NA                    NA
## 593                      NA                   NA                    NA
## 594                      NA                   NA                    NA
## 595                      NA                   NA                    NA
## 596                      NA                   NA                    NA
## 597                      NA                   NA                    NA
## 598                      NA                   NA                    NA
## 599                      NA                   NA                    NA
## 600                      NA                   NA                    NA
## 601                      NA                   NA                    NA
## 602                      NA                   NA                    NA
## 603                  130030                 1172                 25951
## 604                      NA                   NA                    NA
## 605                      NA                   NA                    NA
## 606                      NA                   NA                    NA
## 607                      NA                   NA                    NA
## 608                      NA                   NA                    NA
## 609                      NA                   NA                    NA
## 610                      NA                   NA                    NA
## 611                      NA                   NA                    NA
## 612                      NA                   NA                    NA
## 613                      NA                   NA                    NA
## 614                      NA                   NA                    NA
## 615                      NA                   NA                    NA
## 616                  709870                 1305                 99746
## 617                   28591                 1283                 26112
## 618                      NA                   NA                    NA
## 619                      NA                   NA                    NA
## 620                      NA                   NA                    NA
## 621                      NA                   NA                    NA
## 622                      NA                   NA                    NA
## 623                      NA                   NA                    NA
## 624                      NA                   NA                    NA
## 625                      NA                   NA                    NA
## 626                      NA                   NA                    NA
## 627                      NA                   NA                    NA
## 628                      NA                   NA                    NA
## 629                      NA                   NA                    NA
## 630                      NA                   NA                    NA
## 631                      NA                   NA                    NA
## 632                      NA                   NA                    NA
## 633                      NA                   NA                    NA
## 634                      NA                   NA                    NA
## 635                      NA                   NA                    NA
## 636                      NA                   NA                    NA
## 637                     565                  446                  4907
## 638                   68989                 2133                 25074
## 639                      NA                   NA                    NA
## 640                      NA                   NA                    NA
## 641                   20565                19569                 30066
## 642                      NA                   NA                    NA
## 643                      NA                   NA                    NA
## 644                      NA                   NA                    NA
## 645                      NA                   NA                    NA
## 646                      NA                   NA                    NA
## 647                      NA                   NA                    NA
## 648                      NA                   NA                    NA
## 649                      NA                   NA                    NA
## 650                      NA                   NA                    NA
## 651                      NA                   NA                    NA
## 652                      NA                   NA                    NA
## 653                      NA                   NA                    NA
## 654                      NA                   NA                    NA
## 655                      NA                   NA                    NA
## 656                      NA                   NA                    NA
## 657                      NA                   NA                    NA
## 658                      NA                   NA                    NA
## 659                      NA                   NA                    NA
## 660                      NA                   NA                    NA
## 661                      NA                   NA                    NA
## 662                      NA                   NA                    NA
## 663                      NA                   NA                    NA
## 664                      NA                   NA                    NA
## 665                    5250                  286                  1867
## 666                      NA                   NA                    NA
## 667                      NA                   NA                    NA
## 668                      NA                   NA                    NA
## 669                      NA                   NA                    NA
## 670                      NA                   NA                    NA
## 671                      NA                   NA                    NA
## 672                      NA                   NA                    NA
## 673                      NA                   NA                    NA
## 674                      NA                   NA                    NA
## 675                      NA                   NA                    NA
## 676                      NA                   NA                    NA
## 677                   40655                 1112                 55722
## 678                      NA                   NA                    NA
## 679                      NA                   NA                    NA
## 680                      NA                   NA                    NA
## 681                   15617                  452                  6276
## 682                      NA                   NA                    NA
## 683                      NA                   NA                    NA
## 684                      NA                   NA                    NA
## 685                      NA                   NA                    NA
## 686                      NA                   NA                    NA
## 687                      NA                   NA                    NA
## 688                      NA                   NA                    NA
## 689                      NA                   NA                    NA
## 690                      NA                   NA                    NA
## 691                      NA                   NA                    NA
## 692                      NA                   NA                    NA
## 693                      NA                   NA                    NA
## 694                      NA                   NA                    NA
## 695                      NA                   NA                    NA
## 696                      NA                   NA                    NA
## 697                      NA                   NA                    NA
## 698                      NA                   NA                    NA
## 699                      NA                   NA                    NA
## 700                      NA                   NA                    NA
## 701                      NA                   NA                    NA
## 702                      NA                   NA                    NA
## 703                      NA                   NA                    NA
## 704                      NA                   NA                    NA
## 705                      NA                   NA                    NA
## 706                      NA                   NA                    NA
## 707                      NA                   NA                    NA
## 708                   36894                 5602                 18778
## 709                      NA                   NA                    NA
## 710                  393542                 1947                128000
## 711                      NA                   NA                    NA
## 712                      NA                   NA                    NA
## 713                      NA                   NA                    NA
## 714                      NA                   NA                    NA
## 715                      NA                   NA                    NA
## 716                      NA                   NA                    NA
## 717                      NA                   NA                    NA
## 718                      NA                   NA                    NA
## 719                      NA                   NA                    NA
## 720                      NA                   NA                    NA
## 721                      NA                   NA                    NA
## 722                      NA                   NA                    NA
## 723                      NA                   NA                    NA
## 724                      NA                   NA                    NA
## 725                      NA                   NA                    NA
## 726                      NA                   NA                    NA
## 727                      NA                   NA                    NA
## 728                      NA                   NA                    NA
## 729                      NA                   NA                    NA
## 730                      NA                   NA                    NA
## 731                      NA                   NA                    NA
## 732                      NA                   NA                    NA
## 733                      NA                   NA                    NA
## 734                      NA                   NA                    NA
## 735                      NA                   NA                    NA
## 736                      NA                   NA                    NA
## 737                      NA                   NA                    NA
## 738                      NA                   NA                    NA
## 739                      NA                   NA                    NA
## 740                      NA                   NA                    NA
## 741                      NA                   NA                    NA
## 742                      NA                   NA                    NA
## 743                      NA                   NA                    NA
## 744                      NA                   NA                    NA
## 745                      NA                   NA                    NA
## 746                      NA                   NA                    NA
## 747                      NA                   NA                    NA
## 748                      NA                   NA                    NA
## 749                      NA                   NA                    NA
## 750                      NA                   NA                    NA
## 751                      NA                   NA                    NA
## 752                      NA                   NA                    NA
## 753                      NA                   NA                    NA
## 754                      NA                   NA                    NA
## 755                      NA                   NA                    NA
## 756                      NA                   NA                    NA
## 757                      NA                   NA                    NA
## 758                      NA                   NA                    NA
## 759                      NA                   NA                    NA
## 760                      NA                   NA                    NA
## 761                      NA                   NA                    NA
## 762                      NA                   NA                    NA
## 763                      NA                   NA                    NA
## 764                      NA                   NA                    NA
## 765                      NA                   NA                    NA
## 766                      NA                   NA                    NA
## 767                      NA                   NA                    NA
## 768                      NA                   NA                    NA
## 769                  451322                15524                251620
## 770                      NA                   NA                    NA
## 771                      NA                   NA                    NA
## 772                      NA                   NA                    NA
## 773                      NA                   NA                    NA
## 774                      NA                   NA                    NA
## 775                      NA                   NA                    NA
## 776                18237446                    8                  2450
## 777                    1797                  339                  1271
## 778                      NA                   NA                    NA
## 779                      NA                   NA                    NA
## 780                      NA                   NA                    NA
## 781                      NA                   NA                    NA
## 782                      NA                   NA                    NA
## 783                      NA                   NA                    NA
## 784                      NA                   NA                    NA
## 785                      NA                   NA                    NA
## 786                      NA                   NA                    NA
## 787                   83396                 5132                  9460
## 788                      NA                   NA                    NA
## 789                      NA                   NA                    NA
## 790                      NA                   NA                    NA
## 791                      NA                   NA                    NA
## 792                      NA                   NA                    NA
## 793                      NA                   NA                    NA
## 794                      NA                   NA                    NA
## 795                      NA                   NA                    NA
## 796                      NA                   NA                    NA
## 797                      NA                   NA                    NA
## 798                      NA                   NA                    NA
## 799                      NA                   NA                    NA
## 800                      NA                   NA                    NA
## 801                      NA                   NA                    NA
## 802                   74993                  433                  7279
## 803                      NA                   NA                    NA
## 804                   71108                  150                  6785
## 805                  220845                 2938                 11159
## 806                      NA                   NA                    NA
## 807                   10726                10559                  8129
## 808                      NA                   NA                    NA
## 809                      NA                   NA                    NA
## 810                      NA                   NA                    NA
## 811                      NA                   NA                    NA
## 812                      NA                   NA                    NA
## 813                      NA                   NA                    NA
## 814                      NA                   NA                    NA
## 815                      NA                   NA                    NA
## 816                      NA                   NA                    NA
## 817                      NA                   NA                    NA
## 818                      NA                   NA                    NA
## 819                      NA                   NA                    NA
## 820                      NA                   NA                    NA
## 821                      NA                   NA                    NA
## 822                      NA                   NA                    NA
## 823                      NA                   NA                    NA
## 824                      NA                   NA                    NA
## 825                      NA                   NA                    NA
## 826                      NA                   NA                    NA
## 827                      NA                   NA                    NA
## 828                      NA                   NA                    NA
## 829                      NA                   NA                    NA
## 830                      NA                   NA                    NA
## 831                      NA                   NA                    NA
## 832                      NA                   NA                    NA
## 833                      NA                   NA                    NA
## 834                      NA                   NA                    NA
## 835                      NA                   NA                    NA
## 836                      NA                   NA                    NA
## 837                      NA                   NA                    NA
## 838                      NA                   NA                    NA
## 839                      NA                   NA                    NA
## 840                      NA                   NA                    NA
## 841                      NA                   NA                    NA
## 842                 9338837                  393                498140
## 843                      NA                   NA                    NA
## 844                    5991                 2006                 13290
## 845                      NA                   NA                    NA
## 846                      NA                   NA                    NA
## 847                  459340                 6628                 31713
## 848                      NA                   NA                    NA
## 849                      NA                   NA                    NA
## 850                      NA                   NA                    NA
## 851                      NA                   NA                    NA
## 852                      NA                   NA                    NA
## 853                      NA                   NA                    NA
## 854                      NA                   NA                    NA
## 855                      NA                   NA                    NA
## 856                      NA                   NA                    NA
## 857                  164770                 1758                 40933
## 858                      NA                   NA                    NA
## 859                      NA                   NA                    NA
## 860                      NA                   NA                    NA
## 861                      NA                   NA                    NA
## 862                      NA                   NA                    NA
## 863                      NA                   NA                    NA
## 864                      NA                   NA                    NA
## 865                      NA                   NA                    NA
## 866                      NA                   NA                    NA
## 867                      NA                   NA                    NA
## 868                      NA                   NA                    NA
## 869                      NA                   NA                    NA
## 870                      NA                   NA                    NA
## 871                      NA                   NA                    NA
## 872                      NA                   NA                    NA
## 873                      NA                   NA                    NA
## 874                      NA                   NA                    NA
## 875                      NA                   NA                    NA
## 876                      NA                   NA                    NA
## 877                      NA                   NA                    NA
## 878                      NA                   NA                    NA
## 879                      NA                   NA                    NA
## 880                      NA                   NA                    NA
## 881                      NA                   NA                    NA
## 882                      NA                   NA                    NA
## 883                      NA                   NA                    NA
## 884                      NA                   NA                    NA
## 885                 2891758                 2480                 30870
## 886                      NA                   NA                    NA
## 887                      NA                   NA                    NA
## 888                      NA                   NA                    NA
## 889                      NA                   NA                    NA
## 890                      NA                   NA                    NA
## 891                      NA                   NA                    NA
## 892                      NA                   NA                    NA
## 893                      NA                   NA                    NA
## 894                      NA                   NA                    NA
## 895                      NA                   NA                    NA
## 896                      NA                   NA                    NA
## 897                      NA                   NA                    NA
## 898                      NA                   NA                    NA
## 899                      NA                   NA                    NA
## 900                      NA                   NA                    NA
## 901                      NA                   NA                    NA
## 902                      NA                   NA                    NA
## 903                   12385                  526                 13049
## 904                      NA                   NA                    NA
## 905                      NA                   NA                    NA
## 906                      NA                   NA                    NA
## 907                      NA                   NA                    NA
## 908                      NA                   NA                    NA
## 909                      NA                   NA                    NA
## 910                   76913                  814                 17388
## 911                      NA                   NA                    NA
## 912                   42017                  413                161519
## 913                      NA                   NA                    NA
## 914                      NA                   NA                    NA
## 915                      NA                   NA                    NA
## 916                      NA                   NA                    NA
## 917                      NA                   NA                    NA
## 918                      NA                   NA                    NA
## 919                      NA                   NA                    NA
## 920                      NA                   NA                    NA
## 921                      NA                   NA                    NA
## 922                     479                  472                  3906
## 923                      NA                   NA                    NA
## 924                      NA                   NA                    NA
## 925                      NA                   NA                    NA
## 926                      NA                   NA                    NA
## 927                      NA                   NA                    NA
## 928                      NA                   NA                    NA
## 929                      NA                   NA                    NA
## 930                      NA                   NA                    NA
## 931                      NA                   NA                    NA
## 932                      NA                   NA                    NA
## 933                      NA                   NA                    NA
## 934                      NA                   NA                    NA
## 935                      NA                   NA                    NA
## 936                      NA                   NA                    NA
## 937                      NA                   NA                    NA
## 938                      NA                   NA                    NA
## 939                      NA                   NA                    NA
## 940                      NA                   NA                    NA
## 941                      NA                   NA                    NA
## 942                      NA                   NA                    NA
## 943                      NA                   NA                    NA
## 944                   10123                  947                    41
## 945                      NA                   NA                    NA
## 946                      NA                   NA                    NA
## 947                      NA                   NA                    NA
## 948                      NA                   NA                    NA
## 949                      NA                   NA                    NA
## 950                      NA                   NA                    NA
## 951                      NA                   NA                    NA
## 952                      NA                   NA                    NA
## 953                      NA                   NA                    NA
## 954                      NA                   NA                    NA
## 955                      NA                   NA                    NA
## 956                      NA                   NA                    NA
## 957                      NA                   NA                    NA
## 958                      NA                   NA                    NA
## 959                      NA                   NA                    NA
## 960                      NA                   NA                    NA
## 961                      NA                   NA                    NA
## 962                      NA                   NA                    NA
## 963                      NA                   NA                    NA
## 964                      NA                   NA                    NA
## 965                      NA                   NA                    NA
## 966                      NA                   NA                    NA
## 967                      NA                   NA                    NA
## 968                      NA                   NA                    NA
## 969                      NA                   NA                    NA
## 970                      NA                   NA                    NA
## 971                      NA                   NA                    NA
## 972                    2760                  831                  5694
## 973                      NA                   NA                    NA
## 974                      NA                   NA                    NA
## 975                      NA                   NA                    NA
## 976                      NA                   NA                    NA
## 977                   23456                 1242                 90042
## 978                      NA                   NA                    NA
## 979                      NA                   NA                    NA
## 980                      NA                   NA                    NA
## 981                      NA                   NA                    NA
## 982                      NA                   NA                    NA
## 983                      NA                   NA                    NA
## 984                      NA                   NA                    NA
## 985                      NA                   NA                    NA
## 986                      NA                   NA                    NA
## 987                      NA                   NA                    NA
## 988                      NA                   NA                    NA
## 989                      NA                   NA                    NA
## 990                      NA                   NA                    NA
## 991                   11777                  125                   871
## 992                      NA                   NA                    NA
## 993                      NA                   NA                    NA
## 994                      NA                   NA                    NA
## 995                      NA                   NA                    NA
## 996                      NA                   NA                    NA
## 997                      NA                   NA                    NA
## 998                      NA                   NA                    NA
## 999                      NA                   NA                    NA
## 1000                     20                  258                   201
## 1001                     NA                   NA                    NA
## 1002                     NA                   NA                    NA
## 1003                     NA                   NA                    NA
## 1004                     NA                   NA                    NA
## 1005                     NA                   NA                    NA
## 1006                     NA                   NA                    NA
## 1007                8098552                70336                195666
## 1008                     NA                   NA                    NA
## 1009                     NA                   NA                    NA
## 1010                     NA                   NA                    NA
## 1011                     NA                   NA                    NA
## 1012                     NA                   NA                    NA
## 1013                     NA                   NA                    NA
## 1014                     NA                   NA                    NA
## 1015                     NA                   NA                    NA
## 1016                     NA                   NA                    NA
## 1017                     NA                   NA                    NA
## 1018                     NA                   NA                    NA
## 1019                     NA                   NA                    NA
## 1020                     NA                   NA                    NA
## 1021                     NA                   NA                    NA
## 1022                     NA                   NA                    NA
## 1023                    118                   63                   195
## 1024                     NA                   NA                    NA
## 1025                     NA                   NA                    NA
## 1026                     NA                   NA                    NA
## 1027                  54303                54355                198917
## 1028                     NA                   NA                    NA
## 1029                     NA                   NA                    NA
## 1030                 268564                  999                 71597
## 1031                     NA                   NA                    NA
## 1032                     NA                   NA                    NA
## 1033                     NA                   NA                    NA
## 1034                  17787                 3899                 13585
## 1035                   1799                  436                   987
## 1036                     NA                   NA                    NA
## 1037                 257452                 1943                  3356
## 1038                     NA                   NA                    NA
## 1039                  11860                  802                  2080
## 1040                1691789                  506                142750
## 1041                     NA                   NA                    NA
## 1042                     NA                   NA                    NA
## 1043                     NA                   NA                    NA
## 1044                     NA                   NA                    NA
## 1045                     NA                   NA                    NA
## 1046                     NA                   NA                    NA
## 1047                     NA                   NA                    NA
## 1048                     NA                   NA                    NA
## 1049                     NA                   NA                    NA
## 1050                     NA                   NA                    NA
## 1051                     NA                   NA                    NA
## 1052                     NA                   NA                    NA
## 1053                     NA                   NA                    NA
## 1054                     NA                   NA                    NA
## 1055                     NA                   NA                    NA
## 1056                     NA                   NA                    NA
## 1057                     NA                   NA                    NA
## 1058                     NA                   NA                    NA
## 1059                     NA                   NA                    NA
## 1060                     NA                   NA                    NA
## 1061                     NA                   NA                    NA
## 1062                     NA                   NA                    NA
## 1063                     NA                   NA                    NA
## 1064                     NA                   NA                    NA
## 1065                     NA                   NA                    NA
## 1066                     NA                   NA                    NA
## 1067                     NA                   NA                    NA
## 1068                     NA                   NA                    NA
## 1069                     NA                   NA                    NA
## 1070                     NA                   NA                    NA
## 1071                     NA                   NA                    NA
## 1072                     NA                   NA                    NA
## 1073                 279054                  962                 15145
## 1074                     NA                   NA                    NA
## 1075               75309642                   47                 50235
## 1076                     NA                   NA                    NA
## 1077                     NA                   NA                    NA
## 1078                     NA                   NA                    NA
## 1079                     NA                   NA                    NA
## 1080                     NA                   NA                    NA
## 1081                     NA                   NA                    NA
## 1082                     NA                   NA                    NA
## 1083                     NA                   NA                    NA
## 1084                     NA                   NA                    NA
## 1085                     NA                   NA                    NA
## 1086                     NA                   NA                    NA
## 1087                     NA                   NA                    NA
## 1088                     NA                   NA                    NA
## 1089                     NA                   NA                    NA
## 1090                     NA                   NA                    NA
## 1091                     NA                   NA                    NA
## 1092                     NA                   NA                    NA
## 1093                     NA                   NA                    NA
## 1094                     NA                   NA                    NA
## 1095                     NA                   NA                    NA
## 1096                     NA                   NA                    NA
## 1097                     NA                   NA                    NA
## 1098                     NA                   NA                    NA
## 1099                     NA                   NA                    NA
## 1100                     NA                   NA                    NA
## 1101                  20911                   31                  2164
## 1102                     NA                   NA                    NA
## 1103                     NA                   NA                    NA
## 1104                     NA                   NA                    NA
## 1105                     NA                   NA                    NA
## 1106                     NA                   NA                    NA
## 1107                     NA                   NA                    NA
## 1108                     NA                   NA                    NA
## 1109                     NA                   NA                    NA
## 1110                     NA                   NA                    NA
## 1111                     NA                   NA                    NA
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           quoted_location
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                New York
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Aurora
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
## 9                                                                                                                                                                                                                                                                                                                                                               I rarely read private DM’s. Contact: Phone/Text/Whatsapp/Signal/Telegram: (240) 844-2514, Email: bwcs2020@protonmail.com
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                             London, UK
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 London
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New York, USA
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Dublin
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   <NA>
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tehran
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                              Islamic Republic of Iran
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New York, NY
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Prizren
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                        Midnorthwest-Northeast-Midwest
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                Miami - The Magic City
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 India
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Beijing
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                Instagram@KemiOlunloyo
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                   St. Louis, Missouri
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Papineau
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dallas, TX
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Washington, DC
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sydney, New South Wales
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                        United Kingdom
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pakistan and the world. 
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                      New Delhi, India
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Austin, Texas
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Philadelphia, PA
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                New York and the World
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                       London, England
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 333  <U+1A33><U+1B6C>° /  <U+0001D4D1>etween the non-existence <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800> <U+2800>of heaven or hell <U+061F> ( <U+0001D4E2>tands <U+0001D42D><U+0001D421><U+0001D41E> <U+0001D429><U+0001D41E><U+0001D42B><U+0001D41F><U+0001D41E><U+0001D41C><U+0001D42D> <U+0001D430><U+0001D428><U+0001D42B><U+0001D425><U+0001D41D> ) ·<U+0329><U+0359><U+208A> <U+2800>\n\n<U+2800><U+2800><U+2800><U+2800><U+2800><U+2800>
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woerden
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Melbourne
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Saudi Arabia
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Boston, MA
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lisbon, Portugal
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Worldwide
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New York, NY
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                             contact@mentallyaware.org
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Houston, TX
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Noida
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                Vancouver, B.C. Canada
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                              YouTube:
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Washington DC
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Chicago, IL
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                             New Delhi
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Vienna, Austria
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                     San Francisco, CA
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Washington, DC
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                      New Delhi, India
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                           New Zealand
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Princeton, NJ
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sydney, Australia
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Vatican City
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                     San Francisco, CA
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Abbott Park, IL
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Worldwide
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   USA
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                             HQ @ Pearl Harbor, Hawaii
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 India
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Vancouver, BC
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Washington, DC
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New York, NY
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PAKISTAN
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                     San Diego, CA USA
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wilmslow, Cheshire
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                         United States
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Virginia
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                         United States
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 972                                                                                                                                                                                                                                                                                                                                                                                   Newcastle Tyne <U+0001F3F4><U+000E0067><U+000E0062><U+000E0065><U+000E006E><U+000E0067><U+000E007F>
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <NA>
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Leeds, England
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Texas, USA
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Berkeley, CA
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Washington, DC
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Adelaide
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Beijing, China
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Washington, DC
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Oklahoma City, OK
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <NA>
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  quoted_description
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Prof, @SAISHopkins | Contributing Editor, @TheAtlantic | Senior Fellow, @gmfus | Senior Advisor, @protctdemocracy | Host, The Good Fight
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Superintendent, Husband, Father, Grandfather
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Op-eds @washingtonpost @guardian│Founder @bluewavecs│Host #ADPPodcast│Grammy-losing songwriter│Sued Trump and won│I have 5 kids│You can't scare me│#Biden2020
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       News, features and analysis from the World's newsroom. Breaking news, follow @BBCBreaking. UK news, @BBCNews. Latest sports news @BBCSport
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dad, husband, CNN Anchor of @TheLeadCNN and @CNNSOTU. \n\n"Jake Tapper...I know; you don't like him. Who likes him? Who the hell can like him?" \n- President Trump
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           News, features and analysis. For world news, follow @BBCWorld. Breaking news, follow @BBCBreaking. Latest sport news @BBCSport. Our Instagram: BBCNews
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CNN <U+2014> instagram: @shimonpro
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              *Stay At Home* *Wash Your Hands* *Slow the spread of Coronavirus* <U+0001F4FA> Watch RTE One, Friday at 9.35pm <U+0001F989> https://t.co/tym75anLoy
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Waiting for the Utopia, not in Place but in Time
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 110                                                                                                                                                                                                                                                                                                                <U+200F><U+200F><U+0627><U+06A9><U+0627><U+0646><U+062A> <U+0631><U+0633><U+0645><U+06CC> <U+062E><U+0628><U+0631><U+06AF><U+0632><U+0627><U+0631><U+06CC> <U+06A9><U+0627><U+0631> <U+0627><U+06CC><U+0631><U+0627><U+0646> (<U+0627><U+06CC><U+0644><U+0646><U+0627>)<U+060C><U+062F><U+0631> <U+0642><U+0628><U+0627><U+0644> <U+0646><U+0638><U+0631><U+0627><U+062A> <U+0645><U+062E><U+0627><U+0637><U+0628><U+0627><U+0646> <U+0647><U+06CC><U+0686> <U+0645><U+0633><U+0626><U+0648><U+0644><U+06CC><U+062A><U+06CC> <U+0646><U+062F><U+0627><U+0631><U+062F>\nIranian Labor news Agency
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TV news, Cable news ratings & sharp news opinion covering Fox News, MSNBC, CNN, Fox Business and CNBC. Retweeted by President Trump six times.
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              International Documentary and Short Film Festival // 7 - 15 August 2020. Use the hashtag #DokuFest2020 to have your tweet featured on our website.
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Author of THE REVISIONARIES, Melville House Order: https://t.co/8kKe6sd7gK Newsletter: https://t.co/DYZMoVGThH He/him Repped by @samroebuck
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Official Twitter for the City of Miami. Retweets are not endorsements.
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Prabhas Updates online/offline. Prabhas Fans Twitter Ac. Prabhas isn't on Twitter.\nFollow him on instagram - https://t.co/1QUj2AwjHW
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MoneySense is the free financial education programme for 5-18s from NatWest <U+2013> helping the UK & Republic of Ireland's children towards a better financial future.
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      China Correspondent, British Broadcasting Corporation, after 9 years as ABC Beijing Bureau Chief. Abusive, rude language gets you blocked.
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+0001F1FA><U+0001F1F2> US Trained Clinical Pharmacist, Medical Journalist, PR Specialist, Community Activist
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Missouri Lawman.\n\nCandidate for Missouri Attorney General, https://t.co/XShZGHdlWg. \nPresident/CEO of @EduXchangeCorps.
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Robert F. Kennedy Human Rights is a nonprofit organization working to realize Robert Kennedy's dream of a more just & peaceful world. Instagram: @RFKHumanRights
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Father, husband, 23rd Prime Minister of Canada. Account run by PM & staff.\nPapa, mari, 23e premier ministre du Canada. Compte gere par le PM et son personnel.
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EM physician, Associate Residency Director @HackensackEM, passionate about education and believer that together we can create a healthier, more equitable world.
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          45th President of the United States of America<U+0001F1FA><U+0001F1F8>
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What nature teaches us about the science of healthy eating. The latest book by Professor David Raubenheimer and Professor Stephen J. Simpson. #eatliketheanimals
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <U+0001F393> The National Online Peer Support Network for Student Children's Nurses and NQN's <U+0001F1EC><U+0001F1E7> |#CYPStNN | #PaedsRocks | Retweets Not Endorsements
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Singer-songwriter, Actor, Producer    Tweets by Ali Zafar after 10-10-2018 will be marked in quotes. Other tweets by management. Retweets are not endorsements.
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Catch us on Channel 5 at 5pm & 6.30pm Mon-Fri.\nTweet us your news and views or email us at c5planning@itn.co.uk (RTs are not endorsements).
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Life starts all over again when it gets crisp in the fall.
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A member-supported, nonpartisan newsroom informing & engaging Texans on state politics & policy. Tweets by @regmack_. Subscribe: https://t.co/7vzWxFt29b
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Man of logic, common sense and perspective - with a little bit of humor <U+0001F600> #TheResistance #BlueWave2018 #FBRParty #FBR
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The first word in business news.
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lead Economist @cbitweets, mostly covering the UK. All views my own, RTs ≠ endorsements. Be the change. <U+0001F308>
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 333  <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+A4B0> <U+2800><U+2571><U+2800> <U+0001D58B><U+0001D594><U+0001D597> :<U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> ━━━ <U+301D> JUSTICE . <U+2800> <U+000169F7> <U+2800> <U+0631> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800> <U+2800><U+2800><U+2800><U+2800>
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             "Doing now what patients need next"
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Big teeth. The Katering Show. Podcast with Kate McCartney called 'Only Wrong Answers'. https://t.co/8IvVHQ4ZWm
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <U+0627><U+0644><U+062D><U+0633><U+0627><U+0628> <U+0627><U+0644><U+0631><U+0633><U+0645><U+064A> <U+0644><U+0648><U+0632><U+0627><U+0631><U+0629> <U+0627><U+0644><U+062F><U+0627><U+062E><U+0644><U+064A><U+0629> <U+0627><U+0644><U+0633><U+0639><U+0648><U+062F><U+064A><U+0629>
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Real time updates from Boston's News Leader: WCVB NewsCenter 5
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Human
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Live updates from the team behind BNO News. Currently covering coronavirus. For our regular news coverage, follow our main account: @BNONews
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     this is the Account of the Channel on Youtube Called Politics Video Channel
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advocating for #MentalHealthForAll Nigerians|Lead Partner (Nigeria) for the @gospeakyourmind #SpeakYourMind Campaign|Call Us- 0809111MANI
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @Lazarus_3D Founder, Revolutionizing Medical Training and Saving Lives <U+2764><U+FE0F>
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deputy Editor & Anchor @Aajtak.     Winner Ramnath Goenka awards 2015.
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Western Canada's largest news team.  Send tips to VanTips@postmedia.com. Follow us at https://t.co/fHi5EmemPF and https://t.co/EvrBKhduh2.
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBC Assistant Political Editor. Citizen of Muswell Hill
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Reporter for CNN, fact-checking the president and other politicians.
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nonresident Senior Fellow @BulletinAtomic <U+2022> Fellow @NSquareCollab <U+2022> Editor/Co-author, Atomic Audit: The Costs and Consequences of US Nuclear Weapons Since 1940
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 637                                                                                                                                                                                                                                                                                                                                                           <U+092A><U+0924><U+094D><U+0930><U+0915><U+093E><U+0930> @QuintHindi @TheQuint <U+0964><U+092A><U+0939><U+0932><U+0947>: ABP News <U+0964> IIMCian| Navodayan | <U+092F><U+0939><U+093E><U+0902> <U+091C><U+094B> <U+092D><U+0940> <U+0932><U+093F><U+0916>-<U+092C><U+094B><U+0932> <U+0930><U+0939><U+093E> <U+0939><U+0942><U+0902> <U+0938><U+092C> <U+092E><U+0947><U+0930><U+093E> <U+0939><U+0948>,<U+091C><U+094D><U+092F><U+093E><U+0926><U+093E> <U+0926><U+093F><U+092E><U+093E><U+0917> <U+0928> <U+0932><U+0917><U+093E><U+090F><U+0902>
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Journalist. Thalassophile. Host, The Drum, ABCTV. Columnist, SMH, NYT. PhD, history. Author of Victoria: The Queen. New book, Phosphorescence, out March 2020.
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <U+0001F4BE>#Analytics & #AI & #Blockchain thought leader & CEETop20 Influencer; VP&CTO @Atos #Digital #startup #Founder #Cognitive #CDO #DeepLearning #MachineLearning
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As an independent, privately owned firm, Matthews Asia is the largest dedicated Asia-only investment specialist in the United States.
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The guy who live-tweets 'Fox & Friends' but is not the President of the United States. Rapid Response @mmfa; this is a personal account. He/him
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Adviser NITI  Aayog.  RT not endorsement. Tweets reflect personal views.
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nanotechnologist, kitchen @sciencecookbook author, kitesurfer & engineer on mission to show #science is everywhere TEDx https://t.co/Axr55T4wJ1
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Historian. Author/editor of White Flight; The New Suburban History; Spaces of the Modern City; Fog of War; One Nation Under God; Fault Lines.
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Real news, honest views. Watch Sky News Australia on Foxtel, Sky News on WIN or listen live on iHeartRadio.
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Welcome to the official Twitter page of His Holiness Pope Francis
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @UCSFMedicine ‘22. @Harvard College '16. <U+0001F1F9><U+0001F1F9><U+0001F1E9><U+0001F1F4> she/her/ella from NY. co-founder, @HRAMofficial & @nationalMSHRA. former board member, UCSF @SNMA.
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This is technology at its most personal, to help you live your best, healthiest life. #lifetothefullest https://t.co/6IcXSYxpuw
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The #WBSS - Home of the #AliTrophy <U+0001F3C6>\n'The Greatest Prize in Boxing!'\n\n*Temporary home of the #eWBSS & #eAliTrophy <U+0001F3C6>\n'The Greatest Prize in eBoxing!'*
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ER Doctor | Resuscitation | Airway | Emergency Ultrasound | Cardiovascular Emergencies | ECGs | Trauma | Critical Care | #FOAMed | Patient Advocate
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The U.S. Navy's Pacific Fleet is the world’s largest fleet command.
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My boy Trump is making you an offer you can't refuse.#MAGA #Trump2020
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TIMES NOW is India’s most watched English news channel. Follow for lightning fast #BreakingNews and #Alerts.
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Provincial Affairs Reporter covering the BC Legislature for #CBC. All things politics: tanya.fletcher@cbc.ca (Yes, all views expressed are mine alone)
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @PBS @NewsHour White House correspondent. @NBCNews & @MSNBC contributor. Formerly of @NYTimes & @USATODAY. Email: yamiche@newshour.org
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dad. #ADHD @fasternormal Pod host. Author/keynoter/angel/influencer. @NASA #advisor. @helpareporter founder. #IMKona2020, #Skydiver, #OnePeloton, #BU Alum
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Federal Minister for Science & Technology Government of Pakistan
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Director, California Innocence Project  Professor, California Western School of Law. Played by Greg Kinnear in the movie "Brian Banks."
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The ICO upholds information rights in the public interest, promotes openness by public bodies & data privacy for individuals. https://t.co/OTqEYbGtJR
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                “If people cannot write well, they cannot think well, and if they cannot think well, others will do their thinking for them.” ― George Orwell
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Regent School of Law Professor/ Torts/Law&Religion/\nBlog: https://t.co/qpzsIFMcOm\nArticles: https://t.co/f7w3uo8Q5k
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Helping the world realize the true potential of visualizing massive data at earth-shattering speed. Get in touch to uncover the stories hiding in your data.
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pro Western News\nArticles compliments of https://t.co/7V8UJAJw4l & https://t.co/ceinvvWUlK and other right wing sources \nFighting #AntiWesternHate\nPlease RT\n"Like" means I've read it
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Kahnawake Mohawk, Indigenous Policy Analyst. Editor & Publisher of the First Nations Strategic Bulletin. 2018 AFN National Chief Candidate.
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rwandan Journalist based in #Kigali
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      News. Arts & Life. Music & more. This is NPR.\n\n<U+0001F575><U+FE0F> Securely send us news tips: https://t.co/LPkf6Tsozm
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We are a group of independent artists who have come together to create dialogue through our individual practices by exhibiting and creating informal events.
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #TheMighty200 MAGA KAG PATRIOT Trump 2020. Christian. Censored with Reply Deboosting by Twitter. ProLife, ProGun, Pro 1st and 2nd Amendment! No personal DM’s
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          journalist @voxdotcom
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Senior Editor at @techreview, focused on (the most pressing crisis of the moment).
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sharing ideas & evidence on social protection; global lead for social assistance #WorldBank; weekly updates <U+27A1><U+FE0F> https://t.co/x5k3UYHtVb
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Proudly representing New York's First Congressional District. Ranking Member of @HouseForeignGOP Subcommittee on Oversight & Investigations.
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Federal Member for Kingston. Shadow Minister for Early Childhood Education and Development + Youth. Auth by Amanda Rishworth, ALP, Morphett Vale SA
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           China's national English language newspaper, under the People's Daily. Apps: https://t.co/pKmPtcE99D
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We helped elect @AOC because it's time for a Democratic Party that represents its voters, not corporate donors.
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         45th President of the United States of America<U+0001F1FA><U+0001F1F8>
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Official Twitter account of Oklahoma Governor Kevin Stitt. #COVID19: https://t.co/RKARlq0WKO
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
##      quoted_verified retweet_status_id retweet_text retweet_created_at
## 1                 NA              <NA>         <NA>               <NA>
## 2                 NA              <NA>         <NA>               <NA>
## 3                 NA              <NA>         <NA>               <NA>
## 4               TRUE              <NA>         <NA>               <NA>
## 5              FALSE              <NA>         <NA>               <NA>
## 6                 NA              <NA>         <NA>               <NA>
## 7                 NA              <NA>         <NA>               <NA>
## 8                 NA              <NA>         <NA>               <NA>
## 9               TRUE              <NA>         <NA>               <NA>
## 10                NA              <NA>         <NA>               <NA>
## 11                NA              <NA>         <NA>               <NA>
## 12                NA              <NA>         <NA>               <NA>
## 13                NA              <NA>         <NA>               <NA>
## 14                NA              <NA>         <NA>               <NA>
## 15                NA              <NA>         <NA>               <NA>
## 16                NA              <NA>         <NA>               <NA>
## 17                NA              <NA>         <NA>               <NA>
## 18                NA              <NA>         <NA>               <NA>
## 19                NA              <NA>         <NA>               <NA>
## 20                NA              <NA>         <NA>               <NA>
## 21                NA              <NA>         <NA>               <NA>
## 22                NA              <NA>         <NA>               <NA>
## 23                NA              <NA>         <NA>               <NA>
## 24                NA              <NA>         <NA>               <NA>
## 25                NA              <NA>         <NA>               <NA>
## 26                NA              <NA>         <NA>               <NA>
## 27                NA              <NA>         <NA>               <NA>
## 28                NA              <NA>         <NA>               <NA>
## 29                NA              <NA>         <NA>               <NA>
## 30                NA              <NA>         <NA>               <NA>
## 31                NA              <NA>         <NA>               <NA>
## 32                NA              <NA>         <NA>               <NA>
## 33                NA              <NA>         <NA>               <NA>
## 34                NA              <NA>         <NA>               <NA>
## 35                NA              <NA>         <NA>               <NA>
## 36              TRUE              <NA>         <NA>               <NA>
## 37                NA              <NA>         <NA>               <NA>
## 38                NA              <NA>         <NA>               <NA>
## 39                NA              <NA>         <NA>               <NA>
## 40                NA              <NA>         <NA>               <NA>
## 41                NA              <NA>         <NA>               <NA>
## 42                NA              <NA>         <NA>               <NA>
## 43              TRUE              <NA>         <NA>               <NA>
## 44                NA              <NA>         <NA>               <NA>
## 45                NA              <NA>         <NA>               <NA>
## 46                NA              <NA>         <NA>               <NA>
## 47                NA              <NA>         <NA>               <NA>
## 48                NA              <NA>         <NA>               <NA>
## 49                NA              <NA>         <NA>               <NA>
## 50                NA              <NA>         <NA>               <NA>
## 51              TRUE              <NA>         <NA>               <NA>
## 52                NA              <NA>         <NA>               <NA>
## 53                NA              <NA>         <NA>               <NA>
## 54                NA              <NA>         <NA>               <NA>
## 55                NA              <NA>         <NA>               <NA>
## 56                NA              <NA>         <NA>               <NA>
## 57                NA              <NA>         <NA>               <NA>
## 58                NA              <NA>         <NA>               <NA>
## 59                NA              <NA>         <NA>               <NA>
## 60                NA              <NA>         <NA>               <NA>
## 61                NA              <NA>         <NA>               <NA>
## 62                NA              <NA>         <NA>               <NA>
## 63                NA              <NA>         <NA>               <NA>
## 64                NA              <NA>         <NA>               <NA>
## 65                NA              <NA>         <NA>               <NA>
## 66                NA              <NA>         <NA>               <NA>
## 67                NA              <NA>         <NA>               <NA>
## 68                NA              <NA>         <NA>               <NA>
## 69                NA              <NA>         <NA>               <NA>
## 70                NA              <NA>         <NA>               <NA>
## 71                NA              <NA>         <NA>               <NA>
## 72                NA              <NA>         <NA>               <NA>
## 73                NA              <NA>         <NA>               <NA>
## 74                NA              <NA>         <NA>               <NA>
## 75                NA              <NA>         <NA>               <NA>
## 76              TRUE              <NA>         <NA>               <NA>
## 77              TRUE              <NA>         <NA>               <NA>
## 78                NA              <NA>         <NA>               <NA>
## 79                NA              <NA>         <NA>               <NA>
## 80                NA              <NA>         <NA>               <NA>
## 81                NA              <NA>         <NA>               <NA>
## 82                NA              <NA>         <NA>               <NA>
## 83                NA              <NA>         <NA>               <NA>
## 84                NA              <NA>         <NA>               <NA>
## 85                NA              <NA>         <NA>               <NA>
## 86                NA              <NA>         <NA>               <NA>
## 87                NA              <NA>         <NA>               <NA>
## 88                NA              <NA>         <NA>               <NA>
## 89                NA              <NA>         <NA>               <NA>
## 90                NA              <NA>         <NA>               <NA>
## 91                NA              <NA>         <NA>               <NA>
## 92                NA              <NA>         <NA>               <NA>
## 93                NA              <NA>         <NA>               <NA>
## 94                NA              <NA>         <NA>               <NA>
## 95                NA              <NA>         <NA>               <NA>
## 96                NA              <NA>         <NA>               <NA>
## 97                NA              <NA>         <NA>               <NA>
## 98                NA              <NA>         <NA>               <NA>
## 99                NA              <NA>         <NA>               <NA>
## 100               NA              <NA>         <NA>               <NA>
## 101               NA              <NA>         <NA>               <NA>
## 102               NA              <NA>         <NA>               <NA>
## 103               NA              <NA>         <NA>               <NA>
## 104               NA              <NA>         <NA>               <NA>
## 105            FALSE              <NA>         <NA>               <NA>
## 106               NA              <NA>         <NA>               <NA>
## 107               NA              <NA>         <NA>               <NA>
## 108               NA              <NA>         <NA>               <NA>
## 109               NA              <NA>         <NA>               <NA>
## 110            FALSE              <NA>         <NA>               <NA>
## 111               NA              <NA>         <NA>               <NA>
## 112               NA              <NA>         <NA>               <NA>
## 113               NA              <NA>         <NA>               <NA>
## 114               NA              <NA>         <NA>               <NA>
## 115               NA              <NA>         <NA>               <NA>
## 116               NA              <NA>         <NA>               <NA>
## 117               NA              <NA>         <NA>               <NA>
## 118               NA              <NA>         <NA>               <NA>
## 119               NA              <NA>         <NA>               <NA>
## 120            FALSE              <NA>         <NA>               <NA>
## 121               NA              <NA>         <NA>               <NA>
## 122               NA              <NA>         <NA>               <NA>
## 123               NA              <NA>         <NA>               <NA>
## 124               NA              <NA>         <NA>               <NA>
## 125               NA              <NA>         <NA>               <NA>
## 126               NA              <NA>         <NA>               <NA>
## 127               NA              <NA>         <NA>               <NA>
## 128               NA              <NA>         <NA>               <NA>
## 129               NA              <NA>         <NA>               <NA>
## 130               NA              <NA>         <NA>               <NA>
## 131            FALSE              <NA>         <NA>               <NA>
## 132               NA              <NA>         <NA>               <NA>
## 133               NA              <NA>         <NA>               <NA>
## 134               NA              <NA>         <NA>               <NA>
## 135               NA              <NA>         <NA>               <NA>
## 136               NA              <NA>         <NA>               <NA>
## 137               NA              <NA>         <NA>               <NA>
## 138               NA              <NA>         <NA>               <NA>
## 139               NA              <NA>         <NA>               <NA>
## 140               NA              <NA>         <NA>               <NA>
## 141               NA              <NA>         <NA>               <NA>
## 142               NA              <NA>         <NA>               <NA>
## 143               NA              <NA>         <NA>               <NA>
## 144               NA              <NA>         <NA>               <NA>
## 145               NA              <NA>         <NA>               <NA>
## 146               NA              <NA>         <NA>               <NA>
## 147               NA              <NA>         <NA>               <NA>
## 148               NA              <NA>         <NA>               <NA>
## 149               NA              <NA>         <NA>               <NA>
## 150               NA              <NA>         <NA>               <NA>
## 151               NA              <NA>         <NA>               <NA>
## 152               NA              <NA>         <NA>               <NA>
## 153               NA              <NA>         <NA>               <NA>
## 154            FALSE              <NA>         <NA>               <NA>
## 155               NA              <NA>         <NA>               <NA>
## 156               NA              <NA>         <NA>               <NA>
## 157               NA              <NA>         <NA>               <NA>
## 158               NA              <NA>         <NA>               <NA>
## 159               NA              <NA>         <NA>               <NA>
## 160               NA              <NA>         <NA>               <NA>
## 161               NA              <NA>         <NA>               <NA>
## 162               NA              <NA>         <NA>               <NA>
## 163               NA              <NA>         <NA>               <NA>
## 164               NA              <NA>         <NA>               <NA>
## 165               NA              <NA>         <NA>               <NA>
## 166             TRUE              <NA>         <NA>               <NA>
## 167               NA              <NA>         <NA>               <NA>
## 168               NA              <NA>         <NA>               <NA>
## 169               NA              <NA>         <NA>               <NA>
## 170               NA              <NA>         <NA>               <NA>
## 171               NA              <NA>         <NA>               <NA>
## 172            FALSE              <NA>         <NA>               <NA>
## 173            FALSE              <NA>         <NA>               <NA>
## 174               NA              <NA>         <NA>               <NA>
## 175               NA              <NA>         <NA>               <NA>
## 176               NA              <NA>         <NA>               <NA>
## 177               NA              <NA>         <NA>               <NA>
## 178               NA              <NA>         <NA>               <NA>
## 179               NA              <NA>         <NA>               <NA>
## 180               NA              <NA>         <NA>               <NA>
## 181               NA              <NA>         <NA>               <NA>
## 182               NA              <NA>         <NA>               <NA>
## 183               NA              <NA>         <NA>               <NA>
## 184             TRUE              <NA>         <NA>               <NA>
## 185               NA              <NA>         <NA>               <NA>
## 186            FALSE              <NA>         <NA>               <NA>
## 187               NA              <NA>         <NA>               <NA>
## 188               NA              <NA>         <NA>               <NA>
## 189               NA              <NA>         <NA>               <NA>
## 190               NA              <NA>         <NA>               <NA>
## 191               NA              <NA>         <NA>               <NA>
## 192               NA              <NA>         <NA>               <NA>
## 193               NA              <NA>         <NA>               <NA>
## 194               NA              <NA>         <NA>               <NA>
## 195               NA              <NA>         <NA>               <NA>
## 196               NA              <NA>         <NA>               <NA>
## 197               NA              <NA>         <NA>               <NA>
## 198               NA              <NA>         <NA>               <NA>
## 199               NA              <NA>         <NA>               <NA>
## 200               NA              <NA>         <NA>               <NA>
## 201               NA              <NA>         <NA>               <NA>
## 202               NA              <NA>         <NA>               <NA>
## 203               NA              <NA>         <NA>               <NA>
## 204               NA              <NA>         <NA>               <NA>
## 205               NA              <NA>         <NA>               <NA>
## 206               NA              <NA>         <NA>               <NA>
## 207               NA              <NA>         <NA>               <NA>
## 208               NA              <NA>         <NA>               <NA>
## 209               NA              <NA>         <NA>               <NA>
## 210               NA              <NA>         <NA>               <NA>
## 211               NA              <NA>         <NA>               <NA>
## 212               NA              <NA>         <NA>               <NA>
## 213               NA              <NA>         <NA>               <NA>
## 214               NA              <NA>         <NA>               <NA>
## 215               NA              <NA>         <NA>               <NA>
## 216               NA              <NA>         <NA>               <NA>
## 217               NA              <NA>         <NA>               <NA>
## 218               NA              <NA>         <NA>               <NA>
## 219               NA              <NA>         <NA>               <NA>
## 220               NA              <NA>         <NA>               <NA>
## 221               NA              <NA>         <NA>               <NA>
## 222               NA              <NA>         <NA>               <NA>
## 223               NA              <NA>         <NA>               <NA>
## 224               NA              <NA>         <NA>               <NA>
## 225            FALSE              <NA>         <NA>               <NA>
## 226               NA              <NA>         <NA>               <NA>
## 227               NA              <NA>         <NA>               <NA>
## 228               NA              <NA>         <NA>               <NA>
## 229               NA              <NA>         <NA>               <NA>
## 230               NA              <NA>         <NA>               <NA>
## 231             TRUE              <NA>         <NA>               <NA>
## 232               NA              <NA>         <NA>               <NA>
## 233               NA              <NA>         <NA>               <NA>
## 234             TRUE              <NA>         <NA>               <NA>
## 235               NA              <NA>         <NA>               <NA>
## 236               NA              <NA>         <NA>               <NA>
## 237               NA              <NA>         <NA>               <NA>
## 238               NA              <NA>         <NA>               <NA>
## 239               NA              <NA>         <NA>               <NA>
## 240               NA              <NA>         <NA>               <NA>
## 241               NA              <NA>         <NA>               <NA>
## 242               NA              <NA>         <NA>               <NA>
## 243            FALSE              <NA>         <NA>               <NA>
## 244               NA              <NA>         <NA>               <NA>
## 245               NA              <NA>         <NA>               <NA>
## 246               NA              <NA>         <NA>               <NA>
## 247               NA              <NA>         <NA>               <NA>
## 248               NA              <NA>         <NA>               <NA>
## 249               NA              <NA>         <NA>               <NA>
## 250               NA              <NA>         <NA>               <NA>
## 251               NA              <NA>         <NA>               <NA>
## 252               NA              <NA>         <NA>               <NA>
## 253               NA              <NA>         <NA>               <NA>
## 254               NA              <NA>         <NA>               <NA>
## 255               NA              <NA>         <NA>               <NA>
## 256            FALSE              <NA>         <NA>               <NA>
## 257               NA              <NA>         <NA>               <NA>
## 258             TRUE              <NA>         <NA>               <NA>
## 259               NA              <NA>         <NA>               <NA>
## 260            FALSE              <NA>         <NA>               <NA>
## 261               NA              <NA>         <NA>               <NA>
## 262               NA              <NA>         <NA>               <NA>
## 263            FALSE              <NA>         <NA>               <NA>
## 264               NA              <NA>         <NA>               <NA>
## 265               NA              <NA>         <NA>               <NA>
## 266               NA              <NA>         <NA>               <NA>
## 267               NA              <NA>         <NA>               <NA>
## 268               NA              <NA>         <NA>               <NA>
## 269               NA              <NA>         <NA>               <NA>
## 270             TRUE              <NA>         <NA>               <NA>
## 271               NA              <NA>         <NA>               <NA>
## 272               NA              <NA>         <NA>               <NA>
## 273               NA              <NA>         <NA>               <NA>
## 274               NA              <NA>         <NA>               <NA>
## 275               NA              <NA>         <NA>               <NA>
## 276               NA              <NA>         <NA>               <NA>
## 277               NA              <NA>         <NA>               <NA>
## 278             TRUE              <NA>         <NA>               <NA>
## 279            FALSE              <NA>         <NA>               <NA>
## 280               NA              <NA>         <NA>               <NA>
## 281               NA              <NA>         <NA>               <NA>
## 282             TRUE              <NA>         <NA>               <NA>
## 283               NA              <NA>         <NA>               <NA>
## 284               NA              <NA>         <NA>               <NA>
## 285               NA              <NA>         <NA>               <NA>
## 286               NA              <NA>         <NA>               <NA>
## 287            FALSE              <NA>         <NA>               <NA>
## 288               NA              <NA>         <NA>               <NA>
## 289               NA              <NA>         <NA>               <NA>
## 290               NA              <NA>         <NA>               <NA>
## 291               NA              <NA>         <NA>               <NA>
## 292               NA              <NA>         <NA>               <NA>
## 293               NA              <NA>         <NA>               <NA>
## 294               NA              <NA>         <NA>               <NA>
## 295               NA              <NA>         <NA>               <NA>
## 296               NA              <NA>         <NA>               <NA>
## 297               NA              <NA>         <NA>               <NA>
## 298               NA              <NA>         <NA>               <NA>
## 299             TRUE              <NA>         <NA>               <NA>
## 300               NA              <NA>         <NA>               <NA>
## 301               NA              <NA>         <NA>               <NA>
## 302               NA              <NA>         <NA>               <NA>
## 303               NA              <NA>         <NA>               <NA>
## 304               NA              <NA>         <NA>               <NA>
## 305               NA              <NA>         <NA>               <NA>
## 306               NA              <NA>         <NA>               <NA>
## 307               NA              <NA>         <NA>               <NA>
## 308               NA              <NA>         <NA>               <NA>
## 309               NA              <NA>         <NA>               <NA>
## 310               NA              <NA>         <NA>               <NA>
## 311               NA              <NA>         <NA>               <NA>
## 312               NA              <NA>         <NA>               <NA>
## 313               NA              <NA>         <NA>               <NA>
## 314               NA              <NA>         <NA>               <NA>
## 315               NA              <NA>         <NA>               <NA>
## 316               NA              <NA>         <NA>               <NA>
## 317               NA              <NA>         <NA>               <NA>
## 318               NA              <NA>         <NA>               <NA>
## 319               NA              <NA>         <NA>               <NA>
## 320               NA              <NA>         <NA>               <NA>
## 321               NA              <NA>         <NA>               <NA>
## 322               NA              <NA>         <NA>               <NA>
## 323            FALSE              <NA>         <NA>               <NA>
## 324               NA              <NA>         <NA>               <NA>
## 325               NA              <NA>         <NA>               <NA>
## 326               NA              <NA>         <NA>               <NA>
## 327               NA              <NA>         <NA>               <NA>
## 328               NA              <NA>         <NA>               <NA>
## 329               NA              <NA>         <NA>               <NA>
## 330               NA              <NA>         <NA>               <NA>
## 331               NA              <NA>         <NA>               <NA>
## 332               NA              <NA>         <NA>               <NA>
## 333            FALSE              <NA>         <NA>               <NA>
## 334               NA              <NA>         <NA>               <NA>
## 335               NA              <NA>         <NA>               <NA>
## 336               NA              <NA>         <NA>               <NA>
## 337               NA              <NA>         <NA>               <NA>
## 338               NA              <NA>         <NA>               <NA>
## 339               NA              <NA>         <NA>               <NA>
## 340               NA              <NA>         <NA>               <NA>
## 341               NA              <NA>         <NA>               <NA>
## 342               NA              <NA>         <NA>               <NA>
## 343               NA              <NA>         <NA>               <NA>
## 344               NA              <NA>         <NA>               <NA>
## 345               NA              <NA>         <NA>               <NA>
## 346               NA              <NA>         <NA>               <NA>
## 347               NA              <NA>         <NA>               <NA>
## 348               NA              <NA>         <NA>               <NA>
## 349               NA              <NA>         <NA>               <NA>
## 350               NA              <NA>         <NA>               <NA>
## 351               NA              <NA>         <NA>               <NA>
## 352               NA              <NA>         <NA>               <NA>
## 353               NA              <NA>         <NA>               <NA>
## 354               NA              <NA>         <NA>               <NA>
## 355               NA              <NA>         <NA>               <NA>
## 356               NA              <NA>         <NA>               <NA>
## 357               NA              <NA>         <NA>               <NA>
## 358               NA              <NA>         <NA>               <NA>
## 359               NA              <NA>         <NA>               <NA>
## 360               NA              <NA>         <NA>               <NA>
## 361               NA              <NA>         <NA>               <NA>
## 362               NA              <NA>         <NA>               <NA>
## 363               NA              <NA>         <NA>               <NA>
## 364               NA              <NA>         <NA>               <NA>
## 365               NA              <NA>         <NA>               <NA>
## 366               NA              <NA>         <NA>               <NA>
## 367               NA              <NA>         <NA>               <NA>
## 368               NA              <NA>         <NA>               <NA>
## 369               NA              <NA>         <NA>               <NA>
## 370               NA              <NA>         <NA>               <NA>
## 371               NA              <NA>         <NA>               <NA>
## 372               NA              <NA>         <NA>               <NA>
## 373               NA              <NA>         <NA>               <NA>
## 374               NA              <NA>         <NA>               <NA>
## 375            FALSE              <NA>         <NA>               <NA>
## 376               NA              <NA>         <NA>               <NA>
## 377               NA              <NA>         <NA>               <NA>
## 378               NA              <NA>         <NA>               <NA>
## 379               NA              <NA>         <NA>               <NA>
## 380               NA              <NA>         <NA>               <NA>
## 381               NA              <NA>         <NA>               <NA>
## 382               NA              <NA>         <NA>               <NA>
## 383               NA              <NA>         <NA>               <NA>
## 384               NA              <NA>         <NA>               <NA>
## 385               NA              <NA>         <NA>               <NA>
## 386               NA              <NA>         <NA>               <NA>
## 387            FALSE              <NA>         <NA>               <NA>
## 388               NA              <NA>         <NA>               <NA>
## 389               NA              <NA>         <NA>               <NA>
## 390               NA              <NA>         <NA>               <NA>
## 391               NA              <NA>         <NA>               <NA>
## 392               NA              <NA>         <NA>               <NA>
## 393               NA              <NA>         <NA>               <NA>
## 394               NA              <NA>         <NA>               <NA>
## 395               NA              <NA>         <NA>               <NA>
## 396               NA              <NA>         <NA>               <NA>
## 397               NA              <NA>         <NA>               <NA>
## 398               NA              <NA>         <NA>               <NA>
## 399               NA              <NA>         <NA>               <NA>
## 400               NA              <NA>         <NA>               <NA>
## 401               NA              <NA>         <NA>               <NA>
## 402               NA              <NA>         <NA>               <NA>
## 403               NA              <NA>         <NA>               <NA>
## 404               NA              <NA>         <NA>               <NA>
## 405               NA              <NA>         <NA>               <NA>
## 406               NA              <NA>         <NA>               <NA>
## 407               NA              <NA>         <NA>               <NA>
## 408               NA              <NA>         <NA>               <NA>
## 409               NA              <NA>         <NA>               <NA>
## 410               NA              <NA>         <NA>               <NA>
## 411               NA              <NA>         <NA>               <NA>
## 412               NA              <NA>         <NA>               <NA>
## 413               NA              <NA>         <NA>               <NA>
## 414               NA              <NA>         <NA>               <NA>
## 415               NA              <NA>         <NA>               <NA>
## 416               NA              <NA>         <NA>               <NA>
## 417               NA              <NA>         <NA>               <NA>
## 418               NA              <NA>         <NA>               <NA>
## 419               NA              <NA>         <NA>               <NA>
## 420               NA              <NA>         <NA>               <NA>
## 421               NA              <NA>         <NA>               <NA>
## 422               NA              <NA>         <NA>               <NA>
## 423               NA              <NA>         <NA>               <NA>
## 424               NA              <NA>         <NA>               <NA>
## 425               NA              <NA>         <NA>               <NA>
## 426               NA              <NA>         <NA>               <NA>
## 427               NA              <NA>         <NA>               <NA>
## 428               NA              <NA>         <NA>               <NA>
## 429               NA              <NA>         <NA>               <NA>
## 430               NA              <NA>         <NA>               <NA>
## 431               NA              <NA>         <NA>               <NA>
## 432               NA              <NA>         <NA>               <NA>
## 433               NA              <NA>         <NA>               <NA>
## 434               NA              <NA>         <NA>               <NA>
## 435               NA              <NA>         <NA>               <NA>
## 436               NA              <NA>         <NA>               <NA>
## 437               NA              <NA>         <NA>               <NA>
## 438             TRUE              <NA>         <NA>               <NA>
## 439               NA              <NA>         <NA>               <NA>
## 440               NA              <NA>         <NA>               <NA>
## 441               NA              <NA>         <NA>               <NA>
## 442               NA              <NA>         <NA>               <NA>
## 443               NA              <NA>         <NA>               <NA>
## 444               NA              <NA>         <NA>               <NA>
## 445               NA              <NA>         <NA>               <NA>
## 446               NA              <NA>         <NA>               <NA>
## 447               NA              <NA>         <NA>               <NA>
## 448               NA              <NA>         <NA>               <NA>
## 449               NA              <NA>         <NA>               <NA>
## 450               NA              <NA>         <NA>               <NA>
## 451             TRUE              <NA>         <NA>               <NA>
## 452               NA              <NA>         <NA>               <NA>
## 453               NA              <NA>         <NA>               <NA>
## 454               NA              <NA>         <NA>               <NA>
## 455               NA              <NA>         <NA>               <NA>
## 456               NA              <NA>         <NA>               <NA>
## 457               NA              <NA>         <NA>               <NA>
## 458               NA              <NA>         <NA>               <NA>
## 459               NA              <NA>         <NA>               <NA>
## 460               NA              <NA>         <NA>               <NA>
## 461               NA              <NA>         <NA>               <NA>
## 462               NA              <NA>         <NA>               <NA>
## 463               NA              <NA>         <NA>               <NA>
## 464               NA              <NA>         <NA>               <NA>
## 465               NA              <NA>         <NA>               <NA>
## 466               NA              <NA>         <NA>               <NA>
## 467               NA              <NA>         <NA>               <NA>
## 468               NA              <NA>         <NA>               <NA>
## 469               NA              <NA>         <NA>               <NA>
## 470               NA              <NA>         <NA>               <NA>
## 471               NA              <NA>         <NA>               <NA>
## 472               NA              <NA>         <NA>               <NA>
## 473               NA              <NA>         <NA>               <NA>
## 474               NA              <NA>         <NA>               <NA>
## 475               NA              <NA>         <NA>               <NA>
## 476               NA              <NA>         <NA>               <NA>
## 477               NA              <NA>         <NA>               <NA>
## 478               NA              <NA>         <NA>               <NA>
## 479               NA              <NA>         <NA>               <NA>
## 480               NA              <NA>         <NA>               <NA>
## 481               NA              <NA>         <NA>               <NA>
## 482               NA              <NA>         <NA>               <NA>
## 483               NA              <NA>         <NA>               <NA>
## 484               NA              <NA>         <NA>               <NA>
## 485               NA              <NA>         <NA>               <NA>
## 486               NA              <NA>         <NA>               <NA>
## 487               NA              <NA>         <NA>               <NA>
## 488               NA              <NA>         <NA>               <NA>
## 489               NA              <NA>         <NA>               <NA>
## 490               NA              <NA>         <NA>               <NA>
## 491               NA              <NA>         <NA>               <NA>
## 492               NA              <NA>         <NA>               <NA>
## 493               NA              <NA>         <NA>               <NA>
## 494               NA              <NA>         <NA>               <NA>
## 495               NA              <NA>         <NA>               <NA>
## 496            FALSE              <NA>         <NA>               <NA>
## 497               NA              <NA>         <NA>               <NA>
## 498               NA              <NA>         <NA>               <NA>
## 499               NA              <NA>         <NA>               <NA>
## 500               NA              <NA>         <NA>               <NA>
## 501               NA              <NA>         <NA>               <NA>
## 502               NA              <NA>         <NA>               <NA>
## 503               NA              <NA>         <NA>               <NA>
## 504               NA              <NA>         <NA>               <NA>
## 505               NA              <NA>         <NA>               <NA>
## 506               NA              <NA>         <NA>               <NA>
## 507               NA              <NA>         <NA>               <NA>
## 508               NA              <NA>         <NA>               <NA>
## 509               NA              <NA>         <NA>               <NA>
## 510               NA              <NA>         <NA>               <NA>
## 511               NA              <NA>         <NA>               <NA>
## 512               NA              <NA>         <NA>               <NA>
## 513             TRUE              <NA>         <NA>               <NA>
## 514               NA              <NA>         <NA>               <NA>
## 515               NA              <NA>         <NA>               <NA>
## 516               NA              <NA>         <NA>               <NA>
## 517               NA              <NA>         <NA>               <NA>
## 518               NA              <NA>         <NA>               <NA>
## 519               NA              <NA>         <NA>               <NA>
## 520               NA              <NA>         <NA>               <NA>
## 521               NA              <NA>         <NA>               <NA>
## 522               NA              <NA>         <NA>               <NA>
## 523               NA              <NA>         <NA>               <NA>
## 524            FALSE              <NA>         <NA>               <NA>
## 525               NA              <NA>         <NA>               <NA>
## 526               NA              <NA>         <NA>               <NA>
## 527               NA              <NA>         <NA>               <NA>
## 528             TRUE              <NA>         <NA>               <NA>
## 529               NA              <NA>         <NA>               <NA>
## 530               NA              <NA>         <NA>               <NA>
## 531               NA              <NA>         <NA>               <NA>
## 532            FALSE              <NA>         <NA>               <NA>
## 533               NA              <NA>         <NA>               <NA>
## 534               NA              <NA>         <NA>               <NA>
## 535               NA              <NA>         <NA>               <NA>
## 536               NA              <NA>         <NA>               <NA>
## 537               NA              <NA>         <NA>               <NA>
## 538               NA              <NA>         <NA>               <NA>
## 539               NA              <NA>         <NA>               <NA>
## 540               NA              <NA>         <NA>               <NA>
## 541               NA              <NA>         <NA>               <NA>
## 542               NA              <NA>         <NA>               <NA>
## 543               NA              <NA>         <NA>               <NA>
## 544               NA              <NA>         <NA>               <NA>
## 545               NA              <NA>         <NA>               <NA>
## 546               NA              <NA>         <NA>               <NA>
## 547               NA              <NA>         <NA>               <NA>
## 548               NA              <NA>         <NA>               <NA>
## 549               NA              <NA>         <NA>               <NA>
## 550               NA              <NA>         <NA>               <NA>
## 551               NA              <NA>         <NA>               <NA>
## 552               NA              <NA>         <NA>               <NA>
## 553            FALSE              <NA>         <NA>               <NA>
## 554               NA              <NA>         <NA>               <NA>
## 555               NA              <NA>         <NA>               <NA>
## 556               NA              <NA>         <NA>               <NA>
## 557               NA              <NA>         <NA>               <NA>
## 558             TRUE              <NA>         <NA>               <NA>
## 559               NA              <NA>         <NA>               <NA>
## 560               NA              <NA>         <NA>               <NA>
## 561               NA              <NA>         <NA>               <NA>
## 562               NA              <NA>         <NA>               <NA>
## 563               NA              <NA>         <NA>               <NA>
## 564               NA              <NA>         <NA>               <NA>
## 565               NA              <NA>         <NA>               <NA>
## 566               NA              <NA>         <NA>               <NA>
## 567               NA              <NA>         <NA>               <NA>
## 568               NA              <NA>         <NA>               <NA>
## 569               NA              <NA>         <NA>               <NA>
## 570               NA              <NA>         <NA>               <NA>
## 571               NA              <NA>         <NA>               <NA>
## 572               NA              <NA>         <NA>               <NA>
## 573               NA              <NA>         <NA>               <NA>
## 574               NA              <NA>         <NA>               <NA>
## 575               NA              <NA>         <NA>               <NA>
## 576               NA              <NA>         <NA>               <NA>
## 577               NA              <NA>         <NA>               <NA>
## 578               NA              <NA>         <NA>               <NA>
## 579               NA              <NA>         <NA>               <NA>
## 580               NA              <NA>         <NA>               <NA>
## 581               NA              <NA>         <NA>               <NA>
## 582               NA              <NA>         <NA>               <NA>
## 583               NA              <NA>         <NA>               <NA>
## 584               NA              <NA>         <NA>               <NA>
## 585               NA              <NA>         <NA>               <NA>
## 586               NA              <NA>         <NA>               <NA>
## 587               NA              <NA>         <NA>               <NA>
## 588             TRUE              <NA>         <NA>               <NA>
## 589               NA              <NA>         <NA>               <NA>
## 590               NA              <NA>         <NA>               <NA>
## 591               NA              <NA>         <NA>               <NA>
## 592               NA              <NA>         <NA>               <NA>
## 593               NA              <NA>         <NA>               <NA>
## 594               NA              <NA>         <NA>               <NA>
## 595               NA              <NA>         <NA>               <NA>
## 596               NA              <NA>         <NA>               <NA>
## 597               NA              <NA>         <NA>               <NA>
## 598               NA              <NA>         <NA>               <NA>
## 599               NA              <NA>         <NA>               <NA>
## 600               NA              <NA>         <NA>               <NA>
## 601               NA              <NA>         <NA>               <NA>
## 602               NA              <NA>         <NA>               <NA>
## 603             TRUE              <NA>         <NA>               <NA>
## 604               NA              <NA>         <NA>               <NA>
## 605               NA              <NA>         <NA>               <NA>
## 606               NA              <NA>         <NA>               <NA>
## 607               NA              <NA>         <NA>               <NA>
## 608               NA              <NA>         <NA>               <NA>
## 609               NA              <NA>         <NA>               <NA>
## 610               NA              <NA>         <NA>               <NA>
## 611               NA              <NA>         <NA>               <NA>
## 612               NA              <NA>         <NA>               <NA>
## 613               NA              <NA>         <NA>               <NA>
## 614               NA              <NA>         <NA>               <NA>
## 615               NA              <NA>         <NA>               <NA>
## 616             TRUE              <NA>         <NA>               <NA>
## 617             TRUE              <NA>         <NA>               <NA>
## 618               NA              <NA>         <NA>               <NA>
## 619               NA              <NA>         <NA>               <NA>
## 620               NA              <NA>         <NA>               <NA>
## 621               NA              <NA>         <NA>               <NA>
## 622               NA              <NA>         <NA>               <NA>
## 623               NA              <NA>         <NA>               <NA>
## 624               NA              <NA>         <NA>               <NA>
## 625               NA              <NA>         <NA>               <NA>
## 626               NA              <NA>         <NA>               <NA>
## 627               NA              <NA>         <NA>               <NA>
## 628               NA              <NA>         <NA>               <NA>
## 629               NA              <NA>         <NA>               <NA>
## 630               NA              <NA>         <NA>               <NA>
## 631               NA              <NA>         <NA>               <NA>
## 632               NA              <NA>         <NA>               <NA>
## 633               NA              <NA>         <NA>               <NA>
## 634               NA              <NA>         <NA>               <NA>
## 635               NA              <NA>         <NA>               <NA>
## 636               NA              <NA>         <NA>               <NA>
## 637            FALSE              <NA>         <NA>               <NA>
## 638             TRUE              <NA>         <NA>               <NA>
## 639               NA              <NA>         <NA>               <NA>
## 640               NA              <NA>         <NA>               <NA>
## 641            FALSE              <NA>         <NA>               <NA>
## 642               NA              <NA>         <NA>               <NA>
## 643               NA              <NA>         <NA>               <NA>
## 644               NA              <NA>         <NA>               <NA>
## 645               NA              <NA>         <NA>               <NA>
## 646               NA              <NA>         <NA>               <NA>
## 647               NA              <NA>         <NA>               <NA>
## 648               NA              <NA>         <NA>               <NA>
## 649               NA              <NA>         <NA>               <NA>
## 650               NA              <NA>         <NA>               <NA>
## 651               NA              <NA>         <NA>               <NA>
## 652               NA              <NA>         <NA>               <NA>
## 653               NA              <NA>         <NA>               <NA>
## 654               NA              <NA>         <NA>               <NA>
## 655               NA              <NA>         <NA>               <NA>
## 656               NA              <NA>         <NA>               <NA>
## 657               NA              <NA>         <NA>               <NA>
## 658               NA              <NA>         <NA>               <NA>
## 659               NA              <NA>         <NA>               <NA>
## 660               NA              <NA>         <NA>               <NA>
## 661               NA              <NA>         <NA>               <NA>
## 662               NA              <NA>         <NA>               <NA>
## 663               NA              <NA>         <NA>               <NA>
## 664               NA              <NA>         <NA>               <NA>
## 665             TRUE              <NA>         <NA>               <NA>
## 666               NA              <NA>         <NA>               <NA>
## 667               NA              <NA>         <NA>               <NA>
## 668               NA              <NA>         <NA>               <NA>
## 669               NA              <NA>         <NA>               <NA>
## 670               NA              <NA>         <NA>               <NA>
## 671               NA              <NA>         <NA>               <NA>
## 672               NA              <NA>         <NA>               <NA>
## 673               NA              <NA>         <NA>               <NA>
## 674               NA              <NA>         <NA>               <NA>
## 675               NA              <NA>         <NA>               <NA>
## 676               NA              <NA>         <NA>               <NA>
## 677            FALSE              <NA>         <NA>               <NA>
## 678               NA              <NA>         <NA>               <NA>
## 679               NA              <NA>         <NA>               <NA>
## 680               NA              <NA>         <NA>               <NA>
## 681             TRUE              <NA>         <NA>               <NA>
## 682               NA              <NA>         <NA>               <NA>
## 683               NA              <NA>         <NA>               <NA>
## 684               NA              <NA>         <NA>               <NA>
## 685               NA              <NA>         <NA>               <NA>
## 686               NA              <NA>         <NA>               <NA>
## 687               NA              <NA>         <NA>               <NA>
## 688               NA              <NA>         <NA>               <NA>
## 689               NA              <NA>         <NA>               <NA>
## 690               NA              <NA>         <NA>               <NA>
## 691               NA              <NA>         <NA>               <NA>
## 692               NA              <NA>         <NA>               <NA>
## 693               NA              <NA>         <NA>               <NA>
## 694               NA              <NA>         <NA>               <NA>
## 695               NA              <NA>         <NA>               <NA>
## 696               NA              <NA>         <NA>               <NA>
## 697               NA              <NA>         <NA>               <NA>
## 698               NA              <NA>         <NA>               <NA>
## 699               NA              <NA>         <NA>               <NA>
## 700               NA              <NA>         <NA>               <NA>
## 701               NA              <NA>         <NA>               <NA>
## 702               NA              <NA>         <NA>               <NA>
## 703               NA              <NA>         <NA>               <NA>
## 704               NA              <NA>         <NA>               <NA>
## 705               NA              <NA>         <NA>               <NA>
## 706               NA              <NA>         <NA>               <NA>
## 707               NA              <NA>         <NA>               <NA>
## 708             TRUE              <NA>         <NA>               <NA>
## 709               NA              <NA>         <NA>               <NA>
## 710             TRUE              <NA>         <NA>               <NA>
## 711               NA              <NA>         <NA>               <NA>
## 712               NA              <NA>         <NA>               <NA>
## 713               NA              <NA>         <NA>               <NA>
## 714               NA              <NA>         <NA>               <NA>
## 715               NA              <NA>         <NA>               <NA>
## 716               NA              <NA>         <NA>               <NA>
## 717               NA              <NA>         <NA>               <NA>
## 718               NA              <NA>         <NA>               <NA>
## 719               NA              <NA>         <NA>               <NA>
## 720               NA              <NA>         <NA>               <NA>
## 721               NA              <NA>         <NA>               <NA>
## 722               NA              <NA>         <NA>               <NA>
## 723               NA              <NA>         <NA>               <NA>
## 724               NA              <NA>         <NA>               <NA>
## 725               NA              <NA>         <NA>               <NA>
## 726               NA              <NA>         <NA>               <NA>
## 727               NA              <NA>         <NA>               <NA>
## 728               NA              <NA>         <NA>               <NA>
## 729               NA              <NA>         <NA>               <NA>
## 730               NA              <NA>         <NA>               <NA>
## 731               NA              <NA>         <NA>               <NA>
## 732               NA              <NA>         <NA>               <NA>
## 733               NA              <NA>         <NA>               <NA>
## 734               NA              <NA>         <NA>               <NA>
## 735               NA              <NA>         <NA>               <NA>
## 736               NA              <NA>         <NA>               <NA>
## 737               NA              <NA>         <NA>               <NA>
## 738               NA              <NA>         <NA>               <NA>
## 739               NA              <NA>         <NA>               <NA>
## 740               NA              <NA>         <NA>               <NA>
## 741               NA              <NA>         <NA>               <NA>
## 742               NA              <NA>         <NA>               <NA>
## 743               NA              <NA>         <NA>               <NA>
## 744               NA              <NA>         <NA>               <NA>
## 745               NA              <NA>         <NA>               <NA>
## 746               NA              <NA>         <NA>               <NA>
## 747               NA              <NA>         <NA>               <NA>
## 748               NA              <NA>         <NA>               <NA>
## 749               NA              <NA>         <NA>               <NA>
## 750               NA              <NA>         <NA>               <NA>
## 751               NA              <NA>         <NA>               <NA>
## 752               NA              <NA>         <NA>               <NA>
## 753               NA              <NA>         <NA>               <NA>
## 754               NA              <NA>         <NA>               <NA>
## 755               NA              <NA>         <NA>               <NA>
## 756               NA              <NA>         <NA>               <NA>
## 757               NA              <NA>         <NA>               <NA>
## 758               NA              <NA>         <NA>               <NA>
## 759               NA              <NA>         <NA>               <NA>
## 760               NA              <NA>         <NA>               <NA>
## 761               NA              <NA>         <NA>               <NA>
## 762               NA              <NA>         <NA>               <NA>
## 763               NA              <NA>         <NA>               <NA>
## 764               NA              <NA>         <NA>               <NA>
## 765               NA              <NA>         <NA>               <NA>
## 766               NA              <NA>         <NA>               <NA>
## 767               NA              <NA>         <NA>               <NA>
## 768               NA              <NA>         <NA>               <NA>
## 769             TRUE              <NA>         <NA>               <NA>
## 770               NA              <NA>         <NA>               <NA>
## 771               NA              <NA>         <NA>               <NA>
## 772               NA              <NA>         <NA>               <NA>
## 773               NA              <NA>         <NA>               <NA>
## 774               NA              <NA>         <NA>               <NA>
## 775               NA              <NA>         <NA>               <NA>
## 776             TRUE              <NA>         <NA>               <NA>
## 777            FALSE              <NA>         <NA>               <NA>
## 778               NA              <NA>         <NA>               <NA>
## 779               NA              <NA>         <NA>               <NA>
## 780               NA              <NA>         <NA>               <NA>
## 781               NA              <NA>         <NA>               <NA>
## 782               NA              <NA>         <NA>               <NA>
## 783               NA              <NA>         <NA>               <NA>
## 784               NA              <NA>         <NA>               <NA>
## 785               NA              <NA>         <NA>               <NA>
## 786               NA              <NA>         <NA>               <NA>
## 787             TRUE              <NA>         <NA>               <NA>
## 788               NA              <NA>         <NA>               <NA>
## 789               NA              <NA>         <NA>               <NA>
## 790               NA              <NA>         <NA>               <NA>
## 791               NA              <NA>         <NA>               <NA>
## 792               NA              <NA>         <NA>               <NA>
## 793               NA              <NA>         <NA>               <NA>
## 794               NA              <NA>         <NA>               <NA>
## 795               NA              <NA>         <NA>               <NA>
## 796               NA              <NA>         <NA>               <NA>
## 797               NA              <NA>         <NA>               <NA>
## 798               NA              <NA>         <NA>               <NA>
## 799               NA              <NA>         <NA>               <NA>
## 800               NA              <NA>         <NA>               <NA>
## 801               NA              <NA>         <NA>               <NA>
## 802             TRUE              <NA>         <NA>               <NA>
## 803               NA              <NA>         <NA>               <NA>
## 804            FALSE              <NA>         <NA>               <NA>
## 805             TRUE              <NA>         <NA>               <NA>
## 806               NA              <NA>         <NA>               <NA>
## 807            FALSE              <NA>         <NA>               <NA>
## 808               NA              <NA>         <NA>               <NA>
## 809               NA              <NA>         <NA>               <NA>
## 810               NA              <NA>         <NA>               <NA>
## 811               NA              <NA>         <NA>               <NA>
## 812               NA              <NA>         <NA>               <NA>
## 813               NA              <NA>         <NA>               <NA>
## 814               NA              <NA>         <NA>               <NA>
## 815               NA              <NA>         <NA>               <NA>
## 816               NA              <NA>         <NA>               <NA>
## 817               NA              <NA>         <NA>               <NA>
## 818               NA              <NA>         <NA>               <NA>
## 819               NA              <NA>         <NA>               <NA>
## 820               NA              <NA>         <NA>               <NA>
## 821               NA              <NA>         <NA>               <NA>
## 822               NA              <NA>         <NA>               <NA>
## 823               NA              <NA>         <NA>               <NA>
## 824               NA              <NA>         <NA>               <NA>
## 825               NA              <NA>         <NA>               <NA>
## 826               NA              <NA>         <NA>               <NA>
## 827               NA              <NA>         <NA>               <NA>
## 828               NA              <NA>         <NA>               <NA>
## 829               NA              <NA>         <NA>               <NA>
## 830               NA              <NA>         <NA>               <NA>
## 831               NA              <NA>         <NA>               <NA>
## 832               NA              <NA>         <NA>               <NA>
## 833               NA              <NA>         <NA>               <NA>
## 834               NA              <NA>         <NA>               <NA>
## 835               NA              <NA>         <NA>               <NA>
## 836               NA              <NA>         <NA>               <NA>
## 837               NA              <NA>         <NA>               <NA>
## 838               NA              <NA>         <NA>               <NA>
## 839               NA              <NA>         <NA>               <NA>
## 840               NA              <NA>         <NA>               <NA>
## 841               NA              <NA>         <NA>               <NA>
## 842             TRUE              <NA>         <NA>               <NA>
## 843               NA              <NA>         <NA>               <NA>
## 844             TRUE              <NA>         <NA>               <NA>
## 845               NA              <NA>         <NA>               <NA>
## 846               NA              <NA>         <NA>               <NA>
## 847             TRUE              <NA>         <NA>               <NA>
## 848               NA              <NA>         <NA>               <NA>
## 849               NA              <NA>         <NA>               <NA>
## 850               NA              <NA>         <NA>               <NA>
## 851               NA              <NA>         <NA>               <NA>
## 852               NA              <NA>         <NA>               <NA>
## 853               NA              <NA>         <NA>               <NA>
## 854               NA              <NA>         <NA>               <NA>
## 855               NA              <NA>         <NA>               <NA>
## 856               NA              <NA>         <NA>               <NA>
## 857             TRUE              <NA>         <NA>               <NA>
## 858               NA              <NA>         <NA>               <NA>
## 859               NA              <NA>         <NA>               <NA>
## 860               NA              <NA>         <NA>               <NA>
## 861               NA              <NA>         <NA>               <NA>
## 862               NA              <NA>         <NA>               <NA>
## 863               NA              <NA>         <NA>               <NA>
## 864               NA              <NA>         <NA>               <NA>
## 865               NA              <NA>         <NA>               <NA>
## 866               NA              <NA>         <NA>               <NA>
## 867               NA              <NA>         <NA>               <NA>
## 868               NA              <NA>         <NA>               <NA>
## 869               NA              <NA>         <NA>               <NA>
## 870               NA              <NA>         <NA>               <NA>
## 871               NA              <NA>         <NA>               <NA>
## 872               NA              <NA>         <NA>               <NA>
## 873               NA              <NA>         <NA>               <NA>
## 874               NA              <NA>         <NA>               <NA>
## 875               NA              <NA>         <NA>               <NA>
## 876               NA              <NA>         <NA>               <NA>
## 877               NA              <NA>         <NA>               <NA>
## 878               NA              <NA>         <NA>               <NA>
## 879               NA              <NA>         <NA>               <NA>
## 880               NA              <NA>         <NA>               <NA>
## 881               NA              <NA>         <NA>               <NA>
## 882               NA              <NA>         <NA>               <NA>
## 883               NA              <NA>         <NA>               <NA>
## 884               NA              <NA>         <NA>               <NA>
## 885             TRUE              <NA>         <NA>               <NA>
## 886               NA              <NA>         <NA>               <NA>
## 887               NA              <NA>         <NA>               <NA>
## 888               NA              <NA>         <NA>               <NA>
## 889               NA              <NA>         <NA>               <NA>
## 890               NA              <NA>         <NA>               <NA>
## 891               NA              <NA>         <NA>               <NA>
## 892               NA              <NA>         <NA>               <NA>
## 893               NA              <NA>         <NA>               <NA>
## 894               NA              <NA>         <NA>               <NA>
## 895               NA              <NA>         <NA>               <NA>
## 896               NA              <NA>         <NA>               <NA>
## 897               NA              <NA>         <NA>               <NA>
## 898               NA              <NA>         <NA>               <NA>
## 899               NA              <NA>         <NA>               <NA>
## 900               NA              <NA>         <NA>               <NA>
## 901               NA              <NA>         <NA>               <NA>
## 902               NA              <NA>         <NA>               <NA>
## 903             TRUE              <NA>         <NA>               <NA>
## 904               NA              <NA>         <NA>               <NA>
## 905               NA              <NA>         <NA>               <NA>
## 906               NA              <NA>         <NA>               <NA>
## 907               NA              <NA>         <NA>               <NA>
## 908               NA              <NA>         <NA>               <NA>
## 909               NA              <NA>         <NA>               <NA>
## 910             TRUE              <NA>         <NA>               <NA>
## 911               NA              <NA>         <NA>               <NA>
## 912             TRUE              <NA>         <NA>               <NA>
## 913               NA              <NA>         <NA>               <NA>
## 914               NA              <NA>         <NA>               <NA>
## 915               NA              <NA>         <NA>               <NA>
## 916               NA              <NA>         <NA>               <NA>
## 917               NA              <NA>         <NA>               <NA>
## 918               NA              <NA>         <NA>               <NA>
## 919               NA              <NA>         <NA>               <NA>
## 920               NA              <NA>         <NA>               <NA>
## 921               NA              <NA>         <NA>               <NA>
## 922            FALSE              <NA>         <NA>               <NA>
## 923               NA              <NA>         <NA>               <NA>
## 924               NA              <NA>         <NA>               <NA>
## 925               NA              <NA>         <NA>               <NA>
## 926               NA              <NA>         <NA>               <NA>
## 927               NA              <NA>         <NA>               <NA>
## 928               NA              <NA>         <NA>               <NA>
## 929               NA              <NA>         <NA>               <NA>
## 930               NA              <NA>         <NA>               <NA>
## 931               NA              <NA>         <NA>               <NA>
## 932               NA              <NA>         <NA>               <NA>
## 933               NA              <NA>         <NA>               <NA>
## 934               NA              <NA>         <NA>               <NA>
## 935               NA              <NA>         <NA>               <NA>
## 936               NA              <NA>         <NA>               <NA>
## 937               NA              <NA>         <NA>               <NA>
## 938               NA              <NA>         <NA>               <NA>
## 939               NA              <NA>         <NA>               <NA>
## 940               NA              <NA>         <NA>               <NA>
## 941               NA              <NA>         <NA>               <NA>
## 942               NA              <NA>         <NA>               <NA>
## 943               NA              <NA>         <NA>               <NA>
## 944            FALSE              <NA>         <NA>               <NA>
## 945               NA              <NA>         <NA>               <NA>
## 946               NA              <NA>         <NA>               <NA>
## 947               NA              <NA>         <NA>               <NA>
## 948               NA              <NA>         <NA>               <NA>
## 949               NA              <NA>         <NA>               <NA>
## 950               NA              <NA>         <NA>               <NA>
## 951               NA              <NA>         <NA>               <NA>
## 952               NA              <NA>         <NA>               <NA>
## 953               NA              <NA>         <NA>               <NA>
## 954               NA              <NA>         <NA>               <NA>
## 955               NA              <NA>         <NA>               <NA>
## 956               NA              <NA>         <NA>               <NA>
## 957               NA              <NA>         <NA>               <NA>
## 958               NA              <NA>         <NA>               <NA>
## 959               NA              <NA>         <NA>               <NA>
## 960               NA              <NA>         <NA>               <NA>
## 961               NA              <NA>         <NA>               <NA>
## 962               NA              <NA>         <NA>               <NA>
## 963               NA              <NA>         <NA>               <NA>
## 964               NA              <NA>         <NA>               <NA>
## 965               NA              <NA>         <NA>               <NA>
## 966               NA              <NA>         <NA>               <NA>
## 967               NA              <NA>         <NA>               <NA>
## 968               NA              <NA>         <NA>               <NA>
## 969               NA              <NA>         <NA>               <NA>
## 970               NA              <NA>         <NA>               <NA>
## 971               NA              <NA>         <NA>               <NA>
## 972            FALSE              <NA>         <NA>               <NA>
## 973               NA              <NA>         <NA>               <NA>
## 974               NA              <NA>         <NA>               <NA>
## 975               NA              <NA>         <NA>               <NA>
## 976               NA              <NA>         <NA>               <NA>
## 977            FALSE              <NA>         <NA>               <NA>
## 978               NA              <NA>         <NA>               <NA>
## 979               NA              <NA>         <NA>               <NA>
## 980               NA              <NA>         <NA>               <NA>
## 981               NA              <NA>         <NA>               <NA>
## 982               NA              <NA>         <NA>               <NA>
## 983               NA              <NA>         <NA>               <NA>
## 984               NA              <NA>         <NA>               <NA>
## 985               NA              <NA>         <NA>               <NA>
## 986               NA              <NA>         <NA>               <NA>
## 987               NA              <NA>         <NA>               <NA>
## 988               NA              <NA>         <NA>               <NA>
## 989               NA              <NA>         <NA>               <NA>
## 990               NA              <NA>         <NA>               <NA>
## 991            FALSE              <NA>         <NA>               <NA>
## 992               NA              <NA>         <NA>               <NA>
## 993               NA              <NA>         <NA>               <NA>
## 994               NA              <NA>         <NA>               <NA>
## 995               NA              <NA>         <NA>               <NA>
## 996               NA              <NA>         <NA>               <NA>
## 997               NA              <NA>         <NA>               <NA>
## 998               NA              <NA>         <NA>               <NA>
## 999               NA              <NA>         <NA>               <NA>
## 1000           FALSE              <NA>         <NA>               <NA>
## 1001              NA              <NA>         <NA>               <NA>
## 1002              NA              <NA>         <NA>               <NA>
## 1003              NA              <NA>         <NA>               <NA>
## 1004              NA              <NA>         <NA>               <NA>
## 1005              NA              <NA>         <NA>               <NA>
## 1006              NA              <NA>         <NA>               <NA>
## 1007            TRUE              <NA>         <NA>               <NA>
## 1008              NA              <NA>         <NA>               <NA>
## 1009              NA              <NA>         <NA>               <NA>
## 1010              NA              <NA>         <NA>               <NA>
## 1011              NA              <NA>         <NA>               <NA>
## 1012              NA              <NA>         <NA>               <NA>
## 1013              NA              <NA>         <NA>               <NA>
## 1014              NA              <NA>         <NA>               <NA>
## 1015              NA              <NA>         <NA>               <NA>
## 1016              NA              <NA>         <NA>               <NA>
## 1017              NA              <NA>         <NA>               <NA>
## 1018              NA              <NA>         <NA>               <NA>
## 1019              NA              <NA>         <NA>               <NA>
## 1020              NA              <NA>         <NA>               <NA>
## 1021              NA              <NA>         <NA>               <NA>
## 1022              NA              <NA>         <NA>               <NA>
## 1023           FALSE              <NA>         <NA>               <NA>
## 1024              NA              <NA>         <NA>               <NA>
## 1025              NA              <NA>         <NA>               <NA>
## 1026              NA              <NA>         <NA>               <NA>
## 1027           FALSE              <NA>         <NA>               <NA>
## 1028              NA              <NA>         <NA>               <NA>
## 1029              NA              <NA>         <NA>               <NA>
## 1030            TRUE              <NA>         <NA>               <NA>
## 1031              NA              <NA>         <NA>               <NA>
## 1032              NA              <NA>         <NA>               <NA>
## 1033              NA              <NA>         <NA>               <NA>
## 1034            TRUE              <NA>         <NA>               <NA>
## 1035           FALSE              <NA>         <NA>               <NA>
## 1036              NA              <NA>         <NA>               <NA>
## 1037            TRUE              <NA>         <NA>               <NA>
## 1038              NA              <NA>         <NA>               <NA>
## 1039            TRUE              <NA>         <NA>               <NA>
## 1040            TRUE              <NA>         <NA>               <NA>
## 1041              NA              <NA>         <NA>               <NA>
## 1042              NA              <NA>         <NA>               <NA>
## 1043              NA              <NA>         <NA>               <NA>
## 1044              NA              <NA>         <NA>               <NA>
## 1045              NA              <NA>         <NA>               <NA>
## 1046              NA              <NA>         <NA>               <NA>
## 1047              NA              <NA>         <NA>               <NA>
## 1048              NA              <NA>         <NA>               <NA>
## 1049              NA              <NA>         <NA>               <NA>
## 1050              NA              <NA>         <NA>               <NA>
## 1051              NA              <NA>         <NA>               <NA>
## 1052              NA              <NA>         <NA>               <NA>
## 1053              NA              <NA>         <NA>               <NA>
## 1054              NA              <NA>         <NA>               <NA>
## 1055              NA              <NA>         <NA>               <NA>
## 1056              NA              <NA>         <NA>               <NA>
## 1057              NA              <NA>         <NA>               <NA>
## 1058              NA              <NA>         <NA>               <NA>
## 1059              NA              <NA>         <NA>               <NA>
## 1060              NA              <NA>         <NA>               <NA>
## 1061              NA              <NA>         <NA>               <NA>
## 1062              NA              <NA>         <NA>               <NA>
## 1063              NA              <NA>         <NA>               <NA>
## 1064              NA              <NA>         <NA>               <NA>
## 1065              NA              <NA>         <NA>               <NA>
## 1066              NA              <NA>         <NA>               <NA>
## 1067              NA              <NA>         <NA>               <NA>
## 1068              NA              <NA>         <NA>               <NA>
## 1069              NA              <NA>         <NA>               <NA>
## 1070              NA              <NA>         <NA>               <NA>
## 1071              NA              <NA>         <NA>               <NA>
## 1072              NA              <NA>         <NA>               <NA>
## 1073            TRUE              <NA>         <NA>               <NA>
## 1074              NA              <NA>         <NA>               <NA>
## 1075            TRUE              <NA>         <NA>               <NA>
## 1076              NA              <NA>         <NA>               <NA>
## 1077              NA              <NA>         <NA>               <NA>
## 1078              NA              <NA>         <NA>               <NA>
## 1079              NA              <NA>         <NA>               <NA>
## 1080              NA              <NA>         <NA>               <NA>
## 1081              NA              <NA>         <NA>               <NA>
## 1082              NA              <NA>         <NA>               <NA>
## 1083              NA              <NA>         <NA>               <NA>
## 1084              NA              <NA>         <NA>               <NA>
## 1085              NA              <NA>         <NA>               <NA>
## 1086              NA              <NA>         <NA>               <NA>
## 1087              NA              <NA>         <NA>               <NA>
## 1088              NA              <NA>         <NA>               <NA>
## 1089              NA              <NA>         <NA>               <NA>
## 1090              NA              <NA>         <NA>               <NA>
## 1091              NA              <NA>         <NA>               <NA>
## 1092              NA              <NA>         <NA>               <NA>
## 1093              NA              <NA>         <NA>               <NA>
## 1094              NA              <NA>         <NA>               <NA>
## 1095              NA              <NA>         <NA>               <NA>
## 1096              NA              <NA>         <NA>               <NA>
## 1097              NA              <NA>         <NA>               <NA>
## 1098              NA              <NA>         <NA>               <NA>
## 1099              NA              <NA>         <NA>               <NA>
## 1100              NA              <NA>         <NA>               <NA>
## 1101            TRUE              <NA>         <NA>               <NA>
## 1102              NA              <NA>         <NA>               <NA>
## 1103              NA              <NA>         <NA>               <NA>
## 1104              NA              <NA>         <NA>               <NA>
## 1105              NA              <NA>         <NA>               <NA>
## 1106              NA              <NA>         <NA>               <NA>
## 1107              NA              <NA>         <NA>               <NA>
## 1108              NA              <NA>         <NA>               <NA>
## 1109              NA              <NA>         <NA>               <NA>
## 1110              NA              <NA>         <NA>               <NA>
## 1111              NA              <NA>         <NA>               <NA>
##      retweet_source retweet_favorite_count retweet_retweet_count
## 1              <NA>                     NA                    NA
## 2              <NA>                     NA                    NA
## 3              <NA>                     NA                    NA
## 4              <NA>                     NA                    NA
## 5              <NA>                     NA                    NA
## 6              <NA>                     NA                    NA
## 7              <NA>                     NA                    NA
## 8              <NA>                     NA                    NA
## 9              <NA>                     NA                    NA
## 10             <NA>                     NA                    NA
## 11             <NA>                     NA                    NA
## 12             <NA>                     NA                    NA
## 13             <NA>                     NA                    NA
## 14             <NA>                     NA                    NA
## 15             <NA>                     NA                    NA
## 16             <NA>                     NA                    NA
## 17             <NA>                     NA                    NA
## 18             <NA>                     NA                    NA
## 19             <NA>                     NA                    NA
## 20             <NA>                     NA                    NA
## 21             <NA>                     NA                    NA
## 22             <NA>                     NA                    NA
## 23             <NA>                     NA                    NA
## 24             <NA>                     NA                    NA
## 25             <NA>                     NA                    NA
## 26             <NA>                     NA                    NA
## 27             <NA>                     NA                    NA
## 28             <NA>                     NA                    NA
## 29             <NA>                     NA                    NA
## 30             <NA>                     NA                    NA
## 31             <NA>                     NA                    NA
## 32             <NA>                     NA                    NA
## 33             <NA>                     NA                    NA
## 34             <NA>                     NA                    NA
## 35             <NA>                     NA                    NA
## 36             <NA>                     NA                    NA
## 37             <NA>                     NA                    NA
## 38             <NA>                     NA                    NA
## 39             <NA>                     NA                    NA
## 40             <NA>                     NA                    NA
## 41             <NA>                     NA                    NA
## 42             <NA>                     NA                    NA
## 43             <NA>                     NA                    NA
## 44             <NA>                     NA                    NA
## 45             <NA>                     NA                    NA
## 46             <NA>                     NA                    NA
## 47             <NA>                     NA                    NA
## 48             <NA>                     NA                    NA
## 49             <NA>                     NA                    NA
## 50             <NA>                     NA                    NA
## 51             <NA>                     NA                    NA
## 52             <NA>                     NA                    NA
## 53             <NA>                     NA                    NA
## 54             <NA>                     NA                    NA
## 55             <NA>                     NA                    NA
## 56             <NA>                     NA                    NA
## 57             <NA>                     NA                    NA
## 58             <NA>                     NA                    NA
## 59             <NA>                     NA                    NA
## 60             <NA>                     NA                    NA
## 61             <NA>                     NA                    NA
## 62             <NA>                     NA                    NA
## 63             <NA>                     NA                    NA
## 64             <NA>                     NA                    NA
## 65             <NA>                     NA                    NA
## 66             <NA>                     NA                    NA
## 67             <NA>                     NA                    NA
## 68             <NA>                     NA                    NA
## 69             <NA>                     NA                    NA
## 70             <NA>                     NA                    NA
## 71             <NA>                     NA                    NA
## 72             <NA>                     NA                    NA
## 73             <NA>                     NA                    NA
## 74             <NA>                     NA                    NA
## 75             <NA>                     NA                    NA
## 76             <NA>                     NA                    NA
## 77             <NA>                     NA                    NA
## 78             <NA>                     NA                    NA
## 79             <NA>                     NA                    NA
## 80             <NA>                     NA                    NA
## 81             <NA>                     NA                    NA
## 82             <NA>                     NA                    NA
## 83             <NA>                     NA                    NA
## 84             <NA>                     NA                    NA
## 85             <NA>                     NA                    NA
## 86             <NA>                     NA                    NA
## 87             <NA>                     NA                    NA
## 88             <NA>                     NA                    NA
## 89             <NA>                     NA                    NA
## 90             <NA>                     NA                    NA
## 91             <NA>                     NA                    NA
## 92             <NA>                     NA                    NA
## 93             <NA>                     NA                    NA
## 94             <NA>                     NA                    NA
## 95             <NA>                     NA                    NA
## 96             <NA>                     NA                    NA
## 97             <NA>                     NA                    NA
## 98             <NA>                     NA                    NA
## 99             <NA>                     NA                    NA
## 100            <NA>                     NA                    NA
## 101            <NA>                     NA                    NA
## 102            <NA>                     NA                    NA
## 103            <NA>                     NA                    NA
## 104            <NA>                     NA                    NA
## 105            <NA>                     NA                    NA
## 106            <NA>                     NA                    NA
## 107            <NA>                     NA                    NA
## 108            <NA>                     NA                    NA
## 109            <NA>                     NA                    NA
## 110            <NA>                     NA                    NA
## 111            <NA>                     NA                    NA
## 112            <NA>                     NA                    NA
## 113            <NA>                     NA                    NA
## 114            <NA>                     NA                    NA
## 115            <NA>                     NA                    NA
## 116            <NA>                     NA                    NA
## 117            <NA>                     NA                    NA
## 118            <NA>                     NA                    NA
## 119            <NA>                     NA                    NA
## 120            <NA>                     NA                    NA
## 121            <NA>                     NA                    NA
## 122            <NA>                     NA                    NA
## 123            <NA>                     NA                    NA
## 124            <NA>                     NA                    NA
## 125            <NA>                     NA                    NA
## 126            <NA>                     NA                    NA
## 127            <NA>                     NA                    NA
## 128            <NA>                     NA                    NA
## 129            <NA>                     NA                    NA
## 130            <NA>                     NA                    NA
## 131            <NA>                     NA                    NA
## 132            <NA>                     NA                    NA
## 133            <NA>                     NA                    NA
## 134            <NA>                     NA                    NA
## 135            <NA>                     NA                    NA
## 136            <NA>                     NA                    NA
## 137            <NA>                     NA                    NA
## 138            <NA>                     NA                    NA
## 139            <NA>                     NA                    NA
## 140            <NA>                     NA                    NA
## 141            <NA>                     NA                    NA
## 142            <NA>                     NA                    NA
## 143            <NA>                     NA                    NA
## 144            <NA>                     NA                    NA
## 145            <NA>                     NA                    NA
## 146            <NA>                     NA                    NA
## 147            <NA>                     NA                    NA
## 148            <NA>                     NA                    NA
## 149            <NA>                     NA                    NA
## 150            <NA>                     NA                    NA
## 151            <NA>                     NA                    NA
## 152            <NA>                     NA                    NA
## 153            <NA>                     NA                    NA
## 154            <NA>                     NA                    NA
## 155            <NA>                     NA                    NA
## 156            <NA>                     NA                    NA
## 157            <NA>                     NA                    NA
## 158            <NA>                     NA                    NA
## 159            <NA>                     NA                    NA
## 160            <NA>                     NA                    NA
## 161            <NA>                     NA                    NA
## 162            <NA>                     NA                    NA
## 163            <NA>                     NA                    NA
## 164            <NA>                     NA                    NA
## 165            <NA>                     NA                    NA
## 166            <NA>                     NA                    NA
## 167            <NA>                     NA                    NA
## 168            <NA>                     NA                    NA
## 169            <NA>                     NA                    NA
## 170            <NA>                     NA                    NA
## 171            <NA>                     NA                    NA
## 172            <NA>                     NA                    NA
## 173            <NA>                     NA                    NA
## 174            <NA>                     NA                    NA
## 175            <NA>                     NA                    NA
## 176            <NA>                     NA                    NA
## 177            <NA>                     NA                    NA
## 178            <NA>                     NA                    NA
## 179            <NA>                     NA                    NA
## 180            <NA>                     NA                    NA
## 181            <NA>                     NA                    NA
## 182            <NA>                     NA                    NA
## 183            <NA>                     NA                    NA
## 184            <NA>                     NA                    NA
## 185            <NA>                     NA                    NA
## 186            <NA>                     NA                    NA
## 187            <NA>                     NA                    NA
## 188            <NA>                     NA                    NA
## 189            <NA>                     NA                    NA
## 190            <NA>                     NA                    NA
## 191            <NA>                     NA                    NA
## 192            <NA>                     NA                    NA
## 193            <NA>                     NA                    NA
## 194            <NA>                     NA                    NA
## 195            <NA>                     NA                    NA
## 196            <NA>                     NA                    NA
## 197            <NA>                     NA                    NA
## 198            <NA>                     NA                    NA
## 199            <NA>                     NA                    NA
## 200            <NA>                     NA                    NA
## 201            <NA>                     NA                    NA
## 202            <NA>                     NA                    NA
## 203            <NA>                     NA                    NA
## 204            <NA>                     NA                    NA
## 205            <NA>                     NA                    NA
## 206            <NA>                     NA                    NA
## 207            <NA>                     NA                    NA
## 208            <NA>                     NA                    NA
## 209            <NA>                     NA                    NA
## 210            <NA>                     NA                    NA
## 211            <NA>                     NA                    NA
## 212            <NA>                     NA                    NA
## 213            <NA>                     NA                    NA
## 214            <NA>                     NA                    NA
## 215            <NA>                     NA                    NA
## 216            <NA>                     NA                    NA
## 217            <NA>                     NA                    NA
## 218            <NA>                     NA                    NA
## 219            <NA>                     NA                    NA
## 220            <NA>                     NA                    NA
## 221            <NA>                     NA                    NA
## 222            <NA>                     NA                    NA
## 223            <NA>                     NA                    NA
## 224            <NA>                     NA                    NA
## 225            <NA>                     NA                    NA
## 226            <NA>                     NA                    NA
## 227            <NA>                     NA                    NA
## 228            <NA>                     NA                    NA
## 229            <NA>                     NA                    NA
## 230            <NA>                     NA                    NA
## 231            <NA>                     NA                    NA
## 232            <NA>                     NA                    NA
## 233            <NA>                     NA                    NA
## 234            <NA>                     NA                    NA
## 235            <NA>                     NA                    NA
## 236            <NA>                     NA                    NA
## 237            <NA>                     NA                    NA
## 238            <NA>                     NA                    NA
## 239            <NA>                     NA                    NA
## 240            <NA>                     NA                    NA
## 241            <NA>                     NA                    NA
## 242            <NA>                     NA                    NA
## 243            <NA>                     NA                    NA
## 244            <NA>                     NA                    NA
## 245            <NA>                     NA                    NA
## 246            <NA>                     NA                    NA
## 247            <NA>                     NA                    NA
## 248            <NA>                     NA                    NA
## 249            <NA>                     NA                    NA
## 250            <NA>                     NA                    NA
## 251            <NA>                     NA                    NA
## 252            <NA>                     NA                    NA
## 253            <NA>                     NA                    NA
## 254            <NA>                     NA                    NA
## 255            <NA>                     NA                    NA
## 256            <NA>                     NA                    NA
## 257            <NA>                     NA                    NA
## 258            <NA>                     NA                    NA
## 259            <NA>                     NA                    NA
## 260            <NA>                     NA                    NA
## 261            <NA>                     NA                    NA
## 262            <NA>                     NA                    NA
## 263            <NA>                     NA                    NA
## 264            <NA>                     NA                    NA
## 265            <NA>                     NA                    NA
## 266            <NA>                     NA                    NA
## 267            <NA>                     NA                    NA
## 268            <NA>                     NA                    NA
## 269            <NA>                     NA                    NA
## 270            <NA>                     NA                    NA
## 271            <NA>                     NA                    NA
## 272            <NA>                     NA                    NA
## 273            <NA>                     NA                    NA
## 274            <NA>                     NA                    NA
## 275            <NA>                     NA                    NA
## 276            <NA>                     NA                    NA
## 277            <NA>                     NA                    NA
## 278            <NA>                     NA                    NA
## 279            <NA>                     NA                    NA
## 280            <NA>                     NA                    NA
## 281            <NA>                     NA                    NA
## 282            <NA>                     NA                    NA
## 283            <NA>                     NA                    NA
## 284            <NA>                     NA                    NA
## 285            <NA>                     NA                    NA
## 286            <NA>                     NA                    NA
## 287            <NA>                     NA                    NA
## 288            <NA>                     NA                    NA
## 289            <NA>                     NA                    NA
## 290            <NA>                     NA                    NA
## 291            <NA>                     NA                    NA
## 292            <NA>                     NA                    NA
## 293            <NA>                     NA                    NA
## 294            <NA>                     NA                    NA
## 295            <NA>                     NA                    NA
## 296            <NA>                     NA                    NA
## 297            <NA>                     NA                    NA
## 298            <NA>                     NA                    NA
## 299            <NA>                     NA                    NA
## 300            <NA>                     NA                    NA
## 301            <NA>                     NA                    NA
## 302            <NA>                     NA                    NA
## 303            <NA>                     NA                    NA
## 304            <NA>                     NA                    NA
## 305            <NA>                     NA                    NA
## 306            <NA>                     NA                    NA
## 307            <NA>                     NA                    NA
## 308            <NA>                     NA                    NA
## 309            <NA>                     NA                    NA
## 310            <NA>                     NA                    NA
## 311            <NA>                     NA                    NA
## 312            <NA>                     NA                    NA
## 313            <NA>                     NA                    NA
## 314            <NA>                     NA                    NA
## 315            <NA>                     NA                    NA
## 316            <NA>                     NA                    NA
## 317            <NA>                     NA                    NA
## 318            <NA>                     NA                    NA
## 319            <NA>                     NA                    NA
## 320            <NA>                     NA                    NA
## 321            <NA>                     NA                    NA
## 322            <NA>                     NA                    NA
## 323            <NA>                     NA                    NA
## 324            <NA>                     NA                    NA
## 325            <NA>                     NA                    NA
## 326            <NA>                     NA                    NA
## 327            <NA>                     NA                    NA
## 328            <NA>                     NA                    NA
## 329            <NA>                     NA                    NA
## 330            <NA>                     NA                    NA
## 331            <NA>                     NA                    NA
## 332            <NA>                     NA                    NA
## 333            <NA>                     NA                    NA
## 334            <NA>                     NA                    NA
## 335            <NA>                     NA                    NA
## 336            <NA>                     NA                    NA
## 337            <NA>                     NA                    NA
## 338            <NA>                     NA                    NA
## 339            <NA>                     NA                    NA
## 340            <NA>                     NA                    NA
## 341            <NA>                     NA                    NA
## 342            <NA>                     NA                    NA
## 343            <NA>                     NA                    NA
## 344            <NA>                     NA                    NA
## 345            <NA>                     NA                    NA
## 346            <NA>                     NA                    NA
## 347            <NA>                     NA                    NA
## 348            <NA>                     NA                    NA
## 349            <NA>                     NA                    NA
## 350            <NA>                     NA                    NA
## 351            <NA>                     NA                    NA
## 352            <NA>                     NA                    NA
## 353            <NA>                     NA                    NA
## 354            <NA>                     NA                    NA
## 355            <NA>                     NA                    NA
## 356            <NA>                     NA                    NA
## 357            <NA>                     NA                    NA
## 358            <NA>                     NA                    NA
## 359            <NA>                     NA                    NA
## 360            <NA>                     NA                    NA
## 361            <NA>                     NA                    NA
## 362            <NA>                     NA                    NA
## 363            <NA>                     NA                    NA
## 364            <NA>                     NA                    NA
## 365            <NA>                     NA                    NA
## 366            <NA>                     NA                    NA
## 367            <NA>                     NA                    NA
## 368            <NA>                     NA                    NA
## 369            <NA>                     NA                    NA
## 370            <NA>                     NA                    NA
## 371            <NA>                     NA                    NA
## 372            <NA>                     NA                    NA
## 373            <NA>                     NA                    NA
## 374            <NA>                     NA                    NA
## 375            <NA>                     NA                    NA
## 376            <NA>                     NA                    NA
## 377            <NA>                     NA                    NA
## 378            <NA>                     NA                    NA
## 379            <NA>                     NA                    NA
## 380            <NA>                     NA                    NA
## 381            <NA>                     NA                    NA
## 382            <NA>                     NA                    NA
## 383            <NA>                     NA                    NA
## 384            <NA>                     NA                    NA
## 385            <NA>                     NA                    NA
## 386            <NA>                     NA                    NA
## 387            <NA>                     NA                    NA
## 388            <NA>                     NA                    NA
## 389            <NA>                     NA                    NA
## 390            <NA>                     NA                    NA
## 391            <NA>                     NA                    NA
## 392            <NA>                     NA                    NA
## 393            <NA>                     NA                    NA
## 394            <NA>                     NA                    NA
## 395            <NA>                     NA                    NA
## 396            <NA>                     NA                    NA
## 397            <NA>                     NA                    NA
## 398            <NA>                     NA                    NA
## 399            <NA>                     NA                    NA
## 400            <NA>                     NA                    NA
## 401            <NA>                     NA                    NA
## 402            <NA>                     NA                    NA
## 403            <NA>                     NA                    NA
## 404            <NA>                     NA                    NA
## 405            <NA>                     NA                    NA
## 406            <NA>                     NA                    NA
## 407            <NA>                     NA                    NA
## 408            <NA>                     NA                    NA
## 409            <NA>                     NA                    NA
## 410            <NA>                     NA                    NA
## 411            <NA>                     NA                    NA
## 412            <NA>                     NA                    NA
## 413            <NA>                     NA                    NA
## 414            <NA>                     NA                    NA
## 415            <NA>                     NA                    NA
## 416            <NA>                     NA                    NA
## 417            <NA>                     NA                    NA
## 418            <NA>                     NA                    NA
## 419            <NA>                     NA                    NA
## 420            <NA>                     NA                    NA
## 421            <NA>                     NA                    NA
## 422            <NA>                     NA                    NA
## 423            <NA>                     NA                    NA
## 424            <NA>                     NA                    NA
## 425            <NA>                     NA                    NA
## 426            <NA>                     NA                    NA
## 427            <NA>                     NA                    NA
## 428            <NA>                     NA                    NA
## 429            <NA>                     NA                    NA
## 430            <NA>                     NA                    NA
## 431            <NA>                     NA                    NA
## 432            <NA>                     NA                    NA
## 433            <NA>                     NA                    NA
## 434            <NA>                     NA                    NA
## 435            <NA>                     NA                    NA
## 436            <NA>                     NA                    NA
## 437            <NA>                     NA                    NA
## 438            <NA>                     NA                    NA
## 439            <NA>                     NA                    NA
## 440            <NA>                     NA                    NA
## 441            <NA>                     NA                    NA
## 442            <NA>                     NA                    NA
## 443            <NA>                     NA                    NA
## 444            <NA>                     NA                    NA
## 445            <NA>                     NA                    NA
## 446            <NA>                     NA                    NA
## 447            <NA>                     NA                    NA
## 448            <NA>                     NA                    NA
## 449            <NA>                     NA                    NA
## 450            <NA>                     NA                    NA
## 451            <NA>                     NA                    NA
## 452            <NA>                     NA                    NA
## 453            <NA>                     NA                    NA
## 454            <NA>                     NA                    NA
## 455            <NA>                     NA                    NA
## 456            <NA>                     NA                    NA
## 457            <NA>                     NA                    NA
## 458            <NA>                     NA                    NA
## 459            <NA>                     NA                    NA
## 460            <NA>                     NA                    NA
## 461            <NA>                     NA                    NA
## 462            <NA>                     NA                    NA
## 463            <NA>                     NA                    NA
## 464            <NA>                     NA                    NA
## 465            <NA>                     NA                    NA
## 466            <NA>                     NA                    NA
## 467            <NA>                     NA                    NA
## 468            <NA>                     NA                    NA
## 469            <NA>                     NA                    NA
## 470            <NA>                     NA                    NA
## 471            <NA>                     NA                    NA
## 472            <NA>                     NA                    NA
## 473            <NA>                     NA                    NA
## 474            <NA>                     NA                    NA
## 475            <NA>                     NA                    NA
## 476            <NA>                     NA                    NA
## 477            <NA>                     NA                    NA
## 478            <NA>                     NA                    NA
## 479            <NA>                     NA                    NA
## 480            <NA>                     NA                    NA
## 481            <NA>                     NA                    NA
## 482            <NA>                     NA                    NA
## 483            <NA>                     NA                    NA
## 484            <NA>                     NA                    NA
## 485            <NA>                     NA                    NA
## 486            <NA>                     NA                    NA
## 487            <NA>                     NA                    NA
## 488            <NA>                     NA                    NA
## 489            <NA>                     NA                    NA
## 490            <NA>                     NA                    NA
## 491            <NA>                     NA                    NA
## 492            <NA>                     NA                    NA
## 493            <NA>                     NA                    NA
## 494            <NA>                     NA                    NA
## 495            <NA>                     NA                    NA
## 496            <NA>                     NA                    NA
## 497            <NA>                     NA                    NA
## 498            <NA>                     NA                    NA
## 499            <NA>                     NA                    NA
## 500            <NA>                     NA                    NA
## 501            <NA>                     NA                    NA
## 502            <NA>                     NA                    NA
## 503            <NA>                     NA                    NA
## 504            <NA>                     NA                    NA
## 505            <NA>                     NA                    NA
## 506            <NA>                     NA                    NA
## 507            <NA>                     NA                    NA
## 508            <NA>                     NA                    NA
## 509            <NA>                     NA                    NA
## 510            <NA>                     NA                    NA
## 511            <NA>                     NA                    NA
## 512            <NA>                     NA                    NA
## 513            <NA>                     NA                    NA
## 514            <NA>                     NA                    NA
## 515            <NA>                     NA                    NA
## 516            <NA>                     NA                    NA
## 517            <NA>                     NA                    NA
## 518            <NA>                     NA                    NA
## 519            <NA>                     NA                    NA
## 520            <NA>                     NA                    NA
## 521            <NA>                     NA                    NA
## 522            <NA>                     NA                    NA
## 523            <NA>                     NA                    NA
## 524            <NA>                     NA                    NA
## 525            <NA>                     NA                    NA
## 526            <NA>                     NA                    NA
## 527            <NA>                     NA                    NA
## 528            <NA>                     NA                    NA
## 529            <NA>                     NA                    NA
## 530            <NA>                     NA                    NA
## 531            <NA>                     NA                    NA
## 532            <NA>                     NA                    NA
## 533            <NA>                     NA                    NA
## 534            <NA>                     NA                    NA
## 535            <NA>                     NA                    NA
## 536            <NA>                     NA                    NA
## 537            <NA>                     NA                    NA
## 538            <NA>                     NA                    NA
## 539            <NA>                     NA                    NA
## 540            <NA>                     NA                    NA
## 541            <NA>                     NA                    NA
## 542            <NA>                     NA                    NA
## 543            <NA>                     NA                    NA
## 544            <NA>                     NA                    NA
## 545            <NA>                     NA                    NA
## 546            <NA>                     NA                    NA
## 547            <NA>                     NA                    NA
## 548            <NA>                     NA                    NA
## 549            <NA>                     NA                    NA
## 550            <NA>                     NA                    NA
## 551            <NA>                     NA                    NA
## 552            <NA>                     NA                    NA
## 553            <NA>                     NA                    NA
## 554            <NA>                     NA                    NA
## 555            <NA>                     NA                    NA
## 556            <NA>                     NA                    NA
## 557            <NA>                     NA                    NA
## 558            <NA>                     NA                    NA
## 559            <NA>                     NA                    NA
## 560            <NA>                     NA                    NA
## 561            <NA>                     NA                    NA
## 562            <NA>                     NA                    NA
## 563            <NA>                     NA                    NA
## 564            <NA>                     NA                    NA
## 565            <NA>                     NA                    NA
## 566            <NA>                     NA                    NA
## 567            <NA>                     NA                    NA
## 568            <NA>                     NA                    NA
## 569            <NA>                     NA                    NA
## 570            <NA>                     NA                    NA
## 571            <NA>                     NA                    NA
## 572            <NA>                     NA                    NA
## 573            <NA>                     NA                    NA
## 574            <NA>                     NA                    NA
## 575            <NA>                     NA                    NA
## 576            <NA>                     NA                    NA
## 577            <NA>                     NA                    NA
## 578            <NA>                     NA                    NA
## 579            <NA>                     NA                    NA
## 580            <NA>                     NA                    NA
## 581            <NA>                     NA                    NA
## 582            <NA>                     NA                    NA
## 583            <NA>                     NA                    NA
## 584            <NA>                     NA                    NA
## 585            <NA>                     NA                    NA
## 586            <NA>                     NA                    NA
## 587            <NA>                     NA                    NA
## 588            <NA>                     NA                    NA
## 589            <NA>                     NA                    NA
## 590            <NA>                     NA                    NA
## 591            <NA>                     NA                    NA
## 592            <NA>                     NA                    NA
## 593            <NA>                     NA                    NA
## 594            <NA>                     NA                    NA
## 595            <NA>                     NA                    NA
## 596            <NA>                     NA                    NA
## 597            <NA>                     NA                    NA
## 598            <NA>                     NA                    NA
## 599            <NA>                     NA                    NA
## 600            <NA>                     NA                    NA
## 601            <NA>                     NA                    NA
## 602            <NA>                     NA                    NA
## 603            <NA>                     NA                    NA
## 604            <NA>                     NA                    NA
## 605            <NA>                     NA                    NA
## 606            <NA>                     NA                    NA
## 607            <NA>                     NA                    NA
## 608            <NA>                     NA                    NA
## 609            <NA>                     NA                    NA
## 610            <NA>                     NA                    NA
## 611            <NA>                     NA                    NA
## 612            <NA>                     NA                    NA
## 613            <NA>                     NA                    NA
## 614            <NA>                     NA                    NA
## 615            <NA>                     NA                    NA
## 616            <NA>                     NA                    NA
## 617            <NA>                     NA                    NA
## 618            <NA>                     NA                    NA
## 619            <NA>                     NA                    NA
## 620            <NA>                     NA                    NA
## 621            <NA>                     NA                    NA
## 622            <NA>                     NA                    NA
## 623            <NA>                     NA                    NA
## 624            <NA>                     NA                    NA
## 625            <NA>                     NA                    NA
## 626            <NA>                     NA                    NA
## 627            <NA>                     NA                    NA
## 628            <NA>                     NA                    NA
## 629            <NA>                     NA                    NA
## 630            <NA>                     NA                    NA
## 631            <NA>                     NA                    NA
## 632            <NA>                     NA                    NA
## 633            <NA>                     NA                    NA
## 634            <NA>                     NA                    NA
## 635            <NA>                     NA                    NA
## 636            <NA>                     NA                    NA
## 637            <NA>                     NA                    NA
## 638            <NA>                     NA                    NA
## 639            <NA>                     NA                    NA
## 640            <NA>                     NA                    NA
## 641            <NA>                     NA                    NA
## 642            <NA>                     NA                    NA
## 643            <NA>                     NA                    NA
## 644            <NA>                     NA                    NA
## 645            <NA>                     NA                    NA
## 646            <NA>                     NA                    NA
## 647            <NA>                     NA                    NA
## 648            <NA>                     NA                    NA
## 649            <NA>                     NA                    NA
## 650            <NA>                     NA                    NA
## 651            <NA>                     NA                    NA
## 652            <NA>                     NA                    NA
## 653            <NA>                     NA                    NA
## 654            <NA>                     NA                    NA
## 655            <NA>                     NA                    NA
## 656            <NA>                     NA                    NA
## 657            <NA>                     NA                    NA
## 658            <NA>                     NA                    NA
## 659            <NA>                     NA                    NA
## 660            <NA>                     NA                    NA
## 661            <NA>                     NA                    NA
## 662            <NA>                     NA                    NA
## 663            <NA>                     NA                    NA
## 664            <NA>                     NA                    NA
## 665            <NA>                     NA                    NA
## 666            <NA>                     NA                    NA
## 667            <NA>                     NA                    NA
## 668            <NA>                     NA                    NA
## 669            <NA>                     NA                    NA
## 670            <NA>                     NA                    NA
## 671            <NA>                     NA                    NA
## 672            <NA>                     NA                    NA
## 673            <NA>                     NA                    NA
## 674            <NA>                     NA                    NA
## 675            <NA>                     NA                    NA
## 676            <NA>                     NA                    NA
## 677            <NA>                     NA                    NA
## 678            <NA>                     NA                    NA
## 679            <NA>                     NA                    NA
## 680            <NA>                     NA                    NA
## 681            <NA>                     NA                    NA
## 682            <NA>                     NA                    NA
## 683            <NA>                     NA                    NA
## 684            <NA>                     NA                    NA
## 685            <NA>                     NA                    NA
## 686            <NA>                     NA                    NA
## 687            <NA>                     NA                    NA
## 688            <NA>                     NA                    NA
## 689            <NA>                     NA                    NA
## 690            <NA>                     NA                    NA
## 691            <NA>                     NA                    NA
## 692            <NA>                     NA                    NA
## 693            <NA>                     NA                    NA
## 694            <NA>                     NA                    NA
## 695            <NA>                     NA                    NA
## 696            <NA>                     NA                    NA
## 697            <NA>                     NA                    NA
## 698            <NA>                     NA                    NA
## 699            <NA>                     NA                    NA
## 700            <NA>                     NA                    NA
## 701            <NA>                     NA                    NA
## 702            <NA>                     NA                    NA
## 703            <NA>                     NA                    NA
## 704            <NA>                     NA                    NA
## 705            <NA>                     NA                    NA
## 706            <NA>                     NA                    NA
## 707            <NA>                     NA                    NA
## 708            <NA>                     NA                    NA
## 709            <NA>                     NA                    NA
## 710            <NA>                     NA                    NA
## 711            <NA>                     NA                    NA
## 712            <NA>                     NA                    NA
## 713            <NA>                     NA                    NA
## 714            <NA>                     NA                    NA
## 715            <NA>                     NA                    NA
## 716            <NA>                     NA                    NA
## 717            <NA>                     NA                    NA
## 718            <NA>                     NA                    NA
## 719            <NA>                     NA                    NA
## 720            <NA>                     NA                    NA
## 721            <NA>                     NA                    NA
## 722            <NA>                     NA                    NA
## 723            <NA>                     NA                    NA
## 724            <NA>                     NA                    NA
## 725            <NA>                     NA                    NA
## 726            <NA>                     NA                    NA
## 727            <NA>                     NA                    NA
## 728            <NA>                     NA                    NA
## 729            <NA>                     NA                    NA
## 730            <NA>                     NA                    NA
## 731            <NA>                     NA                    NA
## 732            <NA>                     NA                    NA
## 733            <NA>                     NA                    NA
## 734            <NA>                     NA                    NA
## 735            <NA>                     NA                    NA
## 736            <NA>                     NA                    NA
## 737            <NA>                     NA                    NA
## 738            <NA>                     NA                    NA
## 739            <NA>                     NA                    NA
## 740            <NA>                     NA                    NA
## 741            <NA>                     NA                    NA
## 742            <NA>                     NA                    NA
## 743            <NA>                     NA                    NA
## 744            <NA>                     NA                    NA
## 745            <NA>                     NA                    NA
## 746            <NA>                     NA                    NA
## 747            <NA>                     NA                    NA
## 748            <NA>                     NA                    NA
## 749            <NA>                     NA                    NA
## 750            <NA>                     NA                    NA
## 751            <NA>                     NA                    NA
## 752            <NA>                     NA                    NA
## 753            <NA>                     NA                    NA
## 754            <NA>                     NA                    NA
## 755            <NA>                     NA                    NA
## 756            <NA>                     NA                    NA
## 757            <NA>                     NA                    NA
## 758            <NA>                     NA                    NA
## 759            <NA>                     NA                    NA
## 760            <NA>                     NA                    NA
## 761            <NA>                     NA                    NA
## 762            <NA>                     NA                    NA
## 763            <NA>                     NA                    NA
## 764            <NA>                     NA                    NA
## 765            <NA>                     NA                    NA
## 766            <NA>                     NA                    NA
## 767            <NA>                     NA                    NA
## 768            <NA>                     NA                    NA
## 769            <NA>                     NA                    NA
## 770            <NA>                     NA                    NA
## 771            <NA>                     NA                    NA
## 772            <NA>                     NA                    NA
## 773            <NA>                     NA                    NA
## 774            <NA>                     NA                    NA
## 775            <NA>                     NA                    NA
## 776            <NA>                     NA                    NA
## 777            <NA>                     NA                    NA
## 778            <NA>                     NA                    NA
## 779            <NA>                     NA                    NA
## 780            <NA>                     NA                    NA
## 781            <NA>                     NA                    NA
## 782            <NA>                     NA                    NA
## 783            <NA>                     NA                    NA
## 784            <NA>                     NA                    NA
## 785            <NA>                     NA                    NA
## 786            <NA>                     NA                    NA
## 787            <NA>                     NA                    NA
## 788            <NA>                     NA                    NA
## 789            <NA>                     NA                    NA
## 790            <NA>                     NA                    NA
## 791            <NA>                     NA                    NA
## 792            <NA>                     NA                    NA
## 793            <NA>                     NA                    NA
## 794            <NA>                     NA                    NA
## 795            <NA>                     NA                    NA
## 796            <NA>                     NA                    NA
## 797            <NA>                     NA                    NA
## 798            <NA>                     NA                    NA
## 799            <NA>                     NA                    NA
## 800            <NA>                     NA                    NA
## 801            <NA>                     NA                    NA
## 802            <NA>                     NA                    NA
## 803            <NA>                     NA                    NA
## 804            <NA>                     NA                    NA
## 805            <NA>                     NA                    NA
## 806            <NA>                     NA                    NA
## 807            <NA>                     NA                    NA
## 808            <NA>                     NA                    NA
## 809            <NA>                     NA                    NA
## 810            <NA>                     NA                    NA
## 811            <NA>                     NA                    NA
## 812            <NA>                     NA                    NA
## 813            <NA>                     NA                    NA
## 814            <NA>                     NA                    NA
## 815            <NA>                     NA                    NA
## 816            <NA>                     NA                    NA
## 817            <NA>                     NA                    NA
## 818            <NA>                     NA                    NA
## 819            <NA>                     NA                    NA
## 820            <NA>                     NA                    NA
## 821            <NA>                     NA                    NA
## 822            <NA>                     NA                    NA
## 823            <NA>                     NA                    NA
## 824            <NA>                     NA                    NA
## 825            <NA>                     NA                    NA
## 826            <NA>                     NA                    NA
## 827            <NA>                     NA                    NA
## 828            <NA>                     NA                    NA
## 829            <NA>                     NA                    NA
## 830            <NA>                     NA                    NA
## 831            <NA>                     NA                    NA
## 832            <NA>                     NA                    NA
## 833            <NA>                     NA                    NA
## 834            <NA>                     NA                    NA
## 835            <NA>                     NA                    NA
## 836            <NA>                     NA                    NA
## 837            <NA>                     NA                    NA
## 838            <NA>                     NA                    NA
## 839            <NA>                     NA                    NA
## 840            <NA>                     NA                    NA
## 841            <NA>                     NA                    NA
## 842            <NA>                     NA                    NA
## 843            <NA>                     NA                    NA
## 844            <NA>                     NA                    NA
## 845            <NA>                     NA                    NA
## 846            <NA>                     NA                    NA
## 847            <NA>                     NA                    NA
## 848            <NA>                     NA                    NA
## 849            <NA>                     NA                    NA
## 850            <NA>                     NA                    NA
## 851            <NA>                     NA                    NA
## 852            <NA>                     NA                    NA
## 853            <NA>                     NA                    NA
## 854            <NA>                     NA                    NA
## 855            <NA>                     NA                    NA
## 856            <NA>                     NA                    NA
## 857            <NA>                     NA                    NA
## 858            <NA>                     NA                    NA
## 859            <NA>                     NA                    NA
## 860            <NA>                     NA                    NA
## 861            <NA>                     NA                    NA
## 862            <NA>                     NA                    NA
## 863            <NA>                     NA                    NA
## 864            <NA>                     NA                    NA
## 865            <NA>                     NA                    NA
## 866            <NA>                     NA                    NA
## 867            <NA>                     NA                    NA
## 868            <NA>                     NA                    NA
## 869            <NA>                     NA                    NA
## 870            <NA>                     NA                    NA
## 871            <NA>                     NA                    NA
## 872            <NA>                     NA                    NA
## 873            <NA>                     NA                    NA
## 874            <NA>                     NA                    NA
## 875            <NA>                     NA                    NA
## 876            <NA>                     NA                    NA
## 877            <NA>                     NA                    NA
## 878            <NA>                     NA                    NA
## 879            <NA>                     NA                    NA
## 880            <NA>                     NA                    NA
## 881            <NA>                     NA                    NA
## 882            <NA>                     NA                    NA
## 883            <NA>                     NA                    NA
## 884            <NA>                     NA                    NA
## 885            <NA>                     NA                    NA
## 886            <NA>                     NA                    NA
## 887            <NA>                     NA                    NA
## 888            <NA>                     NA                    NA
## 889            <NA>                     NA                    NA
## 890            <NA>                     NA                    NA
## 891            <NA>                     NA                    NA
## 892            <NA>                     NA                    NA
## 893            <NA>                     NA                    NA
## 894            <NA>                     NA                    NA
## 895            <NA>                     NA                    NA
## 896            <NA>                     NA                    NA
## 897            <NA>                     NA                    NA
## 898            <NA>                     NA                    NA
## 899            <NA>                     NA                    NA
## 900            <NA>                     NA                    NA
## 901            <NA>                     NA                    NA
## 902            <NA>                     NA                    NA
## 903            <NA>                     NA                    NA
## 904            <NA>                     NA                    NA
## 905            <NA>                     NA                    NA
## 906            <NA>                     NA                    NA
## 907            <NA>                     NA                    NA
## 908            <NA>                     NA                    NA
## 909            <NA>                     NA                    NA
## 910            <NA>                     NA                    NA
## 911            <NA>                     NA                    NA
## 912            <NA>                     NA                    NA
## 913            <NA>                     NA                    NA
## 914            <NA>                     NA                    NA
## 915            <NA>                     NA                    NA
## 916            <NA>                     NA                    NA
## 917            <NA>                     NA                    NA
## 918            <NA>                     NA                    NA
## 919            <NA>                     NA                    NA
## 920            <NA>                     NA                    NA
## 921            <NA>                     NA                    NA
## 922            <NA>                     NA                    NA
## 923            <NA>                     NA                    NA
## 924            <NA>                     NA                    NA
## 925            <NA>                     NA                    NA
## 926            <NA>                     NA                    NA
## 927            <NA>                     NA                    NA
## 928            <NA>                     NA                    NA
## 929            <NA>                     NA                    NA
## 930            <NA>                     NA                    NA
## 931            <NA>                     NA                    NA
## 932            <NA>                     NA                    NA
## 933            <NA>                     NA                    NA
## 934            <NA>                     NA                    NA
## 935            <NA>                     NA                    NA
## 936            <NA>                     NA                    NA
## 937            <NA>                     NA                    NA
## 938            <NA>                     NA                    NA
## 939            <NA>                     NA                    NA
## 940            <NA>                     NA                    NA
## 941            <NA>                     NA                    NA
## 942            <NA>                     NA                    NA
## 943            <NA>                     NA                    NA
## 944            <NA>                     NA                    NA
## 945            <NA>                     NA                    NA
## 946            <NA>                     NA                    NA
## 947            <NA>                     NA                    NA
## 948            <NA>                     NA                    NA
## 949            <NA>                     NA                    NA
## 950            <NA>                     NA                    NA
## 951            <NA>                     NA                    NA
## 952            <NA>                     NA                    NA
## 953            <NA>                     NA                    NA
## 954            <NA>                     NA                    NA
## 955            <NA>                     NA                    NA
## 956            <NA>                     NA                    NA
## 957            <NA>                     NA                    NA
## 958            <NA>                     NA                    NA
## 959            <NA>                     NA                    NA
## 960            <NA>                     NA                    NA
## 961            <NA>                     NA                    NA
## 962            <NA>                     NA                    NA
## 963            <NA>                     NA                    NA
## 964            <NA>                     NA                    NA
## 965            <NA>                     NA                    NA
## 966            <NA>                     NA                    NA
## 967            <NA>                     NA                    NA
## 968            <NA>                     NA                    NA
## 969            <NA>                     NA                    NA
## 970            <NA>                     NA                    NA
## 971            <NA>                     NA                    NA
## 972            <NA>                     NA                    NA
## 973            <NA>                     NA                    NA
## 974            <NA>                     NA                    NA
## 975            <NA>                     NA                    NA
## 976            <NA>                     NA                    NA
## 977            <NA>                     NA                    NA
## 978            <NA>                     NA                    NA
## 979            <NA>                     NA                    NA
## 980            <NA>                     NA                    NA
## 981            <NA>                     NA                    NA
## 982            <NA>                     NA                    NA
## 983            <NA>                     NA                    NA
## 984            <NA>                     NA                    NA
## 985            <NA>                     NA                    NA
## 986            <NA>                     NA                    NA
## 987            <NA>                     NA                    NA
## 988            <NA>                     NA                    NA
## 989            <NA>                     NA                    NA
## 990            <NA>                     NA                    NA
## 991            <NA>                     NA                    NA
## 992            <NA>                     NA                    NA
## 993            <NA>                     NA                    NA
## 994            <NA>                     NA                    NA
## 995            <NA>                     NA                    NA
## 996            <NA>                     NA                    NA
## 997            <NA>                     NA                    NA
## 998            <NA>                     NA                    NA
## 999            <NA>                     NA                    NA
## 1000           <NA>                     NA                    NA
## 1001           <NA>                     NA                    NA
## 1002           <NA>                     NA                    NA
## 1003           <NA>                     NA                    NA
## 1004           <NA>                     NA                    NA
## 1005           <NA>                     NA                    NA
## 1006           <NA>                     NA                    NA
## 1007           <NA>                     NA                    NA
## 1008           <NA>                     NA                    NA
## 1009           <NA>                     NA                    NA
## 1010           <NA>                     NA                    NA
## 1011           <NA>                     NA                    NA
## 1012           <NA>                     NA                    NA
## 1013           <NA>                     NA                    NA
## 1014           <NA>                     NA                    NA
## 1015           <NA>                     NA                    NA
## 1016           <NA>                     NA                    NA
## 1017           <NA>                     NA                    NA
## 1018           <NA>                     NA                    NA
## 1019           <NA>                     NA                    NA
## 1020           <NA>                     NA                    NA
## 1021           <NA>                     NA                    NA
## 1022           <NA>                     NA                    NA
## 1023           <NA>                     NA                    NA
## 1024           <NA>                     NA                    NA
## 1025           <NA>                     NA                    NA
## 1026           <NA>                     NA                    NA
## 1027           <NA>                     NA                    NA
## 1028           <NA>                     NA                    NA
## 1029           <NA>                     NA                    NA
## 1030           <NA>                     NA                    NA
## 1031           <NA>                     NA                    NA
## 1032           <NA>                     NA                    NA
## 1033           <NA>                     NA                    NA
## 1034           <NA>                     NA                    NA
## 1035           <NA>                     NA                    NA
## 1036           <NA>                     NA                    NA
## 1037           <NA>                     NA                    NA
## 1038           <NA>                     NA                    NA
## 1039           <NA>                     NA                    NA
## 1040           <NA>                     NA                    NA
## 1041           <NA>                     NA                    NA
## 1042           <NA>                     NA                    NA
## 1043           <NA>                     NA                    NA
## 1044           <NA>                     NA                    NA
## 1045           <NA>                     NA                    NA
## 1046           <NA>                     NA                    NA
## 1047           <NA>                     NA                    NA
## 1048           <NA>                     NA                    NA
## 1049           <NA>                     NA                    NA
## 1050           <NA>                     NA                    NA
## 1051           <NA>                     NA                    NA
## 1052           <NA>                     NA                    NA
## 1053           <NA>                     NA                    NA
## 1054           <NA>                     NA                    NA
## 1055           <NA>                     NA                    NA
## 1056           <NA>                     NA                    NA
## 1057           <NA>                     NA                    NA
## 1058           <NA>                     NA                    NA
## 1059           <NA>                     NA                    NA
## 1060           <NA>                     NA                    NA
## 1061           <NA>                     NA                    NA
## 1062           <NA>                     NA                    NA
## 1063           <NA>                     NA                    NA
## 1064           <NA>                     NA                    NA
## 1065           <NA>                     NA                    NA
## 1066           <NA>                     NA                    NA
## 1067           <NA>                     NA                    NA
## 1068           <NA>                     NA                    NA
## 1069           <NA>                     NA                    NA
## 1070           <NA>                     NA                    NA
## 1071           <NA>                     NA                    NA
## 1072           <NA>                     NA                    NA
## 1073           <NA>                     NA                    NA
## 1074           <NA>                     NA                    NA
## 1075           <NA>                     NA                    NA
## 1076           <NA>                     NA                    NA
## 1077           <NA>                     NA                    NA
## 1078           <NA>                     NA                    NA
## 1079           <NA>                     NA                    NA
## 1080           <NA>                     NA                    NA
## 1081           <NA>                     NA                    NA
## 1082           <NA>                     NA                    NA
## 1083           <NA>                     NA                    NA
## 1084           <NA>                     NA                    NA
## 1085           <NA>                     NA                    NA
## 1086           <NA>                     NA                    NA
## 1087           <NA>                     NA                    NA
## 1088           <NA>                     NA                    NA
## 1089           <NA>                     NA                    NA
## 1090           <NA>                     NA                    NA
## 1091           <NA>                     NA                    NA
## 1092           <NA>                     NA                    NA
## 1093           <NA>                     NA                    NA
## 1094           <NA>                     NA                    NA
## 1095           <NA>                     NA                    NA
## 1096           <NA>                     NA                    NA
## 1097           <NA>                     NA                    NA
## 1098           <NA>                     NA                    NA
## 1099           <NA>                     NA                    NA
## 1100           <NA>                     NA                    NA
## 1101           <NA>                     NA                    NA
## 1102           <NA>                     NA                    NA
## 1103           <NA>                     NA                    NA
## 1104           <NA>                     NA                    NA
## 1105           <NA>                     NA                    NA
## 1106           <NA>                     NA                    NA
## 1107           <NA>                     NA                    NA
## 1108           <NA>                     NA                    NA
## 1109           <NA>                     NA                    NA
## 1110           <NA>                     NA                    NA
## 1111           <NA>                     NA                    NA
##      retweet_user_id retweet_screen_name retweet_name retweet_followers_count
## 1               <NA>                <NA>         <NA>                      NA
## 2               <NA>                <NA>         <NA>                      NA
## 3               <NA>                <NA>         <NA>                      NA
## 4               <NA>                <NA>         <NA>                      NA
## 5               <NA>                <NA>         <NA>                      NA
## 6               <NA>                <NA>         <NA>                      NA
## 7               <NA>                <NA>         <NA>                      NA
## 8               <NA>                <NA>         <NA>                      NA
## 9               <NA>                <NA>         <NA>                      NA
## 10              <NA>                <NA>         <NA>                      NA
## 11              <NA>                <NA>         <NA>                      NA
## 12              <NA>                <NA>         <NA>                      NA
## 13              <NA>                <NA>         <NA>                      NA
## 14              <NA>                <NA>         <NA>                      NA
## 15              <NA>                <NA>         <NA>                      NA
## 16              <NA>                <NA>         <NA>                      NA
## 17              <NA>                <NA>         <NA>                      NA
## 18              <NA>                <NA>         <NA>                      NA
## 19              <NA>                <NA>         <NA>                      NA
## 20              <NA>                <NA>         <NA>                      NA
## 21              <NA>                <NA>         <NA>                      NA
## 22              <NA>                <NA>         <NA>                      NA
## 23              <NA>                <NA>         <NA>                      NA
## 24              <NA>                <NA>         <NA>                      NA
## 25              <NA>                <NA>         <NA>                      NA
## 26              <NA>                <NA>         <NA>                      NA
## 27              <NA>                <NA>         <NA>                      NA
## 28              <NA>                <NA>         <NA>                      NA
## 29              <NA>                <NA>         <NA>                      NA
## 30              <NA>                <NA>         <NA>                      NA
## 31              <NA>                <NA>         <NA>                      NA
## 32              <NA>                <NA>         <NA>                      NA
## 33              <NA>                <NA>         <NA>                      NA
## 34              <NA>                <NA>         <NA>                      NA
## 35              <NA>                <NA>         <NA>                      NA
## 36              <NA>                <NA>         <NA>                      NA
## 37              <NA>                <NA>         <NA>                      NA
## 38              <NA>                <NA>         <NA>                      NA
## 39              <NA>                <NA>         <NA>                      NA
## 40              <NA>                <NA>         <NA>                      NA
## 41              <NA>                <NA>         <NA>                      NA
## 42              <NA>                <NA>         <NA>                      NA
## 43              <NA>                <NA>         <NA>                      NA
## 44              <NA>                <NA>         <NA>                      NA
## 45              <NA>                <NA>         <NA>                      NA
## 46              <NA>                <NA>         <NA>                      NA
## 47              <NA>                <NA>         <NA>                      NA
## 48              <NA>                <NA>         <NA>                      NA
## 49              <NA>                <NA>         <NA>                      NA
## 50              <NA>                <NA>         <NA>                      NA
## 51              <NA>                <NA>         <NA>                      NA
## 52              <NA>                <NA>         <NA>                      NA
## 53              <NA>                <NA>         <NA>                      NA
## 54              <NA>                <NA>         <NA>                      NA
## 55              <NA>                <NA>         <NA>                      NA
## 56              <NA>                <NA>         <NA>                      NA
## 57              <NA>                <NA>         <NA>                      NA
## 58              <NA>                <NA>         <NA>                      NA
## 59              <NA>                <NA>         <NA>                      NA
## 60              <NA>                <NA>         <NA>                      NA
## 61              <NA>                <NA>         <NA>                      NA
## 62              <NA>                <NA>         <NA>                      NA
## 63              <NA>                <NA>         <NA>                      NA
## 64              <NA>                <NA>         <NA>                      NA
## 65              <NA>                <NA>         <NA>                      NA
## 66              <NA>                <NA>         <NA>                      NA
## 67              <NA>                <NA>         <NA>                      NA
## 68              <NA>                <NA>         <NA>                      NA
## 69              <NA>                <NA>         <NA>                      NA
## 70              <NA>                <NA>         <NA>                      NA
## 71              <NA>                <NA>         <NA>                      NA
## 72              <NA>                <NA>         <NA>                      NA
## 73              <NA>                <NA>         <NA>                      NA
## 74              <NA>                <NA>         <NA>                      NA
## 75              <NA>                <NA>         <NA>                      NA
## 76              <NA>                <NA>         <NA>                      NA
## 77              <NA>                <NA>         <NA>                      NA
## 78              <NA>                <NA>         <NA>                      NA
## 79              <NA>                <NA>         <NA>                      NA
## 80              <NA>                <NA>         <NA>                      NA
## 81              <NA>                <NA>         <NA>                      NA
## 82              <NA>                <NA>         <NA>                      NA
## 83              <NA>                <NA>         <NA>                      NA
## 84              <NA>                <NA>         <NA>                      NA
## 85              <NA>                <NA>         <NA>                      NA
## 86              <NA>                <NA>         <NA>                      NA
## 87              <NA>                <NA>         <NA>                      NA
## 88              <NA>                <NA>         <NA>                      NA
## 89              <NA>                <NA>         <NA>                      NA
## 90              <NA>                <NA>         <NA>                      NA
## 91              <NA>                <NA>         <NA>                      NA
## 92              <NA>                <NA>         <NA>                      NA
## 93              <NA>                <NA>         <NA>                      NA
## 94              <NA>                <NA>         <NA>                      NA
## 95              <NA>                <NA>         <NA>                      NA
## 96              <NA>                <NA>         <NA>                      NA
## 97              <NA>                <NA>         <NA>                      NA
## 98              <NA>                <NA>         <NA>                      NA
## 99              <NA>                <NA>         <NA>                      NA
## 100             <NA>                <NA>         <NA>                      NA
## 101             <NA>                <NA>         <NA>                      NA
## 102             <NA>                <NA>         <NA>                      NA
## 103             <NA>                <NA>         <NA>                      NA
## 104             <NA>                <NA>         <NA>                      NA
## 105             <NA>                <NA>         <NA>                      NA
## 106             <NA>                <NA>         <NA>                      NA
## 107             <NA>                <NA>         <NA>                      NA
## 108             <NA>                <NA>         <NA>                      NA
## 109             <NA>                <NA>         <NA>                      NA
## 110             <NA>                <NA>         <NA>                      NA
## 111             <NA>                <NA>         <NA>                      NA
## 112             <NA>                <NA>         <NA>                      NA
## 113             <NA>                <NA>         <NA>                      NA
## 114             <NA>                <NA>         <NA>                      NA
## 115             <NA>                <NA>         <NA>                      NA
## 116             <NA>                <NA>         <NA>                      NA
## 117             <NA>                <NA>         <NA>                      NA
## 118             <NA>                <NA>         <NA>                      NA
## 119             <NA>                <NA>         <NA>                      NA
## 120             <NA>                <NA>         <NA>                      NA
## 121             <NA>                <NA>         <NA>                      NA
## 122             <NA>                <NA>         <NA>                      NA
## 123             <NA>                <NA>         <NA>                      NA
## 124             <NA>                <NA>         <NA>                      NA
## 125             <NA>                <NA>         <NA>                      NA
## 126             <NA>                <NA>         <NA>                      NA
## 127             <NA>                <NA>         <NA>                      NA
## 128             <NA>                <NA>         <NA>                      NA
## 129             <NA>                <NA>         <NA>                      NA
## 130             <NA>                <NA>         <NA>                      NA
## 131             <NA>                <NA>         <NA>                      NA
## 132             <NA>                <NA>         <NA>                      NA
## 133             <NA>                <NA>         <NA>                      NA
## 134             <NA>                <NA>         <NA>                      NA
## 135             <NA>                <NA>         <NA>                      NA
## 136             <NA>                <NA>         <NA>                      NA
## 137             <NA>                <NA>         <NA>                      NA
## 138             <NA>                <NA>         <NA>                      NA
## 139             <NA>                <NA>         <NA>                      NA
## 140             <NA>                <NA>         <NA>                      NA
## 141             <NA>                <NA>         <NA>                      NA
## 142             <NA>                <NA>         <NA>                      NA
## 143             <NA>                <NA>         <NA>                      NA
## 144             <NA>                <NA>         <NA>                      NA
## 145             <NA>                <NA>         <NA>                      NA
## 146             <NA>                <NA>         <NA>                      NA
## 147             <NA>                <NA>         <NA>                      NA
## 148             <NA>                <NA>         <NA>                      NA
## 149             <NA>                <NA>         <NA>                      NA
## 150             <NA>                <NA>         <NA>                      NA
## 151             <NA>                <NA>         <NA>                      NA
## 152             <NA>                <NA>         <NA>                      NA
## 153             <NA>                <NA>         <NA>                      NA
## 154             <NA>                <NA>         <NA>                      NA
## 155             <NA>                <NA>         <NA>                      NA
## 156             <NA>                <NA>         <NA>                      NA
## 157             <NA>                <NA>         <NA>                      NA
## 158             <NA>                <NA>         <NA>                      NA
## 159             <NA>                <NA>         <NA>                      NA
## 160             <NA>                <NA>         <NA>                      NA
## 161             <NA>                <NA>         <NA>                      NA
## 162             <NA>                <NA>         <NA>                      NA
## 163             <NA>                <NA>         <NA>                      NA
## 164             <NA>                <NA>         <NA>                      NA
## 165             <NA>                <NA>         <NA>                      NA
## 166             <NA>                <NA>         <NA>                      NA
## 167             <NA>                <NA>         <NA>                      NA
## 168             <NA>                <NA>         <NA>                      NA
## 169             <NA>                <NA>         <NA>                      NA
## 170             <NA>                <NA>         <NA>                      NA
## 171             <NA>                <NA>         <NA>                      NA
## 172             <NA>                <NA>         <NA>                      NA
## 173             <NA>                <NA>         <NA>                      NA
## 174             <NA>                <NA>         <NA>                      NA
## 175             <NA>                <NA>         <NA>                      NA
## 176             <NA>                <NA>         <NA>                      NA
## 177             <NA>                <NA>         <NA>                      NA
## 178             <NA>                <NA>         <NA>                      NA
## 179             <NA>                <NA>         <NA>                      NA
## 180             <NA>                <NA>         <NA>                      NA
## 181             <NA>                <NA>         <NA>                      NA
## 182             <NA>                <NA>         <NA>                      NA
## 183             <NA>                <NA>         <NA>                      NA
## 184             <NA>                <NA>         <NA>                      NA
## 185             <NA>                <NA>         <NA>                      NA
## 186             <NA>                <NA>         <NA>                      NA
## 187             <NA>                <NA>         <NA>                      NA
## 188             <NA>                <NA>         <NA>                      NA
## 189             <NA>                <NA>         <NA>                      NA
## 190             <NA>                <NA>         <NA>                      NA
## 191             <NA>                <NA>         <NA>                      NA
## 192             <NA>                <NA>         <NA>                      NA
## 193             <NA>                <NA>         <NA>                      NA
## 194             <NA>                <NA>         <NA>                      NA
## 195             <NA>                <NA>         <NA>                      NA
## 196             <NA>                <NA>         <NA>                      NA
## 197             <NA>                <NA>         <NA>                      NA
## 198             <NA>                <NA>         <NA>                      NA
## 199             <NA>                <NA>         <NA>                      NA
## 200             <NA>                <NA>         <NA>                      NA
## 201             <NA>                <NA>         <NA>                      NA
## 202             <NA>                <NA>         <NA>                      NA
## 203             <NA>                <NA>         <NA>                      NA
## 204             <NA>                <NA>         <NA>                      NA
## 205             <NA>                <NA>         <NA>                      NA
## 206             <NA>                <NA>         <NA>                      NA
## 207             <NA>                <NA>         <NA>                      NA
## 208             <NA>                <NA>         <NA>                      NA
## 209             <NA>                <NA>         <NA>                      NA
## 210             <NA>                <NA>         <NA>                      NA
## 211             <NA>                <NA>         <NA>                      NA
## 212             <NA>                <NA>         <NA>                      NA
## 213             <NA>                <NA>         <NA>                      NA
## 214             <NA>                <NA>         <NA>                      NA
## 215             <NA>                <NA>         <NA>                      NA
## 216             <NA>                <NA>         <NA>                      NA
## 217             <NA>                <NA>         <NA>                      NA
## 218             <NA>                <NA>         <NA>                      NA
## 219             <NA>                <NA>         <NA>                      NA
## 220             <NA>                <NA>         <NA>                      NA
## 221             <NA>                <NA>         <NA>                      NA
## 222             <NA>                <NA>         <NA>                      NA
## 223             <NA>                <NA>         <NA>                      NA
## 224             <NA>                <NA>         <NA>                      NA
## 225             <NA>                <NA>         <NA>                      NA
## 226             <NA>                <NA>         <NA>                      NA
## 227             <NA>                <NA>         <NA>                      NA
## 228             <NA>                <NA>         <NA>                      NA
## 229             <NA>                <NA>         <NA>                      NA
## 230             <NA>                <NA>         <NA>                      NA
## 231             <NA>                <NA>         <NA>                      NA
## 232             <NA>                <NA>         <NA>                      NA
## 233             <NA>                <NA>         <NA>                      NA
## 234             <NA>                <NA>         <NA>                      NA
## 235             <NA>                <NA>         <NA>                      NA
## 236             <NA>                <NA>         <NA>                      NA
## 237             <NA>                <NA>         <NA>                      NA
## 238             <NA>                <NA>         <NA>                      NA
## 239             <NA>                <NA>         <NA>                      NA
## 240             <NA>                <NA>         <NA>                      NA
## 241             <NA>                <NA>         <NA>                      NA
## 242             <NA>                <NA>         <NA>                      NA
## 243             <NA>                <NA>         <NA>                      NA
## 244             <NA>                <NA>         <NA>                      NA
## 245             <NA>                <NA>         <NA>                      NA
## 246             <NA>                <NA>         <NA>                      NA
## 247             <NA>                <NA>         <NA>                      NA
## 248             <NA>                <NA>         <NA>                      NA
## 249             <NA>                <NA>         <NA>                      NA
## 250             <NA>                <NA>         <NA>                      NA
## 251             <NA>                <NA>         <NA>                      NA
## 252             <NA>                <NA>         <NA>                      NA
## 253             <NA>                <NA>         <NA>                      NA
## 254             <NA>                <NA>         <NA>                      NA
## 255             <NA>                <NA>         <NA>                      NA
## 256             <NA>                <NA>         <NA>                      NA
## 257             <NA>                <NA>         <NA>                      NA
## 258             <NA>                <NA>         <NA>                      NA
## 259             <NA>                <NA>         <NA>                      NA
## 260             <NA>                <NA>         <NA>                      NA
## 261             <NA>                <NA>         <NA>                      NA
## 262             <NA>                <NA>         <NA>                      NA
## 263             <NA>                <NA>         <NA>                      NA
## 264             <NA>                <NA>         <NA>                      NA
## 265             <NA>                <NA>         <NA>                      NA
## 266             <NA>                <NA>         <NA>                      NA
## 267             <NA>                <NA>         <NA>                      NA
## 268             <NA>                <NA>         <NA>                      NA
## 269             <NA>                <NA>         <NA>                      NA
## 270             <NA>                <NA>         <NA>                      NA
## 271             <NA>                <NA>         <NA>                      NA
## 272             <NA>                <NA>         <NA>                      NA
## 273             <NA>                <NA>         <NA>                      NA
## 274             <NA>                <NA>         <NA>                      NA
## 275             <NA>                <NA>         <NA>                      NA
## 276             <NA>                <NA>         <NA>                      NA
## 277             <NA>                <NA>         <NA>                      NA
## 278             <NA>                <NA>         <NA>                      NA
## 279             <NA>                <NA>         <NA>                      NA
## 280             <NA>                <NA>         <NA>                      NA
## 281             <NA>                <NA>         <NA>                      NA
## 282             <NA>                <NA>         <NA>                      NA
## 283             <NA>                <NA>         <NA>                      NA
## 284             <NA>                <NA>         <NA>                      NA
## 285             <NA>                <NA>         <NA>                      NA
## 286             <NA>                <NA>         <NA>                      NA
## 287             <NA>                <NA>         <NA>                      NA
## 288             <NA>                <NA>         <NA>                      NA
## 289             <NA>                <NA>         <NA>                      NA
## 290             <NA>                <NA>         <NA>                      NA
## 291             <NA>                <NA>         <NA>                      NA
## 292             <NA>                <NA>         <NA>                      NA
## 293             <NA>                <NA>         <NA>                      NA
## 294             <NA>                <NA>         <NA>                      NA
## 295             <NA>                <NA>         <NA>                      NA
## 296             <NA>                <NA>         <NA>                      NA
## 297             <NA>                <NA>         <NA>                      NA
## 298             <NA>                <NA>         <NA>                      NA
## 299             <NA>                <NA>         <NA>                      NA
## 300             <NA>                <NA>         <NA>                      NA
## 301             <NA>                <NA>         <NA>                      NA
## 302             <NA>                <NA>         <NA>                      NA
## 303             <NA>                <NA>         <NA>                      NA
## 304             <NA>                <NA>         <NA>                      NA
## 305             <NA>                <NA>         <NA>                      NA
## 306             <NA>                <NA>         <NA>                      NA
## 307             <NA>                <NA>         <NA>                      NA
## 308             <NA>                <NA>         <NA>                      NA
## 309             <NA>                <NA>         <NA>                      NA
## 310             <NA>                <NA>         <NA>                      NA
## 311             <NA>                <NA>         <NA>                      NA
## 312             <NA>                <NA>         <NA>                      NA
## 313             <NA>                <NA>         <NA>                      NA
## 314             <NA>                <NA>         <NA>                      NA
## 315             <NA>                <NA>         <NA>                      NA
## 316             <NA>                <NA>         <NA>                      NA
## 317             <NA>                <NA>         <NA>                      NA
## 318             <NA>                <NA>         <NA>                      NA
## 319             <NA>                <NA>         <NA>                      NA
## 320             <NA>                <NA>         <NA>                      NA
## 321             <NA>                <NA>         <NA>                      NA
## 322             <NA>                <NA>         <NA>                      NA
## 323             <NA>                <NA>         <NA>                      NA
## 324             <NA>                <NA>         <NA>                      NA
## 325             <NA>                <NA>         <NA>                      NA
## 326             <NA>                <NA>         <NA>                      NA
## 327             <NA>                <NA>         <NA>                      NA
## 328             <NA>                <NA>         <NA>                      NA
## 329             <NA>                <NA>         <NA>                      NA
## 330             <NA>                <NA>         <NA>                      NA
## 331             <NA>                <NA>         <NA>                      NA
## 332             <NA>                <NA>         <NA>                      NA
## 333             <NA>                <NA>         <NA>                      NA
## 334             <NA>                <NA>         <NA>                      NA
## 335             <NA>                <NA>         <NA>                      NA
## 336             <NA>                <NA>         <NA>                      NA
## 337             <NA>                <NA>         <NA>                      NA
## 338             <NA>                <NA>         <NA>                      NA
## 339             <NA>                <NA>         <NA>                      NA
## 340             <NA>                <NA>         <NA>                      NA
## 341             <NA>                <NA>         <NA>                      NA
## 342             <NA>                <NA>         <NA>                      NA
## 343             <NA>                <NA>         <NA>                      NA
## 344             <NA>                <NA>         <NA>                      NA
## 345             <NA>                <NA>         <NA>                      NA
## 346             <NA>                <NA>         <NA>                      NA
## 347             <NA>                <NA>         <NA>                      NA
## 348             <NA>                <NA>         <NA>                      NA
## 349             <NA>                <NA>         <NA>                      NA
## 350             <NA>                <NA>         <NA>                      NA
## 351             <NA>                <NA>         <NA>                      NA
## 352             <NA>                <NA>         <NA>                      NA
## 353             <NA>                <NA>         <NA>                      NA
## 354             <NA>                <NA>         <NA>                      NA
## 355             <NA>                <NA>         <NA>                      NA
## 356             <NA>                <NA>         <NA>                      NA
## 357             <NA>                <NA>         <NA>                      NA
## 358             <NA>                <NA>         <NA>                      NA
## 359             <NA>                <NA>         <NA>                      NA
## 360             <NA>                <NA>         <NA>                      NA
## 361             <NA>                <NA>         <NA>                      NA
## 362             <NA>                <NA>         <NA>                      NA
## 363             <NA>                <NA>         <NA>                      NA
## 364             <NA>                <NA>         <NA>                      NA
## 365             <NA>                <NA>         <NA>                      NA
## 366             <NA>                <NA>         <NA>                      NA
## 367             <NA>                <NA>         <NA>                      NA
## 368             <NA>                <NA>         <NA>                      NA
## 369             <NA>                <NA>         <NA>                      NA
## 370             <NA>                <NA>         <NA>                      NA
## 371             <NA>                <NA>         <NA>                      NA
## 372             <NA>                <NA>         <NA>                      NA
## 373             <NA>                <NA>         <NA>                      NA
## 374             <NA>                <NA>         <NA>                      NA
## 375             <NA>                <NA>         <NA>                      NA
## 376             <NA>                <NA>         <NA>                      NA
## 377             <NA>                <NA>         <NA>                      NA
## 378             <NA>                <NA>         <NA>                      NA
## 379             <NA>                <NA>         <NA>                      NA
## 380             <NA>                <NA>         <NA>                      NA
## 381             <NA>                <NA>         <NA>                      NA
## 382             <NA>                <NA>         <NA>                      NA
## 383             <NA>                <NA>         <NA>                      NA
## 384             <NA>                <NA>         <NA>                      NA
## 385             <NA>                <NA>         <NA>                      NA
## 386             <NA>                <NA>         <NA>                      NA
## 387             <NA>                <NA>         <NA>                      NA
## 388             <NA>                <NA>         <NA>                      NA
## 389             <NA>                <NA>         <NA>                      NA
## 390             <NA>                <NA>         <NA>                      NA
## 391             <NA>                <NA>         <NA>                      NA
## 392             <NA>                <NA>         <NA>                      NA
## 393             <NA>                <NA>         <NA>                      NA
## 394             <NA>                <NA>         <NA>                      NA
## 395             <NA>                <NA>         <NA>                      NA
## 396             <NA>                <NA>         <NA>                      NA
## 397             <NA>                <NA>         <NA>                      NA
## 398             <NA>                <NA>         <NA>                      NA
## 399             <NA>                <NA>         <NA>                      NA
## 400             <NA>                <NA>         <NA>                      NA
## 401             <NA>                <NA>         <NA>                      NA
## 402             <NA>                <NA>         <NA>                      NA
## 403             <NA>                <NA>         <NA>                      NA
## 404             <NA>                <NA>         <NA>                      NA
## 405             <NA>                <NA>         <NA>                      NA
## 406             <NA>                <NA>         <NA>                      NA
## 407             <NA>                <NA>         <NA>                      NA
## 408             <NA>                <NA>         <NA>                      NA
## 409             <NA>                <NA>         <NA>                      NA
## 410             <NA>                <NA>         <NA>                      NA
## 411             <NA>                <NA>         <NA>                      NA
## 412             <NA>                <NA>         <NA>                      NA
## 413             <NA>                <NA>         <NA>                      NA
## 414             <NA>                <NA>         <NA>                      NA
## 415             <NA>                <NA>         <NA>                      NA
## 416             <NA>                <NA>         <NA>                      NA
## 417             <NA>                <NA>         <NA>                      NA
## 418             <NA>                <NA>         <NA>                      NA
## 419             <NA>                <NA>         <NA>                      NA
## 420             <NA>                <NA>         <NA>                      NA
## 421             <NA>                <NA>         <NA>                      NA
## 422             <NA>                <NA>         <NA>                      NA
## 423             <NA>                <NA>         <NA>                      NA
## 424             <NA>                <NA>         <NA>                      NA
## 425             <NA>                <NA>         <NA>                      NA
## 426             <NA>                <NA>         <NA>                      NA
## 427             <NA>                <NA>         <NA>                      NA
## 428             <NA>                <NA>         <NA>                      NA
## 429             <NA>                <NA>         <NA>                      NA
## 430             <NA>                <NA>         <NA>                      NA
## 431             <NA>                <NA>         <NA>                      NA
## 432             <NA>                <NA>         <NA>                      NA
## 433             <NA>                <NA>         <NA>                      NA
## 434             <NA>                <NA>         <NA>                      NA
## 435             <NA>                <NA>         <NA>                      NA
## 436             <NA>                <NA>         <NA>                      NA
## 437             <NA>                <NA>         <NA>                      NA
## 438             <NA>                <NA>         <NA>                      NA
## 439             <NA>                <NA>         <NA>                      NA
## 440             <NA>                <NA>         <NA>                      NA
## 441             <NA>                <NA>         <NA>                      NA
## 442             <NA>                <NA>         <NA>                      NA
## 443             <NA>                <NA>         <NA>                      NA
## 444             <NA>                <NA>         <NA>                      NA
## 445             <NA>                <NA>         <NA>                      NA
## 446             <NA>                <NA>         <NA>                      NA
## 447             <NA>                <NA>         <NA>                      NA
## 448             <NA>                <NA>         <NA>                      NA
## 449             <NA>                <NA>         <NA>                      NA
## 450             <NA>                <NA>         <NA>                      NA
## 451             <NA>                <NA>         <NA>                      NA
## 452             <NA>                <NA>         <NA>                      NA
## 453             <NA>                <NA>         <NA>                      NA
## 454             <NA>                <NA>         <NA>                      NA
## 455             <NA>                <NA>         <NA>                      NA
## 456             <NA>                <NA>         <NA>                      NA
## 457             <NA>                <NA>         <NA>                      NA
## 458             <NA>                <NA>         <NA>                      NA
## 459             <NA>                <NA>         <NA>                      NA
## 460             <NA>                <NA>         <NA>                      NA
## 461             <NA>                <NA>         <NA>                      NA
## 462             <NA>                <NA>         <NA>                      NA
## 463             <NA>                <NA>         <NA>                      NA
## 464             <NA>                <NA>         <NA>                      NA
## 465             <NA>                <NA>         <NA>                      NA
## 466             <NA>                <NA>         <NA>                      NA
## 467             <NA>                <NA>         <NA>                      NA
## 468             <NA>                <NA>         <NA>                      NA
## 469             <NA>                <NA>         <NA>                      NA
## 470             <NA>                <NA>         <NA>                      NA
## 471             <NA>                <NA>         <NA>                      NA
## 472             <NA>                <NA>         <NA>                      NA
## 473             <NA>                <NA>         <NA>                      NA
## 474             <NA>                <NA>         <NA>                      NA
## 475             <NA>                <NA>         <NA>                      NA
## 476             <NA>                <NA>         <NA>                      NA
## 477             <NA>                <NA>         <NA>                      NA
## 478             <NA>                <NA>         <NA>                      NA
## 479             <NA>                <NA>         <NA>                      NA
## 480             <NA>                <NA>         <NA>                      NA
## 481             <NA>                <NA>         <NA>                      NA
## 482             <NA>                <NA>         <NA>                      NA
## 483             <NA>                <NA>         <NA>                      NA
## 484             <NA>                <NA>         <NA>                      NA
## 485             <NA>                <NA>         <NA>                      NA
## 486             <NA>                <NA>         <NA>                      NA
## 487             <NA>                <NA>         <NA>                      NA
## 488             <NA>                <NA>         <NA>                      NA
## 489             <NA>                <NA>         <NA>                      NA
## 490             <NA>                <NA>         <NA>                      NA
## 491             <NA>                <NA>         <NA>                      NA
## 492             <NA>                <NA>         <NA>                      NA
## 493             <NA>                <NA>         <NA>                      NA
## 494             <NA>                <NA>         <NA>                      NA
## 495             <NA>                <NA>         <NA>                      NA
## 496             <NA>                <NA>         <NA>                      NA
## 497             <NA>                <NA>         <NA>                      NA
## 498             <NA>                <NA>         <NA>                      NA
## 499             <NA>                <NA>         <NA>                      NA
## 500             <NA>                <NA>         <NA>                      NA
## 501             <NA>                <NA>         <NA>                      NA
## 502             <NA>                <NA>         <NA>                      NA
## 503             <NA>                <NA>         <NA>                      NA
## 504             <NA>                <NA>         <NA>                      NA
## 505             <NA>                <NA>         <NA>                      NA
## 506             <NA>                <NA>         <NA>                      NA
## 507             <NA>                <NA>         <NA>                      NA
## 508             <NA>                <NA>         <NA>                      NA
## 509             <NA>                <NA>         <NA>                      NA
## 510             <NA>                <NA>         <NA>                      NA
## 511             <NA>                <NA>         <NA>                      NA
## 512             <NA>                <NA>         <NA>                      NA
## 513             <NA>                <NA>         <NA>                      NA
## 514             <NA>                <NA>         <NA>                      NA
## 515             <NA>                <NA>         <NA>                      NA
## 516             <NA>                <NA>         <NA>                      NA
## 517             <NA>                <NA>         <NA>                      NA
## 518             <NA>                <NA>         <NA>                      NA
## 519             <NA>                <NA>         <NA>                      NA
## 520             <NA>                <NA>         <NA>                      NA
## 521             <NA>                <NA>         <NA>                      NA
## 522             <NA>                <NA>         <NA>                      NA
## 523             <NA>                <NA>         <NA>                      NA
## 524             <NA>                <NA>         <NA>                      NA
## 525             <NA>                <NA>         <NA>                      NA
## 526             <NA>                <NA>         <NA>                      NA
## 527             <NA>                <NA>         <NA>                      NA
## 528             <NA>                <NA>         <NA>                      NA
## 529             <NA>                <NA>         <NA>                      NA
## 530             <NA>                <NA>         <NA>                      NA
## 531             <NA>                <NA>         <NA>                      NA
## 532             <NA>                <NA>         <NA>                      NA
## 533             <NA>                <NA>         <NA>                      NA
## 534             <NA>                <NA>         <NA>                      NA
## 535             <NA>                <NA>         <NA>                      NA
## 536             <NA>                <NA>         <NA>                      NA
## 537             <NA>                <NA>         <NA>                      NA
## 538             <NA>                <NA>         <NA>                      NA
## 539             <NA>                <NA>         <NA>                      NA
## 540             <NA>                <NA>         <NA>                      NA
## 541             <NA>                <NA>         <NA>                      NA
## 542             <NA>                <NA>         <NA>                      NA
## 543             <NA>                <NA>         <NA>                      NA
## 544             <NA>                <NA>         <NA>                      NA
## 545             <NA>                <NA>         <NA>                      NA
## 546             <NA>                <NA>         <NA>                      NA
## 547             <NA>                <NA>         <NA>                      NA
## 548             <NA>                <NA>         <NA>                      NA
## 549             <NA>                <NA>         <NA>                      NA
## 550             <NA>                <NA>         <NA>                      NA
## 551             <NA>                <NA>         <NA>                      NA
## 552             <NA>                <NA>         <NA>                      NA
## 553             <NA>                <NA>         <NA>                      NA
## 554             <NA>                <NA>         <NA>                      NA
## 555             <NA>                <NA>         <NA>                      NA
## 556             <NA>                <NA>         <NA>                      NA
## 557             <NA>                <NA>         <NA>                      NA
## 558             <NA>                <NA>         <NA>                      NA
## 559             <NA>                <NA>         <NA>                      NA
## 560             <NA>                <NA>         <NA>                      NA
## 561             <NA>                <NA>         <NA>                      NA
## 562             <NA>                <NA>         <NA>                      NA
## 563             <NA>                <NA>         <NA>                      NA
## 564             <NA>                <NA>         <NA>                      NA
## 565             <NA>                <NA>         <NA>                      NA
## 566             <NA>                <NA>         <NA>                      NA
## 567             <NA>                <NA>         <NA>                      NA
## 568             <NA>                <NA>         <NA>                      NA
## 569             <NA>                <NA>         <NA>                      NA
## 570             <NA>                <NA>         <NA>                      NA
## 571             <NA>                <NA>         <NA>                      NA
## 572             <NA>                <NA>         <NA>                      NA
## 573             <NA>                <NA>         <NA>                      NA
## 574             <NA>                <NA>         <NA>                      NA
## 575             <NA>                <NA>         <NA>                      NA
## 576             <NA>                <NA>         <NA>                      NA
## 577             <NA>                <NA>         <NA>                      NA
## 578             <NA>                <NA>         <NA>                      NA
## 579             <NA>                <NA>         <NA>                      NA
## 580             <NA>                <NA>         <NA>                      NA
## 581             <NA>                <NA>         <NA>                      NA
## 582             <NA>                <NA>         <NA>                      NA
## 583             <NA>                <NA>         <NA>                      NA
## 584             <NA>                <NA>         <NA>                      NA
## 585             <NA>                <NA>         <NA>                      NA
## 586             <NA>                <NA>         <NA>                      NA
## 587             <NA>                <NA>         <NA>                      NA
## 588             <NA>                <NA>         <NA>                      NA
## 589             <NA>                <NA>         <NA>                      NA
## 590             <NA>                <NA>         <NA>                      NA
## 591             <NA>                <NA>         <NA>                      NA
## 592             <NA>                <NA>         <NA>                      NA
## 593             <NA>                <NA>         <NA>                      NA
## 594             <NA>                <NA>         <NA>                      NA
## 595             <NA>                <NA>         <NA>                      NA
## 596             <NA>                <NA>         <NA>                      NA
## 597             <NA>                <NA>         <NA>                      NA
## 598             <NA>                <NA>         <NA>                      NA
## 599             <NA>                <NA>         <NA>                      NA
## 600             <NA>                <NA>         <NA>                      NA
## 601             <NA>                <NA>         <NA>                      NA
## 602             <NA>                <NA>         <NA>                      NA
## 603             <NA>                <NA>         <NA>                      NA
## 604             <NA>                <NA>         <NA>                      NA
## 605             <NA>                <NA>         <NA>                      NA
## 606             <NA>                <NA>         <NA>                      NA
## 607             <NA>                <NA>         <NA>                      NA
## 608             <NA>                <NA>         <NA>                      NA
## 609             <NA>                <NA>         <NA>                      NA
## 610             <NA>                <NA>         <NA>                      NA
## 611             <NA>                <NA>         <NA>                      NA
## 612             <NA>                <NA>         <NA>                      NA
## 613             <NA>                <NA>         <NA>                      NA
## 614             <NA>                <NA>         <NA>                      NA
## 615             <NA>                <NA>         <NA>                      NA
## 616             <NA>                <NA>         <NA>                      NA
## 617             <NA>                <NA>         <NA>                      NA
## 618             <NA>                <NA>         <NA>                      NA
## 619             <NA>                <NA>         <NA>                      NA
## 620             <NA>                <NA>         <NA>                      NA
## 621             <NA>                <NA>         <NA>                      NA
## 622             <NA>                <NA>         <NA>                      NA
## 623             <NA>                <NA>         <NA>                      NA
## 624             <NA>                <NA>         <NA>                      NA
## 625             <NA>                <NA>         <NA>                      NA
## 626             <NA>                <NA>         <NA>                      NA
## 627             <NA>                <NA>         <NA>                      NA
## 628             <NA>                <NA>         <NA>                      NA
## 629             <NA>                <NA>         <NA>                      NA
## 630             <NA>                <NA>         <NA>                      NA
## 631             <NA>                <NA>         <NA>                      NA
## 632             <NA>                <NA>         <NA>                      NA
## 633             <NA>                <NA>         <NA>                      NA
## 634             <NA>                <NA>         <NA>                      NA
## 635             <NA>                <NA>         <NA>                      NA
## 636             <NA>                <NA>         <NA>                      NA
## 637             <NA>                <NA>         <NA>                      NA
## 638             <NA>                <NA>         <NA>                      NA
## 639             <NA>                <NA>         <NA>                      NA
## 640             <NA>                <NA>         <NA>                      NA
## 641             <NA>                <NA>         <NA>                      NA
## 642             <NA>                <NA>         <NA>                      NA
## 643             <NA>                <NA>         <NA>                      NA
## 644             <NA>                <NA>         <NA>                      NA
## 645             <NA>                <NA>         <NA>                      NA
## 646             <NA>                <NA>         <NA>                      NA
## 647             <NA>                <NA>         <NA>                      NA
## 648             <NA>                <NA>         <NA>                      NA
## 649             <NA>                <NA>         <NA>                      NA
## 650             <NA>                <NA>         <NA>                      NA
## 651             <NA>                <NA>         <NA>                      NA
## 652             <NA>                <NA>         <NA>                      NA
## 653             <NA>                <NA>         <NA>                      NA
## 654             <NA>                <NA>         <NA>                      NA
## 655             <NA>                <NA>         <NA>                      NA
## 656             <NA>                <NA>         <NA>                      NA
## 657             <NA>                <NA>         <NA>                      NA
## 658             <NA>                <NA>         <NA>                      NA
## 659             <NA>                <NA>         <NA>                      NA
## 660             <NA>                <NA>         <NA>                      NA
## 661             <NA>                <NA>         <NA>                      NA
## 662             <NA>                <NA>         <NA>                      NA
## 663             <NA>                <NA>         <NA>                      NA
## 664             <NA>                <NA>         <NA>                      NA
## 665             <NA>                <NA>         <NA>                      NA
## 666             <NA>                <NA>         <NA>                      NA
## 667             <NA>                <NA>         <NA>                      NA
## 668             <NA>                <NA>         <NA>                      NA
## 669             <NA>                <NA>         <NA>                      NA
## 670             <NA>                <NA>         <NA>                      NA
## 671             <NA>                <NA>         <NA>                      NA
## 672             <NA>                <NA>         <NA>                      NA
## 673             <NA>                <NA>         <NA>                      NA
## 674             <NA>                <NA>         <NA>                      NA
## 675             <NA>                <NA>         <NA>                      NA
## 676             <NA>                <NA>         <NA>                      NA
## 677             <NA>                <NA>         <NA>                      NA
## 678             <NA>                <NA>         <NA>                      NA
## 679             <NA>                <NA>         <NA>                      NA
## 680             <NA>                <NA>         <NA>                      NA
## 681             <NA>                <NA>         <NA>                      NA
## 682             <NA>                <NA>         <NA>                      NA
## 683             <NA>                <NA>         <NA>                      NA
## 684             <NA>                <NA>         <NA>                      NA
## 685             <NA>                <NA>         <NA>                      NA
## 686             <NA>                <NA>         <NA>                      NA
## 687             <NA>                <NA>         <NA>                      NA
## 688             <NA>                <NA>         <NA>                      NA
## 689             <NA>                <NA>         <NA>                      NA
## 690             <NA>                <NA>         <NA>                      NA
## 691             <NA>                <NA>         <NA>                      NA
## 692             <NA>                <NA>         <NA>                      NA
## 693             <NA>                <NA>         <NA>                      NA
## 694             <NA>                <NA>         <NA>                      NA
## 695             <NA>                <NA>         <NA>                      NA
## 696             <NA>                <NA>         <NA>                      NA
## 697             <NA>                <NA>         <NA>                      NA
## 698             <NA>                <NA>         <NA>                      NA
## 699             <NA>                <NA>         <NA>                      NA
## 700             <NA>                <NA>         <NA>                      NA
## 701             <NA>                <NA>         <NA>                      NA
## 702             <NA>                <NA>         <NA>                      NA
## 703             <NA>                <NA>         <NA>                      NA
## 704             <NA>                <NA>         <NA>                      NA
## 705             <NA>                <NA>         <NA>                      NA
## 706             <NA>                <NA>         <NA>                      NA
## 707             <NA>                <NA>         <NA>                      NA
## 708             <NA>                <NA>         <NA>                      NA
## 709             <NA>                <NA>         <NA>                      NA
## 710             <NA>                <NA>         <NA>                      NA
## 711             <NA>                <NA>         <NA>                      NA
## 712             <NA>                <NA>         <NA>                      NA
## 713             <NA>                <NA>         <NA>                      NA
## 714             <NA>                <NA>         <NA>                      NA
## 715             <NA>                <NA>         <NA>                      NA
## 716             <NA>                <NA>         <NA>                      NA
## 717             <NA>                <NA>         <NA>                      NA
## 718             <NA>                <NA>         <NA>                      NA
## 719             <NA>                <NA>         <NA>                      NA
## 720             <NA>                <NA>         <NA>                      NA
## 721             <NA>                <NA>         <NA>                      NA
## 722             <NA>                <NA>         <NA>                      NA
## 723             <NA>                <NA>         <NA>                      NA
## 724             <NA>                <NA>         <NA>                      NA
## 725             <NA>                <NA>         <NA>                      NA
## 726             <NA>                <NA>         <NA>                      NA
## 727             <NA>                <NA>         <NA>                      NA
## 728             <NA>                <NA>         <NA>                      NA
## 729             <NA>                <NA>         <NA>                      NA
## 730             <NA>                <NA>         <NA>                      NA
## 731             <NA>                <NA>         <NA>                      NA
## 732             <NA>                <NA>         <NA>                      NA
## 733             <NA>                <NA>         <NA>                      NA
## 734             <NA>                <NA>         <NA>                      NA
## 735             <NA>                <NA>         <NA>                      NA
## 736             <NA>                <NA>         <NA>                      NA
## 737             <NA>                <NA>         <NA>                      NA
## 738             <NA>                <NA>         <NA>                      NA
## 739             <NA>                <NA>         <NA>                      NA
## 740             <NA>                <NA>         <NA>                      NA
## 741             <NA>                <NA>         <NA>                      NA
## 742             <NA>                <NA>         <NA>                      NA
## 743             <NA>                <NA>         <NA>                      NA
## 744             <NA>                <NA>         <NA>                      NA
## 745             <NA>                <NA>         <NA>                      NA
## 746             <NA>                <NA>         <NA>                      NA
## 747             <NA>                <NA>         <NA>                      NA
## 748             <NA>                <NA>         <NA>                      NA
## 749             <NA>                <NA>         <NA>                      NA
## 750             <NA>                <NA>         <NA>                      NA
## 751             <NA>                <NA>         <NA>                      NA
## 752             <NA>                <NA>         <NA>                      NA
## 753             <NA>                <NA>         <NA>                      NA
## 754             <NA>                <NA>         <NA>                      NA
## 755             <NA>                <NA>         <NA>                      NA
## 756             <NA>                <NA>         <NA>                      NA
## 757             <NA>                <NA>         <NA>                      NA
## 758             <NA>                <NA>         <NA>                      NA
## 759             <NA>                <NA>         <NA>                      NA
## 760             <NA>                <NA>         <NA>                      NA
## 761             <NA>                <NA>         <NA>                      NA
## 762             <NA>                <NA>         <NA>                      NA
## 763             <NA>                <NA>         <NA>                      NA
## 764             <NA>                <NA>         <NA>                      NA
## 765             <NA>                <NA>         <NA>                      NA
## 766             <NA>                <NA>         <NA>                      NA
## 767             <NA>                <NA>         <NA>                      NA
## 768             <NA>                <NA>         <NA>                      NA
## 769             <NA>                <NA>         <NA>                      NA
## 770             <NA>                <NA>         <NA>                      NA
## 771             <NA>                <NA>         <NA>                      NA
## 772             <NA>                <NA>         <NA>                      NA
## 773             <NA>                <NA>         <NA>                      NA
## 774             <NA>                <NA>         <NA>                      NA
## 775             <NA>                <NA>         <NA>                      NA
## 776             <NA>                <NA>         <NA>                      NA
## 777             <NA>                <NA>         <NA>                      NA
## 778             <NA>                <NA>         <NA>                      NA
## 779             <NA>                <NA>         <NA>                      NA
## 780             <NA>                <NA>         <NA>                      NA
## 781             <NA>                <NA>         <NA>                      NA
## 782             <NA>                <NA>         <NA>                      NA
## 783             <NA>                <NA>         <NA>                      NA
## 784             <NA>                <NA>         <NA>                      NA
## 785             <NA>                <NA>         <NA>                      NA
## 786             <NA>                <NA>         <NA>                      NA
## 787             <NA>                <NA>         <NA>                      NA
## 788             <NA>                <NA>         <NA>                      NA
## 789             <NA>                <NA>         <NA>                      NA
## 790             <NA>                <NA>         <NA>                      NA
## 791             <NA>                <NA>         <NA>                      NA
## 792             <NA>                <NA>         <NA>                      NA
## 793             <NA>                <NA>         <NA>                      NA
## 794             <NA>                <NA>         <NA>                      NA
## 795             <NA>                <NA>         <NA>                      NA
## 796             <NA>                <NA>         <NA>                      NA
## 797             <NA>                <NA>         <NA>                      NA
## 798             <NA>                <NA>         <NA>                      NA
## 799             <NA>                <NA>         <NA>                      NA
## 800             <NA>                <NA>         <NA>                      NA
## 801             <NA>                <NA>         <NA>                      NA
## 802             <NA>                <NA>         <NA>                      NA
## 803             <NA>                <NA>         <NA>                      NA
## 804             <NA>                <NA>         <NA>                      NA
## 805             <NA>                <NA>         <NA>                      NA
## 806             <NA>                <NA>         <NA>                      NA
## 807             <NA>                <NA>         <NA>                      NA
## 808             <NA>                <NA>         <NA>                      NA
## 809             <NA>                <NA>         <NA>                      NA
## 810             <NA>                <NA>         <NA>                      NA
## 811             <NA>                <NA>         <NA>                      NA
## 812             <NA>                <NA>         <NA>                      NA
## 813             <NA>                <NA>         <NA>                      NA
## 814             <NA>                <NA>         <NA>                      NA
## 815             <NA>                <NA>         <NA>                      NA
## 816             <NA>                <NA>         <NA>                      NA
## 817             <NA>                <NA>         <NA>                      NA
## 818             <NA>                <NA>         <NA>                      NA
## 819             <NA>                <NA>         <NA>                      NA
## 820             <NA>                <NA>         <NA>                      NA
## 821             <NA>                <NA>         <NA>                      NA
## 822             <NA>                <NA>         <NA>                      NA
## 823             <NA>                <NA>         <NA>                      NA
## 824             <NA>                <NA>         <NA>                      NA
## 825             <NA>                <NA>         <NA>                      NA
## 826             <NA>                <NA>         <NA>                      NA
## 827             <NA>                <NA>         <NA>                      NA
## 828             <NA>                <NA>         <NA>                      NA
## 829             <NA>                <NA>         <NA>                      NA
## 830             <NA>                <NA>         <NA>                      NA
## 831             <NA>                <NA>         <NA>                      NA
## 832             <NA>                <NA>         <NA>                      NA
## 833             <NA>                <NA>         <NA>                      NA
## 834             <NA>                <NA>         <NA>                      NA
## 835             <NA>                <NA>         <NA>                      NA
## 836             <NA>                <NA>         <NA>                      NA
## 837             <NA>                <NA>         <NA>                      NA
## 838             <NA>                <NA>         <NA>                      NA
## 839             <NA>                <NA>         <NA>                      NA
## 840             <NA>                <NA>         <NA>                      NA
## 841             <NA>                <NA>         <NA>                      NA
## 842             <NA>                <NA>         <NA>                      NA
## 843             <NA>                <NA>         <NA>                      NA
## 844             <NA>                <NA>         <NA>                      NA
## 845             <NA>                <NA>         <NA>                      NA
## 846             <NA>                <NA>         <NA>                      NA
## 847             <NA>                <NA>         <NA>                      NA
## 848             <NA>                <NA>         <NA>                      NA
## 849             <NA>                <NA>         <NA>                      NA
## 850             <NA>                <NA>         <NA>                      NA
## 851             <NA>                <NA>         <NA>                      NA
## 852             <NA>                <NA>         <NA>                      NA
## 853             <NA>                <NA>         <NA>                      NA
## 854             <NA>                <NA>         <NA>                      NA
## 855             <NA>                <NA>         <NA>                      NA
## 856             <NA>                <NA>         <NA>                      NA
## 857             <NA>                <NA>         <NA>                      NA
## 858             <NA>                <NA>         <NA>                      NA
## 859             <NA>                <NA>         <NA>                      NA
## 860             <NA>                <NA>         <NA>                      NA
## 861             <NA>                <NA>         <NA>                      NA
## 862             <NA>                <NA>         <NA>                      NA
## 863             <NA>                <NA>         <NA>                      NA
## 864             <NA>                <NA>         <NA>                      NA
## 865             <NA>                <NA>         <NA>                      NA
## 866             <NA>                <NA>         <NA>                      NA
## 867             <NA>                <NA>         <NA>                      NA
## 868             <NA>                <NA>         <NA>                      NA
## 869             <NA>                <NA>         <NA>                      NA
## 870             <NA>                <NA>         <NA>                      NA
## 871             <NA>                <NA>         <NA>                      NA
## 872             <NA>                <NA>         <NA>                      NA
## 873             <NA>                <NA>         <NA>                      NA
## 874             <NA>                <NA>         <NA>                      NA
## 875             <NA>                <NA>         <NA>                      NA
## 876             <NA>                <NA>         <NA>                      NA
## 877             <NA>                <NA>         <NA>                      NA
## 878             <NA>                <NA>         <NA>                      NA
## 879             <NA>                <NA>         <NA>                      NA
## 880             <NA>                <NA>         <NA>                      NA
## 881             <NA>                <NA>         <NA>                      NA
## 882             <NA>                <NA>         <NA>                      NA
## 883             <NA>                <NA>         <NA>                      NA
## 884             <NA>                <NA>         <NA>                      NA
## 885             <NA>                <NA>         <NA>                      NA
## 886             <NA>                <NA>         <NA>                      NA
## 887             <NA>                <NA>         <NA>                      NA
## 888             <NA>                <NA>         <NA>                      NA
## 889             <NA>                <NA>         <NA>                      NA
## 890             <NA>                <NA>         <NA>                      NA
## 891             <NA>                <NA>         <NA>                      NA
## 892             <NA>                <NA>         <NA>                      NA
## 893             <NA>                <NA>         <NA>                      NA
## 894             <NA>                <NA>         <NA>                      NA
## 895             <NA>                <NA>         <NA>                      NA
## 896             <NA>                <NA>         <NA>                      NA
## 897             <NA>                <NA>         <NA>                      NA
## 898             <NA>                <NA>         <NA>                      NA
## 899             <NA>                <NA>         <NA>                      NA
## 900             <NA>                <NA>         <NA>                      NA
## 901             <NA>                <NA>         <NA>                      NA
## 902             <NA>                <NA>         <NA>                      NA
## 903             <NA>                <NA>         <NA>                      NA
## 904             <NA>                <NA>         <NA>                      NA
## 905             <NA>                <NA>         <NA>                      NA
## 906             <NA>                <NA>         <NA>                      NA
## 907             <NA>                <NA>         <NA>                      NA
## 908             <NA>                <NA>         <NA>                      NA
## 909             <NA>                <NA>         <NA>                      NA
## 910             <NA>                <NA>         <NA>                      NA
## 911             <NA>                <NA>         <NA>                      NA
## 912             <NA>                <NA>         <NA>                      NA
## 913             <NA>                <NA>         <NA>                      NA
## 914             <NA>                <NA>         <NA>                      NA
## 915             <NA>                <NA>         <NA>                      NA
## 916             <NA>                <NA>         <NA>                      NA
## 917             <NA>                <NA>         <NA>                      NA
## 918             <NA>                <NA>         <NA>                      NA
## 919             <NA>                <NA>         <NA>                      NA
## 920             <NA>                <NA>         <NA>                      NA
## 921             <NA>                <NA>         <NA>                      NA
## 922             <NA>                <NA>         <NA>                      NA
## 923             <NA>                <NA>         <NA>                      NA
## 924             <NA>                <NA>         <NA>                      NA
## 925             <NA>                <NA>         <NA>                      NA
## 926             <NA>                <NA>         <NA>                      NA
## 927             <NA>                <NA>         <NA>                      NA
## 928             <NA>                <NA>         <NA>                      NA
## 929             <NA>                <NA>         <NA>                      NA
## 930             <NA>                <NA>         <NA>                      NA
## 931             <NA>                <NA>         <NA>                      NA
## 932             <NA>                <NA>         <NA>                      NA
## 933             <NA>                <NA>         <NA>                      NA
## 934             <NA>                <NA>         <NA>                      NA
## 935             <NA>                <NA>         <NA>                      NA
## 936             <NA>                <NA>         <NA>                      NA
## 937             <NA>                <NA>         <NA>                      NA
## 938             <NA>                <NA>         <NA>                      NA
## 939             <NA>                <NA>         <NA>                      NA
## 940             <NA>                <NA>         <NA>                      NA
## 941             <NA>                <NA>         <NA>                      NA
## 942             <NA>                <NA>         <NA>                      NA
## 943             <NA>                <NA>         <NA>                      NA
## 944             <NA>                <NA>         <NA>                      NA
## 945             <NA>                <NA>         <NA>                      NA
## 946             <NA>                <NA>         <NA>                      NA
## 947             <NA>                <NA>         <NA>                      NA
## 948             <NA>                <NA>         <NA>                      NA
## 949             <NA>                <NA>         <NA>                      NA
## 950             <NA>                <NA>         <NA>                      NA
## 951             <NA>                <NA>         <NA>                      NA
## 952             <NA>                <NA>         <NA>                      NA
## 953             <NA>                <NA>         <NA>                      NA
## 954             <NA>                <NA>         <NA>                      NA
## 955             <NA>                <NA>         <NA>                      NA
## 956             <NA>                <NA>         <NA>                      NA
## 957             <NA>                <NA>         <NA>                      NA
## 958             <NA>                <NA>         <NA>                      NA
## 959             <NA>                <NA>         <NA>                      NA
## 960             <NA>                <NA>         <NA>                      NA
## 961             <NA>                <NA>         <NA>                      NA
## 962             <NA>                <NA>         <NA>                      NA
## 963             <NA>                <NA>         <NA>                      NA
## 964             <NA>                <NA>         <NA>                      NA
## 965             <NA>                <NA>         <NA>                      NA
## 966             <NA>                <NA>         <NA>                      NA
## 967             <NA>                <NA>         <NA>                      NA
## 968             <NA>                <NA>         <NA>                      NA
## 969             <NA>                <NA>         <NA>                      NA
## 970             <NA>                <NA>         <NA>                      NA
## 971             <NA>                <NA>         <NA>                      NA
## 972             <NA>                <NA>         <NA>                      NA
## 973             <NA>                <NA>         <NA>                      NA
## 974             <NA>                <NA>         <NA>                      NA
## 975             <NA>                <NA>         <NA>                      NA
## 976             <NA>                <NA>         <NA>                      NA
## 977             <NA>                <NA>         <NA>                      NA
## 978             <NA>                <NA>         <NA>                      NA
## 979             <NA>                <NA>         <NA>                      NA
## 980             <NA>                <NA>         <NA>                      NA
## 981             <NA>                <NA>         <NA>                      NA
## 982             <NA>                <NA>         <NA>                      NA
## 983             <NA>                <NA>         <NA>                      NA
## 984             <NA>                <NA>         <NA>                      NA
## 985             <NA>                <NA>         <NA>                      NA
## 986             <NA>                <NA>         <NA>                      NA
## 987             <NA>                <NA>         <NA>                      NA
## 988             <NA>                <NA>         <NA>                      NA
## 989             <NA>                <NA>         <NA>                      NA
## 990             <NA>                <NA>         <NA>                      NA
## 991             <NA>                <NA>         <NA>                      NA
## 992             <NA>                <NA>         <NA>                      NA
## 993             <NA>                <NA>         <NA>                      NA
## 994             <NA>                <NA>         <NA>                      NA
## 995             <NA>                <NA>         <NA>                      NA
## 996             <NA>                <NA>         <NA>                      NA
## 997             <NA>                <NA>         <NA>                      NA
## 998             <NA>                <NA>         <NA>                      NA
## 999             <NA>                <NA>         <NA>                      NA
## 1000            <NA>                <NA>         <NA>                      NA
## 1001            <NA>                <NA>         <NA>                      NA
## 1002            <NA>                <NA>         <NA>                      NA
## 1003            <NA>                <NA>         <NA>                      NA
## 1004            <NA>                <NA>         <NA>                      NA
## 1005            <NA>                <NA>         <NA>                      NA
## 1006            <NA>                <NA>         <NA>                      NA
## 1007            <NA>                <NA>         <NA>                      NA
## 1008            <NA>                <NA>         <NA>                      NA
## 1009            <NA>                <NA>         <NA>                      NA
## 1010            <NA>                <NA>         <NA>                      NA
## 1011            <NA>                <NA>         <NA>                      NA
## 1012            <NA>                <NA>         <NA>                      NA
## 1013            <NA>                <NA>         <NA>                      NA
## 1014            <NA>                <NA>         <NA>                      NA
## 1015            <NA>                <NA>         <NA>                      NA
## 1016            <NA>                <NA>         <NA>                      NA
## 1017            <NA>                <NA>         <NA>                      NA
## 1018            <NA>                <NA>         <NA>                      NA
## 1019            <NA>                <NA>         <NA>                      NA
## 1020            <NA>                <NA>         <NA>                      NA
## 1021            <NA>                <NA>         <NA>                      NA
## 1022            <NA>                <NA>         <NA>                      NA
## 1023            <NA>                <NA>         <NA>                      NA
## 1024            <NA>                <NA>         <NA>                      NA
## 1025            <NA>                <NA>         <NA>                      NA
## 1026            <NA>                <NA>         <NA>                      NA
## 1027            <NA>                <NA>         <NA>                      NA
## 1028            <NA>                <NA>         <NA>                      NA
## 1029            <NA>                <NA>         <NA>                      NA
## 1030            <NA>                <NA>         <NA>                      NA
## 1031            <NA>                <NA>         <NA>                      NA
## 1032            <NA>                <NA>         <NA>                      NA
## 1033            <NA>                <NA>         <NA>                      NA
## 1034            <NA>                <NA>         <NA>                      NA
## 1035            <NA>                <NA>         <NA>                      NA
## 1036            <NA>                <NA>         <NA>                      NA
## 1037            <NA>                <NA>         <NA>                      NA
## 1038            <NA>                <NA>         <NA>                      NA
## 1039            <NA>                <NA>         <NA>                      NA
## 1040            <NA>                <NA>         <NA>                      NA
## 1041            <NA>                <NA>         <NA>                      NA
## 1042            <NA>                <NA>         <NA>                      NA
## 1043            <NA>                <NA>         <NA>                      NA
## 1044            <NA>                <NA>         <NA>                      NA
## 1045            <NA>                <NA>         <NA>                      NA
## 1046            <NA>                <NA>         <NA>                      NA
## 1047            <NA>                <NA>         <NA>                      NA
## 1048            <NA>                <NA>         <NA>                      NA
## 1049            <NA>                <NA>         <NA>                      NA
## 1050            <NA>                <NA>         <NA>                      NA
## 1051            <NA>                <NA>         <NA>                      NA
## 1052            <NA>                <NA>         <NA>                      NA
## 1053            <NA>                <NA>         <NA>                      NA
## 1054            <NA>                <NA>         <NA>                      NA
## 1055            <NA>                <NA>         <NA>                      NA
## 1056            <NA>                <NA>         <NA>                      NA
## 1057            <NA>                <NA>         <NA>                      NA
## 1058            <NA>                <NA>         <NA>                      NA
## 1059            <NA>                <NA>         <NA>                      NA
## 1060            <NA>                <NA>         <NA>                      NA
## 1061            <NA>                <NA>         <NA>                      NA
## 1062            <NA>                <NA>         <NA>                      NA
## 1063            <NA>                <NA>         <NA>                      NA
## 1064            <NA>                <NA>         <NA>                      NA
## 1065            <NA>                <NA>         <NA>                      NA
## 1066            <NA>                <NA>         <NA>                      NA
## 1067            <NA>                <NA>         <NA>                      NA
## 1068            <NA>                <NA>         <NA>                      NA
## 1069            <NA>                <NA>         <NA>                      NA
## 1070            <NA>                <NA>         <NA>                      NA
## 1071            <NA>                <NA>         <NA>                      NA
## 1072            <NA>                <NA>         <NA>                      NA
## 1073            <NA>                <NA>         <NA>                      NA
## 1074            <NA>                <NA>         <NA>                      NA
## 1075            <NA>                <NA>         <NA>                      NA
## 1076            <NA>                <NA>         <NA>                      NA
## 1077            <NA>                <NA>         <NA>                      NA
## 1078            <NA>                <NA>         <NA>                      NA
## 1079            <NA>                <NA>         <NA>                      NA
## 1080            <NA>                <NA>         <NA>                      NA
## 1081            <NA>                <NA>         <NA>                      NA
## 1082            <NA>                <NA>         <NA>                      NA
## 1083            <NA>                <NA>         <NA>                      NA
## 1084            <NA>                <NA>         <NA>                      NA
## 1085            <NA>                <NA>         <NA>                      NA
## 1086            <NA>                <NA>         <NA>                      NA
## 1087            <NA>                <NA>         <NA>                      NA
## 1088            <NA>                <NA>         <NA>                      NA
## 1089            <NA>                <NA>         <NA>                      NA
## 1090            <NA>                <NA>         <NA>                      NA
## 1091            <NA>                <NA>         <NA>                      NA
## 1092            <NA>                <NA>         <NA>                      NA
## 1093            <NA>                <NA>         <NA>                      NA
## 1094            <NA>                <NA>         <NA>                      NA
## 1095            <NA>                <NA>         <NA>                      NA
## 1096            <NA>                <NA>         <NA>                      NA
## 1097            <NA>                <NA>         <NA>                      NA
## 1098            <NA>                <NA>         <NA>                      NA
## 1099            <NA>                <NA>         <NA>                      NA
## 1100            <NA>                <NA>         <NA>                      NA
## 1101            <NA>                <NA>         <NA>                      NA
## 1102            <NA>                <NA>         <NA>                      NA
## 1103            <NA>                <NA>         <NA>                      NA
## 1104            <NA>                <NA>         <NA>                      NA
## 1105            <NA>                <NA>         <NA>                      NA
## 1106            <NA>                <NA>         <NA>                      NA
## 1107            <NA>                <NA>         <NA>                      NA
## 1108            <NA>                <NA>         <NA>                      NA
## 1109            <NA>                <NA>         <NA>                      NA
## 1110            <NA>                <NA>         <NA>                      NA
## 1111            <NA>                <NA>         <NA>                      NA
##      retweet_friends_count retweet_statuses_count retweet_location
## 1                       NA                     NA             <NA>
## 2                       NA                     NA             <NA>
## 3                       NA                     NA             <NA>
## 4                       NA                     NA             <NA>
## 5                       NA                     NA             <NA>
## 6                       NA                     NA             <NA>
## 7                       NA                     NA             <NA>
## 8                       NA                     NA             <NA>
## 9                       NA                     NA             <NA>
## 10                      NA                     NA             <NA>
## 11                      NA                     NA             <NA>
## 12                      NA                     NA             <NA>
## 13                      NA                     NA             <NA>
## 14                      NA                     NA             <NA>
## 15                      NA                     NA             <NA>
## 16                      NA                     NA             <NA>
## 17                      NA                     NA             <NA>
## 18                      NA                     NA             <NA>
## 19                      NA                     NA             <NA>
## 20                      NA                     NA             <NA>
## 21                      NA                     NA             <NA>
## 22                      NA                     NA             <NA>
## 23                      NA                     NA             <NA>
## 24                      NA                     NA             <NA>
## 25                      NA                     NA             <NA>
## 26                      NA                     NA             <NA>
## 27                      NA                     NA             <NA>
## 28                      NA                     NA             <NA>
## 29                      NA                     NA             <NA>
## 30                      NA                     NA             <NA>
## 31                      NA                     NA             <NA>
## 32                      NA                     NA             <NA>
## 33                      NA                     NA             <NA>
## 34                      NA                     NA             <NA>
## 35                      NA                     NA             <NA>
## 36                      NA                     NA             <NA>
## 37                      NA                     NA             <NA>
## 38                      NA                     NA             <NA>
## 39                      NA                     NA             <NA>
## 40                      NA                     NA             <NA>
## 41                      NA                     NA             <NA>
## 42                      NA                     NA             <NA>
## 43                      NA                     NA             <NA>
## 44                      NA                     NA             <NA>
## 45                      NA                     NA             <NA>
## 46                      NA                     NA             <NA>
## 47                      NA                     NA             <NA>
## 48                      NA                     NA             <NA>
## 49                      NA                     NA             <NA>
## 50                      NA                     NA             <NA>
## 51                      NA                     NA             <NA>
## 52                      NA                     NA             <NA>
## 53                      NA                     NA             <NA>
## 54                      NA                     NA             <NA>
## 55                      NA                     NA             <NA>
## 56                      NA                     NA             <NA>
## 57                      NA                     NA             <NA>
## 58                      NA                     NA             <NA>
## 59                      NA                     NA             <NA>
## 60                      NA                     NA             <NA>
## 61                      NA                     NA             <NA>
## 62                      NA                     NA             <NA>
## 63                      NA                     NA             <NA>
## 64                      NA                     NA             <NA>
## 65                      NA                     NA             <NA>
## 66                      NA                     NA             <NA>
## 67                      NA                     NA             <NA>
## 68                      NA                     NA             <NA>
## 69                      NA                     NA             <NA>
## 70                      NA                     NA             <NA>
## 71                      NA                     NA             <NA>
## 72                      NA                     NA             <NA>
## 73                      NA                     NA             <NA>
## 74                      NA                     NA             <NA>
## 75                      NA                     NA             <NA>
## 76                      NA                     NA             <NA>
## 77                      NA                     NA             <NA>
## 78                      NA                     NA             <NA>
## 79                      NA                     NA             <NA>
## 80                      NA                     NA             <NA>
## 81                      NA                     NA             <NA>
## 82                      NA                     NA             <NA>
## 83                      NA                     NA             <NA>
## 84                      NA                     NA             <NA>
## 85                      NA                     NA             <NA>
## 86                      NA                     NA             <NA>
## 87                      NA                     NA             <NA>
## 88                      NA                     NA             <NA>
## 89                      NA                     NA             <NA>
## 90                      NA                     NA             <NA>
## 91                      NA                     NA             <NA>
## 92                      NA                     NA             <NA>
## 93                      NA                     NA             <NA>
## 94                      NA                     NA             <NA>
## 95                      NA                     NA             <NA>
## 96                      NA                     NA             <NA>
## 97                      NA                     NA             <NA>
## 98                      NA                     NA             <NA>
## 99                      NA                     NA             <NA>
## 100                     NA                     NA             <NA>
## 101                     NA                     NA             <NA>
## 102                     NA                     NA             <NA>
## 103                     NA                     NA             <NA>
## 104                     NA                     NA             <NA>
## 105                     NA                     NA             <NA>
## 106                     NA                     NA             <NA>
## 107                     NA                     NA             <NA>
## 108                     NA                     NA             <NA>
## 109                     NA                     NA             <NA>
## 110                     NA                     NA             <NA>
## 111                     NA                     NA             <NA>
## 112                     NA                     NA             <NA>
## 113                     NA                     NA             <NA>
## 114                     NA                     NA             <NA>
## 115                     NA                     NA             <NA>
## 116                     NA                     NA             <NA>
## 117                     NA                     NA             <NA>
## 118                     NA                     NA             <NA>
## 119                     NA                     NA             <NA>
## 120                     NA                     NA             <NA>
## 121                     NA                     NA             <NA>
## 122                     NA                     NA             <NA>
## 123                     NA                     NA             <NA>
## 124                     NA                     NA             <NA>
## 125                     NA                     NA             <NA>
## 126                     NA                     NA             <NA>
## 127                     NA                     NA             <NA>
## 128                     NA                     NA             <NA>
## 129                     NA                     NA             <NA>
## 130                     NA                     NA             <NA>
## 131                     NA                     NA             <NA>
## 132                     NA                     NA             <NA>
## 133                     NA                     NA             <NA>
## 134                     NA                     NA             <NA>
## 135                     NA                     NA             <NA>
## 136                     NA                     NA             <NA>
## 137                     NA                     NA             <NA>
## 138                     NA                     NA             <NA>
## 139                     NA                     NA             <NA>
## 140                     NA                     NA             <NA>
## 141                     NA                     NA             <NA>
## 142                     NA                     NA             <NA>
## 143                     NA                     NA             <NA>
## 144                     NA                     NA             <NA>
## 145                     NA                     NA             <NA>
## 146                     NA                     NA             <NA>
## 147                     NA                     NA             <NA>
## 148                     NA                     NA             <NA>
## 149                     NA                     NA             <NA>
## 150                     NA                     NA             <NA>
## 151                     NA                     NA             <NA>
## 152                     NA                     NA             <NA>
## 153                     NA                     NA             <NA>
## 154                     NA                     NA             <NA>
## 155                     NA                     NA             <NA>
## 156                     NA                     NA             <NA>
## 157                     NA                     NA             <NA>
## 158                     NA                     NA             <NA>
## 159                     NA                     NA             <NA>
## 160                     NA                     NA             <NA>
## 161                     NA                     NA             <NA>
## 162                     NA                     NA             <NA>
## 163                     NA                     NA             <NA>
## 164                     NA                     NA             <NA>
## 165                     NA                     NA             <NA>
## 166                     NA                     NA             <NA>
## 167                     NA                     NA             <NA>
## 168                     NA                     NA             <NA>
## 169                     NA                     NA             <NA>
## 170                     NA                     NA             <NA>
## 171                     NA                     NA             <NA>
## 172                     NA                     NA             <NA>
## 173                     NA                     NA             <NA>
## 174                     NA                     NA             <NA>
## 175                     NA                     NA             <NA>
## 176                     NA                     NA             <NA>
## 177                     NA                     NA             <NA>
## 178                     NA                     NA             <NA>
## 179                     NA                     NA             <NA>
## 180                     NA                     NA             <NA>
## 181                     NA                     NA             <NA>
## 182                     NA                     NA             <NA>
## 183                     NA                     NA             <NA>
## 184                     NA                     NA             <NA>
## 185                     NA                     NA             <NA>
## 186                     NA                     NA             <NA>
## 187                     NA                     NA             <NA>
## 188                     NA                     NA             <NA>
## 189                     NA                     NA             <NA>
## 190                     NA                     NA             <NA>
## 191                     NA                     NA             <NA>
## 192                     NA                     NA             <NA>
## 193                     NA                     NA             <NA>
## 194                     NA                     NA             <NA>
## 195                     NA                     NA             <NA>
## 196                     NA                     NA             <NA>
## 197                     NA                     NA             <NA>
## 198                     NA                     NA             <NA>
## 199                     NA                     NA             <NA>
## 200                     NA                     NA             <NA>
## 201                     NA                     NA             <NA>
## 202                     NA                     NA             <NA>
## 203                     NA                     NA             <NA>
## 204                     NA                     NA             <NA>
## 205                     NA                     NA             <NA>
## 206                     NA                     NA             <NA>
## 207                     NA                     NA             <NA>
## 208                     NA                     NA             <NA>
## 209                     NA                     NA             <NA>
## 210                     NA                     NA             <NA>
## 211                     NA                     NA             <NA>
## 212                     NA                     NA             <NA>
## 213                     NA                     NA             <NA>
## 214                     NA                     NA             <NA>
## 215                     NA                     NA             <NA>
## 216                     NA                     NA             <NA>
## 217                     NA                     NA             <NA>
## 218                     NA                     NA             <NA>
## 219                     NA                     NA             <NA>
## 220                     NA                     NA             <NA>
## 221                     NA                     NA             <NA>
## 222                     NA                     NA             <NA>
## 223                     NA                     NA             <NA>
## 224                     NA                     NA             <NA>
## 225                     NA                     NA             <NA>
## 226                     NA                     NA             <NA>
## 227                     NA                     NA             <NA>
## 228                     NA                     NA             <NA>
## 229                     NA                     NA             <NA>
## 230                     NA                     NA             <NA>
## 231                     NA                     NA             <NA>
## 232                     NA                     NA             <NA>
## 233                     NA                     NA             <NA>
## 234                     NA                     NA             <NA>
## 235                     NA                     NA             <NA>
## 236                     NA                     NA             <NA>
## 237                     NA                     NA             <NA>
## 238                     NA                     NA             <NA>
## 239                     NA                     NA             <NA>
## 240                     NA                     NA             <NA>
## 241                     NA                     NA             <NA>
## 242                     NA                     NA             <NA>
## 243                     NA                     NA             <NA>
## 244                     NA                     NA             <NA>
## 245                     NA                     NA             <NA>
## 246                     NA                     NA             <NA>
## 247                     NA                     NA             <NA>
## 248                     NA                     NA             <NA>
## 249                     NA                     NA             <NA>
## 250                     NA                     NA             <NA>
## 251                     NA                     NA             <NA>
## 252                     NA                     NA             <NA>
## 253                     NA                     NA             <NA>
## 254                     NA                     NA             <NA>
## 255                     NA                     NA             <NA>
## 256                     NA                     NA             <NA>
## 257                     NA                     NA             <NA>
## 258                     NA                     NA             <NA>
## 259                     NA                     NA             <NA>
## 260                     NA                     NA             <NA>
## 261                     NA                     NA             <NA>
## 262                     NA                     NA             <NA>
## 263                     NA                     NA             <NA>
## 264                     NA                     NA             <NA>
## 265                     NA                     NA             <NA>
## 266                     NA                     NA             <NA>
## 267                     NA                     NA             <NA>
## 268                     NA                     NA             <NA>
## 269                     NA                     NA             <NA>
## 270                     NA                     NA             <NA>
## 271                     NA                     NA             <NA>
## 272                     NA                     NA             <NA>
## 273                     NA                     NA             <NA>
## 274                     NA                     NA             <NA>
## 275                     NA                     NA             <NA>
## 276                     NA                     NA             <NA>
## 277                     NA                     NA             <NA>
## 278                     NA                     NA             <NA>
## 279                     NA                     NA             <NA>
## 280                     NA                     NA             <NA>
## 281                     NA                     NA             <NA>
## 282                     NA                     NA             <NA>
## 283                     NA                     NA             <NA>
## 284                     NA                     NA             <NA>
## 285                     NA                     NA             <NA>
## 286                     NA                     NA             <NA>
## 287                     NA                     NA             <NA>
## 288                     NA                     NA             <NA>
## 289                     NA                     NA             <NA>
## 290                     NA                     NA             <NA>
## 291                     NA                     NA             <NA>
## 292                     NA                     NA             <NA>
## 293                     NA                     NA             <NA>
## 294                     NA                     NA             <NA>
## 295                     NA                     NA             <NA>
## 296                     NA                     NA             <NA>
## 297                     NA                     NA             <NA>
## 298                     NA                     NA             <NA>
## 299                     NA                     NA             <NA>
## 300                     NA                     NA             <NA>
## 301                     NA                     NA             <NA>
## 302                     NA                     NA             <NA>
## 303                     NA                     NA             <NA>
## 304                     NA                     NA             <NA>
## 305                     NA                     NA             <NA>
## 306                     NA                     NA             <NA>
## 307                     NA                     NA             <NA>
## 308                     NA                     NA             <NA>
## 309                     NA                     NA             <NA>
## 310                     NA                     NA             <NA>
## 311                     NA                     NA             <NA>
## 312                     NA                     NA             <NA>
## 313                     NA                     NA             <NA>
## 314                     NA                     NA             <NA>
## 315                     NA                     NA             <NA>
## 316                     NA                     NA             <NA>
## 317                     NA                     NA             <NA>
## 318                     NA                     NA             <NA>
## 319                     NA                     NA             <NA>
## 320                     NA                     NA             <NA>
## 321                     NA                     NA             <NA>
## 322                     NA                     NA             <NA>
## 323                     NA                     NA             <NA>
## 324                     NA                     NA             <NA>
## 325                     NA                     NA             <NA>
## 326                     NA                     NA             <NA>
## 327                     NA                     NA             <NA>
## 328                     NA                     NA             <NA>
## 329                     NA                     NA             <NA>
## 330                     NA                     NA             <NA>
## 331                     NA                     NA             <NA>
## 332                     NA                     NA             <NA>
## 333                     NA                     NA             <NA>
## 334                     NA                     NA             <NA>
## 335                     NA                     NA             <NA>
## 336                     NA                     NA             <NA>
## 337                     NA                     NA             <NA>
## 338                     NA                     NA             <NA>
## 339                     NA                     NA             <NA>
## 340                     NA                     NA             <NA>
## 341                     NA                     NA             <NA>
## 342                     NA                     NA             <NA>
## 343                     NA                     NA             <NA>
## 344                     NA                     NA             <NA>
## 345                     NA                     NA             <NA>
## 346                     NA                     NA             <NA>
## 347                     NA                     NA             <NA>
## 348                     NA                     NA             <NA>
## 349                     NA                     NA             <NA>
## 350                     NA                     NA             <NA>
## 351                     NA                     NA             <NA>
## 352                     NA                     NA             <NA>
## 353                     NA                     NA             <NA>
## 354                     NA                     NA             <NA>
## 355                     NA                     NA             <NA>
## 356                     NA                     NA             <NA>
## 357                     NA                     NA             <NA>
## 358                     NA                     NA             <NA>
## 359                     NA                     NA             <NA>
## 360                     NA                     NA             <NA>
## 361                     NA                     NA             <NA>
## 362                     NA                     NA             <NA>
## 363                     NA                     NA             <NA>
## 364                     NA                     NA             <NA>
## 365                     NA                     NA             <NA>
## 366                     NA                     NA             <NA>
## 367                     NA                     NA             <NA>
## 368                     NA                     NA             <NA>
## 369                     NA                     NA             <NA>
## 370                     NA                     NA             <NA>
## 371                     NA                     NA             <NA>
## 372                     NA                     NA             <NA>
## 373                     NA                     NA             <NA>
## 374                     NA                     NA             <NA>
## 375                     NA                     NA             <NA>
## 376                     NA                     NA             <NA>
## 377                     NA                     NA             <NA>
## 378                     NA                     NA             <NA>
## 379                     NA                     NA             <NA>
## 380                     NA                     NA             <NA>
## 381                     NA                     NA             <NA>
## 382                     NA                     NA             <NA>
## 383                     NA                     NA             <NA>
## 384                     NA                     NA             <NA>
## 385                     NA                     NA             <NA>
## 386                     NA                     NA             <NA>
## 387                     NA                     NA             <NA>
## 388                     NA                     NA             <NA>
## 389                     NA                     NA             <NA>
## 390                     NA                     NA             <NA>
## 391                     NA                     NA             <NA>
## 392                     NA                     NA             <NA>
## 393                     NA                     NA             <NA>
## 394                     NA                     NA             <NA>
## 395                     NA                     NA             <NA>
## 396                     NA                     NA             <NA>
## 397                     NA                     NA             <NA>
## 398                     NA                     NA             <NA>
## 399                     NA                     NA             <NA>
## 400                     NA                     NA             <NA>
## 401                     NA                     NA             <NA>
## 402                     NA                     NA             <NA>
## 403                     NA                     NA             <NA>
## 404                     NA                     NA             <NA>
## 405                     NA                     NA             <NA>
## 406                     NA                     NA             <NA>
## 407                     NA                     NA             <NA>
## 408                     NA                     NA             <NA>
## 409                     NA                     NA             <NA>
## 410                     NA                     NA             <NA>
## 411                     NA                     NA             <NA>
## 412                     NA                     NA             <NA>
## 413                     NA                     NA             <NA>
## 414                     NA                     NA             <NA>
## 415                     NA                     NA             <NA>
## 416                     NA                     NA             <NA>
## 417                     NA                     NA             <NA>
## 418                     NA                     NA             <NA>
## 419                     NA                     NA             <NA>
## 420                     NA                     NA             <NA>
## 421                     NA                     NA             <NA>
## 422                     NA                     NA             <NA>
## 423                     NA                     NA             <NA>
## 424                     NA                     NA             <NA>
## 425                     NA                     NA             <NA>
## 426                     NA                     NA             <NA>
## 427                     NA                     NA             <NA>
## 428                     NA                     NA             <NA>
## 429                     NA                     NA             <NA>
## 430                     NA                     NA             <NA>
## 431                     NA                     NA             <NA>
## 432                     NA                     NA             <NA>
## 433                     NA                     NA             <NA>
## 434                     NA                     NA             <NA>
## 435                     NA                     NA             <NA>
## 436                     NA                     NA             <NA>
## 437                     NA                     NA             <NA>
## 438                     NA                     NA             <NA>
## 439                     NA                     NA             <NA>
## 440                     NA                     NA             <NA>
## 441                     NA                     NA             <NA>
## 442                     NA                     NA             <NA>
## 443                     NA                     NA             <NA>
## 444                     NA                     NA             <NA>
## 445                     NA                     NA             <NA>
## 446                     NA                     NA             <NA>
## 447                     NA                     NA             <NA>
## 448                     NA                     NA             <NA>
## 449                     NA                     NA             <NA>
## 450                     NA                     NA             <NA>
## 451                     NA                     NA             <NA>
## 452                     NA                     NA             <NA>
## 453                     NA                     NA             <NA>
## 454                     NA                     NA             <NA>
## 455                     NA                     NA             <NA>
## 456                     NA                     NA             <NA>
## 457                     NA                     NA             <NA>
## 458                     NA                     NA             <NA>
## 459                     NA                     NA             <NA>
## 460                     NA                     NA             <NA>
## 461                     NA                     NA             <NA>
## 462                     NA                     NA             <NA>
## 463                     NA                     NA             <NA>
## 464                     NA                     NA             <NA>
## 465                     NA                     NA             <NA>
## 466                     NA                     NA             <NA>
## 467                     NA                     NA             <NA>
## 468                     NA                     NA             <NA>
## 469                     NA                     NA             <NA>
## 470                     NA                     NA             <NA>
## 471                     NA                     NA             <NA>
## 472                     NA                     NA             <NA>
## 473                     NA                     NA             <NA>
## 474                     NA                     NA             <NA>
## 475                     NA                     NA             <NA>
## 476                     NA                     NA             <NA>
## 477                     NA                     NA             <NA>
## 478                     NA                     NA             <NA>
## 479                     NA                     NA             <NA>
## 480                     NA                     NA             <NA>
## 481                     NA                     NA             <NA>
## 482                     NA                     NA             <NA>
## 483                     NA                     NA             <NA>
## 484                     NA                     NA             <NA>
## 485                     NA                     NA             <NA>
## 486                     NA                     NA             <NA>
## 487                     NA                     NA             <NA>
## 488                     NA                     NA             <NA>
## 489                     NA                     NA             <NA>
## 490                     NA                     NA             <NA>
## 491                     NA                     NA             <NA>
## 492                     NA                     NA             <NA>
## 493                     NA                     NA             <NA>
## 494                     NA                     NA             <NA>
## 495                     NA                     NA             <NA>
## 496                     NA                     NA             <NA>
## 497                     NA                     NA             <NA>
## 498                     NA                     NA             <NA>
## 499                     NA                     NA             <NA>
## 500                     NA                     NA             <NA>
## 501                     NA                     NA             <NA>
## 502                     NA                     NA             <NA>
## 503                     NA                     NA             <NA>
## 504                     NA                     NA             <NA>
## 505                     NA                     NA             <NA>
## 506                     NA                     NA             <NA>
## 507                     NA                     NA             <NA>
## 508                     NA                     NA             <NA>
## 509                     NA                     NA             <NA>
## 510                     NA                     NA             <NA>
## 511                     NA                     NA             <NA>
## 512                     NA                     NA             <NA>
## 513                     NA                     NA             <NA>
## 514                     NA                     NA             <NA>
## 515                     NA                     NA             <NA>
## 516                     NA                     NA             <NA>
## 517                     NA                     NA             <NA>
## 518                     NA                     NA             <NA>
## 519                     NA                     NA             <NA>
## 520                     NA                     NA             <NA>
## 521                     NA                     NA             <NA>
## 522                     NA                     NA             <NA>
## 523                     NA                     NA             <NA>
## 524                     NA                     NA             <NA>
## 525                     NA                     NA             <NA>
## 526                     NA                     NA             <NA>
## 527                     NA                     NA             <NA>
## 528                     NA                     NA             <NA>
## 529                     NA                     NA             <NA>
## 530                     NA                     NA             <NA>
## 531                     NA                     NA             <NA>
## 532                     NA                     NA             <NA>
## 533                     NA                     NA             <NA>
## 534                     NA                     NA             <NA>
## 535                     NA                     NA             <NA>
## 536                     NA                     NA             <NA>
## 537                     NA                     NA             <NA>
## 538                     NA                     NA             <NA>
## 539                     NA                     NA             <NA>
## 540                     NA                     NA             <NA>
## 541                     NA                     NA             <NA>
## 542                     NA                     NA             <NA>
## 543                     NA                     NA             <NA>
## 544                     NA                     NA             <NA>
## 545                     NA                     NA             <NA>
## 546                     NA                     NA             <NA>
## 547                     NA                     NA             <NA>
## 548                     NA                     NA             <NA>
## 549                     NA                     NA             <NA>
## 550                     NA                     NA             <NA>
## 551                     NA                     NA             <NA>
## 552                     NA                     NA             <NA>
## 553                     NA                     NA             <NA>
## 554                     NA                     NA             <NA>
## 555                     NA                     NA             <NA>
## 556                     NA                     NA             <NA>
## 557                     NA                     NA             <NA>
## 558                     NA                     NA             <NA>
## 559                     NA                     NA             <NA>
## 560                     NA                     NA             <NA>
## 561                     NA                     NA             <NA>
## 562                     NA                     NA             <NA>
## 563                     NA                     NA             <NA>
## 564                     NA                     NA             <NA>
## 565                     NA                     NA             <NA>
## 566                     NA                     NA             <NA>
## 567                     NA                     NA             <NA>
## 568                     NA                     NA             <NA>
## 569                     NA                     NA             <NA>
## 570                     NA                     NA             <NA>
## 571                     NA                     NA             <NA>
## 572                     NA                     NA             <NA>
## 573                     NA                     NA             <NA>
## 574                     NA                     NA             <NA>
## 575                     NA                     NA             <NA>
## 576                     NA                     NA             <NA>
## 577                     NA                     NA             <NA>
## 578                     NA                     NA             <NA>
## 579                     NA                     NA             <NA>
## 580                     NA                     NA             <NA>
## 581                     NA                     NA             <NA>
## 582                     NA                     NA             <NA>
## 583                     NA                     NA             <NA>
## 584                     NA                     NA             <NA>
## 585                     NA                     NA             <NA>
## 586                     NA                     NA             <NA>
## 587                     NA                     NA             <NA>
## 588                     NA                     NA             <NA>
## 589                     NA                     NA             <NA>
## 590                     NA                     NA             <NA>
## 591                     NA                     NA             <NA>
## 592                     NA                     NA             <NA>
## 593                     NA                     NA             <NA>
## 594                     NA                     NA             <NA>
## 595                     NA                     NA             <NA>
## 596                     NA                     NA             <NA>
## 597                     NA                     NA             <NA>
## 598                     NA                     NA             <NA>
## 599                     NA                     NA             <NA>
## 600                     NA                     NA             <NA>
## 601                     NA                     NA             <NA>
## 602                     NA                     NA             <NA>
## 603                     NA                     NA             <NA>
## 604                     NA                     NA             <NA>
## 605                     NA                     NA             <NA>
## 606                     NA                     NA             <NA>
## 607                     NA                     NA             <NA>
## 608                     NA                     NA             <NA>
## 609                     NA                     NA             <NA>
## 610                     NA                     NA             <NA>
## 611                     NA                     NA             <NA>
## 612                     NA                     NA             <NA>
## 613                     NA                     NA             <NA>
## 614                     NA                     NA             <NA>
## 615                     NA                     NA             <NA>
## 616                     NA                     NA             <NA>
## 617                     NA                     NA             <NA>
## 618                     NA                     NA             <NA>
## 619                     NA                     NA             <NA>
## 620                     NA                     NA             <NA>
## 621                     NA                     NA             <NA>
## 622                     NA                     NA             <NA>
## 623                     NA                     NA             <NA>
## 624                     NA                     NA             <NA>
## 625                     NA                     NA             <NA>
## 626                     NA                     NA             <NA>
## 627                     NA                     NA             <NA>
## 628                     NA                     NA             <NA>
## 629                     NA                     NA             <NA>
## 630                     NA                     NA             <NA>
## 631                     NA                     NA             <NA>
## 632                     NA                     NA             <NA>
## 633                     NA                     NA             <NA>
## 634                     NA                     NA             <NA>
## 635                     NA                     NA             <NA>
## 636                     NA                     NA             <NA>
## 637                     NA                     NA             <NA>
## 638                     NA                     NA             <NA>
## 639                     NA                     NA             <NA>
## 640                     NA                     NA             <NA>
## 641                     NA                     NA             <NA>
## 642                     NA                     NA             <NA>
## 643                     NA                     NA             <NA>
## 644                     NA                     NA             <NA>
## 645                     NA                     NA             <NA>
## 646                     NA                     NA             <NA>
## 647                     NA                     NA             <NA>
## 648                     NA                     NA             <NA>
## 649                     NA                     NA             <NA>
## 650                     NA                     NA             <NA>
## 651                     NA                     NA             <NA>
## 652                     NA                     NA             <NA>
## 653                     NA                     NA             <NA>
## 654                     NA                     NA             <NA>
## 655                     NA                     NA             <NA>
## 656                     NA                     NA             <NA>
## 657                     NA                     NA             <NA>
## 658                     NA                     NA             <NA>
## 659                     NA                     NA             <NA>
## 660                     NA                     NA             <NA>
## 661                     NA                     NA             <NA>
## 662                     NA                     NA             <NA>
## 663                     NA                     NA             <NA>
## 664                     NA                     NA             <NA>
## 665                     NA                     NA             <NA>
## 666                     NA                     NA             <NA>
## 667                     NA                     NA             <NA>
## 668                     NA                     NA             <NA>
## 669                     NA                     NA             <NA>
## 670                     NA                     NA             <NA>
## 671                     NA                     NA             <NA>
## 672                     NA                     NA             <NA>
## 673                     NA                     NA             <NA>
## 674                     NA                     NA             <NA>
## 675                     NA                     NA             <NA>
## 676                     NA                     NA             <NA>
## 677                     NA                     NA             <NA>
## 678                     NA                     NA             <NA>
## 679                     NA                     NA             <NA>
## 680                     NA                     NA             <NA>
## 681                     NA                     NA             <NA>
## 682                     NA                     NA             <NA>
## 683                     NA                     NA             <NA>
## 684                     NA                     NA             <NA>
## 685                     NA                     NA             <NA>
## 686                     NA                     NA             <NA>
## 687                     NA                     NA             <NA>
## 688                     NA                     NA             <NA>
## 689                     NA                     NA             <NA>
## 690                     NA                     NA             <NA>
## 691                     NA                     NA             <NA>
## 692                     NA                     NA             <NA>
## 693                     NA                     NA             <NA>
## 694                     NA                     NA             <NA>
## 695                     NA                     NA             <NA>
## 696                     NA                     NA             <NA>
## 697                     NA                     NA             <NA>
## 698                     NA                     NA             <NA>
## 699                     NA                     NA             <NA>
## 700                     NA                     NA             <NA>
## 701                     NA                     NA             <NA>
## 702                     NA                     NA             <NA>
## 703                     NA                     NA             <NA>
## 704                     NA                     NA             <NA>
## 705                     NA                     NA             <NA>
## 706                     NA                     NA             <NA>
## 707                     NA                     NA             <NA>
## 708                     NA                     NA             <NA>
## 709                     NA                     NA             <NA>
## 710                     NA                     NA             <NA>
## 711                     NA                     NA             <NA>
## 712                     NA                     NA             <NA>
## 713                     NA                     NA             <NA>
## 714                     NA                     NA             <NA>
## 715                     NA                     NA             <NA>
## 716                     NA                     NA             <NA>
## 717                     NA                     NA             <NA>
## 718                     NA                     NA             <NA>
## 719                     NA                     NA             <NA>
## 720                     NA                     NA             <NA>
## 721                     NA                     NA             <NA>
## 722                     NA                     NA             <NA>
## 723                     NA                     NA             <NA>
## 724                     NA                     NA             <NA>
## 725                     NA                     NA             <NA>
## 726                     NA                     NA             <NA>
## 727                     NA                     NA             <NA>
## 728                     NA                     NA             <NA>
## 729                     NA                     NA             <NA>
## 730                     NA                     NA             <NA>
## 731                     NA                     NA             <NA>
## 732                     NA                     NA             <NA>
## 733                     NA                     NA             <NA>
## 734                     NA                     NA             <NA>
## 735                     NA                     NA             <NA>
## 736                     NA                     NA             <NA>
## 737                     NA                     NA             <NA>
## 738                     NA                     NA             <NA>
## 739                     NA                     NA             <NA>
## 740                     NA                     NA             <NA>
## 741                     NA                     NA             <NA>
## 742                     NA                     NA             <NA>
## 743                     NA                     NA             <NA>
## 744                     NA                     NA             <NA>
## 745                     NA                     NA             <NA>
## 746                     NA                     NA             <NA>
## 747                     NA                     NA             <NA>
## 748                     NA                     NA             <NA>
## 749                     NA                     NA             <NA>
## 750                     NA                     NA             <NA>
## 751                     NA                     NA             <NA>
## 752                     NA                     NA             <NA>
## 753                     NA                     NA             <NA>
## 754                     NA                     NA             <NA>
## 755                     NA                     NA             <NA>
## 756                     NA                     NA             <NA>
## 757                     NA                     NA             <NA>
## 758                     NA                     NA             <NA>
## 759                     NA                     NA             <NA>
## 760                     NA                     NA             <NA>
## 761                     NA                     NA             <NA>
## 762                     NA                     NA             <NA>
## 763                     NA                     NA             <NA>
## 764                     NA                     NA             <NA>
## 765                     NA                     NA             <NA>
## 766                     NA                     NA             <NA>
## 767                     NA                     NA             <NA>
## 768                     NA                     NA             <NA>
## 769                     NA                     NA             <NA>
## 770                     NA                     NA             <NA>
## 771                     NA                     NA             <NA>
## 772                     NA                     NA             <NA>
## 773                     NA                     NA             <NA>
## 774                     NA                     NA             <NA>
## 775                     NA                     NA             <NA>
## 776                     NA                     NA             <NA>
## 777                     NA                     NA             <NA>
## 778                     NA                     NA             <NA>
## 779                     NA                     NA             <NA>
## 780                     NA                     NA             <NA>
## 781                     NA                     NA             <NA>
## 782                     NA                     NA             <NA>
## 783                     NA                     NA             <NA>
## 784                     NA                     NA             <NA>
## 785                     NA                     NA             <NA>
## 786                     NA                     NA             <NA>
## 787                     NA                     NA             <NA>
## 788                     NA                     NA             <NA>
## 789                     NA                     NA             <NA>
## 790                     NA                     NA             <NA>
## 791                     NA                     NA             <NA>
## 792                     NA                     NA             <NA>
## 793                     NA                     NA             <NA>
## 794                     NA                     NA             <NA>
## 795                     NA                     NA             <NA>
## 796                     NA                     NA             <NA>
## 797                     NA                     NA             <NA>
## 798                     NA                     NA             <NA>
## 799                     NA                     NA             <NA>
## 800                     NA                     NA             <NA>
## 801                     NA                     NA             <NA>
## 802                     NA                     NA             <NA>
## 803                     NA                     NA             <NA>
## 804                     NA                     NA             <NA>
## 805                     NA                     NA             <NA>
## 806                     NA                     NA             <NA>
## 807                     NA                     NA             <NA>
## 808                     NA                     NA             <NA>
## 809                     NA                     NA             <NA>
## 810                     NA                     NA             <NA>
## 811                     NA                     NA             <NA>
## 812                     NA                     NA             <NA>
## 813                     NA                     NA             <NA>
## 814                     NA                     NA             <NA>
## 815                     NA                     NA             <NA>
## 816                     NA                     NA             <NA>
## 817                     NA                     NA             <NA>
## 818                     NA                     NA             <NA>
## 819                     NA                     NA             <NA>
## 820                     NA                     NA             <NA>
## 821                     NA                     NA             <NA>
## 822                     NA                     NA             <NA>
## 823                     NA                     NA             <NA>
## 824                     NA                     NA             <NA>
## 825                     NA                     NA             <NA>
## 826                     NA                     NA             <NA>
## 827                     NA                     NA             <NA>
## 828                     NA                     NA             <NA>
## 829                     NA                     NA             <NA>
## 830                     NA                     NA             <NA>
## 831                     NA                     NA             <NA>
## 832                     NA                     NA             <NA>
## 833                     NA                     NA             <NA>
## 834                     NA                     NA             <NA>
## 835                     NA                     NA             <NA>
## 836                     NA                     NA             <NA>
## 837                     NA                     NA             <NA>
## 838                     NA                     NA             <NA>
## 839                     NA                     NA             <NA>
## 840                     NA                     NA             <NA>
## 841                     NA                     NA             <NA>
## 842                     NA                     NA             <NA>
## 843                     NA                     NA             <NA>
## 844                     NA                     NA             <NA>
## 845                     NA                     NA             <NA>
## 846                     NA                     NA             <NA>
## 847                     NA                     NA             <NA>
## 848                     NA                     NA             <NA>
## 849                     NA                     NA             <NA>
## 850                     NA                     NA             <NA>
## 851                     NA                     NA             <NA>
## 852                     NA                     NA             <NA>
## 853                     NA                     NA             <NA>
## 854                     NA                     NA             <NA>
## 855                     NA                     NA             <NA>
## 856                     NA                     NA             <NA>
## 857                     NA                     NA             <NA>
## 858                     NA                     NA             <NA>
## 859                     NA                     NA             <NA>
## 860                     NA                     NA             <NA>
## 861                     NA                     NA             <NA>
## 862                     NA                     NA             <NA>
## 863                     NA                     NA             <NA>
## 864                     NA                     NA             <NA>
## 865                     NA                     NA             <NA>
## 866                     NA                     NA             <NA>
## 867                     NA                     NA             <NA>
## 868                     NA                     NA             <NA>
## 869                     NA                     NA             <NA>
## 870                     NA                     NA             <NA>
## 871                     NA                     NA             <NA>
## 872                     NA                     NA             <NA>
## 873                     NA                     NA             <NA>
## 874                     NA                     NA             <NA>
## 875                     NA                     NA             <NA>
## 876                     NA                     NA             <NA>
## 877                     NA                     NA             <NA>
## 878                     NA                     NA             <NA>
## 879                     NA                     NA             <NA>
## 880                     NA                     NA             <NA>
## 881                     NA                     NA             <NA>
## 882                     NA                     NA             <NA>
## 883                     NA                     NA             <NA>
## 884                     NA                     NA             <NA>
## 885                     NA                     NA             <NA>
## 886                     NA                     NA             <NA>
## 887                     NA                     NA             <NA>
## 888                     NA                     NA             <NA>
## 889                     NA                     NA             <NA>
## 890                     NA                     NA             <NA>
## 891                     NA                     NA             <NA>
## 892                     NA                     NA             <NA>
## 893                     NA                     NA             <NA>
## 894                     NA                     NA             <NA>
## 895                     NA                     NA             <NA>
## 896                     NA                     NA             <NA>
## 897                     NA                     NA             <NA>
## 898                     NA                     NA             <NA>
## 899                     NA                     NA             <NA>
## 900                     NA                     NA             <NA>
## 901                     NA                     NA             <NA>
## 902                     NA                     NA             <NA>
## 903                     NA                     NA             <NA>
## 904                     NA                     NA             <NA>
## 905                     NA                     NA             <NA>
## 906                     NA                     NA             <NA>
## 907                     NA                     NA             <NA>
## 908                     NA                     NA             <NA>
## 909                     NA                     NA             <NA>
## 910                     NA                     NA             <NA>
## 911                     NA                     NA             <NA>
## 912                     NA                     NA             <NA>
## 913                     NA                     NA             <NA>
## 914                     NA                     NA             <NA>
## 915                     NA                     NA             <NA>
## 916                     NA                     NA             <NA>
## 917                     NA                     NA             <NA>
## 918                     NA                     NA             <NA>
## 919                     NA                     NA             <NA>
## 920                     NA                     NA             <NA>
## 921                     NA                     NA             <NA>
## 922                     NA                     NA             <NA>
## 923                     NA                     NA             <NA>
## 924                     NA                     NA             <NA>
## 925                     NA                     NA             <NA>
## 926                     NA                     NA             <NA>
## 927                     NA                     NA             <NA>
## 928                     NA                     NA             <NA>
## 929                     NA                     NA             <NA>
## 930                     NA                     NA             <NA>
## 931                     NA                     NA             <NA>
## 932                     NA                     NA             <NA>
## 933                     NA                     NA             <NA>
## 934                     NA                     NA             <NA>
## 935                     NA                     NA             <NA>
## 936                     NA                     NA             <NA>
## 937                     NA                     NA             <NA>
## 938                     NA                     NA             <NA>
## 939                     NA                     NA             <NA>
## 940                     NA                     NA             <NA>
## 941                     NA                     NA             <NA>
## 942                     NA                     NA             <NA>
## 943                     NA                     NA             <NA>
## 944                     NA                     NA             <NA>
## 945                     NA                     NA             <NA>
## 946                     NA                     NA             <NA>
## 947                     NA                     NA             <NA>
## 948                     NA                     NA             <NA>
## 949                     NA                     NA             <NA>
## 950                     NA                     NA             <NA>
## 951                     NA                     NA             <NA>
## 952                     NA                     NA             <NA>
## 953                     NA                     NA             <NA>
## 954                     NA                     NA             <NA>
## 955                     NA                     NA             <NA>
## 956                     NA                     NA             <NA>
## 957                     NA                     NA             <NA>
## 958                     NA                     NA             <NA>
## 959                     NA                     NA             <NA>
## 960                     NA                     NA             <NA>
## 961                     NA                     NA             <NA>
## 962                     NA                     NA             <NA>
## 963                     NA                     NA             <NA>
## 964                     NA                     NA             <NA>
## 965                     NA                     NA             <NA>
## 966                     NA                     NA             <NA>
## 967                     NA                     NA             <NA>
## 968                     NA                     NA             <NA>
## 969                     NA                     NA             <NA>
## 970                     NA                     NA             <NA>
## 971                     NA                     NA             <NA>
## 972                     NA                     NA             <NA>
## 973                     NA                     NA             <NA>
## 974                     NA                     NA             <NA>
## 975                     NA                     NA             <NA>
## 976                     NA                     NA             <NA>
## 977                     NA                     NA             <NA>
## 978                     NA                     NA             <NA>
## 979                     NA                     NA             <NA>
## 980                     NA                     NA             <NA>
## 981                     NA                     NA             <NA>
## 982                     NA                     NA             <NA>
## 983                     NA                     NA             <NA>
## 984                     NA                     NA             <NA>
## 985                     NA                     NA             <NA>
## 986                     NA                     NA             <NA>
## 987                     NA                     NA             <NA>
## 988                     NA                     NA             <NA>
## 989                     NA                     NA             <NA>
## 990                     NA                     NA             <NA>
## 991                     NA                     NA             <NA>
## 992                     NA                     NA             <NA>
## 993                     NA                     NA             <NA>
## 994                     NA                     NA             <NA>
## 995                     NA                     NA             <NA>
## 996                     NA                     NA             <NA>
## 997                     NA                     NA             <NA>
## 998                     NA                     NA             <NA>
## 999                     NA                     NA             <NA>
## 1000                    NA                     NA             <NA>
## 1001                    NA                     NA             <NA>
## 1002                    NA                     NA             <NA>
## 1003                    NA                     NA             <NA>
## 1004                    NA                     NA             <NA>
## 1005                    NA                     NA             <NA>
## 1006                    NA                     NA             <NA>
## 1007                    NA                     NA             <NA>
## 1008                    NA                     NA             <NA>
## 1009                    NA                     NA             <NA>
## 1010                    NA                     NA             <NA>
## 1011                    NA                     NA             <NA>
## 1012                    NA                     NA             <NA>
## 1013                    NA                     NA             <NA>
## 1014                    NA                     NA             <NA>
## 1015                    NA                     NA             <NA>
## 1016                    NA                     NA             <NA>
## 1017                    NA                     NA             <NA>
## 1018                    NA                     NA             <NA>
## 1019                    NA                     NA             <NA>
## 1020                    NA                     NA             <NA>
## 1021                    NA                     NA             <NA>
## 1022                    NA                     NA             <NA>
## 1023                    NA                     NA             <NA>
## 1024                    NA                     NA             <NA>
## 1025                    NA                     NA             <NA>
## 1026                    NA                     NA             <NA>
## 1027                    NA                     NA             <NA>
## 1028                    NA                     NA             <NA>
## 1029                    NA                     NA             <NA>
## 1030                    NA                     NA             <NA>
## 1031                    NA                     NA             <NA>
## 1032                    NA                     NA             <NA>
## 1033                    NA                     NA             <NA>
## 1034                    NA                     NA             <NA>
## 1035                    NA                     NA             <NA>
## 1036                    NA                     NA             <NA>
## 1037                    NA                     NA             <NA>
## 1038                    NA                     NA             <NA>
## 1039                    NA                     NA             <NA>
## 1040                    NA                     NA             <NA>
## 1041                    NA                     NA             <NA>
## 1042                    NA                     NA             <NA>
## 1043                    NA                     NA             <NA>
## 1044                    NA                     NA             <NA>
## 1045                    NA                     NA             <NA>
## 1046                    NA                     NA             <NA>
## 1047                    NA                     NA             <NA>
## 1048                    NA                     NA             <NA>
## 1049                    NA                     NA             <NA>
## 1050                    NA                     NA             <NA>
## 1051                    NA                     NA             <NA>
## 1052                    NA                     NA             <NA>
## 1053                    NA                     NA             <NA>
## 1054                    NA                     NA             <NA>
## 1055                    NA                     NA             <NA>
## 1056                    NA                     NA             <NA>
## 1057                    NA                     NA             <NA>
## 1058                    NA                     NA             <NA>
## 1059                    NA                     NA             <NA>
## 1060                    NA                     NA             <NA>
## 1061                    NA                     NA             <NA>
## 1062                    NA                     NA             <NA>
## 1063                    NA                     NA             <NA>
## 1064                    NA                     NA             <NA>
## 1065                    NA                     NA             <NA>
## 1066                    NA                     NA             <NA>
## 1067                    NA                     NA             <NA>
## 1068                    NA                     NA             <NA>
## 1069                    NA                     NA             <NA>
## 1070                    NA                     NA             <NA>
## 1071                    NA                     NA             <NA>
## 1072                    NA                     NA             <NA>
## 1073                    NA                     NA             <NA>
## 1074                    NA                     NA             <NA>
## 1075                    NA                     NA             <NA>
## 1076                    NA                     NA             <NA>
## 1077                    NA                     NA             <NA>
## 1078                    NA                     NA             <NA>
## 1079                    NA                     NA             <NA>
## 1080                    NA                     NA             <NA>
## 1081                    NA                     NA             <NA>
## 1082                    NA                     NA             <NA>
## 1083                    NA                     NA             <NA>
## 1084                    NA                     NA             <NA>
## 1085                    NA                     NA             <NA>
## 1086                    NA                     NA             <NA>
## 1087                    NA                     NA             <NA>
## 1088                    NA                     NA             <NA>
## 1089                    NA                     NA             <NA>
## 1090                    NA                     NA             <NA>
## 1091                    NA                     NA             <NA>
## 1092                    NA                     NA             <NA>
## 1093                    NA                     NA             <NA>
## 1094                    NA                     NA             <NA>
## 1095                    NA                     NA             <NA>
## 1096                    NA                     NA             <NA>
## 1097                    NA                     NA             <NA>
## 1098                    NA                     NA             <NA>
## 1099                    NA                     NA             <NA>
## 1100                    NA                     NA             <NA>
## 1101                    NA                     NA             <NA>
## 1102                    NA                     NA             <NA>
## 1103                    NA                     NA             <NA>
## 1104                    NA                     NA             <NA>
## 1105                    NA                     NA             <NA>
## 1106                    NA                     NA             <NA>
## 1107                    NA                     NA             <NA>
## 1108                    NA                     NA             <NA>
## 1109                    NA                     NA             <NA>
## 1110                    NA                     NA             <NA>
## 1111                    NA                     NA             <NA>
##      retweet_description retweet_verified
## 1                   <NA>               NA
## 2                   <NA>               NA
## 3                   <NA>               NA
## 4                   <NA>               NA
## 5                   <NA>               NA
## 6                   <NA>               NA
## 7                   <NA>               NA
## 8                   <NA>               NA
## 9                   <NA>               NA
## 10                  <NA>               NA
## 11                  <NA>               NA
## 12                  <NA>               NA
## 13                  <NA>               NA
## 14                  <NA>               NA
## 15                  <NA>               NA
## 16                  <NA>               NA
## 17                  <NA>               NA
## 18                  <NA>               NA
## 19                  <NA>               NA
## 20                  <NA>               NA
## 21                  <NA>               NA
## 22                  <NA>               NA
## 23                  <NA>               NA
## 24                  <NA>               NA
## 25                  <NA>               NA
## 26                  <NA>               NA
## 27                  <NA>               NA
## 28                  <NA>               NA
## 29                  <NA>               NA
## 30                  <NA>               NA
## 31                  <NA>               NA
## 32                  <NA>               NA
## 33                  <NA>               NA
## 34                  <NA>               NA
## 35                  <NA>               NA
## 36                  <NA>               NA
## 37                  <NA>               NA
## 38                  <NA>               NA
## 39                  <NA>               NA
## 40                  <NA>               NA
## 41                  <NA>               NA
## 42                  <NA>               NA
## 43                  <NA>               NA
## 44                  <NA>               NA
## 45                  <NA>               NA
## 46                  <NA>               NA
## 47                  <NA>               NA
## 48                  <NA>               NA
## 49                  <NA>               NA
## 50                  <NA>               NA
## 51                  <NA>               NA
## 52                  <NA>               NA
## 53                  <NA>               NA
## 54                  <NA>               NA
## 55                  <NA>               NA
## 56                  <NA>               NA
## 57                  <NA>               NA
## 58                  <NA>               NA
## 59                  <NA>               NA
## 60                  <NA>               NA
## 61                  <NA>               NA
## 62                  <NA>               NA
## 63                  <NA>               NA
## 64                  <NA>               NA
## 65                  <NA>               NA
## 66                  <NA>               NA
## 67                  <NA>               NA
## 68                  <NA>               NA
## 69                  <NA>               NA
## 70                  <NA>               NA
## 71                  <NA>               NA
## 72                  <NA>               NA
## 73                  <NA>               NA
## 74                  <NA>               NA
## 75                  <NA>               NA
## 76                  <NA>               NA
## 77                  <NA>               NA
## 78                  <NA>               NA
## 79                  <NA>               NA
## 80                  <NA>               NA
## 81                  <NA>               NA
## 82                  <NA>               NA
## 83                  <NA>               NA
## 84                  <NA>               NA
## 85                  <NA>               NA
## 86                  <NA>               NA
## 87                  <NA>               NA
## 88                  <NA>               NA
## 89                  <NA>               NA
## 90                  <NA>               NA
## 91                  <NA>               NA
## 92                  <NA>               NA
## 93                  <NA>               NA
## 94                  <NA>               NA
## 95                  <NA>               NA
## 96                  <NA>               NA
## 97                  <NA>               NA
## 98                  <NA>               NA
## 99                  <NA>               NA
## 100                 <NA>               NA
## 101                 <NA>               NA
## 102                 <NA>               NA
## 103                 <NA>               NA
## 104                 <NA>               NA
## 105                 <NA>               NA
## 106                 <NA>               NA
## 107                 <NA>               NA
## 108                 <NA>               NA
## 109                 <NA>               NA
## 110                 <NA>               NA
## 111                 <NA>               NA
## 112                 <NA>               NA
## 113                 <NA>               NA
## 114                 <NA>               NA
## 115                 <NA>               NA
## 116                 <NA>               NA
## 117                 <NA>               NA
## 118                 <NA>               NA
## 119                 <NA>               NA
## 120                 <NA>               NA
## 121                 <NA>               NA
## 122                 <NA>               NA
## 123                 <NA>               NA
## 124                 <NA>               NA
## 125                 <NA>               NA
## 126                 <NA>               NA
## 127                 <NA>               NA
## 128                 <NA>               NA
## 129                 <NA>               NA
## 130                 <NA>               NA
## 131                 <NA>               NA
## 132                 <NA>               NA
## 133                 <NA>               NA
## 134                 <NA>               NA
## 135                 <NA>               NA
## 136                 <NA>               NA
## 137                 <NA>               NA
## 138                 <NA>               NA
## 139                 <NA>               NA
## 140                 <NA>               NA
## 141                 <NA>               NA
## 142                 <NA>               NA
## 143                 <NA>               NA
## 144                 <NA>               NA
## 145                 <NA>               NA
## 146                 <NA>               NA
## 147                 <NA>               NA
## 148                 <NA>               NA
## 149                 <NA>               NA
## 150                 <NA>               NA
## 151                 <NA>               NA
## 152                 <NA>               NA
## 153                 <NA>               NA
## 154                 <NA>               NA
## 155                 <NA>               NA
## 156                 <NA>               NA
## 157                 <NA>               NA
## 158                 <NA>               NA
## 159                 <NA>               NA
## 160                 <NA>               NA
## 161                 <NA>               NA
## 162                 <NA>               NA
## 163                 <NA>               NA
## 164                 <NA>               NA
## 165                 <NA>               NA
## 166                 <NA>               NA
## 167                 <NA>               NA
## 168                 <NA>               NA
## 169                 <NA>               NA
## 170                 <NA>               NA
## 171                 <NA>               NA
## 172                 <NA>               NA
## 173                 <NA>               NA
## 174                 <NA>               NA
## 175                 <NA>               NA
## 176                 <NA>               NA
## 177                 <NA>               NA
## 178                 <NA>               NA
## 179                 <NA>               NA
## 180                 <NA>               NA
## 181                 <NA>               NA
## 182                 <NA>               NA
## 183                 <NA>               NA
## 184                 <NA>               NA
## 185                 <NA>               NA
## 186                 <NA>               NA
## 187                 <NA>               NA
## 188                 <NA>               NA
## 189                 <NA>               NA
## 190                 <NA>               NA
## 191                 <NA>               NA
## 192                 <NA>               NA
## 193                 <NA>               NA
## 194                 <NA>               NA
## 195                 <NA>               NA
## 196                 <NA>               NA
## 197                 <NA>               NA
## 198                 <NA>               NA
## 199                 <NA>               NA
## 200                 <NA>               NA
## 201                 <NA>               NA
## 202                 <NA>               NA
## 203                 <NA>               NA
## 204                 <NA>               NA
## 205                 <NA>               NA
## 206                 <NA>               NA
## 207                 <NA>               NA
## 208                 <NA>               NA
## 209                 <NA>               NA
## 210                 <NA>               NA
## 211                 <NA>               NA
## 212                 <NA>               NA
## 213                 <NA>               NA
## 214                 <NA>               NA
## 215                 <NA>               NA
## 216                 <NA>               NA
## 217                 <NA>               NA
## 218                 <NA>               NA
## 219                 <NA>               NA
## 220                 <NA>               NA
## 221                 <NA>               NA
## 222                 <NA>               NA
## 223                 <NA>               NA
## 224                 <NA>               NA
## 225                 <NA>               NA
## 226                 <NA>               NA
## 227                 <NA>               NA
## 228                 <NA>               NA
## 229                 <NA>               NA
## 230                 <NA>               NA
## 231                 <NA>               NA
## 232                 <NA>               NA
## 233                 <NA>               NA
## 234                 <NA>               NA
## 235                 <NA>               NA
## 236                 <NA>               NA
## 237                 <NA>               NA
## 238                 <NA>               NA
## 239                 <NA>               NA
## 240                 <NA>               NA
## 241                 <NA>               NA
## 242                 <NA>               NA
## 243                 <NA>               NA
## 244                 <NA>               NA
## 245                 <NA>               NA
## 246                 <NA>               NA
## 247                 <NA>               NA
## 248                 <NA>               NA
## 249                 <NA>               NA
## 250                 <NA>               NA
## 251                 <NA>               NA
## 252                 <NA>               NA
## 253                 <NA>               NA
## 254                 <NA>               NA
## 255                 <NA>               NA
## 256                 <NA>               NA
## 257                 <NA>               NA
## 258                 <NA>               NA
## 259                 <NA>               NA
## 260                 <NA>               NA
## 261                 <NA>               NA
## 262                 <NA>               NA
## 263                 <NA>               NA
## 264                 <NA>               NA
## 265                 <NA>               NA
## 266                 <NA>               NA
## 267                 <NA>               NA
## 268                 <NA>               NA
## 269                 <NA>               NA
## 270                 <NA>               NA
## 271                 <NA>               NA
## 272                 <NA>               NA
## 273                 <NA>               NA
## 274                 <NA>               NA
## 275                 <NA>               NA
## 276                 <NA>               NA
## 277                 <NA>               NA
## 278                 <NA>               NA
## 279                 <NA>               NA
## 280                 <NA>               NA
## 281                 <NA>               NA
## 282                 <NA>               NA
## 283                 <NA>               NA
## 284                 <NA>               NA
## 285                 <NA>               NA
## 286                 <NA>               NA
## 287                 <NA>               NA
## 288                 <NA>               NA
## 289                 <NA>               NA
## 290                 <NA>               NA
## 291                 <NA>               NA
## 292                 <NA>               NA
## 293                 <NA>               NA
## 294                 <NA>               NA
## 295                 <NA>               NA
## 296                 <NA>               NA
## 297                 <NA>               NA
## 298                 <NA>               NA
## 299                 <NA>               NA
## 300                 <NA>               NA
## 301                 <NA>               NA
## 302                 <NA>               NA
## 303                 <NA>               NA
## 304                 <NA>               NA
## 305                 <NA>               NA
## 306                 <NA>               NA
## 307                 <NA>               NA
## 308                 <NA>               NA
## 309                 <NA>               NA
## 310                 <NA>               NA
## 311                 <NA>               NA
## 312                 <NA>               NA
## 313                 <NA>               NA
## 314                 <NA>               NA
## 315                 <NA>               NA
## 316                 <NA>               NA
## 317                 <NA>               NA
## 318                 <NA>               NA
## 319                 <NA>               NA
## 320                 <NA>               NA
## 321                 <NA>               NA
## 322                 <NA>               NA
## 323                 <NA>               NA
## 324                 <NA>               NA
## 325                 <NA>               NA
## 326                 <NA>               NA
## 327                 <NA>               NA
## 328                 <NA>               NA
## 329                 <NA>               NA
## 330                 <NA>               NA
## 331                 <NA>               NA
## 332                 <NA>               NA
## 333                 <NA>               NA
## 334                 <NA>               NA
## 335                 <NA>               NA
## 336                 <NA>               NA
## 337                 <NA>               NA
## 338                 <NA>               NA
## 339                 <NA>               NA
## 340                 <NA>               NA
## 341                 <NA>               NA
## 342                 <NA>               NA
## 343                 <NA>               NA
## 344                 <NA>               NA
## 345                 <NA>               NA
## 346                 <NA>               NA
## 347                 <NA>               NA
## 348                 <NA>               NA
## 349                 <NA>               NA
## 350                 <NA>               NA
## 351                 <NA>               NA
## 352                 <NA>               NA
## 353                 <NA>               NA
## 354                 <NA>               NA
## 355                 <NA>               NA
## 356                 <NA>               NA
## 357                 <NA>               NA
## 358                 <NA>               NA
## 359                 <NA>               NA
## 360                 <NA>               NA
## 361                 <NA>               NA
## 362                 <NA>               NA
## 363                 <NA>               NA
## 364                 <NA>               NA
## 365                 <NA>               NA
## 366                 <NA>               NA
## 367                 <NA>               NA
## 368                 <NA>               NA
## 369                 <NA>               NA
## 370                 <NA>               NA
## 371                 <NA>               NA
## 372                 <NA>               NA
## 373                 <NA>               NA
## 374                 <NA>               NA
## 375                 <NA>               NA
## 376                 <NA>               NA
## 377                 <NA>               NA
## 378                 <NA>               NA
## 379                 <NA>               NA
## 380                 <NA>               NA
## 381                 <NA>               NA
## 382                 <NA>               NA
## 383                 <NA>               NA
## 384                 <NA>               NA
## 385                 <NA>               NA
## 386                 <NA>               NA
## 387                 <NA>               NA
## 388                 <NA>               NA
## 389                 <NA>               NA
## 390                 <NA>               NA
## 391                 <NA>               NA
## 392                 <NA>               NA
## 393                 <NA>               NA
## 394                 <NA>               NA
## 395                 <NA>               NA
## 396                 <NA>               NA
## 397                 <NA>               NA
## 398                 <NA>               NA
## 399                 <NA>               NA
## 400                 <NA>               NA
## 401                 <NA>               NA
## 402                 <NA>               NA
## 403                 <NA>               NA
## 404                 <NA>               NA
## 405                 <NA>               NA
## 406                 <NA>               NA
## 407                 <NA>               NA
## 408                 <NA>               NA
## 409                 <NA>               NA
## 410                 <NA>               NA
## 411                 <NA>               NA
## 412                 <NA>               NA
## 413                 <NA>               NA
## 414                 <NA>               NA
## 415                 <NA>               NA
## 416                 <NA>               NA
## 417                 <NA>               NA
## 418                 <NA>               NA
## 419                 <NA>               NA
## 420                 <NA>               NA
## 421                 <NA>               NA
## 422                 <NA>               NA
## 423                 <NA>               NA
## 424                 <NA>               NA
## 425                 <NA>               NA
## 426                 <NA>               NA
## 427                 <NA>               NA
## 428                 <NA>               NA
## 429                 <NA>               NA
## 430                 <NA>               NA
## 431                 <NA>               NA
## 432                 <NA>               NA
## 433                 <NA>               NA
## 434                 <NA>               NA
## 435                 <NA>               NA
## 436                 <NA>               NA
## 437                 <NA>               NA
## 438                 <NA>               NA
## 439                 <NA>               NA
## 440                 <NA>               NA
## 441                 <NA>               NA
## 442                 <NA>               NA
## 443                 <NA>               NA
## 444                 <NA>               NA
## 445                 <NA>               NA
## 446                 <NA>               NA
## 447                 <NA>               NA
## 448                 <NA>               NA
## 449                 <NA>               NA
## 450                 <NA>               NA
## 451                 <NA>               NA
## 452                 <NA>               NA
## 453                 <NA>               NA
## 454                 <NA>               NA
## 455                 <NA>               NA
## 456                 <NA>               NA
## 457                 <NA>               NA
## 458                 <NA>               NA
## 459                 <NA>               NA
## 460                 <NA>               NA
## 461                 <NA>               NA
## 462                 <NA>               NA
## 463                 <NA>               NA
## 464                 <NA>               NA
## 465                 <NA>               NA
## 466                 <NA>               NA
## 467                 <NA>               NA
## 468                 <NA>               NA
## 469                 <NA>               NA
## 470                 <NA>               NA
## 471                 <NA>               NA
## 472                 <NA>               NA
## 473                 <NA>               NA
## 474                 <NA>               NA
## 475                 <NA>               NA
## 476                 <NA>               NA
## 477                 <NA>               NA
## 478                 <NA>               NA
## 479                 <NA>               NA
## 480                 <NA>               NA
## 481                 <NA>               NA
## 482                 <NA>               NA
## 483                 <NA>               NA
## 484                 <NA>               NA
## 485                 <NA>               NA
## 486                 <NA>               NA
## 487                 <NA>               NA
## 488                 <NA>               NA
## 489                 <NA>               NA
## 490                 <NA>               NA
## 491                 <NA>               NA
## 492                 <NA>               NA
## 493                 <NA>               NA
## 494                 <NA>               NA
## 495                 <NA>               NA
## 496                 <NA>               NA
## 497                 <NA>               NA
## 498                 <NA>               NA
## 499                 <NA>               NA
## 500                 <NA>               NA
## 501                 <NA>               NA
## 502                 <NA>               NA
## 503                 <NA>               NA
## 504                 <NA>               NA
## 505                 <NA>               NA
## 506                 <NA>               NA
## 507                 <NA>               NA
## 508                 <NA>               NA
## 509                 <NA>               NA
## 510                 <NA>               NA
## 511                 <NA>               NA
## 512                 <NA>               NA
## 513                 <NA>               NA
## 514                 <NA>               NA
## 515                 <NA>               NA
## 516                 <NA>               NA
## 517                 <NA>               NA
## 518                 <NA>               NA
## 519                 <NA>               NA
## 520                 <NA>               NA
## 521                 <NA>               NA
## 522                 <NA>               NA
## 523                 <NA>               NA
## 524                 <NA>               NA
## 525                 <NA>               NA
## 526                 <NA>               NA
## 527                 <NA>               NA
## 528                 <NA>               NA
## 529                 <NA>               NA
## 530                 <NA>               NA
## 531                 <NA>               NA
## 532                 <NA>               NA
## 533                 <NA>               NA
## 534                 <NA>               NA
## 535                 <NA>               NA
## 536                 <NA>               NA
## 537                 <NA>               NA
## 538                 <NA>               NA
## 539                 <NA>               NA
## 540                 <NA>               NA
## 541                 <NA>               NA
## 542                 <NA>               NA
## 543                 <NA>               NA
## 544                 <NA>               NA
## 545                 <NA>               NA
## 546                 <NA>               NA
## 547                 <NA>               NA
## 548                 <NA>               NA
## 549                 <NA>               NA
## 550                 <NA>               NA
## 551                 <NA>               NA
## 552                 <NA>               NA
## 553                 <NA>               NA
## 554                 <NA>               NA
## 555                 <NA>               NA
## 556                 <NA>               NA
## 557                 <NA>               NA
## 558                 <NA>               NA
## 559                 <NA>               NA
## 560                 <NA>               NA
## 561                 <NA>               NA
## 562                 <NA>               NA
## 563                 <NA>               NA
## 564                 <NA>               NA
## 565                 <NA>               NA
## 566                 <NA>               NA
## 567                 <NA>               NA
## 568                 <NA>               NA
## 569                 <NA>               NA
## 570                 <NA>               NA
## 571                 <NA>               NA
## 572                 <NA>               NA
## 573                 <NA>               NA
## 574                 <NA>               NA
## 575                 <NA>               NA
## 576                 <NA>               NA
## 577                 <NA>               NA
## 578                 <NA>               NA
## 579                 <NA>               NA
## 580                 <NA>               NA
## 581                 <NA>               NA
## 582                 <NA>               NA
## 583                 <NA>               NA
## 584                 <NA>               NA
## 585                 <NA>               NA
## 586                 <NA>               NA
## 587                 <NA>               NA
## 588                 <NA>               NA
## 589                 <NA>               NA
## 590                 <NA>               NA
## 591                 <NA>               NA
## 592                 <NA>               NA
## 593                 <NA>               NA
## 594                 <NA>               NA
## 595                 <NA>               NA
## 596                 <NA>               NA
## 597                 <NA>               NA
## 598                 <NA>               NA
## 599                 <NA>               NA
## 600                 <NA>               NA
## 601                 <NA>               NA
## 602                 <NA>               NA
## 603                 <NA>               NA
## 604                 <NA>               NA
## 605                 <NA>               NA
## 606                 <NA>               NA
## 607                 <NA>               NA
## 608                 <NA>               NA
## 609                 <NA>               NA
## 610                 <NA>               NA
## 611                 <NA>               NA
## 612                 <NA>               NA
## 613                 <NA>               NA
## 614                 <NA>               NA
## 615                 <NA>               NA
## 616                 <NA>               NA
## 617                 <NA>               NA
## 618                 <NA>               NA
## 619                 <NA>               NA
## 620                 <NA>               NA
## 621                 <NA>               NA
## 622                 <NA>               NA
## 623                 <NA>               NA
## 624                 <NA>               NA
## 625                 <NA>               NA
## 626                 <NA>               NA
## 627                 <NA>               NA
## 628                 <NA>               NA
## 629                 <NA>               NA
## 630                 <NA>               NA
## 631                 <NA>               NA
## 632                 <NA>               NA
## 633                 <NA>               NA
## 634                 <NA>               NA
## 635                 <NA>               NA
## 636                 <NA>               NA
## 637                 <NA>               NA
## 638                 <NA>               NA
## 639                 <NA>               NA
## 640                 <NA>               NA
## 641                 <NA>               NA
## 642                 <NA>               NA
## 643                 <NA>               NA
## 644                 <NA>               NA
## 645                 <NA>               NA
## 646                 <NA>               NA
## 647                 <NA>               NA
## 648                 <NA>               NA
## 649                 <NA>               NA
## 650                 <NA>               NA
## 651                 <NA>               NA
## 652                 <NA>               NA
## 653                 <NA>               NA
## 654                 <NA>               NA
## 655                 <NA>               NA
## 656                 <NA>               NA
## 657                 <NA>               NA
## 658                 <NA>               NA
## 659                 <NA>               NA
## 660                 <NA>               NA
## 661                 <NA>               NA
## 662                 <NA>               NA
## 663                 <NA>               NA
## 664                 <NA>               NA
## 665                 <NA>               NA
## 666                 <NA>               NA
## 667                 <NA>               NA
## 668                 <NA>               NA
## 669                 <NA>               NA
## 670                 <NA>               NA
## 671                 <NA>               NA
## 672                 <NA>               NA
## 673                 <NA>               NA
## 674                 <NA>               NA
## 675                 <NA>               NA
## 676                 <NA>               NA
## 677                 <NA>               NA
## 678                 <NA>               NA
## 679                 <NA>               NA
## 680                 <NA>               NA
## 681                 <NA>               NA
## 682                 <NA>               NA
## 683                 <NA>               NA
## 684                 <NA>               NA
## 685                 <NA>               NA
## 686                 <NA>               NA
## 687                 <NA>               NA
## 688                 <NA>               NA
## 689                 <NA>               NA
## 690                 <NA>               NA
## 691                 <NA>               NA
## 692                 <NA>               NA
## 693                 <NA>               NA
## 694                 <NA>               NA
## 695                 <NA>               NA
## 696                 <NA>               NA
## 697                 <NA>               NA
## 698                 <NA>               NA
## 699                 <NA>               NA
## 700                 <NA>               NA
## 701                 <NA>               NA
## 702                 <NA>               NA
## 703                 <NA>               NA
## 704                 <NA>               NA
## 705                 <NA>               NA
## 706                 <NA>               NA
## 707                 <NA>               NA
## 708                 <NA>               NA
## 709                 <NA>               NA
## 710                 <NA>               NA
## 711                 <NA>               NA
## 712                 <NA>               NA
## 713                 <NA>               NA
## 714                 <NA>               NA
## 715                 <NA>               NA
## 716                 <NA>               NA
## 717                 <NA>               NA
## 718                 <NA>               NA
## 719                 <NA>               NA
## 720                 <NA>               NA
## 721                 <NA>               NA
## 722                 <NA>               NA
## 723                 <NA>               NA
## 724                 <NA>               NA
## 725                 <NA>               NA
## 726                 <NA>               NA
## 727                 <NA>               NA
## 728                 <NA>               NA
## 729                 <NA>               NA
## 730                 <NA>               NA
## 731                 <NA>               NA
## 732                 <NA>               NA
## 733                 <NA>               NA
## 734                 <NA>               NA
## 735                 <NA>               NA
## 736                 <NA>               NA
## 737                 <NA>               NA
## 738                 <NA>               NA
## 739                 <NA>               NA
## 740                 <NA>               NA
## 741                 <NA>               NA
## 742                 <NA>               NA
## 743                 <NA>               NA
## 744                 <NA>               NA
## 745                 <NA>               NA
## 746                 <NA>               NA
## 747                 <NA>               NA
## 748                 <NA>               NA
## 749                 <NA>               NA
## 750                 <NA>               NA
## 751                 <NA>               NA
## 752                 <NA>               NA
## 753                 <NA>               NA
## 754                 <NA>               NA
## 755                 <NA>               NA
## 756                 <NA>               NA
## 757                 <NA>               NA
## 758                 <NA>               NA
## 759                 <NA>               NA
## 760                 <NA>               NA
## 761                 <NA>               NA
## 762                 <NA>               NA
## 763                 <NA>               NA
## 764                 <NA>               NA
## 765                 <NA>               NA
## 766                 <NA>               NA
## 767                 <NA>               NA
## 768                 <NA>               NA
## 769                 <NA>               NA
## 770                 <NA>               NA
## 771                 <NA>               NA
## 772                 <NA>               NA
## 773                 <NA>               NA
## 774                 <NA>               NA
## 775                 <NA>               NA
## 776                 <NA>               NA
## 777                 <NA>               NA
## 778                 <NA>               NA
## 779                 <NA>               NA
## 780                 <NA>               NA
## 781                 <NA>               NA
## 782                 <NA>               NA
## 783                 <NA>               NA
## 784                 <NA>               NA
## 785                 <NA>               NA
## 786                 <NA>               NA
## 787                 <NA>               NA
## 788                 <NA>               NA
## 789                 <NA>               NA
## 790                 <NA>               NA
## 791                 <NA>               NA
## 792                 <NA>               NA
## 793                 <NA>               NA
## 794                 <NA>               NA
## 795                 <NA>               NA
## 796                 <NA>               NA
## 797                 <NA>               NA
## 798                 <NA>               NA
## 799                 <NA>               NA
## 800                 <NA>               NA
## 801                 <NA>               NA
## 802                 <NA>               NA
## 803                 <NA>               NA
## 804                 <NA>               NA
## 805                 <NA>               NA
## 806                 <NA>               NA
## 807                 <NA>               NA
## 808                 <NA>               NA
## 809                 <NA>               NA
## 810                 <NA>               NA
## 811                 <NA>               NA
## 812                 <NA>               NA
## 813                 <NA>               NA
## 814                 <NA>               NA
## 815                 <NA>               NA
## 816                 <NA>               NA
## 817                 <NA>               NA
## 818                 <NA>               NA
## 819                 <NA>               NA
## 820                 <NA>               NA
## 821                 <NA>               NA
## 822                 <NA>               NA
## 823                 <NA>               NA
## 824                 <NA>               NA
## 825                 <NA>               NA
## 826                 <NA>               NA
## 827                 <NA>               NA
## 828                 <NA>               NA
## 829                 <NA>               NA
## 830                 <NA>               NA
## 831                 <NA>               NA
## 832                 <NA>               NA
## 833                 <NA>               NA
## 834                 <NA>               NA
## 835                 <NA>               NA
## 836                 <NA>               NA
## 837                 <NA>               NA
## 838                 <NA>               NA
## 839                 <NA>               NA
## 840                 <NA>               NA
## 841                 <NA>               NA
## 842                 <NA>               NA
## 843                 <NA>               NA
## 844                 <NA>               NA
## 845                 <NA>               NA
## 846                 <NA>               NA
## 847                 <NA>               NA
## 848                 <NA>               NA
## 849                 <NA>               NA
## 850                 <NA>               NA
## 851                 <NA>               NA
## 852                 <NA>               NA
## 853                 <NA>               NA
## 854                 <NA>               NA
## 855                 <NA>               NA
## 856                 <NA>               NA
## 857                 <NA>               NA
## 858                 <NA>               NA
## 859                 <NA>               NA
## 860                 <NA>               NA
## 861                 <NA>               NA
## 862                 <NA>               NA
## 863                 <NA>               NA
## 864                 <NA>               NA
## 865                 <NA>               NA
## 866                 <NA>               NA
## 867                 <NA>               NA
## 868                 <NA>               NA
## 869                 <NA>               NA
## 870                 <NA>               NA
## 871                 <NA>               NA
## 872                 <NA>               NA
## 873                 <NA>               NA
## 874                 <NA>               NA
## 875                 <NA>               NA
## 876                 <NA>               NA
## 877                 <NA>               NA
## 878                 <NA>               NA
## 879                 <NA>               NA
## 880                 <NA>               NA
## 881                 <NA>               NA
## 882                 <NA>               NA
## 883                 <NA>               NA
## 884                 <NA>               NA
## 885                 <NA>               NA
## 886                 <NA>               NA
## 887                 <NA>               NA
## 888                 <NA>               NA
## 889                 <NA>               NA
## 890                 <NA>               NA
## 891                 <NA>               NA
## 892                 <NA>               NA
## 893                 <NA>               NA
## 894                 <NA>               NA
## 895                 <NA>               NA
## 896                 <NA>               NA
## 897                 <NA>               NA
## 898                 <NA>               NA
## 899                 <NA>               NA
## 900                 <NA>               NA
## 901                 <NA>               NA
## 902                 <NA>               NA
## 903                 <NA>               NA
## 904                 <NA>               NA
## 905                 <NA>               NA
## 906                 <NA>               NA
## 907                 <NA>               NA
## 908                 <NA>               NA
## 909                 <NA>               NA
## 910                 <NA>               NA
## 911                 <NA>               NA
## 912                 <NA>               NA
## 913                 <NA>               NA
## 914                 <NA>               NA
## 915                 <NA>               NA
## 916                 <NA>               NA
## 917                 <NA>               NA
## 918                 <NA>               NA
## 919                 <NA>               NA
## 920                 <NA>               NA
## 921                 <NA>               NA
## 922                 <NA>               NA
## 923                 <NA>               NA
## 924                 <NA>               NA
## 925                 <NA>               NA
## 926                 <NA>               NA
## 927                 <NA>               NA
## 928                 <NA>               NA
## 929                 <NA>               NA
## 930                 <NA>               NA
## 931                 <NA>               NA
## 932                 <NA>               NA
## 933                 <NA>               NA
## 934                 <NA>               NA
## 935                 <NA>               NA
## 936                 <NA>               NA
## 937                 <NA>               NA
## 938                 <NA>               NA
## 939                 <NA>               NA
## 940                 <NA>               NA
## 941                 <NA>               NA
## 942                 <NA>               NA
## 943                 <NA>               NA
## 944                 <NA>               NA
## 945                 <NA>               NA
## 946                 <NA>               NA
## 947                 <NA>               NA
## 948                 <NA>               NA
## 949                 <NA>               NA
## 950                 <NA>               NA
## 951                 <NA>               NA
## 952                 <NA>               NA
## 953                 <NA>               NA
## 954                 <NA>               NA
## 955                 <NA>               NA
## 956                 <NA>               NA
## 957                 <NA>               NA
## 958                 <NA>               NA
## 959                 <NA>               NA
## 960                 <NA>               NA
## 961                 <NA>               NA
## 962                 <NA>               NA
## 963                 <NA>               NA
## 964                 <NA>               NA
## 965                 <NA>               NA
## 966                 <NA>               NA
## 967                 <NA>               NA
## 968                 <NA>               NA
## 969                 <NA>               NA
## 970                 <NA>               NA
## 971                 <NA>               NA
## 972                 <NA>               NA
## 973                 <NA>               NA
## 974                 <NA>               NA
## 975                 <NA>               NA
## 976                 <NA>               NA
## 977                 <NA>               NA
## 978                 <NA>               NA
## 979                 <NA>               NA
## 980                 <NA>               NA
## 981                 <NA>               NA
## 982                 <NA>               NA
## 983                 <NA>               NA
## 984                 <NA>               NA
## 985                 <NA>               NA
## 986                 <NA>               NA
## 987                 <NA>               NA
## 988                 <NA>               NA
## 989                 <NA>               NA
## 990                 <NA>               NA
## 991                 <NA>               NA
## 992                 <NA>               NA
## 993                 <NA>               NA
## 994                 <NA>               NA
## 995                 <NA>               NA
## 996                 <NA>               NA
## 997                 <NA>               NA
## 998                 <NA>               NA
## 999                 <NA>               NA
## 1000                <NA>               NA
## 1001                <NA>               NA
## 1002                <NA>               NA
## 1003                <NA>               NA
## 1004                <NA>               NA
## 1005                <NA>               NA
## 1006                <NA>               NA
## 1007                <NA>               NA
## 1008                <NA>               NA
## 1009                <NA>               NA
## 1010                <NA>               NA
## 1011                <NA>               NA
## 1012                <NA>               NA
## 1013                <NA>               NA
## 1014                <NA>               NA
## 1015                <NA>               NA
## 1016                <NA>               NA
## 1017                <NA>               NA
## 1018                <NA>               NA
## 1019                <NA>               NA
## 1020                <NA>               NA
## 1021                <NA>               NA
## 1022                <NA>               NA
## 1023                <NA>               NA
## 1024                <NA>               NA
## 1025                <NA>               NA
## 1026                <NA>               NA
## 1027                <NA>               NA
## 1028                <NA>               NA
## 1029                <NA>               NA
## 1030                <NA>               NA
## 1031                <NA>               NA
## 1032                <NA>               NA
## 1033                <NA>               NA
## 1034                <NA>               NA
## 1035                <NA>               NA
## 1036                <NA>               NA
## 1037                <NA>               NA
## 1038                <NA>               NA
## 1039                <NA>               NA
## 1040                <NA>               NA
## 1041                <NA>               NA
## 1042                <NA>               NA
## 1043                <NA>               NA
## 1044                <NA>               NA
## 1045                <NA>               NA
## 1046                <NA>               NA
## 1047                <NA>               NA
## 1048                <NA>               NA
## 1049                <NA>               NA
## 1050                <NA>               NA
## 1051                <NA>               NA
## 1052                <NA>               NA
## 1053                <NA>               NA
## 1054                <NA>               NA
## 1055                <NA>               NA
## 1056                <NA>               NA
## 1057                <NA>               NA
## 1058                <NA>               NA
## 1059                <NA>               NA
## 1060                <NA>               NA
## 1061                <NA>               NA
## 1062                <NA>               NA
## 1063                <NA>               NA
## 1064                <NA>               NA
## 1065                <NA>               NA
## 1066                <NA>               NA
## 1067                <NA>               NA
## 1068                <NA>               NA
## 1069                <NA>               NA
## 1070                <NA>               NA
## 1071                <NA>               NA
## 1072                <NA>               NA
## 1073                <NA>               NA
## 1074                <NA>               NA
## 1075                <NA>               NA
## 1076                <NA>               NA
## 1077                <NA>               NA
## 1078                <NA>               NA
## 1079                <NA>               NA
## 1080                <NA>               NA
## 1081                <NA>               NA
## 1082                <NA>               NA
## 1083                <NA>               NA
## 1084                <NA>               NA
## 1085                <NA>               NA
## 1086                <NA>               NA
## 1087                <NA>               NA
## 1088                <NA>               NA
## 1089                <NA>               NA
## 1090                <NA>               NA
## 1091                <NA>               NA
## 1092                <NA>               NA
## 1093                <NA>               NA
## 1094                <NA>               NA
## 1095                <NA>               NA
## 1096                <NA>               NA
## 1097                <NA>               NA
## 1098                <NA>               NA
## 1099                <NA>               NA
## 1100                <NA>               NA
## 1101                <NA>               NA
## 1102                <NA>               NA
## 1103                <NA>               NA
## 1104                <NA>               NA
## 1105                <NA>               NA
## 1106                <NA>               NA
## 1107                <NA>               NA
## 1108                <NA>               NA
## 1109                <NA>               NA
## 1110                <NA>               NA
## 1111                <NA>               NA
##                                                     place_url
## 1                                                        <NA>
## 2                                                        <NA>
## 3                                                        <NA>
## 4                                                        <NA>
## 5    https://api.twitter.com/1.1/geo/id/65aa0cebdf1cd524.json
## 6                                                        <NA>
## 7                                                        <NA>
## 8                                                        <NA>
## 9                                                        <NA>
## 10                                                       <NA>
## 11                                                       <NA>
## 12   https://api.twitter.com/1.1/geo/id/e0060cda70f5f341.json
## 13                                                       <NA>
## 14                                                       <NA>
## 15                                                       <NA>
## 16                                                       <NA>
## 17                                                       <NA>
## 18                                                       <NA>
## 19                                                       <NA>
## 20                                                       <NA>
## 21                                                       <NA>
## 22                                                       <NA>
## 23                                                       <NA>
## 24                                                       <NA>
## 25                                                       <NA>
## 26                                                       <NA>
## 27   https://api.twitter.com/1.1/geo/id/550393b2ef425bbb.json
## 28                                                       <NA>
## 29                                                       <NA>
## 30                                                       <NA>
## 31                                                       <NA>
## 32                                                       <NA>
## 33                                                       <NA>
## 34                                                       <NA>
## 35                                                       <NA>
## 36                                                       <NA>
## 37                                                       <NA>
## 38                                                       <NA>
## 39                                                       <NA>
## 40                                                       <NA>
## 41                                                       <NA>
## 42                                                       <NA>
## 43                                                       <NA>
## 44                                                       <NA>
## 45                                                       <NA>
## 46                                                       <NA>
## 47                                                       <NA>
## 48                                                       <NA>
## 49                                                       <NA>
## 50                                                       <NA>
## 51                                                       <NA>
## 52                                                       <NA>
## 53                                                       <NA>
## 54                                                       <NA>
## 55                                                       <NA>
## 56                                                       <NA>
## 57                                                       <NA>
## 58                                                       <NA>
## 59                                                       <NA>
## 60                                                       <NA>
## 61                                                       <NA>
## 62                                                       <NA>
## 63                                                       <NA>
## 64                                                       <NA>
## 65                                                       <NA>
## 66                                                       <NA>
## 67                                                       <NA>
## 68                                                       <NA>
## 69                                                       <NA>
## 70                                                       <NA>
## 71                                                       <NA>
## 72                                                       <NA>
## 73                                                       <NA>
## 74                                                       <NA>
## 75                                                       <NA>
## 76                                                       <NA>
## 77                                                       <NA>
## 78                                                       <NA>
## 79   https://api.twitter.com/1.1/geo/id/7f55e839e1715da2.json
## 80                                                       <NA>
## 81   https://api.twitter.com/1.1/geo/id/01e215db7136a37e.json
## 82                                                       <NA>
## 83                                                       <NA>
## 84                                                       <NA>
## 85                                                       <NA>
## 86                                                       <NA>
## 87                                                       <NA>
## 88                                                       <NA>
## 89                                                       <NA>
## 90                                                       <NA>
## 91                                                       <NA>
## 92                                                       <NA>
## 93                                                       <NA>
## 94                                                       <NA>
## 95                                                       <NA>
## 96                                                       <NA>
## 97                                                       <NA>
## 98                                                       <NA>
## 99                                                       <NA>
## 100                                                      <NA>
## 101                                                      <NA>
## 102                                                      <NA>
## 103                                                      <NA>
## 104                                                      <NA>
## 105                                                      <NA>
## 106                                                      <NA>
## 107                                                      <NA>
## 108                                                      <NA>
## 109                                                      <NA>
## 110                                                      <NA>
## 111                                                      <NA>
## 112                                                      <NA>
## 113                                                      <NA>
## 114                                                      <NA>
## 115                                                      <NA>
## 116                                                      <NA>
## 117                                                      <NA>
## 118                                                      <NA>
## 119                                                      <NA>
## 120                                                      <NA>
## 121                                                      <NA>
## 122                                                      <NA>
## 123                                                      <NA>
## 124                                                      <NA>
## 125                                                      <NA>
## 126                                                      <NA>
## 127                                                      <NA>
## 128                                                      <NA>
## 129                                                      <NA>
## 130                                                      <NA>
## 131                                                      <NA>
## 132                                                      <NA>
## 133                                                      <NA>
## 134                                                      <NA>
## 135  https://api.twitter.com/1.1/geo/id/01eddd9d0dbec2c8.json
## 136                                                      <NA>
## 137                                                      <NA>
## 138                                                      <NA>
## 139                                                      <NA>
## 140                                                      <NA>
## 141                                                      <NA>
## 142                                                      <NA>
## 143                                                      <NA>
## 144                                                      <NA>
## 145                                                      <NA>
## 146                                                      <NA>
## 147                                                      <NA>
## 148                                                      <NA>
## 149                                                      <NA>
## 150                                                      <NA>
## 151                                                      <NA>
## 152                                                      <NA>
## 153                                                      <NA>
## 154                                                      <NA>
## 155                                                      <NA>
## 156                                                      <NA>
## 157  https://api.twitter.com/1.1/geo/id/7dde0febc9ef245b.json
## 158                                                      <NA>
## 159                                                      <NA>
## 160                                                      <NA>
## 161                                                      <NA>
## 162                                                      <NA>
## 163                                                      <NA>
## 164                                                      <NA>
## 165                                                      <NA>
## 166                                                      <NA>
## 167                                                      <NA>
## 168                                                      <NA>
## 169                                                      <NA>
## 170                                                      <NA>
## 171                                                      <NA>
## 172                                                      <NA>
## 173                                                      <NA>
## 174                                                      <NA>
## 175                                                      <NA>
## 176                                                      <NA>
## 177                                                      <NA>
## 178  https://api.twitter.com/1.1/geo/id/0a063651d547b2b9.json
## 179                                                      <NA>
## 180                                                      <NA>
## 181                                                      <NA>
## 182                                                      <NA>
## 183                                                      <NA>
## 184                                                      <NA>
## 185                                                      <NA>
## 186                                                      <NA>
## 187                                                      <NA>
## 188  https://api.twitter.com/1.1/geo/id/4548df3d99bb4891.json
## 189                                                      <NA>
## 190                                                      <NA>
## 191                                                      <NA>
## 192                                                      <NA>
## 193                                                      <NA>
## 194                                                      <NA>
## 195                                                      <NA>
## 196                                                      <NA>
## 197                                                      <NA>
## 198  https://api.twitter.com/1.1/geo/id/96683cc9126741d1.json
## 199                                                      <NA>
## 200                                                      <NA>
## 201                                                      <NA>
## 202                                                      <NA>
## 203                                                      <NA>
## 204                                                      <NA>
## 205                                                      <NA>
## 206                                                      <NA>
## 207                                                      <NA>
## 208                                                      <NA>
## 209                                                      <NA>
## 210                                                      <NA>
## 211                                                      <NA>
## 212                                                      <NA>
## 213                                                      <NA>
## 214                                                      <NA>
## 215                                                      <NA>
## 216                                                      <NA>
## 217                                                      <NA>
## 218                                                      <NA>
## 219                                                      <NA>
## 220                                                      <NA>
## 221                                                      <NA>
## 222                                                      <NA>
## 223                                                      <NA>
## 224                                                      <NA>
## 225                                                      <NA>
## 226  https://api.twitter.com/1.1/geo/id/1927193c57f35d51.json
## 227  https://api.twitter.com/1.1/geo/id/27c45d804c777999.json
## 228                                                      <NA>
## 229                                                      <NA>
## 230                                                      <NA>
## 231                                                      <NA>
## 232                                                      <NA>
## 233                                                      <NA>
## 234  https://api.twitter.com/1.1/geo/id/026295a852d62c2c.json
## 235                                                      <NA>
## 236                                                      <NA>
## 237                                                      <NA>
## 238                                                      <NA>
## 239                                                      <NA>
## 240                                                      <NA>
## 241                                                      <NA>
## 242                                                      <NA>
## 243                                                      <NA>
## 244                                                      <NA>
## 245                                                      <NA>
## 246                                                      <NA>
## 247                                                      <NA>
## 248                                                      <NA>
## 249                                                      <NA>
## 250                                                      <NA>
## 251                                                      <NA>
## 252                                                      <NA>
## 253                                                      <NA>
## 254                                                      <NA>
## 255                                                      <NA>
## 256                                                      <NA>
## 257                                                      <NA>
## 258                                                      <NA>
## 259  https://api.twitter.com/1.1/geo/id/22c613c36f32f0d1.json
## 260                                                      <NA>
## 261                                                      <NA>
## 262                                                      <NA>
## 263                                                      <NA>
## 264                                                      <NA>
## 265                                                      <NA>
## 266                                                      <NA>
## 267                                                      <NA>
## 268                                                      <NA>
## 269                                                      <NA>
## 270                                                      <NA>
## 271                                                      <NA>
## 272                                                      <NA>
## 273                                                      <NA>
## 274                                                      <NA>
## 275                                                      <NA>
## 276                                                      <NA>
## 277                                                      <NA>
## 278                                                      <NA>
## 279                                                      <NA>
## 280                                                      <NA>
## 281                                                      <NA>
## 282                                                      <NA>
## 283                                                      <NA>
## 284                                                      <NA>
## 285                                                      <NA>
## 286                                                      <NA>
## 287                                                      <NA>
## 288                                                      <NA>
## 289                                                      <NA>
## 290                                                      <NA>
## 291  https://api.twitter.com/1.1/geo/id/00f24ae701a1207b.json
## 292                                                      <NA>
## 293                                                      <NA>
## 294                                                      <NA>
## 295                                                      <NA>
## 296                                                      <NA>
## 297                                                      <NA>
## 298                                                      <NA>
## 299                                                      <NA>
## 300                                                      <NA>
## 301                                                      <NA>
## 302                                                      <NA>
## 303                                                      <NA>
## 304                                                      <NA>
## 305                                                      <NA>
## 306                                                      <NA>
## 307                                                      <NA>
## 308                                                      <NA>
## 309                                                      <NA>
## 310                                                      <NA>
## 311                                                      <NA>
## 312                                                      <NA>
## 313                                                      <NA>
## 314                                                      <NA>
## 315                                                      <NA>
## 316                                                      <NA>
## 317                                                      <NA>
## 318                                                      <NA>
## 319                                                      <NA>
## 320                                                      <NA>
## 321                                                      <NA>
## 322                                                      <NA>
## 323                                                      <NA>
## 324                                                      <NA>
## 325                                                      <NA>
## 326                                                      <NA>
## 327                                                      <NA>
## 328                                                      <NA>
## 329                                                      <NA>
## 330                                                      <NA>
## 331                                                      <NA>
## 332                                                      <NA>
## 333                                                      <NA>
## 334                                                      <NA>
## 335                                                      <NA>
## 336                                                      <NA>
## 337                                                      <NA>
## 338                                                      <NA>
## 339                                                      <NA>
## 340                                                      <NA>
## 341                                                      <NA>
## 342                                                      <NA>
## 343                                                      <NA>
## 344                                                      <NA>
## 345                                                      <NA>
## 346                                                      <NA>
## 347                                                      <NA>
## 348                                                      <NA>
## 349                                                      <NA>
## 350                                                      <NA>
## 351                                                      <NA>
## 352                                                      <NA>
## 353                                                      <NA>
## 354                                                      <NA>
## 355                                                      <NA>
## 356                                                      <NA>
## 357  https://api.twitter.com/1.1/geo/id/00e870e82d085d6e.json
## 358                                                      <NA>
## 359                                                      <NA>
## 360  https://api.twitter.com/1.1/geo/id/00e55e2b4c491c5f.json
## 361                                                      <NA>
## 362                                                      <NA>
## 363                                                      <NA>
## 364                                                      <NA>
## 365                                                      <NA>
## 366                                                      <NA>
## 367                                                      <NA>
## 368                                                      <NA>
## 369                                                      <NA>
## 370                                                      <NA>
## 371                                                      <NA>
## 372                                                      <NA>
## 373                                                      <NA>
## 374                                                      <NA>
## 375                                                      <NA>
## 376                                                      <NA>
## 377                                                      <NA>
## 378                                                      <NA>
## 379                                                      <NA>
## 380                                                      <NA>
## 381                                                      <NA>
## 382                                                      <NA>
## 383                                                      <NA>
## 384  https://api.twitter.com/1.1/geo/id/5dbd0cff60d628af.json
## 385                                                      <NA>
## 386  https://api.twitter.com/1.1/geo/id/3b4abe7dce81813a.json
## 387                                                      <NA>
## 388  https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json
## 389                                                      <NA>
## 390                                                      <NA>
## 391                                                      <NA>
## 392                                                      <NA>
## 393                                                      <NA>
## 394                                                      <NA>
## 395                                                      <NA>
## 396                                                      <NA>
## 397                                                      <NA>
## 398                                                      <NA>
## 399                                                      <NA>
## 400                                                      <NA>
## 401                                                      <NA>
## 402                                                      <NA>
## 403                                                      <NA>
## 404                                                      <NA>
## 405                                                      <NA>
## 406                                                      <NA>
## 407                                                      <NA>
## 408                                                      <NA>
## 409                                                      <NA>
## 410                                                      <NA>
## 411                                                      <NA>
## 412                                                      <NA>
## 413                                                      <NA>
## 414                                                      <NA>
## 415                                                      <NA>
## 416                                                      <NA>
## 417  https://api.twitter.com/1.1/geo/id/361610d5aa1f6719.json
## 418                                                      <NA>
## 419                                                      <NA>
## 420                                                      <NA>
## 421                                                      <NA>
## 422                                                      <NA>
## 423                                                      <NA>
## 424                                                      <NA>
## 425                                                      <NA>
## 426                                                      <NA>
## 427                                                      <NA>
## 428                                                      <NA>
## 429                                                      <NA>
## 430                                                      <NA>
## 431                                                      <NA>
## 432                                                      <NA>
## 433                                                      <NA>
## 434                                                      <NA>
## 435                                                      <NA>
## 436                                                      <NA>
## 437                                                      <NA>
## 438                                                      <NA>
## 439                                                      <NA>
## 440                                                      <NA>
## 441                                                      <NA>
## 442                                                      <NA>
## 443                                                      <NA>
## 444  https://api.twitter.com/1.1/geo/id/4939b600461c30a4.json
## 445                                                      <NA>
## 446                                                      <NA>
## 447                                                      <NA>
## 448                                                      <NA>
## 449                                                      <NA>
## 450                                                      <NA>
## 451                                                      <NA>
## 452                                                      <NA>
## 453                                                      <NA>
## 454                                                      <NA>
## 455                                                      <NA>
## 456                                                      <NA>
## 457                                                      <NA>
## 458                                                      <NA>
## 459                                                      <NA>
## 460                                                      <NA>
## 461                                                      <NA>
## 462                                                      <NA>
## 463                                                      <NA>
## 464                                                      <NA>
## 465                                                      <NA>
## 466                                                      <NA>
## 467                                                      <NA>
## 468                                                      <NA>
## 469                                                      <NA>
## 470                                                      <NA>
## 471                                                      <NA>
## 472                                                      <NA>
## 473                                                      <NA>
## 474                                                      <NA>
## 475                                                      <NA>
## 476                                                      <NA>
## 477                                                      <NA>
## 478                                                      <NA>
## 479                                                      <NA>
## 480                                                      <NA>
## 481                                                      <NA>
## 482                                                      <NA>
## 483                                                      <NA>
## 484                                                      <NA>
## 485                                                      <NA>
## 486                                                      <NA>
## 487                                                      <NA>
## 488                                                      <NA>
## 489                                                      <NA>
## 490                                                      <NA>
## 491                                                      <NA>
## 492                                                      <NA>
## 493                                                      <NA>
## 494                                                      <NA>
## 495  https://api.twitter.com/1.1/geo/id/00b673715a35dfa7.json
## 496                                                      <NA>
## 497                                                      <NA>
## 498                                                      <NA>
## 499                                                      <NA>
## 500                                                      <NA>
## 501                                                      <NA>
## 502                                                      <NA>
## 503  https://api.twitter.com/1.1/geo/id/014459087dde32e5.json
## 504                                                      <NA>
## 505                                                      <NA>
## 506                                                      <NA>
## 507                                                      <NA>
## 508                                                      <NA>
## 509                                                      <NA>
## 510                                                      <NA>
## 511                                                      <NA>
## 512                                                      <NA>
## 513                                                      <NA>
## 514                                                      <NA>
## 515                                                      <NA>
## 516                                                      <NA>
## 517                                                      <NA>
## 518                                                      <NA>
## 519                                                      <NA>
## 520                                                      <NA>
## 521  https://api.twitter.com/1.1/geo/id/005d61b22f3d85eb.json
## 522                                                      <NA>
## 523                                                      <NA>
## 524                                                      <NA>
## 525                                                      <NA>
## 526                                                      <NA>
## 527                                                      <NA>
## 528                                                      <NA>
## 529                                                      <NA>
## 530                                                      <NA>
## 531                                                      <NA>
## 532                                                      <NA>
## 533                                                      <NA>
## 534                                                      <NA>
## 535                                                      <NA>
## 536                                                      <NA>
## 537                                                      <NA>
## 538                                                      <NA>
## 539                                                      <NA>
## 540                                                      <NA>
## 541                                                      <NA>
## 542                                                      <NA>
## 543                                                      <NA>
## 544                                                      <NA>
## 545                                                      <NA>
## 546                                                      <NA>
## 547                                                      <NA>
## 548                                                      <NA>
## 549                                                      <NA>
## 550                                                      <NA>
## 551                                                      <NA>
## 552                                                      <NA>
## 553                                                      <NA>
## 554                                                      <NA>
## 555                                                      <NA>
## 556                                                      <NA>
## 557                                                      <NA>
## 558                                                      <NA>
## 559                                                      <NA>
## 560                                                      <NA>
## 561  https://api.twitter.com/1.1/geo/id/0f6bb4590e577000.json
## 562                                                      <NA>
## 563                                                      <NA>
## 564                                                      <NA>
## 565                                                      <NA>
## 566                                                      <NA>
## 567                                                      <NA>
## 568                                                      <NA>
## 569                                                      <NA>
## 570                                                      <NA>
## 571                                                      <NA>
## 572                                                      <NA>
## 573                                                      <NA>
## 574                                                      <NA>
## 575                                                      <NA>
## 576                                                      <NA>
## 577                                                      <NA>
## 578                                                      <NA>
## 579                                                      <NA>
## 580                                                      <NA>
## 581                                                      <NA>
## 582                                                      <NA>
## 583                                                      <NA>
## 584                                                      <NA>
## 585                                                      <NA>
## 586                                                      <NA>
## 587                                                      <NA>
## 588                                                      <NA>
## 589                                                      <NA>
## 590  https://api.twitter.com/1.1/geo/id/fbd6d2f5a4e4a15e.json
## 591                                                      <NA>
## 592                                                      <NA>
## 593                                                      <NA>
## 594                                                      <NA>
## 595                                                      <NA>
## 596                                                      <NA>
## 597                                                      <NA>
## 598                                                      <NA>
## 599                                                      <NA>
## 600                                                      <NA>
## 601                                                      <NA>
## 602                                                      <NA>
## 603                                                      <NA>
## 604                                                      <NA>
## 605                                                      <NA>
## 606                                                      <NA>
## 607                                                      <NA>
## 608                                                      <NA>
## 609                                                      <NA>
## 610                                                      <NA>
## 611                                                      <NA>
## 612                                                      <NA>
## 613                                                      <NA>
## 614                                                      <NA>
## 615                                                      <NA>
## 616                                                      <NA>
## 617                                                      <NA>
## 618                                                      <NA>
## 619                                                      <NA>
## 620                                                      <NA>
## 621                                                      <NA>
## 622                                                      <NA>
## 623                                                      <NA>
## 624                                                      <NA>
## 625                                                      <NA>
## 626                                                      <NA>
## 627                                                      <NA>
## 628                                                      <NA>
## 629                                                      <NA>
## 630                                                      <NA>
## 631                                                      <NA>
## 632                                                      <NA>
## 633                                                      <NA>
## 634                                                      <NA>
## 635                                                      <NA>
## 636                                                      <NA>
## 637                                                      <NA>
## 638                                                      <NA>
## 639                                                      <NA>
## 640                                                      <NA>
## 641                                                      <NA>
## 642                                                      <NA>
## 643                                                      <NA>
## 644                                                      <NA>
## 645                                                      <NA>
## 646                                                      <NA>
## 647                                                      <NA>
## 648                                                      <NA>
## 649                                                      <NA>
## 650                                                      <NA>
## 651                                                      <NA>
## 652                                                      <NA>
## 653                                                      <NA>
## 654                                                      <NA>
## 655                                                      <NA>
## 656                                                      <NA>
## 657                                                      <NA>
## 658                                                      <NA>
## 659                                                      <NA>
## 660                                                      <NA>
## 661                                                      <NA>
## 662                                                      <NA>
## 663  https://api.twitter.com/1.1/geo/id/002e24c6736f069d.json
## 664                                                      <NA>
## 665                                                      <NA>
## 666                                                      <NA>
## 667                                                      <NA>
## 668                                                      <NA>
## 669                                                      <NA>
## 670                                                      <NA>
## 671                                                      <NA>
## 672                                                      <NA>
## 673                                                      <NA>
## 674                                                      <NA>
## 675                                                      <NA>
## 676                                                      <NA>
## 677                                                      <NA>
## 678                                                      <NA>
## 679                                                      <NA>
## 680                                                      <NA>
## 681                                                      <NA>
## 682                                                      <NA>
## 683                                                      <NA>
## 684                                                      <NA>
## 685                                                      <NA>
## 686                                                      <NA>
## 687  https://api.twitter.com/1.1/geo/id/38ea9782c8d83a4b.json
## 688                                                      <NA>
## 689                                                      <NA>
## 690                                                      <NA>
## 691                                                      <NA>
## 692                                                      <NA>
## 693                                                      <NA>
## 694                                                      <NA>
## 695                                                      <NA>
## 696                                                      <NA>
## 697                                                      <NA>
## 698                                                      <NA>
## 699                                                      <NA>
## 700                                                      <NA>
## 701                                                      <NA>
## 702                                                      <NA>
## 703                                                      <NA>
## 704                                                      <NA>
## 705                                                      <NA>
## 706                                                      <NA>
## 707                                                      <NA>
## 708                                                      <NA>
## 709                                                      <NA>
## 710                                                      <NA>
## 711                                                      <NA>
## 712                                                      <NA>
## 713                                                      <NA>
## 714                                                      <NA>
## 715                                                      <NA>
## 716                                                      <NA>
## 717                                                      <NA>
## 718                                                      <NA>
## 719                                                      <NA>
## 720                                                      <NA>
## 721                                                      <NA>
## 722                                                      <NA>
## 723                                                      <NA>
## 724                                                      <NA>
## 725                                                      <NA>
## 726                                                      <NA>
## 727                                                      <NA>
## 728                                                      <NA>
## 729                                                      <NA>
## 730                                                      <NA>
## 731                                                      <NA>
## 732                                                      <NA>
## 733                                                      <NA>
## 734  https://api.twitter.com/1.1/geo/id/0064d56b46284b8c.json
## 735                                                      <NA>
## 736                                                      <NA>
## 737                                                      <NA>
## 738                                                      <NA>
## 739                                                      <NA>
## 740                                                      <NA>
## 741                                                      <NA>
## 742                                                      <NA>
## 743                                                      <NA>
## 744                                                      <NA>
## 745                                                      <NA>
## 746                                                      <NA>
## 747                                                      <NA>
## 748                                                      <NA>
## 749                                                      <NA>
## 750  https://api.twitter.com/1.1/geo/id/7dabbf75534f6cee.json
## 751                                                      <NA>
## 752                                                      <NA>
## 753                                                      <NA>
## 754                                                      <NA>
## 755  https://api.twitter.com/1.1/geo/id/70637f5c6cb00ec9.json
## 756                                                      <NA>
## 757                                                      <NA>
## 758                                                      <NA>
## 759                                                      <NA>
## 760                                                      <NA>
## 761                                                      <NA>
## 762                                                      <NA>
## 763                                                      <NA>
## 764                                                      <NA>
## 765                                                      <NA>
## 766                                                      <NA>
## 767                                                      <NA>
## 768                                                      <NA>
## 769                                                      <NA>
## 770                                                      <NA>
## 771                                                      <NA>
## 772                                                      <NA>
## 773  https://api.twitter.com/1.1/geo/id/04cb31bae3b3af93.json
## 774                                                      <NA>
## 775                                                      <NA>
## 776                                                      <NA>
## 777                                                      <NA>
## 778                                                      <NA>
## 779                                                      <NA>
## 780                                                      <NA>
## 781  https://api.twitter.com/1.1/geo/id/000ab18824ca5b85.json
## 782                                                      <NA>
## 783  https://api.twitter.com/1.1/geo/id/4393349f368f67a1.json
## 784                                                      <NA>
## 785  https://api.twitter.com/1.1/geo/id/dd9c503d6c35364b.json
## 786  https://api.twitter.com/1.1/geo/id/01e0b1c656c5070f.json
## 787                                                      <NA>
## 788                                                      <NA>
## 789                                                      <NA>
## 790                                                      <NA>
## 791                                                      <NA>
## 792                                                      <NA>
## 793                                                      <NA>
## 794                                                      <NA>
## 795                                                      <NA>
## 796                                                      <NA>
## 797                                                      <NA>
## 798                                                      <NA>
## 799                                                      <NA>
## 800                                                      <NA>
## 801                                                      <NA>
## 802                                                      <NA>
## 803                                                      <NA>
## 804                                                      <NA>
## 805                                                      <NA>
## 806                                                      <NA>
## 807                                                      <NA>
## 808                                                      <NA>
## 809                                                      <NA>
## 810                                                      <NA>
## 811                                                      <NA>
## 812                                                      <NA>
## 813                                                      <NA>
## 814                                                      <NA>
## 815                                                      <NA>
## 816                                                      <NA>
## 817                                                      <NA>
## 818                                                      <NA>
## 819                                                      <NA>
## 820                                                      <NA>
## 821                                                      <NA>
## 822                                                      <NA>
## 823                                                      <NA>
## 824                                                      <NA>
## 825                                                      <NA>
## 826                                                      <NA>
## 827                                                      <NA>
## 828                                                      <NA>
## 829                                                      <NA>
## 830                                                      <NA>
## 831                                                      <NA>
## 832                                                      <NA>
## 833                                                      <NA>
## 834                                                      <NA>
## 835                                                      <NA>
## 836                                                      <NA>
## 837                                                      <NA>
## 838                                                      <NA>
## 839                                                      <NA>
## 840                                                      <NA>
## 841                                                      <NA>
## 842                                                      <NA>
## 843                                                      <NA>
## 844                                                      <NA>
## 845                                                      <NA>
## 846                                                      <NA>
## 847                                                      <NA>
## 848                                                      <NA>
## 849                                                      <NA>
## 850                                                      <NA>
## 851                                                      <NA>
## 852                                                      <NA>
## 853                                                      <NA>
## 854                                                      <NA>
## 855                                                      <NA>
## 856                                                      <NA>
## 857                                                      <NA>
## 858                                                      <NA>
## 859                                                      <NA>
## 860                                                      <NA>
## 861                                                      <NA>
## 862                                                      <NA>
## 863                                                      <NA>
## 864  https://api.twitter.com/1.1/geo/id/5a110d312052166f.json
## 865                                                      <NA>
## 866                                                      <NA>
## 867                                                      <NA>
## 868                                                      <NA>
## 869                                                      <NA>
## 870                                                      <NA>
## 871                                                      <NA>
## 872                                                      <NA>
## 873                                                      <NA>
## 874                                                      <NA>
## 875                                                      <NA>
## 876                                                      <NA>
## 877                                                      <NA>
## 878                                                      <NA>
## 879                                                      <NA>
## 880                                                      <NA>
## 881                                                      <NA>
## 882                                                      <NA>
## 883  https://api.twitter.com/1.1/geo/id/5f55bb82cf16ac81.json
## 884                                                      <NA>
## 885                                                      <NA>
## 886                                                      <NA>
## 887                                                      <NA>
## 888  https://api.twitter.com/1.1/geo/id/046f4f5c96e7e0d5.json
## 889                                                      <NA>
## 890                                                      <NA>
## 891                                                      <NA>
## 892                                                      <NA>
## 893                                                      <NA>
## 894                                                      <NA>
## 895                                                      <NA>
## 896                                                      <NA>
## 897                                                      <NA>
## 898                                                      <NA>
## 899                                                      <NA>
## 900                                                      <NA>
## 901  https://api.twitter.com/1.1/geo/id/4fdbcad8c3ed7790.json
## 902                                                      <NA>
## 903                                                      <NA>
## 904                                                      <NA>
## 905                                                      <NA>
## 906                                                      <NA>
## 907                                                      <NA>
## 908                                                      <NA>
## 909                                                      <NA>
## 910                                                      <NA>
## 911                                                      <NA>
## 912                                                      <NA>
## 913                                                      <NA>
## 914                                                      <NA>
## 915                                                      <NA>
## 916                                                      <NA>
## 917                                                      <NA>
## 918                                                      <NA>
## 919                                                      <NA>
## 920                                                      <NA>
## 921                                                      <NA>
## 922                                                      <NA>
## 923                                                      <NA>
## 924                                                      <NA>
## 925                                                      <NA>
## 926                                                      <NA>
## 927                                                      <NA>
## 928                                                      <NA>
## 929                                                      <NA>
## 930                                                      <NA>
## 931                                                      <NA>
## 932                                                      <NA>
## 933                                                      <NA>
## 934                                                      <NA>
## 935                                                      <NA>
## 936                                                      <NA>
## 937                                                      <NA>
## 938                                                      <NA>
## 939                                                      <NA>
## 940                                                      <NA>
## 941                                                      <NA>
## 942                                                      <NA>
## 943                                                      <NA>
## 944                                                      <NA>
## 945                                                      <NA>
## 946                                                      <NA>
## 947                                                      <NA>
## 948                                                      <NA>
## 949                                                      <NA>
## 950                                                      <NA>
## 951                                                      <NA>
## 952                                                      <NA>
## 953                                                      <NA>
## 954                                                      <NA>
## 955                                                      <NA>
## 956                                                      <NA>
## 957                                                      <NA>
## 958                                                      <NA>
## 959                                                      <NA>
## 960                                                      <NA>
## 961                                                      <NA>
## 962                                                      <NA>
## 963                                                      <NA>
## 964                                                      <NA>
## 965                                                      <NA>
## 966                                                      <NA>
## 967                                                      <NA>
## 968                                                      <NA>
## 969                                                      <NA>
## 970                                                      <NA>
## 971                                                      <NA>
## 972  https://api.twitter.com/1.1/geo/id/06168d1feda43857.json
## 973                                                      <NA>
## 974                                                      <NA>
## 975                                                      <NA>
## 976                                                      <NA>
## 977                                                      <NA>
## 978                                                      <NA>
## 979                                                      <NA>
## 980                                                      <NA>
## 981                                                      <NA>
## 982                                                      <NA>
## 983                                                      <NA>
## 984                                                      <NA>
## 985                                                      <NA>
## 986                                                      <NA>
## 987                                                      <NA>
## 988                                                      <NA>
## 989                                                      <NA>
## 990                                                      <NA>
## 991                                                      <NA>
## 992                                                      <NA>
## 993                                                      <NA>
## 994                                                      <NA>
## 995                                                      <NA>
## 996                                                      <NA>
## 997                                                      <NA>
## 998                                                      <NA>
## 999                                                      <NA>
## 1000                                                     <NA>
## 1001                                                     <NA>
## 1002                                                     <NA>
## 1003                                                     <NA>
## 1004                                                     <NA>
## 1005                                                     <NA>
## 1006                                                     <NA>
## 1007                                                     <NA>
## 1008                                                     <NA>
## 1009                                                     <NA>
## 1010 https://api.twitter.com/1.1/geo/id/107ffebedd54f000.json
## 1011                                                     <NA>
## 1012                                                     <NA>
## 1013                                                     <NA>
## 1014                                                     <NA>
## 1015                                                     <NA>
## 1016                                                     <NA>
## 1017                                                     <NA>
## 1018                                                     <NA>
## 1019                                                     <NA>
## 1020                                                     <NA>
## 1021                                                     <NA>
## 1022                                                     <NA>
## 1023                                                     <NA>
## 1024                                                     <NA>
## 1025                                                     <NA>
## 1026                                                     <NA>
## 1027                                                     <NA>
## 1028                                                     <NA>
## 1029                                                     <NA>
## 1030                                                     <NA>
## 1031                                                     <NA>
## 1032                                                     <NA>
## 1033                                                     <NA>
## 1034                                                     <NA>
## 1035                                                     <NA>
## 1036                                                     <NA>
## 1037                                                     <NA>
## 1038                                                     <NA>
## 1039                                                     <NA>
## 1040                                                     <NA>
## 1041                                                     <NA>
## 1042                                                     <NA>
## 1043 https://api.twitter.com/1.1/geo/id/7d588036fe12e124.json
## 1044                                                     <NA>
## 1045                                                     <NA>
## 1046                                                     <NA>
## 1047                                                     <NA>
## 1048                                                     <NA>
## 1049                                                     <NA>
## 1050                                                     <NA>
## 1051                                                     <NA>
## 1052                                                     <NA>
## 1053                                                     <NA>
## 1054                                                     <NA>
## 1055                                                     <NA>
## 1056                                                     <NA>
## 1057                                                     <NA>
## 1058                                                     <NA>
## 1059                                                     <NA>
## 1060                                                     <NA>
## 1061                                                     <NA>
## 1062                                                     <NA>
## 1063                                                     <NA>
## 1064                                                     <NA>
## 1065                                                     <NA>
## 1066                                                     <NA>
## 1067                                                     <NA>
## 1068                                                     <NA>
## 1069                                                     <NA>
## 1070                                                     <NA>
## 1071                                                     <NA>
## 1072                                                     <NA>
## 1073                                                     <NA>
## 1074                                                     <NA>
## 1075                                                     <NA>
## 1076                                                     <NA>
## 1077                                                     <NA>
## 1078                                                     <NA>
## 1079                                                     <NA>
## 1080                                                     <NA>
## 1081                                                     <NA>
## 1082                                                     <NA>
## 1083                                                     <NA>
## 1084                                                     <NA>
## 1085                                                     <NA>
## 1086                                                     <NA>
## 1087                                                     <NA>
## 1088                                                     <NA>
## 1089                                                     <NA>
## 1090                                                     <NA>
## 1091                                                     <NA>
## 1092                                                     <NA>
## 1093                                                     <NA>
## 1094                                                     <NA>
## 1095                                                     <NA>
## 1096                                                     <NA>
## 1097                                                     <NA>
## 1098                                                     <NA>
## 1099                                                     <NA>
## 1100                                                     <NA>
## 1101                                                     <NA>
## 1102 https://api.twitter.com/1.1/geo/id/02a8ed5b791223de.json
## 1103                                                     <NA>
## 1104                                                     <NA>
## 1105                                                     <NA>
## 1106                                                     <NA>
## 1107                                                     <NA>
## 1108                                                     <NA>
## 1109                                                     <NA>
## 1110                                                     <NA>
## 1111                                                     <NA>
##                                  place_name
## 1                                      <NA>
## 2                                      <NA>
## 3                                      <NA>
## 4                                      <NA>
## 5                                 Twinsburg
## 6                                      <NA>
## 7                                      <NA>
## 8                                      <NA>
## 9                                      <NA>
## 10                                     <NA>
## 11                                     <NA>
## 12                                    Texas
## 13                                     <NA>
## 14                                     <NA>
## 15                                     <NA>
## 16                                     <NA>
## 17                                     <NA>
## 18                                     <NA>
## 19                                     <NA>
## 20                                     <NA>
## 21                                     <NA>
## 22                                     <NA>
## 23                                     <NA>
## 24                                     <NA>
## 25                                     <NA>
## 26                                     <NA>
## 27                             Chatham-Kent
## 28                                     <NA>
## 29                                     <NA>
## 30                                     <NA>
## 31                                     <NA>
## 32                                     <NA>
## 33                                     <NA>
## 34                                     <NA>
## 35                                     <NA>
## 36                                     <NA>
## 37                                     <NA>
## 38                                     <NA>
## 39                                     <NA>
## 40                                     <NA>
## 41                                     <NA>
## 42                                     <NA>
## 43                                     <NA>
## 44                                     <NA>
## 45                                     <NA>
## 46                                     <NA>
## 47                                     <NA>
## 48                                     <NA>
## 49                                     <NA>
## 50                                     <NA>
## 51                                     <NA>
## 52                                     <NA>
## 53                                     <NA>
## 54                                     <NA>
## 55                                     <NA>
## 56                                     <NA>
## 57                                     <NA>
## 58                                     <NA>
## 59                                     <NA>
## 60                                     <NA>
## 61                                     <NA>
## 62                                     <NA>
## 63                                     <NA>
## 64                                     <NA>
## 65                                     <NA>
## 66                                     <NA>
## 67                                     <NA>
## 68                                     <NA>
## 69                                     <NA>
## 70                                     <NA>
## 71                                     <NA>
## 72                                     <NA>
## 73                                     <NA>
## 74                                     <NA>
## 75                                     <NA>
## 76                                     <NA>
## 77                                     <NA>
## 78                                     <NA>
## 79                               Camberwell
## 80                                     <NA>
## 81                                  Nairobi
## 82                                     <NA>
## 83                                     <NA>
## 84                                     <NA>
## 85                                     <NA>
## 86                                     <NA>
## 87                                     <NA>
## 88                                     <NA>
## 89                                     <NA>
## 90                                     <NA>
## 91                                     <NA>
## 92                                     <NA>
## 93                                     <NA>
## 94                                     <NA>
## 95                                     <NA>
## 96                                     <NA>
## 97                                     <NA>
## 98                                     <NA>
## 99                                     <NA>
## 100                                    <NA>
## 101                                    <NA>
## 102                                    <NA>
## 103                                    <NA>
## 104                                    <NA>
## 105                                    <NA>
## 106                                    <NA>
## 107                                    <NA>
## 108                                    <NA>
## 109                                    <NA>
## 110                                    <NA>
## 111                                    <NA>
## 112                                    <NA>
## 113                                    <NA>
## 114                                    <NA>
## 115                                    <NA>
## 116                                    <NA>
## 117                                    <NA>
## 118                                    <NA>
## 119                                    <NA>
## 120                                    <NA>
## 121                                    <NA>
## 122                                    <NA>
## 123                                    <NA>
## 124                                    <NA>
## 125                                    <NA>
## 126                                    <NA>
## 127                                    <NA>
## 128                                    <NA>
## 129                                    <NA>
## 130                                    <NA>
## 131                                    <NA>
## 132                                    <NA>
## 133                                    <NA>
## 134                                    <NA>
## 135                                   Ikeja
## 136                                    <NA>
## 137                                    <NA>
## 138                                    <NA>
## 139                                    <NA>
## 140                                    <NA>
## 141                                    <NA>
## 142                                    <NA>
## 143                                    <NA>
## 144                                    <NA>
## 145                                    <NA>
## 146                                    <NA>
## 147                                    <NA>
## 148                                    <NA>
## 149                                    <NA>
## 150                                    <NA>
## 151                                    <NA>
## 152                                    <NA>
## 153                                    <NA>
## 154                                    <NA>
## 155                                    <NA>
## 156                                    <NA>
## 157                             Dublin City
## 158                                    <NA>
## 159                                    <NA>
## 160                                    <NA>
## 161                                    <NA>
## 162                                    <NA>
## 163                                    <NA>
## 164                                    <NA>
## 165                                    <NA>
## 166                                    <NA>
## 167                                    <NA>
## 168                                    <NA>
## 169                                    <NA>
## 170                                    <NA>
## 171                                    <NA>
## 172                                    <NA>
## 173                                    <NA>
## 174                                    <NA>
## 175                                    <NA>
## 176                                    <NA>
## 177                                    <NA>
## 178                                  Haveli
## 179                                    <NA>
## 180                                    <NA>
## 181                                    <NA>
## 182                                    <NA>
## 183                                    <NA>
## 184                                    <NA>
## 185                                    <NA>
## 186                                    <NA>
## 187                                    <NA>
## 188                            Fayetteville
## 189                                    <NA>
## 190                                    <NA>
## 191                                    <NA>
## 192                                    <NA>
## 193                                    <NA>
## 194                                    <NA>
## 195                                    <NA>
## 196                                    <NA>
## 197                                    <NA>
## 198                           United States
## 199                                    <NA>
## 200                                    <NA>
## 201                                    <NA>
## 202                                    <NA>
## 203                                    <NA>
## 204                                    <NA>
## 205                                    <NA>
## 206                                    <NA>
## 207                                    <NA>
## 208                                    <NA>
## 209                                    <NA>
## 210                                    <NA>
## 211                                    <NA>
## 212                                    <NA>
## 213                                    <NA>
## 214                                    <NA>
## 215                                    <NA>
## 216                                    <NA>
## 217                                    <NA>
## 218                                    <NA>
## 219                                    <NA>
## 220                                    <NA>
## 221                                    <NA>
## 222                                    <NA>
## 223                                    <NA>
## 224                                    <NA>
## 225                                    <NA>
## 226                          West Hollywood
## 227                                  Kansas
## 228                                    <NA>
## 229                                    <NA>
## 230                                    <NA>
## 231                                    <NA>
## 232                                    <NA>
## 233                                    <NA>
## 234                              Leamington
## 235                                    <NA>
## 236                                    <NA>
## 237                                    <NA>
## 238                                    <NA>
## 239                                    <NA>
## 240                                    <NA>
## 241                                    <NA>
## 242                                    <NA>
## 243                                    <NA>
## 244                                    <NA>
## 245                                    <NA>
## 246                                    <NA>
## 247                                    <NA>
## 248                                    <NA>
## 249                                    <NA>
## 250                                    <NA>
## 251                                    <NA>
## 252                                    <NA>
## 253                                    <NA>
## 254                                    <NA>
## 255                                    <NA>
## 256                                    <NA>
## 257                                    <NA>
## 258                                    <NA>
## 259                           State College
## 260                                    <NA>
## 261                                    <NA>
## 262                                    <NA>
## 263                                    <NA>
## 264                                    <NA>
## 265                                    <NA>
## 266                                    <NA>
## 267                                    <NA>
## 268                                    <NA>
## 269                                    <NA>
## 270                                    <NA>
## 271                                    <NA>
## 272                                    <NA>
## 273                                    <NA>
## 274                                    <NA>
## 275                                    <NA>
## 276                                    <NA>
## 277                                    <NA>
## 278                                    <NA>
## 279                                    <NA>
## 280                                    <NA>
## 281                                    <NA>
## 282                                    <NA>
## 283                                    <NA>
## 284                                    <NA>
## 285                                    <NA>
## 286                                    <NA>
## 287                                    <NA>
## 288                                    <NA>
## 289                                    <NA>
## 290                                    <NA>
## 291                               Abu Dhabi
## 292                                    <NA>
## 293                                    <NA>
## 294                                    <NA>
## 295                                    <NA>
## 296                                    <NA>
## 297                                    <NA>
## 298                                    <NA>
## 299                                    <NA>
## 300                                    <NA>
## 301                                    <NA>
## 302                                    <NA>
## 303                                    <NA>
## 304                                    <NA>
## 305                                    <NA>
## 306                                    <NA>
## 307                                    <NA>
## 308                                    <NA>
## 309                                    <NA>
## 310                                    <NA>
## 311                                    <NA>
## 312                                    <NA>
## 313                                    <NA>
## 314                                    <NA>
## 315                                    <NA>
## 316                                    <NA>
## 317                                    <NA>
## 318                                    <NA>
## 319                                    <NA>
## 320                                    <NA>
## 321                                    <NA>
## 322                                    <NA>
## 323                                    <NA>
## 324                                    <NA>
## 325                                    <NA>
## 326                                    <NA>
## 327                                    <NA>
## 328                                    <NA>
## 329                                    <NA>
## 330                                    <NA>
## 331                                    <NA>
## 332                                    <NA>
## 333                                    <NA>
## 334                                    <NA>
## 335                                    <NA>
## 336                                    <NA>
## 337                                    <NA>
## 338                                    <NA>
## 339                                    <NA>
## 340                                    <NA>
## 341                                    <NA>
## 342                                    <NA>
## 343                                    <NA>
## 344                                    <NA>
## 345                                    <NA>
## 346                                    <NA>
## 347                                    <NA>
## 348                                    <NA>
## 349                                    <NA>
## 350                                    <NA>
## 351                                    <NA>
## 352                                    <NA>
## 353                                    <NA>
## 354                                    <NA>
## 355                                    <NA>
## 356                                    <NA>
## 357                                   Young
## 358                                    <NA>
## 359                                    <NA>
## 360                                   Abuja
## 361                                    <NA>
## 362                                    <NA>
## 363                                    <NA>
## 364                                    <NA>
## 365                                    <NA>
## 366                                    <NA>
## 367                                    <NA>
## 368                                    <NA>
## 369                                    <NA>
## 370                                    <NA>
## 371                                    <NA>
## 372                                    <NA>
## 373                                    <NA>
## 374                                    <NA>
## 375                                    <NA>
## 376                                    <NA>
## 377                                    <NA>
## 378                                    <NA>
## 379                                    <NA>
## 380                                    <NA>
## 381                                    <NA>
## 382                                    <NA>
## 383                                    <NA>
## 384                                Ludhiana
## 385                                    <NA>
## 386                                  Oldham
## 387                                    <NA>
## 388                            Pennsylvania
## 389                                    <NA>
## 390                                    <NA>
## 391                                    <NA>
## 392                                    <NA>
## 393                                    <NA>
## 394                                    <NA>
## 395                                    <NA>
## 396                                    <NA>
## 397                                    <NA>
## 398                                    <NA>
## 399                                    <NA>
## 400                                    <NA>
## 401                                    <NA>
## 402                                    <NA>
## 403                                    <NA>
## 404                                    <NA>
## 405                                    <NA>
## 406                                    <NA>
## 407                                    <NA>
## 408                                    <NA>
## 409                                    <NA>
## 410                                    <NA>
## 411                                    <NA>
## 412                                    <NA>
## 413                                    <NA>
## 414                                    <NA>
## 415                                    <NA>
## 416                                    <NA>
## 417                                  Conroe
## 418                                    <NA>
## 419                                    <NA>
## 420                                    <NA>
## 421                                    <NA>
## 422                                    <NA>
## 423                                    <NA>
## 424                                    <NA>
## 425                                    <NA>
## 426                                    <NA>
## 427                                    <NA>
## 428                                    <NA>
## 429                                    <NA>
## 430                                    <NA>
## 431                                    <NA>
## 432                                    <NA>
## 433                                    <NA>
## 434                                    <NA>
## 435                                    <NA>
## 436                                    <NA>
## 437                                    <NA>
## 438                                    <NA>
## 439                                    <NA>
## 440                                    <NA>
## 441                                    <NA>
## 442                                    <NA>
## 443                                    <NA>
## 444                                Hamilton
## 445                                    <NA>
## 446                                    <NA>
## 447                                    <NA>
## 448                                    <NA>
## 449                                    <NA>
## 450                                    <NA>
## 451                                    <NA>
## 452                                    <NA>
## 453                                    <NA>
## 454                                    <NA>
## 455                                    <NA>
## 456                                    <NA>
## 457                                    <NA>
## 458                                    <NA>
## 459                                    <NA>
## 460                                    <NA>
## 461                                    <NA>
## 462                                    <NA>
## 463                                    <NA>
## 464                                    <NA>
## 465                                    <NA>
## 466                                    <NA>
## 467                                    <NA>
## 468                                    <NA>
## 469                                    <NA>
## 470                                    <NA>
## 471                                    <NA>
## 472                                    <NA>
## 473                                    <NA>
## 474                                    <NA>
## 475                                    <NA>
## 476                                    <NA>
## 477                                    <NA>
## 478                                    <NA>
## 479                                    <NA>
## 480                                    <NA>
## 481                                    <NA>
## 482                                    <NA>
## 483                                    <NA>
## 484                                    <NA>
## 485                                    <NA>
## 486                                    <NA>
## 487                                    <NA>
## 488                                    <NA>
## 489                                    <NA>
## 490                                    <NA>
## 491                                    <NA>
## 492                                    <NA>
## 493                                    <NA>
## 494                                    <NA>
## 495                                Columbus
## 496                                    <NA>
## 497                                    <NA>
## 498                                    <NA>
## 499                                    <NA>
## 500                                    <NA>
## 501                                    <NA>
## 502                                    <NA>
## 503                               East Lyme
## 504                                    <NA>
## 505                                    <NA>
## 506                                    <NA>
## 507                                    <NA>
## 508                                    <NA>
## 509                                    <NA>
## 510                                    <NA>
## 511                                    <NA>
## 512                                    <NA>
## 513                                    <NA>
## 514                                    <NA>
## 515                                    <NA>
## 516                                    <NA>
## 517                                    <NA>
## 518                                    <NA>
## 519                                    <NA>
## 520                                    <NA>
## 521                            Mount Laurel
## 522                                    <NA>
## 523                                    <NA>
## 524                                    <NA>
## 525                                    <NA>
## 526                                    <NA>
## 527                                    <NA>
## 528                                    <NA>
## 529                                    <NA>
## 530                                    <NA>
## 531                                    <NA>
## 532                                    <NA>
## 533                                    <NA>
## 534                                    <NA>
## 535                                    <NA>
## 536                                    <NA>
## 537                                    <NA>
## 538                                    <NA>
## 539                                    <NA>
## 540                                    <NA>
## 541                                    <NA>
## 542                                    <NA>
## 543                                    <NA>
## 544                                    <NA>
## 545                                    <NA>
## 546                                    <NA>
## 547                                    <NA>
## 548                                    <NA>
## 549                                    <NA>
## 550                                    <NA>
## 551                                    <NA>
## 552                                    <NA>
## 553                                    <NA>
## 554                                    <NA>
## 555                                    <NA>
## 556                                    <NA>
## 557                                    <NA>
## 558                                    <NA>
## 559                                    <NA>
## 560                                    <NA>
## 561                        Jo Malone London
## 562                                    <NA>
## 563                                    <NA>
## 564                                    <NA>
## 565                                    <NA>
## 566                                    <NA>
## 567                                    <NA>
## 568                                    <NA>
## 569                                    <NA>
## 570                                    <NA>
## 571                                    <NA>
## 572                                    <NA>
## 573                                    <NA>
## 574                                    <NA>
## 575                                    <NA>
## 576                                    <NA>
## 577                                    <NA>
## 578                                    <NA>
## 579                                    <NA>
## 580                                    <NA>
## 581                                    <NA>
## 582                                    <NA>
## 583                                    <NA>
## 584                                    <NA>
## 585                                    <NA>
## 586                                    <NA>
## 587                                    <NA>
## 588                                    <NA>
## 589                                    <NA>
## 590                              California
## 591                                    <NA>
## 592                                    <NA>
## 593                                    <NA>
## 594                                    <NA>
## 595                                    <NA>
## 596                                    <NA>
## 597                                    <NA>
## 598                                    <NA>
## 599                                    <NA>
## 600                                    <NA>
## 601                                    <NA>
## 602                                    <NA>
## 603                                    <NA>
## 604                                    <NA>
## 605                                    <NA>
## 606                                    <NA>
## 607                                    <NA>
## 608                                    <NA>
## 609                                    <NA>
## 610                                    <NA>
## 611                                    <NA>
## 612                                    <NA>
## 613                                    <NA>
## 614                                    <NA>
## 615                                    <NA>
## 616                                    <NA>
## 617                                    <NA>
## 618                                    <NA>
## 619                                    <NA>
## 620                                    <NA>
## 621                                    <NA>
## 622                                    <NA>
## 623                                    <NA>
## 624                                    <NA>
## 625                                    <NA>
## 626                                    <NA>
## 627                                    <NA>
## 628                                    <NA>
## 629                                    <NA>
## 630                                    <NA>
## 631                                    <NA>
## 632                                    <NA>
## 633                                    <NA>
## 634                                    <NA>
## 635                                    <NA>
## 636                                    <NA>
## 637                                    <NA>
## 638                                    <NA>
## 639                                    <NA>
## 640                                    <NA>
## 641                                    <NA>
## 642                                    <NA>
## 643                                    <NA>
## 644                                    <NA>
## 645                                    <NA>
## 646                                    <NA>
## 647                                    <NA>
## 648                                    <NA>
## 649                                    <NA>
## 650                                    <NA>
## 651                                    <NA>
## 652                                    <NA>
## 653                                    <NA>
## 654                                    <NA>
## 655                                    <NA>
## 656                                    <NA>
## 657                                    <NA>
## 658                                    <NA>
## 659                                    <NA>
## 660                                    <NA>
## 661                                    <NA>
## 662                                    <NA>
## 663                                   Bronx
## 664                                    <NA>
## 665                                    <NA>
## 666                                    <NA>
## 667                                    <NA>
## 668                                    <NA>
## 669                                    <NA>
## 670                                    <NA>
## 671                                    <NA>
## 672                                    <NA>
## 673                                    <NA>
## 674                                    <NA>
## 675                                    <NA>
## 676                                    <NA>
## 677                                    <NA>
## 678                                    <NA>
## 679                                    <NA>
## 680                                    <NA>
## 681                                    <NA>
## 682                                    <NA>
## 683                                    <NA>
## 684                                    <NA>
## 685                                    <NA>
## 686                                    <NA>
## 687                          Marina del Rey
## 688                                    <NA>
## 689                                    <NA>
## 690                                    <NA>
## 691                                    <NA>
## 692                                    <NA>
## 693                                    <NA>
## 694                                    <NA>
## 695                                    <NA>
## 696                                    <NA>
## 697                                    <NA>
## 698                                    <NA>
## 699                                    <NA>
## 700                                    <NA>
## 701                                    <NA>
## 702                                    <NA>
## 703                                    <NA>
## 704                                    <NA>
## 705                                    <NA>
## 706                                    <NA>
## 707                                    <NA>
## 708                                    <NA>
## 709                                    <NA>
## 710                                    <NA>
## 711                                    <NA>
## 712                                    <NA>
## 713                                    <NA>
## 714                                    <NA>
## 715                                    <NA>
## 716                                    <NA>
## 717                                    <NA>
## 718                                    <NA>
## 719                                    <NA>
## 720                                    <NA>
## 721                                    <NA>
## 722                                    <NA>
## 723                                    <NA>
## 724                                    <NA>
## 725                                    <NA>
## 726                                    <NA>
## 727                                    <NA>
## 728                                    <NA>
## 729                                    <NA>
## 730                                    <NA>
## 731                                    <NA>
## 732                                    <NA>
## 733                                    <NA>
## 734                           Shimo la Tewa
## 735                                    <NA>
## 736                                    <NA>
## 737                                    <NA>
## 738                                    <NA>
## 739                                    <NA>
## 740                                    <NA>
## 741                                    <NA>
## 742                                    <NA>
## 743                                    <NA>
## 744                                    <NA>
## 745                                    <NA>
## 746                                    <NA>
## 747                                    <NA>
## 748                                    <NA>
## 749                                    <NA>
## 750                                 Amherst
## 751                                    <NA>
## 752                                    <NA>
## 753                                    <NA>
## 754                                    <NA>
## 755                                   Libya
## 756                                    <NA>
## 757                                    <NA>
## 758                                    <NA>
## 759                                    <NA>
## 760                                    <NA>
## 761                                    <NA>
## 762                                    <NA>
## 763                                    <NA>
## 764                                    <NA>
## 765                                    <NA>
## 766                                    <NA>
## 767                                    <NA>
## 768                                    <NA>
## 769                                    <NA>
## 770                                    <NA>
## 771                                    <NA>
## 772                                    <NA>
## 773                                   Miami
## 774                                    <NA>
## 775                                    <NA>
## 776                                    <NA>
## 777                                    <NA>
## 778                                    <NA>
## 779                                    <NA>
## 780                                    <NA>
## 781                                 Pa Tong
## 782                                    <NA>
## 783                                 Lambeth
## 784                                    <NA>
## 785                            Pennsylvania
## 786                               Iowa City
## 787                                    <NA>
## 788                                    <NA>
## 789                                    <NA>
## 790                                    <NA>
## 791                                    <NA>
## 792                                    <NA>
## 793                                    <NA>
## 794                                    <NA>
## 795                                    <NA>
## 796                                    <NA>
## 797                                    <NA>
## 798                                    <NA>
## 799                                    <NA>
## 800                                    <NA>
## 801                                    <NA>
## 802                                    <NA>
## 803                                    <NA>
## 804                                    <NA>
## 805                                    <NA>
## 806                                    <NA>
## 807                                    <NA>
## 808                                    <NA>
## 809                                    <NA>
## 810                                    <NA>
## 811                                    <NA>
## 812                                    <NA>
## 813                                    <NA>
## 814                                    <NA>
## 815                                    <NA>
## 816                                    <NA>
## 817                                    <NA>
## 818                                    <NA>
## 819                                    <NA>
## 820                                    <NA>
## 821                                    <NA>
## 822                                    <NA>
## 823                                    <NA>
## 824                                    <NA>
## 825                                    <NA>
## 826                                    <NA>
## 827                                    <NA>
## 828                                    <NA>
## 829                                    <NA>
## 830                                    <NA>
## 831                                    <NA>
## 832                                    <NA>
## 833                                    <NA>
## 834                                    <NA>
## 835                                    <NA>
## 836                                    <NA>
## 837                                    <NA>
## 838                                    <NA>
## 839                                    <NA>
## 840                                    <NA>
## 841                                    <NA>
## 842                                    <NA>
## 843                                    <NA>
## 844                                    <NA>
## 845                                    <NA>
## 846                                    <NA>
## 847                                    <NA>
## 848                                    <NA>
## 849                                    <NA>
## 850                                    <NA>
## 851                                    <NA>
## 852                                    <NA>
## 853                                    <NA>
## 854                                    <NA>
## 855                                    <NA>
## 856                                    <NA>
## 857                                    <NA>
## 858                                    <NA>
## 859                                    <NA>
## 860                                    <NA>
## 861                                    <NA>
## 862                                    <NA>
## 863                                    <NA>
## 864                           San Francisco
## 865                                    <NA>
## 866                                    <NA>
## 867                                    <NA>
## 868                                    <NA>
## 869                                    <NA>
## 870                                    <NA>
## 871                                    <NA>
## 872                                    <NA>
## 873                                    <NA>
## 874                                    <NA>
## 875                                    <NA>
## 876                                    <NA>
## 877                                    <NA>
## 878                                    <NA>
## 879                                    <NA>
## 880                                    <NA>
## 881                                    <NA>
## 882                                    <NA>
## 883                         Bengaluru South
## 884                                    <NA>
## 885                                    <NA>
## 886                                    <NA>
## 887                                    <NA>
## 888                                Wheeling
## 889                                    <NA>
## 890                                    <NA>
## 891                                    <NA>
## 892                                    <NA>
## 893                                    <NA>
## 894                                    <NA>
## 895                                    <NA>
## 896                                    <NA>
## 897                                    <NA>
## 898                                    <NA>
## 899                                    <NA>
## 900                                    <NA>
## 901                                Victoria
## 902                                    <NA>
## 903                                    <NA>
## 904                                    <NA>
## 905                                    <NA>
## 906                                    <NA>
## 907                                    <NA>
## 908                                    <NA>
## 909                                    <NA>
## 910                                    <NA>
## 911                                    <NA>
## 912                                    <NA>
## 913                                    <NA>
## 914                                    <NA>
## 915                                    <NA>
## 916                                    <NA>
## 917                                    <NA>
## 918                                    <NA>
## 919                                    <NA>
## 920                                    <NA>
## 921                                    <NA>
## 922                                    <NA>
## 923                                    <NA>
## 924                                    <NA>
## 925                                    <NA>
## 926                                    <NA>
## 927                                    <NA>
## 928                                    <NA>
## 929                                    <NA>
## 930                                    <NA>
## 931                                    <NA>
## 932                                    <NA>
## 933                                    <NA>
## 934                                    <NA>
## 935                                    <NA>
## 936                                    <NA>
## 937                                    <NA>
## 938                                    <NA>
## 939                                    <NA>
## 940                                    <NA>
## 941                                    <NA>
## 942                                    <NA>
## 943                                    <NA>
## 944                                    <NA>
## 945                                    <NA>
## 946                                    <NA>
## 947                                    <NA>
## 948                                    <NA>
## 949                                    <NA>
## 950                                    <NA>
## 951                                    <NA>
## 952                                    <NA>
## 953                                    <NA>
## 954                                    <NA>
## 955                                    <NA>
## 956                                    <NA>
## 957                                    <NA>
## 958                                    <NA>
## 959                                    <NA>
## 960                                    <NA>
## 961                                    <NA>
## 962                                    <NA>
## 963                                    <NA>
## 964                                    <NA>
## 965                                    <NA>
## 966                                    <NA>
## 967                                    <NA>
## 968                                    <NA>
## 969                                    <NA>
## 970                                    <NA>
## 971                                    <NA>
## 972                              South East
## 973                                    <NA>
## 974                                    <NA>
## 975                                    <NA>
## 976                                    <NA>
## 977                                    <NA>
## 978                                    <NA>
## 979                                    <NA>
## 980                                    <NA>
## 981                                    <NA>
## 982                                    <NA>
## 983                                    <NA>
## 984                                    <NA>
## 985                                    <NA>
## 986                                    <NA>
## 987                                    <NA>
## 988                                    <NA>
## 989                                    <NA>
## 990                                    <NA>
## 991                                    <NA>
## 992                                    <NA>
## 993                                    <NA>
## 994                                    <NA>
## 995                                    <NA>
## 996                                    <NA>
## 997                                    <NA>
## 998                                    <NA>
## 999                                    <NA>
## 1000                                   <NA>
## 1001                                   <NA>
## 1002                                   <NA>
## 1003                                   <NA>
## 1004                                   <NA>
## 1005                                   <NA>
## 1006                                   <NA>
## 1007                                   <NA>
## 1008                                   <NA>
## 1009                                   <NA>
## 1010 California Highway Patrol Baldwin Park
## 1011                                   <NA>
## 1012                                   <NA>
## 1013                                   <NA>
## 1014                                   <NA>
## 1015                                   <NA>
## 1016                                   <NA>
## 1017                                   <NA>
## 1018                                   <NA>
## 1019                                   <NA>
## 1020                                   <NA>
## 1021                                   <NA>
## 1022                                   <NA>
## 1023                                   <NA>
## 1024                                   <NA>
## 1025                                   <NA>
## 1026                                   <NA>
## 1027                                   <NA>
## 1028                                   <NA>
## 1029                                   <NA>
## 1030                                   <NA>
## 1031                                   <NA>
## 1032                                   <NA>
## 1033                                   <NA>
## 1034                                   <NA>
## 1035                                   <NA>
## 1036                                   <NA>
## 1037                                   <NA>
## 1038                                   <NA>
## 1039                                   <NA>
## 1040                                   <NA>
## 1041                                   <NA>
## 1042                                   <NA>
## 1043                                   Rome
## 1044                                   <NA>
## 1045                                   <NA>
## 1046                                   <NA>
## 1047                                   <NA>
## 1048                                   <NA>
## 1049                                   <NA>
## 1050                                   <NA>
## 1051                                   <NA>
## 1052                                   <NA>
## 1053                                   <NA>
## 1054                                   <NA>
## 1055                                   <NA>
## 1056                                   <NA>
## 1057                                   <NA>
## 1058                                   <NA>
## 1059                                   <NA>
## 1060                                   <NA>
## 1061                                   <NA>
## 1062                                   <NA>
## 1063                                   <NA>
## 1064                                   <NA>
## 1065                                   <NA>
## 1066                                   <NA>
## 1067                                   <NA>
## 1068                                   <NA>
## 1069                                   <NA>
## 1070                                   <NA>
## 1071                                   <NA>
## 1072                                   <NA>
## 1073                                   <NA>
## 1074                                   <NA>
## 1075                                   <NA>
## 1076                                   <NA>
## 1077                                   <NA>
## 1078                                   <NA>
## 1079                                   <NA>
## 1080                                   <NA>
## 1081                                   <NA>
## 1082                                   <NA>
## 1083                                   <NA>
## 1084                                   <NA>
## 1085                                   <NA>
## 1086                                   <NA>
## 1087                                   <NA>
## 1088                                   <NA>
## 1089                                   <NA>
## 1090                                   <NA>
## 1091                                   <NA>
## 1092                                   <NA>
## 1093                                   <NA>
## 1094                                   <NA>
## 1095                                   <NA>
## 1096                                   <NA>
## 1097                                   <NA>
## 1098                                   <NA>
## 1099                                   <NA>
## 1100                                   <NA>
## 1101                                   <NA>
## 1102                       Lytham St. Annes
## 1103                                   <NA>
## 1104                                   <NA>
## 1105                                   <NA>
## 1106                                   <NA>
## 1107                                   <NA>
## 1108                                   <NA>
## 1109                                   <NA>
## 1110                                   <NA>
## 1111                                   <NA>
##                             place_full_name place_type              country
## 1                                      <NA>       <NA>                 <NA>
## 2                                      <NA>       <NA>                 <NA>
## 3                                      <NA>       <NA>                 <NA>
## 4                                      <NA>       <NA>                 <NA>
## 5                             Twinsburg, OH       city        United States
## 6                                      <NA>       <NA>                 <NA>
## 7                                      <NA>       <NA>                 <NA>
## 8                                      <NA>       <NA>                 <NA>
## 9                                      <NA>       <NA>                 <NA>
## 10                                     <NA>       <NA>                 <NA>
## 11                                     <NA>       <NA>                 <NA>
## 12                               Texas, USA      admin        United States
## 13                                     <NA>       <NA>                 <NA>
## 14                                     <NA>       <NA>                 <NA>
## 15                                     <NA>       <NA>                 <NA>
## 16                                     <NA>       <NA>                 <NA>
## 17                                     <NA>       <NA>                 <NA>
## 18                                     <NA>       <NA>                 <NA>
## 19                                     <NA>       <NA>                 <NA>
## 20                                     <NA>       <NA>                 <NA>
## 21                                     <NA>       <NA>                 <NA>
## 22                                     <NA>       <NA>                 <NA>
## 23                                     <NA>       <NA>                 <NA>
## 24                                     <NA>       <NA>                 <NA>
## 25                                     <NA>       <NA>                 <NA>
## 26                                     <NA>       <NA>                 <NA>
## 27                    Chatham-Kent, Ontario       city               Canada
## 28                                     <NA>       <NA>                 <NA>
## 29                                     <NA>       <NA>                 <NA>
## 30                                     <NA>       <NA>                 <NA>
## 31                                     <NA>       <NA>                 <NA>
## 32                                     <NA>       <NA>                 <NA>
## 33                                     <NA>       <NA>                 <NA>
## 34                                     <NA>       <NA>                 <NA>
## 35                                     <NA>       <NA>                 <NA>
## 36                                     <NA>       <NA>                 <NA>
## 37                                     <NA>       <NA>                 <NA>
## 38                                     <NA>       <NA>                 <NA>
## 39                                     <NA>       <NA>                 <NA>
## 40                                     <NA>       <NA>                 <NA>
## 41                                     <NA>       <NA>                 <NA>
## 42                                     <NA>       <NA>                 <NA>
## 43                                     <NA>       <NA>                 <NA>
## 44                                     <NA>       <NA>                 <NA>
## 45                                     <NA>       <NA>                 <NA>
## 46                                     <NA>       <NA>                 <NA>
## 47                                     <NA>       <NA>                 <NA>
## 48                                     <NA>       <NA>                 <NA>
## 49                                     <NA>       <NA>                 <NA>
## 50                                     <NA>       <NA>                 <NA>
## 51                                     <NA>       <NA>                 <NA>
## 52                                     <NA>       <NA>                 <NA>
## 53                                     <NA>       <NA>                 <NA>
## 54                                     <NA>       <NA>                 <NA>
## 55                                     <NA>       <NA>                 <NA>
## 56                                     <NA>       <NA>                 <NA>
## 57                                     <NA>       <NA>                 <NA>
## 58                                     <NA>       <NA>                 <NA>
## 59                                     <NA>       <NA>                 <NA>
## 60                                     <NA>       <NA>                 <NA>
## 61                                     <NA>       <NA>                 <NA>
## 62                                     <NA>       <NA>                 <NA>
## 63                                     <NA>       <NA>                 <NA>
## 64                                     <NA>       <NA>                 <NA>
## 65                                     <NA>       <NA>                 <NA>
## 66                                     <NA>       <NA>                 <NA>
## 67                                     <NA>       <NA>                 <NA>
## 68                                     <NA>       <NA>                 <NA>
## 69                                     <NA>       <NA>                 <NA>
## 70                                     <NA>       <NA>                 <NA>
## 71                                     <NA>       <NA>                 <NA>
## 72                                     <NA>       <NA>                 <NA>
## 73                                     <NA>       <NA>                 <NA>
## 74                                     <NA>       <NA>                 <NA>
## 75                                     <NA>       <NA>                 <NA>
## 76                                     <NA>       <NA>                 <NA>
## 77                                     <NA>       <NA>                 <NA>
## 78                                     <NA>       <NA>                 <NA>
## 79                       Camberwell, London       city       United Kingdom
## 80                                     <NA>       <NA>                 <NA>
## 81                           Nairobi, Kenya       city                Kenya
## 82                                     <NA>       <NA>                 <NA>
## 83                                     <NA>       <NA>                 <NA>
## 84                                     <NA>       <NA>                 <NA>
## 85                                     <NA>       <NA>                 <NA>
## 86                                     <NA>       <NA>                 <NA>
## 87                                     <NA>       <NA>                 <NA>
## 88                                     <NA>       <NA>                 <NA>
## 89                                     <NA>       <NA>                 <NA>
## 90                                     <NA>       <NA>                 <NA>
## 91                                     <NA>       <NA>                 <NA>
## 92                                     <NA>       <NA>                 <NA>
## 93                                     <NA>       <NA>                 <NA>
## 94                                     <NA>       <NA>                 <NA>
## 95                                     <NA>       <NA>                 <NA>
## 96                                     <NA>       <NA>                 <NA>
## 97                                     <NA>       <NA>                 <NA>
## 98                                     <NA>       <NA>                 <NA>
## 99                                     <NA>       <NA>                 <NA>
## 100                                    <NA>       <NA>                 <NA>
## 101                                    <NA>       <NA>                 <NA>
## 102                                    <NA>       <NA>                 <NA>
## 103                                    <NA>       <NA>                 <NA>
## 104                                    <NA>       <NA>                 <NA>
## 105                                    <NA>       <NA>                 <NA>
## 106                                    <NA>       <NA>                 <NA>
## 107                                    <NA>       <NA>                 <NA>
## 108                                    <NA>       <NA>                 <NA>
## 109                                    <NA>       <NA>                 <NA>
## 110                                    <NA>       <NA>                 <NA>
## 111                                    <NA>       <NA>                 <NA>
## 112                                    <NA>       <NA>                 <NA>
## 113                                    <NA>       <NA>                 <NA>
## 114                                    <NA>       <NA>                 <NA>
## 115                                    <NA>       <NA>                 <NA>
## 116                                    <NA>       <NA>                 <NA>
## 117                                    <NA>       <NA>                 <NA>
## 118                                    <NA>       <NA>                 <NA>
## 119                                    <NA>       <NA>                 <NA>
## 120                                    <NA>       <NA>                 <NA>
## 121                                    <NA>       <NA>                 <NA>
## 122                                    <NA>       <NA>                 <NA>
## 123                                    <NA>       <NA>                 <NA>
## 124                                    <NA>       <NA>                 <NA>
## 125                                    <NA>       <NA>                 <NA>
## 126                                    <NA>       <NA>                 <NA>
## 127                                    <NA>       <NA>                 <NA>
## 128                                    <NA>       <NA>                 <NA>
## 129                                    <NA>       <NA>                 <NA>
## 130                                    <NA>       <NA>                 <NA>
## 131                                    <NA>       <NA>                 <NA>
## 132                                    <NA>       <NA>                 <NA>
## 133                                    <NA>       <NA>                 <NA>
## 134                                    <NA>       <NA>                 <NA>
## 135                          Ikeja, Nigeria       city              Nigeria
## 136                                    <NA>       <NA>                 <NA>
## 137                                    <NA>       <NA>                 <NA>
## 138                                    <NA>       <NA>                 <NA>
## 139                                    <NA>       <NA>                 <NA>
## 140                                    <NA>       <NA>                 <NA>
## 141                                    <NA>       <NA>                 <NA>
## 142                                    <NA>       <NA>                 <NA>
## 143                                    <NA>       <NA>                 <NA>
## 144                                    <NA>       <NA>                 <NA>
## 145                                    <NA>       <NA>                 <NA>
## 146                                    <NA>       <NA>                 <NA>
## 147                                    <NA>       <NA>                 <NA>
## 148                                    <NA>       <NA>                 <NA>
## 149                                    <NA>       <NA>                 <NA>
## 150                                    <NA>       <NA>                 <NA>
## 151                                    <NA>       <NA>                 <NA>
## 152                                    <NA>       <NA>                 <NA>
## 153                                    <NA>       <NA>                 <NA>
## 154                                    <NA>       <NA>                 <NA>
## 155                                    <NA>       <NA>                 <NA>
## 156                                    <NA>       <NA>                 <NA>
## 157                    Dublin City, Ireland       city              Ireland
## 158                                    <NA>       <NA>                 <NA>
## 159                                    <NA>       <NA>                 <NA>
## 160                                    <NA>       <NA>                 <NA>
## 161                                    <NA>       <NA>                 <NA>
## 162                                    <NA>       <NA>                 <NA>
## 163                                    <NA>       <NA>                 <NA>
## 164                                    <NA>       <NA>                 <NA>
## 165                                    <NA>       <NA>                 <NA>
## 166                                    <NA>       <NA>                 <NA>
## 167                                    <NA>       <NA>                 <NA>
## 168                                    <NA>       <NA>                 <NA>
## 169                                    <NA>       <NA>                 <NA>
## 170                                    <NA>       <NA>                 <NA>
## 171                                    <NA>       <NA>                 <NA>
## 172                                    <NA>       <NA>                 <NA>
## 173                                    <NA>       <NA>                 <NA>
## 174                                    <NA>       <NA>                 <NA>
## 175                                    <NA>       <NA>                 <NA>
## 176                                    <NA>       <NA>                 <NA>
## 177                                    <NA>       <NA>                 <NA>
## 178                           Haveli, India       city                India
## 179                                    <NA>       <NA>                 <NA>
## 180                                    <NA>       <NA>                 <NA>
## 181                                    <NA>       <NA>                 <NA>
## 182                                    <NA>       <NA>                 <NA>
## 183                                    <NA>       <NA>                 <NA>
## 184                                    <NA>       <NA>                 <NA>
## 185                                    <NA>       <NA>                 <NA>
## 186                                    <NA>       <NA>                 <NA>
## 187                                    <NA>       <NA>                 <NA>
## 188                        Fayetteville, NC       city        United States
## 189                                    <NA>       <NA>                 <NA>
## 190                                    <NA>       <NA>                 <NA>
## 191                                    <NA>       <NA>                 <NA>
## 192                                    <NA>       <NA>                 <NA>
## 193                                    <NA>       <NA>                 <NA>
## 194                                    <NA>       <NA>                 <NA>
## 195                                    <NA>       <NA>                 <NA>
## 196                                    <NA>       <NA>                 <NA>
## 197                                    <NA>       <NA>                 <NA>
## 198                           United States    country        United States
## 199                                    <NA>       <NA>                 <NA>
## 200                                    <NA>       <NA>                 <NA>
## 201                                    <NA>       <NA>                 <NA>
## 202                                    <NA>       <NA>                 <NA>
## 203                                    <NA>       <NA>                 <NA>
## 204                                    <NA>       <NA>                 <NA>
## 205                                    <NA>       <NA>                 <NA>
## 206                                    <NA>       <NA>                 <NA>
## 207                                    <NA>       <NA>                 <NA>
## 208                                    <NA>       <NA>                 <NA>
## 209                                    <NA>       <NA>                 <NA>
## 210                                    <NA>       <NA>                 <NA>
## 211                                    <NA>       <NA>                 <NA>
## 212                                    <NA>       <NA>                 <NA>
## 213                                    <NA>       <NA>                 <NA>
## 214                                    <NA>       <NA>                 <NA>
## 215                                    <NA>       <NA>                 <NA>
## 216                                    <NA>       <NA>                 <NA>
## 217                                    <NA>       <NA>                 <NA>
## 218                                    <NA>       <NA>                 <NA>
## 219                                    <NA>       <NA>                 <NA>
## 220                                    <NA>       <NA>                 <NA>
## 221                                    <NA>       <NA>                 <NA>
## 222                                    <NA>       <NA>                 <NA>
## 223                                    <NA>       <NA>                 <NA>
## 224                                    <NA>       <NA>                 <NA>
## 225                                    <NA>       <NA>                 <NA>
## 226                      West Hollywood, CA       city        United States
## 227                             Kansas, USA      admin        United States
## 228                                    <NA>       <NA>                 <NA>
## 229                                    <NA>       <NA>                 <NA>
## 230                                    <NA>       <NA>                 <NA>
## 231                                    <NA>       <NA>                 <NA>
## 232                                    <NA>       <NA>                 <NA>
## 233                                    <NA>       <NA>                 <NA>
## 234                     Leamington, Ontario       city               Canada
## 235                                    <NA>       <NA>                 <NA>
## 236                                    <NA>       <NA>                 <NA>
## 237                                    <NA>       <NA>                 <NA>
## 238                                    <NA>       <NA>                 <NA>
## 239                                    <NA>       <NA>                 <NA>
## 240                                    <NA>       <NA>                 <NA>
## 241                                    <NA>       <NA>                 <NA>
## 242                                    <NA>       <NA>                 <NA>
## 243                                    <NA>       <NA>                 <NA>
## 244                                    <NA>       <NA>                 <NA>
## 245                                    <NA>       <NA>                 <NA>
## 246                                    <NA>       <NA>                 <NA>
## 247                                    <NA>       <NA>                 <NA>
## 248                                    <NA>       <NA>                 <NA>
## 249                                    <NA>       <NA>                 <NA>
## 250                                    <NA>       <NA>                 <NA>
## 251                                    <NA>       <NA>                 <NA>
## 252                                    <NA>       <NA>                 <NA>
## 253                                    <NA>       <NA>                 <NA>
## 254                                    <NA>       <NA>                 <NA>
## 255                                    <NA>       <NA>                 <NA>
## 256                                    <NA>       <NA>                 <NA>
## 257                                    <NA>       <NA>                 <NA>
## 258                                    <NA>       <NA>                 <NA>
## 259                       State College, PA       city        United States
## 260                                    <NA>       <NA>                 <NA>
## 261                                    <NA>       <NA>                 <NA>
## 262                                    <NA>       <NA>                 <NA>
## 263                                    <NA>       <NA>                 <NA>
## 264                                    <NA>       <NA>                 <NA>
## 265                                    <NA>       <NA>                 <NA>
## 266                                    <NA>       <NA>                 <NA>
## 267                                    <NA>       <NA>                 <NA>
## 268                                    <NA>       <NA>                 <NA>
## 269                                    <NA>       <NA>                 <NA>
## 270                                    <NA>       <NA>                 <NA>
## 271                                    <NA>       <NA>                 <NA>
## 272                                    <NA>       <NA>                 <NA>
## 273                                    <NA>       <NA>                 <NA>
## 274                                    <NA>       <NA>                 <NA>
## 275                                    <NA>       <NA>                 <NA>
## 276                                    <NA>       <NA>                 <NA>
## 277                                    <NA>       <NA>                 <NA>
## 278                                    <NA>       <NA>                 <NA>
## 279                                    <NA>       <NA>                 <NA>
## 280                                    <NA>       <NA>                 <NA>
## 281                                    <NA>       <NA>                 <NA>
## 282                                    <NA>       <NA>                 <NA>
## 283                                    <NA>       <NA>                 <NA>
## 284                                    <NA>       <NA>                 <NA>
## 285                                    <NA>       <NA>                 <NA>
## 286                                    <NA>       <NA>                 <NA>
## 287                                    <NA>       <NA>                 <NA>
## 288                                    <NA>       <NA>                 <NA>
## 289                                    <NA>       <NA>                 <NA>
## 290                                    <NA>       <NA>                 <NA>
## 291         Abu Dhabi, United Arab Emirates      admin United Arab Emirates
## 292                                    <NA>       <NA>                 <NA>
## 293                                    <NA>       <NA>                 <NA>
## 294                                    <NA>       <NA>                 <NA>
## 295                                    <NA>       <NA>                 <NA>
## 296                                    <NA>       <NA>                 <NA>
## 297                                    <NA>       <NA>                 <NA>
## 298                                    <NA>       <NA>                 <NA>
## 299                                    <NA>       <NA>                 <NA>
## 300                                    <NA>       <NA>                 <NA>
## 301                                    <NA>       <NA>                 <NA>
## 302                                    <NA>       <NA>                 <NA>
## 303                                    <NA>       <NA>                 <NA>
## 304                                    <NA>       <NA>                 <NA>
## 305                                    <NA>       <NA>                 <NA>
## 306                                    <NA>       <NA>                 <NA>
## 307                                    <NA>       <NA>                 <NA>
## 308                                    <NA>       <NA>                 <NA>
## 309                                    <NA>       <NA>                 <NA>
## 310                                    <NA>       <NA>                 <NA>
## 311                                    <NA>       <NA>                 <NA>
## 312                                    <NA>       <NA>                 <NA>
## 313                                    <NA>       <NA>                 <NA>
## 314                                    <NA>       <NA>                 <NA>
## 315                                    <NA>       <NA>                 <NA>
## 316                                    <NA>       <NA>                 <NA>
## 317                                    <NA>       <NA>                 <NA>
## 318                                    <NA>       <NA>                 <NA>
## 319                                    <NA>       <NA>                 <NA>
## 320                                    <NA>       <NA>                 <NA>
## 321                                    <NA>       <NA>                 <NA>
## 322                                    <NA>       <NA>                 <NA>
## 323                                    <NA>       <NA>                 <NA>
## 324                                    <NA>       <NA>                 <NA>
## 325                                    <NA>       <NA>                 <NA>
## 326                                    <NA>       <NA>                 <NA>
## 327                                    <NA>       <NA>                 <NA>
## 328                                    <NA>       <NA>                 <NA>
## 329                                    <NA>       <NA>                 <NA>
## 330                                    <NA>       <NA>                 <NA>
## 331                                    <NA>       <NA>                 <NA>
## 332                                    <NA>       <NA>                 <NA>
## 333                                    <NA>       <NA>                 <NA>
## 334                                    <NA>       <NA>                 <NA>
## 335                                    <NA>       <NA>                 <NA>
## 336                                    <NA>       <NA>                 <NA>
## 337                                    <NA>       <NA>                 <NA>
## 338                                    <NA>       <NA>                 <NA>
## 339                                    <NA>       <NA>                 <NA>
## 340                                    <NA>       <NA>                 <NA>
## 341                                    <NA>       <NA>                 <NA>
## 342                                    <NA>       <NA>                 <NA>
## 343                                    <NA>       <NA>                 <NA>
## 344                                    <NA>       <NA>                 <NA>
## 345                                    <NA>       <NA>                 <NA>
## 346                                    <NA>       <NA>                 <NA>
## 347                                    <NA>       <NA>                 <NA>
## 348                                    <NA>       <NA>                 <NA>
## 349                                    <NA>       <NA>                 <NA>
## 350                                    <NA>       <NA>                 <NA>
## 351                                    <NA>       <NA>                 <NA>
## 352                                    <NA>       <NA>                 <NA>
## 353                                    <NA>       <NA>                 <NA>
## 354                                    <NA>       <NA>                 <NA>
## 355                                    <NA>       <NA>                 <NA>
## 356                                    <NA>       <NA>                 <NA>
## 357                  Young, New South Wales       city            Australia
## 358                                    <NA>       <NA>                 <NA>
## 359                                    <NA>       <NA>                 <NA>
## 360                          Abuja, Nigeria       city              Nigeria
## 361                                    <NA>       <NA>                 <NA>
## 362                                    <NA>       <NA>                 <NA>
## 363                                    <NA>       <NA>                 <NA>
## 364                                    <NA>       <NA>                 <NA>
## 365                                    <NA>       <NA>                 <NA>
## 366                                    <NA>       <NA>                 <NA>
## 367                                    <NA>       <NA>                 <NA>
## 368                                    <NA>       <NA>                 <NA>
## 369                                    <NA>       <NA>                 <NA>
## 370                                    <NA>       <NA>                 <NA>
## 371                                    <NA>       <NA>                 <NA>
## 372                                    <NA>       <NA>                 <NA>
## 373                                    <NA>       <NA>                 <NA>
## 374                                    <NA>       <NA>                 <NA>
## 375                                    <NA>       <NA>                 <NA>
## 376                                    <NA>       <NA>                 <NA>
## 377                                    <NA>       <NA>                 <NA>
## 378                                    <NA>       <NA>                 <NA>
## 379                                    <NA>       <NA>                 <NA>
## 380                                    <NA>       <NA>                 <NA>
## 381                                    <NA>       <NA>                 <NA>
## 382                                    <NA>       <NA>                 <NA>
## 383                                    <NA>       <NA>                 <NA>
## 384                         Ludhiana, India       city                India
## 385                                    <NA>       <NA>                 <NA>
## 386                         Oldham, England       city       United Kingdom
## 387                                    <NA>       <NA>                 <NA>
## 388                       Pennsylvania, USA      admin        United States
## 389                                    <NA>       <NA>                 <NA>
## 390                                    <NA>       <NA>                 <NA>
## 391                                    <NA>       <NA>                 <NA>
## 392                                    <NA>       <NA>                 <NA>
## 393                                    <NA>       <NA>                 <NA>
## 394                                    <NA>       <NA>                 <NA>
## 395                                    <NA>       <NA>                 <NA>
## 396                                    <NA>       <NA>                 <NA>
## 397                                    <NA>       <NA>                 <NA>
## 398                                    <NA>       <NA>                 <NA>
## 399                                    <NA>       <NA>                 <NA>
## 400                                    <NA>       <NA>                 <NA>
## 401                                    <NA>       <NA>                 <NA>
## 402                                    <NA>       <NA>                 <NA>
## 403                                    <NA>       <NA>                 <NA>
## 404                                    <NA>       <NA>                 <NA>
## 405                                    <NA>       <NA>                 <NA>
## 406                                    <NA>       <NA>                 <NA>
## 407                                    <NA>       <NA>                 <NA>
## 408                                    <NA>       <NA>                 <NA>
## 409                                    <NA>       <NA>                 <NA>
## 410                                    <NA>       <NA>                 <NA>
## 411                                    <NA>       <NA>                 <NA>
## 412                                    <NA>       <NA>                 <NA>
## 413                                    <NA>       <NA>                 <NA>
## 414                                    <NA>       <NA>                 <NA>
## 415                                    <NA>       <NA>                 <NA>
## 416                                    <NA>       <NA>                 <NA>
## 417                              Conroe, TX       city        United States
## 418                                    <NA>       <NA>                 <NA>
## 419                                    <NA>       <NA>                 <NA>
## 420                                    <NA>       <NA>                 <NA>
## 421                                    <NA>       <NA>                 <NA>
## 422                                    <NA>       <NA>                 <NA>
## 423                                    <NA>       <NA>                 <NA>
## 424                                    <NA>       <NA>                 <NA>
## 425                                    <NA>       <NA>                 <NA>
## 426                                    <NA>       <NA>                 <NA>
## 427                                    <NA>       <NA>                 <NA>
## 428                                    <NA>       <NA>                 <NA>
## 429                                    <NA>       <NA>                 <NA>
## 430                                    <NA>       <NA>                 <NA>
## 431                                    <NA>       <NA>                 <NA>
## 432                                    <NA>       <NA>                 <NA>
## 433                                    <NA>       <NA>                 <NA>
## 434                                    <NA>       <NA>                 <NA>
## 435                                    <NA>       <NA>                 <NA>
## 436                                    <NA>       <NA>                 <NA>
## 437                                    <NA>       <NA>                 <NA>
## 438                                    <NA>       <NA>                 <NA>
## 439                                    <NA>       <NA>                 <NA>
## 440                                    <NA>       <NA>                 <NA>
## 441                                    <NA>       <NA>                 <NA>
## 442                                    <NA>       <NA>                 <NA>
## 443                                    <NA>       <NA>                 <NA>
## 444                       Hamilton, Ontario       city               Canada
## 445                                    <NA>       <NA>                 <NA>
## 446                                    <NA>       <NA>                 <NA>
## 447                                    <NA>       <NA>                 <NA>
## 448                                    <NA>       <NA>                 <NA>
## 449                                    <NA>       <NA>                 <NA>
## 450                                    <NA>       <NA>                 <NA>
## 451                                    <NA>       <NA>                 <NA>
## 452                                    <NA>       <NA>                 <NA>
## 453                                    <NA>       <NA>                 <NA>
## 454                                    <NA>       <NA>                 <NA>
## 455                                    <NA>       <NA>                 <NA>
## 456                                    <NA>       <NA>                 <NA>
## 457                                    <NA>       <NA>                 <NA>
## 458                                    <NA>       <NA>                 <NA>
## 459                                    <NA>       <NA>                 <NA>
## 460                                    <NA>       <NA>                 <NA>
## 461                                    <NA>       <NA>                 <NA>
## 462                                    <NA>       <NA>                 <NA>
## 463                                    <NA>       <NA>                 <NA>
## 464                                    <NA>       <NA>                 <NA>
## 465                                    <NA>       <NA>                 <NA>
## 466                                    <NA>       <NA>                 <NA>
## 467                                    <NA>       <NA>                 <NA>
## 468                                    <NA>       <NA>                 <NA>
## 469                                    <NA>       <NA>                 <NA>
## 470                                    <NA>       <NA>                 <NA>
## 471                                    <NA>       <NA>                 <NA>
## 472                                    <NA>       <NA>                 <NA>
## 473                                    <NA>       <NA>                 <NA>
## 474                                    <NA>       <NA>                 <NA>
## 475                                    <NA>       <NA>                 <NA>
## 476                                    <NA>       <NA>                 <NA>
## 477                                    <NA>       <NA>                 <NA>
## 478                                    <NA>       <NA>                 <NA>
## 479                                    <NA>       <NA>                 <NA>
## 480                                    <NA>       <NA>                 <NA>
## 481                                    <NA>       <NA>                 <NA>
## 482                                    <NA>       <NA>                 <NA>
## 483                                    <NA>       <NA>                 <NA>
## 484                                    <NA>       <NA>                 <NA>
## 485                                    <NA>       <NA>                 <NA>
## 486                                    <NA>       <NA>                 <NA>
## 487                                    <NA>       <NA>                 <NA>
## 488                                    <NA>       <NA>                 <NA>
## 489                                    <NA>       <NA>                 <NA>
## 490                                    <NA>       <NA>                 <NA>
## 491                                    <NA>       <NA>                 <NA>
## 492                                    <NA>       <NA>                 <NA>
## 493                                    <NA>       <NA>                 <NA>
## 494                                    <NA>       <NA>                 <NA>
## 495                            Columbus, GA       city        United States
## 496                                    <NA>       <NA>                 <NA>
## 497                                    <NA>       <NA>                 <NA>
## 498                                    <NA>       <NA>                 <NA>
## 499                                    <NA>       <NA>                 <NA>
## 500                                    <NA>       <NA>                 <NA>
## 501                                    <NA>       <NA>                 <NA>
## 502                                    <NA>       <NA>                 <NA>
## 503                           East Lyme, CT       city        United States
## 504                                    <NA>       <NA>                 <NA>
## 505                                    <NA>       <NA>                 <NA>
## 506                                    <NA>       <NA>                 <NA>
## 507                                    <NA>       <NA>                 <NA>
## 508                                    <NA>       <NA>                 <NA>
## 509                                    <NA>       <NA>                 <NA>
## 510                                    <NA>       <NA>                 <NA>
## 511                                    <NA>       <NA>                 <NA>
## 512                                    <NA>       <NA>                 <NA>
## 513                                    <NA>       <NA>                 <NA>
## 514                                    <NA>       <NA>                 <NA>
## 515                                    <NA>       <NA>                 <NA>
## 516                                    <NA>       <NA>                 <NA>
## 517                                    <NA>       <NA>                 <NA>
## 518                                    <NA>       <NA>                 <NA>
## 519                                    <NA>       <NA>                 <NA>
## 520                                    <NA>       <NA>                 <NA>
## 521                        Mount Laurel, NJ       city        United States
## 522                                    <NA>       <NA>                 <NA>
## 523                                    <NA>       <NA>                 <NA>
## 524                                    <NA>       <NA>                 <NA>
## 525                                    <NA>       <NA>                 <NA>
## 526                                    <NA>       <NA>                 <NA>
## 527                                    <NA>       <NA>                 <NA>
## 528                                    <NA>       <NA>                 <NA>
## 529                                    <NA>       <NA>                 <NA>
## 530                                    <NA>       <NA>                 <NA>
## 531                                    <NA>       <NA>                 <NA>
## 532                                    <NA>       <NA>                 <NA>
## 533                                    <NA>       <NA>                 <NA>
## 534                                    <NA>       <NA>                 <NA>
## 535                                    <NA>       <NA>                 <NA>
## 536                                    <NA>       <NA>                 <NA>
## 537                                    <NA>       <NA>                 <NA>
## 538                                    <NA>       <NA>                 <NA>
## 539                                    <NA>       <NA>                 <NA>
## 540                                    <NA>       <NA>                 <NA>
## 541                                    <NA>       <NA>                 <NA>
## 542                                    <NA>       <NA>                 <NA>
## 543                                    <NA>       <NA>                 <NA>
## 544                                    <NA>       <NA>                 <NA>
## 545                                    <NA>       <NA>                 <NA>
## 546                                    <NA>       <NA>                 <NA>
## 547                                    <NA>       <NA>                 <NA>
## 548                                    <NA>       <NA>                 <NA>
## 549                                    <NA>       <NA>                 <NA>
## 550                                    <NA>       <NA>                 <NA>
## 551                                    <NA>       <NA>                 <NA>
## 552                                    <NA>       <NA>                 <NA>
## 553                                    <NA>       <NA>                 <NA>
## 554                                    <NA>       <NA>                 <NA>
## 555                                    <NA>       <NA>                 <NA>
## 556                                    <NA>       <NA>                 <NA>
## 557                                    <NA>       <NA>                 <NA>
## 558                                    <NA>       <NA>                 <NA>
## 559                                    <NA>       <NA>                 <NA>
## 560                                    <NA>       <NA>                 <NA>
## 561                        Jo Malone London        poi        United States
## 562                                    <NA>       <NA>                 <NA>
## 563                                    <NA>       <NA>                 <NA>
## 564                                    <NA>       <NA>                 <NA>
## 565                                    <NA>       <NA>                 <NA>
## 566                                    <NA>       <NA>                 <NA>
## 567                                    <NA>       <NA>                 <NA>
## 568                                    <NA>       <NA>                 <NA>
## 569                                    <NA>       <NA>                 <NA>
## 570                                    <NA>       <NA>                 <NA>
## 571                                    <NA>       <NA>                 <NA>
## 572                                    <NA>       <NA>                 <NA>
## 573                                    <NA>       <NA>                 <NA>
## 574                                    <NA>       <NA>                 <NA>
## 575                                    <NA>       <NA>                 <NA>
## 576                                    <NA>       <NA>                 <NA>
## 577                                    <NA>       <NA>                 <NA>
## 578                                    <NA>       <NA>                 <NA>
## 579                                    <NA>       <NA>                 <NA>
## 580                                    <NA>       <NA>                 <NA>
## 581                                    <NA>       <NA>                 <NA>
## 582                                    <NA>       <NA>                 <NA>
## 583                                    <NA>       <NA>                 <NA>
## 584                                    <NA>       <NA>                 <NA>
## 585                                    <NA>       <NA>                 <NA>
## 586                                    <NA>       <NA>                 <NA>
## 587                                    <NA>       <NA>                 <NA>
## 588                                    <NA>       <NA>                 <NA>
## 589                                    <NA>       <NA>                 <NA>
## 590                         California, USA      admin        United States
## 591                                    <NA>       <NA>                 <NA>
## 592                                    <NA>       <NA>                 <NA>
## 593                                    <NA>       <NA>                 <NA>
## 594                                    <NA>       <NA>                 <NA>
## 595                                    <NA>       <NA>                 <NA>
## 596                                    <NA>       <NA>                 <NA>
## 597                                    <NA>       <NA>                 <NA>
## 598                                    <NA>       <NA>                 <NA>
## 599                                    <NA>       <NA>                 <NA>
## 600                                    <NA>       <NA>                 <NA>
## 601                                    <NA>       <NA>                 <NA>
## 602                                    <NA>       <NA>                 <NA>
## 603                                    <NA>       <NA>                 <NA>
## 604                                    <NA>       <NA>                 <NA>
## 605                                    <NA>       <NA>                 <NA>
## 606                                    <NA>       <NA>                 <NA>
## 607                                    <NA>       <NA>                 <NA>
## 608                                    <NA>       <NA>                 <NA>
## 609                                    <NA>       <NA>                 <NA>
## 610                                    <NA>       <NA>                 <NA>
## 611                                    <NA>       <NA>                 <NA>
## 612                                    <NA>       <NA>                 <NA>
## 613                                    <NA>       <NA>                 <NA>
## 614                                    <NA>       <NA>                 <NA>
## 615                                    <NA>       <NA>                 <NA>
## 616                                    <NA>       <NA>                 <NA>
## 617                                    <NA>       <NA>                 <NA>
## 618                                    <NA>       <NA>                 <NA>
## 619                                    <NA>       <NA>                 <NA>
## 620                                    <NA>       <NA>                 <NA>
## 621                                    <NA>       <NA>                 <NA>
## 622                                    <NA>       <NA>                 <NA>
## 623                                    <NA>       <NA>                 <NA>
## 624                                    <NA>       <NA>                 <NA>
## 625                                    <NA>       <NA>                 <NA>
## 626                                    <NA>       <NA>                 <NA>
## 627                                    <NA>       <NA>                 <NA>
## 628                                    <NA>       <NA>                 <NA>
## 629                                    <NA>       <NA>                 <NA>
## 630                                    <NA>       <NA>                 <NA>
## 631                                    <NA>       <NA>                 <NA>
## 632                                    <NA>       <NA>                 <NA>
## 633                                    <NA>       <NA>                 <NA>
## 634                                    <NA>       <NA>                 <NA>
## 635                                    <NA>       <NA>                 <NA>
## 636                                    <NA>       <NA>                 <NA>
## 637                                    <NA>       <NA>                 <NA>
## 638                                    <NA>       <NA>                 <NA>
## 639                                    <NA>       <NA>                 <NA>
## 640                                    <NA>       <NA>                 <NA>
## 641                                    <NA>       <NA>                 <NA>
## 642                                    <NA>       <NA>                 <NA>
## 643                                    <NA>       <NA>                 <NA>
## 644                                    <NA>       <NA>                 <NA>
## 645                                    <NA>       <NA>                 <NA>
## 646                                    <NA>       <NA>                 <NA>
## 647                                    <NA>       <NA>                 <NA>
## 648                                    <NA>       <NA>                 <NA>
## 649                                    <NA>       <NA>                 <NA>
## 650                                    <NA>       <NA>                 <NA>
## 651                                    <NA>       <NA>                 <NA>
## 652                                    <NA>       <NA>                 <NA>
## 653                                    <NA>       <NA>                 <NA>
## 654                                    <NA>       <NA>                 <NA>
## 655                                    <NA>       <NA>                 <NA>
## 656                                    <NA>       <NA>                 <NA>
## 657                                    <NA>       <NA>                 <NA>
## 658                                    <NA>       <NA>                 <NA>
## 659                                    <NA>       <NA>                 <NA>
## 660                                    <NA>       <NA>                 <NA>
## 661                                    <NA>       <NA>                 <NA>
## 662                                    <NA>       <NA>                 <NA>
## 663                               Bronx, NY       city        United States
## 664                                    <NA>       <NA>                 <NA>
## 665                                    <NA>       <NA>                 <NA>
## 666                                    <NA>       <NA>                 <NA>
## 667                                    <NA>       <NA>                 <NA>
## 668                                    <NA>       <NA>                 <NA>
## 669                                    <NA>       <NA>                 <NA>
## 670                                    <NA>       <NA>                 <NA>
## 671                                    <NA>       <NA>                 <NA>
## 672                                    <NA>       <NA>                 <NA>
## 673                                    <NA>       <NA>                 <NA>
## 674                                    <NA>       <NA>                 <NA>
## 675                                    <NA>       <NA>                 <NA>
## 676                                    <NA>       <NA>                 <NA>
## 677                                    <NA>       <NA>                 <NA>
## 678                                    <NA>       <NA>                 <NA>
## 679                                    <NA>       <NA>                 <NA>
## 680                                    <NA>       <NA>                 <NA>
## 681                                    <NA>       <NA>                 <NA>
## 682                                    <NA>       <NA>                 <NA>
## 683                                    <NA>       <NA>                 <NA>
## 684                                    <NA>       <NA>                 <NA>
## 685                                    <NA>       <NA>                 <NA>
## 686                                    <NA>       <NA>                 <NA>
## 687                      Marina del Rey, CA       city        United States
## 688                                    <NA>       <NA>                 <NA>
## 689                                    <NA>       <NA>                 <NA>
## 690                                    <NA>       <NA>                 <NA>
## 691                                    <NA>       <NA>                 <NA>
## 692                                    <NA>       <NA>                 <NA>
## 693                                    <NA>       <NA>                 <NA>
## 694                                    <NA>       <NA>                 <NA>
## 695                                    <NA>       <NA>                 <NA>
## 696                                    <NA>       <NA>                 <NA>
## 697                                    <NA>       <NA>                 <NA>
## 698                                    <NA>       <NA>                 <NA>
## 699                                    <NA>       <NA>                 <NA>
## 700                                    <NA>       <NA>                 <NA>
## 701                                    <NA>       <NA>                 <NA>
## 702                                    <NA>       <NA>                 <NA>
## 703                                    <NA>       <NA>                 <NA>
## 704                                    <NA>       <NA>                 <NA>
## 705                                    <NA>       <NA>                 <NA>
## 706                                    <NA>       <NA>                 <NA>
## 707                                    <NA>       <NA>                 <NA>
## 708                                    <NA>       <NA>                 <NA>
## 709                                    <NA>       <NA>                 <NA>
## 710                                    <NA>       <NA>                 <NA>
## 711                                    <NA>       <NA>                 <NA>
## 712                                    <NA>       <NA>                 <NA>
## 713                                    <NA>       <NA>                 <NA>
## 714                                    <NA>       <NA>                 <NA>
## 715                                    <NA>       <NA>                 <NA>
## 716                                    <NA>       <NA>                 <NA>
## 717                                    <NA>       <NA>                 <NA>
## 718                                    <NA>       <NA>                 <NA>
## 719                                    <NA>       <NA>                 <NA>
## 720                                    <NA>       <NA>                 <NA>
## 721                                    <NA>       <NA>                 <NA>
## 722                                    <NA>       <NA>                 <NA>
## 723                                    <NA>       <NA>                 <NA>
## 724                                    <NA>       <NA>                 <NA>
## 725                                    <NA>       <NA>                 <NA>
## 726                                    <NA>       <NA>                 <NA>
## 727                                    <NA>       <NA>                 <NA>
## 728                                    <NA>       <NA>                 <NA>
## 729                                    <NA>       <NA>                 <NA>
## 730                                    <NA>       <NA>                 <NA>
## 731                                    <NA>       <NA>                 <NA>
## 732                                    <NA>       <NA>                 <NA>
## 733                                    <NA>       <NA>                 <NA>
## 734                    Shimo la Tewa, Kenya       city                Kenya
## 735                                    <NA>       <NA>                 <NA>
## 736                                    <NA>       <NA>                 <NA>
## 737                                    <NA>       <NA>                 <NA>
## 738                                    <NA>       <NA>                 <NA>
## 739                                    <NA>       <NA>                 <NA>
## 740                                    <NA>       <NA>                 <NA>
## 741                                    <NA>       <NA>                 <NA>
## 742                                    <NA>       <NA>                 <NA>
## 743                                    <NA>       <NA>                 <NA>
## 744                                    <NA>       <NA>                 <NA>
## 745                                    <NA>       <NA>                 <NA>
## 746                                    <NA>       <NA>                 <NA>
## 747                                    <NA>       <NA>                 <NA>
## 748                                    <NA>       <NA>                 <NA>
## 749                                    <NA>       <NA>                 <NA>
## 750                             Amherst, NY       city        United States
## 751                                    <NA>       <NA>                 <NA>
## 752                                    <NA>       <NA>                 <NA>
## 753                                    <NA>       <NA>                 <NA>
## 754                                    <NA>       <NA>                 <NA>
## 755                                   Libya    country                Libya
## 756                                    <NA>       <NA>                 <NA>
## 757                                    <NA>       <NA>                 <NA>
## 758                                    <NA>       <NA>                 <NA>
## 759                                    <NA>       <NA>                 <NA>
## 760                                    <NA>       <NA>                 <NA>
## 761                                    <NA>       <NA>                 <NA>
## 762                                    <NA>       <NA>                 <NA>
## 763                                    <NA>       <NA>                 <NA>
## 764                                    <NA>       <NA>                 <NA>
## 765                                    <NA>       <NA>                 <NA>
## 766                                    <NA>       <NA>                 <NA>
## 767                                    <NA>       <NA>                 <NA>
## 768                                    <NA>       <NA>                 <NA>
## 769                                    <NA>       <NA>                 <NA>
## 770                                    <NA>       <NA>                 <NA>
## 771                                    <NA>       <NA>                 <NA>
## 772                                    <NA>       <NA>                 <NA>
## 773                               Miami, FL       city        United States
## 774                                    <NA>       <NA>                 <NA>
## 775                                    <NA>       <NA>                 <NA>
## 776                                    <NA>       <NA>                 <NA>
## 777                                    <NA>       <NA>                 <NA>
## 778                                    <NA>       <NA>                 <NA>
## 779                                    <NA>       <NA>                 <NA>
## 780                                    <NA>       <NA>                 <NA>
## 781                       Pa Tong, Thailand       city             Thailand
## 782                                    <NA>       <NA>                 <NA>
## 783                         Lambeth, London       city       United Kingdom
## 784                                    <NA>       <NA>                 <NA>
## 785                       Pennsylvania, USA      admin        United States
## 786                           Iowa City, IA       city        United States
## 787                                    <NA>       <NA>                 <NA>
## 788                                    <NA>       <NA>                 <NA>
## 789                                    <NA>       <NA>                 <NA>
## 790                                    <NA>       <NA>                 <NA>
## 791                                    <NA>       <NA>                 <NA>
## 792                                    <NA>       <NA>                 <NA>
## 793                                    <NA>       <NA>                 <NA>
## 794                                    <NA>       <NA>                 <NA>
## 795                                    <NA>       <NA>                 <NA>
## 796                                    <NA>       <NA>                 <NA>
## 797                                    <NA>       <NA>                 <NA>
## 798                                    <NA>       <NA>                 <NA>
## 799                                    <NA>       <NA>                 <NA>
## 800                                    <NA>       <NA>                 <NA>
## 801                                    <NA>       <NA>                 <NA>
## 802                                    <NA>       <NA>                 <NA>
## 803                                    <NA>       <NA>                 <NA>
## 804                                    <NA>       <NA>                 <NA>
## 805                                    <NA>       <NA>                 <NA>
## 806                                    <NA>       <NA>                 <NA>
## 807                                    <NA>       <NA>                 <NA>
## 808                                    <NA>       <NA>                 <NA>
## 809                                    <NA>       <NA>                 <NA>
## 810                                    <NA>       <NA>                 <NA>
## 811                                    <NA>       <NA>                 <NA>
## 812                                    <NA>       <NA>                 <NA>
## 813                                    <NA>       <NA>                 <NA>
## 814                                    <NA>       <NA>                 <NA>
## 815                                    <NA>       <NA>                 <NA>
## 816                                    <NA>       <NA>                 <NA>
## 817                                    <NA>       <NA>                 <NA>
## 818                                    <NA>       <NA>                 <NA>
## 819                                    <NA>       <NA>                 <NA>
## 820                                    <NA>       <NA>                 <NA>
## 821                                    <NA>       <NA>                 <NA>
## 822                                    <NA>       <NA>                 <NA>
## 823                                    <NA>       <NA>                 <NA>
## 824                                    <NA>       <NA>                 <NA>
## 825                                    <NA>       <NA>                 <NA>
## 826                                    <NA>       <NA>                 <NA>
## 827                                    <NA>       <NA>                 <NA>
## 828                                    <NA>       <NA>                 <NA>
## 829                                    <NA>       <NA>                 <NA>
## 830                                    <NA>       <NA>                 <NA>
## 831                                    <NA>       <NA>                 <NA>
## 832                                    <NA>       <NA>                 <NA>
## 833                                    <NA>       <NA>                 <NA>
## 834                                    <NA>       <NA>                 <NA>
## 835                                    <NA>       <NA>                 <NA>
## 836                                    <NA>       <NA>                 <NA>
## 837                                    <NA>       <NA>                 <NA>
## 838                                    <NA>       <NA>                 <NA>
## 839                                    <NA>       <NA>                 <NA>
## 840                                    <NA>       <NA>                 <NA>
## 841                                    <NA>       <NA>                 <NA>
## 842                                    <NA>       <NA>                 <NA>
## 843                                    <NA>       <NA>                 <NA>
## 844                                    <NA>       <NA>                 <NA>
## 845                                    <NA>       <NA>                 <NA>
## 846                                    <NA>       <NA>                 <NA>
## 847                                    <NA>       <NA>                 <NA>
## 848                                    <NA>       <NA>                 <NA>
## 849                                    <NA>       <NA>                 <NA>
## 850                                    <NA>       <NA>                 <NA>
## 851                                    <NA>       <NA>                 <NA>
## 852                                    <NA>       <NA>                 <NA>
## 853                                    <NA>       <NA>                 <NA>
## 854                                    <NA>       <NA>                 <NA>
## 855                                    <NA>       <NA>                 <NA>
## 856                                    <NA>       <NA>                 <NA>
## 857                                    <NA>       <NA>                 <NA>
## 858                                    <NA>       <NA>                 <NA>
## 859                                    <NA>       <NA>                 <NA>
## 860                                    <NA>       <NA>                 <NA>
## 861                                    <NA>       <NA>                 <NA>
## 862                                    <NA>       <NA>                 <NA>
## 863                                    <NA>       <NA>                 <NA>
## 864                       San Francisco, CA       city        United States
## 865                                    <NA>       <NA>                 <NA>
## 866                                    <NA>       <NA>                 <NA>
## 867                                    <NA>       <NA>                 <NA>
## 868                                    <NA>       <NA>                 <NA>
## 869                                    <NA>       <NA>                 <NA>
## 870                                    <NA>       <NA>                 <NA>
## 871                                    <NA>       <NA>                 <NA>
## 872                                    <NA>       <NA>                 <NA>
## 873                                    <NA>       <NA>                 <NA>
## 874                                    <NA>       <NA>                 <NA>
## 875                                    <NA>       <NA>                 <NA>
## 876                                    <NA>       <NA>                 <NA>
## 877                                    <NA>       <NA>                 <NA>
## 878                                    <NA>       <NA>                 <NA>
## 879                                    <NA>       <NA>                 <NA>
## 880                                    <NA>       <NA>                 <NA>
## 881                                    <NA>       <NA>                 <NA>
## 882                                    <NA>       <NA>                 <NA>
## 883                  Bengaluru South, India       city                India
## 884                                    <NA>       <NA>                 <NA>
## 885                                    <NA>       <NA>                 <NA>
## 886                                    <NA>       <NA>                 <NA>
## 887                                    <NA>       <NA>                 <NA>
## 888                            Wheeling, WV       city        United States
## 889                                    <NA>       <NA>                 <NA>
## 890                                    <NA>       <NA>                 <NA>
## 891                                    <NA>       <NA>                 <NA>
## 892                                    <NA>       <NA>                 <NA>
## 893                                    <NA>       <NA>                 <NA>
## 894                                    <NA>       <NA>                 <NA>
## 895                                    <NA>       <NA>                 <NA>
## 896                                    <NA>       <NA>                 <NA>
## 897                                    <NA>       <NA>                 <NA>
## 898                                    <NA>       <NA>                 <NA>
## 899                                    <NA>       <NA>                 <NA>
## 900                                    <NA>       <NA>                 <NA>
## 901              Victoria, British Columbia       city               Canada
## 902                                    <NA>       <NA>                 <NA>
## 903                                    <NA>       <NA>                 <NA>
## 904                                    <NA>       <NA>                 <NA>
## 905                                    <NA>       <NA>                 <NA>
## 906                                    <NA>       <NA>                 <NA>
## 907                                    <NA>       <NA>                 <NA>
## 908                                    <NA>       <NA>                 <NA>
## 909                                    <NA>       <NA>                 <NA>
## 910                                    <NA>       <NA>                 <NA>
## 911                                    <NA>       <NA>                 <NA>
## 912                                    <NA>       <NA>                 <NA>
## 913                                    <NA>       <NA>                 <NA>
## 914                                    <NA>       <NA>                 <NA>
## 915                                    <NA>       <NA>                 <NA>
## 916                                    <NA>       <NA>                 <NA>
## 917                                    <NA>       <NA>                 <NA>
## 918                                    <NA>       <NA>                 <NA>
## 919                                    <NA>       <NA>                 <NA>
## 920                                    <NA>       <NA>                 <NA>
## 921                                    <NA>       <NA>                 <NA>
## 922                                    <NA>       <NA>                 <NA>
## 923                                    <NA>       <NA>                 <NA>
## 924                                    <NA>       <NA>                 <NA>
## 925                                    <NA>       <NA>                 <NA>
## 926                                    <NA>       <NA>                 <NA>
## 927                                    <NA>       <NA>                 <NA>
## 928                                    <NA>       <NA>                 <NA>
## 929                                    <NA>       <NA>                 <NA>
## 930                                    <NA>       <NA>                 <NA>
## 931                                    <NA>       <NA>                 <NA>
## 932                                    <NA>       <NA>                 <NA>
## 933                                    <NA>       <NA>                 <NA>
## 934                                    <NA>       <NA>                 <NA>
## 935                                    <NA>       <NA>                 <NA>
## 936                                    <NA>       <NA>                 <NA>
## 937                                    <NA>       <NA>                 <NA>
## 938                                    <NA>       <NA>                 <NA>
## 939                                    <NA>       <NA>                 <NA>
## 940                                    <NA>       <NA>                 <NA>
## 941                                    <NA>       <NA>                 <NA>
## 942                                    <NA>       <NA>                 <NA>
## 943                                    <NA>       <NA>                 <NA>
## 944                                    <NA>       <NA>                 <NA>
## 945                                    <NA>       <NA>                 <NA>
## 946                                    <NA>       <NA>                 <NA>
## 947                                    <NA>       <NA>                 <NA>
## 948                                    <NA>       <NA>                 <NA>
## 949                                    <NA>       <NA>                 <NA>
## 950                                    <NA>       <NA>                 <NA>
## 951                                    <NA>       <NA>                 <NA>
## 952                                    <NA>       <NA>                 <NA>
## 953                                    <NA>       <NA>                 <NA>
## 954                                    <NA>       <NA>                 <NA>
## 955                                    <NA>       <NA>                 <NA>
## 956                                    <NA>       <NA>                 <NA>
## 957                                    <NA>       <NA>                 <NA>
## 958                                    <NA>       <NA>                 <NA>
## 959                                    <NA>       <NA>                 <NA>
## 960                                    <NA>       <NA>                 <NA>
## 961                                    <NA>       <NA>                 <NA>
## 962                                    <NA>       <NA>                 <NA>
## 963                                    <NA>       <NA>                 <NA>
## 964                                    <NA>       <NA>                 <NA>
## 965                                    <NA>       <NA>                 <NA>
## 966                                    <NA>       <NA>                 <NA>
## 967                                    <NA>       <NA>                 <NA>
## 968                                    <NA>       <NA>                 <NA>
## 969                                    <NA>       <NA>                 <NA>
## 970                                    <NA>       <NA>                 <NA>
## 971                                    <NA>       <NA>                 <NA>
## 972                     South East, England      admin       United Kingdom
## 973                                    <NA>       <NA>                 <NA>
## 974                                    <NA>       <NA>                 <NA>
## 975                                    <NA>       <NA>                 <NA>
## 976                                    <NA>       <NA>                 <NA>
## 977                                    <NA>       <NA>                 <NA>
## 978                                    <NA>       <NA>                 <NA>
## 979                                    <NA>       <NA>                 <NA>
## 980                                    <NA>       <NA>                 <NA>
## 981                                    <NA>       <NA>                 <NA>
## 982                                    <NA>       <NA>                 <NA>
## 983                                    <NA>       <NA>                 <NA>
## 984                                    <NA>       <NA>                 <NA>
## 985                                    <NA>       <NA>                 <NA>
## 986                                    <NA>       <NA>                 <NA>
## 987                                    <NA>       <NA>                 <NA>
## 988                                    <NA>       <NA>                 <NA>
## 989                                    <NA>       <NA>                 <NA>
## 990                                    <NA>       <NA>                 <NA>
## 991                                    <NA>       <NA>                 <NA>
## 992                                    <NA>       <NA>                 <NA>
## 993                                    <NA>       <NA>                 <NA>
## 994                                    <NA>       <NA>                 <NA>
## 995                                    <NA>       <NA>                 <NA>
## 996                                    <NA>       <NA>                 <NA>
## 997                                    <NA>       <NA>                 <NA>
## 998                                    <NA>       <NA>                 <NA>
## 999                                    <NA>       <NA>                 <NA>
## 1000                                   <NA>       <NA>                 <NA>
## 1001                                   <NA>       <NA>                 <NA>
## 1002                                   <NA>       <NA>                 <NA>
## 1003                                   <NA>       <NA>                 <NA>
## 1004                                   <NA>       <NA>                 <NA>
## 1005                                   <NA>       <NA>                 <NA>
## 1006                                   <NA>       <NA>                 <NA>
## 1007                                   <NA>       <NA>                 <NA>
## 1008                                   <NA>       <NA>                 <NA>
## 1009                                   <NA>       <NA>                 <NA>
## 1010 California Highway Patrol Baldwin Park        poi        United States
## 1011                                   <NA>       <NA>                 <NA>
## 1012                                   <NA>       <NA>                 <NA>
## 1013                                   <NA>       <NA>                 <NA>
## 1014                                   <NA>       <NA>                 <NA>
## 1015                                   <NA>       <NA>                 <NA>
## 1016                                   <NA>       <NA>                 <NA>
## 1017                                   <NA>       <NA>                 <NA>
## 1018                                   <NA>       <NA>                 <NA>
## 1019                                   <NA>       <NA>                 <NA>
## 1020                                   <NA>       <NA>                 <NA>
## 1021                                   <NA>       <NA>                 <NA>
## 1022                                   <NA>       <NA>                 <NA>
## 1023                                   <NA>       <NA>                 <NA>
## 1024                                   <NA>       <NA>                 <NA>
## 1025                                   <NA>       <NA>                 <NA>
## 1026                                   <NA>       <NA>                 <NA>
## 1027                                   <NA>       <NA>                 <NA>
## 1028                                   <NA>       <NA>                 <NA>
## 1029                                   <NA>       <NA>                 <NA>
## 1030                                   <NA>       <NA>                 <NA>
## 1031                                   <NA>       <NA>                 <NA>
## 1032                                   <NA>       <NA>                 <NA>
## 1033                                   <NA>       <NA>                 <NA>
## 1034                                   <NA>       <NA>                 <NA>
## 1035                                   <NA>       <NA>                 <NA>
## 1036                                   <NA>       <NA>                 <NA>
## 1037                                   <NA>       <NA>                 <NA>
## 1038                                   <NA>       <NA>                 <NA>
## 1039                                   <NA>       <NA>                 <NA>
## 1040                                   <NA>       <NA>                 <NA>
## 1041                                   <NA>       <NA>                 <NA>
## 1042                                   <NA>       <NA>                 <NA>
## 1043                            Rome, Lazio       city                Italy
## 1044                                   <NA>       <NA>                 <NA>
## 1045                                   <NA>       <NA>                 <NA>
## 1046                                   <NA>       <NA>                 <NA>
## 1047                                   <NA>       <NA>                 <NA>
## 1048                                   <NA>       <NA>                 <NA>
## 1049                                   <NA>       <NA>                 <NA>
## 1050                                   <NA>       <NA>                 <NA>
## 1051                                   <NA>       <NA>                 <NA>
## 1052                                   <NA>       <NA>                 <NA>
## 1053                                   <NA>       <NA>                 <NA>
## 1054                                   <NA>       <NA>                 <NA>
## 1055                                   <NA>       <NA>                 <NA>
## 1056                                   <NA>       <NA>                 <NA>
## 1057                                   <NA>       <NA>                 <NA>
## 1058                                   <NA>       <NA>                 <NA>
## 1059                                   <NA>       <NA>                 <NA>
## 1060                                   <NA>       <NA>                 <NA>
## 1061                                   <NA>       <NA>                 <NA>
## 1062                                   <NA>       <NA>                 <NA>
## 1063                                   <NA>       <NA>                 <NA>
## 1064                                   <NA>       <NA>                 <NA>
## 1065                                   <NA>       <NA>                 <NA>
## 1066                                   <NA>       <NA>                 <NA>
## 1067                                   <NA>       <NA>                 <NA>
## 1068                                   <NA>       <NA>                 <NA>
## 1069                                   <NA>       <NA>                 <NA>
## 1070                                   <NA>       <NA>                 <NA>
## 1071                                   <NA>       <NA>                 <NA>
## 1072                                   <NA>       <NA>                 <NA>
## 1073                                   <NA>       <NA>                 <NA>
## 1074                                   <NA>       <NA>                 <NA>
## 1075                                   <NA>       <NA>                 <NA>
## 1076                                   <NA>       <NA>                 <NA>
## 1077                                   <NA>       <NA>                 <NA>
## 1078                                   <NA>       <NA>                 <NA>
## 1079                                   <NA>       <NA>                 <NA>
## 1080                                   <NA>       <NA>                 <NA>
## 1081                                   <NA>       <NA>                 <NA>
## 1082                                   <NA>       <NA>                 <NA>
## 1083                                   <NA>       <NA>                 <NA>
## 1084                                   <NA>       <NA>                 <NA>
## 1085                                   <NA>       <NA>                 <NA>
## 1086                                   <NA>       <NA>                 <NA>
## 1087                                   <NA>       <NA>                 <NA>
## 1088                                   <NA>       <NA>                 <NA>
## 1089                                   <NA>       <NA>                 <NA>
## 1090                                   <NA>       <NA>                 <NA>
## 1091                                   <NA>       <NA>                 <NA>
## 1092                                   <NA>       <NA>                 <NA>
## 1093                                   <NA>       <NA>                 <NA>
## 1094                                   <NA>       <NA>                 <NA>
## 1095                                   <NA>       <NA>                 <NA>
## 1096                                   <NA>       <NA>                 <NA>
## 1097                                   <NA>       <NA>                 <NA>
## 1098                                   <NA>       <NA>                 <NA>
## 1099                                   <NA>       <NA>                 <NA>
## 1100                                   <NA>       <NA>                 <NA>
## 1101                                   <NA>       <NA>                 <NA>
## 1102              Lytham St. Annes, England       city       United Kingdom
## 1103                                   <NA>       <NA>                 <NA>
## 1104                                   <NA>       <NA>                 <NA>
## 1105                                   <NA>       <NA>                 <NA>
## 1106                                   <NA>       <NA>                 <NA>
## 1107                                   <NA>       <NA>                 <NA>
## 1108                                   <NA>       <NA>                 <NA>
## 1109                                   <NA>       <NA>                 <NA>
## 1110                                   <NA>       <NA>                 <NA>
## 1111                                   <NA>       <NA>                 <NA>
##      country_code          geo_coords       coords_coords
## 1            <NA>              NA, NA              NA, NA
## 2            <NA>              NA, NA              NA, NA
## 3            <NA>              NA, NA              NA, NA
## 4            <NA>              NA, NA              NA, NA
## 5              US              NA, NA              NA, NA
## 6            <NA>              NA, NA              NA, NA
## 7            <NA>              NA, NA              NA, NA
## 8            <NA>              NA, NA              NA, NA
## 9            <NA>              NA, NA              NA, NA
## 10           <NA>              NA, NA              NA, NA
## 11           <NA>              NA, NA              NA, NA
## 12             US              NA, NA              NA, NA
## 13           <NA>              NA, NA              NA, NA
## 14           <NA>              NA, NA              NA, NA
## 15           <NA>              NA, NA              NA, NA
## 16           <NA>              NA, NA              NA, NA
## 17           <NA>              NA, NA              NA, NA
## 18           <NA>              NA, NA              NA, NA
## 19           <NA>              NA, NA              NA, NA
## 20           <NA>              NA, NA              NA, NA
## 21           <NA>              NA, NA              NA, NA
## 22           <NA>              NA, NA              NA, NA
## 23           <NA>              NA, NA              NA, NA
## 24           <NA>              NA, NA              NA, NA
## 25           <NA>              NA, NA              NA, NA
## 26           <NA>              NA, NA              NA, NA
## 27             CA              NA, NA              NA, NA
## 28           <NA>              NA, NA              NA, NA
## 29           <NA>              NA, NA              NA, NA
## 30           <NA>              NA, NA              NA, NA
## 31           <NA>              NA, NA              NA, NA
## 32           <NA>              NA, NA              NA, NA
## 33           <NA>              NA, NA              NA, NA
## 34           <NA>              NA, NA              NA, NA
## 35           <NA>              NA, NA              NA, NA
## 36           <NA>              NA, NA              NA, NA
## 37           <NA>              NA, NA              NA, NA
## 38           <NA>              NA, NA              NA, NA
## 39           <NA>              NA, NA              NA, NA
## 40           <NA>              NA, NA              NA, NA
## 41           <NA>              NA, NA              NA, NA
## 42           <NA>              NA, NA              NA, NA
## 43           <NA>              NA, NA              NA, NA
## 44           <NA>              NA, NA              NA, NA
## 45           <NA>              NA, NA              NA, NA
## 46           <NA>              NA, NA              NA, NA
## 47           <NA>              NA, NA              NA, NA
## 48           <NA>              NA, NA              NA, NA
## 49           <NA>              NA, NA              NA, NA
## 50           <NA>              NA, NA              NA, NA
## 51           <NA>              NA, NA              NA, NA
## 52           <NA>              NA, NA              NA, NA
## 53           <NA>              NA, NA              NA, NA
## 54           <NA>              NA, NA              NA, NA
## 55           <NA>              NA, NA              NA, NA
## 56           <NA>              NA, NA              NA, NA
## 57           <NA>              NA, NA              NA, NA
## 58           <NA>              NA, NA              NA, NA
## 59           <NA>              NA, NA              NA, NA
## 60           <NA>              NA, NA              NA, NA
## 61           <NA>              NA, NA              NA, NA
## 62           <NA>              NA, NA              NA, NA
## 63           <NA>              NA, NA              NA, NA
## 64           <NA>              NA, NA              NA, NA
## 65           <NA>              NA, NA              NA, NA
## 66           <NA>              NA, NA              NA, NA
## 67           <NA>              NA, NA              NA, NA
## 68           <NA>              NA, NA              NA, NA
## 69           <NA>              NA, NA              NA, NA
## 70           <NA>              NA, NA              NA, NA
## 71           <NA>              NA, NA              NA, NA
## 72           <NA>              NA, NA              NA, NA
## 73           <NA>              NA, NA              NA, NA
## 74           <NA>              NA, NA              NA, NA
## 75           <NA>              NA, NA              NA, NA
## 76           <NA>              NA, NA              NA, NA
## 77           <NA>              NA, NA              NA, NA
## 78           <NA>              NA, NA              NA, NA
## 79             GB              NA, NA              NA, NA
## 80           <NA>              NA, NA              NA, NA
## 81             KE              NA, NA              NA, NA
## 82           <NA>              NA, NA              NA, NA
## 83           <NA>              NA, NA              NA, NA
## 84           <NA>              NA, NA              NA, NA
## 85           <NA>              NA, NA              NA, NA
## 86           <NA>              NA, NA              NA, NA
## 87           <NA>              NA, NA              NA, NA
## 88           <NA>              NA, NA              NA, NA
## 89           <NA>              NA, NA              NA, NA
## 90           <NA>              NA, NA              NA, NA
## 91           <NA>              NA, NA              NA, NA
## 92           <NA>              NA, NA              NA, NA
## 93           <NA>              NA, NA              NA, NA
## 94           <NA>              NA, NA              NA, NA
## 95           <NA>              NA, NA              NA, NA
## 96           <NA>              NA, NA              NA, NA
## 97           <NA>              NA, NA              NA, NA
## 98           <NA>              NA, NA              NA, NA
## 99           <NA>              NA, NA              NA, NA
## 100          <NA>              NA, NA              NA, NA
## 101          <NA>              NA, NA              NA, NA
## 102          <NA>              NA, NA              NA, NA
## 103          <NA>              NA, NA              NA, NA
## 104          <NA>              NA, NA              NA, NA
## 105          <NA>              NA, NA              NA, NA
## 106          <NA>              NA, NA              NA, NA
## 107          <NA>              NA, NA              NA, NA
## 108          <NA>              NA, NA              NA, NA
## 109          <NA>              NA, NA              NA, NA
## 110          <NA>              NA, NA              NA, NA
## 111          <NA>              NA, NA              NA, NA
## 112          <NA>              NA, NA              NA, NA
## 113          <NA>              NA, NA              NA, NA
## 114          <NA>              NA, NA              NA, NA
## 115          <NA>              NA, NA              NA, NA
## 116          <NA>              NA, NA              NA, NA
## 117          <NA>              NA, NA              NA, NA
## 118          <NA>              NA, NA              NA, NA
## 119          <NA>              NA, NA              NA, NA
## 120          <NA>              NA, NA              NA, NA
## 121          <NA>              NA, NA              NA, NA
## 122          <NA>              NA, NA              NA, NA
## 123          <NA>              NA, NA              NA, NA
## 124          <NA>              NA, NA              NA, NA
## 125          <NA>              NA, NA              NA, NA
## 126          <NA>              NA, NA              NA, NA
## 127          <NA>              NA, NA              NA, NA
## 128          <NA>              NA, NA              NA, NA
## 129          <NA>              NA, NA              NA, NA
## 130          <NA>              NA, NA              NA, NA
## 131          <NA>              NA, NA              NA, NA
## 132          <NA>              NA, NA              NA, NA
## 133          <NA>              NA, NA              NA, NA
## 134          <NA>              NA, NA              NA, NA
## 135            NG              NA, NA              NA, NA
## 136          <NA>              NA, NA              NA, NA
## 137          <NA>              NA, NA              NA, NA
## 138          <NA>              NA, NA              NA, NA
## 139          <NA>              NA, NA              NA, NA
## 140          <NA>              NA, NA              NA, NA
## 141          <NA>              NA, NA              NA, NA
## 142          <NA>              NA, NA              NA, NA
## 143          <NA>              NA, NA              NA, NA
## 144          <NA>              NA, NA              NA, NA
## 145          <NA>              NA, NA              NA, NA
## 146          <NA>              NA, NA              NA, NA
## 147          <NA>              NA, NA              NA, NA
## 148          <NA>              NA, NA              NA, NA
## 149          <NA>              NA, NA              NA, NA
## 150          <NA>              NA, NA              NA, NA
## 151          <NA>              NA, NA              NA, NA
## 152          <NA>              NA, NA              NA, NA
## 153          <NA>              NA, NA              NA, NA
## 154          <NA>              NA, NA              NA, NA
## 155          <NA>              NA, NA              NA, NA
## 156          <NA>              NA, NA              NA, NA
## 157            IE              NA, NA              NA, NA
## 158          <NA>              NA, NA              NA, NA
## 159          <NA>              NA, NA              NA, NA
## 160          <NA>              NA, NA              NA, NA
## 161          <NA>              NA, NA              NA, NA
## 162          <NA>              NA, NA              NA, NA
## 163          <NA>              NA, NA              NA, NA
## 164          <NA>              NA, NA              NA, NA
## 165          <NA>              NA, NA              NA, NA
## 166          <NA>              NA, NA              NA, NA
## 167          <NA>              NA, NA              NA, NA
## 168          <NA>              NA, NA              NA, NA
## 169          <NA>              NA, NA              NA, NA
## 170          <NA>              NA, NA              NA, NA
## 171          <NA>              NA, NA              NA, NA
## 172          <NA>              NA, NA              NA, NA
## 173          <NA>              NA, NA              NA, NA
## 174          <NA>              NA, NA              NA, NA
## 175          <NA>              NA, NA              NA, NA
## 176          <NA>              NA, NA              NA, NA
## 177          <NA>              NA, NA              NA, NA
## 178            IN              NA, NA              NA, NA
## 179          <NA>              NA, NA              NA, NA
## 180          <NA>              NA, NA              NA, NA
## 181          <NA>              NA, NA              NA, NA
## 182          <NA>              NA, NA              NA, NA
## 183          <NA>              NA, NA              NA, NA
## 184          <NA>              NA, NA              NA, NA
## 185          <NA>              NA, NA              NA, NA
## 186          <NA>              NA, NA              NA, NA
## 187          <NA>              NA, NA              NA, NA
## 188            US              NA, NA              NA, NA
## 189          <NA>              NA, NA              NA, NA
## 190          <NA>              NA, NA              NA, NA
## 191          <NA>              NA, NA              NA, NA
## 192          <NA>              NA, NA              NA, NA
## 193          <NA>              NA, NA              NA, NA
## 194          <NA>              NA, NA              NA, NA
## 195          <NA>              NA, NA              NA, NA
## 196          <NA>              NA, NA              NA, NA
## 197          <NA>              NA, NA              NA, NA
## 198            US              NA, NA              NA, NA
## 199          <NA>              NA, NA              NA, NA
## 200          <NA>              NA, NA              NA, NA
## 201          <NA>              NA, NA              NA, NA
## 202          <NA>              NA, NA              NA, NA
## 203          <NA>              NA, NA              NA, NA
## 204          <NA>              NA, NA              NA, NA
## 205          <NA>              NA, NA              NA, NA
## 206          <NA>              NA, NA              NA, NA
## 207          <NA>              NA, NA              NA, NA
## 208          <NA>              NA, NA              NA, NA
## 209          <NA>              NA, NA              NA, NA
## 210          <NA>              NA, NA              NA, NA
## 211          <NA>              NA, NA              NA, NA
## 212          <NA>              NA, NA              NA, NA
## 213          <NA>              NA, NA              NA, NA
## 214          <NA>              NA, NA              NA, NA
## 215          <NA>              NA, NA              NA, NA
## 216          <NA>              NA, NA              NA, NA
## 217          <NA>              NA, NA              NA, NA
## 218          <NA>              NA, NA              NA, NA
## 219          <NA>              NA, NA              NA, NA
## 220          <NA>              NA, NA              NA, NA
## 221          <NA>              NA, NA              NA, NA
## 222          <NA>              NA, NA              NA, NA
## 223          <NA>              NA, NA              NA, NA
## 224          <NA>              NA, NA              NA, NA
## 225          <NA>              NA, NA              NA, NA
## 226            US              NA, NA              NA, NA
## 227            US              NA, NA              NA, NA
## 228          <NA>              NA, NA              NA, NA
## 229          <NA>              NA, NA              NA, NA
## 230          <NA>              NA, NA              NA, NA
## 231          <NA>              NA, NA              NA, NA
## 232          <NA>              NA, NA              NA, NA
## 233          <NA>              NA, NA              NA, NA
## 234            CA              NA, NA              NA, NA
## 235          <NA>              NA, NA              NA, NA
## 236          <NA>              NA, NA              NA, NA
## 237          <NA>              NA, NA              NA, NA
## 238          <NA>              NA, NA              NA, NA
## 239          <NA>              NA, NA              NA, NA
## 240          <NA>              NA, NA              NA, NA
## 241          <NA>              NA, NA              NA, NA
## 242          <NA>              NA, NA              NA, NA
## 243          <NA>              NA, NA              NA, NA
## 244          <NA>              NA, NA              NA, NA
## 245          <NA>              NA, NA              NA, NA
## 246          <NA>              NA, NA              NA, NA
## 247          <NA>              NA, NA              NA, NA
## 248          <NA>              NA, NA              NA, NA
## 249          <NA>              NA, NA              NA, NA
## 250          <NA>              NA, NA              NA, NA
## 251          <NA>              NA, NA              NA, NA
## 252          <NA>              NA, NA              NA, NA
## 253          <NA>              NA, NA              NA, NA
## 254          <NA>              NA, NA              NA, NA
## 255          <NA>              NA, NA              NA, NA
## 256          <NA>              NA, NA              NA, NA
## 257          <NA>              NA, NA              NA, NA
## 258          <NA>              NA, NA              NA, NA
## 259            US              NA, NA              NA, NA
## 260          <NA>              NA, NA              NA, NA
## 261          <NA>              NA, NA              NA, NA
## 262          <NA>              NA, NA              NA, NA
## 263          <NA>              NA, NA              NA, NA
## 264          <NA>              NA, NA              NA, NA
## 265          <NA>              NA, NA              NA, NA
## 266          <NA>              NA, NA              NA, NA
## 267          <NA>              NA, NA              NA, NA
## 268          <NA>              NA, NA              NA, NA
## 269          <NA>              NA, NA              NA, NA
## 270          <NA>              NA, NA              NA, NA
## 271          <NA>              NA, NA              NA, NA
## 272          <NA>              NA, NA              NA, NA
## 273          <NA>              NA, NA              NA, NA
## 274          <NA>              NA, NA              NA, NA
## 275          <NA>              NA, NA              NA, NA
## 276          <NA>              NA, NA              NA, NA
## 277          <NA>              NA, NA              NA, NA
## 278          <NA>              NA, NA              NA, NA
## 279          <NA>              NA, NA              NA, NA
## 280          <NA>              NA, NA              NA, NA
## 281          <NA>              NA, NA              NA, NA
## 282          <NA>              NA, NA              NA, NA
## 283          <NA>              NA, NA              NA, NA
## 284          <NA>              NA, NA              NA, NA
## 285          <NA>              NA, NA              NA, NA
## 286          <NA>              NA, NA              NA, NA
## 287          <NA>              NA, NA              NA, NA
## 288          <NA>              NA, NA              NA, NA
## 289          <NA>              NA, NA              NA, NA
## 290          <NA>              NA, NA              NA, NA
## 291            AE              NA, NA              NA, NA
## 292          <NA>              NA, NA              NA, NA
## 293          <NA>              NA, NA              NA, NA
## 294          <NA>              NA, NA              NA, NA
## 295          <NA>              NA, NA              NA, NA
## 296          <NA>              NA, NA              NA, NA
## 297          <NA>              NA, NA              NA, NA
## 298          <NA>              NA, NA              NA, NA
## 299          <NA>              NA, NA              NA, NA
## 300          <NA>              NA, NA              NA, NA
## 301          <NA>              NA, NA              NA, NA
## 302          <NA>              NA, NA              NA, NA
## 303          <NA>              NA, NA              NA, NA
## 304          <NA>              NA, NA              NA, NA
## 305          <NA>              NA, NA              NA, NA
## 306          <NA>              NA, NA              NA, NA
## 307          <NA>              NA, NA              NA, NA
## 308          <NA>              NA, NA              NA, NA
## 309          <NA>              NA, NA              NA, NA
## 310          <NA>              NA, NA              NA, NA
## 311          <NA>              NA, NA              NA, NA
## 312          <NA>              NA, NA              NA, NA
## 313          <NA>              NA, NA              NA, NA
## 314          <NA>              NA, NA              NA, NA
## 315          <NA>              NA, NA              NA, NA
## 316          <NA>              NA, NA              NA, NA
## 317          <NA>              NA, NA              NA, NA
## 318          <NA>              NA, NA              NA, NA
## 319          <NA>              NA, NA              NA, NA
## 320          <NA>              NA, NA              NA, NA
## 321          <NA>              NA, NA              NA, NA
## 322          <NA>              NA, NA              NA, NA
## 323          <NA>              NA, NA              NA, NA
## 324          <NA>              NA, NA              NA, NA
## 325          <NA>              NA, NA              NA, NA
## 326          <NA>              NA, NA              NA, NA
## 327          <NA>              NA, NA              NA, NA
## 328          <NA>              NA, NA              NA, NA
## 329          <NA>              NA, NA              NA, NA
## 330          <NA>              NA, NA              NA, NA
## 331          <NA>              NA, NA              NA, NA
## 332          <NA>              NA, NA              NA, NA
## 333          <NA>              NA, NA              NA, NA
## 334          <NA>              NA, NA              NA, NA
## 335          <NA>              NA, NA              NA, NA
## 336          <NA>              NA, NA              NA, NA
## 337          <NA>              NA, NA              NA, NA
## 338          <NA>              NA, NA              NA, NA
## 339          <NA>              NA, NA              NA, NA
## 340          <NA>              NA, NA              NA, NA
## 341          <NA>              NA, NA              NA, NA
## 342          <NA>              NA, NA              NA, NA
## 343          <NA>              NA, NA              NA, NA
## 344          <NA>              NA, NA              NA, NA
## 345          <NA>              NA, NA              NA, NA
## 346          <NA>              NA, NA              NA, NA
## 347          <NA>              NA, NA              NA, NA
## 348          <NA>              NA, NA              NA, NA
## 349          <NA>              NA, NA              NA, NA
## 350          <NA>              NA, NA              NA, NA
## 351          <NA>              NA, NA              NA, NA
## 352          <NA>              NA, NA              NA, NA
## 353          <NA>              NA, NA              NA, NA
## 354          <NA>              NA, NA              NA, NA
## 355          <NA>              NA, NA              NA, NA
## 356          <NA>              NA, NA              NA, NA
## 357            AU              NA, NA              NA, NA
## 358          <NA>              NA, NA              NA, NA
## 359          <NA>              NA, NA              NA, NA
## 360            NG              NA, NA              NA, NA
## 361          <NA>              NA, NA              NA, NA
## 362          <NA>              NA, NA              NA, NA
## 363          <NA>              NA, NA              NA, NA
## 364          <NA>              NA, NA              NA, NA
## 365          <NA>              NA, NA              NA, NA
## 366          <NA>              NA, NA              NA, NA
## 367          <NA>              NA, NA              NA, NA
## 368          <NA>              NA, NA              NA, NA
## 369          <NA>              NA, NA              NA, NA
## 370          <NA>              NA, NA              NA, NA
## 371          <NA>              NA, NA              NA, NA
## 372          <NA>              NA, NA              NA, NA
## 373          <NA>              NA, NA              NA, NA
## 374          <NA>              NA, NA              NA, NA
## 375          <NA>              NA, NA              NA, NA
## 376          <NA>              NA, NA              NA, NA
## 377          <NA>              NA, NA              NA, NA
## 378          <NA>              NA, NA              NA, NA
## 379          <NA>              NA, NA              NA, NA
## 380          <NA>              NA, NA              NA, NA
## 381          <NA>              NA, NA              NA, NA
## 382          <NA>              NA, NA              NA, NA
## 383          <NA>              NA, NA              NA, NA
## 384            IN  30.90105, 75.93344  75.93344, 30.90105
## 385          <NA>              NA, NA              NA, NA
## 386            GB              NA, NA              NA, NA
## 387          <NA>              NA, NA              NA, NA
## 388            US              NA, NA              NA, NA
## 389          <NA>              NA, NA              NA, NA
## 390          <NA>              NA, NA              NA, NA
## 391          <NA>              NA, NA              NA, NA
## 392          <NA>              NA, NA              NA, NA
## 393          <NA>              NA, NA              NA, NA
## 394          <NA>              NA, NA              NA, NA
## 395          <NA>              NA, NA              NA, NA
## 396          <NA>              NA, NA              NA, NA
## 397          <NA>              NA, NA              NA, NA
## 398          <NA>              NA, NA              NA, NA
## 399          <NA>              NA, NA              NA, NA
## 400          <NA>              NA, NA              NA, NA
## 401          <NA>              NA, NA              NA, NA
## 402          <NA>              NA, NA              NA, NA
## 403          <NA>              NA, NA              NA, NA
## 404          <NA>              NA, NA              NA, NA
## 405          <NA>              NA, NA              NA, NA
## 406          <NA>              NA, NA              NA, NA
## 407          <NA>              NA, NA              NA, NA
## 408          <NA>              NA, NA              NA, NA
## 409          <NA>              NA, NA              NA, NA
## 410          <NA>              NA, NA              NA, NA
## 411          <NA>              NA, NA              NA, NA
## 412          <NA>              NA, NA              NA, NA
## 413          <NA>              NA, NA              NA, NA
## 414          <NA>              NA, NA              NA, NA
## 415          <NA>              NA, NA              NA, NA
## 416          <NA>              NA, NA              NA, NA
## 417            US              NA, NA              NA, NA
## 418          <NA>              NA, NA              NA, NA
## 419          <NA>              NA, NA              NA, NA
## 420          <NA>              NA, NA              NA, NA
## 421          <NA>              NA, NA              NA, NA
## 422          <NA>              NA, NA              NA, NA
## 423          <NA>              NA, NA              NA, NA
## 424          <NA>              NA, NA              NA, NA
## 425          <NA>              NA, NA              NA, NA
## 426          <NA>              NA, NA              NA, NA
## 427          <NA>              NA, NA              NA, NA
## 428          <NA>              NA, NA              NA, NA
## 429          <NA>              NA, NA              NA, NA
## 430          <NA>              NA, NA              NA, NA
## 431          <NA>              NA, NA              NA, NA
## 432          <NA>              NA, NA              NA, NA
## 433          <NA>              NA, NA              NA, NA
## 434          <NA>              NA, NA              NA, NA
## 435          <NA>              NA, NA              NA, NA
## 436          <NA>              NA, NA              NA, NA
## 437          <NA>              NA, NA              NA, NA
## 438          <NA>              NA, NA              NA, NA
## 439          <NA>              NA, NA              NA, NA
## 440          <NA>              NA, NA              NA, NA
## 441          <NA>              NA, NA              NA, NA
## 442          <NA>              NA, NA              NA, NA
## 443          <NA>              NA, NA              NA, NA
## 444            CA              NA, NA              NA, NA
## 445          <NA>              NA, NA              NA, NA
## 446          <NA>              NA, NA              NA, NA
## 447          <NA>              NA, NA              NA, NA
## 448          <NA>              NA, NA              NA, NA
## 449          <NA>              NA, NA              NA, NA
## 450          <NA>              NA, NA              NA, NA
## 451          <NA>              NA, NA              NA, NA
## 452          <NA>              NA, NA              NA, NA
## 453          <NA>              NA, NA              NA, NA
## 454          <NA>              NA, NA              NA, NA
## 455          <NA>              NA, NA              NA, NA
## 456          <NA>              NA, NA              NA, NA
## 457          <NA>              NA, NA              NA, NA
## 458          <NA>              NA, NA              NA, NA
## 459          <NA>              NA, NA              NA, NA
## 460          <NA>              NA, NA              NA, NA
## 461          <NA>              NA, NA              NA, NA
## 462          <NA>              NA, NA              NA, NA
## 463          <NA>              NA, NA              NA, NA
## 464          <NA>              NA, NA              NA, NA
## 465          <NA>              NA, NA              NA, NA
## 466          <NA>              NA, NA              NA, NA
## 467          <NA>              NA, NA              NA, NA
## 468          <NA>              NA, NA              NA, NA
## 469          <NA>              NA, NA              NA, NA
## 470          <NA>              NA, NA              NA, NA
## 471          <NA>              NA, NA              NA, NA
## 472          <NA>              NA, NA              NA, NA
## 473          <NA>              NA, NA              NA, NA
## 474          <NA>              NA, NA              NA, NA
## 475          <NA>              NA, NA              NA, NA
## 476          <NA>              NA, NA              NA, NA
## 477          <NA>              NA, NA              NA, NA
## 478          <NA>              NA, NA              NA, NA
## 479          <NA>              NA, NA              NA, NA
## 480          <NA>              NA, NA              NA, NA
## 481          <NA>              NA, NA              NA, NA
## 482          <NA>              NA, NA              NA, NA
## 483          <NA>              NA, NA              NA, NA
## 484          <NA>              NA, NA              NA, NA
## 485          <NA>              NA, NA              NA, NA
## 486          <NA>              NA, NA              NA, NA
## 487          <NA>              NA, NA              NA, NA
## 488          <NA>              NA, NA              NA, NA
## 489          <NA>              NA, NA              NA, NA
## 490          <NA>              NA, NA              NA, NA
## 491          <NA>              NA, NA              NA, NA
## 492          <NA>              NA, NA              NA, NA
## 493          <NA>              NA, NA              NA, NA
## 494          <NA>              NA, NA              NA, NA
## 495            US              NA, NA              NA, NA
## 496          <NA>              NA, NA              NA, NA
## 497          <NA>              NA, NA              NA, NA
## 498          <NA>              NA, NA              NA, NA
## 499          <NA>              NA, NA              NA, NA
## 500          <NA>              NA, NA              NA, NA
## 501          <NA>              NA, NA              NA, NA
## 502          <NA>              NA, NA              NA, NA
## 503            US              NA, NA              NA, NA
## 504          <NA>              NA, NA              NA, NA
## 505          <NA>              NA, NA              NA, NA
## 506          <NA>              NA, NA              NA, NA
## 507          <NA>              NA, NA              NA, NA
## 508          <NA>              NA, NA              NA, NA
## 509          <NA>              NA, NA              NA, NA
## 510          <NA>              NA, NA              NA, NA
## 511          <NA>              NA, NA              NA, NA
## 512          <NA>              NA, NA              NA, NA
## 513          <NA>              NA, NA              NA, NA
## 514          <NA>              NA, NA              NA, NA
## 515          <NA>              NA, NA              NA, NA
## 516          <NA>              NA, NA              NA, NA
## 517          <NA>              NA, NA              NA, NA
## 518          <NA>              NA, NA              NA, NA
## 519          <NA>              NA, NA              NA, NA
## 520          <NA>              NA, NA              NA, NA
## 521            US              NA, NA              NA, NA
## 522          <NA>              NA, NA              NA, NA
## 523          <NA>              NA, NA              NA, NA
## 524          <NA>              NA, NA              NA, NA
## 525          <NA>              NA, NA              NA, NA
## 526          <NA>              NA, NA              NA, NA
## 527          <NA>              NA, NA              NA, NA
## 528          <NA>              NA, NA              NA, NA
## 529          <NA>              NA, NA              NA, NA
## 530          <NA>              NA, NA              NA, NA
## 531          <NA>              NA, NA              NA, NA
## 532          <NA>              NA, NA              NA, NA
## 533          <NA>              NA, NA              NA, NA
## 534          <NA>              NA, NA              NA, NA
## 535          <NA>              NA, NA              NA, NA
## 536          <NA>              NA, NA              NA, NA
## 537          <NA>              NA, NA              NA, NA
## 538          <NA>              NA, NA              NA, NA
## 539          <NA>              NA, NA              NA, NA
## 540          <NA>              NA, NA              NA, NA
## 541          <NA>              NA, NA              NA, NA
## 542          <NA>              NA, NA              NA, NA
## 543          <NA>              NA, NA              NA, NA
## 544          <NA>              NA, NA              NA, NA
## 545          <NA>              NA, NA              NA, NA
## 546          <NA>              NA, NA              NA, NA
## 547          <NA>              NA, NA              NA, NA
## 548          <NA>              NA, NA              NA, NA
## 549          <NA>              NA, NA              NA, NA
## 550          <NA>              NA, NA              NA, NA
## 551          <NA>              NA, NA              NA, NA
## 552          <NA>              NA, NA              NA, NA
## 553          <NA>              NA, NA              NA, NA
## 554          <NA>              NA, NA              NA, NA
## 555          <NA>              NA, NA              NA, NA
## 556          <NA>              NA, NA              NA, NA
## 557          <NA>              NA, NA              NA, NA
## 558          <NA>              NA, NA              NA, NA
## 559          <NA>              NA, NA              NA, NA
## 560          <NA>              NA, NA              NA, NA
## 561            US              NA, NA              NA, NA
## 562          <NA>              NA, NA              NA, NA
## 563          <NA>              NA, NA              NA, NA
## 564          <NA>              NA, NA              NA, NA
## 565          <NA>              NA, NA              NA, NA
## 566          <NA>              NA, NA              NA, NA
## 567          <NA>              NA, NA              NA, NA
## 568          <NA>              NA, NA              NA, NA
## 569          <NA>              NA, NA              NA, NA
## 570          <NA>              NA, NA              NA, NA
## 571          <NA>              NA, NA              NA, NA
## 572          <NA>              NA, NA              NA, NA
## 573          <NA>              NA, NA              NA, NA
## 574          <NA>              NA, NA              NA, NA
## 575          <NA>              NA, NA              NA, NA
## 576          <NA>              NA, NA              NA, NA
## 577          <NA>              NA, NA              NA, NA
## 578          <NA>              NA, NA              NA, NA
## 579          <NA>              NA, NA              NA, NA
## 580          <NA>              NA, NA              NA, NA
## 581          <NA>              NA, NA              NA, NA
## 582          <NA>              NA, NA              NA, NA
## 583          <NA>              NA, NA              NA, NA
## 584          <NA>              NA, NA              NA, NA
## 585          <NA>              NA, NA              NA, NA
## 586          <NA>              NA, NA              NA, NA
## 587          <NA>              NA, NA              NA, NA
## 588          <NA>              NA, NA              NA, NA
## 589          <NA>              NA, NA              NA, NA
## 590            US              NA, NA              NA, NA
## 591          <NA>              NA, NA              NA, NA
## 592          <NA>              NA, NA              NA, NA
## 593          <NA>              NA, NA              NA, NA
## 594          <NA>              NA, NA              NA, NA
## 595          <NA>              NA, NA              NA, NA
## 596          <NA>              NA, NA              NA, NA
## 597          <NA>              NA, NA              NA, NA
## 598          <NA>              NA, NA              NA, NA
## 599          <NA>              NA, NA              NA, NA
## 600          <NA>              NA, NA              NA, NA
## 601          <NA>              NA, NA              NA, NA
## 602          <NA>              NA, NA              NA, NA
## 603          <NA>              NA, NA              NA, NA
## 604          <NA>              NA, NA              NA, NA
## 605          <NA>              NA, NA              NA, NA
## 606          <NA>              NA, NA              NA, NA
## 607          <NA>              NA, NA              NA, NA
## 608          <NA>              NA, NA              NA, NA
## 609          <NA>              NA, NA              NA, NA
## 610          <NA>              NA, NA              NA, NA
## 611          <NA>              NA, NA              NA, NA
## 612          <NA>              NA, NA              NA, NA
## 613          <NA>              NA, NA              NA, NA
## 614          <NA>              NA, NA              NA, NA
## 615          <NA>              NA, NA              NA, NA
## 616          <NA>              NA, NA              NA, NA
## 617          <NA>              NA, NA              NA, NA
## 618          <NA>              NA, NA              NA, NA
## 619          <NA>              NA, NA              NA, NA
## 620          <NA>              NA, NA              NA, NA
## 621          <NA>              NA, NA              NA, NA
## 622          <NA>              NA, NA              NA, NA
## 623          <NA>              NA, NA              NA, NA
## 624          <NA>              NA, NA              NA, NA
## 625          <NA>              NA, NA              NA, NA
## 626          <NA>              NA, NA              NA, NA
## 627          <NA>              NA, NA              NA, NA
## 628          <NA>              NA, NA              NA, NA
## 629          <NA>              NA, NA              NA, NA
## 630          <NA>              NA, NA              NA, NA
## 631          <NA>              NA, NA              NA, NA
## 632          <NA>              NA, NA              NA, NA
## 633          <NA>              NA, NA              NA, NA
## 634          <NA>              NA, NA              NA, NA
## 635          <NA>              NA, NA              NA, NA
## 636          <NA>              NA, NA              NA, NA
## 637          <NA>              NA, NA              NA, NA
## 638          <NA>              NA, NA              NA, NA
## 639          <NA>              NA, NA              NA, NA
## 640          <NA>              NA, NA              NA, NA
## 641          <NA>              NA, NA              NA, NA
## 642          <NA>              NA, NA              NA, NA
## 643          <NA>              NA, NA              NA, NA
## 644          <NA>              NA, NA              NA, NA
## 645          <NA>              NA, NA              NA, NA
## 646          <NA>              NA, NA              NA, NA
## 647          <NA>              NA, NA              NA, NA
## 648          <NA>              NA, NA              NA, NA
## 649          <NA>              NA, NA              NA, NA
## 650          <NA>              NA, NA              NA, NA
## 651          <NA>              NA, NA              NA, NA
## 652          <NA>              NA, NA              NA, NA
## 653          <NA>              NA, NA              NA, NA
## 654          <NA>              NA, NA              NA, NA
## 655          <NA>              NA, NA              NA, NA
## 656          <NA>              NA, NA              NA, NA
## 657          <NA>              NA, NA              NA, NA
## 658          <NA>              NA, NA              NA, NA
## 659          <NA>              NA, NA              NA, NA
## 660          <NA>              NA, NA              NA, NA
## 661          <NA>              NA, NA              NA, NA
## 662          <NA>              NA, NA              NA, NA
## 663            US              NA, NA              NA, NA
## 664          <NA>              NA, NA              NA, NA
## 665          <NA>              NA, NA              NA, NA
## 666          <NA>              NA, NA              NA, NA
## 667          <NA>              NA, NA              NA, NA
## 668          <NA>              NA, NA              NA, NA
## 669          <NA>              NA, NA              NA, NA
## 670          <NA>              NA, NA              NA, NA
## 671          <NA>              NA, NA              NA, NA
## 672          <NA>              NA, NA              NA, NA
## 673          <NA>              NA, NA              NA, NA
## 674          <NA>              NA, NA              NA, NA
## 675          <NA>              NA, NA              NA, NA
## 676          <NA>              NA, NA              NA, NA
## 677          <NA>              NA, NA              NA, NA
## 678          <NA>              NA, NA              NA, NA
## 679          <NA>              NA, NA              NA, NA
## 680          <NA>              NA, NA              NA, NA
## 681          <NA>              NA, NA              NA, NA
## 682          <NA>              NA, NA              NA, NA
## 683          <NA>              NA, NA              NA, NA
## 684          <NA>              NA, NA              NA, NA
## 685          <NA>              NA, NA              NA, NA
## 686          <NA>              NA, NA              NA, NA
## 687            US              NA, NA              NA, NA
## 688          <NA>              NA, NA              NA, NA
## 689          <NA>              NA, NA              NA, NA
## 690          <NA>              NA, NA              NA, NA
## 691          <NA>              NA, NA              NA, NA
## 692          <NA>              NA, NA              NA, NA
## 693          <NA>              NA, NA              NA, NA
## 694          <NA>              NA, NA              NA, NA
## 695          <NA>              NA, NA              NA, NA
## 696          <NA>              NA, NA              NA, NA
## 697          <NA>              NA, NA              NA, NA
## 698          <NA>              NA, NA              NA, NA
## 699          <NA>              NA, NA              NA, NA
## 700          <NA>              NA, NA              NA, NA
## 701          <NA>              NA, NA              NA, NA
## 702          <NA>              NA, NA              NA, NA
## 703          <NA>              NA, NA              NA, NA
## 704          <NA>              NA, NA              NA, NA
## 705          <NA>              NA, NA              NA, NA
## 706          <NA>              NA, NA              NA, NA
## 707          <NA>              NA, NA              NA, NA
## 708          <NA>              NA, NA              NA, NA
## 709          <NA>              NA, NA              NA, NA
## 710          <NA>              NA, NA              NA, NA
## 711          <NA>              NA, NA              NA, NA
## 712          <NA>              NA, NA              NA, NA
## 713          <NA>              NA, NA              NA, NA
## 714          <NA>              NA, NA              NA, NA
## 715          <NA>              NA, NA              NA, NA
## 716          <NA>              NA, NA              NA, NA
## 717          <NA>              NA, NA              NA, NA
## 718          <NA>              NA, NA              NA, NA
## 719          <NA>              NA, NA              NA, NA
## 720          <NA>              NA, NA              NA, NA
## 721          <NA>              NA, NA              NA, NA
## 722          <NA>              NA, NA              NA, NA
## 723          <NA>              NA, NA              NA, NA
## 724          <NA>              NA, NA              NA, NA
## 725          <NA>              NA, NA              NA, NA
## 726          <NA>              NA, NA              NA, NA
## 727          <NA>              NA, NA              NA, NA
## 728          <NA>              NA, NA              NA, NA
## 729          <NA>              NA, NA              NA, NA
## 730          <NA>              NA, NA              NA, NA
## 731          <NA>              NA, NA              NA, NA
## 732          <NA>              NA, NA              NA, NA
## 733          <NA>              NA, NA              NA, NA
## 734            KE              NA, NA              NA, NA
## 735          <NA>              NA, NA              NA, NA
## 736          <NA>              NA, NA              NA, NA
## 737          <NA>              NA, NA              NA, NA
## 738          <NA>              NA, NA              NA, NA
## 739          <NA>              NA, NA              NA, NA
## 740          <NA>              NA, NA              NA, NA
## 741          <NA>              NA, NA              NA, NA
## 742          <NA>              NA, NA              NA, NA
## 743          <NA>              NA, NA              NA, NA
## 744          <NA>              NA, NA              NA, NA
## 745          <NA>              NA, NA              NA, NA
## 746          <NA>              NA, NA              NA, NA
## 747          <NA>              NA, NA              NA, NA
## 748          <NA>              NA, NA              NA, NA
## 749          <NA>              NA, NA              NA, NA
## 750            US              NA, NA              NA, NA
## 751          <NA>              NA, NA              NA, NA
## 752          <NA>              NA, NA              NA, NA
## 753          <NA>              NA, NA              NA, NA
## 754          <NA>              NA, NA              NA, NA
## 755            LY              NA, NA              NA, NA
## 756          <NA>              NA, NA              NA, NA
## 757          <NA>              NA, NA              NA, NA
## 758          <NA>              NA, NA              NA, NA
## 759          <NA>              NA, NA              NA, NA
## 760          <NA>              NA, NA              NA, NA
## 761          <NA>              NA, NA              NA, NA
## 762          <NA>              NA, NA              NA, NA
## 763          <NA>              NA, NA              NA, NA
## 764          <NA>              NA, NA              NA, NA
## 765          <NA>              NA, NA              NA, NA
## 766          <NA>              NA, NA              NA, NA
## 767          <NA>              NA, NA              NA, NA
## 768          <NA>              NA, NA              NA, NA
## 769          <NA>              NA, NA              NA, NA
## 770          <NA>              NA, NA              NA, NA
## 771          <NA>              NA, NA              NA, NA
## 772          <NA>              NA, NA              NA, NA
## 773            US              NA, NA              NA, NA
## 774          <NA>              NA, NA              NA, NA
## 775          <NA>              NA, NA              NA, NA
## 776          <NA>              NA, NA              NA, NA
## 777          <NA>              NA, NA              NA, NA
## 778          <NA>              NA, NA              NA, NA
## 779          <NA>              NA, NA              NA, NA
## 780          <NA>              NA, NA              NA, NA
## 781            TH 7.893577, 98.299266 98.299266, 7.893577
## 782          <NA>              NA, NA              NA, NA
## 783            GB              NA, NA              NA, NA
## 784          <NA>              NA, NA              NA, NA
## 785            US              NA, NA              NA, NA
## 786            US              NA, NA              NA, NA
## 787          <NA>              NA, NA              NA, NA
## 788          <NA>              NA, NA              NA, NA
## 789          <NA>              NA, NA              NA, NA
## 790          <NA>              NA, NA              NA, NA
## 791          <NA>              NA, NA              NA, NA
## 792          <NA>              NA, NA              NA, NA
## 793          <NA>              NA, NA              NA, NA
## 794          <NA>              NA, NA              NA, NA
## 795          <NA>              NA, NA              NA, NA
## 796          <NA>              NA, NA              NA, NA
## 797          <NA>              NA, NA              NA, NA
## 798          <NA>              NA, NA              NA, NA
## 799          <NA>              NA, NA              NA, NA
## 800          <NA>              NA, NA              NA, NA
## 801          <NA>              NA, NA              NA, NA
## 802          <NA>              NA, NA              NA, NA
## 803          <NA>              NA, NA              NA, NA
## 804          <NA>              NA, NA              NA, NA
## 805          <NA>              NA, NA              NA, NA
## 806          <NA>              NA, NA              NA, NA
## 807          <NA>              NA, NA              NA, NA
## 808          <NA>              NA, NA              NA, NA
## 809          <NA>              NA, NA              NA, NA
## 810          <NA>              NA, NA              NA, NA
## 811          <NA>              NA, NA              NA, NA
## 812          <NA>              NA, NA              NA, NA
## 813          <NA>              NA, NA              NA, NA
## 814          <NA>              NA, NA              NA, NA
## 815          <NA>              NA, NA              NA, NA
## 816          <NA>              NA, NA              NA, NA
## 817          <NA>              NA, NA              NA, NA
## 818          <NA>              NA, NA              NA, NA
## 819          <NA>              NA, NA              NA, NA
## 820          <NA>              NA, NA              NA, NA
## 821          <NA>              NA, NA              NA, NA
## 822          <NA>              NA, NA              NA, NA
## 823          <NA>              NA, NA              NA, NA
## 824          <NA>              NA, NA              NA, NA
## 825          <NA>              NA, NA              NA, NA
## 826          <NA>              NA, NA              NA, NA
## 827          <NA>              NA, NA              NA, NA
## 828          <NA>              NA, NA              NA, NA
## 829          <NA>              NA, NA              NA, NA
## 830          <NA>              NA, NA              NA, NA
## 831          <NA>              NA, NA              NA, NA
## 832          <NA>              NA, NA              NA, NA
## 833          <NA>              NA, NA              NA, NA
## 834          <NA>              NA, NA              NA, NA
## 835          <NA>              NA, NA              NA, NA
## 836          <NA>              NA, NA              NA, NA
## 837          <NA>              NA, NA              NA, NA
## 838          <NA>              NA, NA              NA, NA
## 839          <NA>              NA, NA              NA, NA
## 840          <NA>              NA, NA              NA, NA
## 841          <NA>              NA, NA              NA, NA
## 842          <NA>              NA, NA              NA, NA
## 843          <NA>              NA, NA              NA, NA
## 844          <NA>              NA, NA              NA, NA
## 845          <NA>              NA, NA              NA, NA
## 846          <NA>              NA, NA              NA, NA
## 847          <NA>              NA, NA              NA, NA
## 848          <NA>              NA, NA              NA, NA
## 849          <NA>              NA, NA              NA, NA
## 850          <NA>              NA, NA              NA, NA
## 851          <NA>              NA, NA              NA, NA
## 852          <NA>              NA, NA              NA, NA
## 853          <NA>              NA, NA              NA, NA
## 854          <NA>              NA, NA              NA, NA
## 855          <NA>              NA, NA              NA, NA
## 856          <NA>              NA, NA              NA, NA
## 857          <NA>              NA, NA              NA, NA
## 858          <NA>              NA, NA              NA, NA
## 859          <NA>              NA, NA              NA, NA
## 860          <NA>              NA, NA              NA, NA
## 861          <NA>              NA, NA              NA, NA
## 862          <NA>              NA, NA              NA, NA
## 863          <NA>              NA, NA              NA, NA
## 864            US              NA, NA              NA, NA
## 865          <NA>              NA, NA              NA, NA
## 866          <NA>              NA, NA              NA, NA
## 867          <NA>              NA, NA              NA, NA
## 868          <NA>              NA, NA              NA, NA
## 869          <NA>              NA, NA              NA, NA
## 870          <NA>              NA, NA              NA, NA
## 871          <NA>              NA, NA              NA, NA
## 872          <NA>              NA, NA              NA, NA
## 873          <NA>              NA, NA              NA, NA
## 874          <NA>              NA, NA              NA, NA
## 875          <NA>              NA, NA              NA, NA
## 876          <NA>              NA, NA              NA, NA
## 877          <NA>              NA, NA              NA, NA
## 878          <NA>              NA, NA              NA, NA
## 879          <NA>              NA, NA              NA, NA
## 880          <NA>              NA, NA              NA, NA
## 881          <NA>              NA, NA              NA, NA
## 882          <NA>              NA, NA              NA, NA
## 883            IN              NA, NA              NA, NA
## 884          <NA>              NA, NA              NA, NA
## 885          <NA>              NA, NA              NA, NA
## 886          <NA>              NA, NA              NA, NA
## 887          <NA>              NA, NA              NA, NA
## 888            US              NA, NA              NA, NA
## 889          <NA>              NA, NA              NA, NA
## 890          <NA>              NA, NA              NA, NA
## 891          <NA>              NA, NA              NA, NA
## 892          <NA>              NA, NA              NA, NA
## 893          <NA>              NA, NA              NA, NA
## 894          <NA>              NA, NA              NA, NA
## 895          <NA>              NA, NA              NA, NA
## 896          <NA>              NA, NA              NA, NA
## 897          <NA>              NA, NA              NA, NA
## 898          <NA>              NA, NA              NA, NA
## 899          <NA>              NA, NA              NA, NA
## 900          <NA>              NA, NA              NA, NA
## 901            CA  48.4287, -123.3645  -123.3645, 48.4287
## 902          <NA>              NA, NA              NA, NA
## 903          <NA>              NA, NA              NA, NA
## 904          <NA>              NA, NA              NA, NA
## 905          <NA>              NA, NA              NA, NA
## 906          <NA>              NA, NA              NA, NA
## 907          <NA>              NA, NA              NA, NA
## 908          <NA>              NA, NA              NA, NA
## 909          <NA>              NA, NA              NA, NA
## 910          <NA>              NA, NA              NA, NA
## 911          <NA>              NA, NA              NA, NA
## 912          <NA>              NA, NA              NA, NA
## 913          <NA>              NA, NA              NA, NA
## 914          <NA>              NA, NA              NA, NA
## 915          <NA>              NA, NA              NA, NA
## 916          <NA>              NA, NA              NA, NA
## 917          <NA>              NA, NA              NA, NA
## 918          <NA>              NA, NA              NA, NA
## 919          <NA>              NA, NA              NA, NA
## 920          <NA>              NA, NA              NA, NA
## 921          <NA>              NA, NA              NA, NA
## 922          <NA>              NA, NA              NA, NA
## 923          <NA>              NA, NA              NA, NA
## 924          <NA>              NA, NA              NA, NA
## 925          <NA>              NA, NA              NA, NA
## 926          <NA>              NA, NA              NA, NA
## 927          <NA>              NA, NA              NA, NA
## 928          <NA>              NA, NA              NA, NA
## 929          <NA>              NA, NA              NA, NA
## 930          <NA>              NA, NA              NA, NA
## 931          <NA>              NA, NA              NA, NA
## 932          <NA>              NA, NA              NA, NA
## 933          <NA>              NA, NA              NA, NA
## 934          <NA>              NA, NA              NA, NA
## 935          <NA>              NA, NA              NA, NA
## 936          <NA>              NA, NA              NA, NA
## 937          <NA>              NA, NA              NA, NA
## 938          <NA>              NA, NA              NA, NA
## 939          <NA>              NA, NA              NA, NA
## 940          <NA>              NA, NA              NA, NA
## 941          <NA>              NA, NA              NA, NA
## 942          <NA>              NA, NA              NA, NA
## 943          <NA>              NA, NA              NA, NA
## 944          <NA>              NA, NA              NA, NA
## 945          <NA>              NA, NA              NA, NA
## 946          <NA>              NA, NA              NA, NA
## 947          <NA>              NA, NA              NA, NA
## 948          <NA>              NA, NA              NA, NA
## 949          <NA>              NA, NA              NA, NA
## 950          <NA>              NA, NA              NA, NA
## 951          <NA>              NA, NA              NA, NA
## 952          <NA>              NA, NA              NA, NA
## 953          <NA>              NA, NA              NA, NA
## 954          <NA>              NA, NA              NA, NA
## 955          <NA>              NA, NA              NA, NA
## 956          <NA>              NA, NA              NA, NA
## 957          <NA>              NA, NA              NA, NA
## 958          <NA>              NA, NA              NA, NA
## 959          <NA>              NA, NA              NA, NA
## 960          <NA>              NA, NA              NA, NA
## 961          <NA>              NA, NA              NA, NA
## 962          <NA>              NA, NA              NA, NA
## 963          <NA>              NA, NA              NA, NA
## 964          <NA>              NA, NA              NA, NA
## 965          <NA>              NA, NA              NA, NA
## 966          <NA>              NA, NA              NA, NA
## 967          <NA>              NA, NA              NA, NA
## 968          <NA>              NA, NA              NA, NA
## 969          <NA>              NA, NA              NA, NA
## 970          <NA>              NA, NA              NA, NA
## 971          <NA>              NA, NA              NA, NA
## 972            GB              NA, NA              NA, NA
## 973          <NA>              NA, NA              NA, NA
## 974          <NA>              NA, NA              NA, NA
## 975          <NA>              NA, NA              NA, NA
## 976          <NA>              NA, NA              NA, NA
## 977          <NA>              NA, NA              NA, NA
## 978          <NA>              NA, NA              NA, NA
## 979          <NA>              NA, NA              NA, NA
## 980          <NA>              NA, NA              NA, NA
## 981          <NA>              NA, NA              NA, NA
## 982          <NA>              NA, NA              NA, NA
## 983          <NA>              NA, NA              NA, NA
## 984          <NA>              NA, NA              NA, NA
## 985          <NA>              NA, NA              NA, NA
## 986          <NA>              NA, NA              NA, NA
## 987          <NA>              NA, NA              NA, NA
## 988          <NA>              NA, NA              NA, NA
## 989          <NA>              NA, NA              NA, NA
## 990          <NA>              NA, NA              NA, NA
## 991          <NA>              NA, NA              NA, NA
## 992          <NA>              NA, NA              NA, NA
## 993          <NA>              NA, NA              NA, NA
## 994          <NA>              NA, NA              NA, NA
## 995          <NA>              NA, NA              NA, NA
## 996          <NA>              NA, NA              NA, NA
## 997          <NA>              NA, NA              NA, NA
## 998          <NA>              NA, NA              NA, NA
## 999          <NA>              NA, NA              NA, NA
## 1000         <NA>              NA, NA              NA, NA
## 1001         <NA>              NA, NA              NA, NA
## 1002         <NA>              NA, NA              NA, NA
## 1003         <NA>              NA, NA              NA, NA
## 1004         <NA>              NA, NA              NA, NA
## 1005         <NA>              NA, NA              NA, NA
## 1006         <NA>              NA, NA              NA, NA
## 1007         <NA>              NA, NA              NA, NA
## 1008         <NA>              NA, NA              NA, NA
## 1009         <NA>              NA, NA              NA, NA
## 1010           US              NA, NA              NA, NA
## 1011         <NA>              NA, NA              NA, NA
## 1012         <NA>              NA, NA              NA, NA
## 1013         <NA>              NA, NA              NA, NA
## 1014         <NA>              NA, NA              NA, NA
## 1015         <NA>              NA, NA              NA, NA
## 1016         <NA>              NA, NA              NA, NA
## 1017         <NA>              NA, NA              NA, NA
## 1018         <NA>              NA, NA              NA, NA
## 1019         <NA>              NA, NA              NA, NA
## 1020         <NA>              NA, NA              NA, NA
## 1021         <NA>              NA, NA              NA, NA
## 1022         <NA>              NA, NA              NA, NA
## 1023         <NA>              NA, NA              NA, NA
## 1024         <NA>              NA, NA              NA, NA
## 1025         <NA>              NA, NA              NA, NA
## 1026         <NA>              NA, NA              NA, NA
## 1027         <NA>              NA, NA              NA, NA
## 1028         <NA>              NA, NA              NA, NA
## 1029         <NA>              NA, NA              NA, NA
## 1030         <NA>              NA, NA              NA, NA
## 1031         <NA>              NA, NA              NA, NA
## 1032         <NA>              NA, NA              NA, NA
## 1033         <NA>              NA, NA              NA, NA
## 1034         <NA>              NA, NA              NA, NA
## 1035         <NA>              NA, NA              NA, NA
## 1036         <NA>              NA, NA              NA, NA
## 1037         <NA>              NA, NA              NA, NA
## 1038         <NA>              NA, NA              NA, NA
## 1039         <NA>              NA, NA              NA, NA
## 1040         <NA>              NA, NA              NA, NA
## 1041         <NA>              NA, NA              NA, NA
## 1042         <NA>              NA, NA              NA, NA
## 1043           IT              NA, NA              NA, NA
## 1044         <NA>              NA, NA              NA, NA
## 1045         <NA>              NA, NA              NA, NA
## 1046         <NA>              NA, NA              NA, NA
## 1047         <NA>              NA, NA              NA, NA
## 1048         <NA>              NA, NA              NA, NA
## 1049         <NA>              NA, NA              NA, NA
## 1050         <NA>              NA, NA              NA, NA
## 1051         <NA>              NA, NA              NA, NA
## 1052         <NA>              NA, NA              NA, NA
## 1053         <NA>              NA, NA              NA, NA
## 1054         <NA>              NA, NA              NA, NA
## 1055         <NA>              NA, NA              NA, NA
## 1056         <NA>              NA, NA              NA, NA
## 1057         <NA>              NA, NA              NA, NA
## 1058         <NA>              NA, NA              NA, NA
## 1059         <NA>              NA, NA              NA, NA
## 1060         <NA>              NA, NA              NA, NA
## 1061         <NA>              NA, NA              NA, NA
## 1062         <NA>              NA, NA              NA, NA
## 1063         <NA>              NA, NA              NA, NA
## 1064         <NA>              NA, NA              NA, NA
## 1065         <NA>              NA, NA              NA, NA
## 1066         <NA>              NA, NA              NA, NA
## 1067         <NA>              NA, NA              NA, NA
## 1068         <NA>              NA, NA              NA, NA
## 1069         <NA>              NA, NA              NA, NA
## 1070         <NA>              NA, NA              NA, NA
## 1071         <NA>              NA, NA              NA, NA
## 1072         <NA>              NA, NA              NA, NA
## 1073         <NA>              NA, NA              NA, NA
## 1074         <NA>              NA, NA              NA, NA
## 1075         <NA>              NA, NA              NA, NA
## 1076         <NA>              NA, NA              NA, NA
## 1077         <NA>              NA, NA              NA, NA
## 1078         <NA>              NA, NA              NA, NA
## 1079         <NA>              NA, NA              NA, NA
## 1080         <NA>              NA, NA              NA, NA
## 1081         <NA>              NA, NA              NA, NA
## 1082         <NA>              NA, NA              NA, NA
## 1083         <NA>              NA, NA              NA, NA
## 1084         <NA>              NA, NA              NA, NA
## 1085         <NA>              NA, NA              NA, NA
## 1086         <NA>              NA, NA              NA, NA
## 1087         <NA>              NA, NA              NA, NA
## 1088         <NA>              NA, NA              NA, NA
## 1089         <NA>              NA, NA              NA, NA
## 1090         <NA>              NA, NA              NA, NA
## 1091         <NA>              NA, NA              NA, NA
## 1092         <NA>              NA, NA              NA, NA
## 1093         <NA>              NA, NA              NA, NA
## 1094         <NA>              NA, NA              NA, NA
## 1095         <NA>              NA, NA              NA, NA
## 1096         <NA>              NA, NA              NA, NA
## 1097         <NA>              NA, NA              NA, NA
## 1098         <NA>              NA, NA              NA, NA
## 1099         <NA>              NA, NA              NA, NA
## 1100         <NA>              NA, NA              NA, NA
## 1101         <NA>              NA, NA              NA, NA
## 1102           GB              NA, NA              NA, NA
## 1103         <NA>              NA, NA              NA, NA
## 1104         <NA>              NA, NA              NA, NA
## 1105         <NA>              NA, NA              NA, NA
## 1106         <NA>              NA, NA              NA, NA
## 1107         <NA>              NA, NA              NA, NA
## 1108         <NA>              NA, NA              NA, NA
## 1109         <NA>              NA, NA              NA, NA
## 1110         <NA>              NA, NA              NA, NA
## 1111         <NA>              NA, NA              NA, NA
##                                                                                         bbox_coords
## 1                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 2                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 3                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 4                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 5                -81.48917, -81.40087, -81.40087, -81.48917, 41.27633, 41.27633, 41.34982, 41.34982
## 6                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 7                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 8                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 9                                                                    NA, NA, NA, NA, NA, NA, NA, NA
## 10                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 11                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 12             -106.64565, -93.50813, -93.50813, -106.64565, 25.83709, 25.83709, 36.50070, 36.50070
## 13                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 14                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 15                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 16                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 17                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 18                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 19                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 20                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 21                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 22                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 23                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 24                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 25                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 26                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 27               -82.50011, -81.41629, -81.41629, -82.50011, 41.67652, 41.67652, 42.65146, 42.65146
## 28                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 29                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 30                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 31                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 32                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 33                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 34                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 35                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 36                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 37                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 38                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 39                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 40                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 41                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 42                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 43                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 44                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 45                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 46                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 47                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 48                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 49                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 50                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 51                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 52                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 53                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 54                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 55                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 56                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 57                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 58                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 59                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 60                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 61                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 62                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 63                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 64                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 65                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 66                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 67                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 68                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 69                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 70                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 71                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 72                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 73                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 74                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 75                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 76                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 77                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 78                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 79   -0.1114755, -0.0297308, -0.0297308, -0.1114755, 51.4194247, 51.4194247, 51.5099470, 51.5099470
## 80                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 81           36.664573, 37.062667, 37.062667, 36.664573, -1.389053, -1.389053, -1.160673, -1.160673
## 82                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 83                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 84                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 85                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 86                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 87                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 88                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 89                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 90                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 91                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 92                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 93                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 94                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 95                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 96                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 97                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 98                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 99                                                                   NA, NA, NA, NA, NA, NA, NA, NA
## 100                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 101                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 102                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 103                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 104                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 105                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 106                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 107                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 108                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 109                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 110                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 111                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 112                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 113                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 114                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 115                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 116                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 117                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 118                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 119                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 120                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 121                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 122                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 123                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 124                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 125                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 126                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 127                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 128                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 129                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 130                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 131                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 132                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 133                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 134                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 135                  3.198942, 3.437190, 3.437190, 3.198942, 6.482676, 6.482676, 6.698546, 6.698546
## 136                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 137                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 138                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 139                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 140                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 141                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 142                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 143                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 144                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 145                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 146                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 147                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 148                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 149                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 150                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 151                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 152                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 153                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 154                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 155                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 156                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 157          -6.387438, -6.107805, -6.107805, -6.387438, 53.298745, 53.298745, 53.411060, 53.411060
## 158                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 159                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 160                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 161                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 162                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 163                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 164                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 165                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 166                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 167                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 168                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 169                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 170                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 171                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 172                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 173                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 174                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 175                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 176                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 177                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 178                  73.62470, 74.19546, 74.19546, 73.62470, 18.28010, 18.28010, 18.73622, 18.73622
## 179                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 180                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 181                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 182                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 183                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 184                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 185                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 186                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 187                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 188              -79.19534, -78.80888, -78.80888, -79.19534, 34.93624, 34.93624, 35.17301, 35.17301
## 189                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 190                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 191                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 192                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 193                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 194                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 195                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 196                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 197                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 198            -179.23109, 179.85969, 179.85969, -179.23109, 13.18234, 13.18234, 71.43436, 71.43436
## 199                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 200                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 201                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 202                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 203                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 204                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 205                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 206                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 207                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 208                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 209                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 210                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 211                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 212                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 213                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 214                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 215                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 216                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 217                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 218                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 219                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 220                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 221                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 222                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 223                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 224                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 225                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 226          -118.39590, -118.34339, -118.34339, -118.39590, 34.07596, 34.07596, 34.09806, 34.09806
## 227            -102.05177, -94.58808, -94.58808, -102.05177, 36.99311, 36.99311, 40.00328, 40.00328
## 228                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 229                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 230                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 231                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 232                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 233                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 234              -82.66947, -82.45784, -82.45784, -82.66947, 41.67638, 41.67638, 42.17171, 42.17171
## 235                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 236                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 237                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 238                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 239                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 240                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 241                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 242                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 243                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 244                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 245                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 246                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 247                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 248                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 249                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 250                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 251                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 252                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 253                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 254                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 255                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 256                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 257                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 258                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 259              -77.91729, -77.79892, -77.79892, -77.91729, 40.74933, 40.74933, 40.81775, 40.81775
## 260                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 261                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 262                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 263                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 264                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 265                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 266                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 267                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 268                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 269                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 270                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 271                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 272                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 273                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 274                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 275                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 276                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 277                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 278                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 279                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 280                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 281                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 282                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 283                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 284                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 285                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 286                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 287                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 288                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 289                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 290                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 291                  51.29387, 56.01755, 56.01755, 51.29387, 22.62614, 22.62614, 25.16396, 25.16396
## 292                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 293                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 294                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 295                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 296                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 297                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 298                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 299                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 300                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 301                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 302                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 303                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 304                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 305                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 306                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 307                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 308                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 309                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 310                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 311                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 312                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 313                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 314                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 315                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 316                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 317                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 318                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 319                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 320                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 321                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 322                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 323                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 324                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 325                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 326                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 327                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 328                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 329                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 330                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 331                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 332                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 333                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 334                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 335                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 336                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 337                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 338                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 339                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 340                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 341                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 342                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 343                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 344                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 345                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 346                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 347                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 348                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 349                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 350                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 351                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 352                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 353                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 354                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 355                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 356                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 357          148.27563, 148.31930, 148.31930, 148.27563, -34.33593, -34.33593, -34.29489, -34.29489
## 358                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 359                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 360                  7.304554, 7.543634, 7.543634, 7.304554, 8.961887, 8.961887, 9.185441, 9.185441
## 361                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 362                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 363                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 364                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 365                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 366                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 367                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 368                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 369                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 370                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 371                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 372                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 373                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 374                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 375                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 376                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 377                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 378                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 379                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 380                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 381                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 382                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 383                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 384                  75.63368, 76.15215, 76.15215, 75.63368, 30.56898, 30.56898, 31.01921, 31.01921
## 385                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 386          -2.185708, -2.048031, -2.048031, -2.185708, 53.492866, 53.492866, 53.592865, 53.592865
## 387                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 388              -80.51985, -74.68952, -74.68952, -80.51985, 39.71980, 39.71980, 42.51607, 42.51607
## 389                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 390                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 391                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 392                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 393                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 394                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 395                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 396                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 397                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 398                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 399                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 400                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 401                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 402                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 403                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 404                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 405                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 406                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 407                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 408                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 409                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 410                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 411                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 412                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 413                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 414                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 415                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 416                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 417              -95.67900, -95.39727, -95.39727, -95.67900, 30.23105, 30.23105, 30.44398, 30.44398
## 418                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 419                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 420                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 421                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 422                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 423                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 424                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 425                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 426                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 427                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 428                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 429                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 430                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 431                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 432                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 433                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 434                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 435                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 436                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 437                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 438                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 439                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 440                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 441                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 442                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 443                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 444              -80.24842, -79.57862, -79.57862, -80.24842, 43.05055, 43.05055, 43.47084, 43.47084
## 445                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 446                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 447                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 448                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 449                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 450                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 451                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 452                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 453                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 454                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 455                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 456                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 457                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 458                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 459                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 460                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 461                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 462                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 463                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 464                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 465                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 466                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 467                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 468                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 469                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 470                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 471                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 472                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 473                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 474                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 475                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 476                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 477                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 478                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 479                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 480                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 481                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 482                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 483                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 484                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 485                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 486                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 487                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 488                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 489                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 490                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 491                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 492                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 493                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 494                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 495              -85.03867, -84.79594, -84.79594, -85.03867, 32.37385, 32.37385, 32.59076, 32.59076
## 496                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 497                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 498                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 499                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 500                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 501                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 502                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 503              -72.33355, -72.18228, -72.18228, -72.33355, 41.27789, 41.27789, 41.42930, 41.42930
## 504                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 505                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 506                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 507                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 508                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 509                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 510                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 511                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 512                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 513                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 514                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 515                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 516                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 517                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 518                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 519                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 520                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 521              -74.94423, -74.84848, -74.84848, -74.94423, 39.91622, 39.91622, 40.00033, 40.00033
## 522                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 523                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 524                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 525                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 526                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 527                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 528                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 529                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 530                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 531                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 532                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 533                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 534                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 535                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 536                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 537                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 538                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 539                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 540                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 541                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 542                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 543                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 544                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 545                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 546                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 547                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 548                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 549                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 550                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 551                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 552                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 553                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 554                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 555                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 556                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 557                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 558                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 559                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 560                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 561              -74.00122, -74.00122, -74.00122, -74.00122, 40.75335, 40.75335, 40.75335, 40.75335
## 562                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 563                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 564                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 565                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 566                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 567                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 568                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 569                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 570                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 571                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 572                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 573                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 574                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 575                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 576                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 577                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 578                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 579                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 580                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 581                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 582                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 583                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 584                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 585                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 586                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 587                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 588                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 589                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 590          -124.48200, -114.13121, -114.13121, -124.48200, 32.52883, 32.52883, 42.00952, 42.00952
## 591                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 592                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 593                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 594                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 595                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 596                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 597                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 598                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 599                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 600                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 601                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 602                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 603                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 604                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 605                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 606                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 607                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 608                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 609                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 610                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 611                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 612                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 613                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 614                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 615                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 616                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 617                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 618                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 619                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 620                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 621                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 622                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 623                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 624                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 625                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 626                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 627                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 628                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 629                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 630                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 631                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 632                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 633                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 634                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 635                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 636                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 637                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 638                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 639                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 640                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 641                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 642                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 643                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 644                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 645                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 646                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 647                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 648                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 649                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 650                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 651                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 652                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 653                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 654                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 655                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 656                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 657                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 658                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 659                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 660                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 661                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 662                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 663              -73.93361, -73.76527, -73.76527, -73.93361, 40.78536, 40.78536, 40.91533, 40.91533
## 664                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 665                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 666                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 667                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 668                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 669                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 670                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 671                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 672                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 673                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 674                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 675                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 676                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 677                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 678                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 679                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 680                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 681                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 682                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 683                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 684                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 685                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 686                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 687          -118.46348, -118.43220, -118.43220, -118.46348, 33.96402, 33.96402, 33.98647, 33.98647
## 688                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 689                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 690                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 691                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 692                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 693                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 694                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 695                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 696                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 697                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 698                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 699                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 700                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 701                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 702                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 703                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 704                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 705                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 706                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 707                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 708                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 709                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 710                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 711                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 712                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 713                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 714                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 715                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 716                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 717                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 718                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 719                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 720                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 721                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 722                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 723                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 724                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 725                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 726                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 727                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 728                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 729                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 730                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 731                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 732                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 733                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 734          39.709478, 39.763428, 39.763428, 39.709478, -4.007851, -4.007851, -3.954173, -3.954173
## 735                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 736                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 737                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 738                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 739                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 740                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 741                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 742                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 743                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 744                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 745                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 746                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 747                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 748                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 749                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 750              -78.83250, -78.69677, -78.69677, -78.83250, 42.94890, 42.94890, 43.06933, 43.06933
## 751                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 752                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 753                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 754                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 755            9.389302, 25.146978, 25.146978, 9.389302, 19.498766, 19.498766, 33.166502, 33.166502
## 756                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 757                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 758                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 759                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 760                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 761                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 762                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 763                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 764                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 765                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 766                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 767                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 768                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 769                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 770                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 771                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 772                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 773              -80.32168, -80.14497, -80.14497, -80.32168, 25.70904, 25.70904, 25.85567, 25.85567
## 774                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 775                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 776                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 777                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 778                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 779                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 780                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 781              98.284540, 98.312618, 98.312618, 98.284540, 7.875697, 7.875697, 7.917885, 7.917885
## 782                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 783          -0.151910, -0.078902, -0.078902, -0.151910, 51.410792, 51.410792, 51.509887, 51.509887
## 784                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 785              -80.51985, -74.68952, -74.68952, -80.51985, 39.71980, 39.71980, 42.51607, 42.51607
## 786              -91.61106, -91.46307, -91.46307, -91.61106, 41.59918, 41.59918, 41.69553, 41.69553
## 787                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 788                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 789                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 790                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 791                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 792                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 793                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 794                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 795                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 796                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 797                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 798                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 799                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 800                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 801                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 802                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 803                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 804                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 805                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 806                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 807                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 808                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 809                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 810                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 811                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 812                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 813                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 814                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 815                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 816                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 817                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 818                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 819                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 820                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 821                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 822                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 823                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 824                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 825                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 826                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 827                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 828                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 829                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 830                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 831                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 832                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 833                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 834                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 835                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 836                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 837                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 838                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 839                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 840                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 841                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 842                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 843                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 844                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 845                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 846                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 847                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 848                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 849                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 850                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 851                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 852                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 853                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 854                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 855                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 856                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 857                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 858                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 859                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 860                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 861                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 862                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 863                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 864          -122.51493, -122.35703, -122.35703, -122.51493, 37.70808, 37.70808, 37.83324, 37.83324
## 865                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 866                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 867                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 868                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 869                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 870                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 871                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 872                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 873                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 874                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 875                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 876                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 877                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 878                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 879                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 880                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 881                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 882                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 883                  77.33058, 77.78632, 77.78632, 77.33058, 12.73194, 12.73194, 13.11429, 13.11429
## 884                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 885                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 886                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 887                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 888              -80.73878, -80.64298, -80.64298, -80.73878, 40.01715, 40.01715, 40.14938, 40.14938
## 889                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 890                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 891                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 892                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 893                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 894                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 895                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 896                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 897                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 898                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 899                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 900                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 901          -123.39440, -123.32236, -123.32236, -123.39440, 48.40301, 48.40301, 48.45045, 48.45045
## 902                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 903                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 904                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 905                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 906                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 907                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 908                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 909                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 910                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 911                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 912                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 913                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 914                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 915                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 916                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 917                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 918                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 919                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 920                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 921                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 922                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 923                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 924                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 925                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 926                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 927                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 928                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 929                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 930                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 931                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 932                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 933                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 934                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 935                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 936                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 937                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 938                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 939                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 940                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 941                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 942                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 943                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 944                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 945                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 946                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 947                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 948                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 949                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 950                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 951                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 952                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 953                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 954                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 955                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 956                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 957                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 958                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 959                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 960                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 961                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 962                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 963                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 964                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 965                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 966                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 967                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 968                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 969                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 970                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 971                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 972            -1.957296, 1.451788, 1.451788, -1.957296, 50.574606, 50.574606, 52.196285, 52.196285
## 973                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 974                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 975                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 976                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 977                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 978                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 979                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 980                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 981                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 982                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 983                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 984                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 985                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 986                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 987                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 988                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 989                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 990                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 991                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 992                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 993                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 994                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 995                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 996                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 997                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 998                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 999                                                                  NA, NA, NA, NA, NA, NA, NA, NA
## 1000                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1001                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1002                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1003                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1004                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1005                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1006                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1007                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1008                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1009                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1010         -117.96973, -117.96973, -117.96973, -117.96973, 34.06567, 34.06567, 34.06567, 34.06567
## 1011                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1012                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1013                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1014                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1015                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1016                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1017                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1018                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1019                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1020                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1021                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1022                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1023                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1024                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1025                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1026                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1027                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1028                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1029                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1030                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1031                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1032                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1033                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1034                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1035                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1036                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1037                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1038                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1039                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1040                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1041                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1042                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1043                 12.23443, 12.85586, 12.85586, 12.23443, 41.65587, 41.65587, 42.14096, 42.14096
## 1044                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1045                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1046                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1047                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1048                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1049                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1050                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1051                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1052                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1053                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1054                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1055                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1056                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1057                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1058                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1059                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1060                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1061                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1062                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1063                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1064                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1065                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1066                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1067                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1068                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1069                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1070                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1071                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1072                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1073                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1074                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1075                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1076                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1077                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1078                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1079                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1080                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1081                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1082                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1083                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1084                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1085                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1086                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1087                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1088                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1089                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1090                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1091                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1092                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1093                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1094                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1095                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1096                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1097                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1098                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1099                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1100                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1101                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1102         -3.057148, -2.936388, -2.936388, -3.057148, 53.734748, 53.734748, 53.780813, 53.780813
## 1103                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1104                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1105                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1106                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1107                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1108                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1109                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1110                                                                 NA, NA, NA, NA, NA, NA, NA, NA
## 1111                                                                 NA, NA, NA, NA, NA, NA, NA, NA
##                                                          status_url
## 1            https://twitter.com/tjhend1/status/1243582392390029315
## 2    https://twitter.com/RedPlacementLvl/status/1243630694561128452
## 3              https://twitter.com/ashic/status/1243589730194862081
## 4         https://twitter.com/EdAsante77/status/1243383641310244866
## 5        https://twitter.com/JeremyShorr/status/1243608134595338240
## 6       https://twitter.com/MensHealthUK/status/1243571257884409857
## 7         https://twitter.com/WALBNews10/status/1243315545962840064
## 8        https://twitter.com/npquarterly/status/1243317053026680834
## 9        https://twitter.com/bradpatrick/status/1243242635134939136
## 10    https://twitter.com/TheCommunityON/status/1243620718958518281
## 11   https://twitter.com/CityofPickering/status/1243233162412556288
## 12         https://twitter.com/Patty0987/status/1243317490509381632
## 13      https://twitter.com/food4thaught/status/1243300530140692485
## 14      https://twitter.com/jbrownie2218/status/1243598003803324416
## 15       https://twitter.com/AnastasiaTS/status/1243329796215656450
## 16      https://twitter.com/BethECBailey/status/1243375650557366272
## 17     https://twitter.com/Lumindustries/status/1243235698091704320
## 18   https://twitter.com/SahirRahaman203/status/1243255619252965376
## 19       https://twitter.com/kevinerdman/status/1243585919136997381
## 20          https://twitter.com/hanoiXan/status/1243380469678239746
## 21         https://twitter.com/DanHinz65/status/1243235323506757632
## 22          https://twitter.com/CVRecord/status/1243334806173126656
## 23           https://twitter.com/shreyas/status/1243595860274864128
## 24     https://twitter.com/AmbitiousChou/status/1243695392593776641
## 25           https://twitter.com/Moespi1/status/1243716807996903427
## 26              https://twitter.com/phre/status/1243632006325551105
## 27          https://twitter.com/CMHAWECB/status/1243234147931389952
## 28           https://twitter.com/DNYimga/status/1243264807589077001
## 29     https://twitter.com/Ellenr49Ellen/status/1243602051134672896
## 30      https://twitter.com/cissysmith13/status/1243624834397061122
## 31           https://twitter.com/Chisi86/status/1243809103694225408
## 32      https://twitter.com/brandondarby/status/1243723375320739846
## 33      https://twitter.com/HowertonNews/status/1243355064594358273
## 34            https://twitter.com/pcmahq/status/1243646223938129927
## 35     https://twitter.com/barbarajwells/status/1243391158992039938
## 36       https://twitter.com/shalini_das/status/1243815975700627457
## 37           https://twitter.com/MSalimu/status/1243817568114298880
## 38         https://twitter.com/EFFAT_org/status/1243589199728726021
## 39           https://twitter.com/Opeeka1/status/1243676970317164546
## 40       https://twitter.com/Stuart_Wood/status/1243343346312998912
## 41      https://twitter.com/100Concerned/status/1243310203862310912
## 42       https://twitter.com/7NewsMackay/status/1243713870641815552
## 43          https://twitter.com/Raffi_RC/status/1243331733757366272
## 44     https://twitter.com/IConcealCarry/status/1243619424759771136
## 45       https://twitter.com/AshTheTenor/status/1243747288427532288
## 46      https://twitter.com/Comm_Bonilla/status/1243355076476858368
## 47            https://twitter.com/Ognir2/status/1243293630154059776
## 48     https://twitter.com/RonaMackayMSP/status/1243229036526088193
## 49    https://twitter.com/FirstChoiceVeg/status/1243288988191993856
## 50   https://twitter.com/JessicaShumaker/status/1243696292901146626
## 51           https://twitter.com/Sumol67/status/1243696532542705665
## 52      https://twitter.com/permabear_uk/status/1243288206344433665
## 53   https://twitter.com/ProjectValhall1/status/1243359856590860289
## 54   https://twitter.com/NoahsArkHospice/status/1243334440937545733
## 55       https://twitter.com/magpietail1/status/1243265204869349377
## 56   https://twitter.com/Vanessa46876415/status/1243379553986170880
## 57      https://twitter.com/danya_suzuki/status/1243350528572059649
## 58          https://twitter.com/Q2i_CASA/status/1243347865667133440
## 59   https://twitter.com/threadreaderapp/status/1243226475823857664
## 60   https://twitter.com/adamcha17729360/status/1243616960769908736
## 61         https://twitter.com/Kasliwala/status/1243340400779239424
## 62      https://twitter.com/kate_depalma/status/1243291113043222528
## 63   https://twitter.com/NewsfromScience/status/1243364653280800768
## 64       https://twitter.com/PeeJayAitch/status/1243240133911965696
## 65          https://twitter.com/Aintropy/status/1243577240132018177
## 66           https://twitter.com/dhnaves/status/1243668846504030211
## 67     https://twitter.com/SoberTool_App/status/1243776103849828352
## 68        https://twitter.com/bPositive_/status/1243580620950966273
## 69   https://twitter.com/AustinKellerman/status/1243267436062916608
## 70    https://twitter.com/tabisah_thabie/status/1243825473756573698
## 71     https://twitter.com/SportBusiness/status/1243344006249095174
## 72           https://twitter.com/amogh_c/status/1243276045618253824
## 73          https://twitter.com/curogram/status/1243341092315152389
## 74   https://twitter.com/Gabriel77899712/status/1243612093930143746
## 75       https://twitter.com/killavillas/status/1243742940415041536
## 76      https://twitter.com/johnbachtell/status/1243724112935161856
## 77          https://twitter.com/KimHaydo/status/1243692943766106117
## 78       https://twitter.com/richwithtea/status/1243566324212785159
## 79       https://twitter.com/deehfairley/status/1243309252799860747
## 80      https://twitter.com/CivicScience/status/1243239807226204160
## 81        https://twitter.com/WycliffeJb/status/1243795008404291585
## 82         https://twitter.com/BUCompSci/status/1243239387741270017
## 83          https://twitter.com/Nickala5/status/1243283524662239237
## 84      https://twitter.com/SankofaQueen/status/1243319779554885632
## 85            https://twitter.com/tjmule/status/1243632536116277248
## 86       https://twitter.com/joh_adeniyi/status/1243630837003956225
## 87   https://twitter.com/DaBajaurGuloona/status/1243747932748288000
## 88   https://twitter.com/ColumbiaDoctors/status/1243674284826021889
## 89         https://twitter.com/DLA_Piper/status/1243691274131169282
## 90    https://twitter.com/Gaurav67949350/status/1243808572460265474
## 91    https://twitter.com/SenYahuzasaadu/status/1243582484173946880
## 92     https://twitter.com/UneisIbnmalik/status/1243589488682717185
## 93     https://twitter.com/Daily_Express/status/1243628859188113408
## 94   https://twitter.com/personalliberty/status/1243631404744916992
## 95      https://twitter.com/ElainaCScott/status/1243314463731638272
## 96      https://twitter.com/WITBANK_NEWS/status/1243225539059556352
## 97      https://twitter.com/Charlie_APWS/status/1243711536243167238
## 98   https://twitter.com/MyositisSupport/status/1243228815574196227
## 99          https://twitter.com/LandGLab/status/1243823496540479489
## 100           https://twitter.com/tjbtts/status/1243731683385446407
## 101         https://twitter.com/RefeKids/status/1243813938007072769
## 102           https://twitter.com/caggly/status/1243820525924823040
## 103  https://twitter.com/KaleemA09420978/status/1243718567847243776
## 104          https://twitter.com/BDCal64/status/1243780263395590146
## 105      https://twitter.com/sarbazseffr/status/1243636434461954052
## 106         https://twitter.com/gailloos/status/1243632624393805825
## 107  https://twitter.com/solanheadlines1/status/1243768045845098496
## 108    https://twitter.com/UWBadgerPilot/status/1243276204863602689
## 109    https://twitter.com/alexinbulimba/status/1243289658462588928
## 110    https://twitter.com/KhosroKalbasi/status/1243818202381144064
## 111  https://twitter.com/IsraelAdemola19/status/1243643446142930949
## 112       https://twitter.com/EllypopArt/status/1243231575040561157
## 113  https://twitter.com/librarythingtim/status/1243766427456339968
## 114       https://twitter.com/lincconard/status/1243628927396036610
## 115       https://twitter.com/jlitwinetz/status/1243802106852761601
## 116   https://twitter.com/TheRealROLAND2/status/1243613963994226690
## 117         https://twitter.com/KGETnews/status/1243689276124073984
## 118  https://twitter.com/PADOBSsecretary/status/1243583720705200128
## 119        https://twitter.com/SwapneelF/status/1243381114749632512
## 120     https://twitter.com/MichaudScott/status/1243321970701357063
## 121  https://twitter.com/_HotGalNextDoor/status/1243247696451952640
## 122        https://twitter.com/akoroma08/status/1243586973391937536
## 123     https://twitter.com/sawsawsawwas/status/1243664326075936768
## 124          https://twitter.com/680NEWS/status/1243581674039971849
## 125        https://twitter.com/DrKenVick/status/1243232376592969729
## 126  https://twitter.com/AlmuraikhiNihal/status/1243323024457322498
## 127   https://twitter.com/CrazyPotato863/status/1243567043087159297
## 128      https://twitter.com/shah_sheikh/status/1243317445705662465
## 129     https://twitter.com/readfrontier/status/1243262643865034752
## 130      https://twitter.com/tonyevans88/status/1243614496335237121
## 131           https://twitter.com/ErollB/status/1243613981954187264
## 132    https://twitter.com/universesrini/status/1243829989268533249
## 133       https://twitter.com/Agent99XXX/status/1243236667462475777
## 134       https://twitter.com/Antoniopu_/status/1243245393321828357
## 135     https://twitter.com/faluyikayode/status/1243228493112057857
## 136          https://twitter.com/opa1420/status/1243801026936725504
## 137  https://twitter.com/yellowjacket226/status/1243311743775805442
## 138         https://twitter.com/CDRFidel/status/1243231200459624448
## 139   https://twitter.com/DrDanielGillis/status/1243594078840934401
## 140            https://twitter.com/gcboe/status/1243584826613080066
## 141  https://twitter.com/ShashiGangadhar/status/1243590771703312385
## 142        https://twitter.com/MerriamKS/status/1243643832400519169
## 143          https://twitter.com/basetax/status/1243248323768864769
## 144         https://twitter.com/Bossina8/status/1243701488297353216
## 145         https://twitter.com/mainak13/status/1243261713245323267
## 146       https://twitter.com/kevdenny23/status/1243258992916381698
## 147      https://twitter.com/Ankushjha99/status/1243715620010508289
## 148    https://twitter.com/rfpearson2004/status/1243579143943487488
## 149    https://twitter.com/bazecitymedia/status/1243326845136879618
## 150          https://twitter.com/Klepto0/status/1243654868503597061
## 151      https://twitter.com/KenzieWynne/status/1243370358448820225
## 152     https://twitter.com/brosandprose/status/1243288849893273601
## 153         https://twitter.com/SenateAR/status/1243244544491167744
## 154    https://twitter.com/SirLolsworthy/status/1243292504713072642
## 155  https://twitter.com/chandlerchamber/status/1243243251068334081
## 156    https://twitter.com/foxxiebrown67/status/1243273156791537665
## 157      https://twitter.com/ColmJDawson/status/1243566227404054529
## 158   https://twitter.com/CynthiaBenjamn/status/1243391586362208256
## 159           https://twitter.com/Venafi/status/1243666679407808512
## 160        https://twitter.com/leonardkl/status/1243229907301412865
## 161  https://twitter.com/christophernay1/status/1243604693466722305
## 162   https://twitter.com/SuccessfulFarm/status/1243627576435892225
## 163     https://twitter.com/RuntaAqoonta/status/1243259237331013633
## 164     https://twitter.com/CaroleTurner/status/1243690222719766529
## 165    https://twitter.com/KrauseForIowa/status/1243765083525779457
## 166      https://twitter.com/CityofMiami/status/1243244258137702402
## 167   https://twitter.com/Candra52847858/status/1243819252521418752
## 168     https://twitter.com/Muhammadaoad/status/1243740261487988736
## 169    https://twitter.com/SAFoundationN/status/1243826678004166656
## 170         https://twitter.com/NWMOInfo/status/1243257699325919237
## 171         https://twitter.com/lykaboss/status/1243337671667146752
## 172   https://twitter.com/VanaparthiMahi/status/1243241756537155585
## 173      https://twitter.com/thomkenrick/status/1243281614018404353
## 174   https://twitter.com/Suresh17104120/status/1243747330852941825
## 175   https://twitter.com/HeidiCreighton/status/1243570430365007873
## 176        https://twitter.com/rg_duncan/status/1243737293816508416
## 177      https://twitter.com/QuesnelNews/status/1243238810747465731
## 178     https://twitter.com/sabapathyram/status/1243774550644408325
## 179          https://twitter.com/salnews/status/1243349531338723330
## 180          https://twitter.com/cbloggy/status/1243648743163006976
## 181   https://twitter.com/MayorofBurnaby/status/1243255519206408199
## 182         https://twitter.com/Santyna2/status/1243625543393828864
## 183         https://twitter.com/nessie12/status/1243661741248016384
## 184         https://twitter.com/Mbengei_/status/1243742716825141251
## 185         https://twitter.com/TxID_Edu/status/1243239741236981760
## 186       https://twitter.com/SoTemitope/status/1243786030068662273
## 187   https://twitter.com/mikemerlinator/status/1243361477962031104
## 188    https://twitter.com/andreharris89/status/1243340602122665988
## 189      https://twitter.com/horlabhankz/status/1243764864587309058
## 190     https://twitter.com/claresturges/status/1243236928058789894
## 191     https://twitter.com/ChapiEtChapo/status/1243272148350914563
## 192       https://twitter.com/maryfshort/status/1243668890946805761
## 193   https://twitter.com/TheWilsonTimes/status/1243796177897865216
## 194     https://twitter.com/pietroodelli/status/1243676958950653952
## 195       https://twitter.com/coolbuzz23/status/1243262244743286784
## 196  https://twitter.com/koreanjewcrypto/status/1243231798194081792
## 197        https://twitter.com/UFOgigolo/status/1243287588728782848
## 198  https://twitter.com/BrendaP84760115/status/1243748957186150401
## 199       https://twitter.com/PayneWynne/status/1243385575555530761
## 200            https://twitter.com/TapMr/status/1243368061496745984
## 201           https://twitter.com/rpfwr1/status/1243823955758194689
## 202    https://twitter.com/1coralharbour/status/1243313262562705408
## 203     https://twitter.com/JohnGBaresky/status/1243295458946097153
## 204       https://twitter.com/AcronisSCS/status/1243694603045179392
## 205       https://twitter.com/WWECritics/status/1243636532147294214
## 206       https://twitter.com/jeffalgera/status/1243708156523335681
## 207  https://twitter.com/IndependentInst/status/1243257918868381701
## 208   https://twitter.com/serina98010207/status/1243259216120311808
## 209         https://twitter.com/wagygirl/status/1243714839236595712
## 210   https://twitter.com/ShannonBarber1/status/1243734593666154499
## 211  https://twitter.com/chicago2arizona/status/1243757730315161602
## 212       https://twitter.com/CBCCalgary/status/1243566753277452288
## 213         https://twitter.com/deswixon/status/1243649654094475270
## 214        https://twitter.com/v_shakthi/status/1243312576391348224
## 215        https://twitter.com/Beleafer1/status/1243682481359945730
## 216  https://twitter.com/AnthonyTilghman/status/1243592852036345861
## 217       https://twitter.com/bydeaddude/status/1243728299194540033
## 218       https://twitter.com/EmbacubaNZ/status/1243264356067889152
## 219      https://twitter.com/cupidalaska/status/1243274952054394880
## 220        https://twitter.com/raebyung1/status/1243659296363016192
## 221        https://twitter.com/csgazette/status/1243258406011432961
## 222      https://twitter.com/honestduane/status/1243646787220410368
## 223       https://twitter.com/nimrazulfi/status/1243779847215886336
## 224  https://twitter.com/juliamarblefaun/status/1243226712676036609
## 225      https://twitter.com/TheAgeOfAGs/status/1243572032656281603
## 226  https://twitter.com/BluePRintBrands/status/1243567897148100610
## 227         https://twitter.com/Aly_Dar8/status/1243363291100930049
## 228         https://twitter.com/Ayonadre/status/1243708909594062848
## 229        https://twitter.com/sunidhii_/status/1243243054141595649
## 230    https://twitter.com/coronalivebot/status/1243713539778334720
## 231    https://twitter.com/AttorneyCrump/status/1243617338706067462
## 232        https://twitter.com/jsrailton/status/1243259984764338176
## 233  https://twitter.com/InsideNo9Tweets/status/1243692863554232321
## 234   https://twitter.com/taylordiciocco/status/1243345314788061185
## 235  https://twitter.com/GlobalNewsJapan/status/1243751085849718786
## 236        https://twitter.com/TomBewick/status/1243616655667859456
## 237    https://twitter.com/halfeatenmind/status/1243251390652256256
## 238     https://twitter.com/SceneSallard/status/1243226053289693184
## 239  https://twitter.com/Buckersquiteold/status/1243695868781506560
## 240            https://twitter.com/ukSJS/status/1243266561936363520
## 241       https://twitter.com/Allchanges/status/1243612197797969927
## 242        https://twitter.com/LikeSmize/status/1243685160035291136
## 243    https://twitter.com/jj_sandoval18/status/1243647127127052290
## 244        https://twitter.com/NoorHudaa/status/1243351151715606528
## 245     https://twitter.com/Act4Palestin/status/1243229441247129602
## 246        https://twitter.com/xBallsyxx/status/1243239973425500167
## 247         https://twitter.com/hunterei/status/1243353255247106048
## 248    https://twitter.com/IanStruckhoff/status/1243652397198540800
## 249        https://twitter.com/lanielans/status/1243244500753027080
## 250     https://twitter.com/angelswithbr/status/1243591859450064899
## 251         https://twitter.com/ANERAorg/status/1243238669554769921
## 252       https://twitter.com/playfulraf/status/1243615945739898880
## 253        https://twitter.com/Puttyhead/status/1243271115780358144
## 254       https://twitter.com/BFilenames/status/1243774944405786626
## 255          https://twitter.com/LFPress/status/1243593643841204230
## 256  https://twitter.com/juliecasperroth/status/1243718575107555328
## 257  https://twitter.com/Animal_Genetics/status/1243271891244048384
## 258     https://twitter.com/SeeHearSmell/status/1243261120187531265
## 259        https://twitter.com/drsmadden/status/1243626182467354624
## 260       https://twitter.com/synapse101/status/1243282132828487682
## 261      https://twitter.com/always_vote/status/1243301356791681024
## 262     https://twitter.com/Alicia_Akeys/status/1243765063904907265
## 263          https://twitter.com/CYPStNN/status/1243608271094718465
## 264        https://twitter.com/maxbone55/status/1243241503117508616
## 265          https://twitter.com/Only4RM/status/1243665449738539014
## 266      https://twitter.com/paranoidpal/status/1243572064906358787
## 267            https://twitter.com/ZAmmi/status/1243260859805323266
## 268    https://twitter.com/BrunswickGovt/status/1243666789751566338
## 269      https://twitter.com/LaKingsDB23/status/1243301459250180096
## 270   https://twitter.com/Silent_deserts/status/1243660710602772480
## 271     https://twitter.com/jrdothoughts/status/1243589858318311428
## 272      https://twitter.com/YashdeepRaj/status/1243243325043474434
## 273  https://twitter.com/SabyasachiRath3/status/1243240220159438848
## 274           https://twitter.com/jplum2/status/1243725175167660032
## 275       https://twitter.com/Josh220345/status/1243287982326665218
## 276         https://twitter.com/ShSPDER1/status/1243590768289353729
## 277   https://twitter.com/Mayankkrsinghr/status/1243331368953806853
## 278      https://twitter.com/carsonmaryc/status/1243616441125011457
## 279      https://twitter.com/sid20022019/status/1243751312283463681
## 280       https://twitter.com/MahycoGrow/status/1243579440245997568
## 281  https://twitter.com/wordoftheday411/status/1243331358321192960
## 282      https://twitter.com/RoyceWestTX/status/1243594012910653443
## 283       https://twitter.com/Lex_Jurgen/status/1243728115202797568
## 284     https://twitter.com/normallen958/status/1243647456539271171
## 285     https://twitter.com/colemarisa49/status/1243579350634676228
## 286       https://twitter.com/CubSwanson/status/1243611561974837248
## 287      https://twitter.com/mikebuckham/status/1243348447278895105
## 288     https://twitter.com/TrendingAtoZ/status/1243319405947129856
## 289    https://twitter.com/MelissaOnline/status/1243576991216959491
## 290     https://twitter.com/HafsaZahid10/status/1243808821790806022
## 291       https://twitter.com/myasin_law/status/1243660572320768000
## 292  https://twitter.com/TheR4experience/status/1243643373942116355
## 293      https://twitter.com/CJtheDJ3791/status/1243335035039744001
## 294        https://twitter.com/pdartesia/status/1243631369583984641
## 295        https://twitter.com/wendylfps/status/1243727317404471297
## 296     https://twitter.com/PtboExaminer/status/1243640658579132416
## 297     https://twitter.com/JamesSAtkins/status/1243350854117117953
## 298     https://twitter.com/MarcSkulnick/status/1243644667218059264
## 299         https://twitter.com/MABRN999/status/1243328440486551556
## 300     https://twitter.com/WenZhang2018/status/1243755036938813440
## 301        https://twitter.com/NuniSasYu/status/1243602116553379842
## 302   https://twitter.com/MovingMarkets_/status/1243747789848403969
## 303         https://twitter.com/sn00pdad/status/1243672218283974663
## 304        https://twitter.com/diane7thh/status/1243702437086666755
## 305           https://twitter.com/SKosgy/status/1243826970787549184
## 306            https://twitter.com/e_gow/status/1243278151121162240
## 307    https://twitter.com/Bacon4Spinner/status/1243740525901070349
## 308  https://twitter.com/ServproHaverhil/status/1243613894704279552
## 309         https://twitter.com/RainMaki/status/1243636933806428163
## 310         https://twitter.com/hine_hin/status/1243269286203924484
## 311     https://twitter.com/floraisadora/status/1243686062930530304
## 312        https://twitter.com/BBC_Hyung/status/1243690784156610560
## 313     https://twitter.com/iproposethis/status/1243647564252983296
## 314           https://twitter.com/dcbahr/status/1243616519310815232
## 315         https://twitter.com/indiacom/status/1243345949893611522
## 316     https://twitter.com/AlbertaPress/status/1243701503665135621
## 317      https://twitter.com/trustam1278/status/1243263497959608325
## 318  https://twitter.com/sjwilliams19671/status/1243303477943496704
## 319    https://twitter.com/wonderz_adepa/status/1243273975603646465
## 320        https://twitter.com/HOLYSMKES/status/1243731264965718017
## 321   https://twitter.com/SteveSReynolds/status/1243602734387007489
## 322            https://twitter.com/Gzaxs/status/1243236919384969217
## 323        https://twitter.com/BisciariP/status/1243647506354966531
## 324         https://twitter.com/Arizton2/status/1243583739210465288
## 325     https://twitter.com/juicyupdate1/status/1243628590278860800
## 326         https://twitter.com/Bakerdun/status/1243631885642862592
## 327  https://twitter.com/perfectpolished/status/1243269837700333569
## 328      https://twitter.com/minizter669/status/1243339225111711745
## 329    https://twitter.com/HMRCcustomers/status/1243258354354589697
## 330   https://twitter.com/theworldinnews/status/1243263400966270986
## 331      https://twitter.com/bhumilpatel/status/1243392124185243648
## 332        https://twitter.com/Brintha_M/status/1243314917589037061
## 333    https://twitter.com/cuppediavenia/status/1243592021673226241
## 334      https://twitter.com/GHMansfield/status/1243312954898100229
## 335       https://twitter.com/nevikjames/status/1243632599341232128
## 336      https://twitter.com/eswarkanchu/status/1243582017398140928
## 337      https://twitter.com/aFathersLog/status/1243331716464275456
## 338           https://twitter.com/dmraci/status/1243637562893389833
## 339   https://twitter.com/africanaffairs/status/1243651785987932165
## 340  https://twitter.com/TheCons58568059/status/1243648322541404160
## 341     https://twitter.com/thecraftykat/status/1243779543015571456
## 342         https://twitter.com/JMHUSTLE/status/1243652247705149441
## 343    https://twitter.com/StuartShanker/status/1243304288073515014
## 344          https://twitter.com/abbylog/status/1243585703738511361
## 345   https://twitter.com/elle_josephine/status/1243809483354062850
## 346     https://twitter.com/Bitcollector/status/1243773185352400896
## 347        https://twitter.com/shaojiang/status/1243636878282305536
## 348  https://twitter.com/BenjaminMatth12/status/1243740365309521923
## 349     https://twitter.com/Inno_Ochieng/status/1243809305146646529
## 350     https://twitter.com/Greensfelder/status/1243638907704610816
## 351   https://twitter.com/trvlyblessed__/status/1243701197963476993
## 352    https://twitter.com/northglennews/status/1243602615386148865
## 353   https://twitter.com/davidmotsinger/status/1243581476719022082
## 354   https://twitter.com/northwaleslive/status/1243264206650011648
## 355       https://twitter.com/JanesINTEL/status/1243583733942366209
## 356           https://twitter.com/tv6tnt/status/1243578921532211200
## 357        https://twitter.com/kirosamin/status/1243683749440569344
## 358         https://twitter.com/fmhansen/status/1243797559669215234
## 359   https://twitter.com/DrumChronicles/status/1243599675946647558
## 360     https://twitter.com/EdwardKallon/status/1243255485266104330
## 361    https://twitter.com/TravisLAdkins/status/1243574318854033413
## 362     https://twitter.com/RogerJComte2/status/1243712247031050251
## 363      https://twitter.com/ShaulTurner/status/1243326555633434624
## 364     https://twitter.com/whymethodamn/status/1243613738600747009
## 365   https://twitter.com/MetroByTMobile/status/1243649707353743368
## 366    https://twitter.com/AwaisRizvi313/status/1243365072929353728
## 367     https://twitter.com/EvansShallom/status/1243646554822660104
## 368        https://twitter.com/texan2you/status/1243568991148240902
## 369       https://twitter.com/mamabigdog/status/1243700244782526464
## 370      https://twitter.com/AntoniaGiro/status/1243607654745980928
## 371       https://twitter.com/JAMMULINKS/status/1243385173946667011
## 372       https://twitter.com/MsVWebster/status/1243268337867657217
## 373         https://twitter.com/Bob_Grip/status/1243717873396260866
## 374     https://twitter.com/CeciliaBTory/status/1243308382871785474
## 375   https://twitter.com/DimitriEynikel/status/1243615476099530753
## 376          https://twitter.com/nanaibm/status/1243824716470763522
## 377          https://twitter.com/BikhamT/status/1243574607208161282
## 378  https://twitter.com/JohnOke87997547/status/1243597812056690689
## 379        https://twitter.com/diannebee/status/1243566473202843649
## 380   https://twitter.com/JasonPuckettTV/status/1243579579056500739
## 381           https://twitter.com/espudo/status/1243743248205504512
## 382         https://twitter.com/bradnull/status/1243582806816460801
## 383         https://twitter.com/NEU_left/status/1243830068801044480
## 384  https://twitter.com/BHARATS66169558/status/1243751422056747008
## 385      https://twitter.com/victory1261/status/1243335023547293698
## 386     https://twitter.com/dj_blue_eyes/status/1243830775507795968
## 387     https://twitter.com/MrNixonsWife/status/1243719517928173570
## 388  https://twitter.com/Johnnie23378734/status/1243329232366960643
## 389      https://twitter.com/ChesterGlyn/status/1243286338423738368
## 390    https://twitter.com/letspawsfirst/status/1243646628587884551
## 391      https://twitter.com/kaytyleslie/status/1243265300184698880
## 392  https://twitter.com/HedofLettuce777/status/1243346818160680960
## 393   https://twitter.com/DanGriffinWLWT/status/1243591167301861379
## 394         https://twitter.com/IWNGwent/status/1243569848963289090
## 395     https://twitter.com/CountyPitkin/status/1243289864285474816
## 396   https://twitter.com/She_twoDjbreal/status/1243575767314956288
## 397    https://twitter.com/trianglesides/status/1243236876389158913
## 398       https://twitter.com/YaleGlobal/status/1243336052754067459
## 399      https://twitter.com/popthestack/status/1243373017884839936
## 400        https://twitter.com/allafrica/status/1243653826189672455
## 401        https://twitter.com/FOX61News/status/1243232513901899778
## 402   https://twitter.com/Cert_Listeners/status/1243611412745859072
## 403   https://twitter.com/JohnTerryTresh/status/1243580413660053504
## 404        https://twitter.com/11sandy71/status/1243621361593077762
## 405          https://twitter.com/JRBinSV/status/1243232979050102784
## 406            https://twitter.com/41NBC/status/1243635179953979392
## 407  https://twitter.com/SimilkameenNews/status/1243253269683523585
## 408      https://twitter.com/chasbrennan/status/1243256026792472578
## 409  https://twitter.com/Saving4XtraRice/status/1243281759065669632
## 410        https://twitter.com/rangegrrl/status/1243326770884956162
## 411         https://twitter.com/FrogNews/status/1243312601267830789
## 412    https://twitter.com/ClockhouseEN2/status/1243606900178067457
## 413    https://twitter.com/johnnybravo37/status/1243799574755639296
## 414         https://twitter.com/chat_owl/status/1243243957670338563
## 415    https://twitter.com/AdjanorMensan/status/1243356335841800193
## 416         https://twitter.com/Cinnaire/status/1243638223370440713
## 417       https://twitter.com/utaustin04/status/1243668037162729478
## 418  https://twitter.com/sergiovivas1398/status/1243663300304326657
## 419   https://twitter.com/GoodDayAtlanta/status/1243227039097856001
## 420  https://twitter.com/HannaBoysCenter/status/1243245539459825664
## 421      https://twitter.com/TRANS_W0MAN/status/1243664198279647232
## 422    https://twitter.com/Current_Knewz/status/1243279211994976261
## 423        https://twitter.com/EllenKoko/status/1243740488265609216
## 424      https://twitter.com/Ricky_D_PDX/status/1243628881321455616
## 425        https://twitter.com/QuickTake/status/1243789932998660097
## 426       https://twitter.com/brandi__yo/status/1243700568599793664
## 427       https://twitter.com/TTomkins22/status/1243272845347688448
## 428    https://twitter.com/salariandeals/status/1243632665418510342
## 429  https://twitter.com/georgiastraight/status/1243292920251375619
## 430         https://twitter.com/Udit_Eco/status/1243795575956484097
## 431     https://twitter.com/CranTownsman/status/1243679329730494464
## 432  https://twitter.com/NationalJeweler/status/1243275299086831629
## 433      https://twitter.com/Maria707377/status/1243702104868282374
## 434     https://twitter.com/eyesonfoxorg/status/1243248187823075332
## 435          https://twitter.com/KNX1070/status/1243255713536696320
## 436  https://twitter.com/Champ1Diversity/status/1243231125255806976
## 437         https://twitter.com/apwc2020/status/1243229324632707073
## 438     https://twitter.com/AlamoudManal/status/1243718075226226696
## 439  https://twitter.com/PandemicCovid20/status/1243288382857285632
## 440    https://twitter.com/SicamousEagle/status/1243669390999949312
## 441    https://twitter.com/andinthiscalm/status/1243737859347165190
## 442         https://twitter.com/DHIN_HIE/status/1243586596231929857
## 443         https://twitter.com/KiMira76/status/1243684584732180480
## 444       https://twitter.com/ThugDogg94/status/1243607516141031426
## 445      https://twitter.com/pawankverma/status/1243389085852381186
## 446     https://twitter.com/ESilvermanMD/status/1243243769106812928
## 447       https://twitter.com/writerlane/status/1243650239027916802
## 448    https://twitter.com/ImamHussainGC/status/1243581644088299520
## 449    https://twitter.com/pen_is_mighty/status/1243590690946183168
## 450          https://twitter.com/mairkrh/status/1243310842168426497
## 451           https://twitter.com/bjork5/status/1243253736006455301
## 452       https://twitter.com/RekhaCBabu/status/1243369434284081157
## 453      https://twitter.com/airtelindia/status/1243232849278337025
## 454  https://twitter.com/ShallimaMaharaj/status/1243263031271923724
## 455          https://twitter.com/kojman1/status/1243297272798027778
## 456  https://twitter.com/ChanningCarrin8/status/1243662592490516482
## 457   https://twitter.com/holy_scribbler/status/1243589400698802179
## 458       https://twitter.com/tokenstate/status/1243612615194132480
## 459          https://twitter.com/p_greze/status/1243360608159797248
## 460  https://twitter.com/Jennife25073649/status/1243260787495485440
## 461          https://twitter.com/1jiska1/status/1243804285265117186
## 462      https://twitter.com/PortsideOrg/status/1243392318025035780
## 463   https://twitter.com/SalemMedCenter/status/1243625052869926920
## 464          https://twitter.com/pmaya47/status/1243667106031448067
## 465      https://twitter.com/leoncekealy/status/1243289726511013888
## 466           https://twitter.com/KathTX/status/1243637137691545601
## 467  https://twitter.com/FinancialXpress/status/1243368896469454849
## 468   https://twitter.com/WildsidePhotog/status/1243306224784945152
## 469    https://twitter.com/AmericanJedi3/status/1243719468381089794
## 470         https://twitter.com/izaanfly/status/1243734921492852736
## 471  https://twitter.com/realitycheckme1/status/1243644315429208070
## 472      https://twitter.com/Tom_E_Angel/status/1243724758249807872
## 473          https://twitter.com/bre77co/status/1243362375278854146
## 474      https://twitter.com/thalesgroup/status/1243588718331658241
## 475        https://twitter.com/horchak77/status/1243261417991606273
## 476         https://twitter.com/PaulGelb/status/1243691785697845249
## 477      https://twitter.com/vfarrellart/status/1243712696341667840
## 478         https://twitter.com/WTFSahil/status/1243617876264783872
## 479      https://twitter.com/TheCocamama/status/1243252767105462272
## 480  https://twitter.com/_TanyaRobinson_/status/1243645928671547392
## 481          https://twitter.com/AareAgo/status/1243565253113327618
## 482  https://twitter.com/Hypemanmaxload1/status/1243643879779454979
## 483          https://twitter.com/AFAofPA/status/1243745141053104128
## 484       https://twitter.com/TheSJTobin/status/1243679808640495621
## 485   https://twitter.com/YoutubeCherrie/status/1243257089293770753
## 486     https://twitter.com/Solidus316YT/status/1243740592451891200
## 487         https://twitter.com/Briizzll/status/1243628590312255488
## 488   https://twitter.com/Sou_HotWhopper/status/1243328361541189632
## 489           https://twitter.com/Conga1/status/1243338964490244097
## 490     https://twitter.com/PhysiosforPA/status/1243283841122353153
## 491    https://twitter.com/Ahmadzai_rooh/status/1243809254340952064
## 492  https://twitter.com/Mohitka93905897/status/1243589634652848135
## 493    https://twitter.com/aClearOutlook/status/1243275984842838016
## 494    https://twitter.com/7NewsAdelaide/status/1243660701270298624
## 495          https://twitter.com/emkent5/status/1243294127762145284
## 496      https://twitter.com/xanaicastro/status/1243707233399123969
## 497         https://twitter.com/julianpo/status/1243802907721355265
## 498        https://twitter.com/SumaMzee2/status/1243238415660974080
## 499           https://twitter.com/soitiz/status/1243604703998590976
## 500      https://twitter.com/ItMustBeJim/status/1243226153306841089
## 501        https://twitter.com/BuckForPA/status/1243253449195696134
## 502          https://twitter.com/vijansi/status/1243235914513559552
## 503       https://twitter.com/tinadetelj/status/1243374478782091270
## 504       https://twitter.com/markhughes/status/1243626317217742853
## 505    https://twitter.com/AllisonPapson/status/1243691117876576257
## 506    https://twitter.com/lanallawrence/status/1243611673849671700
## 507       https://twitter.com/mocarski_p/status/1243743051845177346
## 508       https://twitter.com/KeaneJodie/status/1243284858417315841
## 509    https://twitter.com/HitpalSingh10/status/1243392305198845954
## 510     https://twitter.com/NineDragons2/status/1243353735910191105
## 511  https://twitter.com/ChrisTrikomitis/status/1243817271228862464
## 512  https://twitter.com/theofficialmadj/status/1243653162445213698
## 513          https://twitter.com/umtroII/status/1243598871235833859
## 514  https://twitter.com/coronavirus2019/status/1243244287233593344
## 515       https://twitter.com/pennyarnie/status/1243287292694888448
## 516        https://twitter.com/fikriwiki/status/1243357027700592641
## 517          https://twitter.com/BioMath/status/1243569003932667904
## 518  https://twitter.com/AdelekeOmobori1/status/1243657728591085585
## 519      https://twitter.com/MissSumaiya/status/1243773244261400576
## 520        https://twitter.com/shall_try/status/1243276385860247553
## 521  https://twitter.com/AnthonyQuintano/status/1243697282874253312
## 522  https://twitter.com/DragonDigitalM1/status/1243312776858071046
## 523    https://twitter.com/BernardDmello/status/1243746008120557568
## 524       https://twitter.com/Sistergetu/status/1243588764301242368
## 525       https://twitter.com/MztaSlimzy/status/1243628438923214856
## 526     https://twitter.com/BrookeLagana/status/1243596922293813248
## 527  https://twitter.com/duskywhalerkate/status/1243809738497781762
## 528        https://twitter.com/TwistElly/status/1243277585758519296
## 529       https://twitter.com/josephaleo/status/1243725545818349569
## 530        https://twitter.com/JewelDole/status/1243816453880467456
## 531  https://twitter.com/CitizenofNHaven/status/1243304069512429580
## 532           https://twitter.com/koefod/status/1243597094444773385
## 533        https://twitter.com/al7gaming/status/1243313772585877504
## 534         https://twitter.com/cirewebb/status/1243597448825749506
## 535       https://twitter.com/johnfamous/status/1243663030799331328
## 536        https://twitter.com/PursuitHQ/status/1243259472094433280
## 537        https://twitter.com/Manyisanb/status/1243766263651995649
## 538     https://twitter.com/TestaduraNGO/status/1243750712452026368
## 539  https://twitter.com/RachelH94559094/status/1243586286155268096
## 540    https://twitter.com/thefirstindia/status/1243725618400747520
## 541       https://twitter.com/VodafoneIN/status/1243380458643054592
## 542     https://twitter.com/Dave62286427/status/1243382587214585856
## 543    https://twitter.com/IvebeenTaylor/status/1243272928541773824
## 544      https://twitter.com/nathanworks/status/1243232103132811278
## 545      https://twitter.com/mynewsghana/status/1243264654685736961
## 546        https://twitter.com/altus_inc/status/1243234606855393281
## 547    https://twitter.com/iamloeyfelipe/status/1243579903410417667
## 548      https://twitter.com/NRT_English/status/1243770921388826624
## 549           https://twitter.com/Nax33r/status/1243607374578868224
## 550  https://twitter.com/TheRoyalGazette/status/1243587596451811331
## 551        https://twitter.com/dashainez/status/1243233137649504257
## 552          https://twitter.com/biltron/status/1243668360094724102
## 553      https://twitter.com/RaymondBowe/status/1243591587382337538
## 554       https://twitter.com/elect2020_/status/1243705507338223617
## 555     https://twitter.com/Paulhaider74/status/1243240369845940233
## 556  https://twitter.com/JordanSchachtel/status/1243348410092175361
## 557      https://twitter.com/airtelindia/status/1243761944051372032
## 558   https://twitter.com/PankajDakhare5/status/1243374385953529857
## 559  https://twitter.com/RedCrossBloodNC/status/1243675905953796097
## 560      https://twitter.com/PourHomme80/status/1243639741242695680
## 561     https://twitter.com/GregoryGLake/status/1243648982531870725
## 562    https://twitter.com/MiriamFogarty/status/1243273888773144578
## 563     https://twitter.com/ChimpReports/status/1243605775135752194
## 564   https://twitter.com/clarkfornorman/status/1243627853087899656
## 565       https://twitter.com/WomensAlly/status/1243639943366205441
## 566        https://twitter.com/IHLawless/status/1243294143838687232
## 567   https://twitter.com/ThisIsMohit777/status/1243350866003783681
## 568   https://twitter.com/DrStubblefield/status/1243226485965479936
## 569       https://twitter.com/VodafoneIN/status/1243797844323995648
## 570        https://twitter.com/rinsled05/status/1243790150980653056
## 571    https://twitter.com/AlArabiya_Eng/status/1243306401679753225
## 572       https://twitter.com/mwithrow02/status/1243332407849254914
## 573  https://twitter.com/DonateAtDrivers/status/1243774850209996808
## 574   https://twitter.com/MicheleONeilAU/status/1243652528681570304
## 575  https://twitter.com/macdonald_julie/status/1243342769847816192
## 576       https://twitter.com/_jermarcus/status/1243601216334172161
## 577    https://twitter.com/TravelMaestro/status/1243564689851850753
## 578  https://twitter.com/AbileneAdvisors/status/1243745367541157891
## 579      https://twitter.com/scampbell15/status/1243670798528737280
## 580      https://twitter.com/MegapixelSf/status/1243600882597392384
## 581    https://twitter.com/Makayla_Ponce/status/1243600775139356672
## 582     https://twitter.com/AmelieSpeaks/status/1243698057147043841
## 583        https://twitter.com/seacology/status/1243280913363906561
## 584      https://twitter.com/Charrrrrr97/status/1243648099492474881
## 585         https://twitter.com/davejmck/status/1243738607052939266
## 586      https://twitter.com/kevinwinker/status/1243301920007045121
## 587       https://twitter.com/jdaIrymple/status/1243571856432660490
## 588     https://twitter.com/stephanie_ip/status/1243276943241314305
## 589   https://twitter.com/_DeepakSharma_/status/1243254552612102144
## 590     https://twitter.com/JayJaramillo/status/1243309848193892357
## 591         https://twitter.com/dru_star/status/1243624934754136067
## 592           https://twitter.com/Eme_si/status/1243823639411093506
## 593   https://twitter.com/makeplanetnice/status/1243608218661765120
## 594  https://twitter.com/GodKingAlmighty/status/1243333718313443328
## 595    https://twitter.com/DervishWaking/status/1243649231572701184
## 596      https://twitter.com/thespectcle/status/1243272801982779396
## 597          https://twitter.com/_AA_021/status/1243338150673596421
## 598         https://twitter.com/ICGPnews/status/1243275225510412288
## 599    https://twitter.com/paulfrinkbhhs/status/1243315383236526084
## 600       https://twitter.com/GhanaYouth/status/1243819930648264705
## 601  https://twitter.com/ResearchForGood/status/1243706383071170560
## 602   https://twitter.com/fluffiluff_ssb/status/1243683011348107271
## 603  https://twitter.com/Truthma81128749/status/1243592308479725571
## 604    https://twitter.com/kristenworley/status/1243606276275425282
## 605          https://twitter.com/LHGorby/status/1243652012929056768
## 606  https://twitter.com/venus_home_appl/status/1243825978960424966
## 607        https://twitter.com/sosolaval/status/1243370162994081792
## 608   https://twitter.com/WilliamGotimer/status/1243701823510380544
## 609   https://twitter.com/sassygenealogy/status/1243631946099503105
## 610      https://twitter.com/jjburquhart/status/1243326140162412544
## 611   https://twitter.com/FatherFrizzell/status/1243286865576419328
## 612     https://twitter.com/DaveTheCat17/status/1243577957312069634
## 613     https://twitter.com/CICRAcharity/status/1243568973310025730
## 614      https://twitter.com/GagneRenaud/status/1243711581210341377
## 615       https://twitter.com/Justin_SCF/status/1243257870621315073
## 616  https://twitter.com/SarahEOlson2009/status/1243697788308852738
## 617         https://twitter.com/ambarrio/status/1243572430293123072
## 618       https://twitter.com/WildRushes/status/1243587262748790819
## 619        https://twitter.com/KayOddone/status/1243372579613577216
## 620       https://twitter.com/JohnLowe56/status/1243225385292226560
## 621  https://twitter.com/AlissaA33893940/status/1243569827857543171
## 622           https://twitter.com/effwun/status/1243824253213999105
## 623         https://twitter.com/KPBSnews/status/1243682543754502144
## 624          https://twitter.com/eandiyo/status/1243252697920417794
## 625           https://twitter.com/psdxoh/status/1243335348773666816
## 626     https://twitter.com/kinkykaitIin/status/1243630342864543749
## 627      https://twitter.com/kvandeburgt/status/1243704090430849024
## 628          https://twitter.com/nhsswft/status/1243228800424476674
## 629            https://twitter.com/109qk/status/1243570987322544128
## 630    https://twitter.com/abideisprayer/status/1243362823586992129
## 631    https://twitter.com/Sportnewsbuzz/status/1243579807763316736
## 632        https://twitter.com/PFIpolicy/status/1243247365869445120
## 633     https://twitter.com/saltieone808/status/1243338145875152897
## 634       https://twitter.com/SteedFiona/status/1243662261354409985
## 635  https://twitter.com/RoselinRosario3/status/1243322558373486593
## 636  https://twitter.com/racehorsereport/status/1243620647504359427
## 637   https://twitter.com/ArjunVishalRai/status/1243646007088492544
## 638     https://twitter.com/KristenObaid/status/1243686987908780032
## 639     https://twitter.com/CSSDPRyerson/status/1243375439852298240
## 640  https://twitter.com/isaacortega2900/status/1243723651741929472
## 641     https://twitter.com/SelfdrivingC/status/1243800053136965632
## 642         https://twitter.com/herebegb/status/1243368365281775617
## 643       https://twitter.com/IUntrapped/status/1243616137604206597
## 644         https://twitter.com/DrJSaini/status/1243269038987304960
## 645    https://twitter.com/Johan15109896/status/1243299239461093382
## 646  https://twitter.com/Ignacio68380157/status/1243627491010342912
## 647       https://twitter.com/beachkatie/status/1243361706618703874
## 648  https://twitter.com/AllisonGallaway/status/1243271346538401792
## 649           https://twitter.com/GGCPAs/status/1243300556669464578
## 650   https://twitter.com/Thepurplelilac/status/1243628650009952268
## 651     https://twitter.com/FOX10Phoenix/status/1243716939677138944
## 652     https://twitter.com/JohnMaddenTV/status/1243640540828229633
## 653         https://twitter.com/musty527/status/1243661566957977602
## 654          https://twitter.com/yadavhr/status/1243758875557261314
## 655         https://twitter.com/dafyddkw/status/1243698865812975616
## 656  https://twitter.com/PlatypiPolitics/status/1243610787643412481
## 657     https://twitter.com/onlyafewcows/status/1243673788752908289
## 658      https://twitter.com/Richiee1991/status/1243280117834498048
## 659      https://twitter.com/airtelindia/status/1243757495958421505
## 660      https://twitter.com/iamLisaHunt/status/1243707293679656960
## 661        https://twitter.com/theappeal/status/1243274524654809088
## 662        https://twitter.com/NHSG_PEFs/status/1243616714669150209
## 663      https://twitter.com/MrMikeBlake/status/1243382882392928256
## 664         https://twitter.com/nzlabour/status/1243295470400798720
## 665  https://twitter.com/Process2Succeed/status/1243613233703006214
## 666          https://twitter.com/Mpeople/status/1243673308077289473
## 667  https://twitter.com/singhaniasubh12/status/1243255846282264576
## 668         https://twitter.com/mils_xxx/status/1243286876217319427
## 669        https://twitter.com/RuhiSleep/status/1243636410067742720
## 670      https://twitter.com/richiesauls/status/1243569829455544321
## 671         https://twitter.com/IliganCa/status/1243338092934647809
## 672      https://twitter.com/Rocky_Coles/status/1243271817705533440
## 673        https://twitter.com/EmBrownDC/status/1243286969582596097
## 674        https://twitter.com/clickeric/status/1243292413877256193
## 675  https://twitter.com/TheNotoriousBTB/status/1243345121342611463
## 676  https://twitter.com/BIDMCTransplant/status/1243677677921472514
## 677   https://twitter.com/EarnRespectDon/status/1243785017127579648
## 678   https://twitter.com/candacemickey1/status/1243653359523037186
## 679       https://twitter.com/MikroSundq/status/1243234937479847944
## 680           https://twitter.com/KWCH12/status/1243235168040689665
## 681  https://twitter.com/BiswapriyaMisra/status/1243796482177687554
## 682  https://twitter.com/PandemicCovid20/status/1243289256866353152
## 683    https://twitter.com/airlinegossip/status/1243824568281845767
## 684   https://twitter.com/DeeLovelyone79/status/1243579619325902852
## 685      https://twitter.com/ShadiYazdan/status/1243799052866801665
## 686      https://twitter.com/TheMaxWhite/status/1243370036259160065
## 687   https://twitter.com/MiaStJohnBoxer/status/1243575557540810752
## 688        https://twitter.com/LowyatNET/status/1243249174411243521
## 689       https://twitter.com/e_greulach/status/1243647598302461957
## 690           https://twitter.com/mthrel/status/1243269839915024387
## 691  https://twitter.com/VishalG31703954/status/1243282639156588544
## 692        https://twitter.com/fox32news/status/1243368513202339841
## 693   https://twitter.com/SABronchoscopy/status/1243609682566135814
## 694       https://twitter.com/ccoreynews/status/1243661163419693058
## 695  https://twitter.com/SyedHamzaRasool/status/1243656645504270338
## 696      https://twitter.com/kathrynmcxo/status/1243274909972926475
## 697    https://twitter.com/msrkshahnawaz/status/1243632506328346624
## 698      https://twitter.com/syd_masingi/status/1243345787029008385
## 699   https://twitter.com/GilvanR_Guedes/status/1243346548039266305
## 700   https://twitter.com/MelissaSweetDr/status/1243307649136902144
## 701      https://twitter.com/SPECNewsCNY/status/1243598895709642755
## 702      https://twitter.com/VIIIVMMXIII/status/1243239062108016642
## 703       https://twitter.com/jj_talking/status/1243679444708941824
## 704      https://twitter.com/JackRevered/status/1243274157824999424
## 705         https://twitter.com/axcollie/status/1243743958754193408
## 706     https://twitter.com/TheresaZ2019/status/1243647807682162690
## 707         https://twitter.com/doogilla/status/1243227493479395328
## 708     https://twitter.com/SheriBettine/status/1243651450493751296
## 709      https://twitter.com/KrishnaNall/status/1243350355322138624
## 710       https://twitter.com/smsaideman/status/1243667982779375618
## 711         https://twitter.com/zibra422/status/1243629326362427393
## 712      https://twitter.com/newsconover/status/1243570618265522177
## 713    https://twitter.com/swanikmaharaj/status/1243614274775285764
## 714    https://twitter.com/realnikoraray/status/1243325639610023942
## 715         https://twitter.com/intifada/status/1243676856462839808
## 716            https://twitter.com/KREM2/status/1243573259335094275
## 717  https://twitter.com/Delawarenewsrep/status/1243338092011876352
## 718        https://twitter.com/MadaneTom/status/1243673662785327104
## 719      https://twitter.com/ShePradaEli/status/1243311153671032834
## 720     https://twitter.com/Sanjayolewis/status/1243696030891347969
## 721     https://twitter.com/RickCAllen62/status/1243337859341455363
## 722  https://twitter.com/thejasminebrand/status/1243736885081427974
## 723   https://twitter.com/7NewsAustralia/status/1243724145034031106
## 724   https://twitter.com/Coach___Wheels/status/1243795207277117443
## 725   https://twitter.com/jwindsordesign/status/1243738548882141184
## 726         https://twitter.com/Nick_Kay/status/1243664351673884672
## 727   https://twitter.com/peace_peterson/status/1243245235683147779
## 728      https://twitter.com/jamijturner/status/1243282261912551428
## 729        https://twitter.com/matwilcox/status/1243681594071752704
## 730      https://twitter.com/Decembermum/status/1243660400287256584
## 731        https://twitter.com/SmoothD64/status/1243761947121778688
## 732        https://twitter.com/rhukkey_3/status/1243825426016894976
## 733  https://twitter.com/RepRoybalAllard/status/1243709574227603458
## 734  https://twitter.com/OfficialNetslab/status/1243231154636980224
## 735      https://twitter.com/michelle_ad/status/1243229730582802433
## 736     https://twitter.com/ArnaudPrevot/status/1243682889910255617
## 737  https://twitter.com/lexymarienitzel/status/1243708055637897216
## 738      https://twitter.com/BntAlaqsa20/status/1243227284452061184
## 739          https://twitter.com/ixtumea/status/1243697653617053697
## 740    https://twitter.com/insights_west/status/1243607497769979904
## 741    https://twitter.com/alexmacleanio/status/1243736696232931329
## 742     https://twitter.com/travelweekly/status/1243230909693902853
## 743     https://twitter.com/JMutinda_snr/status/1243794505339490305
## 744        https://twitter.com/VirusGood/status/1243807200604073984
## 745  https://twitter.com/ClintBuytenhuys/status/1243338404693065728
## 746          https://twitter.com/WGNNews/status/1243624002138112005
## 747        https://twitter.com/c4atlanta/status/1243260388789178372
## 748          https://twitter.com/rapulu_/status/1243701064559472641
## 749      https://twitter.com/semusmurphy/status/1243590389405233153
## 750       https://twitter.com/KateGIaser/status/1243348054750760960
## 751  https://twitter.com/PoliticRealitic/status/1243308674015055873
## 752        https://twitter.com/swiftix24/status/1243604184399831043
## 753  https://twitter.com/omaralabdullah2/status/1243393307671068679
## 754       https://twitter.com/derekpoore/status/1243290805382586368
## 755          https://twitter.com/gnoto62/status/1243637524075085825
## 756  https://twitter.com/CapitalMidsNews/status/1243791682128117761
## 757  https://twitter.com/SimoMachiLmryol/status/1243286649645289474
## 758        https://twitter.com/oberon_le/status/1243638826725146624
## 759      https://twitter.com/_TatTvamAsi/status/1243243264079056896
## 760       https://twitter.com/mwamnogi46/status/1243387454050037766
## 761  https://twitter.com/OFFICIALPETEST1/status/1243252857698160641
## 762     https://twitter.com/Bottlecapps1/status/1243228248743559173
## 763         https://twitter.com/ampablos/status/1243311276463398912
## 764    https://twitter.com/CurzonRichard/status/1243311437776211968
## 765     https://twitter.com/RecHeadlines/status/1243233395158605824
## 766     https://twitter.com/pennewstweet/status/1243229842453061633
## 767      https://twitter.com/imtiaz_gold/status/1243347466499559427
## 768             https://twitter.com/NCRC/status/1243239801589022720
## 769      https://twitter.com/tallandtrue/status/1243310081942249472
## 770  https://twitter.com/MainEventZombie/status/1243375933073096715
## 771    https://twitter.com/Sue_Clement68/status/1243591558806548486
## 772   https://twitter.com/ConsultingSior/status/1243589321317396480
## 773      https://twitter.com/UMSocCogLab/status/1243632403450605568
## 774     https://twitter.com/Tough_Muller/status/1243621919242563588
## 775  https://twitter.com/GaGirlCindyDawn/status/1243372742591774721
## 776     https://twitter.com/WorldCabrini/status/1243571982937067522
## 777           https://twitter.com/emc597/status/1243231172861231108
## 778    https://twitter.com/carbonivorous/status/1243291833389608961
## 779   https://twitter.com/EngrIkramDawar/status/1243781645200773121
## 780         https://twitter.com/meobaldo/status/1243582871161405445
## 781    https://twitter.com/MichellSchyff/status/1243774014868402176
## 782  https://twitter.com/ArenaSportsView/status/1243596248650661889
## 783   https://twitter.com/MukhtarSomalia/status/1243292514578305026
## 784          https://twitter.com/c_dabbz/status/1243810822242988037
## 785  https://twitter.com/MacburyKristina/status/1243227296452001792
## 786          https://twitter.com/05HAWKI/status/1243660345308258308
## 787       https://twitter.com/sherkhantx/status/1243759498134720512
## 788       https://twitter.com/uncannybal/status/1243800874654109701
## 789        https://twitter.com/HeraldWPG/status/1243667373179244544
## 790    https://twitter.com/Kay_Alamia_78/status/1243691432239661056
## 791         https://twitter.com/N_Rainer/status/1243740690477170688
## 792   https://twitter.com/PetrasFreeMuse/status/1243609176099586048
## 793       https://twitter.com/HolliRingo/status/1243225899664846854
## 794          https://twitter.com/EvaBS14/status/1243647141870030849
## 795      https://twitter.com/CityNewsWPG/status/1243589485654351877
## 796      https://twitter.com/RyshayKiera/status/1243828144538337281
## 797      https://twitter.com/opeoluway2k/status/1243656880972578817
## 798       https://twitter.com/rjtownsend/status/1243372595665403904
## 799          https://twitter.com/KallGov/status/1243653389025710082
## 800            https://twitter.com/lau56/status/1243232296473448450
## 801       https://twitter.com/HanksMom44/status/1243686265049903106
## 802        https://twitter.com/DanMidd84/status/1243235639035744257
## 803     https://twitter.com/CarrieSchwab/status/1243228102815145989
## 804   https://twitter.com/jkr_on_the_web/status/1243699725917917184
## 805      https://twitter.com/US_TRANSCOM/status/1243571467985485825
## 806    https://twitter.com/aplebeianlife/status/1243372974864039936
## 807     https://twitter.com/ChiNewsBench/status/1243326917979312131
## 808       https://twitter.com/kevl_jones/status/1243692834114453505
## 809           https://twitter.com/whylek/status/1243270325116317699
## 810    https://twitter.com/ghostfacezach/status/1243310765785985024
## 811      https://twitter.com/Libyan4life/status/1243341989346717696
## 812   https://twitter.com/IndieGoDesigns/status/1243653766957719552
## 813       https://twitter.com/_westfest_/status/1243322763391029248
## 814  https://twitter.com/Nobodyknowsme49/status/1243321233992814592
## 815       https://twitter.com/247nigeria/status/1243656727276539908
## 816   https://twitter.com/onufreyonboard/status/1243327026087550976
## 817   https://twitter.com/Samsonprolific/status/1243258038418538497
## 818  https://twitter.com/DanceLikeTatixo/status/1243658529153507328
## 819  https://twitter.com/DigitaliveWorld/status/1243369787427819521
## 820     https://twitter.com/HoosierBlues/status/1243339171449786368
## 821      https://twitter.com/bret_martin/status/1243569986867793922
## 822          https://twitter.com/UoBarts/status/1243234310246760449
## 823     https://twitter.com/LTerrellKCCI/status/1243574803157712908
## 824      https://twitter.com/divaonline1/status/1243696251322765314
## 825     https://twitter.com/marksbuckley/status/1243642835737260032
## 826       https://twitter.com/JimmyUmesh/status/1243390676122755072
## 827    https://twitter.com/LylaAliceLane/status/1243364388309856256
## 828   https://twitter.com/locsandloaded_/status/1243338786316091393
## 829             https://twitter.com/revo/status/1243618123061886979
## 830            https://twitter.com/MogeV/status/1243600052645486593
## 831          https://twitter.com/aertrip/status/1243828830147473409
## 832       https://twitter.com/mcnorman57/status/1243371177818685441
## 833          https://twitter.com/mabueno/status/1243616033950310410
## 834   https://twitter.com/XavierQuinlan1/status/1243293435504644096
## 835   https://twitter.com/truthteller_rk/status/1243748967197954050
## 836     https://twitter.com/realiansaint/status/1243750762926260224
## 837           https://twitter.com/AVT198/status/1243593945818390528
## 838         https://twitter.com/bove_avg/status/1243723514135355393
## 839        https://twitter.com/DowneyK65/status/1243671454035652608
## 840    https://twitter.com/DanielPNugent/status/1243274426327666688
## 841        https://twitter.com/chasbuduo/status/1243753778060222464
## 842       https://twitter.com/Tweet2PBee/status/1243251829162438657
## 843   https://twitter.com/simoncollins10/status/1243305354642980865
## 844      https://twitter.com/eveRIAthing/status/1243773930814332929
## 845      https://twitter.com/JerseyDan18/status/1243345358845087744
## 846     https://twitter.com/Defend_Trump/status/1243283393267335179
## 847      https://twitter.com/DTBbyTheSea/status/1243375294720946177
## 848       https://twitter.com/ChemConnon/status/1243712545585795074
## 849       https://twitter.com/malcolmsym/status/1243619734605705219
## 850   https://twitter.com/TheRealQSavage/status/1243728244186234881
## 851       https://twitter.com/Carmenable/status/1243828636114919424
## 852      https://twitter.com/JessieLives/status/1243632580815196164
## 853        https://twitter.com/rcslayton/status/1243659810761060358
## 854         https://twitter.com/xileenie/status/1243301555392122882
## 855  https://twitter.com/rajeevbhaskarht/status/1243825590127362049
## 856      https://twitter.com/MrS78135612/status/1243623280344305664
## 857  https://twitter.com/DebbieLaskeyMBA/status/1243669542594699264
## 858      https://twitter.com/ABousquette/status/1243272708550463504
## 859           https://twitter.com/graddy/status/1243722185384112128
## 860           https://twitter.com/chubbm/status/1243798064810332165
## 861           https://twitter.com/rmn935/status/1243234723419369473
## 862       https://twitter.com/justBTSpop/status/1243725711879188480
## 863     https://twitter.com/kevinpurcell/status/1243260515364691968
## 864           https://twitter.com/dajobe/status/1243630985960251392
## 865     https://twitter.com/WesternUNews/status/1243669934984454144
## 866     https://twitter.com/HarddiskDisk/status/1243627397850726400
## 867  https://twitter.com/Vic_toriaBailey/status/1243226714014179329
## 868      https://twitter.com/ruruemawere/status/1243594633743151110
## 869      https://twitter.com/nineycudjo1/status/1243239425963745280
## 870    https://twitter.com/micha23484381/status/1243363595221487616
## 871    https://twitter.com/ExpendabLegos/status/1243664302784925696
## 872   https://twitter.com/psravenscroft1/status/1243351204379291648
## 873       https://twitter.com/sethbannon/status/1243332900965060608
## 874         https://twitter.com/PAltpere/status/1243620754824011779
## 875      https://twitter.com/boateng__kb/status/1243628225059860482
## 876      https://twitter.com/JeffMifflin/status/1243239351926034432
## 877   https://twitter.com/True_govcritic/status/1243664538643378177
## 878      https://twitter.com/NeverGetGot/status/1243610782623039495
## 879   https://twitter.com/TheGrumpyBitch/status/1243337840517398528
## 880    https://twitter.com/slunewsonline/status/1243565904346128384
## 881  https://twitter.com/JoanneSpruceC21/status/1243695956815572992
## 882  https://twitter.com/JakeLeonardWPMD/status/1243285233002328070
## 883    https://twitter.com/DrMohd_Frdous/status/1243243213986713600
## 884      https://twitter.com/iambhoopalm/status/1243392120020320257
## 885    https://twitter.com/atripathi5193/status/1243798295190876170
## 886      https://twitter.com/mscenalover/status/1243243634075582464
## 887    https://twitter.com/dailydigger19/status/1243638666959949831
## 888        https://twitter.com/KHetrific/status/1243737116787474432
## 889   https://twitter.com/carlie76552864/status/1243339398902689794
## 890      https://twitter.com/leo_mulvany/status/1243249453546553347
## 891          https://twitter.com/EMahosi/status/1243594214899884032
## 892        https://twitter.com/Thai_Talk/status/1243720592093659137
## 893    https://twitter.com/ProMarket_org/status/1243232497737109505
## 894  https://twitter.com/LifelineEducat1/status/1243281947595603968
## 895     https://twitter.com/SellThePlace/status/1243708096800796674
## 896       https://twitter.com/BostnEddie/status/1243319416848363521
## 897    https://twitter.com/naija_reports/status/1243663820637097985
## 898     https://twitter.com/HolyDivine98/status/1243298271449305088
## 899          https://twitter.com/nvg1372/status/1243716487409369089
## 900     https://twitter.com/Edgar_Vieira/status/1243304715460509698
## 901     https://twitter.com/IAmCalebHart/status/1243328985414750214
## 902      https://twitter.com/imSGaharwar/status/1243779679447736326
## 903           https://twitter.com/KGonot/status/1243335488540377088
## 904    https://twitter.com/ParkerClimate/status/1243640189089710081
## 905   https://twitter.com/MeansNefarious/status/1243302985620426752
## 906     https://twitter.com/ashevillejam/status/1243585953861701634
## 907         https://twitter.com/pcwalton/status/1243368592428519424
## 908  https://twitter.com/EastHertsPolice/status/1243571455343890436
## 909      https://twitter.com/hahn_jessie/status/1243669598920151040
## 910     https://twitter.com/SCRIPTCentre/status/1243272493219164166
## 911  https://twitter.com/Judith_Mesquita/status/1243578684667240461
## 912    https://twitter.com/TudorRoseLass/status/1243240309108002816
## 913  https://twitter.com/Airtel_Presence/status/1243791594697809921
## 914     https://twitter.com/SaraBethNot1/status/1243594521256083459
## 915     https://twitter.com/lindoscott14/status/1243654463975567360
## 916    https://twitter.com/daputsetyadii/status/1243384663852208132
## 917          https://twitter.com/ALCCNYC/status/1243330967378579456
## 918    https://twitter.com/mehabecapital/status/1243568515845632000
## 919      https://twitter.com/VictorHolyO/status/1243769664649465862
## 920    https://twitter.com/Jason_T_Green/status/1243335178228912128
## 921     https://twitter.com/masteradrian/status/1243342571650367490
## 922      https://twitter.com/13DavidAlan/status/1243618848051519490
## 923          https://twitter.com/amarula/status/1243273036641587208
## 924  https://twitter.com/DreamStateDigit/status/1243243315581145089
## 925        https://twitter.com/AJGershTV/status/1243228031075975169
## 926  https://twitter.com/AngelofJustice9/status/1243282129842245640
## 927  https://twitter.com/VicMorenoGarcia/status/1243822758196371457
## 928          https://twitter.com/DCUC_HQ/status/1243590609035759622
## 929  https://twitter.com/PalmdaleMedical/status/1243641795067641859
## 930        https://twitter.com/itskarugu/status/1243377511632781313
## 931        https://twitter.com/Vtrain365/status/1243653296683810816
## 932    https://twitter.com/JonesandClark/status/1243575850794201100
## 933  https://twitter.com/jeremiahturner3/status/1243566422787125249
## 934    https://twitter.com/defencealerts/status/1243809717916520450
## 935         https://twitter.com/lilm0ldy/status/1243267260602617856
## 936         https://twitter.com/BradvanL/status/1243585478009421824
## 937          https://twitter.com/Local12/status/1243699323587588096
## 938       https://twitter.com/Brightidea/status/1243600420729163776
## 939         https://twitter.com/ximena86/status/1243634304925741058
## 940  https://twitter.com/ImnotaREALgamer/status/1243230952614133760
## 941  https://twitter.com/cazenave_franck/status/1243278314204250112
## 942  https://twitter.com/USNationalGuard/status/1243274091362242562
## 943       https://twitter.com/MC_PATODIN/status/1243225836339310594
## 944       https://twitter.com/bat_biomes/status/1243591355605102594
## 945     https://twitter.com/MommyMagen00/status/1243247414837940226
## 946            https://twitter.com/ECADF/status/1243383716933558275
## 947    https://twitter.com/openletterbot/status/1243733098396659712
## 948   https://twitter.com/InlandRegional/status/1243306027124002817
## 949  https://twitter.com/AmazingDouglass/status/1243358046127919106
## 950        https://twitter.com/boyrishan/status/1243761280755716096
## 951     https://twitter.com/employmentin/status/1243817650578493440
## 952         https://twitter.com/PHSAofBC/status/1243253950050164737
## 953         https://twitter.com/mgotoo16/status/1243636817724944386
## 954         https://twitter.com/TheQuint/status/1243827927768166401
## 955       https://twitter.com/Sanvers_TV/status/1243230930350694400
## 956           https://twitter.com/NASWCO/status/1243293808827207680
## 957   https://twitter.com/TheBindingSite/status/1243580549727432707
## 958     https://twitter.com/SDReedAuthor/status/1243615244443889675
## 959        https://twitter.com/pee_nocle/status/1243764377163096066
## 960  https://twitter.com/TeacherKimKanof/status/1243297778379309061
## 961       https://twitter.com/Gwydion620/status/1243268266467958784
## 962        https://twitter.com/Queendode/status/1243367091257786368
## 963         https://twitter.com/JCoops84/status/1243267128461008902
## 964        https://twitter.com/rpodyssey/status/1243588350222536705
## 965        https://twitter.com/insideHPC/status/1243274524646232064
## 966  https://twitter.com/StandUpAgainOrg/status/1243591045226496000
## 967     https://twitter.com/Skol_Lockyer/status/1243783027282436096
## 968      https://twitter.com/LauraBockov/status/1243355932584628224
## 969      https://twitter.com/Greg_Russak/status/1243284820383408137
## 970      https://twitter.com/dgldemocrat/status/1243636218170138625
## 971     https://twitter.com/espactonline/status/1243592789373444105
## 972           https://twitter.com/smbubb/status/1243668844083924992
## 973    https://twitter.com/Evelyn1234515/status/1243311996839305216
## 974  https://twitter.com/sadiqsiddiqui98/status/1243571572935397376
## 975    https://twitter.com/thenglishpost/status/1243594083337043968
## 976       https://twitter.com/oniisalmon/status/1243612796576829441
## 977           https://twitter.com/gltmcl/status/1243250406437732352
## 978    https://twitter.com/ABari47910292/status/1243810800122449922
## 979      https://twitter.com/SandiCanada/status/1243666467083530240
## 980         https://twitter.com/Ged_2345/status/1243580691046191109
## 981         https://twitter.com/aightdom/status/1243330380381458433
## 982  https://twitter.com/LegalAidChicago/status/1243644170721517569
## 983         https://twitter.com/syahirmk/status/1243362689067311104
## 984       https://twitter.com/MontaudPro/status/1243595266512556034
## 985   https://twitter.com/InHealthPolicy/status/1243299701060857856
## 986  https://twitter.com/WaleedA91786682/status/1243228186621681666
## 987        https://twitter.com/TomJawetz/status/1243571653927460866
## 988        https://twitter.com/juliakim6/status/1243246586911772674
## 989  https://twitter.com/ariyanalove_art/status/1243256788599877634
## 990     https://twitter.com/RetireMeASAP/status/1243290876614492161
## 991      https://twitter.com/PatNkongori/status/1243781161287024641
## 992      https://twitter.com/techxtrader/status/1243362915622633472
## 993  https://twitter.com/CityofRoseville/status/1243617587445010432
## 994         https://twitter.com/GusSaima/status/1243339818202955776
## 995      https://twitter.com/misskatiele/status/1243624349728456704
## 996           https://twitter.com/nikrdc/status/1243754470246354944
## 997     https://twitter.com/ISDFPR_Watch/status/1243593098908839937
## 998       https://twitter.com/frog_happy/status/1243298396095594497
## 999     https://twitter.com/realMJSharma/status/1243336640455561217
## 1000     https://twitter.com/mass_marion/status/1243280550711955471
## 1001       https://twitter.com/POWLaroid/status/1243356354175053824
## 1002           https://twitter.com/deyjy/status/1243754540375080960
## 1003         https://twitter.com/ZeliaLH/status/1243773212430708739
## 1004     https://twitter.com/julesbasham/status/1243714587570008069
## 1005  https://twitter.com/AndrewGarbutt7/status/1243586412462714882
## 1006          https://twitter.com/vtnews/status/1243245084956655617
## 1007  https://twitter.com/fionamceachran/status/1243624307349237762
## 1008   https://twitter.com/mandafredette/status/1243288725787836417
## 1009 https://twitter.com/Susan_Larson_TN/status/1243599629188583424
## 1010  https://twitter.com/CHPBaldwinPark/status/1243649166166786049
## 1011 https://twitter.com/lorirambojones1/status/1243694776270143488
## 1012    https://twitter.com/yp_hollywood/status/1243732706183262208
## 1013  https://twitter.com/insidethebadge/status/1243646340350926848
## 1014 https://twitter.com/tripuranewslive/status/1243743174012604416
## 1015      https://twitter.com/AmahPepple/status/1243276678278905856
## 1016        https://twitter.com/tris1962/status/1243240787212713990
## 1017     https://twitter.com/CatFenneman/status/1243814595363401731
## 1018          https://twitter.com/Okizle/status/1243578688656019459
## 1019          https://twitter.com/rizzdj/status/1243390767550189568
## 1020   https://twitter.com/danagagliotti/status/1243576799084371969
## 1021     https://twitter.com/FLSpacePort/status/1243296854672125958
## 1022        https://twitter.com/MT_Strat/status/1243361208343728128
## 1023 https://twitter.com/meldewey_photos/status/1243587676361629697
## 1024     https://twitter.com/jorgeclave7/status/1243646030710620160
## 1025 https://twitter.com/SundanceConstr1/status/1243661559613644800
## 1026      https://twitter.com/mxvizcaino/status/1243241819950940160
## 1027   https://twitter.com/GBatschkewitz/status/1243330702055108610
## 1028    https://twitter.com/LuthWestland/status/1243675304788361217
## 1029 https://twitter.com/Chem_Processing/status/1243656035354783745
## 1030         https://twitter.com/Ezee_EP/status/1243574727534313473
## 1031      https://twitter.com/staronline/status/1243810583339622400
## 1032       https://twitter.com/WayneRTS1/status/1243661723153747969
## 1033    https://twitter.com/TaylorVecsey/status/1243349272424321024
## 1034  https://twitter.com/EnlivenmentNow/status/1243261898663084032
## 1035      https://twitter.com/ZahraNajaf/status/1243608265373745155
## 1036     https://twitter.com/SueDudasova/status/1243822800189763585
## 1037           https://twitter.com/NYAIL/status/1243287863443230720
## 1038        https://twitter.com/Maan0078/status/1243597899960848397
## 1039        https://twitter.com/Leah_CBR/status/1243694047547387905
## 1040        https://twitter.com/daraojo_/status/1243297965327802368
## 1041    https://twitter.com/grant_nissly/status/1243573478864846849
## 1042    https://twitter.com/BethWarrenCJ/status/1243300644506808326
## 1043      https://twitter.com/RamyRefaey/status/1243291623175446529
## 1044      https://twitter.com/WhatNibber/status/1243796990233804800
## 1045        https://twitter.com/_MP_COM_/status/1243266281152950273
## 1046 https://twitter.com/angelikastalman/status/1243348351522750465
## 1047  https://twitter.com/pride_ub_inOKC/status/1243299987389329409
## 1048  https://twitter.com/apinchofkinder/status/1243777340305551362
## 1049  https://twitter.com/BrickWallDef63/status/1243354031981916160
## 1050 https://twitter.com/amelievondollar/status/1243234747884634113
## 1051 https://twitter.com/JustAGirlInAWo1/status/1243742473333157889
## 1052  https://twitter.com/masculinehairs/status/1243349919731195904
## 1053    https://twitter.com/rural_remote/status/1243659281230172160
## 1054   https://twitter.com/VariousStrata/status/1243639042790604800
## 1055  https://twitter.com/_General_Chris/status/1243585109548285954
## 1056    https://twitter.com/enterprisem3/status/1243612025072345089
## 1057   https://twitter.com/CCLeicsPolice/status/1243789580781916160
## 1058 https://twitter.com/kendall_downing/status/1243228741217771532
## 1059       https://twitter.com/kwmcnamee/status/1243318905621413890
## 1060    https://twitter.com/SpectatorUSA/status/1243307995569647616
## 1061     https://twitter.com/caitlinpwll/status/1243265394489667586
## 1062     https://twitter.com/milmilarski/status/1243679547448590336
## 1063     https://twitter.com/BootStrap40/status/1243283205685268480
## 1064      https://twitter.com/Kilroy0826/status/1243592549677367296
## 1065     https://twitter.com/GASANTWITER/status/1243598040734326784
## 1066       https://twitter.com/Buzzicati/status/1243256725358227458
## 1067      https://twitter.com/Mdalawize2/status/1243253040502759425
## 1068    https://twitter.com/eatrightchef/status/1243343513682677760
## 1069   https://twitter.com/jj_fishsticks/status/1243291285647028224
## 1070  https://twitter.com/washingtonpost/status/1243585895871262726
## 1071            https://twitter.com/KRLD/status/1243254936164540417
## 1072         https://twitter.com/BBabaya/status/1243572476405153792
## 1073   https://twitter.com/OurRevBoulder/status/1243354314036244483
## 1074   https://twitter.com/pharmacistbob/status/1243570559042105347
## 1075   https://twitter.com/TovarRasputin/status/1243759975865790471
## 1076   https://twitter.com/Hannah__Maire/status/1243243529389957120
## 1077 https://twitter.com/clickonthisshow/status/1243363734686281728
## 1078    https://twitter.com/answeringlaw/status/1243745949748310018
## 1079   https://twitter.com/Greasy_Boiler/status/1243331101889900546
## 1080          https://twitter.com/WOODTV/status/1243263768815075328
## 1081       https://twitter.com/JaronSpor/status/1243309938379837440
## 1082         https://twitter.com/erikrex/status/1243760058468573184
## 1083        https://twitter.com/JeWellen/status/1243691008291823616
## 1084   https://twitter.com/naija_reports/status/1243597129785815040
## 1085         https://twitter.com/borwick/status/1243800420247465984
## 1086      https://twitter.com/ByeDon2020/status/1243242358646419458
## 1087 https://twitter.com/GovernorBullock/status/1243325623604359169
## 1088   https://twitter.com/RichardKNaidu/status/1243752623166992384
## 1089         https://twitter.com/drWilda/status/1243584407127994368
## 1090      https://twitter.com/SteadyRiot/status/1243233214745006085
## 1091        https://twitter.com/grovesdj/status/1243321005889609728
## 1092       https://twitter.com/akaadiele/status/1243639865666949120
## 1093     https://twitter.com/lesterleesm/status/1243230712892764162
## 1094      https://twitter.com/mamacriJKS/status/1243625261570154496
## 1095 https://twitter.com/Sheikabirtapawi/status/1243249729091391491
## 1096  https://twitter.com/mikehewritesit/status/1243630103847895040
## 1097    https://twitter.com/Truthers4USA/status/1243308043682619398
## 1098       https://twitter.com/WTVYNews4/status/1243636422931820545
## 1099    https://twitter.com/007maverick1/status/1243826786808578048
## 1100      https://twitter.com/duygumssuu/status/1243623641151086592
## 1101 https://twitter.com/HealthyOklahoma/status/1243261546622484485
## 1102   https://twitter.com/JacquesLouisa/status/1243642384682037249
## 1103 https://twitter.com/cananewsonline2/status/1243565292011368448
## 1104 https://twitter.com/Sharath69919177/status/1243271018195505153
## 1105   https://twitter.com/alandrummond2/status/1243327389377146885
## 1106    https://twitter.com/poppyred2002/status/1243279869808644105
## 1107    https://twitter.com/ananewsflash/status/1243330178727714819
## 1108    https://twitter.com/xoxo_beautee/status/1243628529490812931
## 1109   https://twitter.com/lorna19319201/status/1243589655943094274
## 1110 https://twitter.com/MichiganAdvance/status/1243632386396561409
## 1111   https://twitter.com/sharliebrooks/status/1243268038805336064
##                                                                                                                                                                                                                                                                                       name
## 1                                                                                                                                                                                                                                                                          Terry Henderson
## 2                                                                                                                                                                                                                                                                          Redplacementlvl
## 3                                                                                                                                                                                                                                                                              ashic #FBPE
## 4                                                                                                                                                                                                                                                                                 EdAsante
## 5                                                                                                                                                                                                                                                                           Jeremy Shorr™
## 6                                                                                                                                                                                                                                                                          Men's Health UK
## 7                                                                                                                                                                                                                                                                             WALB News 10
## 8                                                                                                                                                                                                                                                                      Nonprofit Quarterly
## 9                                                                                                                                                                                                                                                            Socially Distant Brad Patrick
## 10                                                                                                                                                                                                                                                                           The Community
## 11                                                                                                                                                                                                                                                                       City of Pickering
## 12                                                                                                                                                                                                                                                                      Patricia Zamarripa
## 13                                                                                                                                                                                                                                                                            Food4Thaught
## 14                                                                                                                                                                                                                                                                          Jonathan Brown
## 15                                                                                                                                                                                                                                                                       Anastasia Saradoc
## 16                                                                                                                                                                                                                                                                             Beth Bailey
## 17                                                                                                                                                                                                                                                                         Lumi Industries
## 18                                                                                                                                                                                                                                                                        Sahir Rahaman203
## 19                                                                                                                                                                                                                                                                            Kevin Erdman
## 20                                                                                                                                                                                                                                                                JohnWhorfin <U+0001F198>
## 21                                                                                                                                                                                                                                                                                Dan Hinz
## 22                                                                                                                                                                                                                                                                     Comox Valley Record
## 23                                                                                                                                                                                                                                                                           Shreyas Doshi
## 24                                                                                                                                                                                                                                                                   W O O D (B) E R R I E
## 25                                                                                                                                                                                                                                                                                  Moespi
## 26                                                                                                                                                                                                                                                                              Al Zullino
## 27                                                                                                                                                                                                                                                                            CMHA Windsor
## 28                                                                                                                                                                                                                                                                                      DY
## 29                                                                                                                                                                                                                                                                                    Elli
## 30                                                                                                                                                                                                                                                                             cissy smith
## 31                                                                                                                                                                                                                                                                      @Chisi<U+0001F618>
## 32                                                                                                                                                                                                                                                                           Brandon Darby
## 33                                                                                                                                                                                                                                                                           Matt Howerton
## 34                                                                                                                                                                                                                                                                                    PCMA
## 35                                                                                                                                                                                                                                                                        Barbara J. Wells
## 36                                                                                                                                                                                                                                                                                 Shalini
## 37                                                                                                                                                                                                                                                                     Mwanahamisi Singano
## 38                                                                                                                                                                                                                                                                                   EFFAT
## 39                                                                                                                                                                                                                                                                                  Opeeka
## 40                                                                                                                                                                                                                                                                                     Stu
## 41                                                                                                                                                                                                                                                                                  endure
## 42                                                                                                                                                                                                                                                                            7NEWS Mackay
## 43                                                                                                                                                                                                                                                                         Raffi Cavoukian
## 44                                                                                                                                                                                                                                                   Concealed Carrier<U+261D><U+0001F3FE>
## 45                                                                                                                                                                                                                                                                                     Ash
## 46                                                                                                                                                                                                                                                              Commissioner Emily Bonilla
## 47                                                                                                                                                                                                                                                                              The Ogster
## 48                                                                                                                                                                                                                                                                         Rona Mackay MSP
## 49                                                                                                                                                                                                                                                                    First Choice Produce
## 50                                                                                                                                                                                                                                                                        Jessica Shumaker
## 51                                                                                                                                                                                                                                                                                 Sumol67
## 52                                                                                                                                                                                                                                                                      Permabear Doomster
## 53                                                                                                                                                                                                                                                             ProjectValhalla<U+0001F49A>
## 54                                                                                                                                                                                                                                                           Noah's Ark Children's Hospice
## 55                                                                                                                                                                                                                                                                              magpietail
## 56                                                                                                                                                          <U+0001F1FA><U+0001F1F8>Verdad<U+0001F1FA><U+0001F1F8><U+0001F970><U+0001F389><U+0001F54A><U+0001F49D><U+0001F33A><U+0001F308>
## 57                                                                                                                                                                                                                                                                            Hitomi Danya
## 58                                                                                                                                                                                                                                                                                    CASA
## 59                                                                                                                                                                                                                                                                       Thread Reader App
## 60                                                                                                                                                                                                                                                                           adam chandler
## 61                                                                                                                                                                                                                                                                                     A K
## 62                                                                                                                                                                                                                                                          <U+2728> Kate DePalma <U+2728>
## 63                                                                                                                                                                                                                                                                       News from Science
## 64                                                                                                                                                                                                                                                                       Paul J. Henderson
## 65                                                                                                                                                                                                                                                                                Aintropy
## 66                                                                                                                                                                                                                                                                                    Dave
## 67                                                                                                                                                                                                                                                                               SOBERTOOL
## 68                                                                                                                                                                                                                                                                               bPositive
## 69                                                                                                                                                                                                                                                                        Austin Kellerman
## 70                                                                                                                                                                                                                                                                                  Thabie
## 71                                                                                                                                                                                                                                                                           SportBusiness
## 72                                                                                                                                                                                                                                                                                 PRADEEP
## 73                                                                                                                                                                                                                                                                                Curogram
## 74                                                                                                                                                                                                                                                                                 Benites
## 75                                                                                                                                                                                                                                                                   Ibizaislandvillas.com
## 76                                                                                                                                                                                                                                                                            johnbachtell
## 77                                                                                                                                                                                                                                                                              Kim hayden
## 78                                                                                                                                  Richard Lewis <U+0001F377><U+0001F3F3><U+FE0F><U+200D><U+0001F308><U+0001F3F4><U+000E0067><U+000E0062><U+000E0077><U+000E006C><U+000E0073><U+000E007F>
## 79                                                                                                                                                                                                                                                                           Diana Fairley
## 80                                                                                                                                                                                                                                                                            CivicScience
## 81                                                                                                                                                                                                                                                                             wycliffe jb
## 82                                                                                                                                                                                                                                                                     BU Computer Science
## 83                                                                                                                                                                                                                                                                                 Nickala
## 84                                                                                                                                                                                                                                                                        Kimberly Ambrose
## 85                                                                                                                                                                                                                                                                            TJ Muehleman
## 86                                                                                                                                                                                                                                                                    Adeniyi Adebanjo joh
## 87                                                                                                                                                                                                                                                                           Kifayat Ullah
## 88                                                                                                                                                                                                                                                                         ColumbiaDoctors
## 89                                                                                                                                                                                                                                                                               DLA Piper
## 90                                                                                                                                                                                                                                                                                  Gaurav
## 91                                                                                                                                                                                                                                                                     Amb. yahuzaS'Dalhat
## 92                                                                                                                                                                                                                                                                         Uneis ibn malik
## 93                                                                                                                                                                                                                                                                           Daily Express
## 94                                                                                                                                                                                                                                                                        Personal Liberty
## 95                                                                                                                                                                                                                                                                             Anim8trGirl
## 96                                                                                                                                                                                                                                                                            WITBANK NEWS
## 97                                                                                                                                                                                                                                                                                 Charlie
## 98                                                                                                                                                                                                                                                                        Myositis Support
## 99                                                                                                                                                                                                                                                                               LandG lab
## 100                                                                                                                                                                                                                                                          Tim listens to CDC guidelines
## 101                                                                                                                                                                                                                                                                               RefeKids
## 102                                                                                                                                                                                                                                                                        Carly Grandidge
## 103                                                                                                                                                                                                                                                                            Kaleem Awan
## 104                                                                                                                                                                                                                                                                         B. D. Calhoune
## 105                                                                                                                                                                                                              <U+2066><U+0633><U+0631><U+0628><U+0627><U+0632> <U+0635><U+0641><U+0631>
## 106                                                                                                                                                                                                                                                                     Gail From Colorado
## 107                                                                                                                                                                                                                                                                        Solan Headlines
## 108                                                                                                                                                                                                                                                                                  Tommy
## 109                                                                                                                                                                                                                                                                        Alex Bentham QC
## 110                                                                                                                                                                                                                                                                         Khosro Kalbasi
## 111                                                                                                                                                                                                                                                                         Israel Ademola
## 112                                                                                                                                                                                                                                                                                EllyPop
## 113                                                                                                                                                                                                                                                                           Tim Spalding
## 114                                                                                                                                                                                                                                                                            Linc Conard
## 115                                                                                                                                                                                                                                                                           Today's News
## 116                                                                                                                                                                                                                                                                        The Real ROLAND
## 117                                                                                                                                                                                                                                                                           KGET 17 News
## 118                                                                                                                                                                                                                                                 PA Secretary of Banking and Securities
## 119                                                                                                                                                                                                                                                                             justasking
## 120                                                                                                                                                                                                                                                                                Scott M
## 121                                                                                                                                                                                                                                                                     Isabella K. Ddamba
## 122                                                                                                                                                                                                                                                              Amina Ribena <U+0001F347>
## 123                                                                                                                                                                                                                                                                                    saw
## 124                                                                                                                                                                                                                                                                       680 NEWS Toronto
## 125                                                                                                                                                                                                                                                                       Dr.Opata Kenneth
## 126                                                                                                                                                                                              <U+0646><U+0647><U+0627><U+0644> <U+0627><U+0644><U+0645><U+0631><U+064A><U+062E><U+064A>
## 127                                                                                                                                                                                                                                                                          Ananya Saikia
## 128                                                                                                                                                                                                                                                                            Shah Sheikh
## 129                                                                                                                                                                                                                                                                           The Frontier
## 130                                                                                                                                                                                                                                                                             Tony Evans
## 131                                                                                                                                                                                                                                                                         Eroll Bilibani
## 132                                                                                                                                                                                                                                                               'Raja Raja' Unicuesrini1
## 133                                                                                                                                                                                                                                                                        (((Melissa L)))
## 134                                                                                                                                                                                                                                                                                Antonio
## 135                                                                                                                                                                                                                                                                      Naijaedupreneur®
## 136                                                                                                                                                                                                                                                                           Lex de Grauw
## 137                                                                                                                                                                                                                                                                      MSGT USAF Retired
## 138                                                                                                                                                                                                                                                                           Chris Castro
## 139                                                                                                                                                                                                                                 Daniel Gillis <U+0001F3F3><U+FE0F><U+200D><U+0001F308>
## 140                                                                                                                                                                                                                                                                     Grayson Co Schools
## 141                                                                                                                                                                                                                                                                                 Shashi
## 142                                                                                                                                                                                                                                                                   City of Merriam, Kan
## 143                                                                                                                                                                                                                                           Basetax <U+0001F1EC><U+0001F1E7><U+0001F9EE>
## 144                                                                                                                                                                                                                                                                                Bossina
## 145                                                                                                                                                                                                                                                                        Mainak Banerjee
## 146                                                                                                                                                                                                                                                                            Kevin Denny
## 147                                                                                                                                                                                                                                                                       Ankush Kumar Jha
## 148                                                                                                                                                                                                                                                                         Rodney Pearson
## 149                                                                                                                                                                                                                                                                               BazeCity
## 150                                                                                                                                                                                                                                                                                  Simon
## 151                                                                                                                                                                                                                                                                           Kenzie Wynne
## 152                                                                                                                                                                                                                                                     Ella Dawson is sheltering-in-place
## 153                                                                                                                                                                                                                                                                               SenateAR
## 154                                                                                                                                                                                                                                                                        Mario Descartes
## 155                                                                                                                                                                                                                                                                       Chandler Chamber
## 156                                                                                                                                                                                                                                                                        Lillian Leonard
## 157                                                                                                                                                                                                                                                                           Colly Dawson
## 158                                                                                                                                                                                                                                                                       Cynthia Benjamin
## 159                                                                                                                                                                                                                                                                                 Venafi
## 160                                                                                                                                                                                                                                                                       Kimberly Leonard
## 161                                                                                                                                                                                                                                                                             IssaSavage
## 162                                                                                                                                                                                                                                                                     Successful Farming
## 163                                                                                                                                                                                                                                                                         Mohamed Yassin
## 164                                                                                                                                                                                                                                                                          Carole Turner
## 165                                                                                                                                                                                                                                                                             Bob Krause
## 166                                                                                                                                                                                                                                                                          City of Miami
## 167                                                                                                                                                                                                                                                                                 Candra
## 168                                                                                                                                                                                                                                                                          Mohammad Awad
## 169                                                                                                                                                                                                                                                               Shahid Afridi Foundation
## 170                                                                                                                                                                                                                                                                        NorthWestMoInfo
## 171                                                                                                                                                                                                                                                                              Lyka Boss
## 172                                                                                                                                                                                                                                                                Vanaparthi Mahendar TRS
## 173                                                                                                                                                                                                                                                                           Thom Kenrick
## 174                                                                                                                                                                                                                                                                           Suresh Reddy
## 175                                                                                                              <U+0001D5A7><U+0001D5BE><U+0001D5C2><U+0001D5BD><U+0001D5C2> <U+0001D5A2><U+0001D5CB><U+0001D5BE><U+0001D5C2><U+0001D5C0><U+0001D5C1><U+0001D5CD><U+0001D5C8><U+0001D5C7>
## 176                                                                                                                                                                                                                                                                            Rick Duncan
## 177                                                                                                                                                                                                                                                               Quesnel Cariboo Observer
## 178                                                                                                                                                                                                                                                                     RAMKUMAR SABAPATHY
## 179                                                                                                                                                                                                                                                                    Salinas Californian
## 180                                                                                                                                                                                                                                                                          Chris Roberts
## 181                                                                                                                                                                                                                                                                 Burnaby Mayor's Office
## 182                                                                                                                                                                                                                                                                                Santyna
## 183                                                                                                                                                                                                                                                    Susan Ness <U+0001F1E8><U+0001F1E6>
## 184                                                                                                                                                                                                                                                                      #Am_Anti_Covid_19
## 185                                                                                                                                                                                                                                                                      Saman Nematollahi
## 186                                                                                                                                                                                                                                                                       Solomon Temitope
## 187                                                                                                                                                                                                                                                                         mikemerlinator
## 188                                                                                                                                                                                                                                                                    Andre Marcel Harris
## 189                                                                                                                                                                                                                                                                      W. F horla bhankz
## 190                                                                                                                                                                                                                                                                         Clare Sturges.
## 191                                                                                                                                                                                                                                                                          Chapi & Chapo
## 192                                                                                                                                                                                                                                                                      Mary Fahner-Short
## 193                                                                                                                                                                                                                                                                       The Wilson Times
## 194                                                                                                                                                                                                                                                                                 pietro
## 195                                                                                                                                                                                                                                                                               coolbuzz
## 196                                                                                                                                                                                                                                                            Jake aka Korean Jew Trading
## 197                                                                                                                                                                                                                                                                                 sTEveN
## 198                                                                                                                                                                                                                                                                          Brenda Palmer
## 199                                                                                                                                                                                                                                                                              Wynne Pay
## 200                                                                                                                                                                                                                                                                                Mr. Tap
## 201                                                                                                                                                                                                                                                                    RPF Western Railway
## 202                                                                                                                                                                                                                                                                          Scott Cameron
## 203                                                                                                                                                                                                                                      John Baresky Healthcare Writing and Marketing Guy
## 204                                                                                                                                                                                                                                                                            Acronis SCS
## 205                                                                                                                                                                                                                                                                             WWE Critic
## 206                                                                                                                                                                                                                                                                            Jeff Algera
## 207                                                                                                                                                                                                                                                                  Independent Institute
## 208                                                                                                                                                                                                                                                                                 serina
## 209                                                                                                                                                                                                          Amber <U+271D><U+FE0F><U+0001F1FA><U+0001F1F8>4<U+0001F1EE><U+0001F1F1> #MAGA
## 210                                                                                                                                                                                                                                                                         Shannon Barber
## 211                                                                                                                                                                                                                                                                            Ernie Rossi
## 212                                                                                                                                                                                                                                                                            CBC Calgary
## 213                                                                                                                                                                                                                                                                              Wes Dixon
## 214                                                                                                                                                                                                                                                                     Shakthi Vadakkepat
## 215                                                                                                                                                                                                                                                                          Rene Tremblay
## 216                                                                                                                                                                                                                                                                       Anthony Tilghman
## 217                                                                                                                                                                                                                                                                              yokittyyo
## 218                                                                                                                                                                                                                                                                     Cuba Embassy in NZ
## 219                                                                                                                                                                                                                                                                         yung dae party
## 220                                                                                                                                                                                                                           Re <U+0001F1FA><U+0001F1F8><U+0001F1FA><U+0001F1F8> LXCADMIN
## 221                                                                                                                                                                                                                                                                            The Gazette
## 222                                                                                                                                                                                                         (((Duane))) - <U+0001F9D9><U+200D>♂<U+FE0F><U+0001F596><U+0001F981>- Hire Me!
## 223                                                                                                                                                                                                                                                                   Nimra Zulfiqar Ahmed
## 224                                                                                                                                                                                                                                                                          Julia Longpre
## 225                                                                                                                                                                                                                                                                            TheAgeOfAGs
## 226                                                                                                                                                                                                                                                                        Richard Morales
## 227                                                                                                                                                                                                                                                                                     JP
## 228                                                                                                                                                                                                                                                                            Rania Berro
## 229                                                                                                                                                                                                                                             Sunidhi Chahar<U+2764><U+FE0F><U+0001F338>
## 230                                                                                                                                                                                                                                                                       Coronavirus Live
## 231                                                                                                                                                                                                                                                                   Benjamin Crump, Esq.
## 232                                                                                                                                                                                                                                                                     John Scott-Railton
## 233                                                                                                                                                                                                                                                                     Inside No.9 Tweets
## 234                                                                                                                                                                                                                                                                        Taylor DiCiocco
## 235                                                                                                                                                                                                                                               GlobalNewsJapan <U+0001F1EF><U+0001F1F5>
## 236                                                                                                                                                                                                                                                                             Tom Bewick
## 237                                                                                                                                                                                                                                                                        HEM News Agency
## 238                                                                                                                                                                                                                                                                             Sam Allard
## 239                                                                                                                                                                                                                                                                          Peter Buckley
## 240                                                                                                                                                                                                                                                                               SBaggins
## 241                                                                                                                                                                                                                                 Hat Tottins #NHSLove #BackTo60 #GreersLaw <U+0001F577>
## 242                                                                                                                                                                                                                                                                              Squirrel.
## 243                                                                                                                                                                                                                                                               Jeff has left the world.
## 244                                                                                                                                                                                                                                슈주 Forever <U+0001F645><U+0001F3FB><U+200D>♀<U+FE0F>
## 245                                                                                                                                                                                                                                                                         #Act4Palestine
## 246                                                                                                                                                                                                                                                                                     SA
## 247                                                                                                                                                                                                                                                                              Gising PH
## 248                                                                                                                                                                                                                                                      Ian Struckhoff (The Fourth Place)
## 249                                                                                                                                                                                                                                                                          sonia cadogan
## 250                                                                                                                                                                                                                                                                             barb ellen
## 251                                                                                                                                                                                                                                                                      Anera Refugee Aid
## 252                                                                                                                                                                                                                                                                         handsomesamson
## 253                                                                                                                                                                                                                                                                              Adam Ford
## 254                                                                                                                                                                                                                                                                      FilenamesOfSlashB
## 255                                                                                                                                                                                                                                                                      London Free Press
## 256                                                                                                                                                                                                                                                                      Julie Casper Roth
## 257                                                                                                                                                                                                                                                                        Animal Genetics
## 258                                                                                                                                                                                                                                                                       What'sAllThisNow
## 259                                                                                                                                                                                                                                                                   Dr. Stephanie Madden
## 260                                                                                                                                                                                                                                                                        Dr Emma Beckett
## 261                                                                                                                                                                                                                                                                            always vote
## 262                                                                                                                                                                                                                                                                         Dorcas Sarkozy
## 263                                                                                                                                                                                                                                                              CYP Student Nurse Network
## 264                                                                                                                                                                                                                                                                        R. Maxwell Bone
## 265                                                                                                                                                                              <U+0001F1FA><U+0001F1F8><U+0001F1ED><U+0001F1F9> Only4RM <U+0001F1ED><U+0001F1F9><U+0001F1FA><U+0001F1F8>
## 266                                                                                                                                                                                                                                                               <U+0001F50D>@ParanoidPal
## 267                                                                                                                                                                                                                                                                    Perspicacious Ægis
## 268                                                                                                                                                                                                                                                                       Brunswick County
## 269                                                                                                                                                                                                                                                                          KingofKings23
## 270                                                                                                                                                                                                                                                    <U+0001F98B>....SIM....<U+0001F98B>
## 271                                                                                                                                                                                                                                                                        Jesus Rodriguez
## 272                                                                                                                                                                                                                                                                           Yashdeep Raj
## 273                                                                                                                                                                                                                                                                        Sabyasachi Rath
## 274                                                                                                                                                                                                                                                                      Justin Plummer II
## 275                                                                                                                                                                                                                                                                                   Josh
## 276                                                                                                                                                                                                                                                            I LOVE PUPPIES <U+0001F415>
## 277                                                                                                                                                                                                                                                                       Mayank Kr SinghR
## 278                                                                                                                                                                                                                                                                            mary carson
## 279                                                                                                                                                                                                                                                                              Siddharth
## 280                                                                                                                                                                                                                                                                            Mahyco Grow
## 281                                                                                                                                                                                                                                                                        Word of the day
## 282                                                                                                                                                                                                                                                                             Royce West
## 283                                                                                                                                                                                                                                                                             Lex Jurgen
## 284                                                                                                                                                                                                                                                                      NORM R. ALLEN JR.
## 285                                                                                                                                                                                                                                                                        Martina Shantez
## 286                                                                                                                                                                                                                                                                            Cub Swanson
## 287                                                                                                                                                                                                                                                                           Mike Buckham
## 288                                                                                                                                                                                                                                                                        Trending A to Z
## 289                                                                                                                                                                                                                                                                        Melissa Stewart
## 290                                                                                                                                                                                                                                                                              Hafsayyy!
## 291                                                                                                                                             <U+0627><U+0644><U+0645><U+0633><U+062A><U+0634><U+0627><U+0631> <U+0645><U+062D><U+0645><U+062F> <U+0645><U+0646><U+0635><U+0648><U+0631>
## 292                                                                                                                                                                                                                                                                                     R4
## 293                                                                                                                                                                                                                                                      MosesMalone is the Greatest Sixer
## 294                                                                                                                                                                                                                                                                              pdartesia
## 295                                                                                                                                                                                                                                                                               wendella
## 296                                                                                                                                                                                                                                                                   PeterboroughExaminer
## 297                                                                                                                                                                                                                                                                           James Atkins
## 298                                                                                                                                                                                                                                                                          Marc Skulnick
## 299                                                                                                                                                                                                                                                                               MABRN999
## 300                                                                                                                                                                                                                                                                                    Wen
## 301                                                                                                                                                                                                                                                                            Nuni Sas Yu
## 302                                                                                                                                                                                                                                                                          MovingMarkets
## 303                                                                                                                                                                                                                                                                              Sn00pster
## 304                                                                                                                                                                                                                                                                          Gina LoBiondo
## 305                                                                                                                                                                                                                                                                      Satehouse Kericho
## 306                                                                                                                                                                                                                                                                                    elg
## 307                                                                                                                                                                                                                                                                           Matt Spinner
## 308                                                                                                                                                                                                                                                                      Servpro Haverhill
## 309                                                                                                                                                                                                                                                                              rainmaker
## 310                                                                                                                                                                                                                                                                             Lewis Hine
## 311                                                                                                                                                                                                                                            self isolate now #flattenthecurve // Flower
## 312                                                                                                                                                                                                                                                                          Hyung Eun Kim
## 313                                                                                                                                                                                                                                                                       joanna schroeder
## 314                                                                                                                                                                                                                                                                              Dave Bahr
## 315                                                                                                                                                                                                                                                                              India.com
## 316                                                                                                                                                                                                                                                                   Alberta Press Leader
## 317                                                                                                                                                                                                                                                                                TrustAM
## 318                                                                                                                                                                                                                                                                       Mr. Jim Business
## 319                                                                                                                                                                                                                                        Jennifer Ohemaa Capable<U+0001F1EC><U+0001F1ED>
## 320                                                                                                                                                                                                                                                                                    Cox
## 321                                                                                                                                                                                                                                                                    StevenScottReynolds
## 322                                                                                                                                                                                                                                                                ⓘⓢⓐⓐⓒ ⓝⓙⓔⓝⓖⓐ
## 323                                                                                                                                                                                                                                                                       bisciari patrick
## 324                                                                                                                                                                                                                                                                                Arizton
## 325                                                                                                                                                                                                                                                                            juicyupdate
## 326                                                                                                                                                                                                                                                              JnR TAAARK DA TINNG BAKER
## 327                                                                                                                                                                                                                                                                     perfectly polished
## 328                                                                                                                                                                                                                                                              MinizterOfThickerzAffairs
## 329                                                                                                                                                                                                                                                                  HMRC Customer Support
## 330                                                                                                                                                                                                                                                                      The Wrold in News
## 331                                                                                                                                                                                                                                                                           Bhumil Patel
## 332                                                                                                                                                                                                                                                                      Brintha Manoharan
## 333  <U+200D> <U+200D> <U+200D> <U+200D> <U+200D><U+200D><U+200D> <U+200D> <U+200D><U+200D><U+200D> <U+200D> <U+200D> <U+200D><U+2A1F> <U+200D><U+200D><U+200D> <U+200D><U+0001D40B><U+200D> <U+200D> <U+200D> <U+200D> <U+200D><U+200D><U+200D> <U+200D> <U+200D><U+200D><U+200D><U+200D>
## 334                                                                                                                                                                                                                                                                      Gregory Mansfield
## 335                                                                                                                                                                                                                                                                        Jason Rainwater
## 336                                                                                                                                                                                                                                                                     Eswar Kanchumurthi
## 337                                                                                                                                                                                                                                                                           Rizzo Cromer
## 338                                                                                                                                                                                                                                                                                 Mark R
## 339                                                                                                                                                                                                                                                                        African Affairs
## 340                                                                                                                                                                                                                                                              TheConservativeChineseGuy
## 341                                                                                                                                                                                                                                                                         The Crafty Kat
## 342                                                                                                                                                                                                                                                                              J.M.PEACE
## 343                                                                                                                                                                                                                                                                         Stuart Shanker
## 344                                                                                                                                                                                                                                                                       abigail bautista
## 345                                                                                                                                                                                                                                                                          Elle Josphine
## 346                                                                                                                                                                                                                                                                          Jonathan Hall
## 347                                                                                                                                                                                                                                                                        Shao Jiang 邵江
## 348                                                                                                                                                                                                                                                                       Benjamin Matthew
## 349                                                                                                                                                                                                                                                                       Innocent Ochieng
## 350                                                                                                                                                                                                                                                                           Greensfelder
## 351                                                                                                                                                                                                                                                                                    cha
## 352                                                                                                                                                                                                                                                                         Northglen News
## 353                                                                                                                                                                                                                                                                        David Motsinger
## 354                                                                                                                                                                                                                                                                       North Wales Live
## 355                                                                                                                                                                                                                                                                                 Jane's
## 356                                                                                                                                                                                                                                                                                CCN TV6
## 357                                                                                                                                                                                                                                                                                  KIROS
## 358                                                                                                                                                                                                                                                                              FM Hansen
## 359                                                                                                                                                                                                                                                                         Evelyn Tremble
## 360                                                                                                                                                                                                                                                                          Edward Kallon
## 361                                                                                                                                                                                                                                                                          Travis Adkins
## 362                                                                                                                                                                                                                                                                          Roger J Comte
## 363                                                                                                                                                                                                                                                                           Shaul Turner
## 364                                                                                                                                                                                                                                                                      chuck<U+0001F949>
## 365                                                                                                                                                                                                                                                                      Metro by T-Mobile
## 366                                                                                                                                                                                                                                                                            Awais Ahmad
## 367                                                                                                                                                                                                                                                                          shallom evans
## 368                                                                                                                                                                                                                                                                              texan2you
## 369                                                                                                                                                                                                                                                                             Mamabigdog
## 370                                                                                                                                                                                                                                                                           Antonia Giro
## 371                                                                                                                                                                                                                                                                       JAMMU LINKS NEWS
## 372                                                                                                                                                                                                                                                                            MrsVWebster
## 373                                                                                                                                                                                                                                                                               Bob Grip
## 374                                                                                                                                                                                                                                                                    Cecilia Bartholemew
## 375                                                                                                                                                                                                                                                                        Dimitri Eynikel
## 376                                                                                                                                                                                                                                                                   NanaAisha Abdulkadir
## 377                                                                                                                                                                                                                                                          Bikham Information Technology
## 378                                                                                                                                                                                                                                                                            John Okello
## 379                                                                                                                                                                                                                                             Dianne (that woman from Michigan) Brubaker
## 380                                                                                                                                                                                                                                                                          Jason Puckett
## 381                                                                                                                                                                                                                                                                                 Espudo
## 382                                                                                                                                                                                                                                                                              Brad Null
## 383                                                                                                                                                                                                                                                                                NEUleft
## 384                                                                                                                                                                                                                                                                       BHARAT Shekhawat
## 385                                                                                                                                                                                                                                                                          BeautifulDoll
## 386                                                                                                                                                                                                                                                                            Amanda Wood
## 387                                                                                                                                                                                                                                                                              mrs nixon
## 388                                                                                                                                                                                                                                                                         Johnnie Walker
## 389                                                                                                                                                                                                                                           Sophie Chester-Glyn <U+0001F577><U+0001F578>
## 390                                                                                                                                                                                                                                                                             Let's Paws
## 391                                                                                                                                                                                                                                                                         Kaytlyn Leslie
## 392                                                                                                                                                                                                                                                                                gerardo
## 393                                                                                                                                                                                                                                                                       Dan Griffin WLWT
## 394                                                                                                                                                                                                                                                    Integrated Wellbeing Networks Gwent
## 395                                                                                                                                                                                                                                                            Pitkin County Public Health
## 396                                                                                                                                                                                                                                                            TallTyri<U+26AB>nLanniste®
## 397                                                                                                                                                                                                                                                                            Emily Sides
## 398                                                                                                                                                                                                                                                                             YaleGlobal
## 399                                                                                                                                                                                                                                                                         Ryan Martinsen
## 400                                                                                                                                                                                                                                                                          allAfrica.com
## 401                                                                                                                                                                                                                                                                                  FOX61
## 402                                                                                                                                                                                                                                                            Certified Listeners Society
## 403                                                                                                                                                                                                                                                                       John Terry Tresh
## 404                                                                                                                                                                                                                                                                Sandrine φ Allegatiere
## 405                                                                                                                                                                                                                                                                       Jeffrey Buchanan
## 406                                                                                                                                                                                                                                                                        41NBC / WMGT-DT
## 407                                                                                                                                                                                                                                                                  Similkameen Spotlight
## 408                                                                                                                                                                                                                                                                        Charlie Brennan
## 409                                                                                                                                                                                    <U+0001D681><U+0001D692><U+0001D68C><U+0001D68E>$$ <U+0001F1F5><U+0001F1ED><U+0001F1FA><U+0001F1F8>
## 410                                                                                                                                                                                                                                                                              RangeGrrl
## 411                                                                                                                                                                                                                                       Frog (open the damn country) Capital<U+0001F310>
## 412                                                                                                                                                                                                                                                                     Clockhouse Nursery
## 413                                                                                                                                                                                                                                                                          Graham Mexico
## 414                                                                                                                                                                                                                                                                      ChatOwlCounseling
## 415                                                                                                                                                                                                                                                                Mensan Adjanor Adanlete
## 416                                                                                                                                                                                                                                                                               Cinnaire
## 417                                                                                                                                                                                                                                                                         Christina Sato
## 418                                                                                                                                                                              <U+0001F4B2><U+0001F4E7>®<U+FE0F>GI<U+0001F17E><U+FE0F> <U+0001F1E8><U+0001F1F4><U+0001F1FB><U+0001F1EA>
## 419                                                                                                                                                                                                                                                                       Good Day Atlanta
## 420                                                                                                                                                                                                                                                                      Hanna Boys Center
## 421                                                                                                                                                                                                                                                                                     ㅤ
## 422                                                                                                                                                                                                                                                                  ω<U+0E4F><U+0E4F>∂y
## 423                                                                                                                                                                                                                                                                      5:It'sHabbening:5
## 424                                                                                                                                                                                                                                                                                Ricky D
## 425                                                                                                                                                                                                                                                                 QuickTake by Bloomberg
## 426                                                                                                                                                                                                                                                                   PureGirl<U+0001F365>
## 427                                                                                                                                                                                                                                                                                      T
## 428                                                                                                                                                                                                                                                                           Ali Salarian
## 429                                                                                                                                                                                                                                                                   The Georgia Straight
## 430                                                                                                                                                                                                                                                                             Udit Kumar
## 431                                                                                                                                                                                                                                                                     Cranbrook Townsman
## 432                                                                                                                                                                                                                                                                       National Jeweler
## 433                                                                                                                                                                                                                                                                             MariaMaria
## 434                                                                                                                                                                                                                                                                            Eyes On Fox
## 435                                                                                                                                                                                                                                                                     KNX 1070 NEWSRADIO
## 436                                                                                                                                                                                                                                                                 Dr. Funke Abimbola MBE
## 437                                                                                                                                                                                                                                                      Arvin White Cow ( Buffalo Grass )
## 438                                                                                                                                                                                                                                                             manal alamoud <U+0001F310>
## 439                                                                                                                                                                                                                                                            Novel Coronavirus - Covid19
## 440                                                                                                                                                                                                                                                                      Eagle Valley News
## 441                                                                                                                                                                                                                                                                      lvbs <U+0001F33A>
## 442                                                                                                                                                                                                                                                                                   DHIN
## 443                                                                                                                                                                                                                                                                      June F.N. Cleaver
## 444                                                                                                                      ♡<U+0001D4A5><U+0001D4B6><U+0001D4C8><U+0001D4C2><U+0001D4BE><U+0001D4C3><U+0001D452> <U+0001D4AE><U+0001D4CC><U+0001D4B6><U+0001D4CE><U+0001D4CF><U+0001D452>♡
## 445                                                                                                                                                                                                                                                                        Dr. Pawan Verma
## 446                                                                                                                                                                                                                                                                        Emily Silverman
## 447                                                                                                                                                                                                                                                                             writerlane
## 448                                                                                                                                                                                                                                                                                Hussain
## 449                                                                                                                                                                   dr jpa <U+0001F1FA><U+0001F1F8> <U+0001F3F4><U+000E0067><U+000E0062><U+000E0073><U+000E0063><U+000E0074><U+000E007F>
## 450                                                                                                                                                                                                                                                                                 Mark R
## 451                                                                                                                                                                                                                                                                             Dave Bjork
## 452                                                                                                                                                                                                                                                                             Rekha Babu
## 453                                                                                                                                                                                                                                                                           airtel India
## 454                                                                                                                                                                                                                                                                       Shallima Maharaj
## 455                                                                                                                                                                                                                                                                                Koj Man
## 456                                                                                                                                                                                                                                                                    Channing Carrington
## 457                                                                                                                                                                                                                                                                          HolyScribbler
## 458                                                                                                                                                                                                                                      Token State (Tokenize the World) Tip$: hedgex.eth
## 459                                                                                                                                                                                                                                                                         Pierrick Greze
## 460                                                                                                                                                                                                                                                                         Jennifer white
## 461                                                                                                                                                                                                                                                                          Jiska Hachmer
## 462                                                                                                                                                                                                                                                                     media@portside.org
## 463                                                                                                                                                                                                                                                                   Salem Medical Center
## 464                                                                                                                                                                                                                                                                             Paulo Maya
## 465                                                                                                                                                                                                                                                                           Leonce Kealy
## 466                                                                                                                                                                                                                                                                    Katherine Haenschen
## 467                                                                                                                                                                                                                                                                      Financial Express
## 468                                                                                                                                                                                                                                                                               Wildside
## 469                                                                                                                                                                                                                                                                  American Jedi Captain
## 470                                                                                                                                                                                                                                                                     Izaan MindTheGap®
## 471                                                                                                                                                                                                                                                                            FreeFalling
## 472                                                                                                                                                                                                                                                                                     TA
## 473                                                                                                                                                                                                                                                                                    B77
## 474                                                                                                                                                                                                                                                                           Thales Group
## 475                                                                                                                                                                                                                                                                           Jeff Horchak
## 476                                                                                                                                                                                                                                                                              Paul Gelb
## 477                                                                                                                                                                                                                                                                        VFarrellGallery
## 478                                                                                                                                                                                                                                                                                  Sahil
## 479                                                                                                                                                                                                                                                                               Cocamama
## 480                                                                                                                                                                                                                                                                         Tanya Robinson
## 481                                                                                                                                                                                                                                                                               Aare Ago
## 482                                                                                                                                                                                                                                                     Maxblogger<U+0001F1F3><U+0001F1EC>
## 483                                                                                                                                                                                                                                                                              AFA of PA
## 484                                                                                                                                                                                                                                                                      Sarah-Jayne Tobin
## 485                                                                                                                                                                                                                                                            <U+2022>SmolCherrie<U+2022>
## 486                                                                                                                                                                                                                                                                             Solidus316
## 487                                                                                                                                                                                                                                                                    brizzle on lockdown
## 488                                                                                                                                                                                                                                                                      Sou at HotWhopper
## 489                                                                                                                                                                                                                                                                                @Conga1
## 490                                                                                                                                                                                                                                                          Physios for Physical Activity
## 491                                                                                                                                                           Rohullah Ahmadzai|<U+0631><U+0648><U+062D> <U+0627><U+0644><U+0644><U+0647> <U+0627><U+062D><U+0645><U+062F><U+0632><U+06CC>
## 492                                                                                                                                                                                                                                                                            Mohit kalal
## 493                                                                                                                                                                                                                                                                          Jennifer Luke
## 494                                                                                                                                                                                                                                                                         7NEWS Adelaide
## 495                                                                                                                                                                                                                                                                                em kent
## 496                                                                                                                                                                                                                                                                             AlexIsXana
## 497                                                                                                                                                                                                                                                                              Julian Po
## 498                                                                                                                                                                                                                                                                              Suma Mzee
## 499                                                                                                                                                                                                                                                                                al whit
## 500                                                                                                                                                                                                                                                         Fred's Internet Rating Service
## 501                                                                                                                                                                                                                                                              Peter Buck for State Rep.
## 502                                                                                                                                                                                                                                                                           Dalit Heroes
## 503                                                                                                                                                                                                                                                                            tina detelj
## 504                                                                                                                                                                                                                                                                             markhughes
## 505                                                                                                                                                                                                                                                                         Allison Papson
## 506                                                                                                                                                                                                                                                                        lana l lawrence
## 507                                                                                                                                                                                                                                                                           Tim Mocarski
## 508                                                                                                                                                                                                                                            Dr Jodie Keane, Senior Research Fellow, ODI
## 509                                                                                                                                                                                                                                                                           Hitpal Singh
## 510                                                                                                                                                                                                                                                                           Nine Dragons
## 511                                                                                                                                                                                                                                                                       Chris Trikomitis
## 512                                                                                                                                                                                                                         Jordan Mugume <U+0001F1FA><U+0001F1EC><U+0001F1FA><U+0001F1F8>
## 513                                                                                                                                                                                                                                                                               <U+064B>
## 514                                                                                                                                                                                                                                                                       COVID-19 Updates
## 515                                                                                                                                                                                                                                                                                  Penny
## 516                                                                                                                                                                                                                                                                           Fikri Roslan
## 517                                                                                                                                                                                                                                                                        Charlie Johnson
## 518                                                                                                                                                                                                                         OMO OBA IMOLE <U+0001F4A5><U+0001F48E><U+0001F934><U+0001F3FC>
## 519                                                                                                                                                                                                                                                                    Sumaiya Faiz ~ 수미
## 520                                                                                                                                                                                                                                                             <U+0001F4A7>Michele Halpin
## 521                                                                                                                                                                                                                                                                       Anthony Quintano
## 522                                                                                                                                                                                                                                                               Dragon Digital Marketing
## 523                                                                                                                                                                                                                                                                         Bernard Dmello
## 524                                                                                                                                                                                                                                                                            GammyGrammy
## 525                                                                                                                                                                                                                                                                            Mzta Slimzy
## 526                                                                                                                                                                                                                                                                          Brooke Lagana
## 527                                                                                                                                                                                                                                                                             Kate Ahmad
## 528                                                                                                                                                                                                                                                                             Elly_twist
## 529                                                                                                                                                              <U+0001F179><U+0001F13E><U+0001F142><U+0001F134><U+0001F13F><U+0001F137> <U+0001F170><U+0001F13B><U+0001F134><U+0001F13E>
## 530                                                                                                                                                                                                                 Julie Dole<U+0001F1FA><U+0001F1F8><U+0001F1E8><U+0001F1E6><U+0001F30E>
## 531                                                                                                                                                                                                                                                                          Roger Sherman
## 532                                                                                                                                                                                                                                                                           Missy Koefod
## 533                                                                                                                                                                                                                                                 All Lucky 7s Gaming(Tim the Enchanter)
## 534                                                                                                                                                                                                                                                                              Eric Webb
## 535                                                                                                                                                                                                                                                                            John FAMOUS
## 536                                                                                                                                                                                                                                                                                Pursuit
## 537                                                                                                                                                                                                                                                                                  Brian
## 538                                                                                                                                                                                                                                                      Testadura Prisoners Welfare Trust
## 539                                                                                                                                                                                                                                                                            Rachel@Hope
## 540                                                                                                                                                                                                                                                                            First India
## 541                                                                                                                                                                                                                                                                               Vodafone
## 542                                                                                                                                                                                                                                                                           DrDave #FBPE
## 543                                                                                                                                                                                                                                             BeastRand Artitude<U+0001F1FF><U+0001F1E6>
## 544                                                                                                                                                                                                                                        Nathan Roberts <U+0001F468><U+200D><U+0001F4BB>
## 545                                                                                                                                                                                                                                                                          My News Ghana
## 546                                                                                                                                                                                                                                                                                  Altus
## 547                                                                                                                                                                                                                                                                            Loey Felipe
## 548                                                                                                                                                                                                                                                                            NRT English
## 549                                                                                                                                                                                                                                                                           Naseer Ahmed
## 550                                                                                                                                                                                                                                                                      The Royal Gazette
## 551                                                                                                                                                                                                                                                                                     -a
## 552                                                                                                                                                                                                                                                                                biltron
## 553                                                                                                                                                                                                                                                                           Raymond Bowe
## 554                                                                                                                                                                                                                                                                              elect2020
## 555                                                                                                                                                                                                                                                       Paul Campbell Haider<U+0001F339>
## 556                                                                                                                                                                                                                                                                       Jordan Schachtel
## 557                                                                                                                                                                                                                                                                           airtel India
## 558                                                                                                                                                                                                                                                Pankaj Dakhare <U+0001F6A9><U+0001F6A9>
## 559                                                                                                                                                                                                                                                      Red Cross Blood Services #GiveNow
## 560                                                                                                                                                                                                                                                                              AModSquad
## 561                                                                                                                                                                                                                                                                     Gregory-Glenn Lake
## 562                                                                                                                                                                                                                                                                        Miriam Reynolds
## 563                                                                                                                                                                                                                                                                           ChimpReports
## 564                                                                                                                                                                                                                                                                      Mayor Breea Clark
## 565                                                                                                                                                                                                                                                                   WOMENSHealthAlliance
## 566                                                                                                                                                                                                                                                           I Lawless - Published Author
## 567                                                                                                                                                                                                                                                                            Mohit Kumar
## 568                                                                                                                                                                                                                                                          Dr. Scott B. Stubblefield, JD
## 569                                                                                                                                                                                                                                                                               Vodafone
## 570                                                                                                                                                                                                                                                         Akiko<U+0001F338> in 2ha abyss
## 571                                                                                                                                                                                                                                                                     Al Arabiya English
## 572                                                                                                                                                                                                                                                                   Mary Kennedy Withrow
## 573                                                                                                                                                                                                                                                                   Donation for Drivers
## 574                                                                                                                                                                                                                                                                         Michele O'Neil
## 575                                                                                                                                                                                                                                                                       Julie Macdonald.
## 576                                                                                                                                                                                                                                                                      Jermarcus Perkins
## 577                                                                                                                                                                                                                                                                       Covington Travel
## 578                                                                                                                                                                                                                                                                       Abilene Advisors
## 579                                                                                                                                                                                                                                                                       Spencer Campbell
## 580                                                                                                                                                                                                                                                                            MegapixelSF
## 581                                                                                                                                                                                                                                                                      Mak Ponce<U+2728>
## 582                                                                                                                                                                                                                                                                                 Amelie
## 583                                                                                                                                                                                                                                                                              Seacology
## 584                                                                                                                                                                                                                                                                           Charlotteeee
## 585                                                                                                                                                                                                                                                                            Dave Mckeon
## 586                                                                                                                                                                                                                                                                           Kevin Winker
## 587                                                                                                                                                                                                                                                                          Jim Dalrymple
## 588                                                                                                                                                                                                                                                           Stephanie Ip <U+2022> 葉可怡
## 589                                                                                                                                                                                                                                                                          Deepak Sharma
## 590                                                                                                                                                                                                                                                                           JJ Jaramillo
## 591                                                                                                                                                                                                                                                                             │<U+258C>
## 592                                                                                                                                                                                                                                                                                     MC
## 593                                                                                                                                                                                                                                              Ghost of 1918<U+0001F9A0><U+26B0><U+FE0F>
## 594                                                                                                                                                                                                                                                                   Christopher Williams
## 595                                                                                                                                                                                                                                 C Ellen Hogan <U+0001F3F3><U+FE0F><U+200D><U+0001F308>
## 596                                                                                                                                                                                                                                                                          THE SPECTACLE
## 597                                                                                                                                                                                                                                                                     AA<U+2614><U+FE0F>
## 598                                                                                                                                                                                                                                                                   Irish College of GPs
## 599                                                                                                                                                                                                                                       Berkshire Hathaway HomeServices NW - Federal Way
## 600                                                                                                                                                                                                                                                                        Ghana Youth Day
## 601                                                                                                                                                                                                                                                                                    RFG
## 602                                                                                                                                                                                                                                                                               Aidan Ih
## 603                                                                                                                                                                                                                                                                        Richard Richard
## 604                                                                                                                                                                                                                                                                         kristen worley
## 605                                                                                                                                                                                                                                                                          Lindsay Gorby
## 606                                                                                                                                                                                                                                                                    venushomeappliances
## 607                                                                                                                                                                                                                                                                                 Sophie
## 608                                                                                                                                                                                                                                                                     William G. Gotimer
## 609                                                                                                                                                                                                                                                                    Carla Love Maitland
## 610                                                                                                                                                                                                                                                                      Jonathan Urquhart
## 611                                                                                                                                                                                                                                                                   Lawrence E. Frizzell
## 612                                                                                                                                                                                                                                                                  Dave The <U+0001F431>
## 613                                                                                                                                                                                                                                                            children - crohns & colitis
## 614                                                                                                                                                                                                                                                                           Renaud Gagne
## 615                                                                                                                                                                                                                                                                         Justin Sargent
## 616                                                                                                                                                                                                                                                                         Sarah E. Olson
## 617                                                                                                                                                                                                                                                                               ambarrio
## 618                                                                                                                                                                                                                                                                       Hana<U+0001F31E>
## 619                                                                                                                                                                                                                                                                          Dr Kay Oddone
## 620                                                                                                                                                                                                                                                                              John Lowe
## 621                                                                                                                                                                                                                                                                           Alissa Adams
## 622                                                                                                                                                                                                                             Philip D <U+0001F1EA><U+0001F1FA> <U+0001F1EE><U+0001F1EA>
## 623                                                                                                                                                                                                                                                                              KPBS News
## 624                                                                                                                                                                                                                                                                        emmanuel andiyo
## 625                                                                                                                                                                                                                                                                                   Nate
## 626                                                                                                                                                                                                                                                                       Kaitlin Guelbert
## 627                                                                                                                                                                                                                                                                             Kristoffel
## 628                                                                                                                                                                                                                                                                     South Warks NHS FT
## 629                                                                                                                                                                                                                                                                                Que Tal
## 630                                                                                                                                                                                                                                                                                  Abide
## 631                                                                                                                                                                                                                                                                          SportNewsBuzz
## 632                                                                                                                                                                                                                                                            Pennsylvania Family Council
## 633                                                                                                                                                                                                                                                           Lokahi- to unite<U+0001F33A>
## 634                                                                                                                                                                                                                                                                            Fiona Steed
## 635                                                                                                                                                                                                                                                               Roselin Rosario-Melendez
## 636                                                                                                                                                                                                                                                                              Jude Feld
## 637                                                                                                                                                                                                                                                                       arjun vishal rai
## 638                                                                                                                                                                                                         <U+0001F4A7>Kristen Obaid <U+0001F30F><U+0001F3F3><U+FE0F><U+200D><U+0001F308>
## 639                                                                                                                                                                                                                                                                          CSSDP Ryerson
## 640                                                                                                                                                                                                                                                                        Isaacortega2900
## 641                                                                                                                                                                                                                                                                        SelfDriving car
## 642                                                                                                                                                                                                                                                                                  Gilly
## 643                                                                                                                                                                                                                                                                        Ideas Untrapped
## 644                                                                                                                                                                                                                                                                              Jas Saini
## 645                                                                                                                                                                                                                                                                                  Johan
## 646                                                                                                                                                                                                                                                                                   Iggy
## 647                                                                                                                                                            clarissa jones <U+0001F1FA><U+0001F1F8><U+0001F1FA><U+0001F1F8><U+0001F1FA><U+0001F1F8><U+0001F31F><U+0001F31F><U+0001F31F>
## 648                                                                                                                                                                                                                                                                       Allison Gallaway
## 649                                                                                                                                                                                                                                                              Goering & Granatino, P.A.
## 650                                                                                                                                                                                                                                                                            Purplelilac
## 651                                                                                                                                                                                                                                                                         FOX 10 Phoenix
## 652                                                                                                                                                                                                                                                                            John Madden
## 653                                                                                                                                                                                                                                                                       Ibrahim Mustapha
## 654                                                                                                                                                                                                                                                                        Dr Hemant Yadav
## 655                                                                                                                                                                                                                                                                     Dafydd Kw <U+2695>
## 656                                                                                                                                                                                             Political Platypus<U+0001F4A7><U+0001F331><U+0001F525><U+26F3><U+0001F4B8> WASH YOUR HANDS
## 657                                                                                                                                                                                                                                                                       FreeStateAlberta
## 658                                                                                                                                                                                                                                                                       Richard Petersen
## 659                                                                                                                                                                                                                                                                           airtel India
## 660                                                                                                                                                                                                                                                                              Lisa Hunt
## 661                                                                                                                                                                                                                                                                             The Appeal
## 662                                                                                                                                                                                                                                                                NHSG Practice Education
## 663                                                                                                                                                                                                                                                    Michael Blake (Text BLAKE to 66539)
## 664                                                                                                                                                                                                                                                                     New Zealand Labour
## 665                                                                                                                                                                                                                                                       <U+274C>MolonLabeGlock17<U+274C>
## 666                                                                                                                                                                                                                                                                                      M
## 667                                                                                                                                                                                              Subham Singhania <U+0001F1EE><U+0001F1F3><U+0001F1EE><U+0001F1F3><U+0001F1EE><U+0001F1F3>
## 668                                                                                                                                                                                                                                                                                    Mil
## 669                                                                                                                                                                                                                                                             Ruhi Snyder Sleep Advocate
## 670                                                                                                                                                                                                                                                                           Richie Sauls
## 671                                                                                                                                                                                                                                                                              iligan ca
## 672                                                                                                                                                                                                                                                                    Rocky Coles MCIHort
## 673                                                                                                                                                                                                                                                                             Emma Brown
## 674                                                                                                                                                                                                                                                                          Eric Floresca
## 675                                                                                                                                                                                                                                                                     Malarkey Milkshake
## 676                                                                                                                                                                                                                                                                        BIDMCTransplant
## 677                                                                                                                                                                                                                                                      Stable Inconvenience <U+0001F9E0>
## 678                                                                                                                                                                                                                                                                                  Candy
## 679                                                                                                                                                                                                                                                                       Martin Sundqvist
## 680                                                                                                                                                                                                                                                                   KWCH Eyewitness News
## 681                                                                                                                                                                                                                                                                       Biswapriya Misra
## 682                                                                                                                                                                                                                                                            Novel Coronavirus - Covid19
## 683                                                                                                                                                                                                                                                                         Airline Gossip
## 684                                                                                                                                                                                                                                                          Coronavirus, its getting real
## 685                                                                                                                                                                                                                                                                                  Shadi
## 686                                                                                                                                                                                                                                                                              Max White
## 687                                                                                                                                                                                                                                                                           Mia St. John
## 688                                                                                                                                                                                                                                                                             Lowyat.NET
## 689                                                                                                                                                                                                                                                                         Ethan Greulach
## 690                                                                                                                                                                                                                                                                       Mhairi Threlfall
## 691                                                                                                                                                                                                                                                                          Vishal Gaurav
## 692                                                                                                                                                                                                                                                                            FOX 32 News
## 693                                                                                                                                                                                                                                                                                    SAB
## 694                                                                                                                                                                                                                                                                           Calvin Corey
## 695                                                                                                                                                                                                                                                                           <U+0001F341>
## 696                                                                                                                                                                                                                                                                       Kathryn McCallum
## 697                                                                                                                                                                                                                                                                           Md Shahnawaz
## 698                                                                                                                                                                                                                                            Just<U+0001F449><U+0001F3FC>Syd<U+0001F4AD>
## 699                                                                                                                                                                                                                                                                          Gilvan Guedes
## 700                                                                                                                                                                                                                                                                          Melissa Sweet
## 701                                                                                                                                                                                                                                                               Spectrum News CNY/S.Tier
## 702                                                                                                                                                                                                                                                                      <U+0001D435>æ ♡
## 703                                                                                                                                                                                                                                                                               Joni Job
## 704                                                                                                                      Jack <U+0001F30A>DemForce2020<U+0001F1FA><U+0001F1F2><U+0001F3F4><U+000E0067><U+000E0062><U+000E0073><U+000E0063><U+000E0074><U+000E007F><U+0001F1EE><U+0001F1EA>
## 705                                                                                                                                                                                                                                                                            Alex Collie
## 706                                                                                                                                                                                                                              <U+0001F33C>TheresaZ<U+0001F33C>STAY INSIDE! <U+0001F92C>
## 707                                                                                                                                                                                                                                                                         Jason Alligood
## 708                                                                                                                                                                                                                                                                          Sheri Bettine
## 709                                                                                                                                                                                                                                                                              Krishna N
## 710                                                                                                                                                                                                                                                                         Steve Saideman
## 711                                                                                                                                                                                                                                                                                     Zi
## 712                                                                                                                                                                                                                                                                           News Conover
## 713                                                                                                                                                                                                                                                                    Swani Kumar Maharaj
## 714                                                                                                                                                                                                                                                    Nikoraray #loveeveryone<U+0001F49E>
## 715                                                                                                                                                                                                                                                                    Electronic Intifada
## 716                                                                                                                                                                                                                                                                            KREM 2 NEWS
## 717                                                                                                                                                                                                                                                                   DelawareNewsReporter
## 718                                                                                                                                                                                                                                                                             tom madane
## 719                                                                                                                                                                                                                                                                                PRB Eli
## 720                                                                                                                                                                                                                                                                           Sanjay Lewis
## 721                                                                                                                                                                                                                                                                          Richard Allen
## 722                                                                                                                                                                                                                                                                    theJasmineBRAND.com
## 723                                                                                                                                                                                                                                                                        7NEWS Australia
## 724                                                                                                                                                                                                                                                                          BRETT WHEELAN
## 725                                                                                                                                                                                                                                                                       jennifer windsor
## 726                                                                                                                                                                                                                                                                               Nick Kay
## 727                                                                                                                                                                                                                                   DrPeace <U+0001F1FA><U+0001F1F8><U+270C><U+0001F3FE>
## 728                                                                                                                                                                                                                                                                 This madness MUST END!
## 729                                                                                                                                                                                                                                                                             Mat Wilcox
## 730                                                                                                                                                                                                                                                                            Cerys Byrne
## 731                                                                                                                                                                                                                                                                            Cool Breeze
## 732                                                                                                                                                                                                                                                                    <U+0001F396>Yetunde
## 733                                                                                                                                                                                                                                                             Rep. Lucille Roybal-Allard
## 734                                                                                                                                                                                                                                                                                Netslab
## 735                                                                                                                                                                                                                       Michelle Adcock <U+0001F41D><U+0001F49B><U+0001F499><U+0001F41D>
## 736                                                                                                                                                                                                                                                             THE SCHOOL MARKETING GROUP
## 737                                                                                                                                                                                                                                                                        lexymarienitzel
## 738                                                                                                                                                                                                                                                                         Besan Mohammad
## 739                                                                                                                                                                                                                                                                          Kim Baccellia
## 740                                                                                                                                                                                                                                                                          Insights West
## 741                                                                                                                                                                                                                                                                           ALEX MACLEAN
## 742                                                                                                                                                                                                                                                                          Travel Weekly
## 743                                                                                                                                                                                                                                                                          James Mutinda
## 744                                                                                                                                                                                                                                                                         The Good Virus
## 745                                                                                                                                                                                                                                                                       Clint Buytenhuys
## 746                                                                                                                                                                                                                                                                            WGN TV News
## 747                                                                                                                                                                                                                                                                             C4 Atlanta
## 748                                                                                                                                                                                                                                                                                   Paul
## 749                                                                                                                                                                                                                                                                              Se Murphy
## 750                                                                                                                                                                                                                                                                            Kate Glaser
## 751                                                                                                                                                                                                                                                                        PoliticRealitic
## 752                                                                                                                                                                                                                                                             ☆<U+0F12>Rimsha<U+0F12>☆
## 753                                                                                                                                                                                                                                                                        Omer Alabdullah
## 754                                                                                                                                                                                                                                                                            Derek Poore
## 755                                                                                                                                                                                                                                                                           Gerardo NOTO
## 756                                                                                                                                                                                                                                                                  Capital Midlands News
## 757                                                                                                                                                                                                                                                  <U+0001F5A4>L'psychiatre <U+0001F5A4>
## 758                                                                                                                                                                                                                                         Oberon Le Blanc #FBPE #Repent #Rejoin #Rejoice
## 759                                                                                                                                                   Stay@Home <U+0001F1EE><U+0001F1F3> <U+0905><U+0939><U+092E> <U+092C><U+094D><U+0930><U+0939><U+092E><U+0938><U+094D><U+092E><U+0940>
## 760                                                                                                                                                                                                  どっかのそら<U+3018>超高浮上<U+3019> 乃木坂<U+25E2>⁴<U+2076>&マンウィズ<U+0001F43A>
## 761                                                                                                                                                                                                                                                                      OFFICIALPETESTACK
## 762                                                                                                                                                                                                                                                                            Bottlecapps
## 763                                                                                                                                                                                                                                                                    Ariel Pablos-Mendez
## 764                                                                                                                                                                                                                                                                         Richard Curzon
## 765                                                                                                                                                                                                                                                                   Recruiting Headlines
## 766                                                                                                                                                                                                                                                                                PenNews
## 767                                                                                                                                                                                                                                                                 PreciousMetalsForecast
## 768                                                                                                                                                                                                                                                                                   NCRC
## 769                                                                                                                                                                                                                                               Robert Fairhead <U+0001F4DA><U+0001F914>
## 770                                                                                                                                                                                                                                                                   Main Event of...Dead
## 771                                                                                                                                                                                                                                                                            Sue Clement
## 772                                                                                                                                                                                                                                                                        Sior Consulting
## 773                                                                                                                                                                                                                                              Social Cognition Lab, University of Miami
## 774                                                                                                                                                                                                                                                                             alamanyali
## 775                                                                                                                                                                                                                                                                           (Cindy Dawn)
## 776                                                                                                                                                                                                                                                                          Cabrini World
## 777                                                                                                                                                                                                                                                                        Edward Connolly
## 778                                                                                                                                                                                                                                                                          Roger Goodman
## 779                                                                                                                                                                                                                                                               Engr Ikram Ullah Dawar®
## 780                                                                                                                                                                                                                                                                              baldo meo
## 781                                                                                                                                                                                                                                                                   Michell Van Der Schy
## 782                                                                                                                                                                                                                         No 'Mania Spoilers Please <U+0001F6A7><U+0001F4CB><U+0001F928>
## 783                                                                                                                                                                                                                                                                      Mukhtar Abdirizaq
## 784                                                                                                                                                                                                                                                                          C<U+0001F451>
## 785                                                                                                                                                                                                                                                                       Kristina MacBury
## 786                                                                                                                                                                                                                                                    Matt, Dr. Bunny Keeper <U+0001F430>
## 787                                                                                                                                                                                                                                                                               Sherkhan
## 788                                                                                                                                                                                                                                                                            Santosh UCB
## 789                                                                                                                                                                                                                                                                    The Herald Winnipeg
## 790                                                                                                                                                                                                                                                                         KayLivinInSaTx
## 791                                                                                                                                                                                                                                                                          Naftal Rainer
## 792                                                                                                                                                                                                                                             Petra Sando (<U+267F> semi-hiatus<U+231B>)
## 793                                                                                                                                                                                                                                                                                 lauren
## 794                                                                                                                                                                                                                                                                    Eva Bermejo-Sanchez
## 795                                                                                                                                                                                                                                                                      CityNews Winnipeg
## 796                                                                                                                                                                                                                                                                           Kiera Ryshay
## 797                                                                                                                                                                                                                                                                               opeoluwa
## 798                                                                                                                                                                                                                                                                          R.J. Townsend
## 799                                                                                                                                                                                                                                                                                KallGov
## 800                                                                                                                                                                                                                                                                        Larry Underwood
## 801                                                                                                                                                                                                                                                                          Janice Wilson
## 802                                                                                                                                                                                                                                                                          Dan Middleton
## 803                                                                                                                                                                                                                                                                          Carrie Schwab
## 804                                                                                                                                                                                                                                                                     Jurgen "jkr" Kraus
## 805                                                                                                                                                                                                                                                                             USTRANSCOM
## 806                                                                                                                                                                                                                                                                          Alice Hawkins
## 807                                                                                                                                                                                                                                                                ChiHouston News Bench™
## 808                                                                                                                                                                                                                                                                            Kevin Jones
## 809                                                                                                                                                                                                                                                                            Whyle Kiote
## 810                                                                                                                                                                                                                                                               Ya Boi Zach <U+0001F531>
## 811                                                                                                                                                                                                                                                                                  Assia
## 812                                                                                                                                                                                                                                                                               Eliza vB
## 813                                                                                                                                                                                                                                                           <U+2728> yung westy <U+2728>
## 814                                                                                                                                                                                                                                                                    The Anonymous Comic
## 815                                                                                                                                                                                                                                                                            247 Nigeria
## 816                                                                                                                                                                                                                                                                           Paul Onufrey
## 817                                                                                                                                                                                                                                                                   Farmer Samson Ogbole
## 818                                                                                                                                                                                                                                 Queen <U+0001F478><U+0001F3FE><U+0001F483><U+0001F3FE>
## 819                                                                                                                                                                                                                                                                       DIGITALIVE.WORLD
## 820                                                                                                                                                                                                                                                               TheElusiveLiberalHoosier
## 821                                                                                                                                                                                                                                                               Bret Martin <U+0001F5FD>
## 822                                                                                                                                                                                                                                                                UoB Arts & Culture Team
## 823                                                                                                                                                                                                                                                                     Laura Terrell KCCI
## 824                                                                                                                                                                                                                                                                                 Gloria
## 825                                                                                                                                                                                                                                                                           Mark Buckley
## 826                                                                                                                                                                                                                                                                      UMESH jimmy SAHOO
## 827                                                                                                                                                                                                                                                 2,200,000 AMERICAN DEATHS? STAY HOME!!
## 828                                                                                                                                                                                                                                                                                   Assi
## 829                                                                                                                                                                                                                                                                          Revolutionary
## 830                                                                                                                                                                                                                                                                             Moge Vimal
## 831                                                                                                                                                                                                                                                                  Aertrip India Limited
## 832                                                                                                                                                                                                                                                       Citizen Melanie <U+2764><U+FE0F>
## 833                                                                                                                                                                                                                                                                                    MAB
## 834                                                                                                                                                                                                                                                                         Xavier Quinlan
## 835                                                                                                                                                                                                                                                                                     rk
## 836                                                                                                                                                                                                                                                                              Ian Saint
## 837                                                                                                                                                                                                                                                                                 Amanda
## 838                                                                                                                                                                                                                                                                              The Mayor
## 839                                                                                                                                                                                                                                                                                  kathy
## 840                                                                                                                                                                                                                                                                          Daniel Nugent
## 841                                                                                                                                                                                                                                                                              Chas Pope
## 842                                                                                                                                                                                                                                                                           Prasad Bhave
## 843                                                                                                                                                                                                                                                                          simon collins
## 844                                                                                                                                                                                                                                                                            eveRIAthing
## 845                                                                                                                                                                                                                                                                             Dan Farley
## 846                                                                                                                                                                                                                                                                           Defend Trump
## 847                                                                                                                                                                                                                                                             Darwin Brender a’ Brandis
## 848                                                                                                                                                                                                                                                                          Robert Connon
## 849                                                                                                                                                                                                                                                                            Malcolm Sym
## 850                                                                                                                                                                                                                                                     Q <U+2620><U+FE0E><U+26A1><U+FE0E>
## 851                                                                                                                                                                                                                                                              Carmen Aguilera-Carnerero
## 852                                                                                                                                                                                                               <U+0001D575><U+0001D58A><U+0001D598><U+0001D598><U+0001D58E><U+0001D58A>
## 853                                                                                                                                                                                                                                                                       Robert C Slayton
## 854                                                                                                                                                                                                                                                               xileen worcester<U+2698>
## 855                                                                                                                                                                                                                                                                         rajeev bhaskar
## 856                                                                                                                                                                                                                                                                                   Mr S
## 857                                                                                                                                                                                                                                                                     Debbie Laskey, MBA
## 858                                                                                                                                                                                                                                                                               Sunshine
## 859                                                                                                                                                                                                                                                                                danimal
## 860                                                                                                                                                                                                                            Mark Chubb <U+0001F1F3><U+0001F1FF><U+0001F1FA><U+0001F1F8>
## 861                                                                                                                                                                                                                                                                                    Mal
## 862                                                                                                                                                                                                                                          Faith <U+2077> (semi i/a COVID-19 frontliner)
## 863                                                                                                                                                                                                                                                                       Dr Kevin Purcell
## 864                                                                                                                                                                                                                                                                           Dave Beckett
## 865                                                                                                                                                                                                                                                                               WesternU
## 866                                                                                                                                                                                                                                                                     Hard Mustapha Disk
## 867                                                                                                                                                                                                                                                                        Victoria Bailey
## 868                                                                                                                                                                                                                                                                                Rutendo
## 869                                                                                                                                                                                                                                                                           Sister Niney
## 870                                                                                                                                                                                                                                                                                  Micha
## 871                                                                                                                                                                                                                                                                          ExpendabLegos
## 872                                                                                                                                                                                                                                                                      Peter Ravenscroft
## 873                                                                                                                                                                                                                                           Seth Bannon <U+0001F468><U+200D><U+0001F52C>
## 874                                                                                                                                                                                                                                                                         peeter altpere
## 875                                                                                                                                                                                                                                                                                    KB.
## 876                                                                                                                                                                                                                                                                              Jurf Murf
## 877                                                                                                                                                                                                                                                                           Darkest Hour
## 878                                                                                                                                                                                                                                                                 21 Sewers <U+0001F573>
## 879                                                                                                                                                                             Remaining Grumpy <U+0001F31F><U+0001F31F><U+0001F31F><U+0001F31F><U+0001F31F><U+0001F31F> <U+0001F339>YNWA
## 880                                                                                                                                                                                                                                                                slunewsonline@gmail.com
## 881                                                                                                                                                                                                                                                                          Joanne Spruce
## 882                                                                                                                                                                                                                                                                           Jake Leonard
## 883                                                                                                                                                                                                                                                               Dr. Mohammed Sirajuddeen
## 884                                                                                                                                                                                                                                                                              Bhoopal M
## 885                                                                                                                                                                                                                                                                          Amit Tripathi
## 886                                                                                                                                                                                                                                                                                  nesha
## 887                                                                                                                                                                                                                                                                               Memelord
## 888                                                                                                                                                                                                                                                  Kyle Hetrick <U+0001F1FA><U+0001F1F8>
## 889                                                                                                                                                                                                                                                                                 carlie
## 890                                                                                                                                                                                                                                                         Leo Mulvany, ACSLM CPD Officer
## 891                                                                                                                                                                                                                                                                            Oupa Mahosi
## 892                                                                                                                                                                                                                                                                               kaewmala
## 893                                                                                                                                                                                                                                                                              ProMarket
## 894                                                                                                                                                                                                                                                                      LifelineEducation
## 895                                                                                                                                                                                                                                                                                   Greg
## 896                                                                                                                                                                                                                                                                                Eddie V
## 897                                                                                                                                                                                                                                                                          Naija Reports
## 898                                                                                                                                                                                                                                                                    Shinji <U+0001F432>
## 899                                                                                                                                                                                                                                                                         Arlene S. King
## 900                                                                                                                                                                                                                                                                   TRAVEL PHOTOG FOODIE
## 901                                                                                                                                                                                                                                                                             Caleb Hart
## 902                                                                                                                                                                                                                                               Shikha Gaharwar <U+0001F1EE><U+0001F1F3>
## 903                                                                                                                                                                                                                                                                            Kelli Gonot
## 904                                                                                                                                                                                                                                                                   ParkerClimateControl
## 905                                                                                                                                                                                                                                                                        Nefarious Means
## 906                                                                                                                                                                                                                                                                                Julie M
## 907                                                                                                                                                                                                                                                                         Patrick Walton
## 908                                                                                                                                                                                                                                                                      East Herts Police
## 909                                                                                                                                                                                                                                                                            Jessie Hahn
## 910                                                                                                                                                                                                                                                                          SCRIPT Centre
## 911                                                                                                                                                                                                                                                               Judith Bueno de Mesquita
## 912                                                                                                                                                                                                                                             Christine <U+0001F5FD> Rogers <U+0001F308>
## 913                                                                                                                                                                                                                                                                    Bharti Airtel India
## 914                                                                                                                                                                                                                                                     Sara Beth <U+2B50><U+2B50><U+2B50>
## 915                                                                                                                                                                                                                                                          Luigi<U+0001F4B0><U+0001F4B2>
## 916                                                                                                                                                                                                                                                                                  Tupad
## 917                                                                                                                                                                                                                                                                     ALCC Winners House
## 918                                                                                                                                                                                                                                                                                 Jeremy
## 919                                                                                                                                                                                                                                                                              Victor Oh
## 920                                                                                                                                                                                                                                                                            Jason Green
## 921                                                                                                                                                                                                                                                                           masteradrian
## 922                                                                                                                                                                                                                                                                  David Alan 13News Now
## 923                                                                                                                                                                                                                                                                                Amarula
## 924                                                                                                                                                                                                                                                                     DreamState Digital
## 925                                                                                                                                                                                                                                                                        AJ Gersh | KTXS
## 926                                                                                                                                                                                                                                       Angelofjustice9 <U+0001F54A><U+0001F607><U+26A1>
## 927                                                                                                                                                                                                                                                     Victor Moreno Garcia #quedatencasa
## 928                                                                                                                                                                                                                                                           Defense Credit Union Council
## 929                                                                                                                                                                                                                                                                   Palmdale Regional MC
## 930                                                                                                                                                                                                                                                     Karugu<U+26C4><U+FE0F><U+0001F525>
## 931                                                                                                                                                                                                                                                                              Vish (JB)
## 932                                                                                                                                                                                                                                                                        Jones and Clark
## 933                                                                                                                                                                                                                                     Jeremiah OG Berner <U+0001F339> #GND #M4A #Climate
## 934                                                                                                                                                                                                                                                                   IndianDefenceUpdates
## 935                                                                                                                                                                                                                            l<U+01DD><U+0253>u<U+0250> oll<U+01DD><U+0265> <U+0001F4A3>
## 936                                                                                                                                                                                                                                                                       Brad van Leeuwen
## 937                                                                                                                                                                                                                                                                       Local 12/WKRC-TV
## 938                                                                                                                                                                                                                                                                             Brightidea
## 939                                                                                                                                                                                                                                                                      Ximena G. Alarcon
## 940                                                                                                                                                                                                                                                              Adrian Baker <U+0001F9E2>
## 941                                                                                                                                                                                                                                           Jean Franck Cazenave - Conseiller Immobilier
## 942                                                                                                                                                                                                                                                                         National Guard
## 943                                                                                                                                                                                                                                             <U+0001F451> Kings~Klan Mgt <U+0001F30D>™
## 944                                                                                                                                                                                                                               Melissa Ingala (socially distant extrovert) <U+0001F987>
## 945                                                                                                                                                                                                                                                                                  Magen
## 946                                                                                                                                                                                                                                                                   ECADF Ethiopian News
## 947                                                                                                                                                                                                                                                                 Resistbot Open Letters
## 948                                                                                                                                                                                                                                                                   InlandRegionalCenter
## 949                                                <U+0001F4A5> <U+0001D439><U+0001D4C7><U+0001D452><U+0001D4B9><U+0001D452><U+0001D4C7><U+0001D4BE><U+0001D4B8><U+0001D4C0> <U+0001D49F><U+0001D45C><U+0001D4CA><U+0001D454><U+0001D4C1><U+0001D4B6><U+0001D4C8><U+0001D4C8> <U+0001F4A5>
## 950                                                                                                                                                                                                                                                                lance #MassTestingNowPH
## 951                                                                                                                                                                                                                                                                        Employment Info
## 952                                                                                                                                                                                                                                                                   Prov Health Services
## 953                                                                                                                                                                                                                                                                Mustafa GA <U+0001F30A>
## 954                                                                                                                                                                                                                                                                              The Quint
## 955                                                                                                                                                                                                                                          Alex <U+0001F3F3><U+FE0F><U+200D><U+0001F308>
## 956                                                                                                                                                                                                                                                                          NASW Colorado
## 957                                                                                                                                                                                                                                                                           Binding Site
## 958                                                                                                                                                                                                                                                                        S.D.Reed.Author
## 959                                                                                                                                                                                                                                                                             PeeKnuckle
## 960                                                                                                                                                                                                                                                                      Kim Hoffman Kanof
## 961                                                                                                                                                                                                                                                                    Gareth Morgan-Jones
## 962                                                                                                                                                                                                                     Susan Charbonneau <U+2B50><U+FE0F><U+2B50><U+FE0F><U+2B50><U+FE0F>
## 963                                                                                                                                                                                                                                                                         Justine Cooper
## 964                                                                                                                                                                                                                                                                   rPod Coworking Space
## 965                                                                                                                                                                                                                                                                          insideHPC.com
## 966                                                                                                                                                                                                                                                                          StandUpAgain!
## 967                                                                                                                                                                                                                                                                               Skolster
## 968                                                                                                                                                                                                                                                     LauraB<U+0001F30A><U+2694><U+FE0F>
## 969                                                                                                                                                                                                                                                                            Greg Russak
## 970                                                                                                                                                                                                                                                                       Donegal Democrat
## 971                                                                                                                                                                                                                                                                                 Espact
## 972                                                                                                                                                                                                                                                                           Stephen Bubb
## 973                                                                                                                                                                                                                                                                            Evelyn12345
## 974                                                                                                                                                                                                                                                                      MOHD SADIQ HUSAIN
## 975                                                                                                                                                                                                                                                                       The English Post
## 976                                                                                                                                                                                                                                                                                  veena
## 977                                                                                                                                                                                                                                                                  gab taillefer mclaren
## 978                                                                                                                                                                                                                                                                               A R Bari
## 979                                                                                                                                                                                                                                                   SandiCanada <U+0001F1E8><U+0001F1E6>
## 980                                                                                                                                                                                                                                                           Ged 52% #FreeTradeOrWalkAway
## 981                                                                                                                                                                                                                                                                                    Dom
## 982                                                                                                                                                                                                                                                                      Legal Aid Chicago
## 983                                                                                                                                                                                                               <U+0001D4E2><U+0001D502><U+0001D4EA><U+0001D4F1><U+0001D4F2><U+0001D4FB>
## 984                                                                                                                                                                                                                                                                      MONTAUD Andre pro
## 985                                                                                                                                                                                                                                                                     InsideHealthPolicy
## 986                                                                                                                                                                                                                                                                   Waleed Arif (Muslim)
## 987                                                                                                                                                                                                                                                                             Tom Jawetz
## 988                                                                                                                                                                                                                                                                              Julia Kim
## 989                                                                                                                                                                                                                                             Ariyana Love's Indigenous Art & Free Press
## 990                                                                                                                                                                                                                                                                Benjamin *oofta* Brandt
## 991                                                                                                                                                                                                                                                                          Nkongori Pat.
## 992                                                                                                                                                                                                                                                                            TechXTrader
## 993                                                                                                                                                                                                                                                                   City of Roseville CA
## 994                                                                                                                                                                                                                                                                                 Grumpa
## 995                                                                                                                                                                                                                                                                               Katie Le
## 996                                                                                                                                                                                                                                                                             Nik Rajpal
## 997                                                                                                                                                                                                                                                             UK Integrated Review Watch
## 998                                                                                                                                                                                                                                                                             HAPPY-FROG
## 999                                                                                                                                                                                                                             Maneesh "Jay" Sharma™<U+0001F1FA><U+0001F1F8><U+0001F504>
## 1000                                                                                                                                                                                                                                                                   Marion E Mass, M.D.
## 1001                                                                                                                                                                                                                                                           Paul Kevin Ellasos <U+26A1>
## 1002                                                                                                                                                                                                                                                               atid<U+0117>jo akinneye
## 1003                                                                                                                                                                                                                              ZeliaLH <U+0001F1EE><U+0001F1F3><U+0001F1EF><U+0001F1F5>
## 1004                                                                                                                                                                                                                                                                                 jules
## 1005                                                                                                                                                                                                                                                                        Andrew Garbutt
## 1006                                                                                                                                                                                                                                                                    Virginia Tech News
## 1007                                                                                                                                                                                                                                                                       Fiona McEachran
## 1008                                                                                                                                                                                                                                                                       Amanda Fredette
## 1009                                                                                                                                                                                                                                 Susan Larson <U+0001F3F3><U+FE0F><U+200D><U+0001F308>
## 1010                                                                                                                                                                                                                                                                      CHP Baldwin Park
## 1011                                                                                                                                                                                                                                                         Lori Rambo Jones <U+0001F495>
## 1012                                                                                                                                                                                                                                                                             @yaboy.yp
## 1013                                                                                                                                                                                                                                            Dr. Carlos - Forensic Psychology Professor
## 1014                                                                                                                                                                                                                                                                   tripuranewslive.com
## 1015                                                                                                                                                                                                                                                                       Joy Amah Pepple
## 1016                                                                                                                                                                                                                                                                       Tris Somerville
## 1017                                                                                                                                                                                                                                            Cat Fenneman↙<U+FE0F>↙<U+FE0F>↙<U+FE0F>
## 1018                                                                                                                                                                                                                                                          Friendly Neighborhood Doctor
## 1019                                                                                                                                                                                                                                                                        Daniel Rizzolo
## 1020                                                                                                                                                                                                                                                                        dana gagliotti
## 1021                                                                                                                                                                                                                                                                  Sergeant Sara Connor
## 1022                                                                                                                                                                                                                                                                      Strategy Matters
## 1023                                                                                                                                                                                                                                                                             Mel Dewey
## 1024                                                                                                                                                                                                                                                                      Jorge Clavellina
## 1025                                                                                                                                                                                                                                                                 Sundance Construction
## 1026                                                                                                                                                                                                                                                                            mxvizcaino
## 1027                                                                                                                                                                                                                                                                   Gerard Batschkewitz
## 1028                                                                                                                                                                                                                                                                     Lutheran Westland
## 1029                                                                                                                                                                                                                                                                   Chemical Processing
## 1030                                                                                                                                                                                                                                                                                EzeeEP
## 1031                                                                                                                                                                                                                                                                              The Star
## 1032                                                                                                                                                                                                                                                                           Wayne.R.T.S
## 1033                                                                                                                                                                                                                                                                         Taylor Vecsey
## 1034                                                                                                                                                                                                                                                                    Paul Timothy Reeve
## 1035                                                                                                                                                                                                                                                                           Najaf Zahra
## 1036                                                                                                                                                                                                                                                                       Zuzana Dudasova
## 1037                                                                                                                                                                                                                                            New York Association on Independent Living
## 1038                                                                                                                                                                                                                                                                                 Adnan
## 1039                                                                                                                                                                                                                                                                            Leah Dwyer
## 1040                                                                                                                                                                                                                                                                                  Dara
## 1041                                                                                                                                                                                                                                                                                 Grant
## 1042                                                                                                                                                                                                                                                                           Beth Warren
## 1043                                                                                                                                                                                                                                                                                  Ramy
## 1044                                                                                                                                                                                                                                                                          <U+0001F6B7>
## 1045                                                                                                                                                                                                                                                                   MOVEPRODUCTIONS.COM
## 1046                                                                                                                                                                                                                                                                      Angelika Stalman
## 1047                                                                                                                                                                                                     The.Nomadic.One ♠<U+FE0F><U+0001F3F3><U+FE0F><U+200D><U+0001F308>♠<U+FE0F> D.B.
## 1048                                                                                                                                                                                                                                                                           Yukari Naka
## 1049                                                                                                                                                                                                                                                                             brickwall
## 1050                                                                                                                                                                                                                                                                                 A . H
## 1051                                                                                                                                                                                                                                                                     JustAGirlInAWorld
## 1052                                                                                                                                                                                                                                                                        masculinehairs
## 1053                                                                                                                                                                                                                                                 Rural and Remote Medical Services Ltd
## 1054                                                                                                                                                                                                                                                                        Strata Various
## 1055                                                                                                                                                                                                                                                                        Christian Amoh
## 1056                                                                                                                                                                                                                                                                         Enterprise M3
## 1057                                                                                                                                                                                                                                                                            Simon Cole
## 1058                                                                                                                                                                                                                                                                       Kendall Downing
## 1059                                                                                                                                                                                                                                                                         Kevin McNamee
## 1060                                                                                                                                                                                                                                                                         Spectator USA
## 1061                                                                                                                                                                                                                                                                        caitlin powell
## 1062                                                                                                                                                                                                                                                                          Chris Miller
## 1063                                                                                                                                                                                                                                                                            Boot Strap
## 1064                                                                                                                                                                                                                                                                                    Ed
## 1065                                                                                                                                                                                                                                                                           GASAN ASAFI
## 1066                                                                                                                                                                                                                                                                             Buzzicati
## 1067                                                                                                                                                                                                                                                                             Mdalawize
## 1068                                                                                                                                                                                                                                                                        Eat Right Chef
## 1069                                                                                                                                                                                                                                                                         jj_fishsticks
## 1070                                                                                                                                                                                                                                                                   The Washington Post
## 1071                                                                                                                                                                                                                                                                             1080 KRLD
## 1072                                                                                                                                                                                                                                                                        Benedick Abaya
## 1073                                                                                                                                                                                                                                                                Our Revolution Boulder
## 1074                                                                                                                                                                                                                                                                Bob Diamond-Pharmacist
## 1075                                                                                                                                                                                                                                                                        Tovar Rasputin
## 1076                                                                                                                                                                                                                                                                       hacker princess
## 1077                                                                                                                                                                                                                                                                    Click On This Show
## 1078                                                                                                                                                                                                                                                                            M.A.RASHID
## 1079                                                                                                                                                                                                                                                                                Nikola
## 1080                                                                                                                                                                                                                                                                              WOOD TV8
## 1081                                                                                                                                                                                                                                                                            Jaron Spor
## 1082                                                                                                                                                                                                                                                                              Erik Rex
## 1083                                                                                                                                                                                                                                                       Joy<U+270A><U+FE0F><U+0001F198>
## 1084                                                                                                                                                                                                                                                                         Naija Reports
## 1085                                                                                                                                                                                                                                                                          John Borwick
## 1086                                                                                                                                                                                                                                                      #TeamPeteforJoe2020 <U+0001F637>
## 1087                                                                                                                                                                                                                                                                         Steve Bullock
## 1088                                                                                                                                                                                                                                                                         Richard Naidu
## 1089                                                                                                                                                                                                                                                                        Wilda V. Heard
## 1090                                                                                                                                                                                                                                                                            TJ Luckman
## 1091                                                                                                                                                                                                                                                                            Don Groves
## 1092                                                                                                                                                                                                                                     <U+1ECC>m<U+1ECD> Igbo™ <U+0001F1F3><U+0001F1EC>
## 1093                                                                                                                                                                                                                                                                            Lester Lee
## 1094                                                                                                                                                                                                                                                                                MariaC
## 1095                                                                                                                                                                                                                                                                 kabeer Ahmed Altapawi
## 1096                                                                                                                                                                                                                                                                          Mike Tomkins
## 1097                                                                                                                                                                                                 <U+2694><U+2C64><U+04BD><U+0001D4E5><U+0001D4F8><U+2C62><U+028A><U+271D>iⓞn2<U+2694>
## 1098                                                                                                                                                                                                                                                                             WTVYNews4
## 1099                                                                                                                                                                                                          <U+0001D4DC>α<U+0001D415><U+0001D404><U+0001D52F><U+0001D4BE><U+0001D41C>ⓚ
## 1100                                                                                                                                                                                                                                                                     Duygu<U+0001F33C>
## 1101                                                                                                                                                                                                                                                                     OK Dept of Health
## 1102                                                                                                                                                                                                                                                                        louisa jacques
## 1103                                                                                                                                                                                                                                                                       CANANEWS ONLINE
## 1104                                                                                                                                                                                                                                                                        Dr.Sharath Raj
## 1105                                                                                                                                                                                                                                                                         alan drummond
## 1106                                                                                                                                                                                                                                                  Poppyred ⓥ <U+0001F331><U+0001F331>
## 1107                                                                                                                                                                                                                                                                  AZ Newspapers Assoc.
## 1108                                                                                                                                                                                                                                                                        ShadesofBeauty
## 1109                                                                                                                                                                                                                                                                     Lorns<U+0001F308>
## 1110                                                                                                                                                                                                                                                                      Michigan Advance
## 1111                                                                                                                                                                                                                                                                        Sharlie Brooks
##                                                                                                                                                                                                                                           location
## 1                                                                                                                                                                                                                                 Pigeon Forge, TN
## 2                                                                                                                                                                                                                                                 
## 3                                                                                                                                                                                                                                Greenwich, London
## 4                                                                                                                                                                                                                                    Virginia, USA
## 5                                                                                                                                                                                                                                  Cleveland, Ohio
## 6                                                                                                                                                                                                                                       London, UK
## 7                                                                                                                                                                                                                                       Albany, GA
## 8                                                                                                                                                                                                                                       Boston, MA
## 9                                                                                                                                                                                                                                   Tampa, Florida
## 10                                                                                                                                                                                                                                                
## 11                                                                                                                                                                                                                      Pickering, Ontario, Canada
## 12                                                                                                                                                                                                                               Fort Worth, Texas
## 13                                                                                                                                                                                                                            40.755455,-73.995685
## 14                                                                                                                                                                                                                                       Palo Alto
## 15                                                                                                                                                                                                                                                
## 16                                                                                                                                                                                                                                 Ontario, Canada
## 17                                                                                                                                                                                                                                           Italy
## 18                                                                                                                                                                                                                              Navi Mumbai, India
## 19                                                                                                                                                                                                                        UT: 39.769429,-86.157146
## 20                                                                                                                                                                                                                                                
## 21                                                                                                                                                                                                                             North Carolina, USA
## 22                                                                                                                                                                                                                                    Comox Valley
## 23                                                                                                                                                                                                                                     Oakland, CA
## 24                                                                                                                                                                                                                                                
## 25                                                                                                                                                                                                                                                
## 26                                                                                                                                                                                                                                 Brindisi, Italy
## 27                                                                                                                                                                                                                        Windsor, Ontario, Canada
## 28                                                                                                                                                                                                                                                
## 29                                                                                                                                                                                                                             Blackie’s Spit, BC
## 30                                                                                                                                                                                                                             North Carolina, USA
## 31                                                                                                                                                                                                                                       Cape Town
## 32                                                                                                                                                                                                                                           Texas
## 33                                                                                                                                                                                                                                      Dallas, TX
## 34                                                                                                                                                                                                                                     Chicago, IL
## 35                                                                                                                                                                                                                             Montgomery, Alabama
## 36                                                                                                                                                                                                                                                
## 37                                                                                                                                                                                                                                        Tanzania
## 38                                                                                                                                                                                                                                        Brussels
## 39                                                                                                                                                                                                                                                
## 40                                                                                                                                                                                                                                       San Diego
## 41                                                                                                                                                                                                                                                
## 42                                                                                                                                                                                                                              Mackay, Queensland
## 43                                                                                                                                                                                                                                         Canada 
## 44                                                                                                                                                                                                                                   GODVILLE, USA
## 45                                                                                                                                                                                                                                 Los Angeles, CA
## 46                                                                                                                                                                                                                                     Orlando, FL
## 47                                                                                                                                                                                                                                                
## 48                                                                                                                                                                                                                       Strathkelvin and Bearsden
## 49                                                                                                                                                                                                                                Vauxhall, London
## 50                                                                                                                                                                                                                                 Kansas City, MO
## 51                                                                                                                                                                                                                                    New York, NY
## 52                                                                                                                                                                                                                                      London, UK
## 53                                                                                                                                                                                                                                                
## 54                                                                                                                                                                                                                                          London
## 55                                                                                                                                                                                                                                                
## 56                                                                                                                                                                                                            Arizona, USA<U+0001F1FA><U+0001F1F8>
## 57                                                                                                                                                                                                                                           tokyo
## 58                                                                                                                                                                                                                                      Boston, MA
## 59                                                                                                                                                                                                                  Wherever threads are written..
## 60                                                                                                                                                                                                                                   United States
## 61                                                                                                                                                                                                                                Toronto, Ontario
## 62                                                                                                                                                                                                                                  Pittsburgh, PA
## 63                                                                                                                                                                                                                                Washington, D.C.
## 64                                                                                                                                                                                                                    Chilliwack, British Columbia
## 65                                                                                                                                                                                                                                                
## 66                                                                                                                                                                                                                                Grass Valley, CA
## 67                                                                                                                                                                                                                                                
## 68                                                                                                                                                                                                                                                
## 69                                                                                                                                                                                                                                      Dallas, TX
## 70                                                                                                                                                                                                                                                
## 71                                                                                                                                                                                                                                      London, UK
## 72                                                                                                                                                                                                                                                
## 73                                                                                                                                                                                                                                 Los Angeles, CA
## 74                                                                                                                                                                                                                                Maracaju, Brasil
## 75                                                                                                                                                                                                                                           Ibiza
## 76                                                                                                                                                                                                                                     Chicago, IL
## 77                                                                                                                                                                                                                                         Ireland
## 78                                                                                                                                                                                                                           Wales, United Kingdom
## 79                                                                                                                                                                                                                                       London UK
## 80                                                                                                                                                                                                                                  Pittsburgh, PA
## 81                                                                                                                                                                                                                                           kenya
## 82                                                                                                                                                                                                                                      Boston, MA
## 83                                                                                                                                                                                                                                                
## 84                                                                                                                                                                                                                                                
## 85                                                                                                                                                                                                                                       SEA / ATL
## 86                                                                                                                                                                                                                                                
## 87                                                                                                                                                                                                                                       Islamabad
## 88                                                                                                                                                                                                                                        New York
## 89                                                                                                                                                                                                                                          Global
## 90                                                                                                                                                                                                                                                
## 91                                                                                                                                                                                                                                Kaduna,  Nigeria
## 92                                                                                                                                                                                                                                  Nairobi, Kenya
## 93                                                                                                                                                                                                                                          London
## 94                                                                                                                                                                                                                                             USA
## 95                                                                                                                                                                                                                                 Los Angeles, CA
## 96                                                                                                                                                                                                                          eMalahleni, Mpumalanga
## 97                                                                                                                                                                                                                                                
## 98                                                                                                                                                                                                                                   United States
## 99                                                                                                                                                                                                                                   New York, USA
## 100                                                                                                                                                                                                                                Underwater lair
## 101                                                                                                                                                                                                                                               
## 102                                                                                                                                                                                                                                               
## 103                                                                                                                                                                                                                                               
## 104                                                                                                                                                                                                                                   Planet Earth
## 105                                                                                                                                                                                                                                               
## 106                                                                                                                                                                                                                                     Denver, CO
## 107                                                                                                                                                                                                                                               
## 108                                                                                                                                                                                                                                               
## 109                                                                                                                                                                                                                                       Brisbane
## 110                                                                                                                                                                                                                                           Iran
## 111                                                                                                                                                                                                                                          lagos
## 112                                                                                                                                                                                                                                   Bedfordshire
## 113                                                                                                                                                                                                                                Portland, Maine
## 114                                                                                                                                                                                                                                Uden, Nederland
## 115                                                                                                                                                                                                                         Pass A Grille, Florida
## 116                                                                                                                                                                                                                                               
## 117                                                                                                                                                                                                                                Bakersfield, CA
## 118                                                                                                                                                                                                                              Pennsylvania, USA
## 119                                                                                                                                                                                                                                               
## 120                                                                                                                                                                                                                                      Tampa, FL
## 121                                                                                                                                                                                                                                   Gulu, Uganda
## 122                                                                                                                                                                                                                                         London
## 123                                                                                                                                                                                                                                               
## 124                                                                                                                                                                                                                                        Toronto
## 125                                                                                                                                                                                                                                   Siaya, Kenya
## 126                                                                                                                                                                                                                         London- Riyadh- Khobar
## 127                                                                                                                                                                                                                                               
## 128                                                                                                                                                                                                                    Dubai, United Arab Emirates
## 129                                                                                                                                                                                                                                      Tulsa, OK
## 130                                                                                                                                                                                                                                      Gibraltar
## 131                                                                                                                                                                                                                                Prizren, Kosovo
## 132                                                                                                                                                                                                                 Cape of Coromondal,South India
## 133                                                                                                                                                                                                                                            USA
## 134                                                                                                                                                                                                                                         Italia
## 135                                                                                                                                                                                                                                 Lagos, Nigeria
## 136                                                                                                                                                                                                                                      Australia
## 137                                                                                                                                                                                                                                  Missouri, USA
## 138                                                                                                                                                                                                                                    Seattle, WA
## 139                                                                                                                                                                                                                           University of Guelph
## 140                                                                                                                                                                                                                             Grayson County, KY
## 141                                                                                                                                                                                                                                       Palakkad
## 142                                                                                                                                                                                                                                Merriam, Kansas
## 143                                                                                                                                                                                                                                         London
## 144                                                                                                                                                                                                                                         Italia
## 145                                                                                                                                                                                                                                           Pune
## 146                                                                                                                                                                                                                                        Swansea
## 147                                                                                                                                                                                                                     Bihar, India  {Begusarai} 
## 148                                                                                                                                                                                                                                               
## 149                                                                                                                                                                                                                                 Lagos, Nigeria
## 150                                                                                                                                                                                                                                     Whitstable
## 151                                                                                                                                                                                                                                               
## 152                                                                                                                                                                                                                                   Brooklyn, NY
## 153                                                                                                                                                                                                                          Little Rock, Arkansas
## 154                                                                                                                                                                                                                            Melbourne, Victoria
## 155                                                                                                                                                                                                                     25 S. Arizona Pl. Ste. 201
## 156                                                                                                                                                                                                                                               
## 157                                                                                                                                                                                                                                        Ireland
## 158                                                                                                                                                                                                                                  Rochester, NY
## 159                                                                                                                                                                                                                                      Utah, USA
## 160                                                                                                                                                                                                                               Washington, D.C.
## 161                                                                                                                                                                                                                               Philadelphia, PA
## 162                                                                                                                                                                                                                                 Des Moines, IA
## 163                                                                                                                                                                                                                                        Somalia
## 164                                                                                                                                                                                                                              Prairieville, LA.
## 165                                                                                                                                                                                                                                           Iowa
## 166                                                                                                                                                                                                                         Miami - The Magic City
## 167                                                                                                                                                                                                                                               
## 168                                                                                                                                                                                                                                               
## 169                                                                                                                                                                                                                                       Pakistan
## 170                                                                                                                                                                                                                                               
## 171                                                                                                                                                                                                                                               
## 172                                                                                                                                                                                                                       Mancherial-Naspur, India
## 173                                                                                                                                                                                                                            Edinburgh, Scotland
## 174                                                                                                                                                                                                                                               
## 175                                                                                                                                                                                                                                     Boston, MA
## 176                                                                                                                                                                                                                                               
## 177                                                                                                                                                                                                                      Quesnel, British Columbia
## 178                                                                                                                                                                                                                                         MUMBAI
## 179                                                                                                                                                                                                            1093 S. Main St. Suite 101, Salinas
## 180                                                                                                                                                                                                                           someone else's space
## 181                                                                                                                                                                                                                      Burnaby, British Columbia
## 182                                                                                                                                                                                                                                               
## 183                                                                                                                                                                                                                            Sointula, BC Canada
## 184                                                                                                                                                                                                                                         Kenya 
## 185                                                                                                                                                                                                                                               
## 186                                                                                                                                                                                                                                            OYO
## 187                                                                                                                                                                                                                                               
## 188                                                                                                                                                                                                                   Fayetteville, North Carolina
## 189                                                                                                                                                                                                                                  United States
## 190                                                                                                                                                                                                                                    Cardiff, UK
## 191                                                                                                                                                                                                                                               
## 192                                                                                                                                                                                                                          3rd rock from the sun
## 193                                                                                                                                                                                                                                   Wilson, N.C.
## 194                                                                                                                                                                                                                                               
## 195                                                                                                                                                                                                                            Melbourne, Victoria
## 196                                                                                                                                                                                                                                               
## 197                                                                                                                                                                                                                  Endangered Species , Colorado
## 198                                                                                                                                                                                                                                               
## 199                                                                                                                                                                                                                                      Red State
## 200                                                                                                                                                                                                                                            USA
## 201                                                                                                                                                                                                                             Churchgate, Mumbai
## 202                                                                                                                                                                                                                                         Regina
## 203                                                                                                                                                                                                                     Park Ridge ( Chicago ), IL
## 204                                                                                                                                                                                                                                 Scottsdale, AZ
## 205                                                                                                                                                                                                                                               
## 206                                                                                                                                                                                                                                 Long Beach, CA
## 207                                                                                                                                                                                                                                    Oakland, CA
## 208                                                                                                                                                                                                                                               
## 209                                                                                                                                                                                                                       Central Commyfornia, USA
## 210                                                                                                                                                                                                                                               
## 211                                                                                                                                                                                                                                   Arizona, USA
## 212                                                                                                                                                                                                                               Calgary, Alberta
## 213                                                                                                                                                                                                                                               
## 214                                                                                                                                                                                                                               Bengaluru, India
## 215                                                                                                                                                                                                                                               
## 216                                                                                                                                                                                                                                             MD
## 217                                                                                                                                                                                                                                  beyond belief
## 218                                                                                                                                                                                                                   Wellington City, New Zealand
## 219                                                                                                                                                                                                                              LDN, UK / NC, USA
## 220                                                                                                                                                                                                                                               
## 221                                                                                                                                                                                                                               Colorado Springs
## 222                                                                                                                                                                                                                               Seattle, WA, USA
## 223                                                                                                                                                                                                                      From Kuwait to Islamabad 
## 224                                                                                                                                                                                                                        Vancouver, begrudgingly
## 225                                                                                                                                                                                                                                 Sacramento, CA
## 226                                                                                                                                                                                                                             West Hollywood, CA
## 227                                                                                                                                                                                                                                Washington, USA
## 228                                                                                                                                                                                                                                  New York, USA
## 229                                                                                                                                                                                                                                          India
## 230                                                                                                                                                                                                                                    Los Angeles
## 231                                                                                                                                                                                                                                Tallahassee, FL
## 232                                                                                                                                                                                                                                               
## 233                                                                                                                                                                                                       Will rise again for series 6<U+0001F480>
## 234                                                                                                                                                                                                                                London, England
## 235                                                                                                                                                                                                                                       海千山千
## 236                                                                                                                                                                                                                                        Sussex 
## 237                                                                                                                                                                                                                     Seven Kings, Ilford, Essex
## 238                                                                                                                                                                                                                                  Cleveland, OH
## 239                                                                                                                                                                                                                                         Surrey
## 240                                                                                                                                                                                                                         London, United Kingdom
## 241                                                                                                                                                                                                                                               
## 242                                                                                                                                                                                                                                .....to the Bay
## 243                                                                                                                                                                                                                                               
## 244                                                                                                                                                                                                                                   Planet Earth
## 245                                                                                                                                                                                                                         The Trapped Gaza Strip
## 246                                                                                                                                                                                                                       <U+0001F1F8><U+0001F1EA>
## 247                                                                                                                                                                                                                                               
## 248                                                                                                                                                                                                                                 El Segundo, CA
## 249                                                                                                                                                                                                                                       Trinidad
## 250                                                                                                                                                                                                                                               
## 251                                                                                                                                                                                                                    Palestine, Lebanon & Jordan
## 252                                                                                                                                                                                                                                        england
## 253                                                                                                                                                                                                                           East Wallingford, VT
## 254                                                                                                                                                                                                                                               
## 255                                                                                                                                                                                                       210 Dundas Street, Suite 201, London, ON
## 256                                                                                                                                                                                                                                 Albany-ish, NY
## 257                                                                                                                                                                                                                                               
## 258                                                                                                                                                                                                                                  United States
## 259                                                                                                                                                                                                                              State College, PA
## 260                                                                                                                                                                                                                           Newcastle, Australia
## 261                                                                                                                                                                                                                                         CANADA
## 262                                                                                                                                                                                                                                 Nairobi, Paris
## 263                                                                                                                                                                                                                                 United Kingdom
## 264                                                                                                                                                                                                                                Washington, DC 
## 265                                                                                                                                                                                                                                        'Murica
## 266                                                                                                                                                                                                                                       Ohio USA
## 267                                                                                                                                                                                                                                       Not here
## 268                                                                                                                                                                                                                                    Bolivia, NC
## 269                                                                                                                                                                                                                                 Northridge, CA
## 270                                                                                                                                                                                                                              Karachi, Pakistan
## 271                                                                                                                                                                                                                                               
## 272                                                                                                                                                                                                                                  Tundla, India
## 273                                                                                                                                                                                                                            Bhubaneshwar, India
## 274                                                                                                                                                                                                                                   Oakland, CA.
## 275                                                                                                                                                                                                                                               
## 276                                                                                                                                                                                                                         Suspended In Emptiness
## 277                                                                                                                                                                                                                                               
## 278                                                                                                                                                                                                                                               
## 279                                                                                                                                                                                                                           28.674154,77.449011 
## 280                                                                                                                                                                                                                                  Mumbai, India
## 281                                                                                                                                                                                                                                               
## 282                                                                                                                                                                                                                                          Texas
## 283                                                                                                                                                                                                                                Los Angeles, CA
## 284                                                                                                                                                                                                                              BUFFALO, NEW YORK
## 285                                                                                                                                                                                                                                               
## 286                                                                                                                                                                                                                               Palm Springs, Ca
## 287                                                                                                                                                                                                                   Upper Hutt City, New Zealand
## 288                                                                                                                                                                                                                               Hyderabad, India
## 289                                                                                                                                                                                                                                  Nashville, TN
## 290                                                                                                                                                                                                                                   <U+0001F33C>
## 291                                                                                                                                                                                                                           United Arab Emirates
## 292                                                                                                                                                                                                                                               
## 293                                                                                                                                                                                                                                               
## 294                                                                                                                                                                                                                                               
## 295                                                                                                                                                                                                                                            WDC
## 296                                                                                                                                                                                                                  Peterborough, Ontario, Canada
## 297                                                                                                                                                                                                                           Melbourne, Australia
## 298                                                                                                                                                                                                                              Hamilton, Ontario
## 299                                                                                                                                                                                                                                 Morristown, NJ
## 300                                                                                                                                                                                                                                            USA
## 301                                                                                                                                                                                                                                               
## 302                                                                                                                                                                                                                                  New York, USA
## 303                                                                                                                                                                                                                                               
## 304                                                                                                                                                                                                                         Pennsylvania in the US
## 305                                                                                                                                                                                                                                 Nairobi, Kenya
## 306                                                                                                                                                                                                                                               
## 307                                                                                                                                                                                                                                        Chicago
## 308                                                                                                                                                                                                                                  Haverhill, MA
## 309                                                                                                                                                                                                                                               
## 310                                                                                                                                                                                                                            South East, England
## 311                                                                                                                                                                                                                 Margaritaville, State of Panic
## 312                                                                                                                                                                                                                       Seoul, Republic of Korea
## 313                                                                                                                                                                                                                                    los angeles
## 314                                                                                                                                                                                                                                       Colorado
## 315                                                                                                                                                                                                                                          India
## 316                                                                                                                                                                                                                              Edmonton, Alberta
## 317                                                                                                                                                                                                                          Worksop and Doncaster
## 318                                                                                                                                                                                                                                               
## 319                                                                                                                                                                                                                            Manchester, England
## 320                                                                                                                                                                                                                                           Home
## 321                                                                                                                                                                                                                                 Wisconsin, USA
## 322                                                                                                                                                                                                                                Nyandarua KENYA
## 323                                                                                                                                                                                                                                               
## 324                                                                                                                                                                                                                                    Chicago, IL
## 325                                                                                                                                                                                                                                        Nigeria
## 326                                                                                                                                                                                                                                     S.E London
## 327                                                                                                                                                                                                                                             UK
## 328                                                                                                                                                                                                                                               
## 329                                                                                                                                                                                                                                             UK
## 330                                                                                                                                                                                                                                      UK, India
## 331                                                                                                                                                                                                                              Oklahoma City, OK
## 332                                                                                                                                                                                                                                         Canada
## 333  <U+2800><U+2800><U+2800><U+2800><U+2800>No matter how gifted you are . . . <U+2800><U+2800><U+2800><U+2800><U+2800>You , alone , cannot change the <U+2800><U+2800><U+2800><U+2800><U+2800>world. <U+0FD0> <U+0FD4>*:<U+FF65><U+FF9F><U+2800>
## 334                                                                                                                                                                                                                                            NYC
## 335                                                                                                                                                                                                                                 Sacramento, CA
## 336                                                                                                                                                                                                                                  Visakhapatnam
## 337                                                                                                                                                                                                                                  United States
## 338                                                                                                                                                                                                                                          23601
## 339                                                                                                                                                                                                                                               
## 340                                                                                                                                                                                                                                               
## 341                                                                                                                                                                                                                               Central Kentucky
## 342                                                                                                                                                                                                                                       paradise
## 343                                                                                                                                                                                                                  Peterborough, Ontario, Canada
## 344                                                                                                                                                                                                                     UT: 14.5425351,121.0638329
## 345                                                                                                                                                                                                                                               
## 346                                                                                                                                                                                                                                               
## 347                                                                                                                                                                                                            https://shaojiang1989.blogspot.com/
## 348                                                                                                                                                                                                                                               
## 349                                                                                                                                                                                                                                          Kenya
## 350                                                                                                                                                                                                                 St. Louis, Chicago, Belleville
## 351                                                                                                                                                                                                                                               
## 352                                                                                                                                                                                                                    Somerset Park, Durban North
## 353                                                                                                                                                                                                                                        Raleigh
## 354                                                                                                                                                                                                                                North Wales, UK
## 355                                                                                                                                                                                                                                  www.janes.com
## 356                                                                                                                                                                                                                              Trinidad & Tobago
## 357                                                                                                                                                                                                                                         SYDNEY
## 358                                                                                                                                                                                                                              Santa Clarita, CA
## 359                                                                                                                                                                                                                                               
## 360                                                                                                                                                                                                                                        Nigeria
## 361                                                                                                                                                                                                                                 Washington, DC
## 362                                                                                                                                                                                                                                               
## 363                                                                                                                                                                                                                               Denver, Colorado
## 364                                                                                                                                                                                                                                          Texas
## 365                                                                                                                                                                                                                                 Richardson, TX
## 366                                                                                                                                                                                                                               Lahore, Pakistan
## 367                                                                                                                                                                                                                                 Ikeja, Nigeria
## 368                                                                                                                                                                                                                                    Houston, TX
## 369                                                                                                                                                                                                                                    Seattle, WA
## 370                                                                                                                                                                                                                                 One's own room
## 371                                                                                                                                                                                                                       Jammu, Jammu And Kashmir
## 372                                                                                                                                                                                                                                London, England
## 373                                                                                                                                                                                                                                 Mobile Alabama
## 374                                                                                                                                                                                                                                               
## 375                                                                                                                                                                                                                              Brussels, Belgium
## 376                                                                                                                                                                                                                                          Abuja
## 377                                                                                                                                                                                                                                  Mohali, India
## 378                                                                                                                                                                                                                                               
## 379                                                                                                                                                                                                                                  Michigan, USA
## 380                                                                                                                                                                                                                                  Charlotte, NC
## 381                                                                                                                                                                                                                  Central Coast, CA. - ASU, AZ.
## 382                                                                                                                                                                                                                                  San Francisco
## 383                                                                                                                                                                                                                              England And Wales
## 384                                                                                                                                                                                                                                               
## 385                                                                                                                                                                                                                                  Illinois, USA
## 386                                                                                                                                                                                                                                     Manchester
## 387                                                                                                                                                                                                                                a city near you
## 388                                                                                                                                                                                                                                               
## 389                                                                                                                                                                                                                                               
## 390                                                                                                                                                                                                                                  United States
## 391                                                                                                                                                                                                                            San Luis Obispo, CA
## 392                                                                                                                                                                                                                                               
## 393                                                                                                                                                                                                                                 Cincinnati, OH
## 394                                                                                                                                                                                                                          Wales, United Kingdom
## 395                                                                                                                                                                                                                                               
## 396                                                                                                                                                                                                                                    192.168.0.2
## 397                                                                                                                                                                                                                                 Woodbridge, VA
## 398                                                                                                                                                                                                                                  New Haven, CT
## 399                                                                                                                                                                                                                                               
## 400                                                                                                                                                                                                                                         Africa
## 401                                                                                                                                                                                                                                   Hartford, CT
## 402                                                                                                                                                                                                                                         Canada
## 403                                                                                                                                                                                                                               Accra - Dansoman
## 404                                                                                                                                                                                                                                            ain
## 405                                                                                                                                                                                                                                   San Jose, CA
## 406                                                                                                                                                                                                                          Macon - Warner Robins
## 407                                                                                                                                                                                                                                  Princeton, BC
## 408                                                                                                                                                                                                                            Lafayette, Colorado
## 409                                                                                                                                                                                                                                California, USA
## 410                                                                                                                                                                                                                                               
## 411                                                                                                                                                                                                                                 South Florida.
## 412                                                                                                                                                                                                                                        EN2 9EU
## 413                                                                                                                                                                                                                             Liverpool, England
## 414                                                                                                                                                                                                                              San Francisco, CA
## 415                                                                                                                                                                                                                                    Hawaii, USA
## 416                                                                                                                                                                                                                             MI, IN, IL, WI, DE
## 417                                                                                                                                                                                                                                     Texas, USA
## 418                                                                                                                                                                                                                                    Seattle, WA
## 419                                                                                                                                                                                                                                    Atlanta, GA
## 420                                                                                                                                                                                                                                      sonoma CA
## 421                                                                                                                                                                                                                                               
## 422                                                                                                                                                                                √α. в<U+0AEF>α<U+0AEE><U+0452>, √¡<U+0AE8>g¡<U+0E17>¡α
## 423                                                                                                                                                                                                                                        Chicago
## 424                                                                                                                                                                                                                                    Oregon, USA
## 425                                                                                                                                                                                                                                               
## 426                                                                                                                                                                                                                                               
## 427                                                                                                                                                                                                                                London, England
## 428                                                                                                                                                                                                                                               
## 429                                                                                                                                                                                                                                      Vancouver
## 430                                                                                                                                                                     <U+092E><U+0941><U+0902><U+092C><U+0908>, <U+092D><U+093E><U+0930><U+0924>
## 431                                                                                                                                                                                                                          Cranbrook, BC, Canada
## 432                                                                                                                                                                                                                                   New York, NY
## 433                                                                                                                                                                                                                                               
## 434                                                                                                                                                                                                                  On the dark side of the moon.
## 435                                                                                                                                                                                                                                    Los Angeles
## 436                                                                                                                                                                                                                                               
## 437                                                                                                                                                                                                                   Lethbridge, Alberta, Canada.
## 438                                                                                                                                                                                                                                    riyadh, ksa
## 439                                                                                                                                                                                                                                               
## 440                                                                                                                                                                                                                     Sicamous, British Columbia
## 441                                                                                                                                                                                                                            the shift in nights
## 442                                                                                                                                                                                                                                      Dover, DE
## 443                                                                                                                                                                                                                              Planet Earth, USA
## 444                                                                                                                                                                                                                  Central City <U+26A1><U+FE0F>
## 445                                                                                                                                                                                                                                  Mumbai, India
## 446                                                                                                                                                                                                                              San Francisco, CA
## 447                                                                                                                                                                                                                                    Los Angeles
## 448                                                                                                                                                                                                                               Hyderabad, India
## 449                                                                                                                                                                                          Stanford, CA; Seattle, WA; Hawaii, USA; Edinburgh, GB
## 450                                                                                                                                                                                                                                   Columbus, OH
## 451                                                                                                                                                                                                                                     Boston, MA
## 452                                                                                                                                                                                                                                  Kerala, India
## 453                                                                                                                                                                                                                                               
## 454                                                                                                                                                                                                                               Toronto, Ontario
## 455                                                                                                                                                                                                                                               
## 456                                                                                                                                                                                                                                     Garner, NC
## 457                                                                                                                                                                                                                                               
## 458                                                                                                                                                                                                                                      Miami, FL
## 459                                                                                                                                                                                                                                Tokyo-to, Japan
## 460                                                                                                                                                                                                                                               
## 461                                                                                                                                                                                                                                           home
## 462                                                                                                                                                                                                                                               
## 463                                                                                                                                                                                                                                      Salem, NJ
## 464                                                                                                                                                                                                                         Belo Horizonte, Brazil
## 465                                                                                                                                                                                                                           Brisbane, Queensland
## 466                                                                                                                                                                                                                                   The Internet
## 467                                                                                                                                                                                                                               New Delhi, India
## 468                                                                                                                                                                                                                                         Denver
## 469                                                                                                                                                                                                                                  United States
## 470                                                                                                                                                                                                                               Sabah Darul PATI
## 471                                                                                                                                                                                                                            destination unknown
## 472                                                                                                                                                                                                                                         Texas 
## 473                                                                                                                                                                                                                                               
## 474                                                                                                                                                                                                                                  Paris, France
## 475                                                                                                                                                                                                                                     Monroe, LA
## 476                                                                                                                                                                                                                                    NY, NY, USA
## 477                                                                                                                                                                                                                        Los Angeles, California
## 478                                                                                                                                                                                                                                   South Africa
## 479                                                                                                                                                                                                                                               
## 480                                                                                                                                                                                                                          Auckland, New Zealand
## 481                                                                                                                                                                                                                           Somewhere Everywhere
## 482                                                                                                                                                                                                                                        Makurdi
## 483                                                                                                                                                                                                                                   Pennsylvania
## 484                                                                                                                                                                                                                           Dublin City, Ireland
## 485                                                                                                                                                                                                                                               
## 486                                                                                                                                                                                                                                               
## 487                                                                                                                                                                                                                                               
## 488                                                                                                                                                                                                                                   Mount Beauty
## 489                                                                                                                                                                                                                 Planet Earth-If we can keep it
## 490                                                                                                                                                                                                                                      Australia
## 491                                                                                                                                                                                                                             Kabul, Afghanistan
## 492                                                                                                                                                                                                                                               
## 493                                                                                                                                                                                                                       SE Queensland, Australia
## 494                                                                                                                                                                                                                      Adelaide, South Australia
## 495                                                                                                                                                                                                                                   Columbus, GA
## 496                                                                                                                                                                                                                                 North Portugal
## 497                                                                                                                                                                                                                                               
## 498                                                                                                                                                                                                                                Ontario, Canada
## 499                                                                                                                                                                                                                                     Salford UK
## 500                                                                                                                                                                                                                    West of Reno, East of Omaha
## 501                                                                                                                                                                                                                                               
## 502                                                                                                                                                                                                                                 Gwalior, India
## 503                                                                                                                                                                                                                                 New London, CT
## 504                                                                                                                                                                                                                                             UK
## 505                                                                                                                                                                                                                                 Washington, DC
## 506                                                                                                                                                                                                                                               
## 507                                                                                                                                                                                                                              Northern Illinois
## 508                                                                                                                                                                                                                                London, England
## 509                                                                                                                                                                                                                               Jalore,rajasthan
## 510                                                                                                                                                                                                                                        Kowloon
## 511                                                                                                                                                                                                                                   New York, NY
## 512                                                                                                                                                                                                                             Massachusetts, USA
## 513                                                                                                                                                                                                                                            rva
## 514                                                                                                                                                                                                                                               
## 515                                                                                                                                                                                                                                       Scotland
## 516                                                                                                                                                                                                                               Kajang, Selangor
## 517                                                                                                                                                                                                                            College Station, TX
## 518                                                                                                                                                                                                                                               
## 519                                                                                                                                                                                                                                       Hogwarts
## 520                                                                                                                                                                                                                                 Botany, Sydney
## 521                                                                                                                                                                                                                                     New Jersey
## 522                                                                                                                                                                                                                             St. Petersburg, FL
## 523                                                                                                                                                                                                                                               
## 524                                                                                                                                                                                                                                               
## 525                                                                                                                                                                                                                               Nigeria | Africa
## 526                                                                                                                                                                                                                                London, England
## 527                                                                                                                                                                                                                              Sydney, Australia
## 528                                                                                                                                                                                                                                               
## 529                                                                                                                                                                                                                                  Mega-City Two
## 530                                                                                                                                                                                                                               Santa Monica, CA
## 531                                                                                                                                                                                                                               Connecticut, USA
## 532                                                                                                                                                                                                                                    Atlanta, GA
## 533                                                                                                                                                                                                                                               
## 534                                                                                                                                                                                                                                      Charlotte
## 535                                                                                                                                                                                                                                  Las Vegas, NV
## 536                                                                                                                                                                                                                                  United States
## 537                                                                                                                                                                                                                                       Limpopo 
## 538                                                                                                                                                                                                                                        Nigeria
## 539                                                                                                                                                                                                Buenos Aires Argentina <U+0001F1E6><U+0001F1F7>
## 540                                                                                                                                                                                                                                  Jaipur, India
## 541                                                                                                                                                                                                                                          India
## 542                                                                                                                                                                                                                                               
## 543                                                                                                                                                                                                                        South Africa, Vosloorus
## 544                                                                                                                                                                                                                               Earth, Milky Way
## 545                                                                                                                                                                                                                                   Accra, Ghana
## 546                                                                                                                                                                                                                               Grand Rapids, MI
## 547                                                                                                                                                                                                                            Manhattan, New York
## 548                                                                                                                                                                                                                              english@nrttv.com
## 549                                                                                                                                                                                                                           Rawalpindi, Pakistan
## 550                                                                                                                                                                                                                                        Bermuda
## 551                                                                                                                                                                                                                                               
## 552                                                                                                                                                                                                                                  Pittsboro, NC
## 553                                                                                                                                                                                                                        Barrie, Ontario, Canada
## 554                                                                                                                                                                                                                                  United States
## 555                                                                                                                                                                                               Weybridge(Anarchy in UK<U+0001F1EC><U+0001F1E7>)
## 556                                                                                                                                                                                                                                  Washington DC
## 557                                                                                                                                                                                                                                               
## 558                                                                                                                                                                                                                              Kalmeshwar Nagpur
## 559                                                                                                                                                                                                                    Minnesota, Wisconsin & S.D.
## 560                                                                                                                                                                                                                                    Seattle, WA
## 561                                                                                                                                                                                                                                         Global
## 562                                                                                                                                                                                                                                      Edinburgh
## 563                                                                                                                                                                                                                                         Uganda
## 564                                                                                                                                                                                                                                     Norman, OK
## 565                                                                                                                                                                                                                  SF-SILICON VALLEY, CALIFORNIA
## 566                                                                                                                                                                                                                                     California
## 567                                                                                                                                                                                                          UP 12, India <U+0001F1EE><U+0001F1F3>
## 568                                                                                                                                                                                                                                     Orcutt, CA
## 569                                                                                                                                                                                                                                          India
## 570                                                                                                                                                                                                                                               
## 571                                                                                                                                                                                                                                          Dubai
## 572                                                                                                                                                                                                                                  Pittsburgh PA
## 573                                                                                                                                                                                                                                               
## 574                                                                                                                                                                                                                            Melbourne Australia
## 575                                                                                                                                                                                                                      Adelaide, South Australia
## 576                                                                                                                                                                                                                                               
## 577                                                                                                                                                                                                                             HQ in Richmond, VA
## 578                                                                                                                                                                                                                              Vaud, Switzerland
## 579                                                                                                                                                                                                                                     Denver, CO
## 580                                                                                                                                                                                                                                               
## 581                                                                                                                                                                                                                                               
## 582                                                                                                                                                                                                                               Montreal, Quebec
## 583                                                                                                                                                                                                                                   Berkeley, CA
## 584                                                                                                                                                                                                                                The Netherlands
## 585                                                                                                                                                                                                                                               
## 586                                                                                                                                                                                                                              Fairbanks, Alaska
## 587                                                                                                                                                                                                                                               
## 588                                                                                                                                                                                                                                Vancouver, B.C.
## 589                                                                                                                                                                                                                             New Delhi , INDIA 
## 590                                                                                                                                                                                                                                    Los Angeles
## 591                                                                                                                                                                                                                                          MIAMI
## 592                                                                                                                                                                                                                                               
## 593                                                                                                                                                                                                                                   New York, NY
## 594                                                                                                                                                                                                                                     Dallas, TX
## 595                                                                                                                                                                                                                                  United States
## 596                                                                                                                                                                                                                                        Zamfara
## 597                                                                                                                                                                                                                                    MCR - Sheff
## 598                                                                                                                                                                                                                                        Ireland
## 599                                                                                                                                                                                                                 622 S 320th St, Federal Way WA
## 600                                                                                                                                                                                                                     http://www.ghanayouths.org
## 601                                                                                                                                                                                                                                    Seattle, WA
## 602                                                                                                                                                                                                                                               
## 603                                                                                                                                                                                                                           Citizen of the world
## 604                                                                                                                                                                                                                           Canada | New Zealand
## 605                                                                                                                                                                                                                                               
## 606                                                                                                                                                                                                                                        chennai
## 607                                                                                                                                                                                                                                 Paris, France.
## 608                                                                                                                                                                                                                     new York metropolitan area
## 609                                                                                                                                                                                                                                    Memphis, TN
## 610                                                                                                                                                                                                                                            USA
## 611                                                                                                                                                                                                                               South Orange, NJ
## 612                                                                                                                                                                                                                                               
## 613                                                                                                                                                                                                                                             UK
## 614                                                                                                                                                                                                                                       Winnipeg
## 615                                                                                                                                                                                                                           Somerset (of course)
## 616                                                                                                                                                                                                                                     Boston, MA
## 617                                                                                                                                                                                                                                               
## 618                                                                                                                                                                                                                   United Federation of Planets
## 619                                                                                                                                                                                                                                      Australia
## 620                                                                                                                                                                                                                            Chesham, South East
## 621                                                                                                                                                                                                                                               
## 622                                                                                                                                                                                                                                West of Ireland
## 623                                                                                                                                                                                                                          San Diego, California
## 624                                                                                                                                                                                                                                 Eldoret, Kenya
## 625                                                                                                                                                                                                                                   London, Ohio
## 626                                                                                                                                                                                                                                    Pacific, MO
## 627                                                                                                                                                                                                                                  San Diego, CA
## 628                                                                                                                                                                                                                          Warwick, Warwickshire
## 629                                                                                                                                                                                                                                               
## 630                                                                                                                                                                                                                                  San Mateo, CA
## 631                                                                                                                                                                                                                                               
## 632                                                                                                                                                                                                                                 Harrisburg, PA
## 633                                                                                                                                                                                                                                    Hawaii, USA
## 634                                                                                                                                                                                                                                               
## 635                                                                                                                                                                                                                                               
## 636                                                                                                                                                                                                                           Citizen of the World
## 637                                                                                                                                                                                                                                         mumbai
## 638                                                                                                                                                                                                                              Sydney, Australia
## 639                                                                                                                                                                                                                               Toronto, Ontario
## 640                                                                                                                                                                                                                                               
## 641                                                                                                                                                                                                                            Zurich, Switzerland
## 642                                                                                                                                                                                                                               Bristol, England
## 643                                                                                                                                                                                                                                               
## 644                                                                                                                                                                                                                              Sydney, Australia
## 645                                                                                                                                                                                                                                               
## 646                                                                                                                                                                                                                                               
## 647                                                                                                                                                                                                U.S.A <U+0001F1FA><U+0001F1F8>  #Prolife  No DM
## 648                                                                                                                                                                                                                                 Kensington, MD
## 649                                                                                                                                                                                                                              Overland Park, KS
## 650                                                                                                                                                                                                                                        Toronto
## 651                                                                                                                                                                                                                                    Phoenix, AZ
## 652                                                                                                                                                                                                                                      Omaha, NE
## 653                                                                                                                                                                                                                                 Lagos, Nigeria
## 654                                                                                                                                                                                                                            Thane, Maharashtra 
## 655                                                                                                                                                                                                                                               
## 656                                                                                                                                                                                                                                      Australia
## 657                                                                                                                                                                                                                                  Rural Alberta
## 658                                                                                                                                                                                                                                Bloomington, CA
## 659                                                                                                                                                                                                                                               
## 660                                                                                                                                                                                                                                            USA
## 661                                                                                                                                                                                                                                               
## 662                                                                                                                                                                                                                                               
## 663                                                                                                                                                                                                                                  The Bronx, NY
## 664                                                                                                                                                                                                                                    New Zealand
## 665                                                                                                                                                                                                                                 Minnesota, USA
## 666                                                                                                                                                                                                                 Here but originally from There
## 667                                                                                                                                                                                                                               New Delhi, India
## 668                                                                                                                                                                                                                              South East London
## 669                                                                                                                                                                                                                              Kingston, Ontario
## 670                                                                                                                                                                                                                                               
## 671                                                                                                                                                                                                                        California <U+0001F324>
## 672                                                                                                                                                                                                                      Wellingborough, Northants
## 673                                                                                                                                                                                                                                 Washington, DC
## 674                                                                                                                                                                                                                                      The world
## 675                                                                                                                                                                                                                 Anywhere milkshakes are served
## 676                                                                                                                                                                                                                                     Boston, MA
## 677                                                                                                                                                                                                                                    Trumplandia
## 678                                                                                                                                                                                                                                            USA
## 679                                                                                                                                                                                                                                Orebro, Sverige
## 680                                                                                                                                                                                                                                         Kansas
## 681                                                                                                                                                                                                                              Winston-Salem, NC
## 682                                                                                                                                                                                                                                               
## 683                                                                                                                                                                                                                                     39000 FEET
## 684                                                                                                                                                                                                                                       Da South
## 685                                                                                                                                                                                                                               Toronto, Ontario
## 686                                                                                                                                                                                                                                     Boston, MA
## 687                                                                                                                                                                                                                                Los Angeles, CA
## 688                                                                                                                                                                                                                         Kuala Lumpur, Malaysia
## 689                                                                                                                                                                                                                                      Ohio, USA
## 690                                                                                                                                                                                                                                    Bristol, uk
## 691                                                                                                                                                                                                                                               
## 692                                                                                                                                                                                                                                    Chicago, IL
## 693                                                                                                                                                                                                                                               
## 694                                                                                                                                                                                                                             Grand Junction, CO
## 695                                                                                                                                                                                                                                               
## 696                                                                                                                                                                                                                                        Glasgow
## 697                                                                                                                                                                                                                                 Kolkata, India
## 698                                                                                                                                                                                                                      Land hidden in the leaves
## 699                                                                                                                                                                                                                              Nova Lima, Brasil
## 700                                                                                                                                                                                                                                            NSW
## 701                                                                                                                                                                                                                      CNY, Northern NY, S. Tier
## 702                                                                                                                                                                                                                                               
## 703                                                                                                                                                                                                                                            PNW
## 704                                                                                                                                                                                                                    Phoenix, AZ now. Seattle b4
## 705                                                                                                                                                                                                                           Melbourne, Australia
## 706                                                                                                                                                                                                                                Los Angeles, CA
## 707                                                                                                                                                                                                                                     Peoria, IL
## 708                                                                                                                                                                                                                                  Snohomish, WA
## 709                                                                                                                                                                                                                                        Chennai
## 710                                                                                                                                                                                                                                Ottawa, Ontario
## 711                                                                                                                                                                                                                                  Cleveland, OH
## 712                                                                                                                                                                                                                                   Arizona, USA
## 713                                                                                                                                                                                                                                  Lautoka, Fiji
## 714                                                                                                                                                                                                                                  United States
## 715                                                                                                                                                                                                                                      Palestine
## 716                                                                                                                                                                                                                            Spokane, Washington
## 717                                                                                                                                                                                                                                       Delaware
## 718                                                                                                                                                                                                                                               
## 719                                                                                                                                                                                                                                           hell
## 720                                                                                                                                                                                                                                        Jamaica
## 721                                                                                                                                                                                                                                  New York, USA
## 722                                                                                                                                                                                                                      Anywhere There's Internet
## 723                                                                                                                                                                                                                                      Australia
## 724                                                                                                                                                                                                                                           Iowa
## 725                                                                                                                                                                                                                              Edmonton, Alberta
## 726                                                                                                                                                                                                                                 United Kingdom
## 727                                                                                                                                                                                                                                  New Hampshire
## 728                                                                                                                                                                                                                                    New England
## 729                                                                                                                                                                                                                        Toronto - self isolated
## 730                                                                                                                                                                                                                           Basingstoke, England
## 731                                                                                                                                                                                                                                            USA
## 732                                                                                                                                                                                                                                               
## 733                                                                                                                                                                                                                                               
## 734                                                                                                                                                                                                                             Global (HQ: Kenya)
## 735                                                                                                                                                                                                                   Chester County, Pennsylvania
## 736                                                                                                                                                                                                                                               
## 737                                                                                                                                                                                                                                    Orlando, FL
## 738                                                                                                                                                                                                                                      Palestine
## 739                                                                                                                                                                                                                                   Southern Ca.
## 740                                                                                                                                                                                                                                Vancouver, B.C.
## 741                                                                                                                                                                                                                                   New York, NY
## 742                                                                                                                                                                                                                               Victoria, London
## 743                                                                                                                                                                                                                                 Nairobi, Kenya
## 744                                                                                                                                                                                                                                          Earth
## 745                                                                                                                                                                                                                                Granite Bay, CA
## 746                                                                                                                                                                                                                                    Chicago, IL
## 747                                                                                                                                                                                                                                        Atlanta
## 748                                                                                                                                                                                                                                 Lagos, Nigeria
## 749                                                                                                                                                                                                                                        Ireland
## 750                                                                                                                                                                                                                               Western New York
## 751                                                                                                                                                                                                                                               
## 752                                                                                                                                                                                                                                       Pakistan
## 753                                                                                                                                                                                                                             Gaziantep, Turkiye
## 754                                                                                                                                                                                                                                  Kentucky, USA
## 755                                                                                                                                                                                                                                          Libya
## 756                                                                                                                                                                                                                                      Midlands 
## 757                                                                                                                                                                                                                                         Agadir
## 758                                                                                                                                                                                                                    Citizen of nowhere (London)
## 759                                                                                                                                                                                                                                   Sabarimalai!
## 760                                                                                                                                                                                                                                         どっか
## 761                                                                                                                                                                                                                         Victoria island Lagos 
## 762                                                                                                                                                                                                                                     Texas, USA
## 763                                                                                                                                                                                                                                               
## 764                                                                                                                                                                                                                                               
## 765                                                                                                                                                                                                                                  New York, USA
## 766                                                                                                                                                                                                                                               
## 767                                                                                                                                                                                                                                  Michigan, USA
## 768                                                                                                                                                                                                                                 Washington, DC
## 769                                                                                                                                                                                                                              Sydney, Australia
## 770                                                                                                                                                                                                                                  Champaign, IL
## 771                                                                                                                                                                                                                                    Scunthorpe 
## 772                                                                                                                                                                                                                                           Cork
## 773                                                                                                                                                                                                                          Coral Gables, Florida
## 774                                                                                                                                                                                                                                        Germany
## 775                                                                                                                                                                                                                                    Middle Ga. 
## 776                                                                                                                                                                                                                                    Rome, Lazio
## 777                                                                                                                                                                                                                                  Deerfield, IL
## 778                                                                                                                                                                                                                                      Australia
## 779                                                                                                                                                                                                                             Peshawar, Pakistan
## 780                                                                                                                                                                                                                                               
## 781                                                                                                                                                                                                                        Cape Town, South Africa
## 782                                                                                                                                                                                                                                      Backstage
## 783                                                                                                                                                                                                                 Mogadishu |  Streatham, London
## 784                                                                                                                                                                                                                                Los Angeles, CA
## 785                                                                                                                                                                                                                               Philadelphia, PA
## 786                                                                                                                                                                                                                                  Iowa City, IA
## 787                                                                                                                                                                                                                     WashingtonDC/Istanbul/Bali
## 788                                                                                                                                                                                                                                      Bangalore
## 789                                                                                                                                                                                                                                       Winnipeg
## 790                                                                                                                                                                                                                          San Antonio, TX #210 
## 791                                                                                                                                                                                                                                               
## 792                                                                                                                                                                                                                                            USA
## 793                                                                                                                                                                                                                                               
## 794                                                                                                                                                                                                                                               
## 795                                                                                                                                                                                                                                   Winnipeg, MB
## 796                                                                                                                                                                                                                                               
## 797                                                                                                                                                                                                                                        Nigeria
## 798                                                                                                                                                                                                                    Philadelphia, D.C., and NYC
## 799                                                                                                                                                                                                                                In the trenches
## 800                                                                                                                                                                                                                                   St Louis, MO
## 801                                                                                                                                                                                                                                California, USA
## 802                                                                                                                                                                                                                                       Whitwood
## 803                                                                                                                                                                                                                              San Francisco, CA
## 804                                                                                                                                                                                                                                         varies
## 805                                                                                                                                                                                                                            Scott AFB, Illinois
## 806                                                                                                                                                                                                                                               
## 807                                                                                                                                                                                                                                    Houston, TX
## 808                                                                                                                                                                                                                                      Ohio, USA
## 809                                                                                                                                                                                                                           The Woodlands, Texas
## 810                                                                                                                                                                                                                                               
## 811                                                                                                                                                                                                                                               
## 812                                                                                                                                                                                                                    Unceded Algonquin territory
## 813                                                                                                                                                                                                                                     California
## 814                                                                                                                                                                                                                                     Everywhere
## 815                                                                                                                                                                                                                                 Lagos, Nigeria
## 816                                                                                                                                                                                                                                Pittsburgh, PA.
## 817                                                                                                                                                                                                                                        Nigeria
## 818                                                                                                                                                                                                          NorCal nigga <U+0001F64C><U+0001F3FE>
## 819                                                                                                                                                                                                                                   worldwideweb
## 820                                                                                                                                                                                                                                               
## 821                                                                                                                                                                                                     Boston <U+2022> Massachusetts <U+2022> USA
## 822                                                                                                                                                                                                                  Bedford, Luton, Milton Keynes
## 823                                                                                                                                                                                                                                Des Moines, IA.
## 824                                                                                                                                                                                                                            Southern California
## 825                                                                                                                                                                                                                 Rhode Island, USA 401 467-6800
## 826                                                                                                                                                                                                                               New Delhi, India
## 827                                                                                                                                                                                                                                  Michigan, USA
## 828                                                                                                                                                                                                                                    Atlanta, GA
## 829                                                                                                                                                                                                                                      127.0.0.1
## 830                                                                                                                                                                                                                           Markham <U+2022> 905
## 831                                                                                                                                                                                                                                  Mumbai, India
## 832                                                                                                                                                                                                                                               
## 833                                                                                                                                                                                                                                         Brazil
## 834                                                                                                                                                                                                                                               
## 835                                                                                                                                                                                                                                               
## 836                                                                                                                                                                                                                         Deep Ellum, Dallas, TX
## 837                                                                                                                                                                           unceded x<U+02B7>m<U+0259>θk<U+02B7><U+0259>y<U+0313><U+0259>m land
## 838                                                                                                                                                                                                                                            USA
## 839                                                                                                                                                                                                                                               
## 840                                                                                                                                                                                                                                     New Jersey
## 841                                                                                                                                                                                                                                      Singapore
## 842                                                                                                                                                                                                                                    Pune, India
## 843                                                                                                                                                                                                                                   kent england
## 844                                                                                                                                                                                                                                   Vancouver BC
## 845                                                                                                                                                                                                                       The Dirtiest of The Jerz
## 846                                                                                                                                                                                                                                        America
## 847                                                                                                                                                                                                                            Wilmington, NC, USA
## 848                                                                                                                                                                                                                           Dublin City, Ireland
## 849                                                                                                                                                                                                                             Milbourne, England
## 850                                                                                                                                                                                                                                               
## 851                                                                                                                                                                                                                              Sri Lanka/Granada
## 852                                                                                                                                                                                                                                 Washington, DC
## 853                                                                                                                                                                                                                 Chicagoland; Chicago; Napervil
## 854                                                                                                                                                                                                                                               
## 855                                                                                                                                                                                                                                               
## 856                                                                                                                                                                                                                                               
## 857                                                                                                                                                                                                                                Los Angeles, CA
## 858                                                                                                                                                                                                                                  United States
## 859                                                                                                                                                                                                                                    Seattle, WA
## 860                                                                                                                                                                                                                 Seattle, WA & Christchurch, NZ
## 861                                                                                                                                                                                                                                               
## 862                                                                                                                                                                                                                  Weird flex but Yoongi owns me
## 863                                                                                                                                                                                                                      Seattle, WA, USA (mostly)
## 864                                                                                                                                                                                                                                  San Francisco
## 865                                                                                                                                                                                                                                    Pomona,  CA
## 866                                                                                                                                                                                                                      Accra Queensbridge,London
## 867                                                                                                                                                                                                                                      Keynsham 
## 868                                                                                                                                                                                                                                               
## 869                                                                                                                                                                                                                                               
## 870                                                                                                                                                                                                                                 Wisconsin, USA
## 871                                                                                                                                                                                                                                Los Angeles, CA
## 872                                                                                                                                                                                                                                               
## 873                                                                                                                                                                                                                              San Francisco, CA
## 874                                                                                                                                                                                                                                Tallinn/Nairobi
## 875                                                                                                                                                                                                                                      sikakurom
## 876                                                                                                                                                                                                                                               
## 877                                                                                                                                                                                                                                      New Delhi
## 878                                                                                                                                                                                                                                               
## 879                                                                                                                                                                                                                                     A Dystopia
## 880                                                                                                                                                                                                                         Bonneterre, Gros Islet
## 881                                                                                                                                                                                                                       British Columbia, Canada
## 882                                                                                                                                                                                                                                    Nokomis, IL
## 883                                                                                                                                                                                                                   Bangalore/New Delhi/Kashmir 
## 884                                                                                                                                                                                                                                chennai - India
## 885                                                                                                                                                                                                                         Lucknow, Uttar Pradesh
## 886                                                                                                                                                                                                                                    Mississippi
## 887                                                                                                                                                                                                                                               
## 888                                                                                                                                                                                                                                   Wheeling, WV
## 889                                                                                                                                                                                                                                               
## 890                                                                                                                                                                                                                   Dublin 8, D08 V062, Ireland 
## 891                                                                                                                                                                                                                                         Mzansi
## 892                                                                                                                                                                                                                                   Thailand 4.0
## 893                                                                                                                                                                                                                                        Chicago
## 894                                                                                                                                                                                                                                               
## 895                                                                                                                                                                                                                                               
## 896                                                                                                                                                                                                                                     East Coast
## 897                                                                                                                                                                                                                                 Lagos, Nigeria
## 898                                                                                                                                                                                                                                   Florida, USA
## 899                                                                                                                                                                                                                                               
## 900                                                                                                                                                                                                                               Ontario, Canada 
## 901                                                                                                                                                                                                                     Victoria, British Columbia
## 902                                                                                                                                                                                                                    Mirzapur-Vindhyachal, India
## 903                                                                                                                                                                                                                                               
## 904                                                                                                                                                                                                                                  Cleveland, OH
## 905                                                                                                                                                                                                                                      Ohio, USA
## 906                                                                                                                                                                                                                                 Tennessee, USA
## 907                                                                                                                                                                                                                              San Francisco, CA
## 908                                                                                                                                                                                                                                     East Herts
## 909                                                                                                                                                                                                                                 Washington, DC
## 910                                                                                                                                                                                                                            Edinburgh, Scotland
## 911                                                                                                                                                                                                                                               
## 912                                                                                                                                                                                                                                     California
## 913                                                                                                                                                                                                                                          INDIA
## 914                                                                                                                                                                                                                                               
## 915                                                                                                                                                                                                                       Protea Glen Extention 13
## 916                                                                                                                                                                                                                                               
## 917                                                                                                                                                                                                                             Brooklyn, New York
## 918                                                                                                                                                                                                                                        Germany
## 919                                                                                                                                                                                                                        Petaling Jaya, Selangor
## 920                                                                                                                                                                                                                               San Jose, Calif.
## 921                                                                                                                                                                                                                                      Amsterdam
## 922                                                                                                                                                                                                                                  Hampton Roads
## 923                                                                                                                                                                                                                       Phalaborwa, South Africa
## 924                                                                                                                                                                                                                      Nashville/LA/NY/Edinburgh
## 925                                                                                                                                                                                                                                    Abilene, TX
## 926                                                                                                                                                                                                                    Cloud 9 Alis volat propriis
## 927                                                                                                                                                                                                                                         Madrid
## 928                                                                                                                                                                                                                                  Washington DC
## 929                                                                                                                                                                                                                                   Palmdale, CA
## 930                                                                                                                                                                                                                                               
## 931                                                                                                                                                                                                            Greater Vancouver, British Columbia
## 932                                                                                                                                                                                                                     Burton upon Trent, England
## 933                                                                                                                                                                                                                              San Francisco, CA
## 934                                                                                                                                                                                                                                          India
## 935                                                                                                                                                                                                                                        Venice 
## 936                                                                                                                                                                                                                                         London
## 937                                                                                                                                                                                                                                 Cincinnati, OH
## 938                                                                                                                                                                                                                                     SF and NYC
## 939                                                                                                                                                                                                                                     Miami, FL 
## 940                                                                                                                                                                                                                                  Hawthorne, CA
## 941                                                                                                                                                                                                                                       Toulouse
## 942                                                                                                                                                                                                                  54 states, territories and DC
## 943                                                                                                                                                                                                                                        Cloud'9
## 944                                                                                                                                                                                                                                  New York, USA
## 945                                                                                                                                                                                                                                     Linden, MI
## 946                                                                                                                                                                                                                                         Canada
## 947                                                                                                                                                                                                                           Text RESIST to 50409
## 948                                                                                                                                                                                                                                               
## 949                                                                                                                                                                                                                             East Rochester, NY
## 950                                                                                                                                                                                                                            pearl of the orient
## 951                                                                                                                                                                                                                                               
## 952                                                                                                                                                                                                                                  Vancouver, BC
## 953                                                                                                                                                                                                                                               
## 954                                                                                                                                                                                                                                               
## 955                                                                                                                                                                                                                                  United States
## 956                                                                                                                                                                                                                                  Colorado, USA
## 957                                                                                                                                                                                                                                      Worldwide
## 958                                                                                                                                                                                                                                               
## 959                                                                                                                                                                                                                 Great Lks Region United States
## 960                                                                                                                                                                                                                               Portland, Oregon
## 961                                                                                                                                                                                                                                     Auburn, AL
## 962                                                                                                                                                                                                                                     Naples, FL
## 963                                                                                                                                                                                                                                        Glasgow
## 964                                                                                                                                                                                                                           rPod Coworking Space
## 965                                                                                                                                                                                                                   iPhone: 44.884338,-93.208321
## 966                                                                                                                                                                                                                                  United States
## 967                                                                                                                                                                                                                                               
## 968                                                                                                                                                                                                                                               
## 969                                                                                                                                                                                                                                 Pittsburgh, PA
## 970                                                                                                                                                                                                                   Letterkenny and Donegal Town
## 971                                                                                                                                                                                                                                 Lagos, Nigeria
## 972                                                                                                                                                                                                                                         Bexley
## 973                                                                                                                                                                                                                                               
## 974                                                                                                                                                                                                                               New Delhi, India
## 975                                                                                                                                                                                                                                          India
## 976                                                                                                                                                                                                                                    Phoenix, AZ
## 977                                                                                                                                                                                                                                               
## 978                                                                                                                                                                                                                               Lahore, Pakistan
## 979                                                                                                                                                                                                                                         Canada
## 980                                                                                                                                                                                                                                               
## 981                                                                                                                                                                                                                                The Speed Force
## 982                                                                                                                                                                                                                                    Chicago, IL
## 983                                                                                                                                                                                                                             Selangor, Malaysia
## 984                                                                                                                                                                                                                                Annecy (France)
## 985                                                                                                                                                                                                                                  Arlington, VA
## 986                                                                                                                                                                                                                              Karachi, Pakistan
## 987                                                                                                                                                                                                                                 Washington, DC
## 988                                                                                                                                                                                                                                  Paris, France
## 989                                                                                                                                                                                                                              Helsinki, Finland
## 990                                                                                                                                                                                                                                   Bismarck, ND
## 991                                                                                                                                                                                                                           Carrington, Scotland
## 992                                                                                                                                                                                                                                             NY
## 993                                                                                                                                                                                                                                  Roseville, CA
## 994                                                                                                                                                                                                                                               
## 995                                                                                                                                                                                                                                        Vietnam
## 996                                                                                                                                                                                                                              San Francisco, CA
## 997                                                                                                                                                                                                                                               
## 998                                                                                                                                                                                                                                               
## 999                                                                                                                                                                                                                                California, USA
## 1000                                                                                                                                                                                                                                Doylestown, PA
## 1001                                                                                                                                                                                                                                 Caloocan City
## 1002                                                                                                                                                                                                                                Abuja Nigeria 
## 1003                                                                                                                                                                                                                                  Tokyo, Japan
## 1004                                                                                                                                                                                                                               California, USA
## 1005                                                                                                                                                                                                                                Cincinnati, OH
## 1006                                                                                                                                                                                                                          Blacksburg, Virginia
## 1007                                                                                                                                                                                                                       Sydney, New South Wales
## 1008                                                                                                                                                                                                                                    Cali. USA 
## 1009                                                                                                                                                                                                                               Clarksville, TN
## 1010                                                                                                                                                                                                                                              
## 1011                                                                                                                                                                                                                               New Jersey, USA
## 1012                                                                                                                                                                                                                                              
## 1013                                                                                                                                                                                                                                Washington, DC
## 1014                                                                                                                                                                                                                       Palacecompound Agartala
## 1015                                                                                                                                                                                                                                              
## 1016                                                                                                                                                                                                                              Ivybridge, Devon
## 1017                                                                                                                                                                                                                                  Portland, OR
## 1018                                                                                                                                                                                                                 Could be anywhere actually...
## 1019                                                                                                                                                                                                                                 Fairbanks, AK
## 1020                                                                                                                                                                                                                                              
## 1021                                                                                                                                                                                                                     Space Coast, Florida, USA
## 1022                                                                                                                                                                                                                      AA County, Maryland, USA
## 1023                                                                                                                                                                                                                                Leeds, England
## 1024                                                                                                                                                                                                                                        Mexico
## 1025                                                                                                                                                                                                                              Manitoba, Canada
## 1026                                                                                                                                                                                                                          40.728873,-74.005688
## 1027                                                                                                                                                                                                                                              
## 1028                                                                                                                                                                                                                                  Westland, MI
## 1029                                                                                                                                                                                                                              Schaumburg, Ill.
## 1030                                                                                                                                                                                                                                              
## 1031                                                                                                                                                                                                                        Kuala Lumpur, Malaysia
## 1032                                                                                                                                                                                                                                              
## 1033                                                                                                                                                                                                                                   Long Island
## 1034                                                                                                                                                                                                                               London, England
## 1035                                                                                                                                                                                                                                Washington, DC
## 1036                                                                                                                                                                                                                               Slovak Republic
## 1037                                                                                                                                                                                                                                    Albany, NY
## 1038                                                                                                                                                                                                                                        Desert
## 1039                                                                                                                                                                                                                                      Canberra
## 1040                                                                                                                                                                                                                                              
## 1041                                                                                                                                                                                                                                  New York, NY
## 1042                                                                                                                                                                                                                                Louisville, KY
## 1043                                                                                                                                                                                                                             Glasgow, Scotland
## 1044                                                                                                                                                                                                                          Dont worry about it 
## 1045                                                                                                                                                                                                                      BRITISH INDIAN TERRITORY
## 1046                                                                                                                                                                                                                                              
## 1047                                                                                                                                                                                                                             Oklahoma City, OK
## 1048                                                                                                                                                                                                                               Ontario, Canada
## 1049                                                                                                                                                                                                                                 United States
## 1050                                                                                                                                                                                                                      Scotland, United Kingdom
## 1051                                                                                                                                                                                                                                 Michigan, USA
## 1052                                                                                                                                                                                                                                   Chicago, Il
## 1053                                                                                                                                                                                                                                              
## 1054                                                                                                                                                                                                                       Coming to your town USA
## 1055                                                                                                                                                                                                                                Hanoi, Vietnam
## 1056                                                                                                                                                                                                                 Hampshire and Surrey, England
## 1057                                                                                                                                                                                                                                     Leicester
## 1058                                                                                                                                                                                                                                   Memphis, TN
## 1059                                                                                                                                                                                                                             Fairfax, Virginia
## 1060                                                                                                                                                                                                                                 United States
## 1061                                                                                                                                                                                                                                        London
## 1062                                                                                                                                                                                                                                     Mostly NJ
## 1063                                                                                                                                                                                                                                              
## 1064                                                                                                                                                                                                                                              
## 1065                                                                                                                                                                                                                                              
## 1066                                                                                                                                                                                                                                     Worldwide
## 1067                                                                                                                                                                                                                                              
## 1068                                                                                                                                                                                                                                 New York, USA
## 1069                                                                                                                                                                                                                                              
## 1070                                                                                                                                                                                                                                Washington, DC
## 1071                                                                                                                                                                                                                                    Dallas, TX
## 1072                                                                                                                                                                                                                     Batangas City, Calabarzon
## 1073                                                                                                                                                                                                                                   Boulder, CO
## 1074                                                                                                                                                                                                                 Charlotte, North Carolina USA
## 1075                                                                                                                                                                                                                                  #Impeached45
## 1076                                                                                                                                                                                                                                Louisville, KY
## 1077                                                                                                                                                                                                                        NYC to LA & in between
## 1078                                                                                                                                                                                                                                        Kerala
## 1079                                                                                                                                                                                                                                              
## 1080                                                                                                                                                                                                                           Grand Rapids, Mich.
## 1081                                                                                                                                                                                                                                              
## 1082                                                                                                                                                                                                                                              
## 1083                                                                                                                                                                                                                   Beautiful Pacific Northwest
## 1084                                                                                                                                                                                                                                Lagos, Nigeria
## 1085                                                                                                                                                                                                                                   Seattle, WA
## 1086                                                                                                                                                                                                                                 Lowcountry SC
## 1087                                                                                                                                                                                                                                              
## 1088                                                                                                                                                                                                                                    Suva, Fiji
## 1089                                                                                                                                                                                                                                      Seatttle
## 1090                                                                                                                                                                                                                                   Buffalo, NY
## 1091                                                                                                                                                                                                                                        Sydney
## 1092                                                                                                                                                                                                                                       Nigeria
## 1093                                                                                                                                                                                                                   Vancouver, British Columbia
## 1094                                                                                                                                                                                                                                     Nederland
## 1095                                                                                                                                                                                                                          United Arab Emirates
## 1096                                                                                                                                                                                                                          Knoxville, Tennessee
## 1097                                                                                                                                                                                                                                              
## 1098                                                                                                                                                                                                                                    Dothan, AL
## 1099                                                                                                                                                                                                                                              
## 1100                                                                                                                                                                                                                         <U+0130>zmir, Turkiye
## 1101                                                                                                                                                                                                                                      Oklahoma
## 1102                                                                                                                                                                                                                                              
## 1103                                                                                                                                                                                                                                      Barbados
## 1104                                                                                                                                                                                                                                              
## 1105                                                                                                                                                                                                                         Perth, Ontario,Canada
## 1106                                                                                                                                                                                                                                       England
## 1107                                                                                                                                                                                                                                   Phoenix, AZ
## 1108                                                                                                                                                                                                                                    DirtySouth
## 1109                                                                                                                                                                                                                               Widnes, England
## 1110                                                                                                                                                                                                                                 Michigan, USA
## 1111                                                                                                                                                                                                                                    Austin, TX
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       description
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Husband of Valerie, Grandfather, official cocktail connoisseur, Loves politics, weather, sports, smooth jazz , and my mountains of Tenn. #TheResistance #FBR
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Data Science & Engineering / Distributed Systems / FP / DDD / EDA / CQRS / Sarcasm.
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Analytically grounded opinionated, political junkie American #HTTR
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #STEM #FabLab & #CSForAll consulting. MBA, CETL, #Apple Distinguished Educator, @Raspberry_Pi Certified Educator, @NSBAcomm #20toWatch, @CenterDigitalEd Top 30
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The only magazine that improves every single area of your life, every month | Customer services: menshealth@subscription.co.uk or 01858 438851
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Your First Alert station for breaking news, weather, and sports throughout South Georgia. Find us on Instagram: https://t.co/Tvi5eABSEA
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    News & trends for the nonprofit sector. Reporting on activism, #fundraising, #philanthropy, governance, #nptech, policy & much more. https://t.co/neH2HJHuLB
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   #StayHome #NeverTrump  Fmr @Wikimedia Gen Counsel. #EFF #ACLU Need a FL atty? Or the deepest diving sub in the world? DM me. #uglydogs #QBler
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Community of Medical Students ||\nWho can do more, Who can be more || Follow for Updates
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The official City of Pickering Twitter feed. Monitored Monday to Friday 8:30 am - 4:30 pm. Visit http://t.co/0kaYikSGWr for terms of use.
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Journalism professor at TCU. Freelance Producer in D/FW. Tweets are my opinions. Re-tweets/links are not endorsements. Wife. Dog-lover.
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thinking out loud! Better policies, farms, and food. “what if this is as good as it gets?”, Melvin Udall.
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Living to make the world better.
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Animal lover, Jedi Master & member of Blue Rose Task Force. She/her.
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Director @CDMN,  @Communitech.   Co-founder @HummingbrdHope.   Passionate about community building.
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lumi Industries is an Italian startup born from a Maker’s dream with a mission: to make 3D printing’s benefits available to a wider number of users.
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         pata nahi bro kya challa hai desh main
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Intellectual Property Computer Software Internet Privacy Information Attorney Informatics Cold War New Wave Libertarian Jazz Costello Soccer Coops Cornuts
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Minion driver
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Retired vet, construction worker. Political & market observer, family man,  Jesus is Lord, contending for the faith
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your twice-weekly community newspaper. Winner 2014 BCYCNA Newspaper Excellence Award & CCNA (national) Best Front Page. Part of @BlackPressMedia
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 product management @stripe. previously @twitter @google @yahoo
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <U+0001F1ED><U+0001F1F9> Heritage
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hi I am Moe's Raspbi, tracing/documenting covid-19 in numbers.
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Italy's MMA connoisseur. Editor for Italy, Greece and Malta at @Tapology; freelance writer for @BJPENNdotcom. Formerly on @FanSided & @CagesidePress.
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Canadian Mental Health Association Windsor-Essex County Branch 1400 Windsor Avenue N8X 3L9
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Retired and a Proud Democrat, God,#45 makes me sick
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     SA is my HOME <U+2764><U+FE0F>!\nString [][]Arrays={"Calm", "Reliable", "Self_motivated"},\n                            {"Humble", "Punctual", "Caring"}};
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I tell people's stories and sometimes fight for them. Director, Breitbart’s Border and Cartel Chronicles projects. bdarby@breitbart.com
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AP and Emmy award-winning News Reporter for @WFAA | @Baylor Bear | Opinions expressed are my own.
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              World’s largest platform for business events strategists. We believe business events can empower economic and social transformation. #EventProfs
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Attorney w/ trial and appellate experience & counseling chops. My tweets=my own opinions, not my employer’s & not legal advice. No rep that quality is better.
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Digital Marketing and Customer Experience practitioner & evangelist
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Global Citizen \nPanAfrican Feminist. \nInformed and Concerned Citizen. \nGender, Governance and Economic Justice Expert.\nOpinionated woman &  mother of 3
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EFFAT is the European Federation of Food, Agriculture and Tourism Trade Unions
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Opeeka's Person Centered Intelligence Solution (P-CIS) is the first behavioral health platform which matches need to intervention and learns what works for whom
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Frontend JavaScript developer  |  fish surfer | home cook | sometimes music maker | open govt. advocate
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        photography,music, travel, nature, do not buy followers-NO LISTS PLEASE
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 7NEWS Mackay brings you the latest in local news, sport and weather weeknights at 6pm, then 6:30pm on 7TWO. Email: newsmky@seven.com.au #7NEWS
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Troubadour. children's champion. ecology advocate. <U+0001F30E> <U+0001F525> emergency responder. @RaffiFoundation #childhonouring #ClimateEmergency #DylanSingsQuarantine
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <U+0001F1FA><U+0001F1F8>God Transformed My Life-Jesus Is God<U+0001F1FA><U+0001F1F8>#Trump2020<U+0001F1FA><U+0001F1F8> #KAG<U+0001F1FA><U+0001F1F8>Here To Support Our @POTUS<U+0001F1FA><U+0001F1F8>#WeAreTheNewsNow<U+0001F1FA><U+0001F1F8>#DrainTheSwamp
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Singer of all genres including Opera and Pop.
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Orange County Commissioner Emily Bonilla District 5
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fractional Reserve Banking\nFrench/English
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Member of the Scottish Parliament for Strathkelvin & Bearsden. Email: rona.mackay.msp@parliament.scot
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               London online ordering: https://t.co/zFSsLda8h3 https://t.co/dMcMAp8y0w 02074980550 sales@firstchoiceproduce.com
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Reporter. KS native. Library enthusiast. Tweets typically are about news, journalism and other miscellany. You can find my work tweets here: @shumakermolw
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       There is NO Clash of Civilisations- Only Extremists to Watch. Dont believe in left or Right. Too old to be Pro-anything.
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Independent research, analysis, and commentary on the world equity/capital markets.
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Go Steelers.  Support veteran suicide awareness.  \n\nI love tacos.
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Making precious moments count for seriously unwell children and their families in North & Central London.
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Birds, beasts, hunger and haiku.
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I’m a very grateful, proud American! Thank you Mr. President! We love you and we are grateful for all you do! If you are a “hater”, you are terribly misled.<U+0001F1FA><U+0001F1F8>
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD student. Research interest: Health Communication, Risk Communication, Health Literacy, Numeracy, SDM, visual aid, 好きなこと: <U+663C><U+5BDD>、寄り道, お茶,ゴルフ. 好きなもの: 鰻, バナナ、ゆで卵
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CASA (Continuing Alumni Support Application) provides connection & support to patients who have completed a recovery program from substance use disorders.
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I'm a <U+0001F916> to help you read threads more easily. Reply to any tweet of a thread and mention me with the "unroll" keyword and I'll give you a link back <U+0001F600>
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Please help my family @gofundme
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Humanitarian, Adventurer, Personality presenter, Traveler, Performer, Quranic studies student...
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Senior Editor and author at @BarefootBooks, aka Sunny Scribens. <U+0001F3F3><U+FE0F><U+200D><U+0001F308> Bi Southern mama <U+0001F463>
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The latest stories in science, brought to you by the @ScienceMagazine news team.
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I was a reporter, now I’m the editor of the Chilliwack Progress. Email me with story tips paul.henderson@theprogress.com or editor@theprogress.com.
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The 4 Horseman of the Beltway: privatization, deregulation, austerity, and war.
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I'm a laughing, fly-fishing web dev who digs getting Small Biz USA into SEO/Social/Ecommerce as well as automating chicken coops via Arduino (15-20 tweets/week)
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Thinker - Audio Artist - Thought Nudger - Cerebral Hacker - Enigma - DimensionX - The Imbibition
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Husband. #GirlDad. Director of Digital Content for #NexstarNation. Leader, trainer and content creator. Sharing the top #coronavirus #COVID19 stories.
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              life, love & play
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing business-critical insight, analysis and data to organisations in sport. Follow SportBusiness on IG: https://t.co/fhFI6YJA0x
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Curogram is helping clients respond to the COVID-19 crisis with a modern HIPAA-compliant telemedicine and Two-way messaging platform.
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        https://t.co/qP5wygLU7J serving Ibiza lovers since 1994
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Writer at https://t.co/2IDO8nicMp, triathlete, eco-socialist, vegetarian, craft beer lover, dabbler at guitar, and proud papa.
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Clinical Nurse Specialist Palliative Care\n<U+2764>  Seaside, Chocolate labs, Kindness\n\n                                   All views my own
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specialist Advisor for Monitoring Analysis. Ecologist <U+0001F987>Folklorist <U+0001F432>photographer, runner. <U+0001F3F3><U+FE0F><U+200D><U+0001F308>he/him insta: @richwithtea
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Obs and Gynae consultant, best care dependent on best staff - training and ed my passion to achieve that.
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We power the world's opinions and share them with the decision-makers who care. Voted the Best Follow on Twitter by our moms. (And by the Wall Street Journal.)
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Technology Oriented| musician| Ambitious|son of God
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The latest news from the BU Department of Computer Science!
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Innovating,supporting&resourcing social entrepreneurship.Director @FlourishCIC Developing #Women #Changemakers #SocEnt UK & <U+0001F30D> @UnLtd Associate @SocentC curator
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Twitter confuses the hell out of me. I just wanna be down. #lol @smh
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I spend a lot of time talking about #covid19  these days. I help global health organizations understand their data with @standardcode
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             #Environmentalist by profession \nobsessed by #climate_change, #droughts and politics of <U+0001F1F5><U+0001F1F0>\nfrom #Bajaur #PAKISTAN <U+0001F1F5><U+0001F1F0>
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ColumbiaDoctors, the faculty practice of CUIMC, has more than 1,800 physicians, dentists, & ANPs in 230 specialties & subspecialties. #patientcare #health
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DLA Piper, a global law firm operating through separately constituted and regulated legal entities. Attorney Advertising.
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Software Engineer at Adobe
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         civil rights activists
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ACCA /CPA(K) & https://t.co/htGXH4zxcF (Finance)\nAuditor & Finance Guru
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  http://t.co/xNo7rgb8JJ - Home of the Daily and Sunday Express
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Dedicated to political research and the quest for truth for over 41 years.
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Former Anim Lead on CW Superhero shows, previously Senior Previs Artist at Lightstorm Entertainment.  Now, Senior Animator at The Initiative. Screenwriting 2!
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Keeping the community updated by bringing news that matters to the eMalahleni community since 1928
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Supporting the Adelaide Crows, West Adelaide and Parramatta Eels make me appreciate the good times
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSU, patient-led, all-volunteer nonprofit empowering the #Myositis community. Join for educational support, patient-centered programs.  #RareDisease
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Learning & Game Theory Laboratory\n#mftg #gametheory #coopetition
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Favorite hobby is books. Obscure Simpsons references, sometimes <U+0628><U+0627><U+0644><U+0639><U+0631><U+0628><U+064A><U+0629>. Often waves at cats. Also you can’t deny people their humanity. Opinions mine.
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Instant access to inspirational lessons, activities resource packs, games, teaching ideas at RefeKids!
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Proud Neurosurgeon (Oxford ST4, shaping the future LTFT), mummy to 2 amazing girls, true to my Northern roots
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Physics Lover
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the name of God, the shatterer of the arrogant\n#<U+0644><U+0634><U+06A9><U+0631>_<U+0642><U+0627><U+0633><U+0645><U+06CC><U+0648><U+0646>
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Environmental advocate. Believer in science. Composting & gardening expertise. Mother of 2 terrific adults and innumerable animals.
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Patriot, 25 years of military service, Iraq Veteran, USAF Retired. Professional pilot. MBA, BA, UW-Madison.
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fighting hypocrites, communists, fascists, neo-colonialists and authoritarianism with my Nokia 232. This account is limited to no more than 470 select followers
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Journalist at @Fintribune Retweet≠endorsement
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Word Minister l Conference Speaker l Internet Entrepreneur\n\nAlways challenge the status quo & criticize by doing it right
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Freelance Illustrator based in Bedford. Character Design, Typography & Geometric Illustrations. Contact: ellypop@outlook.com
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @LibraryThing founder. Father, hacker, bibliophile, ex-classicist, Catholic. I tweet books, libraries, technology and culture. Married to @LisaCareyWrites.
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #TheResistance #FBR I follow back #FBR
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Previous IE, Inn/Restaurant owner. Love the markets & charts, tweetdeck Share market/stock analysis. Active blogger. VN Vet. Learn something new everyday!!!
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I love to do sport
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Kern County's News Leader
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Richard Vague, Acting Secretary of the PA Department of Banking and Securities as of February 8, 2020.
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                US Air Force SMSgt retired (Registered Nurse at Bay Pines VA Medical Center. #RedSox, #Patriots #Bruins #fishing #Sportfishing
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         **AnEmployed. LIFE. LIFE. And more LIFE. | Content Creator | Art | LIVERPOOL fan | Ugandan <U+0001F1FA><U+0001F1EC> |
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <U+0001F9D5><U+0001F3FE><U+0001F1F8><U+0001F1F1> II <U+0001F3AD> II #EpicStages19 @NYTofGB \nPreviously #LostOnesPlay #Pericles  #AusterityAndMe
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      90% slug
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Your #1 source for breaking news, traffic and weather in Toronto for more than 25 years.                               Listen: https://t.co/jPYdatuT1H
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ♨<U+FE0F>♨<U+FE0F>♨<U+FE0F>
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD in Stem cells from Imperial College London. A Consultant/Assis. Professor @_KSU. A Scorpio (<U+264F>) was born on 21 Nov.
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Gandhian/Trainned classical dancer/LLM Student/Politically Inclined/ @NSUIAssam state secretary
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cyber Security Professional / Enthusiast / Founder.
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Investigative and enterprise journalism that shines a light on Oklahoma. Sign up for our newsletter: https://t.co/ltkzyqydXO
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Gibraltarian <U+0001F1EC><U+0001F1EE>\nVIP ☎<U+FE0F>\nMusician <U+0001F3BA>\nBand Librarian <U+0001F3BC>\nPhotographer <U+0001F4F7>\nRunner #CarpeDiem <U+0001F3C3><U+200D>♂<U+FE0F>\n#PUFC #BeAMagpie <U+26BD><U+FE0F>
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Exec. Producer of BAFTA winning HOME, Producer, photographer, cultural worker, environmental volunteer - DokuFest
## 132                                                                                                                                             <U+0BAA><U+0BC6><U+0BA3><U+0BCD> <U+0BAA><U+0BB4><U+0B95><U+0BA4><U+0BCD> <U+0BA4><U+0BC6><U+0BB0><U+0BBF><U+0BAF><U+0BBE><U+0BA4><U+0BB5><U+0BB3><U+0BCD> <U+0B85><U+0BB2><U+0BCD><U+0BB2>. <U+0BAA><U+0BB4><U+0B95><U+0BBF><U+0BB5><U+0BBF><U+0B9F><U+0BCD><U+0B9F><U+0BC1> <U+0BAF><U+0BBE><U+0BB0><U+0BC6><U+0BA9><U+0BCD><U+0BB1><U+0BC7> <U+0BA4><U+0BC6><U+0BB0><U+0BBF><U+0BAF><U+0BBE><U+0BA4> <U+0B85><U+0BB3><U+0BB5><U+0BBF><U+0BB1><U+0BCD><U+0B95><U+0BC1> <U+0B85><U+0BB4><U+0B95><U+0BBE><U+0B95> <U+0BB5><U+0BBF><U+0BB2><U+0B95><U+0BA4><U+0BCD> <U+0BA4><U+0BC6><U+0BB0><U+0BBF><U+0BA8><U+0BCD><U+0BA4><U+0BB5><U+0BB3><U+0BCD>   <U+0BA8><U+0BA9><U+0BCD><U+0BB1><U+0BBF> Bruce <U+0BB4><U+0B95><U+0BB0><U+0BA9><U+0BCD> lee
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #ChicagoBears #NetNeutrality #activist #Israel #nojusticenopeace #socialjustice  #Zionist #ChicagoJew  w/eclectic mix of tweets. Welcome to my world.  :-)
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <U+0001F30D> My Adventures Worldwide! <U+0001F30D> Follow Me on Instagram https://t.co/zS0WJFh63J
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                *A firm believer in the New Nigeria\n*Business Development/HR Enthusiast\n*A staunch @LFC fan. \nRetweets are not necessarily for endorsement.
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    aged pensioner, ex-army (35yrs) father of five, grandfather of 11, great grandfather of two. anti LNP, pro equality, anti homophobia. very grumpy and poor
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 yrs USAF,  defending the #USA and it's #Constitution so PATRIOTS can be free and AHOLES can be AHOLES.  Looks like I did my job. #MAGA, #KAG #TRUMP2020,
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Navy Disabled Veteran, F/A-18 Pilot, TOPGUN Graduate
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Prof & Statistician in @uofgcomputing at @uofg, cofounder @Farm_2_Fork, GuelphHacks, @UofG_ILC, GryphonsCare, & @IdeasCongress. Pronouns: he/him/his.
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Official profile of Merriam, Kansas. Tweets and RTs are not endorsements. Full social media policy at https://t.co/URaCc0qkrt
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Digital tax solution platform- we are making it easier for you to manage your biz and tax affairs. We are on a mission to automate your tax and bookkeeping.
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     love & the other drugs! #<U+092C><U+093E><U+0947><U+0932><U+092C><U+092E>
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sports mad. Loyal follower of Swansea City FC and player for the mighty Tower Cricket Club. Love my music. Proud dad to 3 girlies. Husband and scientist too!!
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             enthusiast of cricket. I'm  sticky fan of Virat Kohli. Motivational writer and hearer. Sports lover <U+0001F618><U+0001F618><U+0001F618> Find out about me from my enemies. Spunky<U+0001F4AA>...
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Media Watchdog.
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BazeCity Media is one of the Nigerian best music website. BazeCity provides artists a platform to showcase talent.\nContact: 08064268032\nMail: bazecity@gmail.com
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wootangs are the best!!
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Actor. Writer. Teacher. BA, MFA. She/Her
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      navel-gazing writer, amateur romance novelist. tough broad. retweets are my love language.  SMM @listenmeetcute <U+0001F49B><U+0001F49C>
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cindy Herron
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Writer for hire get the shitposts for free! Welfare/antipoverty activism, feminist discourse, cat enthusiast, Comms/SocMed @AusUnemployment. They/them. DMs open
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Chandler Chamber is the 3rd largest Chamber in Arizona, representing over 1,400+ companies and small businesses.
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Magician, Mentalisationist,Humorist,, Weddings, Corporate Entertainment & Theatres Nationwide. TV Warm up guy for RTE, Winning Streak & Keith Barry Experience
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Emerging audiences editor @dandc newsroom @usatoday network. Totally #billsmafia #roc #foodie #gospelmusic; love the greater good:-)
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cybersecurity market leader of machine identity protection securing #M2M connections & communications, by orchestrating cryptographic keys and digital certs
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Senior healthcare reporter for @businessinsider, focused on policy and politics. Views are mine. Send tips to KLeonard@businessinsider.com.
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ima Around
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For families who make farming and ranching their business. Get ag updates sent straight to your inbox: https://t.co/UIVXPzHhhk.
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Critic, fearless & truth teller. Retweets do not imply endorsements!
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Writer, artist. Our President should be in jail for the 20+ sexual assaults, raping a 13yr old trafficking victim, E Jene Carrol (and others) look it up.
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Veteran Activist & Observer. frmr Carter Admin, frmr Senate candidate for Iowa. Prez at Veterans National Recovery Center.   RT is not   agreement.
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Official Twitter for the City of Miami. Retweets are not endorsements.
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              # Hanya untuk bersenang - senang
## 168                                                                                                                                                                        <U+200F><U+0627><U+0644><U+062D><U+0643><U+0645><U+0629> <U+0636><U+0627><U+0644><U+0629> <U+0627><U+0644><U+0645><U+0624><U+0645><U+0646><U+060C> <U+0627><U+064A><U+0646><U+0645><U+0627> <U+0648><U+062C><U+062F><U+0647><U+0627> <U+0623><U+062E><U+0630><U+0647><U+0627>.\n<U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+200F><U+0622><U+0631><U+0627><U+0626><U+064A> <U+0634><U+062E><U+0635><U+064A><U+0629> <U+062A><U+0645><U+062B><U+0644><U+0646><U+064A><U+060C> <U+0648><U+0627><U+0644><U+0631><U+064A><U+062A><U+0648><U+064A><U+062A> <U+0644><U+0627> <U+064A><U+0639><U+0646><U+064A> <U+0627><U+0644><U+062A><U+0628><U+0646><U+064A>
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Giving Hope to the people in Pakistan & across the Globe that together we will make a difference for Humanity as #HopeNotOut. Founding Chairman @SAfridiOfficial
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Representing KKWK 100.1, KMRN 99.3, KAAN 95.5, and Sports Radio 103.7 in Northwest Missouri.  Part of Alpha Media  https://t.co/TMwqzW4AyL
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Inappropriately honest.  Loves travelling and/for food.  Boy mom.\n\n #TweetsToMySon
## 172                                                                                                                                                      <U+0C24><U+0C46><U+0C32><U+0C02><U+0C17><U+0C3E><U+0C23> <U+0C30><U+0C3E><U+0C37><U+0C4D><U+0C1F><U+0C4D><U+0C30><U+0C02><U+0C32><U+0C4B><U+0C28><U+0C47> <U+0C13><U+0C1F><U+0C2E><U+0C3F> <U+0C0E><U+0C30><U+0C41><U+0C17><U+0C28><U+0C3F> <U+0C36><U+0C4D><U+0C30><U+0C40> <U+0C24><U+0C28><U+0C4D><U+0C28><U+0C40><U+0C30><U+0C41> <U+0C39><U+0C30><U+0C40><U+0C37><U+0C4D> <U+0C30><U+0C3E><U+0C35><U+0C4D> <U+0C17><U+0C3E><U+0C30><U+0C3F> <U+0C05><U+0C2D><U+0C3F><U+0C2E><U+0C3E><U+0C28><U+0C3F><U+0C28><U+0C3F> ...,\n<U+0C1C><U+0C48> <U+0C39><U+0C30><U+0C40><U+0C37><U+0C4D> <U+0C05><U+0C28><U+0C4D><U+0C28> \n<U+0C1C><U+0C48> <U+0C1C><U+0C48> <U+0C39><U+0C30><U+0C40><U+0C37><U+0C4D> <U+0C05><U+0C28><U+0C4D><U+0C28>
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #Sustainability & #CSR professional. Interested in #sustbiz #socent #sustfinance #socinv #impinv #climatechange. Personal account. Views mine.
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Common Man
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Daily Healthcare/Biotech Briefings, President @CreightonHealth #biotech #science #digitalhealth #innovation @_DiMeSociety @MassGov @DTxNetwork Alum @IDGWorld
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Author of the book: "Opening Happiness" Available on Amazon - https://t.co/LShAzGYPfj. Family man. In-Prison Volunteer. Speaker. Blogger. Scrum Master.
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Where Quesnel’s news begins. Follow for breaking stories, special reports, links, features and for access to local reporters. Part of<U+00A0>@BlackPressMedia
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ex. GS AISBOF & SBIOA(MUMBAI CIRCLE)\n\nEX Sr.VICE PRESIDENT AIBOC\nEX SECRETARY,SBIOA EDUCATION SOCIETY
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Salinas Californian, a Gannett newspaper, has served the Salinas Valley since 1871.
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     investigative typist/poster, here and there. drugs, nukes, boodle. @PacMediaGuild @IWWFJU. tips: cbloggy@gmail/protonmail. DM for Signal.
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Connect with Mayor Mike Hurley and Burnaby City Hall.
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I’m a Canadian retiree who is running as fast as I can to keep up with the world today.
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If you do not forgive other people, God is not going to forgive you (Matthew 6:15).
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ID Fellow @JohnsHopkinsDOM. #MEHP Fellow @JHUeducation. Team member @CPSolvers. Husband and father.
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 No hoity toity towards others
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I use Facebook for family, puppies, and promoting cancer awareness. Twitter to yell at the world! \n#getoffmylawn
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #SickleCell & #RareDisease Advocate. #HBCUGrad of @uncfsu & #McNairScholar. Founder of @BlackMenInSW | co-admin of @BlackMenInPH. MSW/PhD <U+0001F468><U+0001F3FE><U+200D><U+0001F393>@UH_SocialWork
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Freelance senior #copywriter #advertising | @BAFTACymru award-winning #filmmaker #documentary | @bfinetwork-supported #director #drama
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deux chats & Elle.\nNous ne miaulons pas aux cons, ca les instruit. \n#AntiCons #LGBT #AntiChasse #AntiCorrida #AntiFourrure
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wife, mum, volunteer. Eager to put my two cents in whether you want it or not.
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wilson's community institution since 1896, covering #WilsonNC news, business, life, sports. Proud @RestorationNM partner working to restore, preserve local news
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ol' punk rocker & adopter of lost toys. I give 'em a home, lots of love & play with 'em as often as I can. Teddy & Spot love having plenty of mates.
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Not financial advice. CEO and Founder of The Crypto Dojo. Sponsored trader for DueDex. To sign up please use my ref link https://t.co/FRaLLhlKRk
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Life is a Lemon & I want my money Back  \n\nIt's Time to Get Serious About Secession\nhttps://t.co/eyvgmTkddQ?amp=1\n\n<U+0001F6A9>https://t.co/EpGMraIhnn
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Single Professional Looking For Intellectual Stimulation!!!
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <U+0001F469><U+0001F3FE><U+200D><U+2695><U+FE0F> <U+264C><U+FE0F><U+0001F3B6><U+0001F1FA><U+0001F1F8><U+0001F6BA><U+0001F418>
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It’s the UNITED states of America.
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Official Twitter Account of RPF, Western Railway
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2006 TIME Magazine's PERSON OF THE YEAR!\r\nMarried, 2 children. \r\nGolden Ruler\r\nRetired RCMP member
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   #MarketingDirector #ContentWriter #ContentMarketing #DigitalMarketing Healthcare, Pharmaceutical, Medical Device, Managed Care, Consumer, Patient, Business
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An American company dedicated to providing edge data security & cyber protection for the US public sector.
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Critique and general opinions on all things #WWE, #NXT & #AEW.
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bits by day, notes by night.
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Boldly advancing peaceful, prosperous, and #FreeSocieties grounded in a commitment to human worth and dignity.
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am a proud <U+271D><U+FE0F><U+0001F1FA><U+0001F1F2> Conservative. #KAG #Trump2020  Support4<U+0001F1EE><U+0001F1F1>  \n#1A #2A #Constitutionalist \n<U+0001F6AB>Lists, trains, or ads!\n#WeAreARepublic #NotADemocracy.
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Living life as planned.
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Breaking news, features and local events with an eye on the world around us courtesy of staff at CBC Calgary.
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tech Analyst, Tech Blogger, Disability Rights Activist <U+267F>,  Cloud and AI evangelist, Owner of @thequill_in. Email: shakthi@thequill.in
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Anonymous, Opisis,OpTrump, OpNorthKorea\nHusband,father,grandpa,grt grandpa. Diehard leafs fan,The Beatles,  Animal lover! #standwithPalestine #resist-Notabot!
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Photographer/ Award Winning filmmaker Currently @washinformer #Author & More <U+0001F4F7><U+0001F3AC>   Executive Director  #MakeSmartCool ™  https://t.co/6qayY52l9j
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        too old ---\n\n"there will never be another you."\n\nTrust NOone.\n\n#digdeep;\n#iaNObody, #iamNOone ;
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Embassy of #Cuba<U+0001F1E8><U+0001F1FA> in #NZ<U+0001F1F3><U+0001F1FF> Est. 2007. Promoting closer relations, cooperation and business opportunities w/ #NZ & the Pacific.
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              310 to the world <U+0001F9C3>insta: @niceandblue
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAGA<U+0001F1FA><U+0001F1F8><U+0001F1FA><U+0001F1F8> #Americafirst #<U+2764><U+FE0F><U+0001F1FA><U+0001F1F8> True Patriot #voterfraud #thesheepwillfollow #draintheswamp WWG1WGA #trusttheplan https://t.co/DLL6ZJTAXI Qanon
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2014 Pulitzer Prize winner and #Colorado's second-largest newspaper, delivering the news from #COSprings. News tips:  https://t.co/oysvESA2t5
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Polyglot Polymath & Aspiring Pantomath, he/him who loves making the world better via #leadership and #Integrity. Blunt out of #Love and #infosec. Views are own.
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Here to look woke and stuff. Also, I went to a decent school for twitter bio. RTs not endorsements. Views are personal.
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Questioning everything, with an opinion on it all. Featuring Vancouver real estate, and other inanities.
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Age of AGs covers the politics and policies of today's state Attorney General, by a former political consultant and AG senior advisor.
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Publicist | Communication Strategist | Branding | PR | Social Media | Blogging | #LADesign | ☎<U+FE0F>
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pediatric nurse, feminist, agnostic, LGBTQ ally, & environmental advocate. She/her. #Resist\n~The highest form of knowledge is empathy. - Bill Bullard
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                journalist: hungry for info. Interests:Human/development/the abroad/people/politics/art./life!
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Warrior <U+0001F5A4>\nSher<U+0001F339>\nJaatni<U+0001F33A>
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Coronavirus Realtime Global Statistics\n\nDeveloped by @devanshshah09
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mr. Crump is a principal with the firm @BenCrumpLaw, For legal assistance ☎<U+FE0F> 800-859-9999, Speaking bookings info@curatedbymedia.com
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tracking cyber threats & disinformation @citizenlab. Once-upon-a-time neuropharmacology. Infrequent tweeter.
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Inside No.9 Fan account (Alan) Currently on BBCiPlayer, Hulu, Netflix ,Britbox, DVD/bluray. CLOSED UNTIL SERIES 6 but will pop back some days with news & RTs.
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 235                                                                                                                                                                                                                                                                                                                                                                                                        <U+0001F3F3><U+FE0F><U+200D><U+0001F308>ATHEIST<U+0001F60E><U+262E><U+0001F3D4><U+0001F69E>COOLJAPAN<U+2603><U+FE0F>♨<U+0001F4E1><U+0001F310>NewsGeek<U+0001F4F0><U+0001F4F1>TechGeek<U+0001F5A8><U+0001F3C1>Motorsport<U+0001F4A8> Music<U+0001F4BF><U+0001F39B>80s<U+0001F483><U+264B>Comedy<U+0001F3AD><U+0001F374><U+0001F9C0>Wine<U+0001F377><U+0001F6EB>Aviation<U+0001F4BA><U+0001F5FA>Travel<U+0001F4F7>Photography ProChoice<U+2696>ProEuthanasia<U+2695>GEN X @GlobalNewsTH
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Proud dad of three, @SussexCCC fan. CEO of @AwardingBodies and Chair <U+2014> Beyond: Care Leavers’ Trust
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Local. National. International.\nNews site/blog active since 2012.\nManaged by @VShah1984
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Senior Writer @ClevelandScene; Alum @MedillSchool & @NEOMFA; news, movies, bball, intrigue. Occasionally, Bosnia. sallard@clevescene.com / (216) 802-7282.
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I'm sorry, I haven't a clue.
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If it wasn't for blinds it would be curtains for all of us! Happiness is health and a short memory!
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Critical Thinking & Media Studies essential to forensically deconstruct Tory propaganda & MSM bias.
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <U+0001F495>@dog_rates @darth. I <U+2764><U+FE0F> my lil fam. “‘I make you McDonald’s’ & other life lessons from my experience growing up with immigrant parents.” Good book title idea?
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Agriculture Science. Future Ag Specialist. Los Bandoleros. “Create roads to lead, never create a road with a dead end” follow @ChaosxW
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         “은혁이 1등”  - 동해 <U+0001F9DC><U+200D>♂<U+FE0F>
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Palestinian-led youths group based in the besieged Gaza Strip. Together to raise the voice of Palestinian rights to the world. #Act4Palestine #FreePalestine
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pharm., M.A. Marketing, Athlete, Sarcastic... I also speak 4 languages. Life is what you make it. #FreeSyria
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bayan muna bago pulitika
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             (He/Him) Owner of The Fourth Place @4thplacegames. Geek evangelist, proud nerd, and entrepreneur.
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     American Near East Refugee Aid helps #refugees and vulnerable communities in the Middle East. Since 1968.
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Samson..beautiful but deadly to burglars Hoovers and anything remotely edible, fair play is my game.
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Geek. Nerd. Ultimate player. Snowboarder. Writer. Probably some other things.
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Random filenames from 4chan's /b/ board. Probably offensive.
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The London Free Press | News and analysis -- London, Southwestern Ontario and the world.
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Award-winning Communications Professional, Writer, & Documentary Filmmaker. <U+0001F3F3><U+FE0F><U+200D><U+0001F308> #Smithie
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Promoting animal genetics, breeding & health worldwide
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ethical progressive with a world view and respect for facts. Enjoy photography, jazz, and film. Favorite films Casablanca and Kagemusha.
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #PRProf at @PSUBellisario for #MaddensMethods. Activism, women in politics, social media, & crisis comm are my jam. Tweets for @AEJMC_PRD & @NerdNiteSC. She/her
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD (#Food #Nutrition)\nFollow for food fashion, stay for #science & #scicomm\nIdealist|Twin|Punk|Cats|@jetstreamnewy|@MPANaus\nInsta@emmie_101\nFB@DrEmmaBeckett
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Engagement is key. Vigilance is vital. We VOTED and We booted Harper \\0/ Then We VOTED & booted Prem. Christy Clark #bcpoli \\0/.\nHold YOUR government to account
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           RN <U+0001F1F0><U+0001F1EA><U+0001F1EB><U+0001F1F7>
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <U+0001F393> The National Online Peer Support Network for Student Children's Nurses and NQN's <U+0001F1EC><U+0001F1E7> |#CYPStNN | #PaedsRocks | Retweets Not Endorsements
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                International Politics & Africa, Eyes on Cameroon. Now @ElliottSchoolGW, Soon @CASCambridge . Words in @africaarguments @Diplomat_APAC @mailandguardian & more
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        God-Willing, We Are On The Way BACK!\n\n#FamiliesFirst<U+0001F917>\n#DefendOurDemocracy<U+0001F1FA><U+0001F1F8>\n#TeamPelosi<U+0001F460>\n\n2020 Goals - Making My Writing Dreams Come True... Really!
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Navy Subs STS2 (SS) 64-68. Vet's vs tRump. No H8. <U+0001F6AB>Nazis RESIST! #FBR #CounterSocial #AmericanPatriot Not a *tRump patriot Trump is dumber than a stick.
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your plastic friend who's fun to be with. Almost, but not quite entirely unlike a computer literate amoeba | You want funny & entertaining? Go read Wil Wheaton!
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Official Twitter account of Brunswick County, NC Government | Usage of this site denotes review/agreement of usage & commenting policy: https://t.co/CNKbpLJUCd | #Brunsco
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fan of the 2-time Stanley Cup Champions. Go #LAKings, #Dodgers #Raiders #Lakers.
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <U+200F><U+200F><U+200F><U+200F>A Commoner
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Chief Scientist at https://t.co/r34vZErmbm, CTO at https://t.co/7OBAegQQY3, Angel/Crypto Investor, Author, Speaker, AI fanatic
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Founder of Auedbaki, Creator of #HackersChoice and #FoneMan app available on Google Play Store.
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Jay Hind..<U+0001F1EE><U+0001F1F3><U+0001F1EE><U+0001F1F3>
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chartreuse is the new Black. What's past is prologue.Proud Dad, Teacher,Cryptozoologist,and Giallo Junkie.
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I don't like lima beans or brussel sprouts..Respect & Love One another. Battling  #PTSD.... #TBI #ABI
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Student. <U+0001F1EE><U+0001F1F3> <U+0001F549><U+FE0F> Nationalist & Patriot, Nothing on earth can change it... <U+0001F6A9><U+0001F642>
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Curious, opinionated and watching. Bona fide auntie. London by Derry IG: carsonmaryc | Work: Have previous @guardian @BBC @Channel4 @Discovery @L_Sentinel
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Data, Technology interest me.. Centrist, Liberal, equality and Justice
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mahyco is focused towards bringing innovation in agriculture through R&D, production, processing and marketing of seeds for India’s farming fraternity.
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  common sense stuff, questioning the status quo & the powerful - opinions expressed are my own; RT doesn’t mean endorsement.
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Husband. Father. Grandfather. Public Servant. Attorney. Representing TX-23 in State Senate. Democratic Candidate for United States Senator for ALL Texans.
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Podcaster, storyteller, all opinions expressed are my own unless Twitter has ordered me to change them to get unsuspended
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Norm Allen is a writer and editor. He is primarily interested in humanism and freethought. He has traveled the world as a humanist spokesperson.
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UFC Featherweight / UFC Gym Costa Mesa / Virus Apparel #KillerCub (For appearances & seminars contact pro.fighter@yahoo.com )
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Husband, Father, Miner, Learning Facilitator. The views expressed here are my own and do not necessarily reflect the views of my employer.
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   India's best online News magazine which is providing News minute to minute.
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           She Owns It Founder. Purveyor of Possibility, Entrepreneur Advocate + Coffee Addict. Behind every successful woman is her story. What's your story?
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pretty brown eyes and a mind full of thoughts. \n24.Invincible. Untouched. Unheard.                         <U+0631><U+0628><U+0627><U+0628> <U+0633><U+06D2> <U+062A><U+0627> <U+062D><U+06CC><U+0627><U+062A> <U+0639><U+0634><U+0642> <U+0645><U+06CC><U+06BA> <U+0645><U+0628><U+062A><U+0644><U+0627> <U+06C1><U+0648><U+06BA>
## 291  <U+0645><U+0633><U+062A><U+0634><U+0627><U+0631> <U+0642><U+0627><U+0646><U+0648><U+0646><U+064A> <U+0625><U+0645><U+0627><U+0631><U+0627><U+062A><U+064A> <U+0648><U+0645><U+062D><U+0627><U+0645><U+064A> <U+0645><U+0642><U+064A><U+062F> <U+0644><U+062F><U+0649> <U+0645><U+062D><U+0627><U+0643><U+0645> <U+0627><U+0646><U+062C><U+0644><U+062A><U+0631><U+0627> <U+0645><U+0647><U+062A><U+0645> <U+0628><U+0642><U+0636><U+064A><U+0629> <U+062F><U+0639><U+0645> <U+0627><U+0644><U+0634><U+0631><U+0643><U+0627><U+062A> <U+0627><U+0644><U+0646><U+0627><U+0634><U+0626><U+0629> <U+0648> <U+0631><U+0648><U+0627><U+062F> <U+0627><U+0644><U+0623><U+0639><U+0645><U+0627><U+0644> <U+0628><U+0645><U+0627> <U+064A><U+0646><U+0641><U+0639> <U+0648><U+0637><U+0646><U+0646><U+0627> <U+0627><U+0644><U+063A><U+0627><U+0644><U+064A> <U+0001F1E6><U+0001F1EA> #startup_lawyer
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Talk sense to a fool and he calls you foolish. -Euripides
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Sixers, Hoyas, Cowboys, Mets, NC A&T\n\nIt doesn't make sense but I haven't changed teams in 40+ yrs.  A real OG.  USAF Veteran. HBCU grad.
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Calming my inner chihuahua
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Peterborough Examiner newspaper
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Non Executive Director, Strategic Planning Facilitator
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Engaged Hamiltonian - runner of long distances - vinyl junkie - proud dad - Membership & Marketing Manager at @TheHamiltonClub - views expressed are my own.
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MABRN is an independent group of local business people who meet weekly to network effectively and promote each other's businesses. https://t.co/zuRkvAOddm
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Striving to be the best version of self. Love. Against identity politics. Opinions are my own.
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SkoDen | #Wexit is My Reconciliation |Treaty 8 | Dene | Red Road | IRSS | left wing or right wing, it is the same bird | Indigenize | #FNexit | #Rednexit |
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Team of #analysts, #journalists, #reporters, #forecasters & #statisticians bringing u the inside news of events that shape the present & future of our #economy
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I've been writing 46 years and am the author of three books Pegasus A Dragon's Tale (11), Button Nose the Sad Little Bear (6) and Cinderella A Love Story (1)!!!
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Father.Loves Nature!Poultry Farmer
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The new phone book is here...I'm somebody now!  \nRescuer of beagles.
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       13 brain surgeries.Founder of charity ‘A world with friends’ reg no. 1175539. NHS hero. Read my book ‘looking at the stars’ available on Amazon now
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Fun fact: my nose has never met a softball it liked.
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Reporter at @BBC Korea, covering the Koreas. Formerly @JoongAngDaily @archaeologymag. Jakarta-bred. Views are my own.
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Writer, editor & media critic focusing on parenting and gender. Comics nerd, MTB, mom of three. Bylines: NYT, Esquire, Time, Bright Magazine, etc. https://t.co/4qa6RZEzPW
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CEO of In-Sightful living: Making Disability Accessible. Award winning author of Prave: the Adventures of the Blind and the Brittle. Baseball and music lover
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Follow https://t.co/RBTHZHv1ga for Breaking News from around the world, live cricket updates, bollywood gossips, travel tips and latest trends.
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Our website gets about 2.3 million unique views a month. Breaking news from Alberta and the world. Independent media. Experienced, award-winning journalists.
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Established in 1972, we are the free hospital radio service for Bassetlaw Hospital, Mexborough Montagu Hospital and Doncaster Royal Infirmary.
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <U+0001F4CD>Based in Manchester<U+0001F1EC><U+0001F1E7>IG:Jennifer_ohemaa_capable <U+0001F47B>wonderz_adepa <U+0001F3AC>YOUTUBER<U+0001F60D>NEW VIDEO<U+0001F447><U+0001F3FD><U+0001F64F><U+0001F3FD>
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         we live in a socially distant society
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Stay at home Dad to a eleven year old.  Rebel scum.  Fascists and Magas need not apply.
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ●A dad, Husband, son of a King ●Christ lives in me ● I am what God wishes for me~The Lord Reigns #CFC Chelsea Fan  #KTBFFH ¤Psalm16:5
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           economist @NBB <U+0001F1E7><U+0001F1EA> Interest in euro area <U+0001F1EB><U+0001F1F7><U+0001F1EE><U+0001F1F9><U+0001F1EE><U+0001F1EA><U+0001F1EC><U+0001F1E7> Brexit; own views; Rt=no endorsement
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A premium market research & consulting company with presence in three continents and 8 countries
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             juicyupdate is an entertainment, fashion, sports<U+0001F94E> , music and politics page that gives you, world up to minutes info,Gists and updates
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              R.I.P Nan<U+0001F49B> - R.I.P Grandad<U+0001F499> Love U Both 4Eva, Everyday is 4 U♥<U+FE0F>x. insta: SKINTUUTEEET <U+0001F601><U+0001F44A><U+0001F3FD><U+0001F44F><U+0001F3FD>
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Beauty, Fashion, Lifestyle Blogger<U+270D><U+0001F3FB> Health, Happiness, Mindfulness <U+0001F493> Positivity & Empowering People <U+26A1><U+FE0F>Reiki Healer
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Amature Photographer | Tech Enthusiast\n#iRep767\nStop the Assumptions...
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We can help with general queries about HMRC products & services. Monday to Friday, 8am - 10pm; Saturday, 8am - 10pm, Sunday 9am - 10pm. No personal info please.
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The World in News is your new source to the World News from all around the Word
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Founder & CEO at MBARC Labs & MindPeace Safety @mindpeacetoday | Turning ideas into reality since 2012 | #iot #Bluetooth #productdesign #consulting
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       T.E.A.R Youth Leader / Dad Joke Enthusiast / Coffee lover / SSW student
## 333                                                                                       <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800>   <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800> <U+2800> <U+2800><U+2800> <U+2800><U+2800> <U+2800>  <U+203D> <U+2216> ;<U+0001D402><U+0001D428><U+0001D426><U+0001D41E> <U+0001D428><U+0001D427>! <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+2800><U+208A>˚.<U+0F04>  <U+0001D40A><U+0001D422><U+0001D425><U+0001D425> <U+0001D426><U+0001D41E> <U+0001D422><U+0001D41F> <U+0001D432><U+0001D428><U+0001D42E> <U+0001D41C><U+0001D41A><U+0001D427>! <U+2800><U+2800><U+2800><U+2800><U+2800>   <U+2800><U+2800><U+2800><U+2800><U+2800><U+2800>
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Disabled Lawyer. Disability Rights and Justice
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Geek. Gamer. Mario Maker [ID: 6FC-2LP-HQF].\nArt/Design Enthusiast. Chronic Pain Sufferer.\n\nIron Lord.
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Asst Gen Mgr, Vizag Steel (Retd) Secy Duvvada Rly Users Assn.
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Father, author, husband, poet, and writer of the blog "Train Or Be Trained: A Fatherhood Perspective" because therapy costs money. #TOBT
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         All about #AfricanAffairs. Promoting the good things about Africa and bringing to light the bad things that need to be fixed. #ForwardEver #Africa!!!
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I'm Chinese. I Support Trump. I was born in a socialist country which my family and I fled from. I know what "real" socialism is.
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Jewelry designer and dabbler of many arts and crafts. Follow my web & graphic design @Kat_and_Mouse
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Human being.   Lover of humanity.    Peacemaker.
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Professor Emeritus @YorkUniversity; CEO @Self_Reg; Author #Reframed #SelfRegHandbook; Trying desperately to keep up with #SelfReggers. Getting harder every day.
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Program Coordinator for International Microbiology Meet 2020, Vision 2020 Congress, ME Conferences, 47 Churchfield Road, London, W3 6AY, UK, +447 723 584 505
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I've been into Bitcoin since 2013 and learning all I can since then. -horses, blue herons & nature things.
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Survivor of 1989 Tiananmen massacre, who lives and works in exile in London. Author of Citizen Publications in China before the Internet.
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A brother ,A friend,A father and A future husband...\nI'm a talented musician in vocal artistry and instruments..
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Political scientist. Youth Rights activist.
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Greensfelder, Hemker & Gale, P.C. Approximately 150 attorneys addressing the legal needs of business organizations, in all sizes and industries.
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               <U+0001F1ED><U+0001F1F9> | IG: trvlyblessed_ | FAU Alumna | BSN-RN <U+0001F489>
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Local community newspaper, eyes and ears of the community, local website, putting the community first
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneurial CTO and Innovative Technology Leader
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The latest North Wales news, sport, weather and events from North Wales Live. We're also on Facebook https://t.co/xUwgHq5PW3
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Jane’s delivers connected, verifiable open source intelligence on defence equipment, military capabilities, security, defence budgets, markets and forecasts.
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trinidad & Tobago's #1 TV station, according to the latest MFO national media survey. Phone: 868-623-5337; https://t.co/bjcalEBVil; E-mail: news@tv6tnt.com
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Editorial Cartoonist, Animator, Artist - Los Angeles
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Filtering News Noise - Africa Wins Again - Africa Rising for the Rich - Sinking for the Poor -  RTs are NOT endorsements
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @UN_Nigeria Resident Coordinator & @OCHANigeria and Humanitarian Coordinator. In #Nigeria since Dec. 2016.
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lecturer of African & Security Studies at Georgetown University. Host of the 'On Africa' podcast. Advisory Council @WCAPSNET. My Mother's son.
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Television Journalist, MSU Spartan, Proud Aunt<U+0001F497>, Fox 31 #ProblemSolver
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          i’m empty and tired
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #RuleYourDay with Metro by T-Mobile, the #1 brand in prepaid.
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Unhein Jana Unhein Mana Na Rakha Gair Se Kaam,
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Recovering public official, supporter of Labor, former private investigator, full time troublemaker. Feminist, Democrat, loves dogs AND cats.
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Jammu Links News-Linking Jammu Kashmir to Breaking News. https://t.co/IuPP4HrE0C,the leading news and information portal providing visitors real time updates.
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Primary teacher, bookworm, #wellbeing warrior for students and teachers, #international educator and wife to a Northerner and mama to Baby E.
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Senior correspondent, longtime @FOX10News anchor, @BostonCollege & @OhioState grad. AL B’casters Hall of Fame. NATAS Silver Circle inductee.
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Life long #conservative and opponent of socialism.Will soon leave the UK to retire in Florida USA but not for  another year.For now lets beat #coronavirus !
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advocating on access 2 affordable medicines for @MSF_access, @Azgbelgie. Formerly supporting and managing health care projects in crisis contexts. Views =my own
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Religious and Humble.
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A multinational professional services company providing services in Healthcare, Finance, Education and Technology.
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         a little child of God
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Book Writer. Song Singer. Snow Hater. Movie Watcher. Big Hair Wearer. Doctor Who Lover. Dream Crusher. (Kidding on that last one.) And just a wee bit Sneaky.
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #Verify Reporter for all @TEGNA stations. \n\nFull-time fact-checker. Part Time nerd.\n\nProud @elonuniversity grad. Based at WCNC in CLT. RT's ≠ endorsements.
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Design, Photography, Creative Consulting - nose, neck, eyeball & clavicle connoisseur.\n#TwitterPhilanthropy #ghostwriter\nANIMALS ARE AWESOME!\nNerds Rule!
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Head of Data Science and Chief Data Scientist at https://t.co/QYxgjWq32N. Founder of https://t.co/XRZdqnTy6m, quant-at-large, sports nut
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Democrat - Justice, Peace, Equality advocate.
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Music lover<U+0001F3B6><U+0001F3B5><U+270C><U+FE0F> Life moves pretty fast, if you don't stop and look round once in a while you could miss it.
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You know the old trope If you're not a socialist at 20, no heart, and a capitalist at 40, no brain? I seem to have done that backwards. RT usually endorsement
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Finally Joined Twitter- 9 April 19! MD @manorcommunity, PhD candidate. Passions for Care, Decolonising Epistemologies, Co-production, Natalia Rose, Care, CHANGE
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We offer fun designs of <U+0001F431> and <U+0001F436> on tees, hoodies, tote bags and more! <U+0001F455><U+0001F45A><U+0001F6CD>
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Reporting on a little bit of everything for @slotribune.\n\nSkills include gif conversations and social distancing\n\nhttps://t.co/2oTcsqrq91…
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ezekiel 25:17
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10PM/11PM Reporter at @WLWT. Formerly @WSAZNews, @WAOW. Lexington native, @nkuedu alum, runner/biker/gymrat. #NoH8. <U+0001F3F3><U+FE0F><U+200D><U+0001F308> RTs ≠ endorsements. Opinions = mine.
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Croeso i'r tim datblygu Rhwydweithiau Lles Integredig Gwent - Welcome to the Integrated Wellbeing Networks Gwent Twitter Page.
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pitkin County Public Health
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <U+0001F3C1><U+26BD><U+FE0F>_SPORTS\n \n<U+0001F54C>________ISLAM\n\n<U+2653><U+FE0F>\n\n\n<U+0001F3DF><U+FE0F>_______OLD TRAFFORD
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               award-winning journalist covering Prince William County for @InsideNoVa  | Thoughts about PWC or PWCS? email  me at esides@insidenova.com | @UTJSchool graduate
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Explore globalization and the connections of our world - with analysis from a public-service magazine published by Yale's MacMillan Center
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       <U+0001F4BB>, <U+0001F366>, <U+0001F369>, <U+0001F4DA>, <U+0001F680>, <U+0001F30C>. Hufflepuff. He/him.
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        News and information from the fast-changing continent. Also follow @allafricafrench & @AllAfricaSport.
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Follow us for the latest breaking news, weather, sports, and entertainment. FOX61 News - Expect More.
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Digital marketer | Social Democrat| A Student of Prof. PLO Lumumba |A Social Activist | Retweets are not endorsement
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Je suis quelqu'un d'ordinaire mais je ne suis pas rien. Je reve d'un monde extraordinaire...
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Public policy in Silicon Valley. Tweets on tech, housing, labor, BBQ & cats but not necessarily in that order.  Former @oxfam @rfkhumanrights
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Clear. Accurate. To the Point. Covering local news for Macon, Warner Robins & ALL of Middle Georgia. Follow @41NBCWeather for your 41NBC AccuWeather Forecast.
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Daily updates and breaking news stories from Princeton, the Similkameen and BC wide. Part of @BlackPressMedia
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Charlie Brennan, reporter/editor, Boulder Daily Camera @dailycamera Covering science, environment, JonBenet Ramsey case and so much more
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Lover of Rice and $$ <U+0001F33B>enroute to FI/RE ville
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I can ID individual wolves 3 miles away, but I can't tell people apart. No lists, please. Don't make me block you. She/her
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    29 years in the TBTF financial world and counting. Not allowed opinions in real life, but have been published. Mostly here to vent.. not selling anything.
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Established in 1928 as a retail nursery, dedicated to providing affordable quality to all gardeners. Tel:02083631016
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          loves good  litrature and https://t.co/mRUpWdaZuG in love with the good life.fine wines ,good whiskeys,great hotels and brilliant holidays,. Cocktails and hangovers
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Real-time chat therapy with experienced therapists.  #mentalhealth #depression #anxiety
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Soccer Science News Music Travel
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cinnaire is a full service community development financial partner.
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TexasEx. Traveler. Wife. Mom of 3. Spartan. Runner. Model for https://t.co/qkbfVN2N4d available in Spain & TheDubaiMall         Mr. Sato    @Roms_10
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         a chaotic good bean trying to handle this lawful evil world // He/Him
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wake up early with us on @FOX5Atlanta!  We bring you the latest #news, @SKYFOXTraffic and @FOX5StormTeam updates you need for your day... and we're fun!
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hanna Boys Center is a leader in treating the effects of trauma in young people - with programs designed to change lives.
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Act Like a Lady, Think Like a Man
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ι ℓ<U+0E4F>v<U+0AEF> мy hα<U+0AB0>ℓ<U+0AEF>y, b<U+0AEF>αch<U+0AEF><U+0E23> αη∂ <U+0E4F><U+0192> c<U+0E4F>υ<U+0AB0><U+0E23><U+0AEF>, мυ<U+0E23>ιc! y<U+0E4F>υ cαη η<U+0AEF>v<U+0AEF><U+0AB0> b<U+0AEF> <U+0E4F>ℓ∂ αη∂ ωι<U+0E23><U+0AEF> ι<U+0192> y<U+0E4F>υ ω<U+0AEF><U+0AB0><U+0AEF> η<U+0AEF>v<U+0AEF><U+0AB0> y<U+0E4F>υηg αη∂ c<U+0AB0>αzy! Media tweets not necessarily my opinion.
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events may be closer than they appear.\n<U+0001F37F><U+0001F37F><U+0001F37F>\nhttps://t.co/DJECw2DBO4\nNO TRAINS
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Global news the world needs today. Subscribe to our daily newsletter <U+0001F449>https://t.co/Y2IWiqb6dT
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A lover and a best friend<U+0001F4AB> . 50 shades of human IG:@brandi__yo CEO @shoe_cave ..................... <U+0001F3EE>Advertise here!!!<U+0001F3EE>DM open only for business.
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           123
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Vancouver's news, arts, and entertainment source. Find more of our Twitter feeds at https://t.co/xRDpji1h56
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Economist | International Trade | Exim Bank| Consulate of Israel in India | WTO | United Nations | Edinburgh University | Views r mine | RT≠endorsement
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Where Cranbrook's news begins. Follow for breaking stories, special reports, links, features and for access to local reporters. Part of @BlackPressMedia
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Never give up! Stand up for your beliefs. Vote! Save our democracy. I don’t look at DMs
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of https://t.co/bbN7YLjhRX blog 'fame' (renamed Propaganda Factory). Don't blog on Fox News much but do tweet daily. You follow me, I'll follow you (no mking).
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Southern California's ONLY 24-hour LOCAL news & traffic station. Depend on us. If you see news DM or tag us #KNXNews LISTEN LIVE: https://t.co/Th8lyW8ep0
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Award-winning CEO/COO level exec/Board member/BBC business commentator/Diversity Leader/TEDx speaker/Proud mother/MBE
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A Piikani Nation Member, Southern Alberta, Canada.\nProud Member of the Blackfoot Confederacy\nTreaty #7, September 22nd, 1877.\nBlackfoot Crossing, Alberta, Can.
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   a saudi lecturer at ImamU, interested in cultural and islamic translation,and a PhD student at ImamU- Author of Islamic Lexicography. manal_amoud@yahoo.com
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Global Coronavirus news from journals, media, experts and researchers. Updated often. Human curated by Dave Roberts
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Where Sicamous news begins. Follow for breaking stories, special reports, links, features and for access to local reporters. Part of @BlackPressMedia
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sluggish lazy stupid and unconcerned <U+2022> sexuality educator, artist, and bookseller <U+2022> queer disabled nonbinary latina <U+2022> they/them
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We are Delaware Health Information Network, the first and most mature statewide health information exchange (#HIE) in the nation.
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 She/Her, PhD, ABD; intersectional & transnational feminist sociologist; @MaxwellSU MPA; research areas: gender, trade, labor. #NoFascistUSA #Organize #Resist
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sometimes i feel like giving up No medicine is strong enough Someone help me I'm crawling in my skin Sometimes i feel like giving up-Shawn Mendes<U+0001F970><U+0001F48B>
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Author: Age of the Imperfect Leader : https://t.co/1KDYYiG09Q\n\nProfessional Speaker\n\nBlog : https://t.co/hv8rGt7epM\nRetweets are not Endorsement.
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    doctor @ucsf | writer | creator + host of @thenocturnists medical #storytelling live show and #podcast. tweets are my own.
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Screenwriter and closet ukulele enthusiast. Interested in diversity issues, and equality for all.\n\nshe/her/hers
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Equity is better than equality.\nSocial Engineer- Project Design
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Med-tech CEO. Infectious disease doc. MBA. Classical violinist. Der Hauptfeind steht im eigenen land! #StandUpForScience\nAdvocate for the helpless/vulnerable.
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PIT <U+27A1><U+FE0F> CLB #yinzer
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lung Cancer Survivor. Research Evangelist. Patient Advocate. @BiotechGames founder. Director @FRAXAresearch | @theonehundred honoree | @penn grad #Gratitude
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creating my own epic #story, while learning the art of #storytelling. Sharing my thoughts on social media as #rcbquotes. https://t.co/mHkxCij1Fo
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    India's leading telecom company airtel offers mobile, fixed line, broadband, DTH & enterprise services solutions.\nhttps://t.co/YyXa084mwl
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Reporter/Anchor, @globalnewsto. Travel enthusiast. <U+0001F6EB> Culinary adventure seeker. <U+0001F374> RTs not endorsements. shallima.maharaj@globalnews.ca
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D., Member of American Society of Civil Engineers. I Like Current Affairs
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               songwriter/ ceo
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On life's pilgrimage trusting the one who sent me here.
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Veteran Entrepreneur/Business Owner. Crypto Investor since 13'. Data Science<U+0001F913> Futurist. Love to<U+0001F9F3> Love the <U+0001F30A> Ethereum/EOS #defi #smartcontracts #dapps fan.
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <U+0001F1EB><U+0001F1F7><U+0001F1EF><U+0001F1F5> Kotlin, Android, Open Source, BTC @Mercari_jp ex @Linejp_official @Sounds_App
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My name is jennifer White and I'm 29 years old and I have four cats and one dog all girls.
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        L;ove! L<U+0001F61C>ve https://t.co/kfgPYLM1KA https://t.co/cnROdBl8xH
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Portside aims to provide varied material of interest to people on the left that will help them to interpret the world, and to change it.
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 By putting patients first, Salem Medical Center is changing the way healthcare is delivered to the community.
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ANTi <U+2022><U+2022><U+2022> beaga <U+2022> brazil <U+2022> 'partially connected'
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Asst Prof @ VA Tech, researching digital media & politics. Formerly @PrincetonCITP & @UTAustin. Proud NJ native. Fan of #UCONN, meatballs, field experiments.
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The #FinancialExpress - A complete up-to-date source for business news, #finance news, #stockmarket news, #economy & #financial news online. \n<U+0939><U+093F><U+0902><U+0926><U+0940> <U+092E><U+0947><U+0902> @fehindi
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    45 for prison; <U+2764><U+FE0F>dogs; wildlife photographer; truth seeker; geo-engineer; kayaker; violinist; avid cyclist, MARRIED. Science and empathy empower our future.
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Past Navy dive bomber, part of God's salt of the earth & light of the world in the land of the free/home of the brave, hero to #SMB clients & 6 grandboys. #MAGA
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Paraglider, rock climber, and investment banker. Big fans of Williams Alligator and Gartley's Gap Theory. #YNWA
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Frugal Common-sense-trist with a twist. Music and laughter soothe my soul.
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #Texas all day everyday! #runner everything #texans #astros #rockets married to @calebethangabby #Instagram tdangel73
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You don't need to go to university to be successful.
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From the bottom of the oceans to the depth of space and cyberspace, we help our customers think smarter and act faster.
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 5, 6, 10 pm Evening News Anchor @KNOE8 Economic Reporter (CBS) Sportscaster, 5 tool player! Go WVU! @oursoutheastern Graduate
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hiring & Love Referrals! DM me. Head of Programmatic & Social @ Bayer. Head of Programmatic @Twitter, Market Dev @MoPub, Opinions are my own.
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #Art supporting @KasemCares @EricaSmegs #gunsense Intelligent discourse welcome #LoveAllPeople
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I tweet things SEO, WebDev, Tech, Gaming and Entertainment.
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We believe in Women changing the world together! Cocamama is a productised life coaching and crowd mentoring system designed to help women achieve their goals.
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I'm Team Red married to Team Blue. We have 4 kids, who I want to be proud of their country's leader. So #ReturnArdern.
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #TechnoNomix Reloading...\n\nEnterprise Architect with special focus on Data | \nBelief: Data exists before everything else. So shall it after all!
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CEO Maxloaded Media|Music Promoter|News Updates|Music Updates|Sports Updates|Gist|
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pennsylvania affiliate of MS-based American Family Association.
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Nathan’s mum, journalist, broadcaster and stresshead! I adore fitness, travel, surprises and wine... WASH YOUR HANDS!!! Retweets not an endorsement. #LUFC #MOT
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Artist ! ° 16 years old ° youtube :Youtubecherrie hello everyone~ i hope you like my page and enjoy~☆ my hobby and talent is drawing ;) you can follow for more
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Solidus 316 here! Check me out! Twitch: Solidus316 Youtube: Solidus 316 Xbox: Solidus 316
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           what’s your point?
## 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Watching the climate change, fire and rain take turns.  Eternally optimistic, sometimes snarky, esp with deniers. Climate blog: https://t.co/l8Wh1chAxU
## 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ♥ good food, music, lifelong learning, Pittsburgh & my dear husband #MomsDemandAction #JoeBiden Will #VoteBlueNoMatterWho https://t.co/rBUJ4RhAa9 #Resist
## 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   #Australian #expert researchers and #physiotherapists sharing #physicalactivity #exercise and #sedentarybehaviour research. An advisory group to @apaphysio
## 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Former Director of provincial affairs, at Administrative Office of the President|Patriot|peace & political activist.
## 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #Careers & #Employability Educator @usqedu <U+2022> PhD research @accellres #ageing & #work across #lifespan #adaptability <U+2022> Qld Pres @cdaa_inc <U+2022> <U+0001F4DA><U+0001F333><U+0001F97E><U+0001F3A8><U+0001F4F7> <U+2615><U+FE0F>
## 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       7NEWS is Adelaide's leading news service, put together by a team of award-winning journalists and camera crews. https://t.co/1yBaljYKiI
## 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Makeup:Fashion:News:Humour=Heaven | #DarknessInc  and #GOATTEAM member with honour.
## 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Too big a head in too succinct a tweet for too simple a reader such as himself.
## 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Never give up<U+2764><U+FE0F>
## 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          “My aim is to agitate and disturb people. I'm not selling bread; I'm selling yeast”. ― Miguel de Unamuno #Palestine #BDSOurWeapon #GroupPalestine
## 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bass player; bourbon lover; pizza maker. A vicious, horrible person. Si latine aliquid dicere, et cogitabo pro populo sapis.
## 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Father, husband, teacher, outdoorsman, & municipal leader. Candidate for State Rep. in PA’s 171st Legislative District. Get involved at https://t.co/AS0Pp9z5SN
## 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Celebrate Dalit Heroism & Dalit icons. \n\nHumanist, Progressive, Positive, Secular, Ambedkarite, Agnostic  (RT≠ Agree)
## 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    News8 Reporter covering eastern CT - on most days.  Instagram: tina_detelj
## 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Water boatman, computer wizard, qualified counsellor, stick twizzler, father, dancer, warrior, geek. Helper of men and women.
## 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Senior Assignment Editor for @Fox5DC . @Gettysburg College & @QuinnipiacU alum. Formerly at @News12BX / @News12BK in NYC and at @Fox29Philly & @Fox43 in PA.
## 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Special interest in Public Health, Environmental Health and Food Safety matters- I am a science and tech junkie
## 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                One half of @wattledaubmusic. Not a bot. Joined in 2011. Don’t know why Twitter banned my @tmocarski account. Ask me why I’m the luckiest guy on the planet.
## 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Former Trade Adviser, Commonwealth Secretariat. PhD Economics. Trade and development specialist. #GVCs #SDGs #climatechange #decadeofaction\nRTs ≠ endorsements.
## 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hitpal singh
## 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am Kowloon, the Dark Side of Hong Kong. The place where you realise that Blade Runner is basically real, right here, right now. Join me...
## 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have a great understanding of strategy within any business. Currently a CEO, speaker in the financial markets, I speak about business. Join to learn more
## 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There is no other move: We are the MOVE! Uganda is Home |<U+0001F399>Open Mind | Stroller of LifE<U+0001F37B>
## 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Documenting the emerging (#COVID19) coronavirus by the numbers from South Korea, Italy, WHO, US CDC, et al. RT ≠ endorsement.
## 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Easily distracted, a bit #nerdy, enjoys fast cars and rugby, or is that #rugbyplayers, can never quite tell.  No DM’s please.
## 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2020: Start of a new decade <U+0001F1F2><U+0001F1FE>\n\nFull time Revenue Management Analyst, Part Time Insurance Agents. Hit me up!
## 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Director Genomics and Bioinformatics, Texas A&M AgriLife. Doing awesome research w/ awesome people. Tweets are mine. “Do. Or do not. There is no try.” -Yoda
## 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OfficialOmoOba <U+0001F451><U+0001F934><U+0001F3FC>
## 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A journey of a thousand miles begins with a single step. Thats how I view my life ^_^
## 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wife, mum of 5, gran of 5, hopeful of living in a compassionate & just world free of prejudice. Lover of chocolate & music cause it's so good for the soul <U+0001F64C><U+0001F3FB>
## 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Photojournalist / Previously: NBC News, Recode, Honolulu Civil Beat. NJ, HI, CO, NJ
## 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We help you make your customers understand that you’re the one they should buy from<U+0001F4C8> #digitalMarketing #webdevelopment #blackowned #womenled Take our #SEO quiz
## 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Writer and artist. Degrees from Bowdoin College and University of Wisconsin-madison.  Studied creative writing at Stonecoast.  Therapist,Ceramic & fiber artist
## 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <U+0001F499> Web Developer <U+0001F396> Digital Marketer <U+0001F396> Wordpress Developer <U+0001F396>#MUFC Fan<U+0001F396> DM Let's Talk Business
## 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Health and wellness “micro-influencer” so my content ranges from hemp seeds to thirst traps. People think I’m funny. Please like me.
## 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Neurologist.  Feminist.  Fish loving snorkeller.  Advocate for humans, animals and the environment <U+0001F420> <U+0001F436>
## 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lover of God|Filled with His grace| Volunteer at MANI and STER| Mental health Advocate| Public health practitioner| SDGs Advocate| Virgo
## 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Condensing fact from the vapor of nuance. Born at 319.31ppm CO2. Ze/Zir.
## 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Video editor / writer / fine artist.  That's my story and it's sticking to my shoe.
## 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CEO & Brand Director at 18.21 Bitters, JD, cancer survivor, Goldman 10K Small Businesses Alum @babson , dog lover, marathoner, sports, violinist. Views my own.
## 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hey everyone! I'm Tim the Enchanter, Twitch Affiliate and YouTube content creator for All Lucky 7s Gaming. I live stream games on Twitch through PC, PS4 &Switch
## 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Innovative marketing strategist and business leader, providing innovative solutions to drive sales, improve operations and increase the bottom line.
## 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         search #JohnFamousArt
## 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Founded by fmr Sen. Tom Coburn, young Americans focused on issues that affect our generation.\nhttps://t.co/rqYtKnNddp https://t.co/AdlygzQ3sl
## 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               car lover, music lover ....im just a human ....
## 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NGO dedicated to the welfare of prisoners in Nigeria
## 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hope...Truth...Justice <U+0001F64F><U+0001F3FC>
## 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Welcome to the Official Twitter page of First India Newspaper. Follow us for the latest updates. #FirstIndia
## 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       “Welcome to the official Twitter account of Vodafone in India. Tweet us for any query on your Vodafone connection in India and we’d be #HappyToHelp”
## 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A MedTech engineering SME owner focused on using his experience to beat #Covid19 by supporting the #NHS with vital #PPE supplies (#FBPE can wait 4 later).
## 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              23 | Culture curator_ Artist Manager _ Music takes care of my soul while I take care of business
## 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <U+0001F310> Explore tech, cybersecurity & the information age.\n<U+0001F60A> Dir of MIS for @CareerSourceFL.\n<U+0001F3B5> Love my double bass.\n<U+0001F493> Android OS\n<U+0001F964> Dr Pepper
## 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Official Twitter account for Ghana's Authentic Source Of News With Speed Contact: editor@mynewsghana.com
## 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We’ve spent 25+ years innovating to build the best workstation solutions on the market. Our goal is to improve how clinicians and staff work. #CareMoves
## 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         United Nations Official Photographer. Personal Acct. Retweet not endorsement Official Acct: @UN_Photo @UN @UN_News_Centre\nIG:https://t.co/Kdb5VAKE4y
## 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Your #1 source for independent news from the Kurdistan Region of Iraq (KRI)
## 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  100% fb...Pro PakArmy, political affiliation U can Guess :)...Love to read all your posts daily...Member of @TeamPVFofficial
## 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If you have a news story, call us on 295-5881 or email news@royalgazette.com
## 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UL20
## 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I tweet, therefore I am.
## 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Reporter / Photographer / Community Editor @BarrieToday raymond@barrietoday.com
## 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 a MI high school senior looking to make a difference <U+0001F499><U+0001F41D>
## 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In the end,nobody wins unless everybody wins. Feel the Bern in 2020! Hidin’ on the backstreets as a democratic socialist expatriate. Bruce and Bernie are best<U+0001F339>
## 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Foreign Policy, Nat Sec, Tech. Alum @theIWP. Media requests/news tips: Jds921@gmail.com <U+0001F1FA><U+0001F1F8>
## 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    India's leading telecom company airtel offers mobile, fixed line, broadband, DTH & enterprise services solutions.\nhttps://t.co/YyXa084mwl
## 558                                                                                                                                                                                                                                                                                  <U+092F><U+093E> <U+0926><U+0947><U+0935><U+0940> <U+0938><U+0930><U+094D><U+0935><U+092D><U+0942><U+0924><U+0947><U+0937><U+0941> <U+092E><U+093E><U+0924><U+0943><U+0930><U+0942><U+092A><U+0947><U+0923> <U+0938><U+0902><U+0938><U+094D><U+0925><U+093F><U+0924><U+093E><U+0964>\n<U+0928><U+092E><U+0938><U+094D><U+0924><U+0938><U+094D><U+092F><U+0948> <U+0928><U+092E><U+0938><U+094D><U+0924><U+0938><U+094D><U+092F><U+0948> <U+0928><U+092E><U+0938><U+094D><U+0924><U+0938><U+094D><U+092F><U+0948> <U+0928><U+092E><U+094B> <U+0928><U+092E><U+0903>\n\nTeacher by profession, farmer by hobby
## 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Serving volunteer blood donors, hospitals & patients in Minnesota, western Wisconsin & eastern S.D. Tweets by Sue.
## 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               International Health Programmes\n 3 Decades #HIV #Cancer \n Political + Social Wars\n'Survivor & Savvy'®\nGeo-Political Punditry \n#MH17 to be Continued . . .
## 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What matters: <U+2022>guts<U+2022>kindness<U+2022>empathy<U+2022>family<U+2022>friends <U+2022>home<U+2022>hospitality<U+2022>fun<U+2022>music<U+2022>books <U+2022>wisdom<U+2022>integrity<U+2022>curiosity<U+2022>wine <U+2022><U+2618><U+FE0F><U+0001F1EE><U+0001F1EA><U+2022>Insta~ #livingwisdom @ReynoldsMAM
## 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Your Preferred Source of Instant News from Uganda & East Africa. https://t.co/A7YCKjtLsl Call Us: 0393517291 IJ Complex, Suite IJ4. Mbogo Rd Kiwatule, KLA
## 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mayor of Norman, OK -- Mom of two boys & married to my high school sweetheart
## 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <U+0001F30E>HEROES + HOPE in the Age of #COVID<U+0001F49A>INSPIRE. INNOVATE.Modern Medicine.CONNECT.Public Health.HEAL<U+0001F49A>#WomeninMedicine#GetmePPE<U+0001F54A>#KindnessisBestMedicine
## 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Romance novel expert and #coffee inhaler. Pick up a sizzling hot copy on #amazon #bookbub #smashwords #kobo https://t.co/41u0duc3C7 https://t.co/rgoq9pn4z9
## 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P.G. (MicroBiologist)\n\n<U+0938><U+094D><U+0935><U+0938><U+094D><U+0925> <U+0930><U+0939><U+094B> (Be Healthy)! <U+092E><U+0938><U+094D><U+0924> <U+0930><U+0939><U+094B> (Be Happy)! <U+0935><U+094D><U+092F><U+0938><U+094D><U+0924> <U+0930><U+0939><U+094B> (Be Busy)! <U+0001F60A>
## 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Aloha\nPlease follow me on YouTube Dr. Scott Stubblefield, JD, NBS, LLC & FB and my community of over 3.5 million likes!  Blessings...... Dr Scott
## 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       “Welcome to the official Twitter account of Vodafone in India. Tweet us for any query on your Vodafone connection in India and we’d be #HappyToHelp”
## 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       晶子 | Fanfic writer | ENG & 日本語 & 一点中文 OK | MXTX works, 2ha, YURI!!! on ICE, VLD, etc | AO3: rinsled05 | https://t.co/ekgjTEPP9c | icon by Ammy
## 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Arab world’s leading source of global news and opinion.
## 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exec Director, PAART, PA Bureau of Dog Law Advisory Board, Professional Dog Trainer, Pgh task force on dogfighting & my best work - being a Mom!
## 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hi! We are located in the Philippines. At the moment, we are currently in the community quarantine. We need financial assisstance due to COVID-19. <U+0001F64F><U+2764><U+FE0F>
## 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    President of the Australian Council of Trade Unions (ACTU)
## 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Assistant Secretary, Housing Trust Tenants Association. WOWSafe Domestic Violence member. Govt relations, media & advocacy worker. ALP MEMBER. Port fan.
## 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Christ Follower. Blogger. Chiefs Fan. Love To Exercise. Artistic. Silly. Love To Have Fun And Laugh.
## 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Corporate Travel Management with an edge. \nMeetings & Incentives flawlessly delivered. \nLuxury vacations & cruises with elite status benefits.
## 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Expert in #Governance, #Risk management & #Compliance
## 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Editor @5280magazine, loves mom, golf, the Aggies, and, recently, Denver
## 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I play and love all games. #TwitchAffiliate \n\nBusiness Email: megapixelsf@gmail.com
## 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I’m kinda funny sometimes
## 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            She/Her\nSpecialized in Nutrition & Kinesology. \nSpecialized in Dog Language, Behaviour & Cognition.\nI wish i could be a professional student, get paid to learn
## 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Protecting the unique species, habitats, and cultures of islands worldwide
## 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TPWK\n<U+0001F420><U+0001F3DD> <U+0001F3A8>\ninsta: charlotteteeuwenx\ninsta: drawingscharlotte
## 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Farming background and currently enjoying work on grains and agricultural policy matters as CEO GrainGrowersLtd. The views in these tweets are my own.
## 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Alaskan. Educator & researcher. Museums, birds, biodiversity, evolution, genetics, ecology, wildlife, environment, zoonotic disease, and...
## 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is this is the real Jim Dalrymple? Nope.
## 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Digital reporter w/ @TheProvince + @VancouverSun for breaking news, crime, city, culture. News tips to sip@postmedia.com, DMs or 604-605-2168. She/Her/Hers.
## 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SOCIAL ACTIVIST || Software Developer || Digital Marketing
## 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I TAKE NO RESPONSIBILITY.               Former Republican                        Dodgers|Lakers|Trojans|Kings          Cover Pic: IG @maximizelight
## 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I feel like a goddamn bullfighter bro
## 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Covid19 THE PERFECT #ILI #FakeTests PANDEMIC for #GrifterinChief Fake Dx #ppenow pneumonia ARDS - KEEP LOW NUMBERS #trumpVirusCoverup
## 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Science=Truth. Fighter for Equality, Justice. Student of Neuroscience. #BLM #LGBTQ #NoBanNoWallNoRaids #impeach45 #fbr #Iamtheresistance. No lists or DMs!
## 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We out here mayn #MUFC @Warriors since the early 50s'
## 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Irish College General Practitioners (ICGP) is the professional body for general practice in Ireland. Retweets /mentions not endorsements.
## 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Berkshire Hathaway HomeServices is a real estate brokerage franchise network designed for today’s real estate market.
## 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ghana Youth Day '19 The Bernie Grant Centre, N London, tackling Gun&Knife Crime, Sat 7 Sep Supported by GH High Commission, Sponsored by Tullow Oil
## 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Dedicated to providing reliable, high quality participants for your next online survey. #SampleWithASmile
## 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Founder of @MassHSEsports | Below Average Ryu Main\n\nSomeday my top osu! play will be an FC\n\nThe mile is the best race
## 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I am evil... My middle name is Jeremy.
## 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Designer | Author @PenguinRandom, Diversity Educator & Speaker @NSB_Speakers @Global_Speakers, Ambassador @TeamCanada #OneTeam
## 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Yay for public health!                        Dog Enthusiast <U+2022> Fast Walker <U+2022> Middle Sister
## 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Venus Home Appliances (P) Ltd., manufacturers of Venus Water Heaters is a 50 years old company and is a market leader and pioneer in the Water Heater industry.
## 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business woman. #Startup.
## 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Co-host/Producer - Racetrackers Business consultant/attorney
## 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #Familyhistory #genealogy #writer; ret. hist. tchr; #researcher @PastPresentPath; #DAR mbr; loves #archaeology, #antiques. #Advocate against #dementia #cancer
## 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Terse over-explainer. That means I explain things too much, but curtly. This is an oxymoron; a figure of speech in which opposite terms appear in conjunction.
## 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Director, Institute of Judaeo-Christian Studies and Associate Professor & Director, Jewish-Christian Studies Graduate Program at Seton Hall University
## 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I'm Dave the cat, I used to live with Dot Cotton my owners @dennyrickman77 @peterbealexx @EE_laundrette
## 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The specialist charity for children and young adults with #crohns #colitis #ibd. We've been supporting families and funding groundbreaking research since 1978.
## 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I believe in Creation,America,Israel,small gov,the individual,freedom of speech the Constitution and Dec of Independence and i love American history and NASCAR.
## 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CEO of @Somerset_CF, a simpler & more effective way to make a difference and trustee @TheNelsonTrust. Father, husband and @gloucesterrugby fan.
## 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Author, Becoming One: A Story Of Triumph Over Dissociative Identity Disorder; curator of Dissociation Blog Showcase; PTSD on Pinterest #meow
## 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Always looking for the next big thing - x-@10xGenomics, x-@SciLifeLab -<U+0001F1EA><U+0001F1FA>- <U+2615><U+FE0F>hipster - father of 4 <U+0001F40E>s and a <U+0001F345> - myViews
## 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Socialist. Vegan. Environmental science student with the OU. <U+0001F30D><U+0001F339><U+0001F3F3><U+FE0F><U+200D><U+0001F308>
## 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lecturer, researcher & learning addict with library & education background. Loves discovering, creating & sharing knowledge #connectedlearning #openeducator
## 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NHS a major concern. Football fan. Into history and culture, economics, politics. Labour. Scotland, nature, daft cats and dogs. DM by agreement only please.
## 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DON'T PANIC!
## 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We cover politics, education, health, environment, the border and more on radio (89.5FM), TV and online. https://t.co/uw6dQenvZe
## 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Conservative that’s really over the PC media that is just a shill for the liberal political elites, & liberal politicians offering free stuff I have to pay for.
## 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Did somebody say pizza?
## 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Director #SupportedLiving agency; Advocate for people w/ dev disabilities; #inclusion & #community for all. @csln5ps Board Member
## 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This account is monitored 9-5 Mon-Fri and is not for urgent medical enquiries. Please visit our website for info on the services we provide. CEO tweets #CEOGlen
## 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Enter your place of peace. Draw near to God with #Christianmeditation Have more purpose, less stress, & better sleep. Download the Abide app below.
## 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Your one stop for all news #fantasybaseball #fantasyfootball  #NBA #NCAA.  Using #dlvr.it for automated account posting.
## 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Representing family values in Pennsylvania for 30 years.
## 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       don’t shoot the messenger <U+2022> i have many #nastyquestions <U+2022> unite <U+2022>except zero f<U+0001F9A0>cks for Crisis Tourists
## 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mother of3,Wife,Chartered Physiotherapist,Ex-International, Stage4 Rugby Coach,Rugby Analyst. Group Lead #AlliedHealth @Ulhospitals all opinions mine #wehscps
## 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Polymer Chemistry Doctor<U+0001F469><U+0001F3FD><U+200D><U+0001F52C> Cosmetic Chemist <U+0001F484><U+0001F485><U+0001F3FD> Inventor<U+0001F4A1>From Puerto Rico <U+0001F1F5><U+0001F1F7> Living in NYC <U+0001F34E>  AAAS If/Then Ambassador<U+0001F3C5> at lin_romel on Instagram!
## 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Broadcaster, Turf Scribe, Thoroughbred Racing Fantasy Analyst and wildly talented Beach Bum - Be excellent to each other & party on.
## 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thats all i know!!! Movie making in progress...
## 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              *my views,not employer's : likes big words : has a SOH : opinion : #AusPol : science : data : future : #QandA : #EduTech #PropTech #MarTech : ops : architecture
## 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ryerson Canadian Students for Sensible Drug Policy aims to raise awareness & improve wellbeing via harm reduction, drug policy, & prisoner justice education.
## 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Instagram: isaacortega2900\nhi I am Isaac Ortega I like to\nwork out I am 10 years old and I am in fourth grade
## 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SelfDriving cars <U+0001F697> infos #car #selfdriving #digital #AI #analytics #RPA #CIO #CEO
## 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        committed to spreading good ideas on growth, culture, development and progress. newsletter and podcast
## 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Proud Practice Owner and GP @MedicalRosedale #HeForShe #ListenFirst
## 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dude from Sweden.
## 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Conservative.Traditional Catholic .  I love our country. NRA member.  No Porn #KAG  #WWG1WGA #Prolife
## 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in the end, the love you take is equal to the love you make. -The Beatles <U+2728> It will be okay. I don’t know what okay looks like, but it will be okay.
## 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Kansas City area #CPA firm communicating finances in plain English.
## 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Tahani Baakdhah (MD, MSc, PhD stem cells researcher)\nScience communicator using #crochet for #STEM #Science #Entrepreneur #UofT Retinal #Stemcells #Sciart
## 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Phoenix breaking news, weather, politics, sports and more.  Tweet us your tips and pics with hashtag #fox10phoenix
## 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Reporter/Anchor/Producer for @3NewsNowOmaha, Fantasy Football Player, Hip-Hop Head, Sarcasm Enthusiast...*Views are my own.
## 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Leadership and Financial Management expert. Public speaker.
## 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD, programmer, <U+0001F1E8><U+0001F1E6>
## 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All I want for my birthday is a federal ICAC with retrospective powers. I'm not here to fornicate with arachnids. @WDYMvideos
## 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An independent western Canada makes sense. New account. Retweet does not necessarily mean agreement.
## 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ashley <U+0001F495><U+0001F618> - #3 Austin Dillon<U+0001F3C1> - KC Royals/IE 66ers/Kannapolis Intimidators<U+26BE><U+FE0F> - LA Rams & Nebraska Huskers<U+0001F3C8> - Philadelphia Flyers<U+0001F3D2> @DesignsRtp
## 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    India's leading telecom company airtel offers mobile, fixed line, broadband, DTH & enterprise services solutions.\nhttps://t.co/YyXa084mwl
## 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #Author of "The Divine Connection" #SMU Alum #writer #HumanRights Happily Married <U+0001F98B><U+0001F30A>
## 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Appeal is a nonprofit criminal justice publication providing critical news and commentary on local criminal justice systems.
## 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NHS Grampian Practice Educators. All views are our own.
## 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Congressional Candidate, NY-15\n#BelieveInTheBx\n@TheDemocrats Vice-Chr\nAssembly Member, NY-79\nFmr. Obama White House aide \nNew Leaders Council Honorary Co-Chr
## 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let's do this. Authorised by Andre Anderson, 160 Willis St, Wellington.
## 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            “Human rights” aren’t “provided” by anyone. They’re inherent. Gov’t’s role is to protect them, not provide them.  Non-religious Christian.
## 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Open to having my mind changed
## 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Human Being , Curious Learner !!
## 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Better Sleep = Better Society, I am a Sleep Researcher and Educator looking to help everyone have a healthy sleep and a healthy life, sharing what I learn!
## 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Minimalist Recluse
## 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Avocado  <U+0001F951> delight
## 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hands on Horticulturist, skilled gardener, social dancer. #shoeplants for @stgilesterrace Member of @CIHort & @TGGtradenetwork Fearfully and wonderfully made.
## 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ohio native. Dairy farmer's daughter turned elitist urbanite. Still haven't managed to get the smell of cow out of my hair. Gov. Research @American_Bridge
## 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I'm a #traveler #backpacker and been a #muaythai fighter. I am a #writer in search of the story, the next battle and what lay beyond the horizon's edge. :)
## 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It's time for\nsome targeted milkshakes\n\n\n#Bernie2020 #MedicareForAll #FightFor15 #GreenNewDeal #NoMiddleGround
## 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The official Twitter account of the Transplant Institute at Beth Israel Deaconess Medical Center @BIDMChealth + @BIDMCSurgery. \nRTs ≠ Endorsements.
## 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I'm a savage ...
## 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Proud resister,<U+0001F30A><U+0001F30A>\nMom of 2, TWD, Oscar Rodriguez lll fan, Art lover, lover of nature, animal lover. Music lover, dark humor, Karma can be a bitch! Activist.<U+0001F60E>
## 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Senior consultant, PhD, Clinical Microbiology, Orebro University Hospital. President of the Swedish Society of Clinical Microbiology. Views personal.
## 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          KWCH 12 Eyewitness News - CBS affiliate in Wichita, KS tweeting Breaking News, Weather, Sports, & Traffic. #KWCH12, #KWCHTraffic, #Storm12, #KSPROUD
## 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BioOmician, #Metabolomics, Alumnus: @IITKgp @ETH_en @UF @txbiomed Assistant Professor @wakehealth https://t.co/7zPJxMzpq5
## 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Global Coronavirus news from journals, media, experts and researchers. Updated often. Human curated by Dave Roberts
## 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           unofficial news, tidbits affecting the airline industry. For those who work there and those who travel - EVERYBODY!
## 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NYC born and raised. Public health researcher, assistant professor, social justice advocate, undercover scifi geek, and amateur foodie.
## 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             #GuerrillaMarketing, Startup #Founder, #speaker, connector of people, wellness advocate. Tweeting about the latest business, tech, & #health news
## 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Full-time part-time writing instructor; academic coach; Ph.D. Early American Literature. Views are my own, and not always carefully considered.
## 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5X World Boxing Champion & Speaker on Mental Health Awareness, Addiction and Mental illness. To book Mia for your event, email bookmiastjohn@gmail.com<U+0001F397>
## 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      You have stepped into the realm that is https://t.co/ySPFXaktbs's official Twitter page. We keep you updated with everything that's going on in the tech world and more!
## 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CHS 2019 ONU 2023
## 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        City Councillor for Eastville @BristolCouncil & Enterprise Educator #SFHEA @UWEBristol
## 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Actor
## 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FOX 32 News has got you covered for breaking news, weather, traffic, politics, and investigations. Join the conversation: #Fox32News
## 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Society for Advanced Bronchoscopy
## 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Journalist @KKCO11News
## 695                                                                                                                                                                                                                                                                                                                                                                                                     <U+200F><U+200F><U+0645><U+0646> <U+06A9><U+0634><U+0648><U+0631><U+06CC> <U+0646><U+062F><U+0627><U+0631><U+0645> <U+06A9><U+0647> <U+0628><U+0631><U+0627><U+06CC><U+0634> <U+0628><U+062C><U+0646><U+06AF><U+0645><U+060C> <U+06A9><U+0634><U+0648><U+0631> <U+0645><U+0646> <U+0632><U+0645><U+06CC><U+0646> <U+0627><U+0633><U+062A><U+060C> <U+0645><U+0646> <U+0634><U+0647><U+0631><U+0648><U+0646><U+062F> <U+062C><U+0647><U+0627><U+0646><U+0645>.\n\n<U+200E><U+200E>@Sayyith
## 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Retired human being
## 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Professor of Demography for living, sourdough baker and mixologist by choice
## 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Independent journalist sharing news re public health, Indigenous health, equity, climate, journalism. Managing editor @CroakeyNews. Curates @WePublicHealth
## 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Spectrum News offers the best 24-hour local news, politics, and weather coverage for Central New York and the Southern Tier.<U+00A0>
## 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+0001D44E><U+0001D45B><U+0001D451> <U+0001D466><U+0001D45C><U+0001D462> <U+0001D464><U+210E><U+0001D44E><U+0001D461> <U+0001D464><U+0001D45C><U+0001D462><U+0001D459><U+0001D451> <U+0001D466><U+0001D45C><U+0001D462> <U+0001D451><U+0001D45C> <U+0001D453><U+0001D45C><U+0001D45F> <U+0001D459><U+0001D45C><U+0001D463><U+0001D452> ? ♡
## 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jan 2017 - Facebook; My Personal Account was Disabled. Must have been something I said :) So here I am. #KAG TEXT TRUMP to 88022
## 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LOVE=ENERGY<U+0001F495> Scottish/Irish/Viking 11th Gen. American<U+2B50>Disabled Vet. Unions Matter! AFM76 AFGE3607 #DemcastAZ<U+0001F499> #Resist #VoteBlue<U+0001F30A><U+262E>
## 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 University Professor focused on links between health and social policy, insurance systems and return to work.
## 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <U+0001F499>Proudest Mom in the world<U+0001F499>\n\nPhotographer<U+0001F343> Vegan<U+0001F343><U+0001F336><U+FE0F> & <U+0001F951> junkie<U+0001F343>Star Wars, DC & Marvel<U+0001F343> \nIG @TheresaZphotography\n\n <U+0001F334><U+0001F33A>New Twitter Page<U+0001F33A><U+0001F334>
## 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            εν Χριστω - Gal. 2:20<U+4E28>Amber's hubs<U+4E28>Jonah, Karis & Aubrey's dad<U+4E28>1689<U+4E28>Teaching Pastor of @FBCPI<U+4E28>PhD Student @MBTS studying w/ @ostrachan<U+4E28> Follow/RT ≠ Endorsement
## 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Beekeeper, Gardener, Boater, Data Scientist, Data and AI Evangelist at Microsoft #WomenInTech #WomenInSTEM #TechForGood #TheFutureIsBright
## 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The opinions expressed herein are my own.Retweets don't equal endorsements.
## 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Intl relations, civil-military relations, NATO, ethnic conflict; Director, @CdsnRcds; I spew at https://t.co/Xc07DQNDtt, #BattleRhythm podcast at usual outlets
## 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Following My Favorite Celebrity News!
## 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Reporter @azpublicmedia,host of @BuzzTucson. #FloridaMan,sailor & @PADI instructor lost in the desert. @WVFS & @RIASBerlin alum. RT does not equal endorsement
## 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Proud Hindu, proud NaMo bhakt, want India to be No.1 in world.
## 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                this is Columbus Ohio signing off saying follow the rules #doubletap #Godspeed
## 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Palestine’s weapon of mass instruction.
## 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Covers the latest news, weather and sports around the Inland Northwest. Based in #Spokane, Wash. Owned by @Tegna.
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Delaware News Reporter is a one stop shop for all general and business news stories.
## 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dm for features / @SabrinaLanae <U+0001F91E><U+0001F3FD>
## 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Producer & Relief Co Host- @morningagenda on Power106FM, Lecturer- @UCCjamaica,                    Blogger & Social Commentator
## 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trump2020\n\n<U+0001F3B6>Shadow Banned<U+0001F3B6> the song,\nlisten\nhttps://t.co/dE50Vp0ESX\n\nCondemnation before investigation is lazy & close minded
## 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            100+ Million Monthly Impressions/ Latest In Celeb and Entertainment News     IG/Snap/FB/Youtube: @theJasmineBRAND Contact/TIPS: TJBstaff@gmail.com
## 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Happening Now. Follow us: @7NEWSSydney @7NEWSMelbourne @7NEWSBrisbane @7NEWSAdelaide @7NEWSPerth #7NEWS
## 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Awesome wife, Three boys. Assistant Wrestling Coach at W-SR, 2019 and 2020 Class 3A State Champions. KC Royals fan. Iowa/USAW.
## 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 visual communicator | typography aficionado  | data visualization connoisseur
## 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Family: Proud Dad to Alba :)\nHealth: Meat, LC, IF.\nFitness: Lift, Row, Run.\nBusiness: @Pavilion_Accty\n\nAmor Fati\nSpero Meliora
## 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Author of Reclaiming Power: Building Stronger Resistance. Peace #educator, #teacher, scholar #FBR #Resist #metoo #NonviolentDirectAction  #bucketbybucket
## 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hometown Denver, CO, New England transplant. Liberal (yes, my heart DOES bleed), proud mom and grandma! NOT followed by Rosie, Oprah, Obama, etc.
## 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Director of Common Sense. I may or may not have an opinion on media, news, biz, entrepreneur. Authentic(ity) counts. Been on twitter since 2008
## 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Mum, Wife, Runner, Singer, Antenatal Teacher, Lego Builder, Knitter, Sampler Stitcher, White Wine & Gin Drinker (not necessarily in that order)
## 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Single. "God Fearing Man"! The Lord!, Loves Us All"! I Swore Allegiance to The US Constitution"! To "Protect & Defend the US!" Ooh Rah Semper Fi  U.S.M.C.  1973
## 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Old account <U+0001F449><U+0001F3FD> @rhukkey_2 <U+0001F448><U+0001F3FD>
## 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Proudly representing California’s 40th Congressional District. Follow me at https://t.co/KjVfmF9CaM & https://t.co/Urj0zPAr8d.
## 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Netslab is an #IT service firm that provides #tech services, products and solutions.\n#TechnologyGuaranteed.\n Facebook: https://t.co/xCxIUIRG1n
## 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Computer teacher (elementary), color guard instructor, cat person, MINI driver, MAC person, Phillies fan, Eagles fan, relocated Steelers Fan, #TeamPete
## 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Private school marketing services based on data and academic approaches with a personal touch. <U+200B>We provide affordable services, specializing in smaller <U+200B>schools
## 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Author of Cactus Blossoms (available on Amazon)/ ART IS LIKE REALLY IMPORTANT OK
## 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Today , I live in #Gaza but I'll return to basheet in #palestine sooooon <U+0001F1F5><U+0001F1F8><U+270C>\n#Act4palestine\n#freepalestine \n#BDS
## 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Author, Staff Reviewer at YA Books Central, activist, and educator.
## 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Insights West is a progressive, full-service market research company offering insights-driven research solutions and interpretative analysis.
## 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The UK's no.1 B2B travel magazine. Our people: @Lucy_Huxley @amiekeeley @ben_ireland_11 @HarryKemble; @taylorontravel @juliet_dennis @travjournalist @sammayling
## 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reads; Conceptualizes; Comments.
## 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Stop Globalism, Get Informed.
## 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Work With Public Sector Leaders To Improve Outcomes - @Pega | Views are my own
## 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Chicago's very own source for news, weather, sports and entertainment. Join us on Facebook http://t.co/SDUdw1qFP4 & Instagram https://t.co/PIWgjjG87Y
## 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     C4 Atlanta offers career development services for working artists in Atlanta. We also advocate for art workers. Everyday.
## 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I'm encapsulated in the polymorphism of life.
## 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @makeawishwny PR & Marketing, twin mom, award winning journalist & a heart that bursts w/WNY pride. Passion: @hoperises_news and '30 Under 30' recipient<U+0001F3C5>
## 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Making politics work for solutions.
## 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       <U+0001F451>★ <U+0001D41B><U+1DA4><U+0001D558><U+0001D524>eⓢ<U+0001D4FD> FA<U+0001D4F7> <U+1ED6>f чⓞⓤ <U+0001D41D><U+0001D552><U+0001D403>'<U+0001D42C> Μ<U+0001D414><U+1515><U+0001D422><U+0001D4D2> ♤<U+0001F35F> \nhttps://t.co/rsyk0fL4gb
## 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A husband, a son and a journalist
## 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dad, weather junkie, & video producer at @CBSi.... M.A. Mizzou & B.S. Kentucky. <U+2014> My timeline is a flat circle. Formerly Louisville Courier-Journal.
## 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Resident Representative, UNDP Libya. Political Science BA & Intl Relations MALD Espanol, English, Francais, Portugues. Views expressed are personal.
## 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We are the news team for Capital Midlands. Covering Birmingham to Nottingham, Leicester & Derby to Warwickshire, Burton & Banbury. Tweet / Call is 0121 226 5771
## 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <U+200F><U+200F><U+0627><U+064A><U+0644><U+0627> <U+0643><U+0646><U+062A><U+064A> <U+0643><U+062A><U+0628><U+063A><U+064A> <U+0644><U+0628><U+0627><U+0631><U+0635><U+0627> <U+0641><U+0631><U+0627> <U+0643><U+0646><U+0628><U+063A><U+064A><U+064A><U+064A><U+064A><U+064A><U+064A><U+0643>
## 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Journalist, public sector millionaire, Davos man, remainiac, #fbpe, citizen of nowhere, collection of atoms, unabashedly internationalist. Pronouns: fop/foppish
## 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I’m a proud Sanghi & Bakth!\nIf you are a liberal, then I am a fascist!\n#SanatanaDharma / #Hindutva are a way of life!
## 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <U+30FB>高1 男\n<U+30FB>mwam好きです!\n<U+30FB>乃木坂も好きです!<U+4E0E>田、西野、堀、<U+658E>藤、山下、掛橋、高山推しです!<U+30FB>ワンオク最近ハマった!  #乃木坂     #マンウィズ   #ワンオク   #<U+5E83>島カ<U+30FC>プ   #サッカ<U+30FC>日本代表   #辛ラ<U+30FC>メン    #自分つっこみクマ       #フォ<U+30FC>トナイト    #ウイレレ\n   
## 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Singer, Dancer Entertainer,. For booking or sponsorship  call: +2348179217279  Email: peterstephen890@gmail.com
## 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            #Bottlecapps is the world's fastest growing #LiquorStore #App that puts #beer, #wine, and #liquor products a click away on your #phone. JOIN US!!!
## 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Physician, scholar, diplomat, creative leader in GH. Prof. Medicine @Columbia. Previously: @USAIDGH Assistant Administrator. Director @WHO & @RockefellerFdn.
## 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Writer Researcher IR & CT I Travel makes us trustworthy, minimises fear, suspicion I CASA UAV pilot. Author N/Fiction narrative @CurtinDetention in the pipeline
## 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Recruiting news aggregator. Get daily email alerts. #HRtech #Recruiting #EmployerBranding #talentacquisition #humanresources #HR #Recruiter by @rectechmedia
## 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Minute by Minute News round the world
## 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        World Leader in Precious Metals Technical Analysis, $179/year #Gold #Silver $GLD $SLV $GDX $GDXJ $NUGT $UUP $JDST $DUST $JNUG $SPY #Bitcoin $AGQ $USLV
## 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The National Community Reinvestment Coalition creates opportunities for people to build wealth. We champion fairness in banking, housing &business. #JustEconomy
## 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #TallAndTrue tweets of #middleaged #dad and #dogowner. #Blogger, #writer, #editor at @TallAndTrueWeb. And a #dogtrainer. <U+2764><U+FE0F> #books, #dogs, @SydneySwans, #Uluru!
## 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Russ Stevens: Writer/producer of Main Event of the Dead (c)2011-2020; ATTAK Cat Eva; Scoop Staley: Wrestling's premier Cubs fan & Danny Daniels's Disciple
## 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Sior Consulting is a GIS service provider and hydrogeological consultancy for the environment sector.
## 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We study infant learning & behavior in the Psychology Department @UnivMiami. Directed by Dr. Elizabeth Simpson (@Lizzy_Simpson).
## 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Husband, dad of 2 lovely kids, teacher, environmentalist, humble, persecuted people's advocate, altruistic, believer, faithful.
## 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            #AmericanMade\n#Married\n#PuttingGod1st\n#MAGA\n#Fighting4Equality\n#Wwg1wga\n\n#APeopleFreeToChooseWillAlwaysChoosePeace\n      #RonaldReganQuote
## 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The MSC are a worldwide, mission-driven and faith-based congregation of Catholic women founded in 1880 by Saint Frances Xavier #Cabrini.
## 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       JLL Consulting, specializing in Portfolio Strategy and M&A. Native Granite Stater with a passion for all things New England, travel and new experiences
## 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ecology and climate change science communicator, formerly a farmer and land conservator. Publishes a climate news site. https://t.co/05ObmaIK4t (Climate Change Management) 2016.
## 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Civil Engr/ Member of PEC /CEO in Construction company.RTs are not endorsed,representative of own Dawar tribe. Personal account /own view. \nPakistan Zandabad
## 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Responsabile stampa e comunicazione Garante protezione dati personali. Qui la voce e solo mia. #privacy #GarantePrivacy #dataprotection RTs not endorsements
## 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Where ever we are together that is Home
## 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Producer | Comic(s) | Gamer, @XFL2020 | GFXDesign | Writer | #WWE #SportsEntertainment #FoodWaste #FoodEquality | #Broadcasting #AR #VR #ArtificialIntelligence
## 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Could've been Footballer<U+0001F937><U+0001F3FE><U+200D>♂<U+FE0F>. Tweets on Somalia and Politics. Computing|Tech| Crypto| RT ≠ endorsement
## 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           middle eastern mami
## 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wife&Momof11*#HAPPYPrincipal*Co-Founder, author, coach, speaker @educate4hope, #pushboundEDU * #schoolHAPPINESScounts *@NASSP Digital Principal * lover of life
## 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I like storms, outer space, Iowa Hawkeyes, and ballroom dancing... and of course, bunnies!
## 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I like reading & writing <U+0001F4D6> <U+270D><U+FE0F>Interested in lots of things.Trained in Econ, IR ect...Phd ABD is that means anything to you.RT/like does not mean endorsement <U+0001F914>
## 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Writer and Investor
## 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Community news for northeast Winnipeg. Contact reporter Sheldon Birnie at sheldon.birnie@canstarnews.com or 204-697-7112.
## 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SC:kailuv78 IG:kaialamia <U+0001F469><U+0001F3FD><U+200D><U+0001F373><U+0001F469><U+0001F3FD><U+200D><U+0001F4BB><U+0001F3BC><U+0001F3BB><U+0001F58C><U+0001F58C>feel free to follow,I’ll follow back .i love makeup,studying for my bachelors degree in sociology,music,art
## 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FUTURE ORIENTED.<U+0001F3AF> Dream chaser.Optimism be my pride.
## 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <U+0001F1E9><U+0001F1EA> <U+0001F5FD>Mom; INFJ<U+264F><U+0001F993> #WritingCommunity #Fibro #EDS #PTSD <U+267F> #spoonie Verbal Acrobat; Slytherin #FF #amwriting <U+0001F49C>Learning #Nature #Photography #Science #Psychology
## 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Investigacion sobre #DefectosCongenitos (la mayoria, ER), sus causas&prevencion /Research on #BirthDefects (most of them #RareDiseases), their causes&prevention
## 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The latest news from CityNews Winnipeg. Watch live every day at 6 p.m. & 11 p.m. on CityTV and at https://t.co/yAWjPboptb
## 796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A Nigerian... Interested in Politics... Good Governance
## 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I like to build stuff.
## 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   “To know yourself, think for yourself.” ~ Socrates\n\n<U+0001F479><U+0001F479><U+0001F534><U+26AA><U+FE0F><U+26AB><U+FE0F> Irish Red Devil <U+0001F1EE><U+0001F1EA> keeping The Red Flag Flying High <U+0001F534><U+26AA><U+FE0F><U+26AB><U+FE0F><U+0001F479><U+0001F479>
## 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (Original #NeverTrumper) The #SociopathInChief Is Blaming Everyone But Himself For The #TrumpVirus & #TrumpRecession #VoteBlueToSaveAmerica #TheResistance
## 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         tired
## 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     WORLD CHAMPION!!! not sure what of yet but World Champion
## 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        President, Charles Schwab Foundation; SVP @CharlesSchwab; Author; CFP. Helping you #Ownyourtomorrow through financial literacy. http://t.co/nswxFWPqQc
## 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Software Developer, mostly C/C++/C#. Engineer by profession, Into Science, Computing and wits. Oh, and I love cartoons.  <U+0001F1EA><U+0001F1FA> is more than an ideal.
## 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Official U.S. Transportation Command Twitter: We lead the Department of Defense transportation & distribution enterprise. Following does not = endorsement.
## 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  “But words are things, and a small drop of ink, falling, like dew, upon a thought produces that which makes thousands, perhaps millions think.” Lord Byron
## 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Anti-Left since 1971. Recovering Journalist. Ex-ACU Asst Media Dir. Truth, Country, Party #KAG2020 #Trump2020 | Living in Houston, Texas since 2013, yee haw.
## 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <U+2022> All tweets are personal viewpoints and responses, RTs & Likes are not endorsements <U+2022> ΑΦΑ <U+2022> 2nd Vice President (@c_oybd)
## 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Patriotic, and Unapologetic.\r\nCatholic Constitutional Texas Conservative
## 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       22, Full-blooded Cuban. Public urinator
## 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Libyan-American politicking foodie. Just trying to make it work. Views are my own.
## 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #OrgPsychology #ChangeManagement #Creativity #Photovoice #ArtsBasedResearch #Coach #PhDStudent #EventOrganizer #Artist Tweets r my own. Pronouns: She/Her
## 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bay Area // I do music stuff <U+0001F919><U+0001F3FC>  @themidwaysf @NNMFestival
## 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Stand up.Tweets r mine.Spiritual enlightenment's the ability to recognize an idiot in less than 10 secs. Bringing It!
## 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              24/7 Nigeria is a citizen media news and information portal reporting news on Nigeria and the rest of the world.
## 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I'm Paul, and I like experimenting with different sound instruments and making my own melodies.
## 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Food production should not be seasonal because hunger is not seasonal.    \n\n08080231911 \nadmin@sfarmlab.com
## 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #BLACKLivesMatter <U+270A><U+0001F3FE><U+270A><U+0001F3FE><U+270A><U+0001F3FE>#MomProbs <U+0001F467><U+0001F3FE><U+0001F9D2><U+0001F3FE><U+0001F476><U+0001F3FE> #Dancer <U+0001F483><U+0001F3FE><U+0001F57A><U+0001F3FE>
## 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Latest Breaking Top Stories News Headlines Get latest headlines, Top stories, Entertainment, Bollywood News, Multimedia, Reviews, Current Affairs, Technology
## 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   dad <U+2022> crossworder <U+2022> city dweller <U+2022> casual cyclist <U+2022> systems guy
## 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Arts & Culture projects run by @UniofBeds for, with and by Bedfordshire's communities. Recent projects include #TestBeds and @LCEPLuton. Image ⓒ R. Cherry
## 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        KCCI Anchor & Reporter. Passionate about telling stories. Missouri Tiger. Traveler. Dreamer. Food and wine enthusiast.
## 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A published career writer and produced screenwriter.  When I’m not writing, I’m designing projects for my website.
## 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Rhode Island Chapter 7 consumer bankruptcy attorney / CERTIFIED FINANCIAL PLANNER. Helping good people in financial distress. I enjoy volleyball and travel.
## 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PRESIDENT: BCJD DELHI CHAPTER....\nPublic works and decent life give the credibility rather than the publicity mileage
## 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             #GrayRockTechnique a MUST w/#Trump & Regime manipulation. Google it. Learn it. Practice it. ALWAYS.\n  <U+0001F333>hugging, head banging, mama x4. <U+2764>  All #MAGAts blocked!
## 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <U+0001F1FA><U+0001F1F8>&<U+0001F1EF><U+0001F1F2> \nTumblr refugee.\nArt / Charts <U+0001F4C8><U+0001F4C9> / politics & hoodrat shit
## 829                                                                                                                                                                                                                                                                                                                               #<U+14AA>O<U+142F><U+0190> <U+01AC>O #<U+14AA><U+0196><U+142F><U+0190> O<U+144E> <U+01AC><U+210E><U+0190> #<U+1455><U+144C><U+01AC><U+01AC><U+0196><U+144E>G<U+0190><U+15EA>G<U+0190> #<U+1455>O<U+15F0><U+146D><U+144C><U+01AC><U+0190><U+1587> #<U+01AC><U+0190><U+1455><U+210E><U+144E>O<U+14AA>OG<U+01B3> #<U+1515><U+0190><U+1455><U+144C><U+1587><U+0196><U+01AC><U+01B3> #<U+0196><U+144E>FO<U+1515><U+0190><U+1455>. <U+15E9><U+14AA><U+14AA> #O<U+146D><U+01AC><U+0196>O<U+144E><U+1515> <U+15E9><U+1587><U+0190> <U+15F0><U+01B3> #O<U+15EF><U+144E>.
## 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        96' Western University
## 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aertrip is designed to make travel planning, booking and organising as easy and enjoyable as the travel experience itself.
## 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Living by the Golden Rule!
## 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Praised by The Chief for successfully capturing Carmen Sandiego and all of her VILE henchmen. <U+0001F575><U+FE0F>
## 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (she/her) \n\nLatinx, librarian-ish, drinker of all the coffee, reader of all the things.\n\nOpinions are strictly my own.
## 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When the truth unfolds, you'll see The Creases in My Skin!!! - Aq
## 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Focusing on constituent engagement and philanthropy. Proud two time @setonhall alumnus. Eagles and Irish fan. Go Ospreys! @stockton_alumni
## 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Briton in Singapore (formerly Beijing): tweets more or less about China, architecture/cities, music, current affairs and the absurdity of life.
## 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Connoisseur of Sports, Arts and Music, Cat and Kitten Lover,  Physician, Humor-Satire aficionado, <U+0916><U+094D><U+092F><U+093E><U+0932> , RTst , #Punekar     https://t.co/o7oQXdJ6Rz
## 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           London bus driver\n<U+0001F436> cavalier king Charles spaniel\n<U+0001F3A7> Rock,metal and blues\n<U+2764><U+FE0F> @jocolli40195593
## 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TV show ft talents, achievers, events, inspiring stories! eveRIAthing is a creation of Everiathing Network and is now caters to an international audience.
## 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Irish-Catholic Gentleman, Overall Fried Chicken Lover and Stand Up Comic, blah blah blah. Sold 2 Chains His Second Chain
## 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The official @Twitter account of The Committee to Defend the President.
## 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I clap two pieces of wood together on movie sets and say "MARKER." I also like cheese and can run really, really fast.
## 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    26 yo organic chemist, formally of the Guiry group in UCD! Heading to Germany to post doc in April. This is my chemistry account! All opinions are my own!
## 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Farmer, Golfer, traveller.
## 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | Chicago based cinematographer & photographer | | @worthyvisuals is where I post my work | WORTHYVISUALS@gmail.com |
## 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D<U+0001F393><U+0001F4DA> Linguist. A Subject & an object @canalugr. Senior Fellow @C4ARR. Online extreme speech: Critical Discourse Analysis + Social Semiotics + Sri Lanka <U+0001F1F1><U+0001F1F0>
## 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+0001F47D>
## 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Runs a full svc independent insurance agency, expert on health insurance, active in state/ federal legislation, dad, closet geek, barefoot runner, meditation
## 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #MAGA.\nNO dating please.
## 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Brand Marketing Strategist who tweets about branding, marketing, leadership, customer experiences, and employee engagement. #BrandExperience #BrandTip
## 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am a fighter ,a survivor, an artist ,a designer, a free spirit, a lover of all music and a dancer.\nI'm always looking for a new adventure..\n#Resist .No lists
## 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Socialist · Christian · Inclusive Orthodoxy · Healthcare Worker · City Bicyclist · Insatiable Reader ·
## 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Resolutionary, Pracademic, Policy Wonk, Futurist & Philosopher
## 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 862                                                                                                                                                                                                                                                                         <U+0001D691><U+0001D68A><U+0001D699><U+0001D699><U+0001D692><U+0001D697><U+0001D68E><U+0001D69C><U+0001D69C> <U+0001D692><U+0001D69C><U+0001D697>’<U+0001D69D> <U+0001D690><U+0001D698><U+0001D698><U+0001D68D> <U+0001D68E><U+0001D697><U+0001D698><U+0001D69E><U+0001D690><U+0001D691>, <U+0001D692> <U+0001D68D><U+0001D68E><U+0001D696><U+0001D68A><U+0001D697><U+0001D68D> <U+0001D674><U+0001D684><U+0001D67F><U+0001D677><U+0001D67E><U+0001D681><U+0001D678><U+0001D670> <U+2022> @BTS_twt OT7 or NOTHING <U+0001F51E> #YoonKook enthusiast  <U+2022> NURSE <U+0001F469><U+0001F3FB><U+200D><U+2695><U+FE0F>
## 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Liverpool Surface Science PhD. Scientist, Programmer, QA. N7WIM. <U+2764><U+FE0F> = <U+2B50><U+FE0F> = interesting (or thanks) and RT = very interesting. Neither are endorsements.
## 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Husband. <U+0001F1EC><U+0001F1E7><U+0001F1EA><U+0001F1FA> Lego fan by night. Twitter Hadoop SRE in SF by day. Ex Rackspace, Digg, Yahoo. My words are my own.
## 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Twenty Six. T+O Medical Secretary. English Graduate. Hufflepuff. Writer.
## 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Communications Specialist, Multimedia journalist , graphic designer and writes stories that change people's lives
## 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also known as Sister Brauni Cudjo. I have two Twiter accounts. Thanks... \nGod Got This...
## 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 military brat who married military now retired #MAGA Trump Supporter lover of the USA and all it stands for! I follow back! wickedly sarcastic and funny af !
## 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak no last words, make no final requests, cry no plea for mercy, ask not for forgiveness. S.H.A.R.P.  REBEL ALLIANCE,BLUE LEADER.#BLUERING
## 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur. Investor. Founder of @fiftyyears, @AmicusHQ, @impactdottech. @YCombinator alum. <U+0001F331> based. Helping great scientists become great entrepreneurs.
## 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      entrepreneurial vagabond
## 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ohia y3 forken
## 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       WWG1WGA
## 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Belongs to Gen Z. Tech-innate, Hyper-informed, & Extremely Savvy. Love to vote based on issues over party. On priority ~ Job, environment, & social equality.
## 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MAGA <U+0001F1FA><U+0001F1F8>  Enjoy researching the Military, Politics and Current Events. Love the Cubs, Christmas and being Irish!
## 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lifelong Socialist - <U+2764><U+FE0F>EU<U+0001F1EA><U+0001F1FA> #TheResistance against Fascism. No to #HS2. The future is Proportional Representation<U+2764><U+FE0F>@LFC <U+2764><U+FE0F><U+26BD><U+FE0F> since 1966
## 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             St. Lucia's #1 online news source
## 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         about to start something new - a project with an innovative start-up. Exciting times!
## 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  33\n<U+0001F4BB>@himnmedia\n<U+0001F4F0>@HLNF_Bulletin @mysportsvote @AmbushSports @MWSNsports @OT_Heroics\n<U+0001F4FB>@HLNFPodNetwork \n@MuckRack: https://t.co/KyakwM3KAv
## 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Political Scientist | Researcher | Alumnus <U+0001F447> \nJawaharalal Nehru University (JNU) | New Delhi | \nRetweets ≠ Endorsement | <U+0645><U+064F><U+062D><U+064E><U+0645><U+064E><U+0651><U+062F> <U+0633><U+0631><U+0627><U+062C> <U+0627><U+0644><U+062F><U+064A><U+0646> <U+0001F341>
## 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Food Tasters, Traveler, Photographer, Quote Lover! You can't imagine the way i live. Photoshop worker~
## 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        No Bio
## 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           mom &huge wrestling fan! got 1daughter &3fur daughters..#saints #wwe #nxt #ImpactWrestling #nxtuk #roh #hottytoddy #ufc #mma #njpw #aew love sports
## 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I had another Twitter bio. After following the #Coronavirus story since late January that has been the main thing this account is about. Right now. <U+00AF>\\_(ツ)_/<U+00AF>
## 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <U+0001F4BC>Business Consultant <U+2712>WV Notary <U+0001F374>#WeFillTheFridge Ambassador <U+2B50>Veteran <U+0001F64F><U+0001F3FB>Member of the Church of Jesus Christ
## 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I’m brutally honest and honestly over it
## 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CPD Officer at the Academy of Clinical Science and Laboratory Medicine. Retired Chief Medical Scientist. Chief Instructor https://t.co/NBX2fJs2dm. Coach, Tutor & Sportsperson.
## 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Afro-urban Centricist aspiring Social Activist. Sports binger...from the fence. Let's talk, with more progressive content
## 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thai woman, incorrigible teaser of Thai society and politics <U+0001F47B>. Animal lover, occasional misanthrope.
## 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The blog of the @StiglerCenter at @ChicagoBooth. RT/Follow≠endorsement
## 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Middle Class Nobody, Interests: Politics, Boston Sports, Games, Right to be Opinionated and ask WHY!
## 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Official Twitter Page of Nigeria’s independent fully-automated news aggregation service. All your News in one place
## 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+2022>Cute but Boricua Loco<U+2022> <U+2022>Philosophy in Art <U+2022> <U+2022>Psychological Drama<U+2022>
## 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I'm the real #HarveySpecter and I live life 2 the max! Avid Defender of facts, truth and reasoning.
## 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Always on tour, barely on Twitter <U+0001F937><U+0001F3FD><U+200D>♂<U+FE0F> Caribbean buoy livin’ the musical dream in Canada! <U+0001F1F9><U+0001F1F9><U+270A><U+0001F3FD><U+0001F1E8><U+0001F1E6> #IslandSoul
## 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am a Fan of #IndianArmy   @imVkohli and @Narendramodi sir . you all are pleasure of India !
## 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Married to Leo<U+0001F618>for 32 years. BLESSED by Logan, Hannah, and our 1st grandson, Levi. Jesus Follower, PROUD WV #55Strong Teacher, Rock and Roller,#Hope4Lorenzo<U+2757><U+FE0F>
## 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @ParkerHannifin is a leader in motion and control technology and systems. Parker provides comfort, convenience and control through #Refrigeration #HVAC
## 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A Gen-X blerd in Ohio and a hardcore Clinton-Obama-Biden Democrat. Liberal not progressive. #yibambe
## 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dowser, Reiki Practitioner, animal lover, Complex PTSD survivor, #MeToo, volunteer, activist #RESIST
## 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Research engineer at Mozilla
## 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Updates covering Bishop's Stortford, Buntingford, Hertford, Sawbridgeworth and Ware. Report crime at https://t.co/zJoY04WI70. Twitter is not a reporting method.
## 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Labor & employment attorney @NILC; formerly @NYCDCA; @NYSLabor; @TXCivilRights; @DCEJC; @CDMigrante; @ucizoni. @NUSL; @Reed_College_ alum.
## 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SCRIPT is an internationally renowned law and technology research centre at @UoELawSchool, a leader in distance learning & home of online journal @Scripted_Jrnl
## 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lecturer and Co-Deputy Director Human Rights Centre @EssexHRC, School of Law and Human Rights Centre, University of Essex.
## 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Homeschooling witchy queer folx Mama <U+0001F43B> for my son & trans son<U+0001F308> My husband is my HS Sweetie <U+0001F49E> I make things with love and intention. They/Them #EMPATHYorBUST
## 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The official customer support page for Airtel India.
## 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          https://t.co/DJECw2DBO4 <U+0001F1FA><U+0001F1F8><U+0001F30D><U+2764><U+0001F64F>\n\nhttps://t.co/fcXWWjO3bg\nhttps://t.co/A5iqkCUOyv
## 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The kid whose trynna get it\nYou gotta risk it for the biscuit.
## 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               if I die, I die
## 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Raising Winners, Possessing Nations! <U+0001F30D><U+0001F30D><U+0001F30D> Friday Power Night @ 7pm <U+2022> Sunday Worship Experience @ 8am, 10:15am, & 12:30pm
## 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Manager hedge fund, AI based portfolio and data analysis
## 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I run Dream Wattz and Baby Boss Bakers together with my wife. Wishing everybody can be nice and kind, so the world will be full of friends.
## 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ink-stained wretch for @mercnews; @ucsantabarbara/@USC alum. Breaking news reporter, occasional video game scribe. Tips: jason.green@bayareanewsgroup.com
## 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Guy interested in gay news, human-rights, equality, developments, actions, matters.....
## 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Proud husband, father and Steelers fan. Carnegie Mellon University, University of Illinois, The New School. Opinions are my own.
## 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Amarula Cream Liqueur. Made from Marula Fruit. Made from Africa. Must be of legal drinking age to follow.
## 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We’re a full-service digital agency <U+0001F4F1>creating <U+0001F3A5> moments that connect. <U+0001F680> #B2B #SMB @wisitia @hubspot Partner. 20% Proceeds go to Pet Charities
## 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I wake up early @ktxs_news | Semi-professional movie, sports & music enthusiast | Proud @NewhouseSU Alum <U+0001F34A> | MD Native, Transplant Texan
## 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #humanrights , #Domesticviolence #VAWA , #womensrights , #targetedindividual overt and covert abuse of power, #spiritual ,#Health and #Love #EmpoweredIndividual
## 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Oncology. START Madrid-Fundacion Jimenez Diaz -
## 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DCUC is the premier defense trade association representing the interests of defense credit unions serving the U.S. Armed Forces.  RTs are not endorsements.
## 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Palmdale Regional Medical Center is an exceptional acute care hospital and medical center that serves the Antelope Valley and surrounding areas.
## 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <U+0001F47B> adkarugu2325                                             <U+0001F4F8> they_call_me_karugu
## 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             [Family] [Digital Solutions] [Basketball] [Canucks] [Geek] [Will model for T shirts] <U+0001F913>
## 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Industrial Supplies, Hand and Power Tools and Experienced Sourcing Specialists in Burton Upon Trent, Staffordshire
## 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #SFNative #GreenNewDeal #BernieSquad #Medicare4all, Rhapsode, Musician, Educator for a more sacred, sustainable, and just world for all #Bernie2020
## 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <U+0001F1EE><U+0001F1F3>Twitter handle of IDU-YouTube                                    \nCommunity of 2 Lakh+ Defence Enthusiasts\n                <U+0001F396><U+FE0F>Defence/Strategic/Geopolitics
## 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     io vi amo tutti pero amo me stessa di piu
## 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amateur skier and #fintech tragic. Proud co-founder at @CledaraHQ. Ex @Railsbank, @EBRD and @dopayHQ. @Techstars mentor. London via Australia.
## 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Local 12 is #Cincinnati's trusted source for breaking news & complete coverage from the Weather Authority! Add us on Snapchat: Local12
## 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Insights & inspiration for #innovation professionals. Brightidea is the industry leader in corporate innovation management software.
## 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MIAMI <U+0001F1F5><U+0001F1EA><U+0001F1FA><U+0001F1F8> #FAU #Barca #Juve #Heat #Dolphins #HollywoodFlorida <U+0001F3E0>
## 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cars/Video Games/Rockets.......and other cool things. :). My opinions are my own and not the views of my employer.
## 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Je vous accompagne dans tous vos projets immobiliers sur Toulouse et alentours ! #toulouse #immobilier #investissement #thedoorman
## 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Official tweets from National Guard Bureau. National Guard: America's First Military Responders. (Following, RTs & links ≠ endorsement.)
## 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * Workaholic \n* Mgr @djvenumofficial \n* Compere\n* Hype \n* Events\n* PR Consultant \n* Music Promo\n* Dm open for jobs/bookings\n* @acmilan <U+0001F497> \n#KKMgt <U+0001F451>
## 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD candidate at RGGS at the @AMNH. Microbiomes, metabarcoding, and parasitology of bats. Herp hobbyist. (She/Her).
## 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Twin Mommy to the two most beautiful souls on the planet. God lover. I fish. I game. I love my animals. I also love steak and potatoes.
## 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ethiopian News and Views.
## 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Copies of real letters delivered to the President, Congress, Governors, and State Legislators. Send 'resist' as a Direct Message to @resistbot to write yours.
## 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   “The life of a nation is secure only while the nation is honest, truthful and virtuous.” ~Frederick Douglass. Still working on behalf of the rule of law.
## 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             who the hell am i
## 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Provincial Health Services Authority of BC. Health news and resources for all British Columbians.
## 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Support human #freedom ,pure #democrat , against #corruption\n,life like #children ,\nAmerica is a beautiful park ..
## 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Mobile-first digital news platform. We are the signal over the noise!
## 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Waiting for the return of democracy<U+0001F30E>
## 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     National Association of Social Workers - Colorado Chapter
## 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specialist Protein Company - Committed to improving patient lives worldwide through education, collaboration & innovation. Disclaimer http://t.co/hZE2kCnbHz
## 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The new novelist on the block
## 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ayn Rand- “You can ignore reality, but you can't ignore the consequences of ignoring reality”. Navy Seabee Veteran JWPinochle on Parler
## 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Teaching 9th grade Social Studies. Interest in Sustainable Ed, Social Justice, Global Ed, technology, PBL, Literacy, and growing my PLN. http://t.co/3hV8EQ3OLO
## 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <U+0001F3F4><U+000E0067><U+000E0062><U+000E0077><U+000E006C><U+000E0073><U+000E007F>
## 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Queen of Conservatism <U+0001F1FA><U+0001F1F8>#KAG2020, Animal Lover, #EndTheDogMeatTrade, #PROLIFE, #PATRIOT <U+2764><U+FE0F> , #2A, #TrumpTrain, #DRAINTHESWAMP #BUILDTHEWALL #NRA member
## 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  instagram <U+0001F4F8> - justinec84  https://t.co/SrbTrRBmdR <U+0001F43E> snapchat <U+0001F47B> - justinec84
## 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ignites the new way people work in Pattaya.<U+0001F680>
## 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Recently named as one of the Top 20 Big Data Influencers by Forbes Magazine, Rich Brueckner is an avid writer, publisher, and technology pundit focused on HPC.
## 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Adult survivor of childhood torture, LGBTQ+ Evangelical Christian hate and violence. Trans by malpractice. Artist/Painter #VoteBlueNoMatterWho
## 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #JusticeForJohnnyDepp July Johnny Depp vs The Sun! Amber Heard admits in audio tapes she repeatedly abused Johnny Depp!
## 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Conscientious Capitalist #conscientiouscapitalism #servantleadership #salesprocess #consulting  How you make money matters.
## 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A twice-weekly local newspaper, covering county Donegal.\nPart of the @DonegalLiveNews team.\nFollow us on Instagram: https://t.co/4oLa8VWoh2
## 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A digital media firm driving and promoting #entrepreneurs, #startups, #innovations and #talents  in AFRICA
## 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Luck is an Attitude.   Be happy. It really annoys negative people.
## 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Im treasured
## 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        {Stu} JNAU {MB} & MJPRU {Joya Amroha} \n& {Islamic Schoolar} {My Language-<U+0001F449>Hindi English'Urdo Arabi &Farsi}
## 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The English Post (https://t.co/IRJ7iZBC5f) brings to you news from around the world. Contact us - contact@theenglishpost.com
## 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              19 yrs old<U+0001F37C> <U+2022><U+2022> illustration | studying to be something?! | ur gf <U+2022><U+2022> eng ♡ learning jap <U+FF61><U+FF65>:*:<U+FF65><U+FF9F>☆ (´;д;`)
## 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      a peasant that reads is a prince in the making. -Walter Mosley (she/her/hers, history and WL student, student journalist, loves popcorn)
## 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is far easy to fool people than to make them understand they are being fooled.
## 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I. AM. CANADIAN. Hardworking PT student and FT employee, trying to stay afloat.
## 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We have now left the corrupt EU, it will fall soon, the open sea awaits!, I am Free Speech absolutist, Man made Climate change is the greatest HOAX in history.
## 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Don’t Follow Me, I’m Lost Too
## 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Providing free legal assistance to people in poverty and other vulnerable communities in metropolitan Chicago. \n#EqualJusticeBeginsHere #LegalAidMatters
## 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ceo of Thesame innovation . Based in Annecy (France). Specialist of robotics and mechatronics. Space and mountain addict !
## 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  https://t.co/kGo11EN8UG offers inside news on federal health and safety regulation. Start a free 30-day trial today: https://t.co/E1ld9v8u9G
## 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             _7_Nov <U+0001F942> II Scorpion II Nedian II Chemical Engineer to be <U+0001F495>
## 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Vice President, Immigration Policy, Center for American Progress @amprog/@capaction. Formerly @HouseJudDems @aclu @AmeriCorpsNCCC All views my own. He/Him/His
## 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Broadcast journalist @France24 || VJ (for a glorious hot minute) @AFP.\nTri-national. Morbidly curious. Friend to all dogs <U+0001F436> Tweeting/opining own thoughts.
## 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Artist, Journalist/Editor Researcher/Writer, Goodwill Ambassador to Palestine (ICSPR), Holistic Dr
## 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I teach people how to retire! <U+2022> @InvestmentNews 40 Under 40 <U+2022> @Investopedia Top 100 Advisor <U+2022> Podcaster, Dadx6, Combat Vet, Reluctant Exerciser (Tweets≠advice)
## 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DigitalMarketer | developer | Leader&reader|| Human || VISIT RWANDA ,VISIT RWANDA & VISIT RWANDA <U+0001F1F7><U+0001F1FC> .
## 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Technical swing trader - stocks, commodities, ETFs, options. Always looking for breakouts & the change in trend <U+0001F4C8> M.S. TechComm @rpi Tweets are opinion only
## 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Official Twitter account of the City of Roseville municipal government.  Terms of use: http://t.co/P9LtJpaPML
## 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Cynically political unaffiliated pessimist. #BLUEdownballot
## 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Businesswoman\nOwner & Founder @kimallusvietnam
## 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  <U+0001F47D>
## 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tracking developments on the UK’s Integrated Strategic Defence Foreign Policy Review. Hoping for a transparent process w/ the public + #CivilSociety. \nBy @UNAUK
## 998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## 999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #YOLO-You Only Live Once|#poker|#baccarat|#weed|#karmawillprevail|#kindness|#footballbetting|#doobie|#CannabisCommunity|#endgunviolence|#FBR|#Resist|<U+0001F1FA><U+0001F1F8>
## 1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wife, mom,peds, organic gardener. writer, speaker. Co-founder Practicing Physicians of America. I am4 HC access at lower cost. #sunshine4all I write in my robe!
## 1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CPA | 25 | Leo | Red Warrior
## 1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ret. UN official. Indian in Japan. Liberal. RTs are food for thought. #Resister #EndFamilyDetention #EnoughIsEnough #FBR #GreenNewDeal 2020 <U+0001F30A>across the USA.
## 1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <U+264E><U+FE0F>
## 1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 News and information from @virginia_tech's Media Relations team <U+0001F449><U+0001F3FD> @MWStowe, @foy409, @ShannonAndrea1, @JordanFifer, and @CeciLeonard.
## 1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Freelance Marketer, Content Strategy, Inbound Specialist. If you need help with marketing - writing content, running ads, Hubspot help, pls message me
## 1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JESUS IS RISEN <U+271D><U+FE0F>TRUMP2020<U+0001F1FA><U+0001F1F8> writer. artist. voice actress. singer. animator.
## 1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Founder of Susan's Place Transgender Resources, world's largest #transgender website. A #PostOp #Trans #woman living her #AuthenticLife in #Tennessee. #LGBTQIA
## 1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is an official CHP Twitter account. For emergencies, call 9-1-1. For questions or comments, call CHP Baldwin Park at (626) 338-1164.
## 1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Foster Mom <U+2764>\nLyricist <U+0001F3BC>\nDisabled Fat Babe \n150K followers on Instagram, join them!: @Lorirambojones <U+0001F495>\n#lorisskincarejourney
## 1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Brand-ambassador for Halifornia clothing apparel!! PROMO CODE: PARISS532860420<U+0001F4C8><U+2B07><U+FE0F>CLICK THE LINK BELOW AND ENROLL IN FOREX<U+0001F4C8><U+2B07><U+FE0F>
## 1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Dr. Carlos hosts  “Inside The Badge” show| tweet along w/ me on #LivePD nights & on forensic psychology|Author- new book coming 2020 “Narcology” <U+0001F46E><U+0001F3FB><U+0001F1FA><U+0001F1F8>
## 1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stay updated always
## 1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thatcher baby, non PC, life long Tory, tend to say what I’m thinking. Retired Retail Manager.
## 1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I'm a red tabby housecat offering commentary on cat matters. I'm a polydactyl Catcadian Cascadian and a Rose City kitty. Im<U+0001F351>\n<U+0001F5FD><U+0001FA78><U+0001F9B7><U+0001F94A>
## 1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Forget the horns, Take the bull by the Balls and squeeze hard!\n\n 2018 Mandela Washington Fellow| Medical Doctor | Maternal Health | Travel | Photography
## 1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        “Tiger got to hunt, bird got to fly;\nMan got to sit and wonder 'why, why, why?'\nTiger got to sleep, bird got to land;\nMan got to tell himself he understand.” KV
## 1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degrees USAF WarLogistics-Aerospace-CriminalJustice-Delta737 NAVY C40 Avionics-Electrical-Autopilot Certified.Fmr.Police,CorrectionalOfficer, Paramedic trained.
## 1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Mark Tempestilli, CAPT, #USNavy (Ret): #NationalSecurity & #DefensePolicy, #Strategy & #Foresight, #Military/#Maritime Ops/Capabilities. Artist. Baseball lover.
## 1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Artist photographer, using analogue techniques and kit cameras to capture movement and light as an art form. Educator and MA graduate Leeds Arts University.
## 1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I Support @vaticancatholic 100%, You can find me on LBRY at https://t.co/drtlix9ZZP…
## 1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Jocelyn Burzuik - President of Sundance Construction, Red River Metis, and with a military background. Advocate for clean drinking water in MB, and smart energy
## 1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Site Reliability Engineer. Automation. Crossfitter, baseball, basketball, soccer and weightlifting fan.
## 1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Detail oriented witty common sense guru that can see the big picture. I take my cue from #Trump. #MAGA #KAG #TRUMP2020 #Christian #Americafirst
## 1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <U+2022> Est.1986 | #GoWarriors<U+2694><U+FE0F><U+2063> <U+2022> Lutheran, Christian<U+2063><U+2063> <U+2022> Co-Education HS 9-12<U+2063><U+2063> <U+2022> College Prep Academics<U+2063><U+2063> <U+2022> Excellent Faculty<U+2063><U+2063> <U+2022> Student Opportunities<U+2063>
## 1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Chemical Processing serves engineers designing and operating plants in the chemical industry.
## 1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Don't follow me if you can't stand the truth. 'Everything fits when you know the Truth'.    Bottom line;  "God wins!"
## 1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          News updates from Malaysia's top English-language daily and website
## 1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A coward who has decided to play horror games and film his pathethic reactions.
## 1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Award-winning journalist | Deputy Managing Editor at @ehstar | EMT |@CofC grad | one of @Nas' biggest fans
## 1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lifeist <U+273A> Complexity, openness, interconnectedness, care <U+273A> Solidarity not BS <U+273A> “the world appears as an infinite storm of beauty” -John Muir <U+273A> https://t.co/Lta9Mbh7e8
## 1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Development Economist | Working for Gender Equity & Health | Passionate about Data-Driven Policy \n<U+2022>@WorldBank @UNICEF @WGHPakistan @P2Impact<U+2022> \nRT ≠ Endorsement
## 1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wanderer, wonderer.
## 1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Leading an Independent Living movement in NY with our statewide IL Centers to bring down barriers, change attitudes, and fight for the civil rights of PwDs.
## 1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shawarma Enthusiast // Apolitical
## 1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Burnt out #democracysausage <U+0001F5F3>enthusiast. Policy @ #YWCA #CBR tweets abt <U+26BD><U+FE0F> #sport is the great equaliser #theworldgame is life <U+2764><U+FE0F> #LFC #unionist <U+2692> #coach <U+0001F469><U+200D><U+0001F467>
## 1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wildlife/Nature photographer. it’s just a hobby.
## 1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Currently @EYnews. Writing about what I find interesting at https://t.co/rEGDxu0GRN. Via negativa.
## 1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Investigative/enterprise reporter at Courier Journal in Louisville, Ky. focused on the opioid crisis. Haven't made bank$$ on my Derby horse picks - yet.
## 1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Vice-Chairman of AQUATREAT <U+0001F1EA><U+0001F1EC> <U+0001F1EC><U+0001F1E7> <U+0001F1E8><U+0001F1E6>.
## 1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I Don’t Steal I Borrow <U+0001F4AF><U+0001F608>
## 1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MUSIC LABEL - PUBLISHING\nhttps://t.co/aeUSB5D7YE
## 1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get predatory Pharma out of my life
## 1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trust ALL vibes & energy...the good, the bad, and the ugly <U+0001F318><U+0001FA90><U+2728> Wisdom is an anchor<U+2693><U+FE0F> PROUD Lesbian<U+0001F308> Mostly political and LGBTQ tweets  #DemExit2020 <U+270C><U+0001F3FD>
## 1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ontario FDK Teacher <U+2022> Teacher Blogger at A Pinch of Kinder: https://t.co/hnGJrMJXVb
## 1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           USAF(RET):1996-2016 Security Forces. 2010-2014: PMC AFG/Iraq. #Seahawks fan ,Married. trust dogs more than people.
## 1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Interests: Organic, farming,gardening,health,arts,crafts,wildlife,metal music,Comp's,Keto, Survivor  C-PTSD.Agoraphobia,social anxiety. CFS & chronic pain
## 1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The inherent vice of capitalism is the unequal sharing of blessings. The inherent virtue of socialism is the equal sharing of miseries. -Winston Churchill
## 1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        a hook-handed creature made flesh by other people’s belief in (them)\n\n@thesecondcity etc 44 and 45
## 1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Rural and Remote Medical Services Ltd is a charity that delivers local medical services to rural, remote and Indigenous communities in Australia.
## 1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #FBR Democrat Musician #ClimateChangeIsReal #MusiciansAgainstTrump #BlackLivesMatter #DACA #EmptyThePews
## 1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Relations Officer @\nEuropean Association for External Relations.\nModel #UN enthusiast, \n#VietnamNationalUniversity, #ULIS.
## 1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We are a private-public partnership to help businesses grow in Hampshire & Surrey. Tweets by the Enterprise M3 team because we all care.
## 1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   QPM. Chief Constable of Leicester, Leicestershire & Rutland. @PoliceChiefs lead PREVENT. Trustee @UK_COPS.
## 1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             City/county/political/biz news chaser ON DEADLINE for @WMCActionNews5 #NBC/#Memphis. MBA student @uofmemphis <U+0001F42F> 901 native, @utjem alum <U+0001F34A>kdowning@wmctv.com
## 1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deputy AD/COO at George Mason University. Member of Atlantic 10 Conference. RT's don't imply agreement (usually). Candor is my own. Pax et bonum.
## 1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A new magazine from The @Spectator, bringing a quality of argument you won't find elsewhere to America's politics, culture, society, and more. Subscribe below.
## 1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stand up ~ flame-haired menace ~ award-winning writer ~ leicester square new comedian semi finalist 2019 ~ co-parent of a delinquent podcast baby @queersgoneby
## 1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Expert and Consultant in Management & Training.  Writing, Editing, and Analysing political , economical and cultural issues.
## 1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Online news network owned by Buzzicati media.\nMusic, News, Lifestyle, Relationship. #buzzicati
## 1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Music
## 1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     An integrative nutrition health coach showing you how to eat and cook based on individual blood types so you can achieve optimal health.
## 1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Freedom Graduate, J.A.F. on SoundCloud, BPGhost72 on Twitch/ 3/14
## 1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Breaking news, analysis, and opinion. Founded in 1877. Our staff on Twitter: https://t.co/VV0UBAMHg8
## 1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Dallas-Fort Worth's Radio Station for News, Weather and Traffic. Streaming at https://t.co/7AN9mv5g7x
## 1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Designing the future.
## 1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Our Revolution in Boulder County, Colorado
## 1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharmacist, Stock-trader,  Mensa Member, Vietnam Vet and Journalist
## 1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who do you trust when corruption and lust, creed of all the unjust, leaves you empty and unwhole?
## 1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ask me about being happy
## 1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Entertainment & Music Magazine- your all-access pass to pop culture - one Click at a time. https://t.co/o4lX8O36D0 Snapchat: clickonthisshow
## 1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Founder @LiveLawIndia| Ex-Editorial Consultant-@LexisNexisIndia | Revising Author RatanLal Dhiraj Lal IPC. Personal, RTs r not endorsements
## 1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Some kind of crazy liquor and cheeseburger party gone exactly as planned. <U+0001F47D>
## 1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Follow us for the latest breaking news and weather conditions in West Michigan. Official account of WOOD TV8.
## 1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Anchor/Reporter for @texomashomepage. @UofOklahoma Alum. Covering the Wichita Falls, TX/Lawton, OK area. Opinions are my own. Email: JSpor@KFDX.com
## 1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I'm not here.
## 1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I BLOCK #MAGACult Members #NotMyPresident #DemCastOR #VivaLaResistance! <U+0001F30A><U+0001F1FA><U+0001F1F8><U+0001F30A><U+0001F1FA><U+0001F1F8><U+0001F30A><U+0001F1FA><U+0001F1F8> #NeverTrumper #Resist #VoteBlue2020 #FBR *Advocate For Animals*
## 1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Official Twitter Page of Nigeria’s independent fully-automated news aggregation service. All your News in one place
## 1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             keepin' it real.
## 1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Don't blame me I voted for the email lady <U+0001F937>\n<U+25AA><U+FE0F> Moderate<U+25AA><U+FE0F>Atheist<U+25AA><U+FE0F>Feminist\n<U+25AA><U+FE0F>Pro-choice\n\n#LupusWarrior\n\n#TeamPeteForever\n\n#DonateLife ♥<U+FE0F>\n\n#AdoptDontShop <U+0001F408><U+0001F415><U+0001F43E>
## 1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Husband. Father of three. Runner. Montana's 24th Governor.
## 1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Journalist gone bad - lawyer and subversive element.
## 1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Dr. Wilda V. Heard, or Dr. Wilda, has a J.D. from Yale Law School and a doctorate in Education Leadership from Seattle University.
## 1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @WGR550 Producer. @MarqueeGrand bass guy. He/him.
## 1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I write for Inside Film, C21 Media and manage the Content Cafe blog for Creative Content Australia
## 1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Developer... <U+0001F4BB>  \nFootballer... <U+26BD> \nAnd so much more... <U+0001F609>\n~ Simply UNLIMITED...
## 1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Game Designer. Canadian Theatre Artist, Stage Manager/Technician. Artist.  Writer. Gamer. DM. All insane writings are mine alone. Online as: Ravynn. He/Him
## 1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Big fan of Jang Keun Suk<U+2763><U+FE0F>
## 1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Coolest
## 1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Journalist, editor, photographer. See my work at Imaging Resource, DPReview and Internet Brands Automotive sites. Opinions expressed are my own.
## 1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Truth needs no Champion, for it is of itself the 'Champion of Champions'. A <U+0001F308>is the symbol of God's Covenant 2 All.  <U+0001F6AB>Antisemites  <U+271D><U+FE0F><U+0001F1FA><U+0001F1F8><U+0001F1EE><U+0001F1F1> #Trump2020
## 1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        WTVY is Your Hometown News Leader, providing the latest news, weather and sports. This is the only official Twitter account for WTVY.
## 1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         "I feel the need..."
## 1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Izmir <U+2763> 19<U+0001F33F>7\nDumlupınar Universitesi <U+0001F3C6>
## 1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Official Oklahoma State Department of Health twitter page
## 1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## 1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Only the Sun covers the Caribbean better.
## 1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        living life by oxygen...leading life by LAWxygen.....
## 1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rural Physician, Coroner, Emergency Medicine Advocate, Underemployed Sommelier and Father of Triplets.
## 1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   vegan,gamer,goth/rock/steampunk/cats/music/poems/quotes.I wont answer many replies to my tweets or my opinion to your opinion <U+0001F60A>
## 1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Arizona Newspapers Association has been uniting strong newspapers for a better Arizona since 1939. Follow us for the latest journalism news.
## 1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        just call me awesome!
## 1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Comedy Six Nations Rugby League Movies HaHa Weird <U+0001F308>
## 1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hard-hitting nonprofit news site covering politics and policy across Michigan. Your place for the best progressive commentary in the state.
## 1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           St. Edward’s University Assistant  XC/Track Coach  <U+0001F4F1>  3343721820                                                    <U+0001F4BB>sbrooks1@stedwards.edu
##                          url protected followers_count friends_count
## 1                       <NA>     FALSE           20632         19382
## 2    https://t.co/0328ay48F3     FALSE             646           245
## 3     http://t.co/mt90PPmC6e     FALSE            1809          1425
## 4                       <NA>     FALSE            7735           601
## 5    https://t.co/N3cx4YV57E     FALSE            7984          5622
## 6    https://t.co/dGODqzFl4z     FALSE          314427           727
## 7    https://t.co/0qBXe7Lr1A     FALSE           40827           292
## 8    https://t.co/neH2HJHuLB     FALSE          127762          3045
## 9    https://t.co/aFWmbMkF2u     FALSE             684          2908
## 10                      <NA>     FALSE             270             2
## 11                      <NA>     FALSE            9257           469
## 12                      <NA>     FALSE             548          2375
## 13   https://t.co/zTrBLJV9DX     FALSE             424          1178
## 14                      <NA>     FALSE              14            40
## 15                      <NA>     FALSE             631          1343
## 16                      <NA>     FALSE             403           432
## 17   https://t.co/l6TKuLL0u9     FALSE             865           954
## 18                      <NA>     FALSE               6           123
## 19   https://t.co/EN1Y2K5eDp     FALSE             208            30
## 20   https://t.co/Pq3AMwMwzI     FALSE            1008          1603
## 21                      <NA>     FALSE             220           878
## 22    http://t.co/xxJKPl2etp     FALSE            6300          1485
## 23   https://t.co/2VqVyfO668     FALSE            4005          1194
## 24   https://t.co/g066HOf9e6     FALSE            1365           449
## 25   https://t.co/FIoOnTRkgv     FALSE              47             0
## 26   https://t.co/C0MzOosndO     FALSE            1243           979
## 27   https://t.co/q38Xuy3Jw8     FALSE            2052          1517
## 28                      <NA>     FALSE              12            37
## 29                      <NA>     FALSE              91            88
## 30                      <NA>     FALSE             166           325
## 31                      <NA>     FALSE             331           355
## 32   https://t.co/eQ8Ss59UZT     FALSE           75788          3015
## 33   https://t.co/HFnGhSL53V     FALSE            4005           900
## 34   https://t.co/iQ52u2HM0v     FALSE           27357          2789
## 35   https://t.co/vMIbWp5RC0     FALSE             285          1053
## 36                      <NA>     FALSE              92           114
## 37                      <NA>     FALSE           23579          2099
## 38   https://t.co/8k5AnLgWz4     FALSE            1774          1818
## 39   https://t.co/eRUzkUYnDs     FALSE               1             0
## 40   https://t.co/bFoyjAp1W6     FALSE             170           140
## 41                      <NA>     FALSE            2977          3922
## 42   https://t.co/OIpV0AUA5W     FALSE            3405           166
## 43   https://t.co/UHm4LfjlSd     FALSE           49506         17338
## 44   https://t.co/qpTG7hy6b6     FALSE           11304         12424
## 45   https://t.co/UOHMiF5M5R     FALSE             780           823
## 46                      <NA>     FALSE              93            14
## 47                      <NA>     FALSE            1623           562
## 48   https://t.co/1biy1D3Fn2     FALSE            4530          1025
## 49   https://t.co/dMcMAp8y0w     FALSE            2019          1294
## 50   https://t.co/bvVyaC87zu     FALSE             986          1374
## 51                      <NA>     FALSE            1430           890
## 52   https://t.co/QB2dGROL4z     FALSE            7025             1
## 53                      <NA>     FALSE               3            84
## 54   https://t.co/af3EW8Cac3     FALSE            5742           443
## 55                      <NA>     FALSE               1             0
## 56                      <NA>     FALSE             165           610
## 57                      <NA>     FALSE              64           215
## 58   https://t.co/u9wbJPT1c8     FALSE              60           153
## 59   https://t.co/7Ct2VXMx64     FALSE          282776          1286
## 60                      <NA>     FALSE              18           766
## 61                      <NA>     FALSE              39            55
## 62   https://t.co/GKSDlOVoZy     FALSE            2707          3117
## 63   https://t.co/cB8RznMy96     FALSE          267501           735
## 64   https://t.co/0Af7dV3iWW     FALSE            2160          1318
## 65                      <NA>     FALSE             340          1489
## 66   https://t.co/vCRUN61Gqx     FALSE            1024           819
## 67    http://t.co/gsMMzSt0XK     FALSE            1820          2062
## 68                      <NA>     FALSE            8191          6843
## 69   https://t.co/5utFPTNlYr     FALSE           25461           975
## 70                      <NA>     FALSE             375           550
## 71    http://t.co/uDJFPwuEOt     FALSE           46129          1038
## 72                      <NA>     FALSE               1             8
## 73   https://t.co/PDsxPymgVO     FALSE              23             3
## 74                      <NA>     FALSE              24            51
## 75   https://t.co/NreUfNxX5I     FALSE             990          1430
## 76                      <NA>     FALSE            1453          1709
## 77                      <NA>     FALSE             125           249
## 78                      <NA>     FALSE             836           863
## 79                      <NA>     FALSE             206           146
## 80    http://t.co/TaRLddVUxx     FALSE           22875          3199
## 81                      <NA>     FALSE             136           278
## 82   https://t.co/1kPztZQ07u     FALSE             520           119
## 83   https://t.co/cS9fbJslNC     FALSE            3309          3317
## 84                      <NA>     FALSE              59           154
## 85   https://t.co/QdloKZ7sMQ     FALSE            1193           287
## 86                      <NA>     FALSE              67           820
## 87                      <NA>     FALSE             998          2052
## 88   https://t.co/eCTiAv0vJc     FALSE            1513           215
## 89    http://t.co/M5rfGOW0R9     FALSE           39757          1584
## 90                      <NA>     FALSE               1             6
## 91   https://t.co/mjSFTqRISR     FALSE              62           521
## 92                      <NA>     FALSE              21            86
## 93    http://t.co/s6YQUMB0NH     FALSE          842077           626
## 94    http://t.co/1gkED7r9Tg     FALSE            5187            51
## 95   https://t.co/eRey9OskxL     FALSE            3050          5000
## 96    http://t.co/ovYCNxttZK     FALSE            6893          1045
## 97                      <NA>     FALSE              37           104
## 98   https://t.co/wqkmfTbqUK     FALSE            1714          1968
## 99   https://t.co/22QuwydOZS     FALSE              12             2
## 100                     <NA>     FALSE             122          2316
## 101  https://t.co/sMxkGhY7IR     FALSE             208           770
## 102                     <NA>     FALSE             147           205
## 103                     <NA>     FALSE               1            44
## 104                     <NA>     FALSE               5            55
## 105                     <NA>     FALSE             123           143
## 106  https://t.co/WmRGZCFfD1     FALSE             665          1451
## 107                     <NA>     FALSE              22             0
## 108                     <NA>     FALSE             415          1251
## 109                     <NA>     FALSE             469           585
## 110  https://t.co/bDGXkRhq5i     FALSE            1606           854
## 111                     <NA>     FALSE             131           304
## 112  https://t.co/uqVwAAPbAj     FALSE             420           669
## 113   http://t.co/vXapDcs08j     FALSE           16397          2636
## 114                     <NA>     FALSE            3788          4695
## 115  https://t.co/X715e787l2     FALSE             115           130
## 116                     <NA>     FALSE               0            21
## 117  https://t.co/6m8gWgRmcj     FALSE           63120           925
## 118  https://t.co/AN7SjyEvxa     FALSE             641          1141
## 119                     <NA>     FALSE              19           121
## 120                     <NA>     FALSE             479           530
## 121  https://t.co/V28swHq20i     FALSE            1030          1569
## 122  https://t.co/vrOlKPb7i6     FALSE             797          3218
## 123                     <NA>     FALSE              84           124
## 124  https://t.co/R83VMqokle     FALSE          358738           400
## 125                     <NA>     FALSE              26           186
## 126                     <NA>     FALSE             950          1081
## 127  https://t.co/Wa1nDZ0VGs     FALSE            1272           410
## 128  https://t.co/n3MCXKSIDS     FALSE            1571           182
## 129  https://t.co/hkg44aVyOw     FALSE            7559          1299
## 130  https://t.co/kLq7wOLdnT     FALSE            2210          2484
## 131  https://t.co/0Bw35pzS5M     FALSE            1209          1018
## 132  https://t.co/ni4vIbf4bL     FALSE             627          5002
## 133   http://t.co/ZVBPuKEn9y     FALSE             832           626
## 134  https://t.co/ZLuSJEUiRW     FALSE             345            53
## 135                     <NA>     FALSE            4521          5001
## 136                     <NA>     FALSE            4881          5367
## 137                     <NA>     FALSE            6403          6437
## 138  https://t.co/XNTN3yjeZy     FALSE              16           209
## 139  https://t.co/JZO6q1QQuW     FALSE            1832          1336
## 140   http://t.co/widVzyBCtO     FALSE            2150           199
## 141                     <NA>     FALSE             124           292
## 142   http://t.co/HZC3cK1YdS     FALSE            5568           594
## 143  https://t.co/mO6uAEOIJs     FALSE             892          4952
## 144                     <NA>     FALSE             691           780
## 145  https://t.co/8KBQsdVPmN     FALSE              88            66
## 146                     <NA>     FALSE             119           836
## 147  https://t.co/hnR1QTplsC     FALSE              69             3
## 148                     <NA>     FALSE            1154          1383
## 149  https://t.co/MUNiUet9eG     FALSE             177            20
## 150                     <NA>     FALSE              69           147
## 151  https://t.co/dg7YKM880J     FALSE             405           724
## 152  https://t.co/TDKqpI3H8z     FALSE           33797          3509
## 153   http://t.co/rm54mkUvN4     FALSE             894           200
## 154  https://t.co/UgEyDgqY7U     FALSE            1612           697
## 155  https://t.co/4qieGHzGJ0     FALSE            6859          2227
## 156                     <NA>     FALSE              19           214
## 157  https://t.co/FWKEasEexU     FALSE             816          1774
## 158  https://t.co/kEGkcw1phT     FALSE           13278         11444
## 159  https://t.co/DW4X2QDE5i     FALSE            5013          5075
## 160  https://t.co/iJ8zsTsucy     FALSE           11237          7781
## 161  https://t.co/eH14zkOUud     FALSE             579          1278
## 162   http://t.co/jk6qwaIhbh     FALSE           56831           950
## 163                     <NA>     FALSE             307          1658
## 164  https://t.co/ZDwAdsawmP     FALSE            1132           558
## 165  https://t.co/3ahffEslE5     FALSE           37651         39796
## 166  https://t.co/7TNpCyEiSV     FALSE          148500           274
## 167                     <NA>     FALSE               1            16
## 168                     <NA>     FALSE             166           332
## 169  https://t.co/i6iKC0qmwM     FALSE          132319            32
## 170  https://t.co/TMwqzW4AyL     FALSE              51           242
## 171  https://t.co/wxdxy4DiDW     FALSE             443          1272
## 172                     <NA>     FALSE             324          1279
## 173                     <NA>     FALSE             765           525
## 174                     <NA>     FALSE               1             9
## 175  https://t.co/85gdbUAaZ1     FALSE            1526          5001
## 176  https://t.co/7xjcnszH7z     FALSE            1741             8
## 177  https://t.co/BzEJJiOkAf     FALSE            1064            96
## 178                     <NA>     FALSE             302           462
## 179  https://t.co/XV86XsMR6I     FALSE            9791           209
## 180                     <NA>     FALSE            4246          3795
## 181  https://t.co/ZABLSrpbLR     FALSE             730            96
## 182                     <NA>     FALSE               0            25
## 183                     <NA>     FALSE              39           306
## 184  https://t.co/sIkoWXiByl     FALSE            3367          4758
## 185                     <NA>     FALSE            1848           336
## 186  https://t.co/VYF5PdVXJh     FALSE              80           352
## 187                     <NA>     FALSE             277           971
## 188  https://t.co/FaTKPc03D7     FALSE            2068          4999
## 189                     <NA>     FALSE              45           350
## 190  https://t.co/Fj0lYWASgy     FALSE            1444          1052
## 191                     <NA>     FALSE            1534           745
## 192                     <NA>     FALSE             255           779
## 193  https://t.co/L2x7B0jzkl     FALSE            3965           559
## 194                     <NA>     FALSE            1328            21
## 195  https://t.co/hx14Yc9Czc     FALSE             294           420
## 196  https://t.co/war2B3GasN     FALSE           72945          1065
## 197                     <NA>     FALSE             197          1029
## 198                     <NA>     FALSE              15            37
## 199                     <NA>     FALSE              93           205
## 200  https://t.co/Hyu1aFglNs     FALSE               0            22
## 201                     <NA>     FALSE           15060            73
## 202                     <NA>     FALSE             264            52
## 203  https://t.co/MDWOcoBInJ     FALSE            2768          2473
## 204  https://t.co/y6spMHacnW     FALSE              84           349
## 205  https://t.co/nB15ggFUeC     FALSE           24350         14476
## 206  https://t.co/coVlFixTY3     FALSE             314           193
## 207   http://t.co/i8YzHTtmB7     FALSE           30007         19666
## 208                     <NA>     FALSE               1            21
## 209                     <NA>     FALSE            1581          1778
## 210                     <NA>     FALSE              15            53
## 211                     <NA>     FALSE              62           109
## 212  https://t.co/HU4O3qSuSK     FALSE          185204          1733
## 213                     <NA>     FALSE               9            27
## 214  https://t.co/tmMpVxbBJZ     FALSE          143576        108512
## 215                     <NA>     FALSE            7119          8144
## 216  https://t.co/JR86ag8asj     FALSE           16024         10878
## 217  https://t.co/Pp9sifiU7f     FALSE              85            74
## 218  https://t.co/XQ9azpBWvp     FALSE            1165           793
## 219                     <NA>     FALSE            1758           338
## 220                     <NA>     FALSE              75           311
## 221   http://t.co/wQTvR4mDC8     FALSE           68079          2819
## 222  https://t.co/JHxxwMiJDw     FALSE             409           414
## 223  https://t.co/kuxGoO7GhN     FALSE            1871           701
## 224                     <NA>     FALSE             489           140
## 225  https://t.co/L1jqjUCxuc     FALSE              24           204
## 226                     <NA>     FALSE            1463           477
## 227                     <NA>     FALSE             362           324
## 228                     <NA>     FALSE            1675          2823
## 229                     <NA>     FALSE               4            12
## 230                     <NA>     FALSE               1             6
## 231  https://t.co/BlzUxojm9Y     FALSE           49400         11326
## 232   http://t.co/zeE2LP7Zl4     FALSE            2258           198
## 233  https://t.co/DQPhckY5sO     FALSE           11983          6250
## 234                     <NA>     FALSE             260           284
## 235  https://t.co/V7RB4basi1     FALSE             388           558
## 236                     <NA>     FALSE            2089          2750
## 237   http://t.co/9eA4P4zfF6     FALSE            3692          4227
## 238                     <NA>     FALSE            5349          1063
## 239                     <NA>     FALSE              18           164
## 240                     <NA>     FALSE             113           823
## 241                     <NA>     FALSE            5431          5982
## 242                     <NA>     FALSE              94           972
## 243                     <NA>     FALSE             586           723
## 244                     <NA>     FALSE             781          1058
## 245                     <NA>     FALSE             372            33
## 246                     <NA>     FALSE             258           142
## 247                     <NA>     FALSE            1237           252
## 248  https://t.co/zPNLakBHpV     FALSE             752           830
## 249                     <NA>     FALSE              30            27
## 250                     <NA>     FALSE               3             9
## 251  https://t.co/4DyfCSVDh5     FALSE            3652          1505
## 252                     <NA>     FALSE            2779          2776
## 253   http://t.co/jtmI5KRBmh     FALSE              82           303
## 254                     <NA>     FALSE             111             1
## 255  https://t.co/OdrQ6B6L1L     FALSE          112260           127
## 256  https://t.co/4hvNJHOXeL     FALSE             378          1029
## 257                     <NA>     FALSE             377            87
## 258                     <NA>     FALSE             265           643
## 259                     <NA>     FALSE            1471          2340
## 260  https://t.co/L9u8fGAzoc     FALSE           15333          9122
## 261                     <NA>     FALSE            3333          3425
## 262                     <NA>     FALSE            1686           118
## 263  https://t.co/YJuTyK7tiH     FALSE            1549          2202
## 264                     <NA>     FALSE            1952           716
## 265                     <NA>     FALSE           16576          5574
## 266                     <NA>     FALSE            1495          1651
## 267                     <NA>     FALSE             765           853
## 268   http://t.co/6lMEMUN5Z2     FALSE            3920           111
## 269                     <NA>     FALSE             280           735
## 270                     <NA>     FALSE            6558          1957
## 271  https://t.co/VNnmXDF0d2     FALSE            2341          1175
## 272  https://t.co/sOjArtVKhF     FALSE              56           150
## 273                     <NA>     FALSE               8            59
## 274                     <NA>     FALSE             138           417
## 275                     <NA>     FALSE              24           142
## 276                     <NA>     FALSE             182           320
## 277                     <NA>     FALSE              93           647
## 278  https://t.co/hC177pWfmY     FALSE            1149          2145
## 279   http://t.co/GzvNkqokbC     FALSE             147            68
## 280  https://t.co/k06skxrv2r     FALSE            5214           229
## 281                     <NA>     FALSE             119           464
## 282  https://t.co/uC28P5A65h     FALSE            4659          2515
## 283  https://t.co/dj8qwtAztH     FALSE            5009           164
## 284   http://t.co/WYGsRLr5W0     FALSE            1969          3978
## 285                     <NA>     FALSE            2854          4592
## 286  https://t.co/etNSe9TNfu     FALSE          190800           315
## 287                     <NA>     FALSE             432           668
## 288  https://t.co/KxrK3VRg8Z     FALSE             162           586
## 289  https://t.co/HqZBIDqHy0     FALSE          121600         65448
## 290                     <NA>     FALSE             216           216
## 291  https://t.co/YnWis8hias     FALSE             376           478
## 292  https://t.co/4H8LZp0JIg     FALSE             729            22
## 293                     <NA>     FALSE             112           241
## 294                     <NA>     FALSE               0             0
## 295   http://t.co/R3XH0JVPeB     FALSE              51           396
## 296   http://t.co/jlsBTDtNBb     FALSE           22912          1690
## 297  https://t.co/EQp8z5sH1Y     FALSE             494           618
## 298                     <NA>     FALSE            3291           863
## 299   http://t.co/vsPrPFHp58     FALSE              93           255
## 300                     <NA>     FALSE              59            55
## 301                     <NA>     FALSE            1391          3470
## 302  https://t.co/pQRw9rrYV0     FALSE               1            16
## 303                     <NA>     FALSE              42            77
## 304  https://t.co/0IINFAhxHu     FALSE             321           513
## 305                     <NA>     FALSE             410          2360
## 306                     <NA>     FALSE              20            16
## 307                     <NA>     FALSE             190           203
## 308  https://t.co/Zkdk4Lh9ze     FALSE             258            24
## 309                     <NA>     FALSE             568           821
## 310  https://t.co/ghBPgErpFA     FALSE            1718           728
## 311  https://t.co/EP6Y8dh6xq     FALSE            1428          1848
## 312  https://t.co/CzfRMAodqs     FALSE            1402           262
## 313  https://t.co/sSvOvN7KUU     FALSE           21247          2149
## 314  https://t.co/8UkFggzFdH     FALSE             101           272
## 315   http://t.co/BiOdkjo3Rr     FALSE           10429           353
## 316  https://t.co/jXphN02BhJ     FALSE             122            20
## 317   http://t.co/hqwC7d6jMv     FALSE              87            35
## 318                     <NA>     FALSE              18            11
## 319  https://t.co/pHeMgl9mFv     FALSE             603           465
## 320                     <NA>     FALSE             898           674
## 321                     <NA>     FALSE            4159          4927
## 322  https://t.co/d6cMIoBZWt     FALSE             785           583
## 323                     <NA>     FALSE             346          2197
## 324  https://t.co/wCGi6soMch     FALSE              34            22
## 325  https://t.co/ClNr7ZCZRJ     FALSE            1238          2825
## 326  https://t.co/jmhgQPs8EI     FALSE             727          1123
## 327  https://t.co/pH5OnfCW4O     FALSE            6970          1841
## 328                     <NA>     FALSE             547          3364
## 329   http://t.co/SNmd1oDEZJ     FALSE           43902             7
## 330  https://t.co/LqdSlUIKei     FALSE             128             0
## 331  https://t.co/V6an0vfyp7     FALSE              27           133
## 332                     <NA>     FALSE              50           108
## 333  https://t.co/gyY4HfDgT1     FALSE              85            53
## 334                     <NA>     FALSE           11846          3057
## 335  https://t.co/9HAx5GhWm6     FALSE             478           421
## 336                     <NA>     FALSE             261           184
## 337  https://t.co/nHOxh5UnT4     FALSE             122           129
## 338                     <NA>     FALSE              18            34
## 339  https://t.co/oH9aLSmZlT     FALSE             421           477
## 340                     <NA>     FALSE               2            15
## 341   http://t.co/dkdACU6mTT     FALSE              23            21
## 342                     <NA>     FALSE             158             0
## 343  https://t.co/NSPN2P3HFH     FALSE           19147           860
## 344                     <NA>     FALSE              38           287
## 345                     <NA>     FALSE               6            21
## 346                     <NA>     FALSE             701           568
## 347  https://t.co/QrohZ3aZMo     FALSE           14664          4655
## 348                     <NA>     FALSE               5            69
## 349                     <NA>     FALSE              21           195
## 350   http://t.co/V31VuKzSEB     FALSE             424           166
## 351                     <NA>     FALSE             709           456
## 352   http://t.co/awK7L9aEZE     FALSE            4313           550
## 353   http://t.co/yR6p6Hhctp     FALSE              86           139
## 354  https://t.co/sn8x89C5TL     FALSE          101927          5941
## 355  https://t.co/9xd4MpSsGg     FALSE           30923          1248
## 356  https://t.co/fdv67iW4e3     FALSE          146979           551
## 357  https://t.co/iEFupIbwqq     FALSE             113           883
## 358  https://t.co/fDWIHZQvVs     FALSE            1059           858
## 359                     <NA>     FALSE            2430           203
## 360  https://t.co/aZwEzECV4x     FALSE            4793           247
## 361  https://t.co/mDU23jnOqb     FALSE            1428           667
## 362                     <NA>     FALSE               1            38
## 363                     <NA>     FALSE            5261          1516
## 364                     <NA>     FALSE            1376           957
## 365  https://t.co/aTiB8iwpLy     FALSE           99362          2762
## 366                     <NA>     FALSE             310           578
## 367                     <NA>     FALSE              21            49
## 368                     <NA>     FALSE            1468           569
## 369                     <NA>     FALSE             147          1418
## 370                     <NA>     FALSE             276           337
## 371  https://t.co/wY5gXN4Wst     FALSE           23060            29
## 372                     <NA>     FALSE             100           298
## 373  https://t.co/s6mLMqGRfV     FALSE            9727          1961
## 374                     <NA>     FALSE             359           232
## 375  https://t.co/P1aFmWPbwP     FALSE             692          1236
## 376                     <NA>     FALSE              50           191
## 377  https://t.co/FHaZz772Lb     FALSE              16            20
## 378                     <NA>     FALSE              74           441
## 379                     <NA>     FALSE             819           950
## 380                     <NA>     FALSE            2493          4761
## 381   http://t.co/lc1H8ssL4A     FALSE             785          4467
## 382   http://t.co/lGDl08LMgP     FALSE             172           168
## 383  https://t.co/eqPUE61tam     FALSE              92            80
## 384                     <NA>     FALSE               1           112
## 385                     <NA>     FALSE            2319          1293
## 386                     <NA>     FALSE             273          1386
## 387                     <NA>     FALSE            2156           716
## 388                     <NA>     FALSE               9            96
## 389                     <NA>     FALSE             381          2262
## 390  https://t.co/ygHgpJ7Dbg     FALSE             823          1087
## 391  https://t.co/v3h2jRsd46     FALSE            1119          1149
## 392                     <NA>     FALSE              81            90
## 393                     <NA>     FALSE            3567          1820
## 394  https://t.co/CFnVbZqBXJ     FALSE             496           792
## 395                     <NA>     FALSE              25            18
## 396                     <NA>     FALSE             199           308
## 397  https://t.co/4FQihJG0xz     FALSE            1341          1235
## 398  https://t.co/jrjOLsDCsJ     FALSE            3730           799
## 399  https://t.co/2ZnFQkjPb4     FALSE             521           353
## 400   http://t.co/FHNEqiYceR     FALSE          397407          1812
## 401   http://t.co/MWpJqlWt4M     FALSE          141987           834
## 402  https://t.co/9rA20lFzUF     FALSE               7             8
## 403                     <NA>     FALSE           13911          9450
## 404                     <NA>     FALSE            2222          1516
## 405                     <NA>     FALSE            1435          2974
## 406  https://t.co/LGFKKWVmdP     FALSE            7257           275
## 407   http://t.co/mXHpiVOu9o     FALSE            1028          1025
## 408                     <NA>     FALSE            1493           619
## 409                     <NA>     FALSE             842           875
## 410                     <NA>     FALSE             163            89
## 411                     <NA>     FALSE            2666           336
## 412   http://t.co/7ee0KVFxe1     FALSE            1225           463
## 413                     <NA>     FALSE             509          1208
## 414  https://t.co/GJ4wazyo4p     FALSE              18            38
## 415                     <NA>     FALSE               3            22
## 416  https://t.co/ctJO176ebV     FALSE             947          1006
## 417                     <NA>     FALSE             428           571
## 418                     <NA>     FALSE             100           241
## 419   http://t.co/6hK5qliv4H     FALSE           46102          1429
## 420   http://t.co/N07jjOS1s9     FALSE             432           232
## 421                     <NA>     FALSE              18            62
## 422                     <NA>     FALSE            2483            84
## 423                     <NA>     FALSE            2751          2333
## 424                     <NA>     FALSE              43           214
## 425  https://t.co/xVmBSOUvWg     FALSE         1002937          1336
## 426                     <NA>     FALSE           12206         11222
## 427                     <NA>     FALSE               5           125
## 428                     <NA>     FALSE              37            69
## 429  https://t.co/yD1l5077EC     FALSE          146985         11112
## 430  https://t.co/P1N3HRpvTJ     FALSE             757           234
## 431  https://t.co/IRT5FEfRfi     FALSE            1856           245
## 432   http://t.co/8ZDsLNmOB2     FALSE           19801          1872
## 433                     <NA>     FALSE             313           884
## 434  https://t.co/wPUvQWf4wH     FALSE            3253          3268
## 435  https://t.co/GP9jjhSp6N     FALSE           58699          5378
## 436  https://t.co/chYxY4Q6gA     FALSE             444           258
## 437  https://t.co/cQWqJVZP0p     FALSE             207          1276
## 438                     <NA>     FALSE             445           899
## 439                     <NA>     FALSE           39963            50
## 440  https://t.co/Q0bREvL7aM     FALSE             930            79
## 441  https://t.co/0aXDuZPlsH     FALSE             405           843
## 442   http://t.co/xv7lMaLYAR     FALSE            2327          2843
## 443                     <NA>     FALSE            1432          2018
## 444                     <NA>     FALSE            1135          1594
## 445  https://t.co/e0nGJ46aFy     FALSE            8712          8172
## 446  https://t.co/R17ZYZT3hp     FALSE            3769           729
## 447                     <NA>     FALSE            2215          1747
## 448                     <NA>     FALSE               8           160
## 449                     <NA>     FALSE            1750          2385
## 450                     <NA>     FALSE             701          4010
## 451  https://t.co/FEKXbePH5H     FALSE            2952          2414
## 452                     <NA>     FALSE            6744          6000
## 453   http://t.co/zHapvz0XiF     FALSE         2530729             7
## 454  https://t.co/1CCDyxiPeU     FALSE            4843          1997
## 455                     <NA>     FALSE              18            28
## 456                     <NA>     FALSE               0            32
## 457                     <NA>     FALSE               3            44
## 458                     <NA>     FALSE            2040          1246
## 459  https://t.co/r3xHQJRGNs     FALSE             113           207
## 460                     <NA>     FALSE               2            11
## 461   http://t.co/A7Wq0so1Hp     FALSE            2657          4341
## 462   http://t.co/qyQzd7FXcR     FALSE            1559            67
## 463  https://t.co/cE3JOwSIG1     FALSE              22            64
## 464  https://t.co/6XgW4QA7zT     FALSE             832          1721
## 465                     <NA>     FALSE              52            94
## 466  https://t.co/aOc6NJ1pwU     FALSE            4382          2153
## 467   http://t.co/JNf1UOOm2h     FALSE          608230            39
## 468  https://t.co/kGGGs6ap2C     FALSE            2092          2521
## 469                     <NA>     FALSE              10           115
## 470                     <NA>     FALSE             560           191
## 471                     <NA>     FALSE              83             4
## 472                     <NA>     FALSE            2652          1680
## 473  https://t.co/qqaMvWqt6y     FALSE             164            47
## 474  https://t.co/zKsULCQbWH     FALSE           72337          6126
## 475  https://t.co/ux9MXc8gId     FALSE            1627           646
## 476  https://t.co/IlsdfIGxGz     FALSE            3683          4997
## 477  https://t.co/pLruwHPq6R     FALSE             654          1198
## 478                     <NA>     FALSE              12            56
## 479   http://t.co/2Z8FgQT6jd     FALSE             588           644
## 480                     <NA>     FALSE              73            56
## 481  https://t.co/S2mVIZq2On     FALSE             719          1067
## 482  https://t.co/eQt1SYhOX1     FALSE             309           996
## 483   http://t.co/0RIKWUzhiQ     FALSE             285           237
## 484                     <NA>     FALSE            7044          2791
## 485  https://t.co/aV512b868z     FALSE              75            48
## 486  https://t.co/8FerlVnp1Q     FALSE             565           630
## 487                     <NA>     FALSE             596           391
## 488   http://t.co/PP5WGGpzNA     FALSE            1696          1677
## 489                     <NA>     FALSE            3121          4235
## 490  https://t.co/BdJvArFEUZ     FALSE            1351           497
## 491                     <NA>     FALSE             637           100
## 492                     <NA>     FALSE               0             7
## 493  https://t.co/U7Z5OJkJJG     FALSE            1016          1675
## 494  https://t.co/DU1c7lI1wg     FALSE           82152          1320
## 495                     <NA>     FALSE             391           509
## 496  https://t.co/Ra6UEbn7I7     FALSE             157           283
## 497  https://t.co/Y3wkadfFRR     FALSE             279           472
## 498  https://t.co/MMnoE11lIV     FALSE              64           445
## 499                     <NA>     FALSE            3806           405
## 500  https://t.co/cL8POTdVkH     FALSE             127           428
## 501  https://t.co/ynRfhYwLhn     FALSE             103           181
## 502                     <NA>     FALSE             922           142
## 503  https://t.co/yUz1XP26KY     FALSE            2950           318
## 504                     <NA>     FALSE            1145           857
## 505  https://t.co/kxTWevUZu9     FALSE            3911          1017
## 506                     <NA>     FALSE             136           369
## 507                     <NA>     FALSE               3            25
## 508  https://t.co/U8YWJrvQJL     FALSE             649           976
## 509                     <NA>     FALSE               7            70
## 510                     <NA>     FALSE              97            79
## 511  https://t.co/RGP15vwZPb     FALSE             152           574
## 512  https://t.co/Eb92CyExmA     FALSE              75           226
## 513                     <NA>     FALSE             380           276
## 514                     <NA>     FALSE             107            48
## 515                     <NA>     FALSE            1013          1476
## 516                     <NA>     FALSE             122           107
## 517  https://t.co/cZ20CcqaDx     FALSE            3155          2310
## 518                     <NA>     FALSE               8           320
## 519                     <NA>     FALSE              60           566
## 520                     <NA>     FALSE             364           942
## 521  https://t.co/YJHhvCOrYI     FALSE           27753          6789
## 522  https://t.co/yctEKfR5u7     FALSE            3215          3009
## 523                     <NA>     FALSE              39            44
## 524  https://t.co/cZIwZQDQs8     FALSE             534           310
## 525  https://t.co/m30ZkAye91     FALSE            2762          4589
## 526  https://t.co/AJ6qOR7Z8p     FALSE               5             2
## 527                     <NA>     FALSE             553           450
## 528                     <NA>     FALSE             301           284
## 529  https://t.co/vLFvy0MTkO     FALSE             572           914
## 530  https://t.co/pPZA4hCpul     FALSE            1752          1371
## 531                     <NA>     FALSE               2            29
## 532  https://t.co/r8gFr71gTp     FALSE              80           715
## 533  https://t.co/K8A7yaQoth     FALSE             144           140
## 534                     <NA>     FALSE             128           112
## 535                     <NA>     FALSE             278          1437
## 536  https://t.co/Rse5BtdyON     FALSE           68701           869
## 537                     <NA>     FALSE            2165          2537
## 538  https://t.co/xuzwEkVkHZ     FALSE              13            46
## 539                     <NA>     FALSE             276           858
## 540  https://t.co/vkIswW9aBZ     FALSE            3729           189
## 541  https://t.co/5KcDWc8NQZ     FALSE          803718         86822
## 542                     <NA>     FALSE            1551          1931
## 543                     <NA>     FALSE            2303          1368
## 544  https://t.co/svElPgQEMm     FALSE             497           589
## 545  https://t.co/b8foZctbWx     FALSE             608          1544
## 546  https://t.co/AMd0A8dx6e     FALSE             117           324
## 547  https://t.co/P3M1VoEeKX     FALSE             272           751
## 548   http://t.co/tu5muMOI2m     FALSE           45338           599
## 549                     <NA>     FALSE             600          1370
## 550  https://t.co/ON9YqO2lqq     FALSE           12152          6286
## 551                     <NA>     FALSE             969           372
## 552                     <NA>     FALSE              72           559
## 553  https://t.co/0o0zYdAZVe     FALSE            2308          1331
## 554  https://t.co/UClrPuJpyZ     FALSE               5            10
## 555  https://t.co/7EqS0tGHpc     FALSE            6644          3313
## 556  https://t.co/jqfb4MQaNY     FALSE           51473           933
## 557   http://t.co/zHapvz0XiF     FALSE         2530441             7
## 558                     <NA>     FALSE              20           354
## 559  https://t.co/6htb3M9Fdp     FALSE            1997          3837
## 560  https://t.co/hBrIyreHqR     FALSE             185           275
## 561                     <NA>     FALSE              61           109
## 562                     <NA>     FALSE            1070           589
## 563  https://t.co/A7YCKjtLsl     FALSE           66314          1053
## 564  https://t.co/R9KGJMsmfI     FALSE            2650           345
## 565                     <NA>     FALSE            1611          5001
## 566  https://t.co/TPk1RBwOE1     FALSE            2311          2420
## 567                     <NA>     FALSE            1862           438
## 568                     <NA>     FALSE            1732          5000
## 569  https://t.co/5KcDWc8NQZ     FALSE          803816         86819
## 570  https://t.co/IPsQPVNUao     FALSE            1242           298
## 571  https://t.co/myYhzsAW4F     FALSE          821779            42
## 572                     <NA>     FALSE            1020          3025
## 573                     <NA>     FALSE               0            51
## 574  https://t.co/YSSXqPDitg     FALSE            5310           816
## 575                     <NA>     FALSE            1593          1729
## 576                     <NA>     FALSE             593          3355
## 577   http://t.co/23O6PGRmGl     FALSE            8436          1609
## 578  https://t.co/Har5PbIfI5     FALSE             282           482
## 579   http://t.co/YPLhEiCHws     FALSE             401           440
## 580  https://t.co/91nQhq1gOc     FALSE               4            23
## 581                     <NA>     FALSE              86            94
## 582                     <NA>     FALSE             149           354
## 583   http://t.co/MBMZY3uSF4     FALSE           11479           579
## 584                     <NA>     FALSE               5            76
## 585                     <NA>     FALSE            3398          3635
## 586   http://t.co/nLlds9a5bG     FALSE             555            87
## 587                     <NA>     FALSE              48             1
## 588  https://t.co/I3HStRtTcO     FALSE            4856          1294
## 589  https://t.co/RHtfAJ7s33     FALSE             115          1154
## 590                     <NA>     FALSE             517          1499
## 591                     <NA>     FALSE            1380          1000
## 592                     <NA>     FALSE              14           269
## 593                     <NA>     FALSE             244          2024
## 594                     <NA>     FALSE             112           614
## 595                     <NA>     FALSE            5686          6115
## 596  https://t.co/2eykYyQWUK     FALSE            1662             9
## 597                     <NA>     FALSE             735           478
## 598   http://t.co/WTIKQryR3Z     FALSE           11376          1168
## 599  https://t.co/xNyMiJCBOB     FALSE               5            30
## 600  https://t.co/lr5L3pUx4E     FALSE            1365          1405
## 601   http://t.co/pmSUYiwt1q     FALSE            1095           952
## 602                     <NA>     FALSE              43           133
## 603                     <NA>     FALSE             166           267
## 604  https://t.co/7H6vYHqRp6     FALSE            2198          3549
## 605                     <NA>     FALSE              22            49
## 606   http://t.co/xzHz1dWawg     FALSE             138            19
## 607                     <NA>     FALSE             305           242
## 608                     <NA>     FALSE            1388          1067
## 609   http://t.co/pMtLQKj67o     FALSE            3566          3587
## 610  https://t.co/wQTSfeQTfa     FALSE             272           213
## 611   http://t.co/IKuFEqQKvy     FALSE             588          1005
## 612                     <NA>     FALSE              79           234
## 613  https://t.co/7SOrT154E4     FALSE            1421           518
## 614                     <NA>     FALSE            3341          3537
## 615  https://t.co/CWHPov1Dpb     FALSE            2034          2086
## 616                     <NA>     FALSE            5408          5087
## 617                     <NA>     FALSE             253           800
## 618                     <NA>     FALSE            2524          3987
## 619  https://t.co/99Bom6Pw54     FALSE            3400          3065
## 620                     <NA>     FALSE             610           738
## 621                     <NA>     FALSE               1             1
## 622  https://t.co/o7zvgJJDAK     FALSE             242           604
## 623  https://t.co/bVwP2L6FUG     FALSE           68409          3893
## 624  https://t.co/UJtcbKwiy5     FALSE              60           163
## 625                     <NA>     FALSE              35            68
## 626                     <NA>     FALSE             148           249
## 627  https://t.co/bJI1v9WOoL     FALSE             380           615
## 628  https://t.co/xl3sGX0ws5     FALSE            5067           785
## 629                     <NA>     FALSE              45            16
## 630  https://t.co/s3KcbtardC     FALSE            1329           154
## 631                     <NA>     FALSE            4752          4563
## 632   http://t.co/zS8AeNm771     FALSE             775          1001
## 633                     <NA>     FALSE             226           711
## 634                     <NA>     FALSE            2337           704
## 635                     <NA>     FALSE             117            96
## 636  https://t.co/Q14eXfz8q4     FALSE            6687          1085
## 637  https://t.co/Ip91bmrsfg     FALSE             465           128
## 638  https://t.co/HFF3LW7lbK     FALSE            3544          4193
## 639  https://t.co/3YKewHhF4q     FALSE             289           280
## 640                     <NA>     FALSE               0            28
## 641                     <NA>     FALSE            3012          2958
## 642                     <NA>     FALSE               2            54
## 643  https://t.co/sVizSbkjEM     FALSE              60            15
## 644  https://t.co/FSjOCkLEcb     FALSE             842          1508
## 645                     <NA>     FALSE             260           380
## 646                     <NA>     FALSE               4            34
## 647                     <NA>     FALSE           36375         29883
## 648                     <NA>     FALSE             278           804
## 649  https://t.co/3MW31l0v8z     FALSE              50           254
## 650  https://t.co/31oSwtRMjI     FALSE            6682          6682
## 651   http://t.co/9BkApziVCj     FALSE          305663          1196
## 652  https://t.co/poi5TAtN9F     FALSE             409           476
## 653  https://t.co/RtiAlsYoxl     FALSE              66           413
## 654                     <NA>     FALSE               5            64
## 655                     <NA>     FALSE              37           216
## 656                     <NA>     FALSE            2022          3398
## 657                     <NA>     FALSE            1185          1002
## 658  https://t.co/6LZVWNX1sh     FALSE             545          2052
## 659   http://t.co/zHapvz0XiF     FALSE         2530441             7
## 660  https://t.co/NTNqVTOP6X     FALSE            8039          7890
## 661  https://t.co/KcqNqy796M     FALSE          101292          1239
## 662                     <NA>     FALSE            1121           722
## 663  https://t.co/NZv67WCCAe     FALSE           40336          7596
## 664  https://t.co/XK0vnXQ2oU     FALSE           61194          5898
## 665                     <NA>     FALSE             912          1685
## 666                     <NA>     FALSE             424          1552
## 667                     <NA>     FALSE              48           122
## 668                     <NA>     FALSE             402           675
## 669  https://t.co/cTuY6pTZnJ     FALSE              68           279
## 670                     <NA>     FALSE              14            10
## 671                     <NA>     FALSE             130          2516
## 672  https://t.co/ma327dL4sj     FALSE            2197          1103
## 673  https://t.co/BbOTSnEMQF     FALSE             910          2639
## 674  https://t.co/jGdpljt1Ae     FALSE            3343          3176
## 675                     <NA>     FALSE             593          2536
## 676  https://t.co/DGmQ5umX4p     FALSE              89           258
## 677                     <NA>     FALSE             337           520
## 678                     <NA>     FALSE            4432          4675
## 679                     <NA>     FALSE             309           201
## 680  https://t.co/2WbyzHXEJ1     FALSE          127607           350
## 681  https://t.co/lcICMAwBBk     FALSE            2600          1307
## 682                     <NA>     FALSE           39963            50
## 683  https://t.co/CS3nmorYaU     FALSE           30128          1659
## 684                     <NA>     FALSE             177           488
## 685                     <NA>     FALSE             471           631
## 686                     <NA>     FALSE             255           996
## 687  https://t.co/PDEoRmNDYk     FALSE           21359          6605
## 688  https://t.co/74yFDctZGp     FALSE           41721            58
## 689                     <NA>     FALSE             158           212
## 690  https://t.co/CTU8GBkFOd     FALSE            3571          2113
## 691                     <NA>     FALSE               2            52
## 692   http://t.co/q4scpU7ZK4     FALSE          134064           852
## 693  https://t.co/ME8lpxMttp     FALSE             927            20
## 694  https://t.co/epxeGhbZpL     FALSE             260           480
## 695                     <NA>     FALSE             229           430
## 696                     <NA>     FALSE             218          1095
## 697                     <NA>     FALSE               0            61
## 698  https://t.co/T2pbzxHHlz     FALSE           35001         31802
## 699                     <NA>     FALSE              53            61
## 700   http://t.co/M7JdxrwZzq     FALSE           25742          7043
## 701  https://t.co/leMOzsxl3i     FALSE           21055           803
## 702                     <NA>     FALSE               5             5
## 703                     <NA>     FALSE            3492          4132
## 704                     <NA>     FALSE           12147         12507
## 705                     <NA>     FALSE             846           559
## 706  https://t.co/aQjwfwsB0G     FALSE             419           300
## 707  https://t.co/3DX75f5kGW     FALSE             186           426
## 708   http://t.co/pEcMOwB3mS     FALSE             229           352
## 709                     <NA>     FALSE              21           241
## 710  https://t.co/fDxkZRSWzE     FALSE           15059          1073
## 711                     <NA>     FALSE              23           145
## 712  https://t.co/wSdMxh3Jul     FALSE             669          1451
## 713                     <NA>     FALSE             391           685
## 714                     <NA>     FALSE             516          1150
## 715   http://t.co/HyAzop1uEX     FALSE          114026             2
## 716  https://t.co/ma66r17YOi     FALSE           67232          1975
## 717   http://t.co/76fMiq645r     FALSE             269            15
## 718                     <NA>     FALSE               0             3
## 719  https://t.co/0u5ezfabkN     FALSE             674           445
## 720                     <NA>     FALSE             773           317
## 721  https://t.co/qf19ZcAjJQ     FALSE            3124          4149
## 722  https://t.co/dUPbm7O4lq     FALSE           24229          2341
## 723  https://t.co/dVPe2p6YCl     FALSE          165229           187
## 724                     <NA>     FALSE            1123          1650
## 725  https://t.co/219e6OfsH7     FALSE             141           388
## 726  https://t.co/XNxA7tuwLI     FALSE            1273           227
## 727  https://t.co/rRz8IowEd2     FALSE            9518          9468
## 728                     <NA>     FALSE            3098          5004
## 729  https://t.co/gVDjbcAEGH     FALSE            4777          2982
## 730  https://t.co/NfJumhbMDS     FALSE              80           208
## 731                     <NA>     FALSE              55          1418
## 732                     <NA>     FALSE               1             6
## 733  https://t.co/LOEn760f8d     FALSE           29597          5455
## 734  https://t.co/VACdN1iwph     FALSE              43           411
## 735                     <NA>     FALSE             254           996
## 736  https://t.co/NxogMlgWEq     FALSE             532          1653
## 737                     <NA>     FALSE             120           148
## 738                     <NA>     FALSE             171           580
## 739   http://t.co/0gecTCHeSU     FALSE            2269          1423
## 740   http://t.co/s21BLkjYHL     FALSE            1291           199
## 741  https://t.co/kNohl7GGJh     FALSE            2185          3341
## 742  https://t.co/Mu5ek2smec     FALSE           97557           251
## 743                     <NA>     FALSE            2573           457
## 744                     <NA>     FALSE             583          1700
## 745  https://t.co/G3u11mxtN5     FALSE            2711          3406
## 746   http://t.co/1Ah1yoD02k     FALSE          297981          1138
## 747   http://t.co/32ds2eN8h1     FALSE            2574          1629
## 748  https://t.co/UO2Z8SgEFO     FALSE             286           239
## 749                     <NA>     FALSE             148           131
## 750  https://t.co/fXyUtyzGQN     FALSE            2775          2138
## 751                     <NA>     FALSE               8           171
## 752                     <NA>     FALSE            1272           915
## 753  https://t.co/LI9kcldrOK     FALSE             382           215
## 754  https://t.co/B5uZciuh7t     FALSE            1936          1119
## 755  https://t.co/TiWuPSJlZu     FALSE            1301           604
## 756  https://t.co/CDcz4Cq3Hv     FALSE            2266          1857
## 757                     <NA>     FALSE              82           246
## 758                     <NA>     FALSE            4589          1636
## 759                     <NA>     FALSE            1310           624
## 760                     <NA>     FALSE             177           236
## 761  https://t.co/9PDFqY02wH     FALSE             347           794
## 762  https://t.co/6sufyhcCoP     FALSE             125           140
## 763  https://t.co/qjOCYkD99z     FALSE            2202           351
## 764  https://t.co/6RsYK4GCvf     FALSE             131          1306
## 765  https://t.co/9h1GVeYIzC     FALSE            2646          2317
## 766  https://t.co/RcvUsNSzmI     FALSE            2674           281
## 767  https://t.co/AKcSx5ZBC4     FALSE           32083         25053
## 768   http://t.co/W9dZS4ekmX     FALSE            5046          2905
## 769  https://t.co/ChmzRLfwxz     FALSE            1532          2174
## 770  https://t.co/Vsrm7tS1py     FALSE              98            98
## 771                     <NA>     FALSE              56            89
## 772  https://t.co/UVsO2GzYpN     FALSE             189           129
## 773  https://t.co/0FYlwTzrzK     FALSE             335           342
## 774                     <NA>     FALSE            4392          4321
## 775                     <NA>     FALSE            2302          2484
## 776  https://t.co/1acU3OVUZD     FALSE              69           179
## 777                     <NA>     FALSE             160           390
## 778  https://t.co/6LCsEqpHQD     FALSE              42            70
## 779  https://t.co/8rXOLzVutj     FALSE            1089           298
## 780                     <NA>     FALSE            2023           782
## 781                     <NA>     FALSE              30           155
## 782  https://t.co/7rGrx0QJOv     FALSE              58          1023
## 783                     <NA>     FALSE            1608           328
## 784                     <NA>     FALSE             387           203
## 785  https://t.co/CXrrLdla2u     FALSE            2779          4301
## 786                     <NA>     FALSE             864          2663
## 787                     <NA>     FALSE             142           756
## 788                     <NA>     FALSE             918          2952
## 789  https://t.co/EK3iz5pjHl     FALSE            1111           424
## 790                     <NA>     FALSE              62           371
## 791                     <NA>     FALSE              45           106
## 792  https://t.co/Oz9qV3PIoS     FALSE            7436          7333
## 793                     <NA>     FALSE              15            11
## 794  https://t.co/2i1tlZLdpD     FALSE             790           897
## 795  https://t.co/yAWjPb6OBD     FALSE           15048           330
## 796                     <NA>     FALSE               4            33
## 797                     <NA>     FALSE             444           184
## 798                     <NA>     FALSE            1736           397
## 799                     <NA>     FALSE             799           647
## 800  https://t.co/gdt2hObX3h     FALSE           17448         17436
## 801                     <NA>     FALSE              29           197
## 802                     <NA>     FALSE              87           205
## 803   http://t.co/LN7SmQkBWg     FALSE           14214           598
## 804                     <NA>     FALSE             380           247
## 805  https://t.co/BEyfYwsNd7     FALSE           28987          1231
## 806                     <NA>     FALSE            3338          4995
## 807                     <NA>     FALSE            7896          4243
## 808                     <NA>     FALSE             647          1086
## 809                     <NA>     FALSE            4446          5033
## 810                     <NA>     FALSE             129           154
## 811                     <NA>     FALSE           20908           339
## 812                     <NA>     FALSE            1285          3118
## 813                     <NA>     FALSE             350           570
## 814                     <NA>     FALSE           14256         13880
## 815  https://t.co/ehyayqnehO     FALSE           11607         10920
## 816  https://t.co/1J36jCEJSR     FALSE            1527          4317
## 817  https://t.co/3vlVUy2WBZ     FALSE            6321           997
## 818                     <NA>     FALSE             308           359
## 819  https://t.co/8l5kF3hNRC     FALSE              31            76
## 820                     <NA>     FALSE               7           173
## 821  https://t.co/uKE3Z3WChF     FALSE             467          1553
## 822  https://t.co/G5AXPPbmmA     FALSE            2467          1209
## 823  https://t.co/zJSwxJHjfo     FALSE            1997           387
## 824   http://t.co/SN36DOO4Gu     FALSE             349           192
## 825  https://t.co/BdcvUVs1dy     FALSE             557           408
## 826                     <NA>     FALSE              21           528
## 827                     <NA>     FALSE            1140          1533
## 828  https://t.co/tIL5JtbtSQ     FALSE             413           365
## 829  https://t.co/8jeuc7L95o     FALSE             174          1478
## 830                     <NA>     FALSE             261           190
## 831   http://t.co/eDOTgnOBJQ     FALSE              16             5
## 832                     <NA>     FALSE             260          1780
## 833  https://t.co/p4hqGoBIDh     FALSE              34            38
## 834                     <NA>     FALSE               0             1
## 835                     <NA>     FALSE               3             3
## 836                     <NA>     FALSE            6408          5563
## 837                     <NA>     FALSE             155           292
## 838                     <NA>     FALSE            1328          1405
## 839                     <NA>     FALSE             902          2816
## 840                     <NA>     FALSE             758          2303
## 841  https://t.co/5aoE4lk2zD     FALSE             992           355
## 842  https://t.co/rjPHClRiit     FALSE              91            40
## 843                     <NA>     FALSE             285          1058
## 844   http://t.co/VlOBa7xLV8     FALSE             827           599
## 845                     <NA>     FALSE             300           470
## 846  https://t.co/ba7gdQHGj7     FALSE           13505          7503
## 847  https://t.co/Sjy0VthWpV     FALSE            1409           408
## 848  https://t.co/MFNQOp1nDp     FALSE              65           269
## 849                     <NA>     FALSE              43           139
## 850  https://t.co/cQNGvxgCTa     FALSE             567           478
## 851                     <NA>     FALSE            2151          1367
## 852  https://t.co/YPiihtxXa1     FALSE              73           145
## 853   http://t.co/WTFtyGu20c     FALSE            2622          3122
## 854                     <NA>     FALSE           14677         14383
## 855                     <NA>     FALSE             392           646
## 856                     <NA>     FALSE               1             4
## 857  https://t.co/zWoXIHJjNL     FALSE            5971          5907
## 858                     <NA>     FALSE            3279          4998
## 859                     <NA>     FALSE             404          1391
## 860  https://t.co/AEwyaoa1OE     FALSE             364          1413
## 861                     <NA>     FALSE             100           165
## 862  https://t.co/NjcHpIBWIH     FALSE            5111          5155
## 863  https://t.co/ii2SnRJlFB     FALSE             943           267
## 864  https://t.co/wnF48fHiCs     FALSE            2056           378
## 865  https://t.co/CDf5pQs9mP     FALSE            1270           221
## 866                     <NA>     FALSE             594           927
## 867                     <NA>     FALSE             216           274
## 868                     <NA>     FALSE             882           392
## 869                     <NA>     FALSE             610          1198
## 870                     <NA>     FALSE             677           695
## 871                     <NA>     FALSE              90           366
## 872                     <NA>     FALSE              23            12
## 873  https://t.co/KfyVpJBQOU     FALSE           17778           716
## 874  https://t.co/tACxm6xj4p     FALSE               4            14
## 875                     <NA>     FALSE            1091           632
## 876                     <NA>     FALSE             359           860
## 877  https://t.co/p93mpDyxjR     FALSE              97           252
## 878                     <NA>     FALSE             254           126
## 879                     <NA>     FALSE            2643          2631
## 880   http://t.co/wZcbeq9UuU     FALSE            4406            42
## 881                     <NA>     FALSE            4499          4122
## 882  https://t.co/4iIITmJqho     FALSE             580          2587
## 883                     <NA>     FALSE             119           647
## 884  https://t.co/RFKttKocRf     FALSE             152           426
## 885                     <NA>     FALSE             289           610
## 886                     <NA>     FALSE             184          2048
## 887                     <NA>     FALSE            3071          1041
## 888  https://t.co/SjoPqwQ8k3     FALSE            1190           643
## 889                     <NA>     FALSE              20           150
## 890  https://t.co/NlFd4H5oFU     FALSE              70            54
## 891                     <NA>     FALSE             602           316
## 892  https://t.co/5b5CUbrEUV     FALSE           26118           692
## 893  https://t.co/eqhgJzTKOl     FALSE            4711          1062
## 894                     <NA>     FALSE             261           306
## 895                     <NA>     FALSE              24           497
## 896                     <NA>     FALSE              14            82
## 897  https://t.co/0tyJxyBqE5     FALSE             199            44
## 898                     <NA>     FALSE             151           144
## 899                     <NA>     FALSE              69           276
## 900  https://t.co/Z7Vt5IQl2m     FALSE            2817          2851
## 901  https://t.co/t3RSy7hhE0     FALSE             919           873
## 902  https://t.co/7E1USlz0Hm     FALSE             193           631
## 903                     <NA>     FALSE             287           431
## 904  https://t.co/3QFsmuSP33     FALSE             480            27
## 905                     <NA>     FALSE            1215           852
## 906                     <NA>     FALSE            1405          2041
## 907  https://t.co/vBEn1I0qVs     FALSE            9976           502
## 908  https://t.co/ocxLwXS7No     FALSE            6540          1045
## 909  https://t.co/IA7K2djgB3     FALSE             927          4273
## 910  https://t.co/Gx55j4elfd     FALSE            1175           612
## 911                     <NA>     FALSE             271           118
## 912  https://t.co/wX1YTSe7fL     FALSE            1206           428
## 913   http://t.co/ATGqCTVzPN     FALSE          402214         80833
## 914  https://t.co/cB6p1l3dm3     FALSE             930          3022
## 915                     <NA>     FALSE             246           367
## 916  https://t.co/VpUBj7VduT     FALSE             214           288
## 917  https://t.co/RDarTjA1le     FALSE             267           210
## 918  https://t.co/npFtChFiZZ     FALSE             173             0
## 919  https://t.co/nuOUiPLJKy     FALSE            1077          1668
## 920  https://t.co/dasF30tWP4     FALSE            1447           710
## 921   http://t.co/X761xTyWSk     FALSE            1206          2120
## 922  https://t.co/NvXJBylIws     FALSE            3925          2227
## 923  https://t.co/oBdPkWTtPq     FALSE           53604           654
## 924  https://t.co/ZZwywOX5cy     FALSE            1143          1894
## 925  https://t.co/jXZlTMOXoA     FALSE             683           686
## 926  https://t.co/8f5D675f1F     FALSE               3             0
## 927   http://t.co/3hGBJzFeKR     FALSE             515           154
## 928   http://t.co/QAZ9EjY7i9     FALSE             442           441
## 929  https://t.co/GNadZ5bZ69     FALSE             113           120
## 930                     <NA>     FALSE              24            81
## 931                     <NA>     FALSE             104           290
## 932   http://t.co/tmcjbPGobX     FALSE             392           225
## 933                     <NA>     FALSE             639          2184
## 934  https://t.co/LOOLEYpcUF     FALSE            4043            84
## 935                     <NA>     FALSE              69           292
## 936  https://t.co/E8wbDFRjzi     FALSE            4711          3009
## 937  https://t.co/PFzcUlCOSi     FALSE          202066           667
## 938   http://t.co/1YsHH47jbH     FALSE            9205          8036
## 939  https://t.co/S6yofVagH0     FALSE             570           266
## 940  https://t.co/zVq0YyUmYt     FALSE             270           936
## 941  https://t.co/IaMxYw1FY6     FALSE               2            11
## 942   http://t.co/jLZnyDy4hD     FALSE          523620           672
## 943                     <NA>     FALSE            7799          8660
## 944  https://t.co/NTD3ZM235U     FALSE            2709          2169
## 945                     <NA>     FALSE               6            40
## 946  https://t.co/Fsgfe8BCWH     FALSE           38632          2396
## 947  https://t.co/OZBZxI6T3I     FALSE           16736             3
## 948  https://t.co/Amy3Ybkmfg     FALSE            1071           363
## 949                     <NA>     FALSE           11785         12926
## 950                     <NA>     FALSE             557           494
## 951                     <NA>     FALSE             381             4
## 952  https://t.co/75dEcGUN2B     FALSE           10926          1802
## 953                     <NA>     FALSE             263           342
## 954  https://t.co/PP0b1fchP0     FALSE          448547           314
## 955  https://t.co/OlFMiF0FFY     FALSE             213           717
## 956  https://t.co/4UtbozKr1K     FALSE              90           153
## 957   http://t.co/e1x2UKiCEp     FALSE             972           857
## 958                     <NA>     FALSE               6            12
## 959                     <NA>     FALSE             679          2403
## 960   http://t.co/0GIco2n9hO     FALSE             179           394
## 961                     <NA>     FALSE            1162           310
## 962  https://t.co/PvmT2wV0vH     FALSE           38758         37635
## 963  https://t.co/w1XkpzD10v     FALSE             774          1780
## 964  https://t.co/0jsMUVy0wl     FALSE             347          1926
## 965   http://t.co/In0gcv2BlW     FALSE           13781           478
## 966                     <NA>     FALSE            6794          7339
## 967                     <NA>     FALSE              19           156
## 968  https://t.co/sh8sTHMn1t     FALSE            1746           513
## 969  https://t.co/1WMskg0QPs     FALSE            1505          2405
## 970  https://t.co/XGT9lPURfK     FALSE           14266           641
## 971  https://t.co/EZ5sFDF05w     FALSE             708           462
## 972                     <NA>     FALSE             257           972
## 973                     <NA>     FALSE               7            35
## 974                     <NA>     FALSE            1120          1138
## 975  https://t.co/IRJ7iZBC5f     FALSE            3065           297
## 976                     <NA>     FALSE              16           284
## 977                     <NA>     FALSE             166           887
## 978                     <NA>     FALSE             339           606
## 979                     <NA>     FALSE              93            23
## 980                     <NA>     FALSE             772          1139
## 981                     <NA>     FALSE              23            33
## 982  https://t.co/R58zWESKyt     FALSE            1407           590
## 983  https://t.co/FXFa6Qb6YD     FALSE             445           163
## 984   http://t.co/g70eDgDO95     FALSE            2259           141
## 985   http://t.co/5UieYH0DYg     FALSE            3782           176
## 986                     <NA>     FALSE             126           405
## 987  https://t.co/ZgPqBs4dEM     FALSE            4835          1459
## 988                     <NA>     FALSE             212           115
## 989  https://t.co/HUZXCp8LeT     FALSE             105           267
## 990  https://t.co/BKpDQI2kRs     FALSE            1957          1131
## 991                     <NA>     FALSE             120           500
## 992                     <NA>     FALSE             378           232
## 993   http://t.co/gdtXXYM7Rv     FALSE           10865           188
## 994                     <NA>     FALSE               3            28
## 995  https://t.co/HXaJ0YPGL1     FALSE              72           338
## 996                     <NA>     FALSE             162           262
## 997                     <NA>     FALSE              12            15
## 998                     <NA>     FALSE             992          1624
## 999                     <NA>     FALSE            4456          4516
## 1000                    <NA>     FALSE            3108          1815
## 1001 https://t.co/7lAiJtaC0d     FALSE             198           370
## 1002                    <NA>     FALSE              47           176
## 1003                    <NA>     FALSE             496           375
## 1004                    <NA>     FALSE             538           320
## 1005                    <NA>     FALSE               8            11
## 1006 https://t.co/He7jE6OnOG     FALSE           62589           672
## 1007 https://t.co/wgokXP7XV1     FALSE             938           465
## 1008                    <NA>     FALSE            1438          2004
## 1009 https://t.co/TcxYJbIdTG     FALSE            2258           582
## 1010                    <NA>     FALSE            1346           347
## 1011 https://t.co/K6ozb35xX8     FALSE             344           745
## 1012 https://t.co/BbS1p83DLn     FALSE             188           554
## 1013                    <NA>     FALSE           20168         16848
## 1014 https://t.co/Bz1fnGiwpa     FALSE              68            51
## 1015                    <NA>     FALSE               5            37
## 1016                    <NA>     FALSE             101           134
## 1017 https://t.co/mnV3EaS2Ev     FALSE            1197          5000
## 1018 https://t.co/x99wgN64jG     FALSE            3536          1486
## 1019                    <NA>     FALSE              48           194
## 1020 https://t.co/UwAIgyycfN     FALSE            1261           348
## 1021                    <NA>     FALSE            2633          2595
## 1022 https://t.co/19dRI8mQSC     FALSE            1189          1699
## 1023 https://t.co/ydGVV9zEXW     FALSE             271           308
## 1024 https://t.co/LX0EDhjY32     FALSE             119            70
## 1025 https://t.co/lNtj9vZTCg     FALSE            1932           831
## 1026 https://t.co/e4JEqLu7Eb     FALSE             381          1199
## 1027                    <NA>     FALSE            4644          4938
## 1028 https://t.co/HKXLDTtSS9     FALSE             301            27
## 1029  http://t.co/E9lhJBBn4J     FALSE           12213          1071
## 1030                    <NA>     FALSE             146           341
## 1031 https://t.co/6UzRrP4Yrf     FALSE         1598541           133
## 1032                    <NA>     FALSE               1             7
## 1033 https://t.co/cNcIQkvXdk     FALSE            1623          1756
## 1034 https://t.co/Lta9Mbh7e8     FALSE             308           909
## 1035 https://t.co/R7dYNe8U3j     FALSE             339           541
## 1036                    <NA>     FALSE               4            65
## 1037 https://t.co/nCi3t7Canm     FALSE             260           411
## 1038                    <NA>     FALSE              18           330
## 1039                    <NA>     FALSE            1057          4908
## 1040                    <NA>     FALSE            1674           754
## 1041 https://t.co/rEGDxu0GRN     FALSE             213          1008
## 1042 https://t.co/dnO4oxJQU0     FALSE            2115           837
## 1043 https://t.co/ypgwE1V9qm     FALSE            1385           424
## 1044                    <NA>     FALSE              42            33
## 1045 https://t.co/Tj51VN2MQ0     FALSE              83            87
## 1046                    <NA>     FALSE            1949           192
## 1047                    <NA>     FALSE             129            18
## 1048 https://t.co/ERqXvWMVuD     FALSE             496           122
## 1049                    <NA>     FALSE              93           168
## 1050                    <NA>     FALSE            4519          3900
## 1051                    <NA>     FALSE              27            87
## 1052                    <NA>     FALSE             103           338
## 1053                    <NA>     FALSE               5            99
## 1054 https://t.co/UClrPuJpyZ     FALSE            4167          4447
## 1055 https://t.co/m9zYUvEED9     FALSE              18           181
## 1056 https://t.co/R6ab8vP5tI     FALSE            4392          1448
## 1057 https://t.co/1PcLYb59rb     FALSE           16263          4886
## 1058 https://t.co/t5YUVyttAu     FALSE            4147          3450
## 1059 https://t.co/PtPdep546V     FALSE             898           503
## 1060 https://t.co/R6eT7KfXDK     FALSE           20687           904
## 1061 https://t.co/ZH7iI0RIW1     FALSE             377           298
## 1062                    <NA>     FALSE              37           282
## 1063                    <NA>     FALSE              19            49
## 1064                    <NA>     FALSE             527           656
## 1065                    <NA>     FALSE             435          2380
## 1066 https://t.co/RlJICbPENi     FALSE             114           128
## 1067                    <NA>     FALSE               3            99
## 1068 https://t.co/MnG17fcWkS     FALSE              50           166
## 1069 https://t.co/xgFIIWKKhO     FALSE             215           704
## 1070  http://t.co/Hq7hTYkOPg     FALSE        15258642          1662
## 1071 https://t.co/Yb4PcU5FYN     FALSE           39396           927
## 1072 https://t.co/sOLMBez5df     FALSE             561            81
## 1073                    <NA>     FALSE             447           343
## 1074  http://t.co/z3sIL4eTur     FALSE             722           673
## 1075 https://t.co/Ceu7cQ0S8K     FALSE             693           896
## 1076 https://t.co/xcWIWpZ8Xn     FALSE             171           289
## 1077 https://t.co/sX7wIiecOA     FALSE           15216         37776
## 1078  http://t.co/08kvULtmw0     FALSE            3982           757
## 1079                    <NA>     FALSE             745           995
## 1080 https://t.co/i6UpqSn538     FALSE          137952           259
## 1081                    <NA>     FALSE             453           408
## 1082                    <NA>     FALSE             325           274
## 1083 https://t.co/pU3cGTKuDm     FALSE            4834          4951
## 1084 https://t.co/0tyJxyBqE5     FALSE             197            44
## 1085 https://t.co/lITYDq3nJM     FALSE             256           407
## 1086                    <NA>     FALSE            6633          7239
## 1087 https://t.co/nGUJ8xTFOK     FALSE          191997           692
## 1088                    <NA>     FALSE            5364           749
## 1089  http://t.co/aeecux8Jat     FALSE            6928          6542
## 1090 https://t.co/wcLXrCoHez     FALSE            2460          1034
## 1091                    <NA>     FALSE            2252          1630
## 1092 https://t.co/R38Ubnn6mt     FALSE             102           443
## 1093  http://t.co/YfgvbdUwHx     FALSE            1296          1542
## 1094                    <NA>     FALSE             261            91
## 1095                    <NA>     FALSE             235           929
## 1096                    <NA>     FALSE            2435          4366
## 1097                    <NA>     FALSE            5310          5392
## 1098  http://t.co/BAMmJNh0xI     FALSE            6391           220
## 1099                    <NA>     FALSE               1             0
## 1100                    <NA>     FALSE             206            69
## 1101 https://t.co/z9SvHL6dCy     FALSE            8667          1054
## 1102                    <NA>     FALSE               9            37
## 1103 https://t.co/1mzx8F6RP3     FALSE             178            17
## 1104                    <NA>     FALSE               2             0
## 1105                    <NA>     FALSE            8557          3373
## 1106                    <NA>     FALSE            1886          2004
## 1107  http://t.co/vEGkoeUA39     FALSE            2416           632
## 1108                    <NA>     FALSE             242           529
## 1109                    <NA>     FALSE             131           962
## 1110 https://t.co/Dmon52F9sn     FALSE           10983          1472
## 1111                    <NA>     FALSE              39            59
##      listed_count statuses_count favourites_count  account_created_at verified
## 1               5          37846            46587 2011-12-13 01:44:12    FALSE
## 2              45          54107               20 2010-07-27 12:42:35    FALSE
## 3             165          67452              702 2009-06-24 17:28:06    FALSE
## 4             206         179255            58829 2012-05-30 00:34:11    FALSE
## 5             306          12808            20367 2008-08-17 00:52:31    FALSE
## 6            2184          90270             1361 2009-02-17 14:45:57     TRUE
## 7             398          98619              451 2009-01-31 15:46:07     TRUE
## 8            3848          99707             2916 2009-07-29 14:27:16    FALSE
## 9              39          23721            84049 2008-05-23 17:27:20    FALSE
## 10              1            139               13 2019-11-14 18:53:04    FALSE
## 11             92           5563             1293 2012-01-09 15:40:25     TRUE
## 12             15           1165              649 2009-09-06 20:57:11    FALSE
## 13             12           6873             7058 2010-07-03 04:11:22    FALSE
## 14              4           1447              495 2012-11-09 19:46:44    FALSE
## 15             10           4382            10980 2009-05-03 21:55:19    FALSE
## 16             13            925             1298 2012-11-09 19:43:14    FALSE
## 17            119           1406              369 2014-09-02 08:55:42    FALSE
## 18              0             15               25 2014-04-14 08:22:29    FALSE
## 19             21            454               13 2009-04-24 19:14:27    FALSE
## 20              7          54528            59110 2012-08-22 14:06:16    FALSE
## 21              1           9713             4654 2014-05-02 03:21:05    FALSE
## 22            202          39818              321 2009-05-19 18:17:23    FALSE
## 23            117           1696             4489 2007-03-23 20:19:29    FALSE
## 24              1          65508            20555 2011-07-05 20:11:17    FALSE
## 25              1            663                2 2020-01-30 22:36:02    FALSE
## 26             23          69041            10988 2010-11-08 02:33:30    FALSE
## 27             40           5300             8489 2014-08-12 18:11:16    FALSE
## 28              0            154                0 2017-10-05 05:43:50    FALSE
## 29              0           5289            10099 2013-10-21 17:07:21    FALSE
## 30              0           2577             1147 2018-10-16 18:01:23    FALSE
## 31              0           1338              769 2011-09-17 20:28:38    FALSE
## 32           1259          71536            18901 2011-02-01 04:46:09     TRUE
## 33            101           6245             1088 2012-05-14 18:43:10     TRUE
## 34            776          13858             8841 2009-05-21 15:51:11    FALSE
## 35             37           3085             2471 2011-12-09 17:44:27    FALSE
## 36             53            644              152 2009-02-28 05:47:53    FALSE
## 37             29          20107              522 2011-12-05 07:37:18    FALSE
## 38             67           3573             2495 2012-09-21 12:39:24    FALSE
## 39              0             25                1 2019-11-03 05:10:56    FALSE
## 40              7            839              251 2010-08-19 20:31:33    FALSE
## 41            332         256279            80183 2013-02-03 23:04:27    FALSE
## 42             99          21488               55 2012-06-19 06:16:21     TRUE
## 43            923         114248           122947 2011-03-18 18:40:06     TRUE
## 44              1           1762             2879 2019-08-16 04:41:51    FALSE
## 45             13           3116             5133 2010-06-12 10:20:53    FALSE
## 46              1            305               10 2017-06-19 11:57:13    FALSE
## 47             50          76402            18911 2010-06-12 15:12:14    FALSE
## 48             77           3926             6133 2015-03-03 16:20:08     TRUE
## 49             38           4326             2832 2011-06-21 13:18:36    FALSE
## 50             32          11843            40173 2008-06-20 19:04:27    FALSE
## 51            112          49340            32578 2012-10-31 23:52:22    FALSE
## 52            210          42068             1822 2013-11-14 00:45:46    FALSE
## 53              0            541              352 2019-11-18 16:07:56    FALSE
## 54            128          13237             7204 2010-01-06 14:28:50    FALSE
## 55              0             14                8 2020-03-15 14:39:55    FALSE
## 56              0           1343             2161 2020-01-03 05:17:28    FALSE
## 57              4           4794              878 2015-07-03 09:42:22    FALSE
## 58              1            901              250 2018-01-09 23:21:17    FALSE
## 59           1080         916125             2119 2017-08-11 01:11:39    FALSE
## 60              0            374               17 2020-02-21 00:14:15    FALSE
## 61              1            312               75 2010-02-27 20:46:56    FALSE
## 62             89           3105             4290 2016-08-17 21:02:59    FALSE
## 63           4837          19784              804 2008-10-31 18:27:47     TRUE
## 64             40          14157             1761 2008-11-04 17:13:04    FALSE
## 65             10          16525            17643 2010-04-24 18:19:14    FALSE
## 66             85           4837              706 2008-09-27 03:49:20    FALSE
## 67             33           4212               40 2014-08-14 15:07:03    FALSE
## 68             68          26009             1672 2009-04-01 01:45:53    FALSE
## 69            257          71758            21318 2009-03-04 00:00:37     TRUE
## 70              0           5538             4905 2019-03-13 09:28:44    FALSE
## 71           1197          26295              386 2008-03-12 15:59:00    FALSE
## 72              0              3                2 2012-08-07 10:16:02    FALSE
## 73              0             22                3 2016-06-16 03:39:40    FALSE
## 74              0             34              114 2020-02-14 00:43:40    FALSE
## 75             25          14659              728 2009-04-17 03:08:21    FALSE
## 76             38          11803            10168 2008-11-17 17:48:24    FALSE
## 77              0            135              560 2018-02-01 18:11:42    FALSE
## 78              4           4994            11679 2018-03-01 12:30:08    FALSE
## 79              0            566              388 2011-08-29 16:10:20    FALSE
## 80            343          13992             1601 2008-12-23 18:47:36     TRUE
## 81              1            845               30 2010-09-23 05:56:00    FALSE
## 82              8            373              128 2016-04-07 15:46:37    FALSE
## 83            275          29153            27149 2012-01-11 22:51:11    FALSE
## 84              0            115              197 2011-08-01 16:07:27    FALSE
## 85             78          18475            12943 2008-05-02 23:45:53    FALSE
## 86              0            220              296 2017-10-13 10:07:48    FALSE
## 87              1          15112           136154 2011-06-15 10:48:44    FALSE
## 88             40           3028              134 2011-07-11 13:51:01    FALSE
## 89           1050          12787             1157 2009-03-19 18:57:26     TRUE
## 90              0             20                0 2019-08-03 09:00:05    FALSE
## 91              0            418              190 2010-06-25 15:57:49    FALSE
## 92              0            163               19 2017-02-06 12:33:11    FALSE
## 93           3463         730414               61 2008-12-05 12:05:48     TRUE
## 94            175          24819               20 2009-03-23 17:33:58     TRUE
## 95             30          95016           245027 2018-03-04 01:54:00    FALSE
## 96             61          30637               27 2012-04-01 13:50:04    FALSE
## 97              0           1359             1654 2017-09-12 11:00:04    FALSE
## 98             43           3595             7212 2014-01-22 03:17:20    FALSE
## 99              0             66              121 2018-04-18 16:07:20    FALSE
## 100             4           4874             8867 2012-04-20 16:18:44    FALSE
## 101             0             19             5813 2019-07-23 10:51:51    FALSE
## 102             2            144              148 2010-01-12 02:53:34    FALSE
## 103             0              9                0 2019-11-09 16:42:48    FALSE
## 104             0            238               44 2010-03-17 05:00:18    FALSE
## 105             0           1399             2671 2020-01-11 22:57:47    FALSE
## 106             0           1438            23556 2009-04-22 16:34:58    FALSE
## 107             2          35394                0 2016-08-09 06:13:29    FALSE
## 108             4           1278             2880 2011-05-28 00:40:04    FALSE
## 109             0           1953            23285 2010-12-12 04:43:47    FALSE
## 110            32           4266            15488 2017-08-25 08:18:44    FALSE
## 111             0            135               11 2010-12-11 16:11:27    FALSE
## 112            17            886             6429 2015-01-20 16:37:42    FALSE
## 113          1534          59286            30379 2007-05-10 02:15:45    FALSE
## 114             6          42944            48291 2016-08-29 01:20:39    FALSE
## 115             7         223338               35 2009-06-14 12:56:59    FALSE
## 116             0              4                0 2020-03-21 17:37:46    FALSE
## 117           403          45438             2072 2009-04-10 17:24:56     TRUE
## 118            14           2574              868 2017-04-04 15:55:52     TRUE
## 119             0           5703            15650 2014-01-19 14:42:14    FALSE
## 120            14          11548            11303 2012-02-05 20:19:32    FALSE
## 121             0            799             4892 2019-05-10 13:39:14    FALSE
## 122            10           6062            15372 2011-08-29 17:41:17    FALSE
## 123             0           2967            34711 2011-07-13 01:42:27    FALSE
## 124          2917         174024              362 2008-05-08 20:50:25     TRUE
## 125             0             45                0 2020-02-11 10:34:31    FALSE
## 126             3          15503              861 2011-08-17 03:04:36    FALSE
## 127             2           4217             2784 2019-07-04 04:51:28    FALSE
## 128             6          62012                7 2011-07-22 19:52:59    FALSE
## 129           162           6295             1142 2015-03-08 20:17:54     TRUE
## 130            75          91471            26390 2009-03-15 20:01:32    FALSE
## 131            21           4370             6215 2009-09-15 13:20:30    FALSE
## 132             0          33967            45864 2018-09-04 16:35:03    FALSE
## 133            66          99552               77 2010-06-01 18:52:16    FALSE
## 134             2           9108               70 2017-07-10 15:33:16    FALSE
## 135           115         138996             6490 2012-03-18 02:36:06    FALSE
## 136           284         362673           191945 2014-01-09 04:29:37    FALSE
## 137             2           2266             5453 2018-09-10 04:48:00    FALSE
## 138             0            547              126 2016-02-08 01:55:50    FALSE
## 139           126          15249            12025 2010-08-06 18:10:25    FALSE
## 140            20           2762              826 2009-07-02 15:37:39    FALSE
## 141             0           7363             9806 2013-07-14 16:39:50    FALSE
## 142           161           4173              997 2009-06-30 15:43:09     TRUE
## 143            11            520             1863 2014-11-08 22:37:51    FALSE
## 144             2          15647            21012 2017-10-14 00:48:53    FALSE
## 145             1           4160              399 2009-10-25 08:40:17    FALSE
## 146             6            331              971 2011-02-18 22:47:09    FALSE
## 147             0            613            10091 2017-07-18 15:18:48    FALSE
## 148             8          12404              128 2014-08-10 16:59:38    FALSE
## 149             0           2657              639 2011-03-19 16:24:44    FALSE
## 150             2            492                3 2009-04-08 21:37:25    FALSE
## 151             5           3119            15385 2011-10-02 23:16:07    FALSE
## 152           472          59828           131189 2008-04-06 21:14:24     TRUE
## 153            24           3467                4 2009-06-18 20:32:20    FALSE
## 154            25          44067            14726 2009-08-04 12:54:58    FALSE
## 155           177           8467             2371 2009-05-18 20:34:52    FALSE
## 156             0            957             1166 2009-06-13 23:07:02    FALSE
## 157             8           1280              811 2010-10-08 15:21:07    FALSE
## 158           474          16797             7552 2009-02-05 21:03:34     TRUE
## 159           396          22206             4098 2008-08-04 23:15:09    FALSE
## 160           571          29600            10083 2009-06-30 03:03:08     TRUE
## 161             1           5382              867 2012-04-26 23:38:37    FALSE
## 162           765          18543             3909 2009-05-08 20:04:28     TRUE
## 163             0           1660             1280 2017-06-17 18:36:46    FALSE
## 164            75          59913            21123 2008-01-06 18:52:39    FALSE
## 165           476          73358            25768 2009-06-07 20:12:29    FALSE
## 166          1272          14059             4822 2009-04-08 21:38:08     TRUE
## 167             0              2                8 2020-01-28 13:46:50    FALSE
## 168             0           2639             1063 2013-04-06 20:53:09    FALSE
## 169            36           2339              600 2015-01-05 11:43:25     TRUE
## 170             0           1972               23 2019-11-27 15:18:31    FALSE
## 171            18          17106            29769 2011-03-18 21:11:46    FALSE
## 172             0           1246             3830 2015-12-23 13:52:00    FALSE
## 173            90           2272              422 2010-05-02 19:13:17    FALSE
## 174             0            376              161 2019-11-05 23:12:38    FALSE
## 175           105          12347            18959 2009-02-09 21:51:31    FALSE
## 176           133           1822             1814 2014-02-07 04:11:06    FALSE
## 177            62          24021               12 2009-05-14 20:55:07    FALSE
## 178             0            634              626 2014-05-24 16:52:06    FALSE
## 179           247          52030               61 2009-03-16 21:44:48     TRUE
## 180           184          23564            33001 2009-04-14 23:44:13    FALSE
## 181             2            267              252 2018-11-23 16:58:04    FALSE
## 182             0             17                5 2020-03-24 16:16:44    FALSE
## 183             0            432             5108 2009-01-26 23:17:35    FALSE
## 184            46          90201            23306 2009-11-10 11:09:40    FALSE
## 185            20           1303             5790 2019-07-26 10:47:03    FALSE
## 186             0            383              551 2012-10-14 00:44:22    FALSE
## 187             1          20477            20154 2016-02-16 01:32:09    FALSE
## 188            33          32389             6795 2009-01-20 19:32:25    FALSE
## 189             1             73                1 2014-06-18 19:44:02    FALSE
## 190            87           7789             3937 2010-03-19 09:56:37    FALSE
## 191            18         100851            25758 2017-03-04 07:39:55    FALSE
## 192             9          10276            22380 2008-08-14 13:03:00    FALSE
## 193            75          22424               95 2009-07-20 02:41:15    FALSE
## 194             0           1955             3426 2018-06-22 22:43:03    FALSE
## 195            18          10998             2776 2015-03-21 18:59:35    FALSE
## 196          1330          25134            58290 2017-06-09 14:51:19    FALSE
## 197             0            177              438 2019-09-07 22:34:48    FALSE
## 198             0           1852               31 2019-01-11 05:49:57    FALSE
## 199             0           1592              581 2020-02-20 03:11:31    FALSE
## 200             0            211              303 2012-05-13 05:03:36    FALSE
## 201            10          22660              351 2015-08-04 10:03:56    FALSE
## 202             2           7470             4119 2009-06-25 03:16:28    FALSE
## 203           179           5490             1936 2016-02-16 21:56:45    FALSE
## 204             1            249              355 2019-08-06 21:37:27    FALSE
## 205           137          22408            22645 2016-03-17 23:31:47    FALSE
## 206            20            164             2777 2007-11-05 16:44:18    FALSE
## 207           866          21651             6256 2009-02-17 19:20:23     TRUE
## 208             0             27               10 2020-03-22 23:05:42    FALSE
## 209            26          35137            34581 2011-06-01 09:05:43    FALSE
## 210             0            257              101 2011-07-01 17:38:02    FALSE
## 211             0           3105             2188 2018-09-18 21:44:33    FALSE
## 212          1721          94876             1488 2009-01-14 22:42:22     TRUE
## 213             0             11                4 2009-08-16 02:22:17    FALSE
## 214          3086         394484            15409 2009-01-13 12:14:46     TRUE
## 215           120         207214           101068 2009-03-02 13:07:57    FALSE
## 216           429         154496               84 2009-01-19 06:12:07    FALSE
## 217            80           9788             5729 2015-01-23 20:35:10    FALSE
## 218            40           2603             8979 2011-12-08 10:05:37    FALSE
## 219            13            870            15455 2009-03-17 22:44:07    FALSE
## 220             2           2036             1273 2013-01-29 14:31:03    FALSE
## 221          1222         172251              718 2008-01-29 17:46:48     TRUE
## 222            63          16432              697 2011-06-21 00:04:25    FALSE
## 223            11          10745             4447 2010-07-06 22:49:07    FALSE
## 224             2          11467            76954 2015-08-18 06:14:14    FALSE
## 225             1            123               99 2020-03-12 20:38:09    FALSE
## 226            74          21536             1037 2009-01-29 18:17:41    FALSE
## 227             1          12301            16118 2019-10-21 09:31:54    FALSE
## 228            44          20443             9434 2009-06-26 23:29:24    FALSE
## 229             0              2                5 2019-12-26 06:25:17    FALSE
## 230             0             23                1 2020-03-22 03:42:34    FALSE
## 231           642          17514             2240 2010-06-04 18:26:36     TRUE
## 232            81            321               31 2011-01-26 04:10:38    FALSE
## 233            33           8780             4393 2017-07-29 22:04:39    FALSE
## 234             2           8035            16436 2011-07-24 19:59:25    FALSE
## 235             1           4767              288 2018-12-07 02:11:25    FALSE
## 236           114           7192             3926 2009-07-15 16:18:14    FALSE
## 237           124          38548             3671 2013-06-23 16:43:22    FALSE
## 238           143          13072             6944 2013-01-14 17:10:29    FALSE
## 239             0            416              640 2011-04-10 01:46:01    FALSE
## 240             4           2967             1055 2009-03-01 09:39:26    FALSE
## 241           348         672251           488745 2010-07-15 15:14:03    FALSE
## 242             4           5345            13267 2016-03-24 23:35:00    FALSE
## 243             3           6617             9303 2015-12-18 02:57:33    FALSE
## 244             7          64619           131938 2009-05-04 04:51:16    FALSE
## 245             2            976              319 2019-06-23 23:21:51    FALSE
## 246             0           1380             1022 2019-03-07 08:23:36    FALSE
## 247             3          26103            18107 2012-05-08 16:13:21    FALSE
## 248            79          44837             2305 2008-04-23 14:23:38    FALSE
## 249             0           2076              179 2011-07-08 02:22:11    FALSE
## 250             0             54              149 2015-03-16 22:23:21    FALSE
## 251           224          10537             2839 2009-01-07 16:13:07    FALSE
## 252            28          19787             9973 2011-01-02 00:12:59    FALSE
## 253             2           3431            10515 2009-10-19 00:32:51    FALSE
## 254             3          66356               10 2019-07-05 17:18:13    FALSE
## 255          1115          62628             1334 2008-06-06 23:37:02     TRUE
## 256            19           2215             3953 2014-11-03 02:17:37    FALSE
## 257             7           5467                0 2016-10-19 14:41:22    FALSE
## 258             0           5414             5547 2013-08-12 15:34:24    FALSE
## 259            47          14453            17656 2010-04-16 16:30:50    FALSE
## 260           211          32514           103031 2009-12-22 04:20:38    FALSE
## 261           185         115438            35789 2010-07-26 03:24:48    FALSE
## 262             3           3803             3204 2016-02-10 18:14:26    FALSE
## 263             3           5812             8091 2019-05-26 11:20:35    FALSE
## 264            10           6769            12644 2013-01-13 01:04:20    FALSE
## 265           441         571650            38813 2009-07-28 07:25:52    FALSE
## 266             2           3903              532 2017-01-27 00:45:20    FALSE
## 267            42          58241            22639 2008-06-17 20:24:03    FALSE
## 268            90           2495              125 2013-10-24 15:45:10     TRUE
## 269             1           2216              373 2011-08-05 06:14:43    FALSE
## 270             7          81942            81602 2014-01-13 19:53:47    FALSE
## 271           430          12798             4126 2011-09-18 15:08:41    FALSE
## 272             2           3539               86 2014-07-05 07:55:09    FALSE
## 273             0              8               36 2013-12-06 03:30:51    FALSE
## 274             3           1184               39 2013-09-16 01:48:40    FALSE
## 275             0           1383              393 2018-09-05 17:10:48    FALSE
## 276             0          11955             5462 2018-03-30 10:18:25    FALSE
## 277             1           3043             4002 2019-11-06 08:04:13    FALSE
## 278            45          13865            20710 2009-04-14 14:18:49    FALSE
## 279             4           2180             4005 2009-06-29 14:31:50    FALSE
## 280           145           6403              303 2014-08-02 07:41:58    FALSE
## 281             4           3097             6549 2010-10-01 18:50:39    FALSE
## 282            57            308               38 2019-07-18 19:19:33     TRUE
## 283             6           9858             1076 2017-12-23 04:26:15    FALSE
## 284            33           7635                1 2013-11-26 17:35:17    FALSE
## 285             5          42860            27649 2018-03-21 06:32:05    FALSE
## 286           970          13909            10667 2009-04-11 19:29:06     TRUE
## 287             7            940              894 2010-07-28 20:24:08    FALSE
## 288             5         232973               29 2017-11-30 21:54:40    FALSE
## 289          4866         237289             7340 2008-07-31 18:06:16    FALSE
## 290             1           5299             6170 2016-09-01 10:28:42    FALSE
## 291             2           1493             1717 2017-06-18 20:40:27    FALSE
## 292             1            223              397 2018-10-06 06:12:12    FALSE
## 293             1          10754            19772 2019-04-29 13:14:21    FALSE
## 294             0             14                0 2019-05-30 20:08:12    FALSE
## 295             1            407             2952 2012-05-25 15:03:28    FALSE
## 296           414          70683               95 2009-01-13 16:32:22     TRUE
## 297            27           1116              488 2009-01-30 03:37:54    FALSE
## 298            73           8978             6075 2009-06-18 18:31:58    FALSE
## 299             2           2382              958 2013-09-15 09:35:43    FALSE
## 300             0           1481              233 2017-12-30 05:20:18    FALSE
## 301             3          39178            80245 2013-10-01 00:45:52    FALSE
## 302             0            125               56 2020-02-10 16:02:14    FALSE
## 303             1            684             3726 2019-09-26 18:26:38    FALSE
## 304            23          16464            12261 2008-11-25 17:42:46    FALSE
## 305             1           1417             1383 2013-03-20 19:30:52    FALSE
## 306             0           2083              328 2016-05-30 19:01:35    FALSE
## 307             7           1169             2601 2009-04-13 15:13:43    FALSE
## 308             3            426               32 2012-02-03 18:24:28    FALSE
## 309             0          50636            69352 2017-08-16 22:12:17    FALSE
## 310            14           3022             2630 2014-05-26 21:22:31    FALSE
## 311            66          39018            57095 2009-01-09 21:07:23    FALSE
## 312            28            579             1756 2018-02-10 02:37:05    FALSE
## 313           368          73547            52560 2011-06-06 15:51:29     TRUE
## 314            13           1836               37 2012-06-27 03:07:17    FALSE
## 315           255         177108              296 2009-03-04 16:20:07     TRUE
## 316             0           1223               72 2019-04-26 13:02:24    FALSE
## 317             1             65              102 2013-03-19 14:45:42    FALSE
## 318             0            500              215 2014-10-25 00:30:59    FALSE
## 319             1            997             2813 2015-07-16 07:18:58    FALSE
## 320             2          20783            64471 2017-09-01 13:57:46    FALSE
## 321             4          15693            33473 2014-08-01 14:39:26    FALSE
## 322             5          13283              491 2010-10-13 11:23:06    FALSE
## 323             1           7625             8435 2019-02-22 11:27:55    FALSE
## 324             0           2377              132 2017-10-03 10:35:28    FALSE
## 325             0            773              435 2020-01-22 10:46:05    FALSE
## 326             1          21749             3143 2011-08-11 01:01:35    FALSE
## 327           219          47594              848 2009-07-24 15:37:56    FALSE
## 328             1          24325            29216 2017-10-02 07:54:23    FALSE
## 329           129         363862               56 2014-10-28 14:54:42     TRUE
## 330             0           1682                0 2020-03-06 14:08:20    FALSE
## 331             0             81               51 2011-04-08 03:51:22    FALSE
## 332             0           1016             2245 2017-04-20 00:39:54    FALSE
## 333             2            667              337 2016-06-04 00:47:09    FALSE
## 334           126          20251            20803 2011-10-28 16:37:01    FALSE
## 335            33          23045              451 2009-03-23 20:50:46    FALSE
## 336             0          10281             9869 2017-01-15 03:15:17    FALSE
## 337             4           7008            16257 2016-02-24 05:41:30    FALSE
## 338             0           1062              154 2009-12-20 00:00:20    FALSE
## 339             0            158               78 2009-08-24 23:37:20    FALSE
## 340             0             49               19 2020-02-11 04:46:51    FALSE
## 341             1            158               10 2011-07-19 17:17:00    FALSE
## 342             9          18520            13262 2010-09-29 18:41:16    FALSE
## 343           139          13481            19245 2012-07-16 19:31:00    FALSE
## 344             1           6695              215 2009-05-28 10:44:20    FALSE
## 345             0             70               74 2019-12-05 03:20:17    FALSE
## 346             3           1745             1640 2017-03-24 05:48:07    FALSE
## 347           149          15780             3027 2009-04-10 15:10:49    FALSE
## 348             0             54               51 2019-09-28 14:22:51    FALSE
## 349             0            157              197 2020-03-15 07:07:44    FALSE
## 350            17           1249              235 2009-04-20 15:08:49    FALSE
## 351             0          26333            16562 2019-11-08 05:10:05    FALSE
## 352            39          12208             1721 2011-03-23 09:56:31    FALSE
## 353             5             82                8 2009-05-26 23:37:01    FALSE
## 354           674         118021             5057 2009-06-08 14:42:19     TRUE
## 355          1023          27803              170 2009-08-31 23:12:13    FALSE
## 356           467         103775             1042 2009-06-27 14:30:43    FALSE
## 357             0           6780             2985 2009-08-12 09:21:12    FALSE
## 358            94           8989             7194 2008-06-12 07:41:31    FALSE
## 359           204          46128                3 2013-10-22 07:48:06    FALSE
## 360            49           2372             1096 2014-06-08 18:27:05    FALSE
## 361            31           2520             5552 2011-07-10 00:46:49    FALSE
## 362             0           1764               34 2017-08-03 13:18:09    FALSE
## 363           135          19025             4255 2012-02-03 01:34:45    FALSE
## 364            10           7742            18599 2019-08-01 05:44:34    FALSE
## 365           542          18680             1414 2010-01-08 20:05:12     TRUE
## 366             2           3436             2151 2011-11-05 19:42:24    FALSE
## 367             0              9               11 2019-07-05 20:41:56    FALSE
## 368            14          94974           126112 2015-08-09 01:24:20    FALSE
## 369             3           7477            15315 2009-03-23 01:27:27    FALSE
## 370             1            699             2614 2019-09-25 11:21:46    FALSE
## 371           138         141498              226 2009-09-14 10:15:56    FALSE
## 372             3            585             1250 2018-02-27 13:07:14    FALSE
## 373           193          56288             5219 2009-07-07 21:28:18     TRUE
## 374            12          10348                1 2010-04-06 05:57:37    FALSE
## 375            14           1972             1815 2013-08-27 12:41:11    FALSE
## 376             0            105              204 2012-07-24 08:25:00    FALSE
## 377             0            109               82 2019-07-19 16:28:34    FALSE
## 378             0           1149             1145 2020-01-09 13:03:40    FALSE
## 379            13          12775            44976 2009-06-19 21:46:31    FALSE
## 380            46           1934             1433 2011-01-12 05:44:42     TRUE
## 381            48          11734            20250 2008-09-14 22:46:41    FALSE
## 382            14            924              201 2013-03-14 22:59:38    FALSE
## 383             1             36                6 2017-04-16 15:49:42    FALSE
## 384             0             53              399 2017-12-02 06:27:14    FALSE
## 385           122         338395           483312 2012-12-12 05:50:20    FALSE
## 386             6           2597             4319 2009-09-06 21:38:53    FALSE
## 387            28          53780            71031 2011-11-19 05:26:03    FALSE
## 388             1           1616             3143 2017-07-25 17:12:08    FALSE
## 389             3            950             1647 2019-04-09 20:23:51    FALSE
## 390             2            601            13579 2019-06-05 00:13:28    FALSE
## 391            39           9800             3359 2009-09-15 04:53:49     TRUE
## 392             0           1531              771 2018-03-03 06:06:46    FALSE
## 393            81          31615             8815 2012-08-14 19:09:13     TRUE
## 394             0            954             1416 2019-08-14 14:52:57    FALSE
## 395             0             59                0 2020-03-16 23:08:26    FALSE
## 396             2           3114             2497 2011-10-09 05:12:09    FALSE
## 397            62           9769            41780 2011-02-10 20:09:25    FALSE
## 398           206           6760             1232 2009-04-15 14:20:43    FALSE
## 399            40          14796            29963 2007-06-22 03:14:26    FALSE
## 400          4098         270858             6030 2008-10-10 13:27:42     TRUE
## 401          1053         176637             2399 2007-10-23 16:27:54     TRUE
## 402             0              8                5 2019-11-22 20:55:27    FALSE
## 403            12         304711           349103 2012-07-13 07:42:28    FALSE
## 404            13          74624            53141 2012-01-27 10:17:16    FALSE
## 405            46          10502             9916 2015-10-14 17:57:57    FALSE
## 406           209          53837              472 2009-12-14 22:41:09     TRUE
## 407            53          30467               11 2009-05-15 19:44:56    FALSE
## 408            91           4249               47 2011-02-18 14:05:37     TRUE
## 409             9           7240            21418 2011-04-29 20:10:47    FALSE
## 410             2           4994            11176 2010-02-26 02:14:32    FALSE
## 411            42          23405             9754 2016-05-03 11:51:59    FALSE
## 412            39           9579             6947 2010-10-26 09:11:04    FALSE
## 413             1            391              697 2009-05-05 09:06:22    FALSE
## 414             1            326               38 2018-12-12 17:34:32    FALSE
## 415             0              1                0 2018-11-06 06:35:45    FALSE
## 416            46           3304             2539 2011-10-26 14:05:20    FALSE
## 417             9           1655             5295 2012-10-18 23:25:40    FALSE
## 418             0           1323             9329 2013-12-06 05:08:57    FALSE
## 419           581         139363             2471 2009-09-02 13:20:38     TRUE
## 420            13            569               15 2012-01-20 18:56:22    FALSE
## 421             0          20339                0 2013-06-06 01:52:45    FALSE
## 422           413        1452029              167 2011-06-16 10:52:41    FALSE
## 423            10          33105           116424 2009-11-06 00:08:45    FALSE
## 424             2           3539            11913 2019-03-27 21:16:01    FALSE
## 425          7364         176923             1021 2011-02-15 20:50:58     TRUE
## 426             1           2654            62313 2019-03-10 02:04:35    FALSE
## 427             0             22              431 2017-10-12 18:20:26    FALSE
## 428             0             83                5 2014-10-02 18:30:03    FALSE
## 429          3192         145774            17562 2008-04-30 19:29:08    FALSE
## 430           597         127693             1084 2009-10-13 15:00:44    FALSE
## 431            40          27019               13 2012-02-24 18:35:25    FALSE
## 432           337           8588             2322 2009-12-16 11:45:40    FALSE
## 433             2          25391            24102 2017-06-19 11:55:47    FALSE
## 434           166          77107                8 2010-02-25 06:45:20    FALSE
## 435          1874         187531             3919 2008-12-15 23:00:56     TRUE
## 436             3            448              259 2019-03-16 08:26:11    FALSE
## 437             2           7421            10043 2019-12-30 14:01:20    FALSE
## 438             7           3510             1292 2009-07-30 17:35:44    FALSE
## 439           765           9342                5 2020-01-06 17:09:38    FALSE
## 440            37          40000                0 2009-05-15 18:21:21    FALSE
## 441             2          29632           149682 2012-10-28 02:18:51    FALSE
## 442           386          23279             2065 2012-03-27 18:09:02    FALSE
## 443            12          15917            27665 2013-04-15 13:17:11    FALSE
## 444            48          93584            32909 2011-02-05 02:50:12    FALSE
## 445            72          22949             3835 2009-11-15 13:45:41    FALSE
## 446            48           2262             8167 2010-05-26 02:57:42    FALSE
## 447           128          17556             3777 2008-08-12 21:01:15    FALSE
## 448             0            193              602 2018-04-02 16:39:23    FALSE
## 449             1          25781           108557 2008-12-02 16:16:05    FALSE
## 450            12            385            14638 2009-11-17 20:29:00    FALSE
## 451           283           9348            16880 2009-07-07 17:06:24    FALSE
## 452           506           7065              990 2013-07-08 06:39:17    FALSE
## 453           510          58949              785 2010-08-09 09:12:26     TRUE
## 454           137          23119             8554 2011-10-19 17:35:42     TRUE
## 455             2           4066             1005 2010-09-25 00:14:13    FALSE
## 456             0             13               58 2020-01-22 14:15:30    FALSE
## 457             0             29               46 2020-03-20 16:04:24    FALSE
## 458            30          15624            55201 2017-09-18 15:00:20    FALSE
## 459             6           1280             1303 2011-06-30 20:45:15    FALSE
## 460             0            945              473 2020-03-02 03:01:06    FALSE
## 461             2          36763            39824 2009-02-25 21:50:04    FALSE
## 462            98          18109                0 2012-11-17 21:04:32    FALSE
## 463             0            142                4 2019-06-28 13:25:24    FALSE
## 464             6          12324             4623 2009-06-11 20:35:52    FALSE
## 465             3           8557               12 2013-01-25 08:30:48    FALSE
## 466           240          30930            24730 2009-08-15 20:14:41    FALSE
## 467          1924         348085               35 2009-06-24 11:29:19     TRUE
## 468             2           3505             2736 2017-01-06 17:00:12    FALSE
## 469             0             80               60 2020-03-19 19:18:14    FALSE
## 470            14           8497                1 2010-04-01 04:19:17    FALSE
## 471             2           2317               12 2011-11-16 14:54:20    FALSE
## 472            19          25417            51495 2017-05-26 02:55:16    FALSE
## 473             1           1853              517 2014-02-06 15:50:17    FALSE
## 474          1387          16480             1269 2009-03-08 14:49:30     TRUE
## 475            26          19884             4314 2011-03-19 05:02:04     TRUE
## 476           186           5344            11060 2008-05-26 19:51:15    FALSE
## 477            33           8816            30504 2012-10-21 07:06:44    FALSE
## 478             1            199               50 2019-11-14 11:09:13    FALSE
## 479             6           7628                0 2013-03-31 22:01:16    FALSE
## 480             0           2246             2559 2020-01-02 07:30:49    FALSE
## 481            21          19583             2586 2010-11-13 07:56:22    FALSE
## 482             0            400              566 2020-01-10 08:04:56    FALSE
## 483             8           3923               56 2009-10-30 21:38:04    FALSE
## 484            37          17927            22901 2010-10-14 20:21:20    FALSE
## 485             1            270             1251 2013-07-24 09:02:08    FALSE
## 486             0          18435             5760 2017-09-15 06:23:08    FALSE
## 487             2          28160            48888 2011-05-04 03:24:55    FALSE
## 488           127          42727            35329 2009-11-28 13:54:41    FALSE
## 489            49          34510            19102 2008-04-21 06:47:43    FALSE
## 490            14           2107             1342 2017-06-05 03:47:42    FALSE
## 491             0            820              763 2013-07-29 08:30:31    FALSE
## 492             0              1                0 2020-03-27 16:18:12    FALSE
## 493            20           2165             5546 2014-12-30 02:29:41    FALSE
## 494           552         152515             8456 2011-03-21 02:16:21     TRUE
## 495             0           2486             2983 2015-04-24 13:17:03    FALSE
## 496             6           9332            16835 2009-03-27 23:12:40    FALSE
## 497             7           5554              282 2008-04-28 12:09:20    FALSE
## 498             0            509             3592 2015-07-26 15:47:17    FALSE
## 499           202         150895             1191 2009-02-28 02:55:18    FALSE
## 500             2           7646             2501 2008-11-19 23:36:50    FALSE
## 501             1            217               68 2020-01-26 05:24:54    FALSE
## 502            12          44953            29104 2011-02-05 06:19:59    FALSE
## 503           128           9821             1203 2009-11-13 17:55:09     TRUE
## 504           308         126475            35965 2008-05-09 12:14:54    FALSE
## 505           143          16281              539 2009-01-27 07:01:50    FALSE
## 506             8           1065                7 2012-05-23 22:56:26    FALSE
## 507             0            998              403 2019-07-19 15:28:08    FALSE
## 508            34           2822             6827 2014-06-03 18:45:21    FALSE
## 509             0              9              103 2017-12-30 02:04:45    FALSE
## 510             2           2956              509 2017-12-22 03:29:19    FALSE
## 511             1            971             1057 2013-11-15 11:46:46    FALSE
## 512             0            608              579 2018-09-09 11:08:42    FALSE
## 513             9           6781            15452 2015-02-17 22:17:02    FALSE
## 514             4            659                0 2020-01-26 01:30:58    FALSE
## 515             1          17244            11033 2011-08-08 20:48:25    FALSE
## 516             0           3017             1003 2018-08-24 13:56:02    FALSE
## 517            93           6709             7051 2009-02-18 20:04:51    FALSE
## 518             0             14              425 2019-02-14 16:21:24    FALSE
## 519             0            572             6927 2012-08-09 00:19:19    FALSE
## 520             2           7618            32963 2018-05-06 12:15:16    FALSE
## 521          1383          86302            63312 2007-08-17 09:34:00     TRUE
## 522            19           3793             2935 2019-10-20 05:45:45    FALSE
## 523             5           8751              156 2012-08-25 08:50:13    FALSE
## 524            20          11507            17420 2012-09-23 06:06:44    FALSE
## 525            13          19824            15878 2013-12-21 11:04:27    FALSE
## 526             0             14                1 2020-03-24 11:36:26    FALSE
## 527             8            748              774 2015-04-15 08:36:04    FALSE
## 528             2           6355            22766 2017-12-21 22:17:38    FALSE
## 529            30          19716              245 2007-07-02 17:48:57    FALSE
## 530            64          16547           112545 2009-09-08 18:36:03    FALSE
## 531             0            188               43 2018-10-08 13:22:26    FALSE
## 532             0            231              422 2018-10-18 23:01:56    FALSE
## 533             2            782              417 2018-04-24 14:59:25    FALSE
## 534            12            469               23 2011-04-19 13:20:00    FALSE
## 535            13           4266              176 2009-07-11 23:44:07    FALSE
## 536          2673           3206              278 2008-12-18 15:32:08    FALSE
## 537             0            789              466 2011-04-27 20:36:01    FALSE
## 538             0             62                6 2017-10-10 00:43:32    FALSE
## 539             1           1065             4178 2020-01-16 01:41:43    FALSE
## 540            10          30126               99 2019-04-04 10:16:38    FALSE
## 541           850        1844128             1201 2009-07-29 12:16:45     TRUE
## 542             0           1176              573 2019-10-08 16:01:25    FALSE
## 543             0           5884            15216 2017-10-17 11:24:31    FALSE
## 544            30          22022              474 2009-04-10 19:54:40    FALSE
## 545             4          31608             1229 2016-10-27 09:16:20    FALSE
## 546             8            334              106 2015-11-13 18:16:37    FALSE
## 547             8            920             1426 2014-08-22 05:36:40    FALSE
## 548           389          69721              155 2015-01-13 18:19:11     TRUE
## 549             0            583              537 2015-02-16 23:34:49    FALSE
## 550           237          37543             3963 2009-02-19 20:49:31    FALSE
## 551             4          27971            50605 2009-03-14 20:54:42    FALSE
## 552             1           2540             2875 2008-11-30 20:05:55    FALSE
## 553            89          14194             2640 2010-03-02 19:27:00    FALSE
## 554             0             10                1 2020-03-27 23:03:04    FALSE
## 555            83         244729           549623 2014-11-07 15:21:02    FALSE
## 556           567          13267              764 2012-03-24 19:38:57     TRUE
## 557           510          59914              785 2010-08-09 09:12:26     TRUE
## 558             0            538              517 2017-11-20 12:12:34    FALSE
## 559            76          14816             7381 2010-05-18 19:20:51    FALSE
## 560             5           2851              307 2009-03-18 05:30:22    FALSE
## 561             1           5979             6776 2018-03-29 16:07:40    FALSE
## 562            27           4209             8520 2009-10-02 17:51:42    FALSE
## 563           186         134149             1435 2011-10-10 16:45:59     TRUE
## 564            23           2649             6361 2016-01-09 21:01:14    FALSE
## 565             1         126809            35320 2016-06-20 01:02:31    FALSE
## 566           116           3756              901 2014-09-19 04:37:03    FALSE
## 567            19         110409            97287 2015-11-21 15:16:18    FALSE
## 568            23         113849           107788 2018-12-27 17:49:13    FALSE
## 569           849        1846775             1201 2009-07-29 12:16:45     TRUE
## 570            11          10498             4883 2019-01-30 02:50:33    FALSE
## 571         11195         246963                0 2009-02-28 08:31:32     TRUE
## 572            13           5793             4359 2009-05-08 14:45:00    FALSE
## 573             0              8                1 2020-03-28 05:14:18    FALSE
## 574            32           2412             1929 2012-12-05 02:50:38    FALSE
## 575            71          57927            45326 2011-12-09 00:34:55    FALSE
## 576             0           2978             6809 2019-07-24 23:28:27    FALSE
## 577           445          22598              529 2009-10-08 17:45:37    FALSE
## 578             8            510                7 2016-02-06 15:03:30    FALSE
## 579            18            641             2337 2011-01-11 22:31:44    FALSE
## 580             0            239               82 2019-05-17 20:01:29    FALSE
## 581             0            656             6716 2016-08-11 18:01:05    FALSE
## 582            25           6637            11969 2010-08-09 13:01:44    FALSE
## 583           263           2119              563 2008-07-18 18:13:57     TRUE
## 584             0            116               70 2019-06-24 18:00:07    FALSE
## 585            37           2011              797 2011-04-14 07:06:04    FALSE
## 586            17           4244             2588 2013-07-16 22:11:26    FALSE
## 587            10          33702                0 2013-10-10 22:11:02    FALSE
## 588           219          13468             4028 2011-02-01 03:41:33     TRUE
## 589             6           1223             1637 2012-08-30 13:40:13    FALSE
## 590             7          13191             6921 2011-04-06 17:12:39    FALSE
## 591            44          22222            13318 2010-01-26 20:24:23    FALSE
## 592             0            516             1009 2011-09-11 05:52:20    FALSE
## 593             0           5662            32461 2015-03-06 21:09:08    FALSE
## 594             4           6862              826 2009-07-18 23:42:37    FALSE
## 595             6          40750            62271 2010-03-09 17:22:41    FALSE
## 596             0           1246                9 2015-03-15 09:39:06    FALSE
## 597            11          24510            32008 2016-02-18 17:20:38    FALSE
## 598            66           3587             1373 2010-01-12 14:55:49    FALSE
## 599             0            431                0 2018-04-12 21:08:03    FALSE
## 600             3            901              176 2012-05-05 10:42:22    FALSE
## 601            51           1053              678 2011-02-21 20:13:00    FALSE
## 602             0            114               60 2019-11-18 18:58:07    FALSE
## 603             1           5499             5676 2019-09-10 10:31:28    FALSE
## 604           140          48025            38803 2009-04-08 15:57:32    FALSE
## 605             0             89               27 2019-08-28 12:48:36    FALSE
## 606             0            677                8 2011-07-23 08:04:17    FALSE
## 607            80          58330                0 2011-03-02 20:16:47    FALSE
## 608            35          25321             3036 2013-10-24 16:44:56    FALSE
## 609           157          18069            13312 2012-03-24 17:37:16    FALSE
## 610            13           7529             8253 2010-12-19 18:26:03    FALSE
## 611            19           1657             2941 2014-06-18 05:14:42    FALSE
## 612             0            341               93 2020-03-01 06:29:28    FALSE
## 613            27           4805             1631 2011-09-12 19:20:40    FALSE
## 614           136          71145            28354 2012-02-19 21:01:17    FALSE
## 615            46           3130              523 2012-01-26 21:27:16    FALSE
## 616           282         108333           103654 2009-09-08 15:20:42    FALSE
## 617            26           1263             4499 2011-11-06 18:24:47    FALSE
## 618             0           1840             3716 2017-08-21 22:35:00    FALSE
## 619           249          15688             3625 2007-09-09 05:38:56    FALSE
## 620             1          27609            20507 2014-01-02 20:24:22    FALSE
## 621             0              2                1 2020-03-23 17:00:38    FALSE
## 622            13           6549             7928 2010-05-29 10:22:55    FALSE
## 623          1813          62183             1742 2007-10-22 16:57:07     TRUE
## 624             0            148              160 2013-06-26 06:28:07    FALSE
## 625             0           3286             2941 2015-10-14 01:13:02    FALSE
## 626             0            183              590 2015-01-30 12:21:22    FALSE
## 627            12          19830             4199 2010-05-09 04:41:36    FALSE
## 628           116           9172             3324 2011-09-08 09:52:13     TRUE
## 629             0           2224             5506 2018-03-05 17:10:07    FALSE
## 630            19           1510             1314 2015-04-13 19:13:20    FALSE
## 631           234         547575              718 2008-11-28 03:22:15    FALSE
## 632            15           1512              320 2013-12-27 18:35:41    FALSE
## 633             1          14758            16593 2017-03-05 20:21:38    FALSE
## 634            25           5786            19684 2012-10-13 21:09:20    FALSE
## 635             1             65               63 2019-10-27 15:48:32    FALSE
## 636           141          53079            20869 2010-10-01 13:15:35    FALSE
## 637             1          33847           139354 2014-05-21 20:41:03    FALSE
## 638           205          29768             9700 2008-11-18 09:48:42    FALSE
## 639             3            987              606 2018-07-13 21:45:56    FALSE
## 640             0              1                0 2020-03-26 05:57:24    FALSE
## 641            64          32437             6013 2017-08-09 17:11:08    FALSE
## 642             0             45              587 2017-12-29 18:22:17    FALSE
## 643             0            233                9 2017-05-05 16:47:02    FALSE
## 644            16           1509             4899 2012-10-18 17:32:46    FALSE
## 645             1          14708             4794 2019-05-12 01:06:41    FALSE
## 646             0            681              649 2018-12-29 06:56:05    FALSE
## 647           436         154720            45483 2009-02-09 14:43:47    FALSE
## 648            11           4814            14892 2009-02-26 01:24:33    FALSE
## 649             0            115                0 2019-01-11 18:41:26    FALSE
## 650           306          24967            26721 2014-03-10 22:48:28    FALSE
## 651          2025         413305             3259 2009-01-14 22:29:11     TRUE
## 652            19           2787             1730 2010-05-01 02:13:10    FALSE
## 653             0            204               15 2017-12-29 22:41:01    FALSE
## 654             0            145               56 2010-05-01 14:30:15    FALSE
## 655            10           1949             3090 2008-10-21 07:43:03    FALSE
## 656            10          12356            24059 2017-05-10 06:21:37    FALSE
## 657             1          42069            43783 2019-03-20 13:19:54    FALSE
## 658             5           4942             1542 2010-02-08 00:39:48    FALSE
## 659           510          59914              785 2010-08-09 09:12:26     TRUE
## 660            16           5721             9851 2017-02-15 21:43:01    FALSE
## 661          1048          13150             3930 2016-02-01 01:17:25    FALSE
## 662            12           1082             1319 2014-07-09 06:57:07    FALSE
## 663           443          15611             6308 2011-06-05 05:24:03     TRUE
## 664           353          12495              998 2008-07-17 09:55:02     TRUE
## 665             7          23444            12572 2010-05-10 16:29:19    FALSE
## 666            15           6700            31125 2009-04-13 05:35:44    FALSE
## 667             0           2213             2104 2015-07-27 18:07:53    FALSE
## 668             0          17670            16900 2013-04-09 23:19:16    FALSE
## 669             0            906              267 2019-02-11 17:23:26    FALSE
## 670             0           1015              809 2016-11-28 12:33:54    FALSE
## 671             0            168              119 2020-02-28 04:42:45    FALSE
## 672            47           6320             4938 2011-10-20 18:54:53    FALSE
## 673             9           4801             5086 2009-03-24 21:49:56    FALSE
## 674           328          77103              973 2008-05-19 15:44:48    FALSE
## 675             6          14433            75041 2010-08-22 18:50:01    FALSE
## 676             2             52               74 2020-03-09 15:03:44    FALSE
## 677             9          23907            27850 2016-11-04 21:34:37    FALSE
## 678             4          47220            47532 2014-11-03 02:35:53    FALSE
## 679             5           4717             3765 2016-05-24 05:05:25    FALSE
## 680           886         131075             2689 2008-12-30 16:36:30     TRUE
## 681           329          46203           113314 2016-07-09 21:08:06    FALSE
## 682           765           9342                5 2020-01-06 17:09:38    FALSE
## 683           707          88461            10655 2009-08-14 08:32:45    FALSE
## 684             4           7924            13799 2010-12-25 16:25:18    FALSE
## 685           218          32538              107 2008-10-09 19:41:11    FALSE
## 686             6           5197            15312 2013-01-24 18:56:42    FALSE
## 687           259          34798            28001 2009-05-23 19:49:51     TRUE
## 688           579          45381              829 2009-04-06 04:58:33     TRUE
## 689             0             82             2071 2016-02-22 02:38:35    FALSE
## 690           145           5904             4273 2010-09-04 17:49:08    FALSE
## 691             0              7                1 2020-02-23 19:52:34    FALSE
## 692          2330         151883             2986 2007-07-23 17:45:08     TRUE
## 693             7            121               33 2017-07-26 19:48:23    FALSE
## 694             6            426             1909 2012-10-03 00:36:06     TRUE
## 695             0            674              534 2011-05-07 14:18:20    FALSE
## 696             1           3216             3822 2010-12-30 15:09:57    FALSE
## 697             0              3               91 2014-03-10 18:21:51    FALSE
## 698            74          59246            47251 2013-03-22 00:36:51    FALSE
## 699             0             43               65 2017-08-30 05:34:56    FALSE
## 700          1160         308251            31215 2009-10-14 04:56:48    FALSE
## 701           515         100457             2466 2009-02-24 16:09:25     TRUE
## 702             0              8                1 2020-02-28 17:41:29    FALSE
## 703            18          85828           103684 2017-01-30 18:07:13    FALSE
## 704             7          28306            31005 2017-01-08 17:09:56    FALSE
## 705            33           1982              427 2010-05-25 22:23:55    FALSE
## 706             0           2105            11481 2019-09-17 19:56:55    FALSE
## 707             0            840             1308 2019-09-20 00:52:27    FALSE
## 708            14           1508             1640 2011-11-10 20:55:33    FALSE
## 709             0            721             1828 2018-02-22 02:58:27    FALSE
## 710           558         254727              906 2009-07-19 13:40:42    FALSE
## 711             0           1072             3351 2018-07-12 04:22:49    FALSE
## 712            28           3261              883 2013-06-16 01:05:12    FALSE
## 713            19          69587            57710 2015-06-21 04:28:24    FALSE
## 714            15          21638            24050 2015-11-09 15:33:45    FALSE
## 715          3026         148497              166 2007-06-10 20:26:28     TRUE
## 716           859         187121             5231 2008-08-06 22:20:53     TRUE
## 717            79         143798                0 2012-09-07 04:34:22    FALSE
## 718             0            769              218 2017-01-30 21:47:31    FALSE
## 719             3            492             4770 2015-01-01 03:11:34    FALSE
## 720             7          12399              208 2010-02-17 17:48:38    FALSE
## 721            39          49324            22909 2010-01-28 07:03:24    FALSE
## 722           482         213543              831 2008-10-07 16:32:59    FALSE
## 723          1185         155011              546 2009-08-06 03:54:12     TRUE
## 724             6          20965            33013 2010-06-05 19:15:00    FALSE
## 725             9            747             1497 2013-09-24 04:08:22    FALSE
## 726           277           7457             2205 2009-02-09 21:03:54    FALSE
## 727            68          19765            21815 2015-02-13 05:41:25    FALSE
## 728            35         117644            66812 2011-10-08 15:43:33    FALSE
## 729           359          26372             1604 2008-10-21 17:14:28    FALSE
## 730             3            264              746 2010-05-14 15:06:08    FALSE
## 731             1           8501             2188 2012-09-29 03:50:09    FALSE
## 732             0            182               50 2020-03-24 17:45:37    FALSE
## 733           948           7053               22 2012-01-31 21:30:43     TRUE
## 734             1             32               37 2016-07-07 14:05:05    FALSE
## 735             7           1937             2769 2008-10-15 23:13:42    FALSE
## 736            21           4181               30 2012-02-04 06:42:49    FALSE
## 737             0           1113             1365 2019-01-24 18:18:39    FALSE
## 738             2            219              140 2020-02-21 22:08:15    FALSE
## 739           183         211611            31534 2009-02-03 23:37:50    FALSE
## 740            30           2871              297 2014-07-09 17:08:10    FALSE
## 741           132           9549             1918 2007-10-01 05:33:46    FALSE
## 742          1385          53640             1241 2009-03-12 17:39:58    FALSE
## 743            23          37100            45092 2013-07-02 08:45:27    FALSE
## 744            26          20585            10197 2016-04-07 03:06:31    FALSE
## 745           208          10036              576 2008-10-29 01:23:39    FALSE
## 746          2666         135776             3697 2008-05-15 19:28:40     TRUE
## 747           111           7908             1216 2010-04-28 20:30:29    FALSE
## 748             0           1289              141 2019-03-02 16:19:13    FALSE
## 749             0          11304            14963 2010-04-10 13:25:12    FALSE
## 750            72          12901             6599 2009-02-18 20:03:38    FALSE
## 751             0            826              528 2016-07-24 02:40:17    FALSE
## 752             5           1491             2911 2016-09-30 07:23:53    FALSE
## 753             3           1982             8466 2011-07-18 14:01:41    FALSE
## 754            78          13531            43400 2008-08-15 20:54:46     TRUE
## 755            49           5995             3295 2010-05-20 22:41:56     TRUE
## 756            74          34915              336 2015-01-28 13:51:15    FALSE
## 757             1           1286             1639 2019-08-22 23:33:11    FALSE
## 758            22           1336             4802 2019-07-18 03:20:40    FALSE
## 759            95          14769             4877 2008-04-22 02:33:17    FALSE
## 760             0            451              518 2020-03-12 12:50:15    FALSE
## 761             0          30106              159 2016-05-09 22:55:33    FALSE
## 762             0           1284             4016 2017-10-17 19:26:33    FALSE
## 763            61            873             2070 2011-04-11 21:13:40    FALSE
## 764             6           2191              906 2013-05-24 08:21:20    FALSE
## 765           297          47419              127 2015-12-27 15:19:15    FALSE
## 766            24         119140               73 2017-06-25 03:43:18    FALSE
## 767            48           5418              559 2016-05-31 14:27:07    FALSE
## 768           187          11637             3876 2008-07-22 17:20:09    FALSE
## 769           217          49254            21737 2011-08-18 23:56:46    FALSE
## 770            10           9751             5879 2013-11-04 06:29:01    FALSE
## 771             0            524              293 2014-01-01 13:29:05    FALSE
## 772             3            142               85 2020-03-19 22:00:15    FALSE
## 773             1             71              186 2019-10-05 13:35:55    FALSE
## 774             3           5415            12881 2018-03-31 10:16:49    FALSE
## 775             7           5507             1009 2019-09-15 09:24:23    FALSE
## 776             2            760              304 2018-12-21 10:29:51    FALSE
## 777             3            670              766 2009-08-04 15:13:24    FALSE
## 778             0            400              154 2020-01-02 05:03:03    FALSE
## 779             6          19453            11757 2012-12-04 10:21:33    FALSE
## 780           110           7198            14021 2012-12-27 10:05:59    FALSE
## 781             0            455              503 2016-08-14 14:20:46    FALSE
## 782             3           1494              952 2019-10-26 22:03:25    FALSE
## 783            11           3006             8237 2015-06-21 06:39:52    FALSE
## 784             1           5293            14261 2013-08-20 07:20:27    FALSE
## 785            20           2832             5297 2015-12-11 22:13:16    FALSE
## 786            29          32960           148290 2011-02-14 02:18:11    FALSE
## 787            71           7792             4961 2011-07-06 21:41:25    FALSE
## 788            32          49535            12494 2009-06-20 09:22:13    FALSE
## 789            36           4860              219 2011-02-03 23:12:55    FALSE
## 790             0            476             2675 2013-05-06 18:42:52    FALSE
## 791             0             71               12 2018-03-17 06:04:04    FALSE
## 792            85          10118            38681 2017-09-04 20:26:38    FALSE
## 793             0            147              229 2018-12-04 07:15:50    FALSE
## 794            29          10068             4956 2011-12-21 10:15:17    FALSE
## 795           237          37937             1274 2009-04-03 17:06:42     TRUE
## 796             0             17                0 2020-02-12 12:20:45    FALSE
## 797            99          46036             1804 2011-05-04 03:14:43    FALSE
## 798           131           2177              350 2009-08-26 02:53:44    FALSE
## 799             1           6400            28497 2013-03-15 20:35:37    FALSE
## 800           202          65731             2401 2009-03-22 17:07:29    FALSE
## 801             3           9027             1696 2016-05-19 19:35:41    FALSE
## 802             0           2041             8378 2011-01-20 15:23:06    FALSE
## 803           156           4000             7333 2015-03-03 17:11:04     TRUE
## 804             6          15696            16343 2009-07-13 15:41:19    FALSE
## 805           522          15025             4835 2010-03-05 14:37:59     TRUE
## 806             6         260626           137610 2017-01-27 20:55:52    FALSE
## 807           329         207521            55568 2009-02-04 00:22:22    FALSE
## 808             0            829            19451 2017-12-03 05:07:43    FALSE
## 809            56          20299             1186 2009-07-08 22:20:53    FALSE
## 810             0           3384            16731 2012-06-29 15:03:28    FALSE
## 811           525          42049             3220 2011-01-16 09:40:49    FALSE
## 812            91          13137            23628 2009-01-05 14:41:06    FALSE
## 813             4           3638            26817 2009-04-21 03:54:44    FALSE
## 814            73          11286             1723 2013-07-17 12:30:24    FALSE
## 815           126          63584            14281 2010-09-01 09:04:19    FALSE
## 816            10          19207            18054 2013-06-28 01:56:07    FALSE
## 817            57          25546              491 2010-03-01 11:47:01    FALSE
## 818             1          26351             5997 2013-08-10 01:08:08    FALSE
## 819             1           7573                1 2019-08-21 22:33:27    FALSE
## 820             0            317               58 2017-02-10 01:26:39    FALSE
## 821            33           4134             7849 2009-04-11 02:26:10    FALSE
## 822            32           2794             1331 2013-04-17 11:38:17    FALSE
## 823            44            698              112 2009-07-09 00:55:24    FALSE
## 824            14            994                1 2010-04-17 18:27:50    FALSE
## 825            20           5892               12 2009-03-18 21:14:28    FALSE
## 826             0            395              861 2011-07-11 06:22:01    FALSE
## 827             5          14744            66420 2017-01-31 10:25:23    FALSE
## 828             2           8066             3018 2010-11-16 23:33:54    FALSE
## 829            66           4234                1 2007-03-06 05:53:33    FALSE
## 830             2           5566             5298 2011-07-15 03:03:26    FALSE
## 831             0             50                5 2012-03-24 11:42:06    FALSE
## 832             2           2795            23626 2009-02-15 21:14:18    FALSE
## 833             7           5449              327 2009-04-21 04:06:01    FALSE
## 834             0              1                1 2020-03-26 21:41:03    FALSE
## 835             0            306              691 2012-12-14 20:18:58    FALSE
## 836            32          13523              818 2014-02-02 02:22:16    FALSE
## 837             2           3842            12723 2017-12-19 07:22:41    FALSE
## 838            10          64215             1832 2009-04-28 02:02:36    FALSE
## 839           249         163915             3571 2012-12-13 14:45:50    FALSE
## 840            27           3829             4885 2011-09-14 15:45:28    FALSE
## 841            24           7065             7313 2011-02-14 12:52:39    FALSE
## 842             2           9627             1998 2017-05-26 08:23:10    FALSE
## 843             2            941             1619 2012-01-16 20:58:40    FALSE
## 844            44           4823             4589 2013-03-08 23:04:07    FALSE
## 845             9           5598              106 2010-05-21 17:33:58    FALSE
## 846           104           7539             1027 2013-04-29 19:56:00    FALSE
## 847           101          57709            19989 2011-05-07 06:56:56    FALSE
## 848             0             55              216 2020-01-21 11:06:39    FALSE
## 849             0            782               51 2010-11-17 22:43:12    FALSE
## 850             8          17710            16844 2012-08-03 04:47:00    FALSE
## 851            59          24470            14310 2010-09-20 20:24:53    FALSE
## 852             0           1317              774 2009-03-17 03:10:53    FALSE
## 853            52           2658               13 2008-03-21 15:41:19    FALSE
## 854           299         216769           105189 2009-03-16 23:03:13    FALSE
## 855            13          91637               34 2013-07-03 10:28:09    FALSE
## 856             0             52              298 2020-02-19 14:55:36    FALSE
## 857           710          23448            22497 2009-09-09 02:41:00    FALSE
## 858            17          28556            37885 2013-01-28 18:47:54    FALSE
## 859            10          10682             8652 2009-03-05 04:22:55    FALSE
## 860            39           8628             2319 2008-11-06 04:15:30    FALSE
## 861             3           6490             4126 2009-05-06 13:00:21    FALSE
## 862             7          54447            10293 2018-05-13 03:01:38    FALSE
## 863           124          26142            21917 2008-04-21 18:39:50    FALSE
## 864           120           8776             2653 2006-11-17 21:54:30    FALSE
## 865            48           4702             2177 2012-04-09 06:27:24    FALSE
## 866             0           1493            28478 2012-12-07 17:32:23    FALSE
## 867             3           5414             2822 2009-08-03 21:01:44    FALSE
## 868             0            455               41 2014-06-09 15:02:26    FALSE
## 869           170          86159            50314 2014-04-30 10:49:45    FALSE
## 870             0           1515             7563 2018-05-03 13:00:33    FALSE
## 871             1           7768              348 2017-03-16 04:46:41    FALSE
## 872             0           3706              128 2017-07-15 20:19:20    FALSE
## 873           574           9977            21338 2009-04-06 10:04:30     TRUE
## 874             0             37               10 2019-10-18 19:38:47    FALSE
## 875             6          28833             6865 2012-05-03 10:42:47    FALSE
## 876             1           3456            34777 2013-07-28 22:53:34    FALSE
## 877             1           7388            10254 2018-02-08 16:29:33    FALSE
## 878             0           8008            24228 2017-02-19 22:34:15    FALSE
## 879            98         145228            29352 2009-11-26 01:08:34    FALSE
## 880            56          41444                9 2013-02-13 13:24:25    FALSE
## 881           340          80073                0 2011-04-15 19:31:16    FALSE
## 882            21           3711              597 2008-07-12 16:46:26    FALSE
## 883             0           2341             1298 2016-05-14 09:40:41    FALSE
## 884            12           5644             3776 2010-03-24 06:48:00    FALSE
## 885             1           7983            38709 2013-09-26 12:42:14    FALSE
## 886             6           6248              591 2010-05-08 05:11:08    FALSE
## 887            26           6099              557 2019-07-28 03:02:35    FALSE
## 888            23           6716            14839 2018-09-04 22:56:10    FALSE
## 889             0            117              331 2019-09-25 15:40:03    FALSE
## 890             0             48                6 2019-11-18 16:24:07    FALSE
## 891             6          12373            12508 2014-05-06 06:46:16    FALSE
## 892           484         137359           134796 2010-02-21 09:23:02    FALSE
## 893           157          14446             2543 2016-01-17 00:04:16    FALSE
## 894             1           2675                3 2018-11-01 10:27:16    FALSE
## 895             0            291               50 2019-09-02 19:46:19    FALSE
## 896             0            974              624 2011-09-18 15:25:02    FALSE
## 897             4         160484                0 2019-12-07 23:55:12    FALSE
## 898             1           3416             7447 2015-11-18 21:58:08    FALSE
## 899             5           8853               25 2013-07-27 19:39:55    FALSE
## 900            77          15125             2419 2011-01-24 14:27:06    FALSE
## 901            23          11832             5515 2012-03-16 05:32:35    FALSE
## 902             2           6935             7355 2016-05-06 08:19:57    FALSE
## 903             2           6669            15377 2009-11-17 12:19:49    FALSE
## 904            38            371                5 2016-11-18 22:40:10    FALSE
## 905             6          14840            13641 2017-05-20 14:43:24    FALSE
## 906             3           7547           101868 2010-12-07 17:47:18    FALSE
## 907           256           9410             4236 2009-11-09 20:23:55    FALSE
## 908            64           9220             1626 2012-01-12 13:41:07    FALSE
## 909            12           1115              620 2012-06-01 21:04:13    FALSE
## 910            86           3521              183 2013-04-25 13:41:15    FALSE
## 911             7            264              124 2017-10-31 14:47:06    FALSE
## 912            75          19395            17879 2009-04-28 18:48:32    FALSE
## 913           585        2689603               59 2010-01-09 17:25:28     TRUE
## 914             1           3516             5851 2019-11-04 19:47:50    FALSE
## 915             0            939             3967 2019-06-03 17:33:43    FALSE
## 916             0          11851              868 2011-11-28 07:49:57    FALSE
## 917             0           6275             2060 2013-08-16 15:04:10    FALSE
## 918             4          12879               15 2019-10-15 08:37:33    FALSE
## 919            57          12735             2094 2016-08-03 15:43:12    FALSE
## 920            74           9349              351 2011-11-21 23:20:12    FALSE
## 921           125          99683               72 2007-08-09 16:13:08    FALSE
## 922            77          29501             1690 2011-11-23 14:10:04     TRUE
## 923            46           1936             4733 2014-03-27 12:12:59    FALSE
## 924          1403          21655            22156 2011-11-15 22:00:03    FALSE
## 925             0           3401             9050 2012-09-11 21:25:45     TRUE
## 926             3          20617             4821 2019-09-23 06:02:42    FALSE
## 927            20            288               94 2013-09-30 16:31:51    FALSE
## 928            13           2288             3109 2013-02-25 21:02:11    FALSE
## 929             2            739               71 2017-07-31 21:17:30    FALSE
## 930             0            127               97 2019-09-10 16:55:48    FALSE
## 931            14           5771             4548 2015-04-03 17:32:46    FALSE
## 932             6            640               43 2012-09-05 08:49:45    FALSE
## 933             2          15730            26503 2012-02-24 02:31:08    FALSE
## 934            22           5334              184 2013-12-13 08:18:47    FALSE
## 935             0           4748             2673 2019-05-26 07:03:18    FALSE
## 936           377           8748            23418 2013-03-17 18:47:20    FALSE
## 937          1469         306820            12841 2008-09-02 20:09:44     TRUE
## 938           532           6554            13246 2009-08-11 21:24:43    FALSE
## 939            30          24337              495 2009-02-26 04:22:22    FALSE
## 940             7           1416              558 2009-05-30 21:26:08    FALSE
## 941             0              3                0 2019-04-18 06:28:25    FALSE
## 942          3788          27145             1862 2009-04-15 02:23:28     TRUE
## 943            19         118177             3714 2011-10-21 09:46:40    FALSE
## 944            36           9981            49408 2015-03-02 01:48:11    FALSE
## 945             0             21               21 2019-04-05 23:08:34    FALSE
## 946           125          56165              828 2009-05-19 23:45:09    FALSE
## 947           109         570635                2 2017-12-06 22:18:07     TRUE
## 948            39           3908              540 2015-05-18 16:35:30    FALSE
## 949            46          75988            61003 2017-02-02 20:09:09    FALSE
## 950             1          15909            31283 2012-05-17 00:51:56    FALSE
## 951            22          60678                4 2015-05-03 15:35:07    FALSE
## 952           221          12556            12798 2011-03-28 23:36:45    FALSE
## 953             0            187             1364 2016-04-21 17:25:07    FALSE
## 954          1247         312169              259 2015-01-14 09:43:21     TRUE
## 955             5          20044            31306 2016-12-02 20:33:40    FALSE
## 956             1            693              275 2018-09-26 22:30:06    FALSE
## 957            34           1536              300 2011-06-21 15:36:20    FALSE
## 958             0              9               18 2019-12-01 19:23:55    FALSE
## 959            10          43359            12975 2012-03-23 06:29:35    FALSE
## 960            19            179               25 2010-02-18 00:31:39    FALSE
## 961           118         424446           393822 2014-05-06 17:03:02    FALSE
## 962            31          62074             4816 2009-02-28 18:56:03    FALSE
## 963             1           3497             7984 2011-06-12 21:13:32    FALSE
## 964            58           4581             4517 2015-06-16 16:13:34    FALSE
## 965           770          31334               40 2008-09-15 05:04:29    FALSE
## 966            15          42427            39889 2008-02-15 18:25:27    FALSE
## 967             0             35              187 2008-06-24 17:42:03    FALSE
## 968             5          44844           112114 2015-06-05 15:21:16    FALSE
## 969           391          10583             1142 2015-06-15 22:08:19    FALSE
## 970            89          29432              154 2011-06-16 20:50:16    FALSE
## 971             6          11347             2460 2013-03-25 10:25:46    FALSE
## 972             2           1267             3841 2011-05-16 19:59:41    FALSE
## 973             0             15               16 2017-02-04 17:45:38    FALSE
## 974             0           2971              318 2015-07-07 15:04:35    FALSE
## 975             8          67752                0 2016-09-19 17:48:00    FALSE
## 976             0           2432             4170 2018-08-10 01:24:50    FALSE
## 977             2           1584             6720 2014-02-02 01:34:54    FALSE
## 978             1           3786             3671 2018-08-02 12:57:59    FALSE
## 979             0           3096            27776 2019-07-16 17:16:58    FALSE
## 980            33          69446             6296 2015-11-13 18:06:16    FALSE
## 981             0            236              589 2020-01-10 06:11:15    FALSE
## 982            36           1280              695 2013-10-18 19:37:40    FALSE
## 983            13          66497             2105 2011-01-09 10:28:58    FALSE
## 984           524          22579             1002 2013-11-18 13:40:26    FALSE
## 985           193          17579                1 2011-11-29 21:53:34    FALSE
## 986             0              2                2 2020-03-23 20:44:19    FALSE
## 987           148          16913            10264 2012-09-29 02:33:14    FALSE
## 988             1            229              125 2010-07-21 17:42:29    FALSE
## 989             0           1493             1456 2020-01-15 22:07:28    FALSE
## 990            75           8276            16337 2014-10-29 19:28:25    FALSE
## 991             0            378             1826 2018-10-06 13:01:03    FALSE
## 992            22          10309             3294 2009-08-18 11:41:25    FALSE
## 993           195           9700              456 2009-02-13 18:46:13     TRUE
## 994             0             97               57 2020-02-24 02:21:01    FALSE
## 995             0            800              286 2019-02-20 06:27:55    FALSE
## 996             4           2235            39395 2010-07-09 16:15:40    FALSE
## 997             0             15                1 2020-03-09 17:16:33    FALSE
## 998            31          99866              739 2011-12-02 15:24:09    FALSE
## 999             3          46030            33867 2017-08-04 02:35:35    FALSE
## 1000           36           2483             2138 2018-05-30 10:18:17    FALSE
## 1001            1           7625             5170 2009-10-05 10:18:49    FALSE
## 1002            0             17                2 2011-09-19 23:40:34    FALSE
## 1003           79          36046             5517 2009-06-19 01:41:45    FALSE
## 1004            6          13273            10844 2012-10-30 21:07:23    FALSE
## 1005            0            448                6 2018-09-22 06:39:27    FALSE
## 1006          730           8249             3837 2008-11-13 22:11:35    FALSE
## 1007          328           7542             5410 2009-04-28 07:04:31    FALSE
## 1008            6          28547            88605 2017-03-24 23:34:58    FALSE
## 1009           17          44947             3044 2018-03-04 03:36:24    FALSE
## 1010           22            563             1270 2016-05-05 16:26:50    FALSE
## 1011            1           2057              357 2014-07-18 09:23:54    FALSE
## 1012            2            710              519 2016-07-04 14:46:07    FALSE
## 1013           87          27508            55328 2013-10-18 05:55:58    FALSE
## 1014            0           2201              499 2018-09-11 03:08:53    FALSE
## 1015            0           1944                0 2014-10-20 05:15:20    FALSE
## 1016            2            243              108 2011-05-11 17:05:24    FALSE
## 1017           60          58035             4293 2013-12-10 04:23:58    FALSE
## 1018           50         105574             1980 2009-07-17 09:18:41    FALSE
## 1019            1            990             2432 2012-01-25 04:33:36    FALSE
## 1020           10           1968             1180 2013-01-07 16:53:50    FALSE
## 1021          196          52441            16986 2009-03-23 01:40:02    FALSE
## 1022          233          15830             5768 2012-09-23 04:08:13    FALSE
## 1023            3           2789            18264 2017-02-09 13:37:28    FALSE
## 1024            0           6613              560 2012-06-24 03:58:51    FALSE
## 1025            3          22447            76179 2019-02-19 03:08:51    FALSE
## 1026            8          15235            15567 2008-07-18 17:16:29    FALSE
## 1027            0           9545              792 2019-12-28 06:16:30    FALSE
## 1028            6            751              111 2014-04-07 13:24:15    FALSE
## 1029          227          13736              160 2008-12-18 16:04:19    FALSE
## 1030            6          19529             9291 2017-01-24 20:15:25    FALSE
## 1031         3920         346484              163 2009-03-03 06:19:00     TRUE
## 1032            0             26                2 2020-03-03 13:07:50    FALSE
## 1033           45           3722              851 2009-03-24 17:13:00    FALSE
## 1034            3           5153            10556 2018-11-29 14:19:05    FALSE
## 1035            4            623             1553 2011-05-09 02:21:32    FALSE
## 1036            0             28               21 2017-01-22 13:21:12    FALSE
## 1037            3            701             1145 2009-04-22 17:19:05    FALSE
## 1038            0            484              195 2019-11-27 19:07:20    FALSE
## 1039           16           8824             7917 2015-09-20 08:06:04    FALSE
## 1040           23          49338             1962 2010-04-20 19:03:35    FALSE
## 1041            3            875             1802 2016-07-10 18:52:59    FALSE
## 1042           70           4696             1920 2010-08-03 19:03:48    FALSE
## 1043            0           3302             2433 2010-03-15 20:00:16    FALSE
## 1044            0           2220            11225 2018-07-03 01:36:15    FALSE
## 1045            0             37               35 2013-12-28 20:48:14    FALSE
## 1046           19           4009             9536 2011-10-05 17:26:39    FALSE
## 1047            0           2016             8424 2008-07-24 04:14:52    FALSE
## 1048            2           1251               47 2015-07-11 23:21:13    FALSE
## 1049           17           3494             2225 2014-04-12 22:55:08    FALSE
## 1050           75         123795            70790 2011-05-21 18:25:46    FALSE
## 1051            0            777              950 2020-01-26 04:52:05    FALSE
## 1052            0             45              149 2020-03-12 02:32:33    FALSE
## 1053            0             31               11 2020-03-19 23:58:58    FALSE
## 1054            1           4705             5299 2019-12-22 14:54:07    FALSE
## 1055            0            148              650 2019-05-24 17:37:15    FALSE
## 1056          173           7520             1788 2011-03-02 14:11:11    FALSE
## 1057          283          87095              107 2011-09-07 15:29:14     TRUE
## 1058          143          25465             6167 2010-09-07 18:11:28     TRUE
## 1059           32          36021              195 2011-12-25 17:35:04    FALSE
## 1060          222          10125             1835 2018-03-05 17:42:44     TRUE
## 1061            0            885             8840 2018-11-08 19:07:39    FALSE
## 1062            0            176              269 2012-04-16 19:14:26    FALSE
## 1063            1           2091             5882 2013-02-28 01:05:25    FALSE
## 1064           16           3059              485 2013-10-03 17:22:55    FALSE
## 1065            9          33148            34358 2011-10-17 08:49:04    FALSE
## 1066            0            666               47 2016-05-11 16:52:22    FALSE
## 1067            0              1               10 2020-03-12 17:53:34    FALSE
## 1068            5            618              589 2017-03-17 17:36:18    FALSE
## 1069            0           2648             6630 2016-03-28 23:17:17    FALSE
## 1070        95220         353306             4445 2007-03-27 11:19:39     TRUE
## 1071          941         122468              716 2008-10-24 15:22:57     TRUE
## 1072            0           2720             1648 2010-05-18 12:55:11    FALSE
## 1073            5           7394            15153 2019-03-17 02:10:28    FALSE
## 1074           53           3303               13 2011-02-23 12:46:01    FALSE
## 1075            2          73637            24616 2011-07-11 01:39:51    FALSE
## 1076            0          10633              399 2011-12-27 21:31:25    FALSE
## 1077          181          26433            23764 2009-11-18 00:37:57    FALSE
## 1078           35          28290             3231 2009-09-19 04:46:23    FALSE
## 1079            3          10356            56786 2015-07-18 16:41:02    FALSE
## 1080         1080         148024              577 2008-05-09 12:32:54     TRUE
## 1081            2          15333             3023 2012-04-28 02:05:29     TRUE
## 1082           15             30              156 2013-03-08 13:19:21    FALSE
## 1083           69          32627            44536 2009-04-12 01:07:17    FALSE
## 1084            4         160979                0 2019-12-07 23:55:12    FALSE
## 1085           22           4119            11072 2007-03-16 04:22:35    FALSE
## 1086            2          13963            33457 2019-01-15 01:25:22    FALSE
## 1087         1190           8301              287 2010-02-05 23:11:56     TRUE
## 1088           37           5578             4255 2013-10-08 15:23:16    FALSE
## 1089          104         398540            41313 2009-05-29 08:06:17    FALSE
## 1090           54         126641            54798 2009-06-10 05:30:28    FALSE
## 1091           28          17666              355 2013-08-31 22:55:51    FALSE
## 1092            0           1501             2188 2010-04-27 09:41:39    FALSE
## 1093           99          24394             5125 2009-09-01 21:55:32    FALSE
## 1094           18          32555            10681 2013-10-03 09:55:23    FALSE
## 1095            0            839             2406 2011-09-24 15:01:38    FALSE
## 1096           35           6979             4236 2012-02-17 19:54:37    FALSE
## 1097            4          20353            17771 2012-02-23 20:08:20    FALSE
## 1098          121          42123             1753 2014-03-07 17:46:45     TRUE
## 1099            0             14                2 2020-03-06 19:11:09    FALSE
## 1100            0            951             5877 2017-04-11 17:24:34    FALSE
## 1101          187           2555              415 2012-01-03 17:26:08     TRUE
## 1102            0            140               19 2014-06-22 17:54:20    FALSE
## 1103            9          32953                2 2016-04-27 17:11:22    FALSE
## 1104            0            150               71 2020-03-19 14:07:51    FALSE
## 1105          116          53623            12699 2012-02-15 02:13:58    FALSE
## 1106           17          13767             3297 2010-11-11 21:32:30    FALSE
## 1107          122           8090             1336 2008-09-11 21:17:45    FALSE
## 1108            0           5949             1367 2011-01-13 01:15:51    FALSE
## 1109            0           3369             3829 2018-06-23 11:14:53    FALSE
## 1110          121           8426              461 2018-10-22 11:23:35    FALSE
## 1111            0            132              200 2016-09-03 21:04:55    FALSE
##                  profile_url
## 1                       <NA>
## 2    https://t.co/0328ay48F3
## 3     http://t.co/mt90PPmC6e
## 4                       <NA>
## 5    https://t.co/N3cx4YV57E
## 6    https://t.co/dGODqzFl4z
## 7    https://t.co/0qBXe7Lr1A
## 8    https://t.co/neH2HJHuLB
## 9    https://t.co/aFWmbMkF2u
## 10                      <NA>
## 11                      <NA>
## 12                      <NA>
## 13   https://t.co/zTrBLJV9DX
## 14                      <NA>
## 15                      <NA>
## 16                      <NA>
## 17   https://t.co/l6TKuLL0u9
## 18                      <NA>
## 19   https://t.co/EN1Y2K5eDp
## 20   https://t.co/Pq3AMwMwzI
## 21                      <NA>
## 22    http://t.co/xxJKPl2etp
## 23   https://t.co/2VqVyfO668
## 24   https://t.co/g066HOf9e6
## 25   https://t.co/FIoOnTRkgv
## 26   https://t.co/C0MzOosndO
## 27   https://t.co/q38Xuy3Jw8
## 28                      <NA>
## 29                      <NA>
## 30                      <NA>
## 31                      <NA>
## 32   https://t.co/eQ8Ss59UZT
## 33   https://t.co/HFnGhSL53V
## 34   https://t.co/iQ52u2HM0v
## 35   https://t.co/vMIbWp5RC0
## 36                      <NA>
## 37                      <NA>
## 38   https://t.co/8k5AnLgWz4
## 39   https://t.co/eRUzkUYnDs
## 40   https://t.co/bFoyjAp1W6
## 41                      <NA>
## 42   https://t.co/OIpV0AUA5W
## 43   https://t.co/UHm4LfjlSd
## 44   https://t.co/qpTG7hy6b6
## 45   https://t.co/UOHMiF5M5R
## 46                      <NA>
## 47                      <NA>
## 48   https://t.co/1biy1D3Fn2
## 49   https://t.co/dMcMAp8y0w
## 50   https://t.co/bvVyaC87zu
## 51                      <NA>
## 52   https://t.co/QB2dGROL4z
## 53                      <NA>
## 54   https://t.co/af3EW8Cac3
## 55                      <NA>
## 56                      <NA>
## 57                      <NA>
## 58   https://t.co/u9wbJPT1c8
## 59   https://t.co/7Ct2VXMx64
## 60                      <NA>
## 61                      <NA>
## 62   https://t.co/GKSDlOVoZy
## 63   https://t.co/cB8RznMy96
## 64   https://t.co/0Af7dV3iWW
## 65                      <NA>
## 66   https://t.co/vCRUN61Gqx
## 67    http://t.co/gsMMzSt0XK
## 68                      <NA>
## 69   https://t.co/5utFPTNlYr
## 70                      <NA>
## 71    http://t.co/uDJFPwuEOt
## 72                      <NA>
## 73   https://t.co/PDsxPymgVO
## 74                      <NA>
## 75   https://t.co/NreUfNxX5I
## 76                      <NA>
## 77                      <NA>
## 78                      <NA>
## 79                      <NA>
## 80    http://t.co/TaRLddVUxx
## 81                      <NA>
## 82   https://t.co/1kPztZQ07u
## 83   https://t.co/cS9fbJslNC
## 84                      <NA>
## 85   https://t.co/QdloKZ7sMQ
## 86                      <NA>
## 87                      <NA>
## 88   https://t.co/eCTiAv0vJc
## 89    http://t.co/M5rfGOW0R9
## 90                      <NA>
## 91   https://t.co/mjSFTqRISR
## 92                      <NA>
## 93    http://t.co/s6YQUMB0NH
## 94    http://t.co/1gkED7r9Tg
## 95   https://t.co/eRey9OskxL
## 96    http://t.co/ovYCNxttZK
## 97                      <NA>
## 98   https://t.co/wqkmfTbqUK
## 99   https://t.co/22QuwydOZS
## 100                     <NA>
## 101  https://t.co/sMxkGhY7IR
## 102                     <NA>
## 103                     <NA>
## 104                     <NA>
## 105                     <NA>
## 106  https://t.co/WmRGZCFfD1
## 107                     <NA>
## 108                     <NA>
## 109                     <NA>
## 110  https://t.co/bDGXkRhq5i
## 111                     <NA>
## 112  https://t.co/uqVwAAPbAj
## 113   http://t.co/vXapDcs08j
## 114                     <NA>
## 115  https://t.co/X715e787l2
## 116                     <NA>
## 117  https://t.co/6m8gWgRmcj
## 118  https://t.co/AN7SjyEvxa
## 119                     <NA>
## 120                     <NA>
## 121  https://t.co/V28swHq20i
## 122  https://t.co/vrOlKPb7i6
## 123                     <NA>
## 124  https://t.co/R83VMqokle
## 125                     <NA>
## 126                     <NA>
## 127  https://t.co/Wa1nDZ0VGs
## 128  https://t.co/n3MCXKSIDS
## 129  https://t.co/hkg44aVyOw
## 130  https://t.co/kLq7wOLdnT
## 131  https://t.co/0Bw35pzS5M
## 132  https://t.co/ni4vIbf4bL
## 133   http://t.co/ZVBPuKEn9y
## 134  https://t.co/ZLuSJEUiRW
## 135                     <NA>
## 136                     <NA>
## 137                     <NA>
## 138  https://t.co/XNTN3yjeZy
## 139  https://t.co/JZO6q1QQuW
## 140   http://t.co/widVzyBCtO
## 141                     <NA>
## 142   http://t.co/HZC3cK1YdS
## 143  https://t.co/mO6uAEOIJs
## 144                     <NA>
## 145  https://t.co/8KBQsdVPmN
## 146                     <NA>
## 147  https://t.co/hnR1QTplsC
## 148                     <NA>
## 149  https://t.co/MUNiUet9eG
## 150                     <NA>
## 151  https://t.co/dg7YKM880J
## 152  https://t.co/TDKqpI3H8z
## 153   http://t.co/rm54mkUvN4
## 154  https://t.co/UgEyDgqY7U
## 155  https://t.co/4qieGHzGJ0
## 156                     <NA>
## 157  https://t.co/FWKEasEexU
## 158  https://t.co/kEGkcw1phT
## 159  https://t.co/DW4X2QDE5i
## 160  https://t.co/iJ8zsTsucy
## 161  https://t.co/eH14zkOUud
## 162   http://t.co/jk6qwaIhbh
## 163                     <NA>
## 164  https://t.co/ZDwAdsawmP
## 165  https://t.co/3ahffEslE5
## 166  https://t.co/7TNpCyEiSV
## 167                     <NA>
## 168                     <NA>
## 169  https://t.co/i6iKC0qmwM
## 170  https://t.co/TMwqzW4AyL
## 171  https://t.co/wxdxy4DiDW
## 172                     <NA>
## 173                     <NA>
## 174                     <NA>
## 175  https://t.co/85gdbUAaZ1
## 176  https://t.co/7xjcnszH7z
## 177  https://t.co/BzEJJiOkAf
## 178                     <NA>
## 179  https://t.co/XV86XsMR6I
## 180                     <NA>
## 181  https://t.co/ZABLSrpbLR
## 182                     <NA>
## 183                     <NA>
## 184  https://t.co/sIkoWXiByl
## 185                     <NA>
## 186  https://t.co/VYF5PdVXJh
## 187                     <NA>
## 188  https://t.co/FaTKPc03D7
## 189                     <NA>
## 190  https://t.co/Fj0lYWASgy
## 191                     <NA>
## 192                     <NA>
## 193  https://t.co/L2x7B0jzkl
## 194                     <NA>
## 195  https://t.co/hx14Yc9Czc
## 196  https://t.co/war2B3GasN
## 197                     <NA>
## 198                     <NA>
## 199                     <NA>
## 200  https://t.co/Hyu1aFglNs
## 201                     <NA>
## 202                     <NA>
## 203  https://t.co/MDWOcoBInJ
## 204  https://t.co/y6spMHacnW
## 205  https://t.co/nB15ggFUeC
## 206  https://t.co/coVlFixTY3
## 207   http://t.co/i8YzHTtmB7
## 208                     <NA>
## 209                     <NA>
## 210                     <NA>
## 211                     <NA>
## 212  https://t.co/HU4O3qSuSK
## 213                     <NA>
## 214  https://t.co/tmMpVxbBJZ
## 215                     <NA>
## 216  https://t.co/JR86ag8asj
## 217  https://t.co/Pp9sifiU7f
## 218  https://t.co/XQ9azpBWvp
## 219                     <NA>
## 220                     <NA>
## 221   http://t.co/wQTvR4mDC8
## 222  https://t.co/JHxxwMiJDw
## 223  https://t.co/kuxGoO7GhN
## 224                     <NA>
## 225  https://t.co/L1jqjUCxuc
## 226                     <NA>
## 227                     <NA>
## 228                     <NA>
## 229                     <NA>
## 230                     <NA>
## 231  https://t.co/BlzUxojm9Y
## 232   http://t.co/zeE2LP7Zl4
## 233  https://t.co/DQPhckY5sO
## 234                     <NA>
## 235  https://t.co/V7RB4basi1
## 236                     <NA>
## 237   http://t.co/9eA4P4zfF6
## 238                     <NA>
## 239                     <NA>
## 240                     <NA>
## 241                     <NA>
## 242                     <NA>
## 243                     <NA>
## 244                     <NA>
## 245                     <NA>
## 246                     <NA>
## 247                     <NA>
## 248  https://t.co/zPNLakBHpV
## 249                     <NA>
## 250                     <NA>
## 251  https://t.co/4DyfCSVDh5
## 252                     <NA>
## 253   http://t.co/jtmI5KRBmh
## 254                     <NA>
## 255  https://t.co/OdrQ6B6L1L
## 256  https://t.co/4hvNJHOXeL
## 257                     <NA>
## 258                     <NA>
## 259                     <NA>
## 260  https://t.co/L9u8fGAzoc
## 261                     <NA>
## 262                     <NA>
## 263  https://t.co/YJuTyK7tiH
## 264                     <NA>
## 265                     <NA>
## 266                     <NA>
## 267                     <NA>
## 268   http://t.co/6lMEMUN5Z2
## 269                     <NA>
## 270                     <NA>
## 271  https://t.co/VNnmXDF0d2
## 272  https://t.co/sOjArtVKhF
## 273                     <NA>
## 274                     <NA>
## 275                     <NA>
## 276                     <NA>
## 277                     <NA>
## 278  https://t.co/hC177pWfmY
## 279   http://t.co/GzvNkqokbC
## 280  https://t.co/k06skxrv2r
## 281                     <NA>
## 282  https://t.co/uC28P5A65h
## 283  https://t.co/dj8qwtAztH
## 284   http://t.co/WYGsRLr5W0
## 285                     <NA>
## 286  https://t.co/etNSe9TNfu
## 287                     <NA>
## 288  https://t.co/KxrK3VRg8Z
## 289  https://t.co/HqZBIDqHy0
## 290                     <NA>
## 291  https://t.co/YnWis8hias
## 292  https://t.co/4H8LZp0JIg
## 293                     <NA>
## 294                     <NA>
## 295   http://t.co/R3XH0JVPeB
## 296   http://t.co/jlsBTDtNBb
## 297  https://t.co/EQp8z5sH1Y
## 298                     <NA>
## 299   http://t.co/vsPrPFHp58
## 300                     <NA>
## 301                     <NA>
## 302  https://t.co/pQRw9rrYV0
## 303                     <NA>
## 304  https://t.co/0IINFAhxHu
## 305                     <NA>
## 306                     <NA>
## 307                     <NA>
## 308  https://t.co/Zkdk4Lh9ze
## 309                     <NA>
## 310  https://t.co/ghBPgErpFA
## 311  https://t.co/EP6Y8dh6xq
## 312  https://t.co/CzfRMAodqs
## 313  https://t.co/sSvOvN7KUU
## 314  https://t.co/8UkFggzFdH
## 315   http://t.co/BiOdkjo3Rr
## 316  https://t.co/jXphN02BhJ
## 317   http://t.co/hqwC7d6jMv
## 318                     <NA>
## 319  https://t.co/pHeMgl9mFv
## 320                     <NA>
## 321                     <NA>
## 322  https://t.co/d6cMIoBZWt
## 323                     <NA>
## 324  https://t.co/wCGi6soMch
## 325  https://t.co/ClNr7ZCZRJ
## 326  https://t.co/jmhgQPs8EI
## 327  https://t.co/pH5OnfCW4O
## 328                     <NA>
## 329   http://t.co/SNmd1oDEZJ
## 330  https://t.co/LqdSlUIKei
## 331  https://t.co/V6an0vfyp7
## 332                     <NA>
## 333  https://t.co/gyY4HfDgT1
## 334                     <NA>
## 335  https://t.co/9HAx5GhWm6
## 336                     <NA>
## 337  https://t.co/nHOxh5UnT4
## 338                     <NA>
## 339  https://t.co/oH9aLSmZlT
## 340                     <NA>
## 341   http://t.co/dkdACU6mTT
## 342                     <NA>
## 343  https://t.co/NSPN2P3HFH
## 344                     <NA>
## 345                     <NA>
## 346                     <NA>
## 347  https://t.co/QrohZ3aZMo
## 348                     <NA>
## 349                     <NA>
## 350   http://t.co/V31VuKzSEB
## 351                     <NA>
## 352   http://t.co/awK7L9aEZE
## 353   http://t.co/yR6p6Hhctp
## 354  https://t.co/sn8x89C5TL
## 355  https://t.co/9xd4MpSsGg
## 356  https://t.co/fdv67iW4e3
## 357  https://t.co/iEFupIbwqq
## 358  https://t.co/fDWIHZQvVs
## 359                     <NA>
## 360  https://t.co/aZwEzECV4x
## 361  https://t.co/mDU23jnOqb
## 362                     <NA>
## 363                     <NA>
## 364                     <NA>
## 365  https://t.co/aTiB8iwpLy
## 366                     <NA>
## 367                     <NA>
## 368                     <NA>
## 369                     <NA>
## 370                     <NA>
## 371  https://t.co/wY5gXN4Wst
## 372                     <NA>
## 373  https://t.co/s6mLMqGRfV
## 374                     <NA>
## 375  https://t.co/P1aFmWPbwP
## 376                     <NA>
## 377  https://t.co/FHaZz772Lb
## 378                     <NA>
## 379                     <NA>
## 380                     <NA>
## 381   http://t.co/lc1H8ssL4A
## 382   http://t.co/lGDl08LMgP
## 383  https://t.co/eqPUE61tam
## 384                     <NA>
## 385                     <NA>
## 386                     <NA>
## 387                     <NA>
## 388                     <NA>
## 389                     <NA>
## 390  https://t.co/ygHgpJ7Dbg
## 391  https://t.co/v3h2jRsd46
## 392                     <NA>
## 393                     <NA>
## 394  https://t.co/CFnVbZqBXJ
## 395                     <NA>
## 396                     <NA>
## 397  https://t.co/4FQihJG0xz
## 398  https://t.co/jrjOLsDCsJ
## 399  https://t.co/2ZnFQkjPb4
## 400   http://t.co/FHNEqiYceR
## 401   http://t.co/MWpJqlWt4M
## 402  https://t.co/9rA20lFzUF
## 403                     <NA>
## 404                     <NA>
## 405                     <NA>
## 406  https://t.co/LGFKKWVmdP
## 407   http://t.co/mXHpiVOu9o
## 408                     <NA>
## 409                     <NA>
## 410                     <NA>
## 411                     <NA>
## 412   http://t.co/7ee0KVFxe1
## 413                     <NA>
## 414  https://t.co/GJ4wazyo4p
## 415                     <NA>
## 416  https://t.co/ctJO176ebV
## 417                     <NA>
## 418                     <NA>
## 419   http://t.co/6hK5qliv4H
## 420   http://t.co/N07jjOS1s9
## 421                     <NA>
## 422                     <NA>
## 423                     <NA>
## 424                     <NA>
## 425  https://t.co/xVmBSOUvWg
## 426                     <NA>
## 427                     <NA>
## 428                     <NA>
## 429  https://t.co/yD1l5077EC
## 430  https://t.co/P1N3HRpvTJ
## 431  https://t.co/IRT5FEfRfi
## 432   http://t.co/8ZDsLNmOB2
## 433                     <NA>
## 434  https://t.co/wPUvQWf4wH
## 435  https://t.co/GP9jjhSp6N
## 436  https://t.co/chYxY4Q6gA
## 437  https://t.co/cQWqJVZP0p
## 438                     <NA>
## 439                     <NA>
## 440  https://t.co/Q0bREvL7aM
## 441  https://t.co/0aXDuZPlsH
## 442   http://t.co/xv7lMaLYAR
## 443                     <NA>
## 444                     <NA>
## 445  https://t.co/e0nGJ46aFy
## 446  https://t.co/R17ZYZT3hp
## 447                     <NA>
## 448                     <NA>
## 449                     <NA>
## 450                     <NA>
## 451  https://t.co/FEKXbePH5H
## 452                     <NA>
## 453   http://t.co/zHapvz0XiF
## 454  https://t.co/1CCDyxiPeU
## 455                     <NA>
## 456                     <NA>
## 457                     <NA>
## 458                     <NA>
## 459  https://t.co/r3xHQJRGNs
## 460                     <NA>
## 461   http://t.co/A7Wq0so1Hp
## 462   http://t.co/qyQzd7FXcR
## 463  https://t.co/cE3JOwSIG1
## 464  https://t.co/6XgW4QA7zT
## 465                     <NA>
## 466  https://t.co/aOc6NJ1pwU
## 467   http://t.co/JNf1UOOm2h
## 468  https://t.co/kGGGs6ap2C
## 469                     <NA>
## 470                     <NA>
## 471                     <NA>
## 472                     <NA>
## 473  https://t.co/qqaMvWqt6y
## 474  https://t.co/zKsULCQbWH
## 475  https://t.co/ux9MXc8gId
## 476  https://t.co/IlsdfIGxGz
## 477  https://t.co/pLruwHPq6R
## 478                     <NA>
## 479   http://t.co/2Z8FgQT6jd
## 480                     <NA>
## 481  https://t.co/S2mVIZq2On
## 482  https://t.co/eQt1SYhOX1
## 483   http://t.co/0RIKWUzhiQ
## 484                     <NA>
## 485  https://t.co/aV512b868z
## 486  https://t.co/8FerlVnp1Q
## 487                     <NA>
## 488   http://t.co/PP5WGGpzNA
## 489                     <NA>
## 490  https://t.co/BdJvArFEUZ
## 491                     <NA>
## 492                     <NA>
## 493  https://t.co/U7Z5OJkJJG
## 494  https://t.co/DU1c7lI1wg
## 495                     <NA>
## 496  https://t.co/Ra6UEbn7I7
## 497  https://t.co/Y3wkadfFRR
## 498  https://t.co/MMnoE11lIV
## 499                     <NA>
## 500  https://t.co/cL8POTdVkH
## 501  https://t.co/ynRfhYwLhn
## 502                     <NA>
## 503  https://t.co/yUz1XP26KY
## 504                     <NA>
## 505  https://t.co/kxTWevUZu9
## 506                     <NA>
## 507                     <NA>
## 508  https://t.co/U8YWJrvQJL
## 509                     <NA>
## 510                     <NA>
## 511  https://t.co/RGP15vwZPb
## 512  https://t.co/Eb92CyExmA
## 513                     <NA>
## 514                     <NA>
## 515                     <NA>
## 516                     <NA>
## 517  https://t.co/cZ20CcqaDx
## 518                     <NA>
## 519                     <NA>
## 520                     <NA>
## 521  https://t.co/YJHhvCOrYI
## 522  https://t.co/yctEKfR5u7
## 523                     <NA>
## 524  https://t.co/cZIwZQDQs8
## 525  https://t.co/m30ZkAye91
## 526  https://t.co/AJ6qOR7Z8p
## 527                     <NA>
## 528                     <NA>
## 529  https://t.co/vLFvy0MTkO
## 530  https://t.co/pPZA4hCpul
## 531                     <NA>
## 532  https://t.co/r8gFr71gTp
## 533  https://t.co/K8A7yaQoth
## 534                     <NA>
## 535                     <NA>
## 536  https://t.co/Rse5BtdyON
## 537                     <NA>
## 538  https://t.co/xuzwEkVkHZ
## 539                     <NA>
## 540  https://t.co/vkIswW9aBZ
## 541  https://t.co/5KcDWc8NQZ
## 542                     <NA>
## 543                     <NA>
## 544  https://t.co/svElPgQEMm
## 545  https://t.co/b8foZctbWx
## 546  https://t.co/AMd0A8dx6e
## 547  https://t.co/P3M1VoEeKX
## 548   http://t.co/tu5muMOI2m
## 549                     <NA>
## 550  https://t.co/ON9YqO2lqq
## 551                     <NA>
## 552                     <NA>
## 553  https://t.co/0o0zYdAZVe
## 554  https://t.co/UClrPuJpyZ
## 555  https://t.co/7EqS0tGHpc
## 556  https://t.co/jqfb4MQaNY
## 557   http://t.co/zHapvz0XiF
## 558                     <NA>
## 559  https://t.co/6htb3M9Fdp
## 560  https://t.co/hBrIyreHqR
## 561                     <NA>
## 562                     <NA>
## 563  https://t.co/A7YCKjtLsl
## 564  https://t.co/R9KGJMsmfI
## 565                     <NA>
## 566  https://t.co/TPk1RBwOE1
## 567                     <NA>
## 568                     <NA>
## 569  https://t.co/5KcDWc8NQZ
## 570  https://t.co/IPsQPVNUao
## 571  https://t.co/myYhzsAW4F
## 572                     <NA>
## 573                     <NA>
## 574  https://t.co/YSSXqPDitg
## 575                     <NA>
## 576                     <NA>
## 577   http://t.co/23O6PGRmGl
## 578  https://t.co/Har5PbIfI5
## 579   http://t.co/YPLhEiCHws
## 580  https://t.co/91nQhq1gOc
## 581                     <NA>
## 582                     <NA>
## 583   http://t.co/MBMZY3uSF4
## 584                     <NA>
## 585                     <NA>
## 586   http://t.co/nLlds9a5bG
## 587                     <NA>
## 588  https://t.co/I3HStRtTcO
## 589  https://t.co/RHtfAJ7s33
## 590                     <NA>
## 591                     <NA>
## 592                     <NA>
## 593                     <NA>
## 594                     <NA>
## 595                     <NA>
## 596  https://t.co/2eykYyQWUK
## 597                     <NA>
## 598   http://t.co/WTIKQryR3Z
## 599  https://t.co/xNyMiJCBOB
## 600  https://t.co/lr5L3pUx4E
## 601   http://t.co/pmSUYiwt1q
## 602                     <NA>
## 603                     <NA>
## 604  https://t.co/7H6vYHqRp6
## 605                     <NA>
## 606   http://t.co/xzHz1dWawg
## 607                     <NA>
## 608                     <NA>
## 609   http://t.co/pMtLQKj67o
## 610  https://t.co/wQTSfeQTfa
## 611   http://t.co/IKuFEqQKvy
## 612                     <NA>
## 613  https://t.co/7SOrT154E4
## 614                     <NA>
## 615  https://t.co/CWHPov1Dpb
## 616                     <NA>
## 617                     <NA>
## 618                     <NA>
## 619  https://t.co/99Bom6Pw54
## 620                     <NA>
## 621                     <NA>
## 622  https://t.co/o7zvgJJDAK
## 623  https://t.co/bVwP2L6FUG
## 624  https://t.co/UJtcbKwiy5
## 625                     <NA>
## 626                     <NA>
## 627  https://t.co/bJI1v9WOoL
## 628  https://t.co/xl3sGX0ws5
## 629                     <NA>
## 630  https://t.co/s3KcbtardC
## 631                     <NA>
## 632   http://t.co/zS8AeNm771
## 633                     <NA>
## 634                     <NA>
## 635                     <NA>
## 636  https://t.co/Q14eXfz8q4
## 637  https://t.co/Ip91bmrsfg
## 638  https://t.co/HFF3LW7lbK
## 639  https://t.co/3YKewHhF4q
## 640                     <NA>
## 641                     <NA>
## 642                     <NA>
## 643  https://t.co/sVizSbkjEM
## 644  https://t.co/FSjOCkLEcb
## 645                     <NA>
## 646                     <NA>
## 647                     <NA>
## 648                     <NA>
## 649  https://t.co/3MW31l0v8z
## 650  https://t.co/31oSwtRMjI
## 651   http://t.co/9BkApziVCj
## 652  https://t.co/poi5TAtN9F
## 653  https://t.co/RtiAlsYoxl
## 654                     <NA>
## 655                     <NA>
## 656                     <NA>
## 657                     <NA>
## 658  https://t.co/6LZVWNX1sh
## 659   http://t.co/zHapvz0XiF
## 660  https://t.co/NTNqVTOP6X
## 661  https://t.co/KcqNqy796M
## 662                     <NA>
## 663  https://t.co/NZv67WCCAe
## 664  https://t.co/XK0vnXQ2oU
## 665                     <NA>
## 666                     <NA>
## 667                     <NA>
## 668                     <NA>
## 669  https://t.co/cTuY6pTZnJ
## 670                     <NA>
## 671                     <NA>
## 672  https://t.co/ma327dL4sj
## 673  https://t.co/BbOTSnEMQF
## 674  https://t.co/jGdpljt1Ae
## 675                     <NA>
## 676  https://t.co/DGmQ5umX4p
## 677                     <NA>
## 678                     <NA>
## 679                     <NA>
## 680  https://t.co/2WbyzHXEJ1
## 681  https://t.co/lcICMAwBBk
## 682                     <NA>
## 683  https://t.co/CS3nmorYaU
## 684                     <NA>
## 685                     <NA>
## 686                     <NA>
## 687  https://t.co/PDEoRmNDYk
## 688  https://t.co/74yFDctZGp
## 689                     <NA>
## 690  https://t.co/CTU8GBkFOd
## 691                     <NA>
## 692   http://t.co/q4scpU7ZK4
## 693  https://t.co/ME8lpxMttp
## 694  https://t.co/epxeGhbZpL
## 695                     <NA>
## 696                     <NA>
## 697                     <NA>
## 698  https://t.co/T2pbzxHHlz
## 699                     <NA>
## 700   http://t.co/M7JdxrwZzq
## 701  https://t.co/leMOzsxl3i
## 702                     <NA>
## 703                     <NA>
## 704                     <NA>
## 705                     <NA>
## 706  https://t.co/aQjwfwsB0G
## 707  https://t.co/3DX75f5kGW
## 708   http://t.co/pEcMOwB3mS
## 709                     <NA>
## 710  https://t.co/fDxkZRSWzE
## 711                     <NA>
## 712  https://t.co/wSdMxh3Jul
## 713                     <NA>
## 714                     <NA>
## 715   http://t.co/HyAzop1uEX
## 716  https://t.co/ma66r17YOi
## 717   http://t.co/76fMiq645r
## 718                     <NA>
## 719  https://t.co/0u5ezfabkN
## 720                     <NA>
## 721  https://t.co/qf19ZcAjJQ
## 722  https://t.co/dUPbm7O4lq
## 723  https://t.co/dVPe2p6YCl
## 724                     <NA>
## 725  https://t.co/219e6OfsH7
## 726  https://t.co/XNxA7tuwLI
## 727  https://t.co/rRz8IowEd2
## 728                     <NA>
## 729  https://t.co/gVDjbcAEGH
## 730  https://t.co/NfJumhbMDS
## 731                     <NA>
## 732                     <NA>
## 733  https://t.co/LOEn760f8d
## 734  https://t.co/VACdN1iwph
## 735                     <NA>
## 736  https://t.co/NxogMlgWEq
## 737                     <NA>
## 738                     <NA>
## 739   http://t.co/0gecTCHeSU
## 740   http://t.co/s21BLkjYHL
## 741  https://t.co/kNohl7GGJh
## 742  https://t.co/Mu5ek2smec
## 743                     <NA>
## 744                     <NA>
## 745  https://t.co/G3u11mxtN5
## 746   http://t.co/1Ah1yoD02k
## 747   http://t.co/32ds2eN8h1
## 748  https://t.co/UO2Z8SgEFO
## 749                     <NA>
## 750  https://t.co/fXyUtyzGQN
## 751                     <NA>
## 752                     <NA>
## 753  https://t.co/LI9kcldrOK
## 754  https://t.co/B5uZciuh7t
## 755  https://t.co/TiWuPSJlZu
## 756  https://t.co/CDcz4Cq3Hv
## 757                     <NA>
## 758                     <NA>
## 759                     <NA>
## 760                     <NA>
## 761  https://t.co/9PDFqY02wH
## 762  https://t.co/6sufyhcCoP
## 763  https://t.co/qjOCYkD99z
## 764  https://t.co/6RsYK4GCvf
## 765  https://t.co/9h1GVeYIzC
## 766  https://t.co/RcvUsNSzmI
## 767  https://t.co/AKcSx5ZBC4
## 768   http://t.co/W9dZS4ekmX
## 769  https://t.co/ChmzRLfwxz
## 770  https://t.co/Vsrm7tS1py
## 771                     <NA>
## 772  https://t.co/UVsO2GzYpN
## 773  https://t.co/0FYlwTzrzK
## 774                     <NA>
## 775                     <NA>
## 776  https://t.co/1acU3OVUZD
## 777                     <NA>
## 778  https://t.co/6LCsEqpHQD
## 779  https://t.co/8rXOLzVutj
## 780                     <NA>
## 781                     <NA>
## 782  https://t.co/7rGrx0QJOv
## 783                     <NA>
## 784                     <NA>
## 785  https://t.co/CXrrLdla2u
## 786                     <NA>
## 787                     <NA>
## 788                     <NA>
## 789  https://t.co/EK3iz5pjHl
## 790                     <NA>
## 791                     <NA>
## 792  https://t.co/Oz9qV3PIoS
## 793                     <NA>
## 794  https://t.co/2i1tlZLdpD
## 795  https://t.co/yAWjPb6OBD
## 796                     <NA>
## 797                     <NA>
## 798                     <NA>
## 799                     <NA>
## 800  https://t.co/gdt2hObX3h
## 801                     <NA>
## 802                     <NA>
## 803   http://t.co/LN7SmQkBWg
## 804                     <NA>
## 805  https://t.co/BEyfYwsNd7
## 806                     <NA>
## 807                     <NA>
## 808                     <NA>
## 809                     <NA>
## 810                     <NA>
## 811                     <NA>
## 812                     <NA>
## 813                     <NA>
## 814                     <NA>
## 815  https://t.co/ehyayqnehO
## 816  https://t.co/1J36jCEJSR
## 817  https://t.co/3vlVUy2WBZ
## 818                     <NA>
## 819  https://t.co/8l5kF3hNRC
## 820                     <NA>
## 821  https://t.co/uKE3Z3WChF
## 822  https://t.co/G5AXPPbmmA
## 823  https://t.co/zJSwxJHjfo
## 824   http://t.co/SN36DOO4Gu
## 825  https://t.co/BdcvUVs1dy
## 826                     <NA>
## 827                     <NA>
## 828  https://t.co/tIL5JtbtSQ
## 829  https://t.co/8jeuc7L95o
## 830                     <NA>
## 831   http://t.co/eDOTgnOBJQ
## 832                     <NA>
## 833  https://t.co/p4hqGoBIDh
## 834                     <NA>
## 835                     <NA>
## 836                     <NA>
## 837                     <NA>
## 838                     <NA>
## 839                     <NA>
## 840                     <NA>
## 841  https://t.co/5aoE4lk2zD
## 842  https://t.co/rjPHClRiit
## 843                     <NA>
## 844   http://t.co/VlOBa7xLV8
## 845                     <NA>
## 846  https://t.co/ba7gdQHGj7
## 847  https://t.co/Sjy0VthWpV
## 848  https://t.co/MFNQOp1nDp
## 849                     <NA>
## 850  https://t.co/cQNGvxgCTa
## 851                     <NA>
## 852  https://t.co/YPiihtxXa1
## 853   http://t.co/WTFtyGu20c
## 854                     <NA>
## 855                     <NA>
## 856                     <NA>
## 857  https://t.co/zWoXIHJjNL
## 858                     <NA>
## 859                     <NA>
## 860  https://t.co/AEwyaoa1OE
## 861                     <NA>
## 862  https://t.co/NjcHpIBWIH
## 863  https://t.co/ii2SnRJlFB
## 864  https://t.co/wnF48fHiCs
## 865  https://t.co/CDf5pQs9mP
## 866                     <NA>
## 867                     <NA>
## 868                     <NA>
## 869                     <NA>
## 870                     <NA>
## 871                     <NA>
## 872                     <NA>
## 873  https://t.co/KfyVpJBQOU
## 874  https://t.co/tACxm6xj4p
## 875                     <NA>
## 876                     <NA>
## 877  https://t.co/p93mpDyxjR
## 878                     <NA>
## 879                     <NA>
## 880   http://t.co/wZcbeq9UuU
## 881                     <NA>
## 882  https://t.co/4iIITmJqho
## 883                     <NA>
## 884  https://t.co/RFKttKocRf
## 885                     <NA>
## 886                     <NA>
## 887                     <NA>
## 888  https://t.co/SjoPqwQ8k3
## 889                     <NA>
## 890  https://t.co/NlFd4H5oFU
## 891                     <NA>
## 892  https://t.co/5b5CUbrEUV
## 893  https://t.co/eqhgJzTKOl
## 894                     <NA>
## 895                     <NA>
## 896                     <NA>
## 897  https://t.co/0tyJxyBqE5
## 898                     <NA>
## 899                     <NA>
## 900  https://t.co/Z7Vt5IQl2m
## 901  https://t.co/t3RSy7hhE0
## 902  https://t.co/7E1USlz0Hm
## 903                     <NA>
## 904  https://t.co/3QFsmuSP33
## 905                     <NA>
## 906                     <NA>
## 907  https://t.co/vBEn1I0qVs
## 908  https://t.co/ocxLwXS7No
## 909  https://t.co/IA7K2djgB3
## 910  https://t.co/Gx55j4elfd
## 911                     <NA>
## 912  https://t.co/wX1YTSe7fL
## 913   http://t.co/ATGqCTVzPN
## 914  https://t.co/cB6p1l3dm3
## 915                     <NA>
## 916  https://t.co/VpUBj7VduT
## 917  https://t.co/RDarTjA1le
## 918  https://t.co/npFtChFiZZ
## 919  https://t.co/nuOUiPLJKy
## 920  https://t.co/dasF30tWP4
## 921   http://t.co/X761xTyWSk
## 922  https://t.co/NvXJBylIws
## 923  https://t.co/oBdPkWTtPq
## 924  https://t.co/ZZwywOX5cy
## 925  https://t.co/jXZlTMOXoA
## 926  https://t.co/8f5D675f1F
## 927   http://t.co/3hGBJzFeKR
## 928   http://t.co/QAZ9EjY7i9
## 929  https://t.co/GNadZ5bZ69
## 930                     <NA>
## 931                     <NA>
## 932   http://t.co/tmcjbPGobX
## 933                     <NA>
## 934  https://t.co/LOOLEYpcUF
## 935                     <NA>
## 936  https://t.co/E8wbDFRjzi
## 937  https://t.co/PFzcUlCOSi
## 938   http://t.co/1YsHH47jbH
## 939  https://t.co/S6yofVagH0
## 940  https://t.co/zVq0YyUmYt
## 941  https://t.co/IaMxYw1FY6
## 942   http://t.co/jLZnyDy4hD
## 943                     <NA>
## 944  https://t.co/NTD3ZM235U
## 945                     <NA>
## 946  https://t.co/Fsgfe8BCWH
## 947  https://t.co/OZBZxI6T3I
## 948  https://t.co/Amy3Ybkmfg
## 949                     <NA>
## 950                     <NA>
## 951                     <NA>
## 952  https://t.co/75dEcGUN2B
## 953                     <NA>
## 954  https://t.co/PP0b1fchP0
## 955  https://t.co/OlFMiF0FFY
## 956  https://t.co/4UtbozKr1K
## 957   http://t.co/e1x2UKiCEp
## 958                     <NA>
## 959                     <NA>
## 960   http://t.co/0GIco2n9hO
## 961                     <NA>
## 962  https://t.co/PvmT2wV0vH
## 963  https://t.co/w1XkpzD10v
## 964  https://t.co/0jsMUVy0wl
## 965   http://t.co/In0gcv2BlW
## 966                     <NA>
## 967                     <NA>
## 968  https://t.co/sh8sTHMn1t
## 969  https://t.co/1WMskg0QPs
## 970  https://t.co/XGT9lPURfK
## 971  https://t.co/EZ5sFDF05w
## 972                     <NA>
## 973                     <NA>
## 974                     <NA>
## 975  https://t.co/IRJ7iZBC5f
## 976                     <NA>
## 977                     <NA>
## 978                     <NA>
## 979                     <NA>
## 980                     <NA>
## 981                     <NA>
## 982  https://t.co/R58zWESKyt
## 983  https://t.co/FXFa6Qb6YD
## 984   http://t.co/g70eDgDO95
## 985   http://t.co/5UieYH0DYg
## 986                     <NA>
## 987  https://t.co/ZgPqBs4dEM
## 988                     <NA>
## 989  https://t.co/HUZXCp8LeT
## 990  https://t.co/BKpDQI2kRs
## 991                     <NA>
## 992                     <NA>
## 993   http://t.co/gdtXXYM7Rv
## 994                     <NA>
## 995  https://t.co/HXaJ0YPGL1
## 996                     <NA>
## 997                     <NA>
## 998                     <NA>
## 999                     <NA>
## 1000                    <NA>
## 1001 https://t.co/7lAiJtaC0d
## 1002                    <NA>
## 1003                    <NA>
## 1004                    <NA>
## 1005                    <NA>
## 1006 https://t.co/He7jE6OnOG
## 1007 https://t.co/wgokXP7XV1
## 1008                    <NA>
## 1009 https://t.co/TcxYJbIdTG
## 1010                    <NA>
## 1011 https://t.co/K6ozb35xX8
## 1012 https://t.co/BbS1p83DLn
## 1013                    <NA>
## 1014 https://t.co/Bz1fnGiwpa
## 1015                    <NA>
## 1016                    <NA>
## 1017 https://t.co/mnV3EaS2Ev
## 1018 https://t.co/x99wgN64jG
## 1019                    <NA>
## 1020 https://t.co/UwAIgyycfN
## 1021                    <NA>
## 1022 https://t.co/19dRI8mQSC
## 1023 https://t.co/ydGVV9zEXW
## 1024 https://t.co/LX0EDhjY32
## 1025 https://t.co/lNtj9vZTCg
## 1026 https://t.co/e4JEqLu7Eb
## 1027                    <NA>
## 1028 https://t.co/HKXLDTtSS9
## 1029  http://t.co/E9lhJBBn4J
## 1030                    <NA>
## 1031 https://t.co/6UzRrP4Yrf
## 1032                    <NA>
## 1033 https://t.co/cNcIQkvXdk
## 1034 https://t.co/Lta9Mbh7e8
## 1035 https://t.co/R7dYNe8U3j
## 1036                    <NA>
## 1037 https://t.co/nCi3t7Canm
## 1038                    <NA>
## 1039                    <NA>
## 1040                    <NA>
## 1041 https://t.co/rEGDxu0GRN
## 1042 https://t.co/dnO4oxJQU0
## 1043 https://t.co/ypgwE1V9qm
## 1044                    <NA>
## 1045 https://t.co/Tj51VN2MQ0
## 1046                    <NA>
## 1047                    <NA>
## 1048 https://t.co/ERqXvWMVuD
## 1049                    <NA>
## 1050                    <NA>
## 1051                    <NA>
## 1052                    <NA>
## 1053                    <NA>
## 1054 https://t.co/UClrPuJpyZ
## 1055 https://t.co/m9zYUvEED9
## 1056 https://t.co/R6ab8vP5tI
## 1057 https://t.co/1PcLYb59rb
## 1058 https://t.co/t5YUVyttAu
## 1059 https://t.co/PtPdep546V
## 1060 https://t.co/R6eT7KfXDK
## 1061 https://t.co/ZH7iI0RIW1
## 1062                    <NA>
## 1063                    <NA>
## 1064                    <NA>
## 1065                    <NA>
## 1066 https://t.co/RlJICbPENi
## 1067                    <NA>
## 1068 https://t.co/MnG17fcWkS
## 1069 https://t.co/xgFIIWKKhO
## 1070  http://t.co/Hq7hTYkOPg
## 1071 https://t.co/Yb4PcU5FYN
## 1072 https://t.co/sOLMBez5df
## 1073                    <NA>
## 1074  http://t.co/z3sIL4eTur
## 1075 https://t.co/Ceu7cQ0S8K
## 1076 https://t.co/xcWIWpZ8Xn
## 1077 https://t.co/sX7wIiecOA
## 1078  http://t.co/08kvULtmw0
## 1079                    <NA>
## 1080 https://t.co/i6UpqSn538
## 1081                    <NA>
## 1082                    <NA>
## 1083 https://t.co/pU3cGTKuDm
## 1084 https://t.co/0tyJxyBqE5
## 1085 https://t.co/lITYDq3nJM
## 1086                    <NA>
## 1087 https://t.co/nGUJ8xTFOK
## 1088                    <NA>
## 1089  http://t.co/aeecux8Jat
## 1090 https://t.co/wcLXrCoHez
## 1091                    <NA>
## 1092 https://t.co/R38Ubnn6mt
## 1093  http://t.co/YfgvbdUwHx
## 1094                    <NA>
## 1095                    <NA>
## 1096                    <NA>
## 1097                    <NA>
## 1098  http://t.co/BAMmJNh0xI
## 1099                    <NA>
## 1100                    <NA>
## 1101 https://t.co/z9SvHL6dCy
## 1102                    <NA>
## 1103 https://t.co/1mzx8F6RP3
## 1104                    <NA>
## 1105                    <NA>
## 1106                    <NA>
## 1107  http://t.co/vEGkoeUA39
## 1108                    <NA>
## 1109                    <NA>
## 1110 https://t.co/Dmon52F9sn
## 1111                    <NA>
##                                                                                      profile_expanded_url
## 1                                                                                                    <NA>
## 2                                                               https://urdoingitwrongreds.wordpress.com/
## 3                                                                               http://www.heartysoft.com
## 4                                                                                                    <NA>
## 5                                                                           http://linkedin.com/in/jshorr
## 6                                                                          https://www.menshealth.com/uk/
## 7                                                                                     http://www.walb.com
## 8                                                                                  http://www.npqmag.org/
## 9                                                                                     http://baplegal.com
## 10                                                                                                   <NA>
## 11                                                                                                   <NA>
## 12                                                                                                   <NA>
## 13                                         https://secure.actblue.com/donate/biden2020_fr_q12020-social14
## 14                                                                                                   <NA>
## 15                                                                                                   <NA>
## 16                                                                                                   <NA>
## 17                                                                           http://www.lumindustries.com
## 18                                                                                                   <NA>
## 19                                                                            http://www.bscattorneys.com
## 20                                                                    http://www.trumptwitterarchive.com/
## 21                                                                                                   <NA>
## 22                                                                       http://www.comoxvalleyrecord.com
## 23                                                               https://www.linkedin.com/in/shreyasdoshi
## 24                                                               http://Instagram.com/authentic_CurlyHead
## 25                                                                                 https://bit.ly/2QjRYD7
## 26                                                                 https://muckrack.com/alfredo-zullino-1
## 27                         https://windsoressex.cmha.ca/mental-health/suicide-prevention/awareness-month/
## 28                                                                                                   <NA>
## 29                                                                                                   <NA>
## 30                                                                                                   <NA>
## 31                                                                                                   <NA>
## 32                                                                   https://www.twitter.com/brandondarby
## 33                                                                                        http://WFAA.com
## 34                                                                                    http://www.pcma.org
## 35                                                               http://www.linkedin.com/in/barbarajwells
## 36                                                                                                   <NA>
## 37                                                                                                   <NA>
## 38                                                                                 https://www.effat.org/
## 39                                                                                 https://www.opeeka.com
## 40                                                                                    http://stu-wood.com
## 41                                                                                                   <NA>
## 42                                                                                http://m.me/7NEWSMackay
## 43                                                                                  http://bit.ly/10TPsX1
## 44                                                                                http://promiseskept.com
## 45                                                                            http://www.ashexclusive.com
## 46                                                                                                   <NA>
## 47                                                                                                   <NA>
## 48                                                                           https://www.ronamackay.scot/
## 49                                                               http://www.firstchoiceproduce.com/signup
## 50                                                  http://www.linkedin.com/pub/jessica-shumaker/4/76/585
## 51                                                                                                   <NA>
## 52                                                                           http://permabeardoomster.com
## 53                                                                                                   <NA>
## 54                                                                      http://www.noahsarkhospice.org.uk
## 55                                                                                                   <NA>
## 56                                                                                                   <NA>
## 57                                                                                                   <NA>
## 58                                                                                  https://q2i.com/casa/
## 59                                                                            https://ThreadReaderApp.com
## 60                                                                                                   <NA>
## 61                                                                                                   <NA>
## 62                                                                             http://www.katedepalma.com
## 63                                                                             http://sciencemag.org/news
## 64                                                                             http://www.theprogress.com
## 65                                                                                                   <NA>
## 66                                                                                   http://daveworks.net
## 67                                                                                   http://sobertool.com
## 68                                                                                                   <NA>
## 69                                                                             http://austinkellerman.com
## 70                                                                                                   <NA>
## 71                                                                           http://www.sportbusiness.com
## 72                                                                                                   <NA>
## 73                                                                                  https://curogram.com/
## 74                                                                                                   <NA>
## 75                                                                       http://www.ibizaislandvillas.com
## 76                                                                                                   <NA>
## 77                                                                                                   <NA>
## 78                                                                                                   <NA>
## 79                                                                                                   <NA>
## 80                                                                            http://www.civicscience.com
## 81                                                                                                   <NA>
## 82                                                                                  http://bu.edu/cs/news
## 83                                                                     http://www.flourishtogether.org.uk
## 84                                                                                                   <NA>
## 85                                                                         http://covidmappingproject.com
## 86                                                                                                   <NA>
## 87                                                                                                   <NA>
## 88                                                                         http://www.columbiadoctors.org
## 89                                                                                http://www.dlapiper.com
## 90                                                                                                   <NA>
## 91                                                                                http://www.yason9ja.net
## 92                                                                                                   <NA>
## 93                                                                               http://www.express.co.uk
## 94                                                                         http://www.personalliberty.com
## 95                                                                      http://elaina-scott.posthaven.com
## 96                                                                          http://www.witbanknews.co.za/
## 97                                                                                                   <NA>
## 98                                                                  https://www.understandingmyositis.org
## 99                                                                              https://wp.nyu.edu/landg/
## 100                                                                                                  <NA>
## 101                                                                                 https://refekids.com/
## 102                                                                                                  <NA>
## 103                                                                                                  <NA>
## 104                                                                                                  <NA>
## 105                                                                                                  <NA>
## 106                                                                            http://www.ecocowgirls.com
## 107                                                                                                  <NA>
## 108                                                                                                  <NA>
## 109                                                                                                  <NA>
## 110                                                    https://financialtribune.com/author/khosro-kalbasi
## 111                                                                                                  <NA>
## 112                                                          https://www.facebook.com/EllypopIllustration
## 113                                                                http://www.librarything.com/thingology
## 114                                                                                                  <NA>
## 115                                            https://start.me/p/z4ggQO/home-news-music-finance-web-cams
## 116                                                                                                  <NA>
## 117                                                                                   http://www.kget.com
## 118                                                                                    http://dobs.pa.gov
## 119                                                                                                  <NA>
## 120                                                                                                  <NA>
## 121                                                                        http://hotgalstoryz.bogger.com
## 122                                                              https://www.spotlight.com/5734-3424-8967
## 123                                                                                                  <NA>
## 124                                                                                http://www.680NEWS.com
## 125                                                                                                  <NA>
## 126                                                                                                  <NA>
## 127                                                        http://quizprank.xyz/message.php?id=975800519e
## 128                                                                          https://www.dts-solution.com
## 129                                                                           http://www.readfrontier.org
## 130                                                               https://www.flickr.com/photos/tonyevans
## 131                                                                                   http://dokufest.com
## 132                                                                            http://www.kidnabsingh.com
## 133                                                        http://melissathepatriotprincess.blogspot.com/
## 134                                                                              http://bit.ly/Antoniopu_
## 135                                                                                                  <NA>
## 136                                                                                                  <NA>
## 137                                                                                                  <NA>
## 138                                                    http://linkedin.com/in/christopher-castro-204b7524
## 139                                                                   https://danielgillis.wordpress.com/
## 140                                                                   http://www.graysoncountyschools.com
## 141                                                                                                  <NA>
## 142                                                                                http://www.merriam.org
## 143                                                                              http://www.basetax.co.uk
## 144                                                                                                  <NA>
## 145                                                                             http://www.comicsbyte.com
## 146                                                                                                  <NA>
## 147                                                                        http://ankush789vinstagram.com
## 148                                                                                                  <NA>
## 149                                                                                  https://bazecity.com
## 150                                                                                                  <NA>
## 151                                                                           https://www.kenziewynne.com
## 152                                                                                 http://elladawson.com
## 153                                                                       http://www.arkansas.gov/senate/
## 154                                                                  https://furballsofsteel.blogspot.com
## 155                                                                        http://www.chandlerchamber.com
## 156                                                                                                  <NA>
## 157                                                                              http://www.colmdawson.ie
## 158                                                                       http://democratandchronicle.com
## 159                                                                                 http://www.venafi.com
## 160                                               https://www.businessinsider.com/author/kimberly-leonard
## 161                                                                         http://www.yourmomSuckksD.com
## 162                                                                            http://www.agriculture.com
## 163                                                                                                  <NA>
## 164                                                                          http://Carolesmithturner.com
## 165                                                                                    http://www.vnrc.us
## 166                                                                               http://www.miamigov.com
## 167                                                                                                  <NA>
## 168                                                                                                  <NA>
## 169                                                                 http://www.shahidafridifoundation.org
## 170                                                                            http://northwestmoinfo.com
## 171                                                                               http://www.lykaboss.com
## 172                                                                                                  <NA>
## 173                                                                                                  <NA>
## 174                                                                                                  <NA>
## 175                                                                  https://www.creightonhealthtech.com/
## 176                                                                           http://openinghappiness.com
## 177                                                                      https://www.quesnelobserver.com/
## 178                                                                                                  <NA>
## 179                                                                         http://www.TheCalifornian.com
## 180                                                                                                  <NA>
## 181                                                                                     http://burnaby.ca
## 182                                                                                                  <NA>
## 183                                                                                                  <NA>
## 184                                                                    http://www.medicalsourcepharma.com
## 185                                                                                                  <NA>
## 186                                                                    http://www.google.cmyjersey.com.ng
## 187                                                                                                  <NA>
## 188                                                              http://linkedin.com/in/andremarcelharris
## 189                                                                                                  <NA>
## 190                                                                         http://www.claresturges.co.uk
## 191                                                                                                  <NA>
## 192                                                                                                  <NA>
## 193                                                                            http://www.wilsontimes.com
## 194                                                                                                  <NA>
## 195                                                                          https://youtu.be/rQ-fvr2qLc0
## 196                                                                           http://www.kjcryptodojo.com
## 197                                                                                                  <NA>
## 198                                                                                                  <NA>
## 199                                                                                                  <NA>
## 200                                                                       http://WWW.Trump4Prison2020.com
## 201                                                                                                  <NA>
## 202                                                                                                  <NA>
## 203                                                                     https://www.BareSkyMarketing.com/
## 204                                                                                 http://acronisscs.com
## 205                                                                   https://www.facebook.com/wwecritics
## 206                                                                                https://jeffalgera.com
## 207                                                                                http://independent.org
## 208                                                                                                  <NA>
## 209                                                                                                  <NA>
## 210                                                                                                  <NA>
## 211                                                                                                  <NA>
## 212                                                                             http://www.cbc.ca/calgary
## 213                                                                                                  <NA>
## 214                                                                                    http://thequill.in
## 215                                                                                                  <NA>
## 216                                                                            http://anthonytilghman.com
## 217                                                                                   https://twitter.com
## 218                                                          http://misiones.minrex.gob.cu/en/new-zealand
## 219                                                                                                  <NA>
## 220                                                                                                  <NA>
## 221                                                                                http://www.gazette.com
## 222                                                                             http://www.keybase.io/dfk
## 223                                                          https://www.instagram.com/nimra.zulfi/?hl=en
## 224                                                                                                  <NA>
## 225                                                                       https://medium.com/@TheAgeOfAGs
## 226                                                                                                  <NA>
## 227                                                                                                  <NA>
## 228                                                                                                  <NA>
## 229                                                                                                  <NA>
## 230                                                                                                  <NA>
## 231                                                                           https://BenCrump.com/flint/
## 232                                                                       http://www.johnscottrailton.com
## 233                             https://www.amazon.co.uk/dp/B084CLQS66/ref=cm_sw_r_cp_api_i_fxfqEbBZV1ZYG
## 234                                                                                                  <NA>
## 235                                                                                    http://bit.do/_JPN
## 236                                                                                                  <NA>
## 237                                                                    http://halfeatenmind.wordpress.com
## 238                                                                                                  <NA>
## 239                                                                                                  <NA>
## 240                                                                                                  <NA>
## 241                                                                                                  <NA>
## 242                                                                                                  <NA>
## 243                                                                                                  <NA>
## 244                                                                                                  <NA>
## 245                                                                                                  <NA>
## 246                                                                                                  <NA>
## 247                                                                                                  <NA>
## 248                                                                                       https://4th.me/
## 249                                                                                                  <NA>
## 250                                                                                                  <NA>
## 251                                                                        http://anera.org/gaza-response
## 252                                                                                                  <NA>
## 253                                                                               http://www.blankpub.com
## 254                                                                                                  <NA>
## 255                                                                                http://www.lfpress.com
## 256                                                                        http://www.juliecasperroth.com
## 257                                                                                                  <NA>
## 258                                                                                                  <NA>
## 259                                                                                                  <NA>
## 260                                                     https://www.newcastle.edu.au/profile/emma-beckett
## 261                                                                                                  <NA>
## 262                                                                                                  <NA>
## 263                                                   https://cypstnnetwork.wixsite.com/cypstudentnetwork
## 264                                                                                                  <NA>
## 265                                                                                                  <NA>
## 266                                                                                                  <NA>
## 267                                                                                                  <NA>
## 268                                                                     http://www.brunswickcountync.gov/
## 269                                                                                                  <NA>
## 270                                                                                                  <NA>
## 271                                                                      https://medium.com/@jrodthoughts
## 272                                                                              https://www.auedbaki.com
## 273                                                                                                  <NA>
## 274                                                                                                  <NA>
## 275                                                                                                  <NA>
## 276                                                                                                  <NA>
## 277                                                                                                  <NA>
## 278                       https://www.linkedin.com/in/mary-carson-77563715?trk=nav_responsive_tab_profile
## 279                                                                           https://twitter.com/Sid1582
## 280                                                                                http://www.mahyco.com/
## 281                                                                                                  <NA>
## 282                                                                                  http://RoyceWest.com
## 283                                                                                https://lexjurgen.com/
## 284                                                      http://www.instituteforscienceandhumanvalues.net
## 285                                                                                                  <NA>
## 286                                                             https://virusintl.com/search?q=Killer+cub
## 287                                                                                                  <NA>
## 288                                                                               http://trendingatoz.com
## 289                                                                              http://www.SheOwnsIt.com
## 290                                                                                                  <NA>
## 291                                                                               http://www.binyasin.com
## 292                                                           https://www.youtube.com/watch?v=qgylp3Td1Bw
## 293                                                                                                  <NA>
## 294                                                                                                  <NA>
## 295                                                                        http://wendyloraine.tumblr.com
## 296                                                                   http://www.peterboroughexaminer.com
## 297                                                                     http://www.vantagestrategy.com.au
## 298                                                                                                  <NA>
## 299                                                                                     http://mabrn.com/
## 300                                                                                                  <NA>
## 301                                                                                                  <NA>
## 302                                                                             https://movingmarkets.org
## 303                                                                                                  <NA>
## 304                                                                           http://www.ginalobiondo.com
## 305                                                                                                  <NA>
## 306                                                                                                  <NA>
## 307                                                                                                  <NA>
## 308                                                                         http://servproofhaverhill.com
## 309                                                                                                  <NA>
## 310                                                                            http://www.lewishine.co.uk
## 311                                                                     http://floraisadora.blogspot.com/
## 312                                                                             http://www.bbc.com/korean
## 313                                                               http://joannaschroederauthor.tumblr.com
## 314                                                                      http://www.in-sightfulliving.com
## 315                                                                                  http://www.india.com
## 316                                                                         https://albertapressleader.ca
## 317                                                                                    http://trustam.com
## 318                                                                                                  <NA>
## 319                                                                          https://youtu.be/xYiyUlSlnUo
## 320                                                                                                  <NA>
## 321                                                                                                  <NA>
## 322                                                                      http://Facebook.com/IsaacN.Gzaxs
## 323                                                                                                  <NA>
## 324                                                                                http://www.arizton.com
## 325                                                                             http://Juicyupdate.com.ng
## 326                                                                                  http://bit.ly/YVFu1f
## 327                                                               http://www.perfectly-polished-nails.com
## 328                                                                                                  <NA>
## 329                      http://gov.uk/government/organisations/hm-revenue-customs/about/social-media-use
## 330                                                                            https://theworldinnews.com
## 331                                                                                 https://mbarclabs.com
## 332                                                                                                  <NA>
## 333                                                                       https://cuppediavenia.carrd.co/
## 334                                                                                                  <NA>
## 335                                                                       http://nevikjames.wordpress.com
## 336                                                                                                  <NA>
## 337                                                                       http://www.trainorbetrained.net
## 338                                                                                                  <NA>
## 339                                                                      https://www.myafricanaffairs.com
## 340                                                                                                  <NA>
## 341                                                                          http://www.thecraftykat.com/
## 342                                                                                                  <NA>
## 343                                                                                http://www.self-reg.ca
## 344                                                                                                  <NA>
## 345                                                                                                  <NA>
## 346                                                                                                  <NA>
## 347                                                           https://www.amnesty.org.uk/blogs/shao-jiang
## 348                                                                                                  <NA>
## 349                                                                                                  <NA>
## 350                                                                           http://www.greensfelder.com
## 351                                                                                                  <NA>
## 352                                                                        http://www.northglennews.co.za
## 353                                                                              http://www.motsinger.com
## 354                                                                    https://www.northwales-live.co.uk/
## 355                                                                                  http://www.janes.com
## 356                                                                                 http://www.tv6tnt.com
## 357                                                                              http://www.kirosamin.com
## 358                                                                                   http://fmhansen.com
## 359                                                                                                  <NA>
## 360                                                                                https://nigeria.un.org
## 361                                                    http://www.linkedin.com/in/travis-adkins-89b5b9117
## 362                                                                                                  <NA>
## 363                                                                                                  <NA>
## 364                                                                                                  <NA>
## 365                                                                            http://metrobyt-mobile.com
## 366                                                                                                  <NA>
## 367                                                                                                  <NA>
## 368                                                                                                  <NA>
## 369                                                                                                  <NA>
## 370                                                                                                  <NA>
## 371                                                                         http://www.jammulinksnews.com
## 372                                                                                                  <NA>
## 373                                                                               http://www.bobgrip.com/
## 374                                                                                                  <NA>
## 375                                                                              http://www.msfaccess.org
## 376                                                                                                  <NA>
## 377                                                                                 http://www.bikham.com
## 378                                                                                                  <NA>
## 379                                                                                                  <NA>
## 380                                                                                                  <NA>
## 381                                                                                 http://www.espudo.com
## 382                                                                              http://bracketvoodoo.com
## 383                                                                                    http://neuleft.org
## 384                                                                                                  <NA>
## 385                                                                                                  <NA>
## 386                                                                                                  <NA>
## 387                                                                                                  <NA>
## 388                                                                                                  <NA>
## 389                                                                                                  <NA>
## 390  https://www.amazon.com/s?i=fashion&rh=n%3A7141123011%2Cp_4%3ALet%27s+Paws&qid=1584699389&ref=is_pp_2
## 391                                                              https://www.facebook.com/KaytlynTribune/
## 392                                                                                                  <NA>
## 393                                                                                                  <NA>
## 394                                                      https://www.facebook.com/groups/420111995525847/
## 395                                                                                                  <NA>
## 396                                                                                                  <NA>
## 397                                                          http://www.likesidesofatriangle.blogspot.com
## 398                                                                          https://yaleglobal.yale.edu/
## 399                                                                             https://ryanmartinsen.com
## 400                                                                                  http://allafrica.com
## 401                                                                                  http://www.fox61.com
## 402                                                                        http://certifiedlisteners.org/
## 403                                                                                                  <NA>
## 404                                                                                                  <NA>
## 405                                                                                                  <NA>
## 406                                                                                  http://www.41nbc.com
## 407                                                                  http://www.similkameenspotlight.com/
## 408                                                                                                  <NA>
## 409                                                                                                  <NA>
## 410                                                                                                  <NA>
## 411                                                                                                  <NA>
## 412                                                                        http://clockhousenursery.co.uk
## 413                                                                                                  <NA>
## 414                                                                                http://www.chatowl.com
## 415                                                                                                  <NA>
## 416                                                                               http://www.cinnaire.com
## 417                                                                                                  <NA>
## 418                                                                                                  <NA>
## 419                                                                            http://www.fox5atlanta.com
## 420                                               http://www.hannacenter.org/HannaBoysCenter/default.aspx
## 421                                                                                                  <NA>
## 422                                                                                                  <NA>
## 423                                                                                                  <NA>
## 424                                                                                                  <NA>
## 425                                                                              https://bloom.bg/31N0XzX
## 426                                                                                                  <NA>
## 427                                                                                                  <NA>
## 428                                                                                                  <NA>
## 429                                                                              http://www.straight.com/
## 430                                                   https://www.financialexpress.com/author/udit-kumar/
## 431                                                                     http://www.cranbrooktownsman.com/
## 432                                                                       http://www.nationaljeweler.com/
## 433                                                                                                  <NA>
## 434                                                                              http://www.eyesonfox.org
## 435                                                                                http://www.knx1070.com
## 436                                                                            https://funkeabimbola.com/
## 437                                                                   https://www.instagram.com/apwc2020/
## 438                                                                                                  <NA>
## 439                                                                                                  <NA>
## 440                                                                      https://www.eaglevalleynews.com/
## 441                                                                     http://lvbs.carletonstudioart.com
## 442                                                                                  http://www.dhin.org/
## 443                                                                                                  <NA>
## 444                                                                                                  <NA>
## 445                                                                            http://www.pawankverma.com
## 446                                                                         http://www.emilysilverman.com
## 447                                                                                                  <NA>
## 448                                                                                                  <NA>
## 449                                                                                                  <NA>
## 450                                                                                                  <NA>
## 451                                                                         http://davebjork.blogspot.com
## 452                                                                                                  <NA>
## 453                                                                                  http://www.airtel.in
## 454                                                        https://globalnews.ca/author/shallima-maharaj/
## 455                                                                                                  <NA>
## 456                                                                                                  <NA>
## 457                                                                                                  <NA>
## 458                                                                                                  <NA>
## 459                                                                              http://github.com/pgreze
## 460                                                                                                  <NA>
## 461                                                                      http://www.myspace.com/jiskazone
## 462                                                                                   http://portside.org
## 463                                                                               https://www.smc.health/
## 464                                                                            http://www.forumdoc.org.br
## 465                                                                                                  <NA>
## 466                                                                             http://www.khaenschen.com
## 467                                                                       http://www.financialexpress.com
## 468                                              https://www.flickr.com/photos/wildsidephotography/albums
## 469                                                                                                  <NA>
## 470                                                                                                  <NA>
## 471                                                                                                  <NA>
## 472                                                                                                  <NA>
## 473                                                                         http://Instagram.com/brett.co
## 474                                                                            http://www.thalesgroup.com
## 475                                                                                       http://knoe.com
## 476                                                                  https://www.linkedin.com/in/paulgelb
## 477                                                                      http://vincentfarrellgallery.com
## 478                                                                                                  <NA>
## 479                                                                               http://www.cocamama.org
## 480                                                                                                  <NA>
## 481                                                                           http://aareago.blogspot.com
## 482                                                                               https://maxloadedng.com
## 483                                                                                    http://afaofpa.org
## 484                                                                                                  <NA>
## 485                                              https://www.youtube.com/channel/UCBrs0cwNUOb0m1510vJoGrQ
## 486                                              https://www.youtube.com/channel/UCK_y3gj2Xva77rhhYdkqpWw
## 487                                                                                                  <NA>
## 488                                                                           http://blog.hotwhopper.com/
## 489                                                                                                  <NA>
## 490                                                                         https://www.physiosforpa.com/
## 491                                                                                                  <NA>
## 492                                                                                                  <NA>
## 493                                                                        http://www.clearoutlook.com.au
## 494                                                                               http://www.7NEWS.com.au
## 495                                                                                                  <NA>
## 496                                                 https://www.facebook.com/AlexandraCastroMakeupArtist/
## 497                                                                       http://facebook.com/thejulianpo
## 498                                                                               http://www.sumamzee.com
## 499                                                                                                  <NA>
## 500                                                                     http://groundblogger.grounder.com
## 501                                                     https://secure.ngpvan.com/Ps-L6BrW_0KFnBjHwEqWcA2
## 502                                                                                                  <NA>
## 503                                                                    http://facebook.com/TinaDeteljWTNH
## 504                                                                                                  <NA>
## 505                                                                                 http://www.fox5dc.com
## 506                                                                                                  <NA>
## 507                                                                                                  <NA>
## 508                                                      https://globalvaluechains.org/person/keane-jodie
## 509                                                                                                  <NA>
## 510                                                                                                  <NA>
## 511                                                                                  http://www.9.Academy
## 512                                                                                  http://ammadison.org
## 513                                                                                                  <NA>
## 514                                                                                                  <NA>
## 515                                                                                                  <NA>
## 516                                                                                                  <NA>
## 517                                                                            http://www.txgen.tamu.edu/
## 518                                                                                                  <NA>
## 519                                                                                                  <NA>
## 520                                                                                                  <NA>
## 521                                                                     https://linktr.ee/anthonyquintano
## 522                                                    https://www.dragon-digital-marketing.com/quiz.html
## 523                                                                                                  <NA>
## 524                                                                  http://SmallBatchPotteryATL.etsy.com
## 525                                                                       http://www.trybeservices.com.ng
## 526                                                                   http://www.youtube.com/BrookeLagana
## 527                                                                                                  <NA>
## 528                                                                                                  <NA>
## 529                                                                                 http://josephaleo.com
## 530                                                          https://www.instagram.com/juliedoleofficial/
## 531                                                                                                  <NA>
## 532                                                                            http://www.1821bitters.com
## 533                                              https://www.youtube.com/channel/UCHl4BhqDyMZ9pE6pAnXwrMg
## 534                                                                                                  <NA>
## 535                                                                                                  <NA>
## 536                                                                                 http://OurPursuit.com
## 537                                                                                                  <NA>
## 538                                                                                  http://testadura.org
## 539                                                                                                  <NA>
## 540                                                                           http://www.firstindia.co.in
## 541                                                                    http://www.vodafone.in/happytohelp
## 542                                                                                                  <NA>
## 543                                                                                                  <NA>
## 544                                                                               https://nathanworks.com
## 545                                                                                http://mynewsghana.net
## 546                                                                              http://www.altus-inc.com
## 547                                                                     http://flickr.com/photos/un_photo
## 548                                                                               http://www.nrttv.com/en
## 549                                                                                                  <NA>
## 550                                                                           http://www.royalgazette.com
## 551                                                                                                  <NA>
## 552                                                                                                  <NA>
## 553                                                                                http://barrietoday.com
## 554                                                                                   http://joebiden.com
## 555                                                              http://paulsdiary662036309.wordpress.com
## 556                                                                  http://instagram.com/JordanSchachtel
## 557                                                                                  http://www.airtel.in
## 558                                                                                                  <NA>
## 559                                                             http://www.redcrossblood.org/northcentral
## 560                                                                       http://trak-attak.blogspot.com/
## 561                                                                                                  <NA>
## 562                                                                                                  <NA>
## 563                                                                           http://www.chimpreports.com
## 564                                                                         http://www.clarkfornorman.com
## 565                                                                                                  <NA>
## 566                                                                      http://isabelllawless.weebly.com
## 567                                                                                                  <NA>
## 568                                                                                                  <NA>
## 569                                                                    http://www.vodafone.in/happytohelp
## 570                                                                 http://dreaming-fireflies.tumblr.com/
## 571                                                                          http://english.alarabiya.net
## 572                                                                                                  <NA>
## 573                                                                                                  <NA>
## 574                                                                                    http://actu.org.au
## 575                                                                                                  <NA>
## 576                                                                                                  <NA>
## 577                                                                        http://www.covingtontravel.com
## 578                                                                         http://www.abileneadvisors.ch
## 579                                                                                   http://www.5280.com
## 580                                                                          http://twitch.tv/megapixelsf
## 581                                                                                                  <NA>
## 582                                                                                                  <NA>
## 583                                                                              http://www.seacology.org
## 584                                                                                                  <NA>
## 585                                                                                                  <NA>
## 586                                                         http://www.universityofalaskamuseumbirds.org/
## 587                                                                                                  <NA>
## 588                                                                             http://www.stephanieip.ca
## 589                                                             http://www.linkedin.com/in/deepak-sharma1
## 590                                                                                                  <NA>
## 591                                                                                                  <NA>
## 592                                                                                                  <NA>
## 593                                                                                                  <NA>
## 594                                                                                                  <NA>
## 595                                                                                                  <NA>
## 596                                                                              https://spectacle.com.ng
## 597                                                                                                  <NA>
## 598                                                                                    http://www.icgp.ie
## 599                                                                       http://federalway.bhhsnwre.com/
## 600                                                                            http://www.ghanayouths.org
## 601                                                                        http://www.researchforgood.com
## 602                                                                                                  <NA>
## 603                                                                                                  <NA>
## 604                                                                           http://www.PenguinCanada.ca
## 605                                                                                                  <NA>
## 606                                                                    http://www.venushomeappliances.com
## 607                                                                                                  <NA>
## 608                                                                                                  <NA>
## 609                                                                  http://sassygenealogist.blogspot.com
## 610                                                                           https://vimeo.com/229703062
## 611                                                                http://blogs.shu.edu/lawrencefrizzell/
## 612                                                                                                  <NA>
## 613                                                                                  http://www.cicra.org
## 614                                                                                                  <NA>
## 615                                                                          http://www.somersetcf.org.uk
## 616                                                                                                  <NA>
## 617                                                                                                  <NA>
## 618                                                                                                  <NA>
## 619                                                                         http://linkinglearning.com.au
## 620                                                                                                  <NA>
## 621                                                                                                  <NA>
## 622                                                                         https://500px.com/philip_daly
## 623                                                                                   http://www.kpbs.org
## 624                                                                      http://www.agetakekreative.co.ke
## 625                                                                                                  <NA>
## 626                                                                                                  <NA>
## 627                                               https://www.facebook.com/sandiegosupportedlivingvendors
## 628                                                                                http://www.swft.nhs.uk
## 629                                                                                                  <NA>
## 630                                                                  http://abide.is/awesome/?ref=twitter
## 631                                                                                                  <NA>
## 632                                                                               http://www.pafamily.org
## 633                                                                                                  <NA>
## 634                                                                                                  <NA>
## 635                                                                                                  <NA>
## 636                                                                               http://www.popejude.com
## 637                                                                       http://arjunketeer.blogspot.com
## 638                                                                    http://kristenobaid.wordpress.com/
## 639                                                                             http://harmreductionto.ca
## 640                                                                                                  <NA>
## 641                                                                                                  <NA>
## 642                                                                                                  <NA>
## 643                                                                         http://untrapped.substack.com
## 644                                                                             http://www.drsaini.com.au
## 645                                                                                                  <NA>
## 646                                                                                                  <NA>
## 647                                                                                                  <NA>
## 648                                                                                                  <NA>
## 649                                                                              https://www.ggkccpa.com/
## 650                                                                         http://www.sciencecrochet.com
## 651                                                                           http://www.FOX10Phoenix.com
## 652                                                                                   http://3newsnow.com
## 653                                                                        http://www.ibrahimmustapha.com
## 654                                                                                                  <NA>
## 655                                                                                                  <NA>
## 656                                                                                                  <NA>
## 657                                                                                                  <NA>
## 658                                                            http://www.facebook.com/richard.c.petersen
## 659                                                                                  http://www.airtel.in
## 660                                               http://www.goodreads.com/author/show/16469203.Lisa_Hunt
## 661                                                                                 https://theappeal.org
## 662                                                                                                  <NA>
## 663                                                    https://secure.actblue.com/donate/michaelblake-web
## 664                                                                              http://www.labour.org.nz
## 665                                                                                                  <NA>
## 666                                                                                                  <NA>
## 667                                                                                                  <NA>
## 668                                                                                                  <NA>
## 669                                                    https://ruhisleep.ca/sleep-and-society-podcast.php
## 670                                                                                                  <NA>
## 671                                                                                                  <NA>
## 672                                                                             http://www.rockycoles.com
## 673                                                                        https://americanbridgepac.org/
## 674                                                                             https://www.clickeric.com
## 675                                                                                                  <NA>
## 676                                    https://www.bidmc.org/centers-and-departments/transplant-institute
## 677                                                                                                  <NA>
## 678                                                                                                  <NA>
## 679                                                                                                  <NA>
## 680                                                                                   http://www.KWCH.com
## 681                                                                 https://orcid.org/0000-0003-2589-6539
## 682                                                                                                  <NA>
## 683                                                                          http://www.airlinegossip.com
## 684                                                                                                  <NA>
## 685                                                                                                  <NA>
## 686                                                                                                  <NA>
## 687                                                                        http://miastjohnfoundation.org
## 688                                                                                 http://www.lowyat.net
## 689                                                                                                  <NA>
## 690                                                                      http://www.mhairithrelfall.co.uk
## 691                                                                                                  <NA>
## 692                                                                           http://www.Fox32Chicago.com
## 693                                                                             http://sabronchoscopy.org
## 694                                                                                  http://nbc11news.com
## 695                                                                                                  <NA>
## 696                                                                                                  <NA>
## 697                                                                                                  <NA>
## 698                                                              https://www.facebook.com/100001379307062
## 699                                                                                                  <NA>
## 700                                                                                   http://croakey.org/
## 701                                                                          http://spectrumlocalnews.com
## 702                                                                                                  <NA>
## 703                                                                                                  <NA>
## 704                                                                                                  <NA>
## 705                                                                                                  <NA>
## 706                                                             https://theresazphotography.wordpress.com
## 707                                                                                   http://doogilla.com
## 708                                                                           http://www.sheribettine.com
## 709                                                                                                  <NA>
## 710                                                                          http://www.stevesaideman.com
## 711                                                                                                  <NA>
## 712                                                                                  http://news.azpm.org
## 713                                                                                                  <NA>
## 714                                                                                                  <NA>
## 715                                                                         http://electronicintifada.net
## 716                                                                                   http://www.krem.com
## 717                                                                   http://www.delawarenewsreporter.com
## 718                                                                                                  <NA>
## 719                                                                      https://soundcloud.com/lileli956
## 720                                                                                                  <NA>
## 721                                                                          https://youtu.be/80s5xuvzCtg
## 722                                                                            http://TheJasmineBRAND.com
## 723                                                                                   http://7NEWS.com.au
## 724                                                                                                  <NA>
## 725                                                                             http://jwindsordesign.com
## 726                                                                  http://www.pavilionaccountancy.co.uk
## 727                                                              https://www.nonviolentcitizenaction.org/
## 728                                                                                                  <NA>
## 729                                                                            http://www.wilcoxgroup.com
## 730                                                                         http://the-byrne-house.org.uk
## 731                                                                                                  <NA>
## 732                                                                                                  <NA>
## 733                                                                        http://roybal-allard.house.gov
## 734                                                                                http://www.netslab.com
## 735                                                                                                  <NA>
## 736                                                             http://theschoolmarketinggroup.weebly.com
## 737                                                                                                  <NA>
## 738                                                                                                  <NA>
## 739                                                                          http://www.kim-baccellia.com
## 740                                                                           http://www.insightswest.com
## 741                                                                  http://instagram.com/alexmaclean.mov
## 742                                                                             http://travelweekly.co.uk
## 743                                                                                                  <NA>
## 744                                                                                                  <NA>
## 745                                                            http://www.linkedin.com/in/clintbuytenhuys
## 746                                                                                      http://wgntv.com
## 747                                                                                  http://c4atlanta.org
## 748                                                                                  http://dev.to/rapulu
## 749                                                                                                  <NA>
## 750                                                                          http://www.hoperisesnews.com
## 751                                                                                                  <NA>
## 752                                                                                                  <NA>
## 753                                                                  http://omaralabdullah.wordpress.com/
## 754                                                                             http://www.derekpoore.com
## 755                                                                                   http://www.undp.org
## 756                                                                              http://www.capitalfm.com
## 757                                                                                                  <NA>
## 758                                                                                                  <NA>
## 759                                                                                                  <NA>
## 760                                                                                                  <NA>
## 761             https://skynaijamusic.com.ng/2019/02/05/new-music-petestack-killing-me-slowly-prod-by-fmb
## 762                                                                                http://bottlecapps.com
## 763                                                         http://www.usaid.gov/what-we-do/global-health
## 764                                                                              http://richardcurzon.com
## 765                                                                       https://recruitingheadlines.com
## 766                                                                                http://www.pennews.net
## 767                                                                     http://preciousmetalsforecast.com
## 768                                                                                   http://www.ncrc.org
## 769                                                                         http://www.robertfairhead.com
## 770                                                                         http://maineventofthedead.com
## 771                                                                                                  <NA>
## 772                                                                             http://siorconsulting.com
## 773                                                                             https://scl.psy.miami.edu
## 774                                                                                                  <NA>
## 775                                                                                                  <NA>
## 776                                                                           http://www.cabriniworld.org
## 777                                                                                                  <NA>
## 778                                                                             http://www.climatenow.net
## 779                                                                https://www.facebook.com/Engikramdawar
## 780                                                                                                  <NA>
## 781                                                                                                  <NA>
## 782                                                                         http://the.wrestling.business
## 783                                                                                                  <NA>
## 784                                                                                                  <NA>
## 785                                                                               http://educate4hope.com
## 786                                                                                                  <NA>
## 787                                                                                                  <NA>
## 788                                                                                                  <NA>
## 789                                                                            http://www.canstarnews.com
## 790                                                                                                  <NA>
## 791                                                                                                  <NA>
## 792                                                                                http://petrasando.info
## 793                                                                                                  <NA>
## 794                                https://www.linkedin.com/in/eva-bermejo-s%C3%A1nchez-msc-phd-a3887132/
## 795                                                                           http://winnipeg.citynews.ca
## 796                                                                                                  <NA>
## 797                                                                                                  <NA>
## 798                                                                                                  <NA>
## 799                                                                                                  <NA>
## 800                                                              http://maverick-perspective.blogspot.com
## 801                                                                                                  <NA>
## 802                                                                                                  <NA>
## 803                                                                  http://www.aboutschwab.com/community
## 804                                                                                                  <NA>
## 805                                                                            http://www.ustranscom.mil/
## 806                                                                                                  <NA>
## 807                                                                                                  <NA>
## 808                                                                                                  <NA>
## 809                                                                                                  <NA>
## 810                                                                                                  <NA>
## 811                                                                                                  <NA>
## 812                                                                                                  <NA>
## 813                                                                                                  <NA>
## 814                                                                                                  <NA>
## 815                                                            https://nigeriansreportng.blogspot.com.ng/
## 816                                              https://www.youtube.com/channel/UCtZ_Jsp0IHOt68fm2Da3Nkg
## 817                                                                               http://www.sfarmlab.com
## 818                                                                                                  <NA>
## 819                                                                              https://digitalive.world
## 820                                                                                                  <NA>
## 821                                                                        https://keybase.io/bret_martin
## 822                                                                        http://www.testbeds.beds.ac.uk
## 823                                                                                   http://www.kcci.com
## 824                                                                    http://www.domestic-divaonline.com
## 825                                                                         https://www.RI-Bankruptcy.com
## 826                                                                                                  <NA>
## 827                                                                                                  <NA>
## 828                                                                            http://onyxstudios.digital
## 829                                                                              https://Twitter.com/revo
## 830                                                                                                  <NA>
## 831                                                                                http://www.aertrip.com
## 832                                                                                                  <NA>
## 833                                                                                http://www.mybueno.com
## 834                                                                                                  <NA>
## 835                                                                                                  <NA>
## 836                                                                                                  <NA>
## 837                                                                                                  <NA>
## 838                                                                                                  <NA>
## 839                                                                                                  <NA>
## 840                                                                                                  <NA>
## 841                                                                        http://www.flickr.com/chaspope
## 842                                                                             http://pbhave.blogspot.in
## 843                                                                                                  <NA>
## 844                                                                                http://everiathing.com
## 845                                                                                                  <NA>
## 846                                                             http://committeetodefendthepresident.com/
## 847                                                                   http://www.imdb.com/name/nm2023243/
## 848                                                    https://ie.linkedin.com/in/robert-connon-921694117
## 849                                                                                                  <NA>
## 850                                                                       https://vimeo.com/WorthyVisuals
## 851                                                                                                  <NA>
## 852                                                                          https://youtu.be/Xp6SjUnWc18
## 853                                                                         http://about.me/slaytonrobert
## 854                                                                                                  <NA>
## 855                                                                                                  <NA>
## 856                                                                                                  <NA>
## 857                                                                        http://www.brandingandmore.net
## 858                                                                                                  <NA>
## 859                                                                                                  <NA>
## 860                                                                                     http://chubb.info
## 861                                                                                                  <NA>
## 862                                                                        http://curiouscat.me/FaithFool
## 863                                                              http://flickr.com/photos/kevin_g_purcell
## 864                                                                               https://www.dajobe.org/
## 865                                                                               http://www.westernu.edu
## 866                                                                                                  <NA>
## 867                                                                                                  <NA>
## 868                                                                                                  <NA>
## 869                                                                                                  <NA>
## 870                                                                                                  <NA>
## 871                                                                                                  <NA>
## 872                                                                                                  <NA>
## 873                                                                  http://www.fifty.vc/team/seth-bannon
## 874                                                                                      http://zyffy.com
## 875                                                                                                  <NA>
## 876                                                                                                  <NA>
## 877                                    https://twitter.com/True_govcritic/status/1200455809601159169?s=19
## 878                                                                                                  <NA>
## 879                                                                                                  <NA>
## 880                                                                      http://www.stlucianewsonline.com
## 881                                                                                                  <NA>
## 882                                                                       https://authory.com/JakeLeonard
## 883                                                                                                  <NA>
## 884                                                                               http://www.bhoopalm.com
## 885                                                                                                  <NA>
## 886                                                                                                  <NA>
## 887                                                                                                  <NA>
## 888                                                                             http://bit.ly/NotaryGuide
## 889                                                                                                  <NA>
## 890                                                                                   http://www.acslm.ie
## 891                                                                                                  <NA>
## 892                                                                             http://thaiwomantalks.com
## 893                                                                                  http://promarket.org
## 894                                                                                                  <NA>
## 895                                                                                                  <NA>
## 896                                                                                                  <NA>
## 897                                                                          https://www.naijareports.com
## 898                                                                                                  <NA>
## 899                                                                                                  <NA>
## 900                                                                            http://www.edgarvieira.com
## 901                                                                      https://song.link/iamcalebhart11
## 902                                                                                  http://www.CG2018.in
## 903                                                                                                  <NA>
## 904                                                                                     http://parker.com
## 905                                                                                                  <NA>
## 906                                                                                                  <NA>
## 907                                                                            http://pcwalton.github.io/
## 908                                                                     http://www.facebook.com/EHertsCSP
## 909                                                                                   http://www.nilc.org
## 910                                                                     http://www.scriptcentre.ed.ac.uk/
## 911                                                                                                  <NA>
## 912                                                            https://www.etsy.com/shop/HouseThistleRose
## 913                                                                                  http://www.airtel.in
## 914                                                                          https://youtu.be/DZKu83NA5VY
## 915                                                                                                  <NA>
## 916                                              https://instagram.com/daputsetyadii?igshid=1jlk3vzyqwk8k
## 917                                                                      http://www.alccwinnershouse.org/
## 918                                                                                    https://mehabe.com
## 919                                                                                 http://iamvictoroh.my
## 920                                                                            http://www.mercurynews.com
## 921                                                                          http://about.me/masteradrian
## 922                                                                                  http://13NewsNow.com
## 923                                                                  http://bit.ly/2GWHUMH_Amarula_BuyNow
## 924                                                                          http://dreamstatedigital.com
## 925                                                              https://ktxs.com/station/people/aj-gersh
## 926                                                                        http://Holdinguaccountable.com
## 927                                                                            http://www.startmadrid.com
## 928                                                                                       http://dcuc.org
## 929                                                                     https://www.palmdaleregional.com/
## 930                                                                                                  <NA>
## 931                                                                                                  <NA>
## 932                                                                        http://www.jonesandclark.co.uk
## 933                                                                                                  <NA>
## 934                                                        https://www.youtube.com/c/indiandefenceupdates
## 935                                                                                                  <NA>
## 936                                                           http://uk.linkedin.com/in/bradvanleeuwen/en
## 937                                                                                http://www.local12.com
## 938                                                                             http://www.Brightidea.com
## 939                                                                     http://www.instagram.com/ximena86
## 940                                                                       http://facebook.com/adrianlasar
## 941                                                 http://thedoorman-jeanfranckcazenave.monsitemedia.fr/
## 942                                                                          http://www.nationalguard.mil
## 943                                                                                                  <NA>
## 944                                                                         https://www.melissaingala.com
## 945                                                                                                  <NA>
## 946                                                                                 https://ecadforum.com
## 947                                                                                    https://resist.bot
## 948                                                                                   http://inlandrc.org
## 949                                                                                                  <NA>
## 950                                                                                                  <NA>
## 951                                                                                                  <NA>
## 952                                                                            http://www.phsa.ca/privacy
## 953                                                                                                  <NA>
## 954                                                                             https://www.thequint.com/
## 955                                                                            https://www.factcheck.org/
## 956                                                                               https://www.naswco.org/
## 957                                                                            http://www.bindingsite.com
## 958                                                                                                  <NA>
## 959                                                                                                  <NA>
## 960                                                                  http://www.socialstudiesrewired.com/
## 961                                                                                                  <NA>
## 962                                                                  http://www.dodesdiscounttrophies.com
## 963                                 https://www.facebook.com/Justine-Cooper-Dog-Grooming-903824056474453/
## 964                                                                                       http://rpod.net
## 965                                                                                  http://insidehpc.com
## 966                                                                                                  <NA>
## 967                                                                                                  <NA>
## 968                                                     https://instagram.com/lbockov?igshid=sakcog2cvzwf
## 969                                                               https://theconscientiouscapitalist.com/
## 970                                                                             http://www.donegallive.ie
## 971                                                                                 http://www.espact.com
## 972                                                                                                  <NA>
## 973                                                                                                  <NA>
## 974                                                                                                  <NA>
## 975                                                                           https://theenglishpost.com/
## 976                                                                                                  <NA>
## 977                                                                                                  <NA>
## 978                                                                                                  <NA>
## 979                                                                                                  <NA>
## 980                                                                                                  <NA>
## 981                                                                                                  <NA>
## 982                                                                      https://www.legalaidchicago.org/
## 983                                                                                          http://ZZ.my
## 984                                                                     http://www.thesame-innovation.com
## 985                                                                         http://insidehealthpolicy.com
## 986                                                                                                  <NA>
## 987                                          https://www.americanprogress.org/about/staff/jawetz-tom/bio/
## 988                                                                                                  <NA>
## 989                                                                         https://defend.wikileaks.org/
## 990                           https://learn.onlineadvisorgrowthformula.com/p/advisor-podcast-accelerator/
## 991                                                                                                  <NA>
## 992                                                                                                  <NA>
## 993                                                                            http://www.roseville.ca.us
## 994                                                                                                  <NA>
## 995                                                                            http://bit.ly/misskatielee
## 996                                                                                                  <NA>
## 997                                                                                                  <NA>
## 998                                                                                                  <NA>
## 999                                                                                                  <NA>
## 1000                                                                                                 <NA>
## 1001                                                                      http://Instagram.com/pk.ellasos
## 1002                                                                                                 <NA>
## 1003                                                                                                 <NA>
## 1004                                                                                                 <NA>
## 1005                                                                                                 <NA>
## 1006                                                                    http://vtnews.vt.edu/contact.html
## 1007                                                                        http://www.fionamceachran.com
## 1008                                                                                                 <NA>
## 1009                                                                              https://www.susans.org/
## 1010                                                                                                 <NA>
## 1011                                                                https://www.linktr.ee/lorirambojones/
## 1012                                                     https://im.academy/corp/cjoin?enroller=yaboyyrps
## 1013                                                                                                 <NA>
## 1014                                                                       http://www.tripuranewslive.com
## 1015                                                                                                 <NA>
## 1016                                                                                                 <NA>
## 1017                                                                               https://cat-bounce.com
## 1018                                                              http://www.ajalatalesblog.wordpress.com
## 1019                                                                                                 <NA>
## 1020                                                                     http://youtube.com/danagagliotti
## 1021                                                                                                 <NA>
## 1022                                                                                https://goo.gl/4h4dFb
## 1023                                                            https://meldeweyphotography.wordpress.com
## 1024                                                        https://lbry.tv/$/invite/@mrjorgeclavellina:b
## 1025                                                                   http://www.sundanceconstruction.ca
## 1026                                                                            http://maximovizcaino.com
## 1027                                                                                                 <NA>
## 1028                                                        http://www.LutheranWestland.com/warrior-links
## 1029                                                                    http://www.chemicalprocessing.com
## 1030                                                                                                 <NA>
## 1031                                                                                http://thestar.com.my
## 1032                                                                                                 <NA>
## 1033                                                                                http://bit.ly/36l548g
## 1034                                                                                http://wideopen.world
## 1035                                                              https://www.linkedin.com/in/najafzahra/
## 1036                                                                                                 <NA>
## 1037                                                                                      http://ILNY.org
## 1038                                                                                                 <NA>
## 1039                                                                                                 <NA>
## 1040                                                                                                 <NA>
## 1041                                                                               http://grantnissly.com
## 1042                                                                       http://www.courier-journal.com
## 1043                                                                 http://aquatreategypt.com/ramy-hamed
## 1044                                                                                                 <NA>
## 1045                                                          http://WWW.FACEBOOK.COM/MOVEPRODUCTIONS.COM
## 1046                                                                                                 <NA>
## 1047                                                                                                 <NA>
## 1048                           https://www.teacherspayteachers.com/Store/A-Pinch-Of-Kinder-By-Yukari-Naka
## 1049                                                                                                 <NA>
## 1050                                                                                                 <NA>
## 1051                                                                                                 <NA>
## 1052                                                                                                 <NA>
## 1053                                                                                                 <NA>
## 1054                                                                                  http://joebiden.com
## 1055                                                                                     https://eafer.eu
## 1056                                                                       http://www.enterprisem3.org.uk
## 1057                                                                           http://www.leics.police.uk
## 1058                                                                        http://www.wmcactionnews5.com
## 1059                                                                               http://www.gomason.com
## 1060                                                                    http://spectator.us/subscribe-now
## 1061                                                                  http://instagram.com/caitlinrpowell
## 1062                                                                                                 <NA>
## 1063                                                                                                 <NA>
## 1064                                                                                                 <NA>
## 1065                                                                                                 <NA>
## 1066                                                                                https://buzzicati.com
## 1067                                                                                                 <NA>
## 1068                                                                        http://eatrightwithlouisa.com
## 1069                                      https://soundcloud.com/jacob-fiscus-526729628/sets/grief-x-luna
## 1070                                                                            http://washingtonpost.com
## 1071                                                                       http://www.krld.com/listenlive
## 1072                                                                          https://twitter.com/BBabaya
## 1073                                                                                                 <NA>
## 1074                                                                     http://www.bobthepharmacist.com/
## 1075                                                          https://www.youtube.com/watch?v=2uoCr0-Y0m0
## 1076                                                      https://www.boxycharm.com/refer/Hannah-SUPVSEQI
## 1077                                                                            http://www.clickonthis.tv
## 1078                                                                                http://www.livelaw.in
## 1079                                                                                                 <NA>
## 1080                                                                                http://www.woodtv.com
## 1081                                                                                                 <NA>
## 1082                                                                                                 <NA>
## 1083                                                                     http://www.youravon.com/jewellen
## 1084                                                                         https://www.naijareports.com
## 1085                                                                          https://www.johnborwick.com
## 1086                                                                                                 <NA>
## 1087                                                                              http://governor.mt.gov/
## 1088                                                                                                 <NA>
## 1089                                                                          http://wefollow.com/drWilda
## 1090                                                                                    http://wgr550.com
## 1091                                                                                                 <NA>
## 1092                                                                http://tinyurl.com/akaadiele-linkedin
## 1093                                                                  http://ravynnscribbles.blogspot.ca/
## 1094                                                                                                 <NA>
## 1095                                                                                                 <NA>
## 1096                                                                                                 <NA>
## 1097                                                                                                 <NA>
## 1098                                                                                      http://wtvy.com
## 1099                                                                                                 <NA>
## 1100                                                                                                 <NA>
## 1101                                                                             http://www.health.ok.gov
## 1102                                                                                                 <NA>
## 1103                                                                        http://www.cananewsonline.com
## 1104                                                                                                 <NA>
## 1105                                                                                                 <NA>
## 1106                                                                                                 <NA>
## 1107                                                                               http://www.ananews.com
## 1108                                                                                                 <NA>
## 1109                                                                                                 <NA>
## 1110                                                                       http://www.michiganadvance.com
## 1111                                                                                                 <NA>
##      account_lang
## 1              NA
## 2              NA
## 3              NA
## 4              NA
## 5              NA
## 6              NA
## 7              NA
## 8              NA
## 9              NA
## 10             NA
## 11             NA
## 12             NA
## 13             NA
## 14             NA
## 15             NA
## 16             NA
## 17             NA
## 18             NA
## 19             NA
## 20             NA
## 21             NA
## 22             NA
## 23             NA
## 24             NA
## 25             NA
## 26             NA
## 27             NA
## 28             NA
## 29             NA
## 30             NA
## 31             NA
## 32             NA
## 33             NA
## 34             NA
## 35             NA
## 36             NA
## 37             NA
## 38             NA
## 39             NA
## 40             NA
## 41             NA
## 42             NA
## 43             NA
## 44             NA
## 45             NA
## 46             NA
## 47             NA
## 48             NA
## 49             NA
## 50             NA
## 51             NA
## 52             NA
## 53             NA
## 54             NA
## 55             NA
## 56             NA
## 57             NA
## 58             NA
## 59             NA
## 60             NA
## 61             NA
## 62             NA
## 63             NA
## 64             NA
## 65             NA
## 66             NA
## 67             NA
## 68             NA
## 69             NA
## 70             NA
## 71             NA
## 72             NA
## 73             NA
## 74             NA
## 75             NA
## 76             NA
## 77             NA
## 78             NA
## 79             NA
## 80             NA
## 81             NA
## 82             NA
## 83             NA
## 84             NA
## 85             NA
## 86             NA
## 87             NA
## 88             NA
## 89             NA
## 90             NA
## 91             NA
## 92             NA
## 93             NA
## 94             NA
## 95             NA
## 96             NA
## 97             NA
## 98             NA
## 99             NA
## 100            NA
## 101            NA
## 102            NA
## 103            NA
## 104            NA
## 105            NA
## 106            NA
## 107            NA
## 108            NA
## 109            NA
## 110            NA
## 111            NA
## 112            NA
## 113            NA
## 114            NA
## 115            NA
## 116            NA
## 117            NA
## 118            NA
## 119            NA
## 120            NA
## 121            NA
## 122            NA
## 123            NA
## 124            NA
## 125            NA
## 126            NA
## 127            NA
## 128            NA
## 129            NA
## 130            NA
## 131            NA
## 132            NA
## 133            NA
## 134            NA
## 135            NA
## 136            NA
## 137            NA
## 138            NA
## 139            NA
## 140            NA
## 141            NA
## 142            NA
## 143            NA
## 144            NA
## 145            NA
## 146            NA
## 147            NA
## 148            NA
## 149            NA
## 150            NA
## 151            NA
## 152            NA
## 153            NA
## 154            NA
## 155            NA
## 156            NA
## 157            NA
## 158            NA
## 159            NA
## 160            NA
## 161            NA
## 162            NA
## 163            NA
## 164            NA
## 165            NA
## 166            NA
## 167            NA
## 168            NA
## 169            NA
## 170            NA
## 171            NA
## 172            NA
## 173            NA
## 174            NA
## 175            NA
## 176            NA
## 177            NA
## 178            NA
## 179            NA
## 180            NA
## 181            NA
## 182            NA
## 183            NA
## 184            NA
## 185            NA
## 186            NA
## 187            NA
## 188            NA
## 189            NA
## 190            NA
## 191            NA
## 192            NA
## 193            NA
## 194            NA
## 195            NA
## 196            NA
## 197            NA
## 198            NA
## 199            NA
## 200            NA
## 201            NA
## 202            NA
## 203            NA
## 204            NA
## 205            NA
## 206            NA
## 207            NA
## 208            NA
## 209            NA
## 210            NA
## 211            NA
## 212            NA
## 213            NA
## 214            NA
## 215            NA
## 216            NA
## 217            NA
## 218            NA
## 219            NA
## 220            NA
## 221            NA
## 222            NA
## 223            NA
## 224            NA
## 225            NA
## 226            NA
## 227            NA
## 228            NA
## 229            NA
## 230            NA
## 231            NA
## 232            NA
## 233            NA
## 234            NA
## 235            NA
## 236            NA
## 237            NA
## 238            NA
## 239            NA
## 240            NA
## 241            NA
## 242            NA
## 243            NA
## 244            NA
## 245            NA
## 246            NA
## 247            NA
## 248            NA
## 249            NA
## 250            NA
## 251            NA
## 252            NA
## 253            NA
## 254            NA
## 255            NA
## 256            NA
## 257            NA
## 258            NA
## 259            NA
## 260            NA
## 261            NA
## 262            NA
## 263            NA
## 264            NA
## 265            NA
## 266            NA
## 267            NA
## 268            NA
## 269            NA
## 270            NA
## 271            NA
## 272            NA
## 273            NA
## 274            NA
## 275            NA
## 276            NA
## 277            NA
## 278            NA
## 279            NA
## 280            NA
## 281            NA
## 282            NA
## 283            NA
## 284            NA
## 285            NA
## 286            NA
## 287            NA
## 288            NA
## 289            NA
## 290            NA
## 291            NA
## 292            NA
## 293            NA
## 294            NA
## 295            NA
## 296            NA
## 297            NA
## 298            NA
## 299            NA
## 300            NA
## 301            NA
## 302            NA
## 303            NA
## 304            NA
## 305            NA
## 306            NA
## 307            NA
## 308            NA
## 309            NA
## 310            NA
## 311            NA
## 312            NA
## 313            NA
## 314            NA
## 315            NA
## 316            NA
## 317            NA
## 318            NA
## 319            NA
## 320            NA
## 321            NA
## 322            NA
## 323            NA
## 324            NA
## 325            NA
## 326            NA
## 327            NA
## 328            NA
## 329            NA
## 330            NA
## 331            NA
## 332            NA
## 333            NA
## 334            NA
## 335            NA
## 336            NA
## 337            NA
## 338            NA
## 339            NA
## 340            NA
## 341            NA
## 342            NA
## 343            NA
## 344            NA
## 345            NA
## 346            NA
## 347            NA
## 348            NA
## 349            NA
## 350            NA
## 351            NA
## 352            NA
## 353            NA
## 354            NA
## 355            NA
## 356            NA
## 357            NA
## 358            NA
## 359            NA
## 360            NA
## 361            NA
## 362            NA
## 363            NA
## 364            NA
## 365            NA
## 366            NA
## 367            NA
## 368            NA
## 369            NA
## 370            NA
## 371            NA
## 372            NA
## 373            NA
## 374            NA
## 375            NA
## 376            NA
## 377            NA
## 378            NA
## 379            NA
## 380            NA
## 381            NA
## 382            NA
## 383            NA
## 384            NA
## 385            NA
## 386            NA
## 387            NA
## 388            NA
## 389            NA
## 390            NA
## 391            NA
## 392            NA
## 393            NA
## 394            NA
## 395            NA
## 396            NA
## 397            NA
## 398            NA
## 399            NA
## 400            NA
## 401            NA
## 402            NA
## 403            NA
## 404            NA
## 405            NA
## 406            NA
## 407            NA
## 408            NA
## 409            NA
## 410            NA
## 411            NA
## 412            NA
## 413            NA
## 414            NA
## 415            NA
## 416            NA
## 417            NA
## 418            NA
## 419            NA
## 420            NA
## 421            NA
## 422            NA
## 423            NA
## 424            NA
## 425            NA
## 426            NA
## 427            NA
## 428            NA
## 429            NA
## 430            NA
## 431            NA
## 432            NA
## 433            NA
## 434            NA
## 435            NA
## 436            NA
## 437            NA
## 438            NA
## 439            NA
## 440            NA
## 441            NA
## 442            NA
## 443            NA
## 444            NA
## 445            NA
## 446            NA
## 447            NA
## 448            NA
## 449            NA
## 450            NA
## 451            NA
## 452            NA
## 453            NA
## 454            NA
## 455            NA
## 456            NA
## 457            NA
## 458            NA
## 459            NA
## 460            NA
## 461            NA
## 462            NA
## 463            NA
## 464            NA
## 465            NA
## 466            NA
## 467            NA
## 468            NA
## 469            NA
## 470            NA
## 471            NA
## 472            NA
## 473            NA
## 474            NA
## 475            NA
## 476            NA
## 477            NA
## 478            NA
## 479            NA
## 480            NA
## 481            NA
## 482            NA
## 483            NA
## 484            NA
## 485            NA
## 486            NA
## 487            NA
## 488            NA
## 489            NA
## 490            NA
## 491            NA
## 492            NA
## 493            NA
## 494            NA
## 495            NA
## 496            NA
## 497            NA
## 498            NA
## 499            NA
## 500            NA
## 501            NA
## 502            NA
## 503            NA
## 504            NA
## 505            NA
## 506            NA
## 507            NA
## 508            NA
## 509            NA
## 510            NA
## 511            NA
## 512            NA
## 513            NA
## 514            NA
## 515            NA
## 516            NA
## 517            NA
## 518            NA
## 519            NA
## 520            NA
## 521            NA
## 522            NA
## 523            NA
## 524            NA
## 525            NA
## 526            NA
## 527            NA
## 528            NA
## 529            NA
## 530            NA
## 531            NA
## 532            NA
## 533            NA
## 534            NA
## 535            NA
## 536            NA
## 537            NA
## 538            NA
## 539            NA
## 540            NA
## 541            NA
## 542            NA
## 543            NA
## 544            NA
## 545            NA
## 546            NA
## 547            NA
## 548            NA
## 549            NA
## 550            NA
## 551            NA
## 552            NA
## 553            NA
## 554            NA
## 555            NA
## 556            NA
## 557            NA
## 558            NA
## 559            NA
## 560            NA
## 561            NA
## 562            NA
## 563            NA
## 564            NA
## 565            NA
## 566            NA
## 567            NA
## 568            NA
## 569            NA
## 570            NA
## 571            NA
## 572            NA
## 573            NA
## 574            NA
## 575            NA
## 576            NA
## 577            NA
## 578            NA
## 579            NA
## 580            NA
## 581            NA
## 582            NA
## 583            NA
## 584            NA
## 585            NA
## 586            NA
## 587            NA
## 588            NA
## 589            NA
## 590            NA
## 591            NA
## 592            NA
## 593            NA
## 594            NA
## 595            NA
## 596            NA
## 597            NA
## 598            NA
## 599            NA
## 600            NA
## 601            NA
## 602            NA
## 603            NA
## 604            NA
## 605            NA
## 606            NA
## 607            NA
## 608            NA
## 609            NA
## 610            NA
## 611            NA
## 612            NA
## 613            NA
## 614            NA
## 615            NA
## 616            NA
## 617            NA
## 618            NA
## 619            NA
## 620            NA
## 621            NA
## 622            NA
## 623            NA
## 624            NA
## 625            NA
## 626            NA
## 627            NA
## 628            NA
## 629            NA
## 630            NA
## 631            NA
## 632            NA
## 633            NA
## 634            NA
## 635            NA
## 636            NA
## 637            NA
## 638            NA
## 639            NA
## 640            NA
## 641            NA
## 642            NA
## 643            NA
## 644            NA
## 645            NA
## 646            NA
## 647            NA
## 648            NA
## 649            NA
## 650            NA
## 651            NA
## 652            NA
## 653            NA
## 654            NA
## 655            NA
## 656            NA
## 657            NA
## 658            NA
## 659            NA
## 660            NA
## 661            NA
## 662            NA
## 663            NA
## 664            NA
## 665            NA
## 666            NA
## 667            NA
## 668            NA
## 669            NA
## 670            NA
## 671            NA
## 672            NA
## 673            NA
## 674            NA
## 675            NA
## 676            NA
## 677            NA
## 678            NA
## 679            NA
## 680            NA
## 681            NA
## 682            NA
## 683            NA
## 684            NA
## 685            NA
## 686            NA
## 687            NA
## 688            NA
## 689            NA
## 690            NA
## 691            NA
## 692            NA
## 693            NA
## 694            NA
## 695            NA
## 696            NA
## 697            NA
## 698            NA
## 699            NA
## 700            NA
## 701            NA
## 702            NA
## 703            NA
## 704            NA
## 705            NA
## 706            NA
## 707            NA
## 708            NA
## 709            NA
## 710            NA
## 711            NA
## 712            NA
## 713            NA
## 714            NA
## 715            NA
## 716            NA
## 717            NA
## 718            NA
## 719            NA
## 720            NA
## 721            NA
## 722            NA
## 723            NA
## 724            NA
## 725            NA
## 726            NA
## 727            NA
## 728            NA
## 729            NA
## 730            NA
## 731            NA
## 732            NA
## 733            NA
## 734            NA
## 735            NA
## 736            NA
## 737            NA
## 738            NA
## 739            NA
## 740            NA
## 741            NA
## 742            NA
## 743            NA
## 744            NA
## 745            NA
## 746            NA
## 747            NA
## 748            NA
## 749            NA
## 750            NA
## 751            NA
## 752            NA
## 753            NA
## 754            NA
## 755            NA
## 756            NA
## 757            NA
## 758            NA
## 759            NA
## 760            NA
## 761            NA
## 762            NA
## 763            NA
## 764            NA
## 765            NA
## 766            NA
## 767            NA
## 768            NA
## 769            NA
## 770            NA
## 771            NA
## 772            NA
## 773            NA
## 774            NA
## 775            NA
## 776            NA
## 777            NA
## 778            NA
## 779            NA
## 780            NA
## 781            NA
## 782            NA
## 783            NA
## 784            NA
## 785            NA
## 786            NA
## 787            NA
## 788            NA
## 789            NA
## 790            NA
## 791            NA
## 792            NA
## 793            NA
## 794            NA
## 795            NA
## 796            NA
## 797            NA
## 798            NA
## 799            NA
## 800            NA
## 801            NA
## 802            NA
## 803            NA
## 804            NA
## 805            NA
## 806            NA
## 807            NA
## 808            NA
## 809            NA
## 810            NA
## 811            NA
## 812            NA
## 813            NA
## 814            NA
## 815            NA
## 816            NA
## 817            NA
## 818            NA
## 819            NA
## 820            NA
## 821            NA
## 822            NA
## 823            NA
## 824            NA
## 825            NA
## 826            NA
## 827            NA
## 828            NA
## 829            NA
## 830            NA
## 831            NA
## 832            NA
## 833            NA
## 834            NA
## 835            NA
## 836            NA
## 837            NA
## 838            NA
## 839            NA
## 840            NA
## 841            NA
## 842            NA
## 843            NA
## 844            NA
## 845            NA
## 846            NA
## 847            NA
## 848            NA
## 849            NA
## 850            NA
## 851            NA
## 852            NA
## 853            NA
## 854            NA
## 855            NA
## 856            NA
## 857            NA
## 858            NA
## 859            NA
## 860            NA
## 861            NA
## 862            NA
## 863            NA
## 864            NA
## 865            NA
## 866            NA
## 867            NA
## 868            NA
## 869            NA
## 870            NA
## 871            NA
## 872            NA
## 873            NA
## 874            NA
## 875            NA
## 876            NA
## 877            NA
## 878            NA
## 879            NA
## 880            NA
## 881            NA
## 882            NA
## 883            NA
## 884            NA
## 885            NA
## 886            NA
## 887            NA
## 888            NA
## 889            NA
## 890            NA
## 891            NA
## 892            NA
## 893            NA
## 894            NA
## 895            NA
## 896            NA
## 897            NA
## 898            NA
## 899            NA
## 900            NA
## 901            NA
## 902            NA
## 903            NA
## 904            NA
## 905            NA
## 906            NA
## 907            NA
## 908            NA
## 909            NA
## 910            NA
## 911            NA
## 912            NA
## 913            NA
## 914            NA
## 915            NA
## 916            NA
## 917            NA
## 918            NA
## 919            NA
## 920            NA
## 921            NA
## 922            NA
## 923            NA
## 924            NA
## 925            NA
## 926            NA
## 927            NA
## 928            NA
## 929            NA
## 930            NA
## 931            NA
## 932            NA
## 933            NA
## 934            NA
## 935            NA
## 936            NA
## 937            NA
## 938            NA
## 939            NA
## 940            NA
## 941            NA
## 942            NA
## 943            NA
## 944            NA
## 945            NA
## 946            NA
## 947            NA
## 948            NA
## 949            NA
## 950            NA
## 951            NA
## 952            NA
## 953            NA
## 954            NA
## 955            NA
## 956            NA
## 957            NA
## 958            NA
## 959            NA
## 960            NA
## 961            NA
## 962            NA
## 963            NA
## 964            NA
## 965            NA
## 966            NA
## 967            NA
## 968            NA
## 969            NA
## 970            NA
## 971            NA
## 972            NA
## 973            NA
## 974            NA
## 975            NA
## 976            NA
## 977            NA
## 978            NA
## 979            NA
## 980            NA
## 981            NA
## 982            NA
## 983            NA
## 984            NA
## 985            NA
## 986            NA
## 987            NA
## 988            NA
## 989            NA
## 990            NA
## 991            NA
## 992            NA
## 993            NA
## 994            NA
## 995            NA
## 996            NA
## 997            NA
## 998            NA
## 999            NA
## 1000           NA
## 1001           NA
## 1002           NA
## 1003           NA
## 1004           NA
## 1005           NA
## 1006           NA
## 1007           NA
## 1008           NA
## 1009           NA
## 1010           NA
## 1011           NA
## 1012           NA
## 1013           NA
## 1014           NA
## 1015           NA
## 1016           NA
## 1017           NA
## 1018           NA
## 1019           NA
## 1020           NA
## 1021           NA
## 1022           NA
## 1023           NA
## 1024           NA
## 1025           NA
## 1026           NA
## 1027           NA
## 1028           NA
## 1029           NA
## 1030           NA
## 1031           NA
## 1032           NA
## 1033           NA
## 1034           NA
## 1035           NA
## 1036           NA
## 1037           NA
## 1038           NA
## 1039           NA
## 1040           NA
## 1041           NA
## 1042           NA
## 1043           NA
## 1044           NA
## 1045           NA
## 1046           NA
## 1047           NA
## 1048           NA
## 1049           NA
## 1050           NA
## 1051           NA
## 1052           NA
## 1053           NA
## 1054           NA
## 1055           NA
## 1056           NA
## 1057           NA
## 1058           NA
## 1059           NA
## 1060           NA
## 1061           NA
## 1062           NA
## 1063           NA
## 1064           NA
## 1065           NA
## 1066           NA
## 1067           NA
## 1068           NA
## 1069           NA
## 1070           NA
## 1071           NA
## 1072           NA
## 1073           NA
## 1074           NA
## 1075           NA
## 1076           NA
## 1077           NA
## 1078           NA
## 1079           NA
## 1080           NA
## 1081           NA
## 1082           NA
## 1083           NA
## 1084           NA
## 1085           NA
## 1086           NA
## 1087           NA
## 1088           NA
## 1089           NA
## 1090           NA
## 1091           NA
## 1092           NA
## 1093           NA
## 1094           NA
## 1095           NA
## 1096           NA
## 1097           NA
## 1098           NA
## 1099           NA
## 1100           NA
## 1101           NA
## 1102           NA
## 1103           NA
## 1104           NA
## 1105           NA
## 1106           NA
## 1107           NA
## 1108           NA
## 1109           NA
## 1110           NA
## 1111           NA
##                                                        profile_banner_url
## 1              https://pbs.twimg.com/profile_banners/435422713/1510327669
## 2                                                                    <NA>
## 3               https://pbs.twimg.com/profile_banners/50371199/1530479112
## 4                                                                    <NA>
## 5               https://pbs.twimg.com/profile_banners/15878218/1583757852
## 6               https://pbs.twimg.com/profile_banners/21093744/1582799457
## 7               https://pbs.twimg.com/profile_banners/19819089/1577801393
## 8               https://pbs.twimg.com/profile_banners/61206610/1426271968
## 9               https://pbs.twimg.com/profile_banners/14884156/1561556918
## 10   https://pbs.twimg.com/profile_banners/1195051598914998273/1575050859
## 11             https://pbs.twimg.com/profile_banners/459359865/1574957249
## 12              https://pbs.twimg.com/profile_banners/72123099/1572475506
## 13             https://pbs.twimg.com/profile_banners/162260868/1583945536
## 14             https://pbs.twimg.com/profile_banners/937629272/1415827883
## 15              https://pbs.twimg.com/profile_banners/37512303/1533771790
## 16                                                                   <NA>
## 17            https://pbs.twimg.com/profile_banners/2785592623/1579871103
## 18            https://pbs.twimg.com/profile_banners/2443550978/1584813372
## 19                                                                   <NA>
## 20             https://pbs.twimg.com/profile_banners/773750426/1572802440
## 21            https://pbs.twimg.com/profile_banners/2522474733/1403237929
## 22              https://pbs.twimg.com/profile_banners/41172853/1405382073
## 23               https://pbs.twimg.com/profile_banners/2048741/1419093574
## 24             https://pbs.twimg.com/profile_banners/329907869/1582080874
## 25   https://pbs.twimg.com/profile_banners/1223011949513990148/1584291655
## 26             https://pbs.twimg.com/profile_banners/213142146/1578644179
## 27            https://pbs.twimg.com/profile_banners/2726875124/1580235524
## 28                                                                   <NA>
## 29                                                                   <NA>
## 30   https://pbs.twimg.com/profile_banners/1052258216695001094/1539716996
## 31             https://pbs.twimg.com/profile_banners/375268433/1579420916
## 32             https://pbs.twimg.com/profile_banners/245649240/1537841302
## 33             https://pbs.twimg.com/profile_banners/580211436/1512085459
## 34              https://pbs.twimg.com/profile_banners/41611947/1549299610
## 35             https://pbs.twimg.com/profile_banners/432699294/1437582196
## 36              https://pbs.twimg.com/profile_banners/22233169/1434693696
## 37             https://pbs.twimg.com/profile_banners/428844272/1379473823
## 38             https://pbs.twimg.com/profile_banners/837703676/1585323123
## 39   https://pbs.twimg.com/profile_banners/1190858816356634625/1572759521
## 40             https://pbs.twimg.com/profile_banners/180512314/1538755240
## 41                                                                   <NA>
## 42             https://pbs.twimg.com/profile_banners/612320569/1488175666
## 43             https://pbs.twimg.com/profile_banners/268416076/1569642661
## 44   https://pbs.twimg.com/profile_banners/1162222854772944899/1574825601
## 45             https://pbs.twimg.com/profile_banners/154842200/1581711051
## 46                                                                   <NA>
## 47             https://pbs.twimg.com/profile_banners/154909077/1580764499
## 48            https://pbs.twimg.com/profile_banners/3068106785/1584649306
## 49             https://pbs.twimg.com/profile_banners/321367569/1495997971
## 50              https://pbs.twimg.com/profile_banners/15183127/1498883369
## 51             https://pbs.twimg.com/profile_banners/917901427/1420228574
## 52            https://pbs.twimg.com/profile_banners/2193224916/1468095512
## 53                                                                   <NA>
## 54             https://pbs.twimg.com/profile_banners/102384575/1562145543
## 55                                                                   <NA>
## 56   https://pbs.twimg.com/profile_banners/1212966062666305536/1584179467
## 57            https://pbs.twimg.com/profile_banners/3266967512/1449491151
## 58                                                                   <NA>
## 59    https://pbs.twimg.com/profile_banners/895814938995957760/1512095123
## 60   https://pbs.twimg.com/profile_banners/1230646848215486465/1582489954
## 61             https://pbs.twimg.com/profile_banners/118172761/1486824671
## 62    https://pbs.twimg.com/profile_banners/766017503072059392/1571347833
## 63              https://pbs.twimg.com/profile_banners/17089636/1576507816
## 64              https://pbs.twimg.com/profile_banners/17161553/1405408141
## 65             https://pbs.twimg.com/profile_banners/136717606/1536301968
## 66              https://pbs.twimg.com/profile_banners/16481866/1392695050
## 67            https://pbs.twimg.com/profile_banners/2731914666/1431012016
## 68              https://pbs.twimg.com/profile_banners/28021382/1401489555
## 69              https://pbs.twimg.com/profile_banners/22703339/1552414353
## 70   https://pbs.twimg.com/profile_banners/1105762607938633729/1560498144
## 71              https://pbs.twimg.com/profile_banners/14133036/1541167856
## 72                                                                   <NA>
## 73    https://pbs.twimg.com/profile_banners/743286898173435904/1584635506
## 74   https://pbs.twimg.com/profile_banners/1228117525763895296/1581641286
## 75              https://pbs.twimg.com/profile_banners/32279577/1585264771
## 76              https://pbs.twimg.com/profile_banners/17446176/1584831646
## 77    https://pbs.twimg.com/profile_banners/959127129341472768/1526139583
## 78    https://pbs.twimg.com/profile_banners/969188033349259264/1531251764
## 79                                                                   <NA>
## 80              https://pbs.twimg.com/profile_banners/18339274/1578332297
## 81                                                                   <NA>
## 82    https://pbs.twimg.com/profile_banners/718102690321010688/1574364117
## 83             https://pbs.twimg.com/profile_banners/461554757/1481897120
## 84             https://pbs.twimg.com/profile_banners/346640207/1419254731
## 85              https://pbs.twimg.com/profile_banners/14632629/1540558372
## 86    https://pbs.twimg.com/profile_banners/918780298820808704/1542718066
## 87             https://pbs.twimg.com/profile_banners/317710469/1525851055
## 88             https://pbs.twimg.com/profile_banners/333402741/1463609608
## 89              https://pbs.twimg.com/profile_banners/25360410/1543827818
## 90                                                                   <NA>
## 91             https://pbs.twimg.com/profile_banners/159514232/1584517563
## 92                                                                   <NA>
## 93              https://pbs.twimg.com/profile_banners/17895820/1582302707
## 94              https://pbs.twimg.com/profile_banners/26047067/1411395226
## 95    https://pbs.twimg.com/profile_banners/970115109681967104/1535694938
## 96             https://pbs.twimg.com/profile_banners/542557834/1523516878
## 97    https://pbs.twimg.com/profile_banners/907559431184846848/1570765809
## 98            https://pbs.twimg.com/profile_banners/2304116028/1576169580
## 99                                                                   <NA>
## 100            https://pbs.twimg.com/profile_banners/558758387/1577198805
## 101  https://pbs.twimg.com/profile_banners/1153618720889212929/1583670751
## 102            https://pbs.twimg.com/profile_banners/104048294/1487802602
## 103                                                                  <NA>
## 104                                                                  <NA>
## 105  https://pbs.twimg.com/profile_banners/1216132023661756416/1580240962
## 106             https://pbs.twimg.com/profile_banners/34320023/1557362046
## 107                                                                  <NA>
## 108            https://pbs.twimg.com/profile_banners/306507855/1410230141
## 109            https://pbs.twimg.com/profile_banners/225671444/1578193151
## 110   https://pbs.twimg.com/profile_banners/900995846673649665/1503667886
## 111                                                                  <NA>
## 112           https://pbs.twimg.com/profile_banners/2987491773/1478088937
## 113              https://pbs.twimg.com/profile_banners/5917472/1583121647
## 114   https://pbs.twimg.com/profile_banners/770068612308692994/1523555613
## 115             https://pbs.twimg.com/profile_banners/47086949/1500165052
## 116                                                                  <NA>
## 117             https://pbs.twimg.com/profile_banners/30264308/1550082744
## 118   https://pbs.twimg.com/profile_banners/849289425418891266/1581556607
## 119                                                                  <NA>
## 120                                                                  <NA>
## 121  https://pbs.twimg.com/profile_banners/1126844144788357120/1557696346
## 122                                                                  <NA>
## 123                                                                  <NA>
## 124             https://pbs.twimg.com/profile_banners/14705603/1584991685
## 125  https://pbs.twimg.com/profile_banners/1227179005352271872/1581422530
## 126            https://pbs.twimg.com/profile_banners/356605038/1381543878
## 127  https://pbs.twimg.com/profile_banners/1146642659521355776/1585041105
## 128            https://pbs.twimg.com/profile_banners/340491651/1543885714
## 129           https://pbs.twimg.com/profile_banners/3068709523/1578088993
## 130             https://pbs.twimg.com/profile_banners/24576083/1573557425
## 131             https://pbs.twimg.com/profile_banners/74444935/1575656850
## 132  https://pbs.twimg.com/profile_banners/1037016197777125381/1585387191
## 133            https://pbs.twimg.com/profile_banners/150754332/1494961345
## 134   https://pbs.twimg.com/profile_banners/884435361421721605/1548184978
## 135            https://pbs.twimg.com/profile_banners/528065896/1572137283
## 136           https://pbs.twimg.com/profile_banners/2283049465/1438404002
## 137  https://pbs.twimg.com/profile_banners/1039012592801337346/1574707582
## 138           https://pbs.twimg.com/profile_banners/4886454527/1564460478
## 139            https://pbs.twimg.com/profile_banners/175472066/1469638333
## 140             https://pbs.twimg.com/profile_banners/53095822/1585075259
## 141           https://pbs.twimg.com/profile_banners/1593789164/1576553688
## 142             https://pbs.twimg.com/profile_banners/52428360/1494441046
## 143           https://pbs.twimg.com/profile_banners/2868080531/1415487367
## 144   https://pbs.twimg.com/profile_banners/919002031775510528/1525961956
## 145             https://pbs.twimg.com/profile_banners/85040636/1457897293
## 146            https://pbs.twimg.com/profile_banners/254248720/1409387996
## 147   https://pbs.twimg.com/profile_banners/887330821580914688/1563930454
## 148                                                                  <NA>
## 149            https://pbs.twimg.com/profile_banners/268859974/1555406633
## 150                                                                  <NA>
## 151            https://pbs.twimg.com/profile_banners/384028278/1558562400
## 152             https://pbs.twimg.com/profile_banners/14317810/1583714102
## 153                                                                  <NA>
## 154             https://pbs.twimg.com/profile_banners/62809462/1578616303
## 155             https://pbs.twimg.com/profile_banners/40961354/1584641519
## 156             https://pbs.twimg.com/profile_banners/46983316/1492119856
## 157            https://pbs.twimg.com/profile_banners/200146902/1441660108
## 158             https://pbs.twimg.com/profile_banners/20187873/1503179284
## 159             https://pbs.twimg.com/profile_banners/15729315/1521470744
## 160             https://pbs.twimg.com/profile_banners/52282776/1583575415
## 161            https://pbs.twimg.com/profile_banners/564133801/1577176621
## 162             https://pbs.twimg.com/profile_banners/38733200/1524086848
## 163   https://pbs.twimg.com/profile_banners/876146616255860737/1582743361
## 164             https://pbs.twimg.com/profile_banners/11913522/1575049918
## 165             https://pbs.twimg.com/profile_banners/45413198/1375983517
## 166             https://pbs.twimg.com/profile_banners/29828364/1583084336
## 167  https://pbs.twimg.com/profile_banners/1222153993863880704/1580221466
## 168           https://pbs.twimg.com/profile_banners/1332482671/1513196988
## 169           https://pbs.twimg.com/profile_banners/2961880449/1585042324
## 170  https://pbs.twimg.com/profile_banners/1199709005662367746/1574868942
## 171            https://pbs.twimg.com/profile_banners/268473477/1399633386
## 172           https://pbs.twimg.com/profile_banners/4637470482/1571387956
## 173            https://pbs.twimg.com/profile_banners/139481065/1480337784
## 174  https://pbs.twimg.com/profile_banners/1191855720855044096/1576133411
## 175             https://pbs.twimg.com/profile_banners/20470916/1584382332
## 176           https://pbs.twimg.com/profile_banners/2331266952/1579124795
## 177             https://pbs.twimg.com/profile_banners/40081852/1546562266
## 178                                                                  <NA>
## 179             https://pbs.twimg.com/profile_banners/24776576/1582235346
## 180             https://pbs.twimg.com/profile_banners/31268233/1558446686
## 181  https://pbs.twimg.com/profile_banners/1066013022437617664/1547149570
## 182                                                                  <NA>
## 183                                                                  <NA>
## 184             https://pbs.twimg.com/profile_banners/88904418/1581547999
## 185  https://pbs.twimg.com/profile_banners/1154704679328260096/1564336247
## 186            https://pbs.twimg.com/profile_banners/879023041/1527759802
## 187           https://pbs.twimg.com/profile_banners/4916875623/1512050793
## 188             https://pbs.twimg.com/profile_banners/19252684/1576044279
## 189           https://pbs.twimg.com/profile_banners/2620903078/1585373505
## 190            https://pbs.twimg.com/profile_banners/124416668/1483375827
## 191   https://pbs.twimg.com/profile_banners/837930591702102016/1498480427
## 192             https://pbs.twimg.com/profile_banners/15849872/1376056484
## 193             https://pbs.twimg.com/profile_banners/58366671/1582937364
## 194  https://pbs.twimg.com/profile_banners/1010292108878544896/1585355086
## 195           https://pbs.twimg.com/profile_banners/3102057259/1584274709
## 196   https://pbs.twimg.com/profile_banners/873190778910253056/1564882334
## 197  https://pbs.twimg.com/profile_banners/1170465404625522690/1583198396
## 198                                                                  <NA>
## 199  https://pbs.twimg.com/profile_banners/1230329059072073729/1583558357
## 200                                                                  <NA>
## 201           https://pbs.twimg.com/profile_banners/3305847006/1544696057
## 202                                                                  <NA>
## 203           https://pbs.twimg.com/profile_banners/4917960324/1579876942
## 204  https://pbs.twimg.com/profile_banners/1158854621848322048/1565128769
## 205   https://pbs.twimg.com/profile_banners/710609605395673088/1565108722
## 206              https://pbs.twimg.com/profile_banners/9970972/1576865469
## 207             https://pbs.twimg.com/profile_banners/21119632/1577985947
## 208                                                                  <NA>
## 209            https://pbs.twimg.com/profile_banners/308963594/1571310182
## 210                                                                  <NA>
## 211  https://pbs.twimg.com/profile_banners/1042167518377332741/1578722927
## 212             https://pbs.twimg.com/profile_banners/18999809/1578412706
## 213                                                                  <NA>
## 214             https://pbs.twimg.com/profile_banners/18936284/1562983288
## 215             https://pbs.twimg.com/profile_banners/22481834/1572784713
## 216             https://pbs.twimg.com/profile_banners/19174660/1505417294
## 217                                                                  <NA>
## 218            https://pbs.twimg.com/profile_banners/431486478/1584668385
## 219             https://pbs.twimg.com/profile_banners/24972442/1472114621
## 220           https://pbs.twimg.com/profile_banners/1131197072/1506265593
## 221             https://pbs.twimg.com/profile_banners/12837932/1532198897
## 222            https://pbs.twimg.com/profile_banners/321070496/1420417967
## 223            https://pbs.twimg.com/profile_banners/163635873/1396112540
## 224           https://pbs.twimg.com/profile_banners/3318450085/1547748611
## 225                                                                  <NA>
## 226             https://pbs.twimg.com/profile_banners/19724392/1415989993
## 227  https://pbs.twimg.com/profile_banners/1186213480161898498/1573550795
## 228             https://pbs.twimg.com/profile_banners/51273193/1358496791
## 229  https://pbs.twimg.com/profile_banners/1210084108543516672/1579421935
## 230  https://pbs.twimg.com/profile_banners/1241570905731391489/1585360454
## 231            https://pbs.twimg.com/profile_banners/151967576/1501618884
## 232            https://pbs.twimg.com/profile_banners/243032876/1549057638
## 233   https://pbs.twimg.com/profile_banners/891419221716066304/1583779480
## 234            https://pbs.twimg.com/profile_banners/341688379/1563218840
## 235  https://pbs.twimg.com/profile_banners/1070863316686270464/1544610744
## 236             https://pbs.twimg.com/profile_banners/57059492/1577288479
## 237           https://pbs.twimg.com/profile_banners/1541369246/1574098363
## 238           https://pbs.twimg.com/profile_banners/1089597794/1541086537
## 239            https://pbs.twimg.com/profile_banners/279799224/1383037745
## 240             https://pbs.twimg.com/profile_banners/22346160/1449693740
## 241            https://pbs.twimg.com/profile_banners/167017165/1544552204
## 242   https://pbs.twimg.com/profile_banners/713147129594707968/1531365781
## 243           https://pbs.twimg.com/profile_banners/4520371468/1582398942
## 244             https://pbs.twimg.com/profile_banners/37597603/1554637866
## 245  https://pbs.twimg.com/profile_banners/1142935828332797953/1582971043
## 246  https://pbs.twimg.com/profile_banners/1103571889686040577/1584632483
## 247            https://pbs.twimg.com/profile_banners/574595794/1491734958
## 248             https://pbs.twimg.com/profile_banners/14494281/1548293908
## 249            https://pbs.twimg.com/profile_banners/331371205/1556760159
## 250                                                                  <NA>
## 251             https://pbs.twimg.com/profile_banners/18726395/1582137297
## 252            https://pbs.twimg.com/profile_banners/232995380/1575154175
## 253             https://pbs.twimg.com/profile_banners/83483205/1496611666
## 254  https://pbs.twimg.com/profile_banners/1147192973039480832/1562348086
## 255             https://pbs.twimg.com/profile_banners/15033673/1556470548
## 256           https://pbs.twimg.com/profile_banners/2858116756/1574034159
## 257   https://pbs.twimg.com/profile_banners/788751900036431873/1476889418
## 258                                                                  <NA>
## 259            https://pbs.twimg.com/profile_banners/133785245/1585361932
## 260             https://pbs.twimg.com/profile_banners/98546373/1483149944
## 261            https://pbs.twimg.com/profile_banners/170921358/1532493789
## 262                                                                  <NA>
## 263  https://pbs.twimg.com/profile_banners/1132607455752544256/1559079737
## 264           https://pbs.twimg.com/profile_banners/1084599271/1584811816
## 265             https://pbs.twimg.com/profile_banners/60841112/1569342268
## 266   https://pbs.twimg.com/profile_banners/824780295203336192/1511570121
## 267             https://pbs.twimg.com/profile_banners/15149988/1403675495
## 268           https://pbs.twimg.com/profile_banners/2153200177/1382977206
## 269            https://pbs.twimg.com/profile_banners/348911248/1571544238
## 270           https://pbs.twimg.com/profile_banners/2290143631/1585355243
## 271                                                                  <NA>
## 272           https://pbs.twimg.com/profile_banners/2605043372/1561698820
## 273                                                                  <NA>
## 274           https://pbs.twimg.com/profile_banners/1869834144/1406843427
## 275  https://pbs.twimg.com/profile_banners/1037387581787394048/1552144982
## 276   https://pbs.twimg.com/profile_banners/979664132935839744/1584225620
## 277                                                                  <NA>
## 278             https://pbs.twimg.com/profile_banners/31131277/1582847130
## 279                                                                  <NA>
## 280           https://pbs.twimg.com/profile_banners/2700221964/1544091492
## 281            https://pbs.twimg.com/profile_banners/197526241/1573135510
## 282  https://pbs.twimg.com/profile_banners/1151934548747403264/1563805952
## 283   https://pbs.twimg.com/profile_banners/944423886854144000/1514025363
## 284                                                                  <NA>
## 285                                                                  <NA>
## 286             https://pbs.twimg.com/profile_banners/30506859/1495735772
## 287            https://pbs.twimg.com/profile_banners/172056723/1443393007
## 288   https://pbs.twimg.com/profile_banners/936352804695707648/1512079135
## 289             https://pbs.twimg.com/profile_banners/15678167/1365614448
## 290   https://pbs.twimg.com/profile_banners/771293699301109760/1583743882
## 291   https://pbs.twimg.com/profile_banners/876540130538008576/1574110836
## 292  https://pbs.twimg.com/profile_banners/1048455864066215936/1584514483
## 293  https://pbs.twimg.com/profile_banners/1122851613989834753/1563631975
## 294                                                                  <NA>
## 295            https://pbs.twimg.com/profile_banners/590064664/1421012775
## 296             https://pbs.twimg.com/profile_banners/18943058/1547731710
## 297             https://pbs.twimg.com/profile_banners/19752354/1399256940
## 298             https://pbs.twimg.com/profile_banners/48441949/1580399591
## 299                                                                  <NA>
## 300   https://pbs.twimg.com/profile_banners/946974201981931522/1584754924
## 301           https://pbs.twimg.com/profile_banners/1921727274/1380590654
## 302  https://pbs.twimg.com/profile_banners/1226899095417217025/1581351424
## 303  https://pbs.twimg.com/profile_banners/1177288337360609280/1569547653
## 304             https://pbs.twimg.com/profile_banners/17625521/1476039452
## 305           https://pbs.twimg.com/profile_banners/1284092696/1558805010
## 306                                                                  <NA>
## 307             https://pbs.twimg.com/profile_banners/30882481/1524068320
## 308            https://pbs.twimg.com/profile_banners/482269226/1583157569
## 309   https://pbs.twimg.com/profile_banners/897944126536200192/1575037967
## 310           https://pbs.twimg.com/profile_banners/2565943630/1580647375
## 311             https://pbs.twimg.com/profile_banners/18815472/1355470948
## 312   https://pbs.twimg.com/profile_banners/962153417400602624/1577966418
## 313            https://pbs.twimg.com/profile_banners/312102273/1457409142
## 314            https://pbs.twimg.com/profile_banners/619705965/1465414556
## 315             https://pbs.twimg.com/profile_banners/22793955/1583902634
## 316  https://pbs.twimg.com/profile_banners/1121761443970342912/1556921229
## 317           https://pbs.twimg.com/profile_banners/1280644147/1570969726
## 318                                                                  <NA>
## 319           https://pbs.twimg.com/profile_banners/3378440735/1578355845
## 320   https://pbs.twimg.com/profile_banners/903617884206776320/1583483314
## 321           https://pbs.twimg.com/profile_banners/2698417466/1576808481
## 322            https://pbs.twimg.com/profile_banners/202133896/1485839082
## 323                                                                  <NA>
## 324   https://pbs.twimg.com/profile_banners/915163384894672897/1508904894
## 325                                                                  <NA>
## 326            https://pbs.twimg.com/profile_banners/352731312/1564609256
## 327             https://pbs.twimg.com/profile_banners/59811707/1400709350
## 328   https://pbs.twimg.com/profile_banners/914760457365442560/1581610360
## 329           https://pbs.twimg.com/profile_banners/2848281329/1585237636
## 330  https://pbs.twimg.com/profile_banners/1235930179630821378/1583503991
## 331                                                                  <NA>
## 332                                                                  <NA>
## 333   https://pbs.twimg.com/profile_banners/738894827413086208/1585085007
## 334            https://pbs.twimg.com/profile_banners/400181671/1541896178
## 335             https://pbs.twimg.com/profile_banners/26086971/1485031251
## 336   https://pbs.twimg.com/profile_banners/820469374620307457/1502522732
## 337   https://pbs.twimg.com/profile_banners/702367729588768768/1466726759
## 338                                                                  <NA>
## 339             https://pbs.twimg.com/profile_banners/68545047/1583360230
## 340                                                                  <NA>
## 341            https://pbs.twimg.com/profile_banners/338489286/1528004533
## 342            https://pbs.twimg.com/profile_banners/196707379/1577366991
## 343            https://pbs.twimg.com/profile_banners/637220899/1574184059
## 344                                                                  <NA>
## 345  https://pbs.twimg.com/profile_banners/1202427390212730882/1581997103
## 346   https://pbs.twimg.com/profile_banners/845150211248861185/1580424088
## 347             https://pbs.twimg.com/profile_banners/30233748/1537804032
## 348                                                                  <NA>
## 349                                                                  <NA>
## 350             https://pbs.twimg.com/profile_banners/33540786/1581522309
## 351  https://pbs.twimg.com/profile_banners/1192670568962830336/1578150387
## 352            https://pbs.twimg.com/profile_banners/270827963/1546839566
## 353             https://pbs.twimg.com/profile_banners/42756539/1472160107
## 354             https://pbs.twimg.com/profile_banners/45578720/1574187564
## 355             https://pbs.twimg.com/profile_banners/70529694/1575970797
## 356             https://pbs.twimg.com/profile_banners/51452048/1539872359
## 357             https://pbs.twimg.com/profile_banners/64989443/1585376706
## 358             https://pbs.twimg.com/profile_banners/15094527/1583873801
## 359                                                                  <NA>
## 360           https://pbs.twimg.com/profile_banners/2555293819/1488986153
## 361            https://pbs.twimg.com/profile_banners/332545073/1538506614
## 362                                                                  <NA>
## 363            https://pbs.twimg.com/profile_banners/481665779/1500135166
## 364  https://pbs.twimg.com/profile_banners/1156802882332704768/1578513009
## 365            https://pbs.twimg.com/profile_banners/103074428/1580998086
## 366            https://pbs.twimg.com/profile_banners/405775404/1565463656
## 367  https://pbs.twimg.com/profile_banners/1147244238612180993/1562511842
## 368                                                                  <NA>
## 369             https://pbs.twimg.com/profile_banners/25925601/1575670986
## 370  https://pbs.twimg.com/profile_banners/1176819019682373632/1572176954
## 371                                                                  <NA>
## 372                                                                  <NA>
## 373             https://pbs.twimg.com/profile_banners/54683181/1562445763
## 374            https://pbs.twimg.com/profile_banners/130065700/1581037217
## 375           https://pbs.twimg.com/profile_banners/1704625693/1501344963
## 376            https://pbs.twimg.com/profile_banners/713935231/1428779441
## 377  https://pbs.twimg.com/profile_banners/1152253907512332288/1566589130
## 378                                                                  <NA>
## 379             https://pbs.twimg.com/profile_banners/48839997/1524601027
## 380            https://pbs.twimg.com/profile_banners/237152177/1554395122
## 381             https://pbs.twimg.com/profile_banners/16288328/1573634317
## 382           https://pbs.twimg.com/profile_banners/1268221555/1584385767
## 383   https://pbs.twimg.com/profile_banners/853636526667964416/1555270349
## 384                                                                  <NA>
## 385           https://pbs.twimg.com/profile_banners/1005675566/1585005066
## 386             https://pbs.twimg.com/profile_banners/72130786/1584398350
## 387            https://pbs.twimg.com/profile_banners/416057727/1377943848
## 388                                                                  <NA>
## 389                                                                  <NA>
## 390  https://pbs.twimg.com/profile_banners/1136063449379811328/1560781773
## 391             https://pbs.twimg.com/profile_banners/74369402/1512344692
## 392   https://pbs.twimg.com/profile_banners/969816332848963584/1564724350
## 393            https://pbs.twimg.com/profile_banners/757712983/1577415534
## 394  https://pbs.twimg.com/profile_banners/1161651929644183552/1582118210
## 395                                                                  <NA>
## 396            https://pbs.twimg.com/profile_banners/387498274/1566064328
## 397            https://pbs.twimg.com/profile_banners/250289285/1583077724
## 398             https://pbs.twimg.com/profile_banners/31417682/1532706543
## 399              https://pbs.twimg.com/profile_banners/7009472/1398219706
## 400             https://pbs.twimg.com/profile_banners/16683014/1547123929
## 401              https://pbs.twimg.com/profile_banners/9627102/1581436477
## 402  https://pbs.twimg.com/profile_banners/1197981808811552768/1574456504
## 403            https://pbs.twimg.com/profile_banners/634380263/1567229005
## 404            https://pbs.twimg.com/profile_banners/475693475/1576606201
## 405           https://pbs.twimg.com/profile_banners/3957997120/1581553496
## 406             https://pbs.twimg.com/profile_banners/96857244/1556739677
## 407             https://pbs.twimg.com/profile_banners/40316307/1515684186
## 408            https://pbs.twimg.com/profile_banners/254051666/1511541459
## 409            https://pbs.twimg.com/profile_banners/290145392/1557200673
## 410            https://pbs.twimg.com/profile_banners/117610607/1575733431
## 411   https://pbs.twimg.com/profile_banners/727465726810968064/1462281225
## 412            https://pbs.twimg.com/profile_banners/207920978/1585037601
## 413                                                                  <NA>
## 414  https://pbs.twimg.com/profile_banners/1072907567440060418/1578940279
## 415                                                                  <NA>
## 416            https://pbs.twimg.com/profile_banners/398752432/1583338309
## 417            https://pbs.twimg.com/profile_banners/889926660/1396614787
## 418           https://pbs.twimg.com/profile_banners/2232476503/1548362604
## 419             https://pbs.twimg.com/profile_banners/70961675/1506369284
## 420            https://pbs.twimg.com/profile_banners/469569460/1392404466
## 421           https://pbs.twimg.com/profile_banners/1486521546/1516676112
## 422            https://pbs.twimg.com/profile_banners/318355178/1478337852
## 423             https://pbs.twimg.com/profile_banners/87822212/1584417819
## 424  https://pbs.twimg.com/profile_banners/1111014031123341313/1555013511
## 425            https://pbs.twimg.com/profile_banners/252751061/1575349172
## 426  https://pbs.twimg.com/profile_banners/1104563671076868103/1575470207
## 427                                                                  <NA>
## 428                                                                  <NA>
## 429             https://pbs.twimg.com/profile_banners/14604658/1585245569
## 430             https://pbs.twimg.com/profile_banners/82114365/1477106787
## 431            https://pbs.twimg.com/profile_banners/502018096/1546559180
## 432             https://pbs.twimg.com/profile_banners/97191869/1461954423
## 433   https://pbs.twimg.com/profile_banners/876770484691419137/1517903651
## 434            https://pbs.twimg.com/profile_banners/117327100/1398212765
## 435             https://pbs.twimg.com/profile_banners/18149465/1571874062
## 436  https://pbs.twimg.com/profile_banners/1106834028794130433/1552725231
## 437  https://pbs.twimg.com/profile_banners/1211648405207781378/1584934825
## 438             https://pbs.twimg.com/profile_banners/61546809/1578406404
## 439  https://pbs.twimg.com/profile_banners/1214232500664295424/1584111241
## 440             https://pbs.twimg.com/profile_banners/40298894/1546562736
## 441            https://pbs.twimg.com/profile_banners/909334512/1493710931
## 442            https://pbs.twimg.com/profile_banners/538369738/1551388753
## 443           https://pbs.twimg.com/profile_banners/1354354465/1585057420
## 444            https://pbs.twimg.com/profile_banners/247574410/1580083690
## 445             https://pbs.twimg.com/profile_banners/90163861/1570778577
## 446            https://pbs.twimg.com/profile_banners/148199050/1572365609
## 447             https://pbs.twimg.com/profile_banners/15828062/1585354275
## 448   https://pbs.twimg.com/profile_banners/980847169153335296/1563347907
## 449             https://pbs.twimg.com/profile_banners/17810687/1560962547
## 450             https://pbs.twimg.com/profile_banners/90711842/1531343830
## 451             https://pbs.twimg.com/profile_banners/54608984/1569899777
## 452           https://pbs.twimg.com/profile_banners/1576931762/1561917005
## 453            https://pbs.twimg.com/profile_banners/176355348/1582093267
## 454            https://pbs.twimg.com/profile_banners/394169629/1526013577
## 455                                                                  <NA>
## 456                                                                  <NA>
## 457                                                                  <NA>
## 458   https://pbs.twimg.com/profile_banners/909794221267341312/1574196024
## 459            https://pbs.twimg.com/profile_banners/326997574/1445590830
## 460  https://pbs.twimg.com/profile_banners/1234312660247830528/1584723564
## 461             https://pbs.twimg.com/profile_banners/21924543/1421831671
## 462                                                                  <NA>
## 463  https://pbs.twimg.com/profile_banners/1144597668326531072/1561733375
## 464             https://pbs.twimg.com/profile_banners/46483916/1552865672
## 465                                                                  <NA>
## 466             https://pbs.twimg.com/profile_banners/65968759/1444934006
## 467             https://pbs.twimg.com/profile_banners/50279781/1585275180
## 468   https://pbs.twimg.com/profile_banners/817415480856248322/1535810132
## 469  https://pbs.twimg.com/profile_banners/1240718895067127809/1584659809
## 470            https://pbs.twimg.com/profile_banners/128447885/1568343810
## 471                                                                  <NA>
## 472   https://pbs.twimg.com/profile_banners/867937150217715713/1571805944
## 473           https://pbs.twimg.com/profile_banners/2330484144/1517650339
## 474             https://pbs.twimg.com/profile_banners/23314228/1558343876
## 475            https://pbs.twimg.com/profile_banners/268637592/1573522591
## 476             https://pbs.twimg.com/profile_banners/14912552/1571884895
## 477            https://pbs.twimg.com/profile_banners/894807590/1455821975
## 478  https://pbs.twimg.com/profile_banners/1194935266097672193/1578859931
## 479                                                                  <NA>
## 480  https://pbs.twimg.com/profile_banners/1212637220743462912/1585121805
## 481            https://pbs.twimg.com/profile_banners/215201388/1357516136
## 482  https://pbs.twimg.com/profile_banners/1215544938164817920/1578644274
## 483                                                                  <NA>
## 484            https://pbs.twimg.com/profile_banners/202780974/1582123581
## 485           https://pbs.twimg.com/profile_banners/1617287714/1491760695
## 486   https://pbs.twimg.com/profile_banners/908576901697900544/1505457546
## 487            https://pbs.twimg.com/profile_banners/292719488/1585097966
## 488             https://pbs.twimg.com/profile_banners/93187905/1498306880
## 489             https://pbs.twimg.com/profile_banners/14459159/1571715709
## 490   https://pbs.twimg.com/profile_banners/871574222966898688/1496820473
## 491           https://pbs.twimg.com/profile_banners/1629880675/1567977784
## 492                                                                  <NA>
## 493           https://pbs.twimg.com/profile_banners/2951263410/1497855187
## 494            https://pbs.twimg.com/profile_banners/269581619/1575868097
## 495           https://pbs.twimg.com/profile_banners/3201152602/1564395588
## 496             https://pbs.twimg.com/profile_banners/27123426/1450190182
## 497             https://pbs.twimg.com/profile_banners/14568315/1534133936
## 498           https://pbs.twimg.com/profile_banners/3295465776/1552943872
## 499             https://pbs.twimg.com/profile_banners/22221730/1557704447
## 500             https://pbs.twimg.com/profile_banners/17499004/1500789911
## 501  https://pbs.twimg.com/profile_banners/1221302912946790400/1582563137
## 502            https://pbs.twimg.com/profile_banners/247631603/1564743797
## 503             https://pbs.twimg.com/profile_banners/89754038/1426952956
## 504                                                                  <NA>
## 505             https://pbs.twimg.com/profile_banners/19581053/1573878702
## 506            https://pbs.twimg.com/profile_banners/588645499/1546512636
## 507  https://pbs.twimg.com/profile_banners/1152238701835116545/1563558618
## 508           https://pbs.twimg.com/profile_banners/2581075469/1412871538
## 509   https://pbs.twimg.com/profile_banners/946924990020009985/1514603392
## 510   https://pbs.twimg.com/profile_banners/944047168188432386/1518234786
## 511           https://pbs.twimg.com/profile_banners/2195850319/1520507276
## 512  https://pbs.twimg.com/profile_banners/1038746010984570880/1536491543
## 513           https://pbs.twimg.com/profile_banners/3043765295/1583886317
## 514  https://pbs.twimg.com/profile_banners/1221243765526093824/1580709022
## 515            https://pbs.twimg.com/profile_banners/351130607/1498372162
## 516  https://pbs.twimg.com/profile_banners/1032989915305324544/1577798537
## 517             https://pbs.twimg.com/profile_banners/21234787/1569454667
## 518                                                                  <NA>
## 519            https://pbs.twimg.com/profile_banners/746205583/1570437262
## 520   https://pbs.twimg.com/profile_banners/993101890291298304/1525610490
## 521              https://pbs.twimg.com/profile_banners/8241232/1579468652
## 522  https://pbs.twimg.com/profile_banners/1185794056812716034/1575978996
## 523                                                                  <NA>
## 524            https://pbs.twimg.com/profile_banners/841114604/1574400453
## 525           https://pbs.twimg.com/profile_banners/2256333007/1558728755
## 526                                                                  <NA>
## 527           https://pbs.twimg.com/profile_banners/3157050373/1429088289
## 528                                                                  <NA>
## 529              https://pbs.twimg.com/profile_banners/7210512/1580538897
## 530                                                                  <NA>
## 531                                                                  <NA>
## 532  https://pbs.twimg.com/profile_banners/1053058626699624448/1577725614
## 533   https://pbs.twimg.com/profile_banners/988794545113522176/1545869845
## 534                                                                  <NA>
## 535                                                                  <NA>
## 536             https://pbs.twimg.com/profile_banners/18216752/1513259161
## 537            https://pbs.twimg.com/profile_banners/288992814/1550343820
## 538   https://pbs.twimg.com/profile_banners/917551134390317057/1507598207
## 539                                                                  <NA>
## 540  https://pbs.twimg.com/profile_banners/1113747196099399680/1584105274
## 541             https://pbs.twimg.com/profile_banners/61180382/1585036908
## 542  https://pbs.twimg.com/profile_banners/1181600449633439744/1585280711
## 543   https://pbs.twimg.com/profile_banners/920249159604719617/1581796032
## 544             https://pbs.twimg.com/profile_banners/30297423/1482115973
## 545   https://pbs.twimg.com/profile_banners/791569205380444161/1538818744
## 546           https://pbs.twimg.com/profile_banners/4180602754/1561575516
## 547           https://pbs.twimg.com/profile_banners/2749977957/1580832814
## 548           https://pbs.twimg.com/profile_banners/2976824781/1437311393
## 549           https://pbs.twimg.com/profile_banners/3023007756/1582047705
## 550             https://pbs.twimg.com/profile_banners/21337411/1584737654
## 551             https://pbs.twimg.com/profile_banners/24428174/1584029094
## 552             https://pbs.twimg.com/profile_banners/17761521/1353796892
## 553            https://pbs.twimg.com/profile_banners/119132427/1355175833
## 554  https://pbs.twimg.com/profile_banners/1243674858359336961/1585351924
## 555           https://pbs.twimg.com/profile_banners/2865763619/1419632688
## 556            https://pbs.twimg.com/profile_banners/535643852/1547168949
## 557            https://pbs.twimg.com/profile_banners/176355348/1582093267
## 558                                                                  <NA>
## 559            https://pbs.twimg.com/profile_banners/145351229/1583176866
## 560             https://pbs.twimg.com/profile_banners/25033748/1584940811
## 561   https://pbs.twimg.com/profile_banners/979389638422028288/1561163650
## 562             https://pbs.twimg.com/profile_banners/79242170/1481755245
## 563            https://pbs.twimg.com/profile_banners/388368711/1469007120
## 564           https://pbs.twimg.com/profile_banners/4734965658/1582163139
## 565   https://pbs.twimg.com/profile_banners/744696897902776320/1488216617
## 566           https://pbs.twimg.com/profile_banners/2819224958/1570660287
## 567           https://pbs.twimg.com/profile_banners/4313247499/1577960584
## 568  https://pbs.twimg.com/profile_banners/1078347082220486656/1559405553
## 569             https://pbs.twimg.com/profile_banners/61180382/1585036908
## 570  https://pbs.twimg.com/profile_banners/1090442109952446464/1548972638
## 571             https://pbs.twimg.com/profile_banners/22240612/1559137648
## 572             https://pbs.twimg.com/profile_banners/38678036/1454782188
## 573                                                                  <NA>
## 574            https://pbs.twimg.com/profile_banners/990056731/1531977964
## 575            https://pbs.twimg.com/profile_banners/432064754/1571188557
## 576  https://pbs.twimg.com/profile_banners/1154171516755546112/1584894217
## 577             https://pbs.twimg.com/profile_banners/80900937/1537376477
## 578           https://pbs.twimg.com/profile_banners/4881899464/1459268154
## 579            https://pbs.twimg.com/profile_banners/237026147/1371754668
## 580  https://pbs.twimg.com/profile_banners/1129477055202988032/1558153849
## 581   https://pbs.twimg.com/profile_banners/763797399227686912/1580162634
## 582                                                                  <NA>
## 583             https://pbs.twimg.com/profile_banners/15484279/1580248170
## 584  https://pbs.twimg.com/profile_banners/1143217251803422721/1571138800
## 585            https://pbs.twimg.com/profile_banners/281920387/1504058962
## 586           https://pbs.twimg.com/profile_banners/1599384764/1501352065
## 587                                                                  <NA>
## 588            https://pbs.twimg.com/profile_banners/245631096/1493664992
## 589            https://pbs.twimg.com/profile_banners/791617578/1482784375
## 590            https://pbs.twimg.com/profile_banners/278123550/1582562199
## 591            https://pbs.twimg.com/profile_banners/108707115/1582211341
## 592            https://pbs.twimg.com/profile_banners/371617164/1407897434
## 593           https://pbs.twimg.com/profile_banners/3075778335/1585335297
## 594             https://pbs.twimg.com/profile_banners/58064184/1480829711
## 595            https://pbs.twimg.com/profile_banners/121490412/1489800558
## 596           https://pbs.twimg.com/profile_banners/3084365322/1579034548
## 597           https://pbs.twimg.com/profile_banners/4928513381/1519518091
## 598            https://pbs.twimg.com/profile_banners/104182491/1568362791
## 599   https://pbs.twimg.com/profile_banners/984538659234828289/1565379629
## 600            https://pbs.twimg.com/profile_banners/571642322/1565731523
## 601            https://pbs.twimg.com/profile_banners/255655450/1515163529
## 602  https://pbs.twimg.com/profile_banners/1196502812114456577/1582828958
## 603  https://pbs.twimg.com/profile_banners/1171370567091597314/1568210789
## 604             https://pbs.twimg.com/profile_banners/29746546/1549678227
## 605  https://pbs.twimg.com/profile_banners/1166693963207757824/1567049799
## 606            https://pbs.twimg.com/profile_banners/340790187/1432963382
## 607                                                                  <NA>
## 608                                                                  <NA>
## 609            https://pbs.twimg.com/profile_banners/535635363/1545691858
## 610            https://pbs.twimg.com/profile_banners/228436342/1521133542
## 611           https://pbs.twimg.com/profile_banners/2574179264/1403285424
## 612  https://pbs.twimg.com/profile_banners/1234002448903221249/1583390089
## 613            https://pbs.twimg.com/profile_banners/372430736/1546428530
## 614            https://pbs.twimg.com/profile_banners/497305362/1487462122
## 615            https://pbs.twimg.com/profile_banners/475260383/1561015397
## 616             https://pbs.twimg.com/profile_banners/72577990/1428418521
## 617            https://pbs.twimg.com/profile_banners/406442515/1421945864
## 618   https://pbs.twimg.com/profile_banners/899761782163746816/1556891886
## 619              https://pbs.twimg.com/profile_banners/8759292/1399968684
## 620                                                                  <NA>
## 621                                                                  <NA>
## 622            https://pbs.twimg.com/profile_banners/149462249/1484554844
## 623              https://pbs.twimg.com/profile_banners/9601512/1583428783
## 624           https://pbs.twimg.com/profile_banners/1547457408/1585249107
## 625                                                                  <NA>
## 626           https://pbs.twimg.com/profile_banners/3003376699/1580201047
## 627            https://pbs.twimg.com/profile_banners/141827890/1498192106
## 628            https://pbs.twimg.com/profile_banners/370014526/1584630816
## 629                                                                  <NA>
## 630           https://pbs.twimg.com/profile_banners/3153282534/1498503987
## 631             https://pbs.twimg.com/profile_banners/17697584/1358477254
## 632           https://pbs.twimg.com/profile_banners/2264754072/1570032710
## 633   https://pbs.twimg.com/profile_banners/838484669981163520/1584163528
## 634            https://pbs.twimg.com/profile_banners/878700938/1574855872
## 635  https://pbs.twimg.com/profile_banners/1188482503688019968/1573781323
## 636            https://pbs.twimg.com/profile_banners/197420040/1461834113
## 637           https://pbs.twimg.com/profile_banners/2513627167/1401352281
## 638             https://pbs.twimg.com/profile_banners/17461631/1487649758
## 639  https://pbs.twimg.com/profile_banners/1017887879064932353/1585099573
## 640                                                                  <NA>
## 641   https://pbs.twimg.com/profile_banners/895331622572183552/1502298759
## 642                                                                  <NA>
## 643   https://pbs.twimg.com/profile_banners/860536322968219648/1574123237
## 644            https://pbs.twimg.com/profile_banners/889349226/1541803318
## 645                                                                  <NA>
## 646                                                                  <NA>
## 647             https://pbs.twimg.com/profile_banners/20439040/1546722876
## 648             https://pbs.twimg.com/profile_banners/21951777/1579965183
## 649  https://pbs.twimg.com/profile_banners/1083796041097506816/1547830095
## 650           https://pbs.twimg.com/profile_banners/2382793933/1546556422
## 651             https://pbs.twimg.com/profile_banners/18999261/1476804921
## 652            https://pbs.twimg.com/profile_banners/138933898/1556291751
## 653   https://pbs.twimg.com/profile_banners/946873717874978817/1534264351
## 654                                                                  <NA>
## 655                                                                  <NA>
## 656   https://pbs.twimg.com/profile_banners/862190872829362177/1578320013
## 657  https://pbs.twimg.com/profile_banners/1108357496471576576/1571914907
## 658            https://pbs.twimg.com/profile_banners/112303384/1544761163
## 659            https://pbs.twimg.com/profile_banners/176355348/1582093267
## 660   https://pbs.twimg.com/profile_banners/831982169253937152/1582361702
## 661           https://pbs.twimg.com/profile_banners/4842325334/1528927292
## 662           https://pbs.twimg.com/profile_banners/2690112467/1585120058
## 663            https://pbs.twimg.com/profile_banners/311276757/1583238709
## 664             https://pbs.twimg.com/profile_banners/15466126/1501559487
## 665            https://pbs.twimg.com/profile_banners/142338949/1398874248
## 666             https://pbs.twimg.com/profile_banners/30815695/1488569273
## 667           https://pbs.twimg.com/profile_banners/3298353607/1551254853
## 668           https://pbs.twimg.com/profile_banners/1340486389/1470668173
## 669  https://pbs.twimg.com/profile_banners/1095010434913050632/1552076374
## 670   https://pbs.twimg.com/profile_banners/803215340381630464/1553421743
## 671  https://pbs.twimg.com/profile_banners/1233250695169503234/1582865274
## 672            https://pbs.twimg.com/profile_banners/394859323/1575657833
## 673             https://pbs.twimg.com/profile_banners/26333596/1539383159
## 674             https://pbs.twimg.com/profile_banners/14834066/1574600744
## 675            https://pbs.twimg.com/profile_banners/181650392/1583366315
## 676  https://pbs.twimg.com/profile_banners/1237031278492307460/1583766346
## 677   https://pbs.twimg.com/profile_banners/794654107231539203/1484417882
## 678           https://pbs.twimg.com/profile_banners/2888010194/1581899101
## 679   https://pbs.twimg.com/profile_banners/734973553477570560/1478209026
## 680             https://pbs.twimg.com/profile_banners/18480977/1575150882
## 681   https://pbs.twimg.com/profile_banners/751885664283602944/1581730763
## 682  https://pbs.twimg.com/profile_banners/1214232500664295424/1584111241
## 683             https://pbs.twimg.com/profile_banners/65594489/1569220743
## 684            https://pbs.twimg.com/profile_banners/230477177/1500501367
## 685             https://pbs.twimg.com/profile_banners/16672272/1570653460
## 686           https://pbs.twimg.com/profile_banners/1117483992/1539747680
## 687             https://pbs.twimg.com/profile_banners/42085971/1550759737
## 688             https://pbs.twimg.com/profile_banners/29147175/1489395700
## 689   https://pbs.twimg.com/profile_banners/701596920628772866/1567794895
## 690            https://pbs.twimg.com/profile_banners/186890864/1582204975
## 691                                                                  <NA>
## 692              https://pbs.twimg.com/profile_banners/7663702/1571851904
## 693   https://pbs.twimg.com/profile_banners/890297769096876034/1501160377
## 694            https://pbs.twimg.com/profile_banners/858947179/1569878790
## 695            https://pbs.twimg.com/profile_banners/294641087/1579868612
## 696            https://pbs.twimg.com/profile_banners/232215936/1475021545
## 697                                                                  <NA>
## 698           https://pbs.twimg.com/profile_banners/1287327240/1581870237
## 699                                                                  <NA>
## 700             https://pbs.twimg.com/profile_banners/82279998/1434159084
## 701             https://pbs.twimg.com/profile_banners/21766435/1566842928
## 702  https://pbs.twimg.com/profile_banners/1233447068879990785/1585119975
## 703   https://pbs.twimg.com/profile_banners/826129656856207360/1569609254
## 704   https://pbs.twimg.com/profile_banners/818142705075167232/1582943349
## 705            https://pbs.twimg.com/profile_banners/148122322/1484689439
## 706  https://pbs.twimg.com/profile_banners/1174049491340496896/1580956290
## 707  https://pbs.twimg.com/profile_banners/1174848727741292544/1568941082
## 708            https://pbs.twimg.com/profile_banners/409505983/1537210658
## 709                                                                  <NA>
## 710             https://pbs.twimg.com/profile_banners/58198180/1559008804
## 711  https://pbs.twimg.com/profile_banners/1017262982416527360/1535505899
## 712           https://pbs.twimg.com/profile_banners/1520851111/1397010351
## 713           https://pbs.twimg.com/profile_banners/3251297965/1571698663
## 714           https://pbs.twimg.com/profile_banners/4150093918/1584146115
## 715              https://pbs.twimg.com/profile_banners/6721522/1400518273
## 716             https://pbs.twimg.com/profile_banners/15756056/1505836852
## 717                                                                  <NA>
## 718                                                                  <NA>
## 719                                                                  <NA>
## 720            https://pbs.twimg.com/profile_banners/115123623/1525586832
## 721            https://pbs.twimg.com/profile_banners/109188899/1545501861
## 722             https://pbs.twimg.com/profile_banners/16632172/1454559503
## 723             https://pbs.twimg.com/profile_banners/63362429/1583362507
## 724            https://pbs.twimg.com/profile_banners/152366061/1552441465
## 725           https://pbs.twimg.com/profile_banners/1899140628/1553107913
## 726             https://pbs.twimg.com/profile_banners/20467031/1550155276
## 727           https://pbs.twimg.com/profile_banners/3018120709/1535666714
## 728            https://pbs.twimg.com/profile_banners/387164450/1551288027
## 729             https://pbs.twimg.com/profile_banners/16889506/1399546558
## 730            https://pbs.twimg.com/profile_banners/143840324/1509727545
## 731            https://pbs.twimg.com/profile_banners/852189290/1578193425
## 732  https://pbs.twimg.com/profile_banners/1242507725520732161/1585247056
## 733            https://pbs.twimg.com/profile_banners/479872233/1580753914
## 734   https://pbs.twimg.com/profile_banners/751054430770958336/1580555674
## 735             https://pbs.twimg.com/profile_banners/16796529/1571613545
## 736            https://pbs.twimg.com/profile_banners/482704360/1577933721
## 737  https://pbs.twimg.com/profile_banners/1088501349325639682/1553368000
## 738  https://pbs.twimg.com/profile_banners/1230977514073403407/1582373478
## 739             https://pbs.twimg.com/profile_banners/20014055/1550002238
## 740           https://pbs.twimg.com/profile_banners/2613870120/1572806050
## 741              https://pbs.twimg.com/profile_banners/9183902/1562522493
## 742             https://pbs.twimg.com/profile_banners/23990068/1584277633
## 743           https://pbs.twimg.com/profile_banners/1562600388/1457101117
## 744   https://pbs.twimg.com/profile_banners/717911401499471873/1502300362
## 745             https://pbs.twimg.com/profile_banners/17033050/1453329484
## 746             https://pbs.twimg.com/profile_banners/14790524/1495038571
## 747            https://pbs.twimg.com/profile_banners/138168578/1575508507
## 748  https://pbs.twimg.com/profile_banners/1101879644310200327/1563652349
## 749            https://pbs.twimg.com/profile_banners/131503213/1576788701
## 750             https://pbs.twimg.com/profile_banners/21234664/1546144729
## 751                                                                  <NA>
## 752   https://pbs.twimg.com/profile_banners/781756436284145664/1534532960
## 753            https://pbs.twimg.com/profile_banners/337730660/1572059594
## 754             https://pbs.twimg.com/profile_banners/15867461/1548093037
## 755            https://pbs.twimg.com/profile_banners/146227634/1575627283
## 756           https://pbs.twimg.com/profile_banners/3003234454/1430314625
## 757                                                                  <NA>
## 758                                                                  <NA>
## 759             https://pbs.twimg.com/profile_banners/14469820/1585036206
## 760  https://pbs.twimg.com/profile_banners/1238084781591547910/1585204630
## 761   https://pbs.twimg.com/profile_banners/729807046229565442/1543862970
## 762   https://pbs.twimg.com/profile_banners/920370467382419456/1569537085
## 763            https://pbs.twimg.com/profile_banners/280690372/1378827237
## 764           https://pbs.twimg.com/profile_banners/1453600256/1492416044
## 765           https://pbs.twimg.com/profile_banners/4622667867/1497976897
## 766   https://pbs.twimg.com/profile_banners/878820871971889153/1498374283
## 767   https://pbs.twimg.com/profile_banners/737651626803105792/1475067153
## 768             https://pbs.twimg.com/profile_banners/15533832/1584379450
## 769            https://pbs.twimg.com/profile_banners/357833234/1546240988
## 770           https://pbs.twimg.com/profile_banners/2173459784/1412481449
## 771           https://pbs.twimg.com/profile_banners/2256257457/1388694694
## 772  https://pbs.twimg.com/profile_banners/1240759936721858561/1584988902
## 773  https://pbs.twimg.com/profile_banners/1180476655262937089/1570283061
## 774   https://pbs.twimg.com/profile_banners/980026120694325248/1581025375
## 775  https://pbs.twimg.com/profile_banners/1173165534805975041/1571077826
## 776  https://pbs.twimg.com/profile_banners/1076062184554356736/1578908805
## 777             https://pbs.twimg.com/profile_banners/62841945/1435666031
## 778  https://pbs.twimg.com/profile_banners/1212599905132273665/1577941797
## 779            https://pbs.twimg.com/profile_banners/988489190/1521270757
## 780           https://pbs.twimg.com/profile_banners/1039296595/1521209988
## 781   https://pbs.twimg.com/profile_banners/764829119175622656/1519551911
## 782  https://pbs.twimg.com/profile_banners/1188214399456006144/1578600724
## 783           https://pbs.twimg.com/profile_banners/3251355932/1565136764
## 784           https://pbs.twimg.com/profile_banners/1685150023/1554589368
## 785           https://pbs.twimg.com/profile_banners/4452838720/1449872883
## 786            https://pbs.twimg.com/profile_banners/251898204/1352672728
## 787            https://pbs.twimg.com/profile_banners/330606437/1556609686
## 788                                                                  <NA>
## 789                                                                  <NA>
## 790           https://pbs.twimg.com/profile_banners/1408451995/1493775831
## 791   https://pbs.twimg.com/profile_banners/974889080193519617/1539542239
## 792   https://pbs.twimg.com/profile_banners/904802908520177664/1583278644
## 793  https://pbs.twimg.com/profile_banners/1069852763494981633/1584244179
## 794            https://pbs.twimg.com/profile_banners/442664736/1583238265
## 795             https://pbs.twimg.com/profile_banners/28605294/1504185686
## 796  https://pbs.twimg.com/profile_banners/1227568195898310658/1581522187
## 797                                                                  <NA>
## 798             https://pbs.twimg.com/profile_banners/68883683/1573321241
## 799           https://pbs.twimg.com/profile_banners/1270650092/1583959111
## 800                                                                  <NA>
## 801                                                                  <NA>
## 802            https://pbs.twimg.com/profile_banners/240710605/1348331016
## 803           https://pbs.twimg.com/profile_banners/3060174289/1474913461
## 804             https://pbs.twimg.com/profile_banners/56404068/1575668533
## 805            https://pbs.twimg.com/profile_banners/120120773/1555961517
## 806                                                                  <NA>
## 807             https://pbs.twimg.com/profile_banners/20016443/1585285886
## 808   https://pbs.twimg.com/profile_banners/937186564580560896/1553230507
## 809             https://pbs.twimg.com/profile_banners/55049762/1404188145
## 810            https://pbs.twimg.com/profile_banners/621976657/1575312115
## 811            https://pbs.twimg.com/profile_banners/238911107/1412546515
## 812             https://pbs.twimg.com/profile_banners/18633036/1423034362
## 813             https://pbs.twimg.com/profile_banners/33801942/1567813914
## 814           https://pbs.twimg.com/profile_banners/1600858730/1528203097
## 815                                                                  <NA>
## 816           https://pbs.twimg.com/profile_banners/1551979855/1475446840
## 817            https://pbs.twimg.com/profile_banners/118666965/1492245682
## 818           https://pbs.twimg.com/profile_banners/1658956214/1414593471
## 819  https://pbs.twimg.com/profile_banners/1164304446899347457/1566427374
## 820                                                                  <NA>
## 821             https://pbs.twimg.com/profile_banners/30374920/1485735076
## 822           https://pbs.twimg.com/profile_banners/1359213752/1584727415
## 823             https://pbs.twimg.com/profile_banners/55089660/1418141852
## 824                                                                  <NA>
## 825                                                                  <NA>
## 826            https://pbs.twimg.com/profile_banners/333235146/1585073290
## 827   https://pbs.twimg.com/profile_banners/826375817441718272/1570761607
## 828            https://pbs.twimg.com/profile_banners/216524202/1554222279
## 829               https://pbs.twimg.com/profile_banners/814233/1565231096
## 830            https://pbs.twimg.com/profile_banners/335701222/1523809295
## 831                                                                  <NA>
## 832             https://pbs.twimg.com/profile_banners/20937779/1516859033
## 833             https://pbs.twimg.com/profile_banners/33805112/1473074391
## 834                                                                  <NA>
## 835                                                                  <NA>
## 836           https://pbs.twimg.com/profile_banners/2323116235/1526399595
## 837   https://pbs.twimg.com/profile_banners/943018733068435456/1580872366
## 838             https://pbs.twimg.com/profile_banners/35950699/1531971434
## 839                                                                  <NA>
## 840            https://pbs.twimg.com/profile_banners/373439919/1522352555
## 841            https://pbs.twimg.com/profile_banners/252076966/1377165561
## 842   https://pbs.twimg.com/profile_banners/868019668132347905/1495788645
## 843            https://pbs.twimg.com/profile_banners/465888475/1371578360
## 844           https://pbs.twimg.com/profile_banners/1252945921/1520626077
## 845            https://pbs.twimg.com/profile_banners/146533106/1409248964
## 846           https://pbs.twimg.com/profile_banners/1390318944/1578682410
## 847            https://pbs.twimg.com/profile_banners/294479557/1542091623
## 848  https://pbs.twimg.com/profile_banners/1219576960927588353/1579617311
## 849                                                                  <NA>
## 850            https://pbs.twimg.com/profile_banners/734184572/1554730460
## 851            https://pbs.twimg.com/profile_banners/193036771/1532410527
## 852             https://pbs.twimg.com/profile_banners/24829612/1518303842
## 853             https://pbs.twimg.com/profile_banners/14191823/1540842233
## 854             https://pbs.twimg.com/profile_banners/24790428/1563888459
## 855                                                                  <NA>
## 856                                                                  <NA>
## 857             https://pbs.twimg.com/profile_banners/72743396/1398362402
## 858           https://pbs.twimg.com/profile_banners/1128888726/1582914021
## 859             https://pbs.twimg.com/profile_banners/22879437/1581302806
## 860                                                                  <NA>
## 861                                                                  <NA>
## 862   https://pbs.twimg.com/profile_banners/995499280067514370/1583238912
## 863             https://pbs.twimg.com/profile_banners/14465282/1534639577
## 864                                                                  <NA>
## 865            https://pbs.twimg.com/profile_banners/549076236/1559563204
## 866            https://pbs.twimg.com/profile_banners/995502204/1445240620
## 867             https://pbs.twimg.com/profile_banners/62620861/1582362717
## 868                                                                  <NA>
## 869           https://pbs.twimg.com/profile_banners/2470674174/1495397172
## 870   https://pbs.twimg.com/profile_banners/992026123809837056/1583022304
## 871   https://pbs.twimg.com/profile_banners/842235649298112513/1489717212
## 872                                                                  <NA>
## 873             https://pbs.twimg.com/profile_banners/29174698/1548798988
## 874  https://pbs.twimg.com/profile_banners/1185279016548347905/1571429125
## 875            https://pbs.twimg.com/profile_banners/569873665/1557568642
## 876           https://pbs.twimg.com/profile_banners/1628901756/1546969807
## 877   https://pbs.twimg.com/profile_banners/961638138165817345/1583844086
## 878   https://pbs.twimg.com/profile_banners/833444611796369411/1554391654
## 879             https://pbs.twimg.com/profile_banners/92653916/1580637918
## 880           https://pbs.twimg.com/profile_banners/1175284032/1585427399
## 881            https://pbs.twimg.com/profile_banners/282716700/1577035720
## 882             https://pbs.twimg.com/profile_banners/15405628/1455253023
## 883   https://pbs.twimg.com/profile_banners/731418950907641856/1583003477
## 884            https://pbs.twimg.com/profile_banners/125907895/1512594551
## 885           https://pbs.twimg.com/profile_banners/1907783000/1565201659
## 886            https://pbs.twimg.com/profile_banners/141469339/1583936915
## 887  https://pbs.twimg.com/profile_banners/1155312569361547264/1579137480
## 888  https://pbs.twimg.com/profile_banners/1037112108675198977/1585374661
## 889                                                                  <NA>
## 890  https://pbs.twimg.com/profile_banners/1196463984104345602/1582980491
## 891                                                                  <NA>
## 892            https://pbs.twimg.com/profile_banners/116141566/1527007977
## 893           https://pbs.twimg.com/profile_banners/4819616115/1456869738
## 894                                                                  <NA>
## 895  https://pbs.twimg.com/profile_banners/1168611088533004294/1585351872
## 896                                                                  <NA>
## 897  https://pbs.twimg.com/profile_banners/1203462567861084160/1581480349
## 898           https://pbs.twimg.com/profile_banners/4282993872/1585019449
## 899                                                                  <NA>
## 900            https://pbs.twimg.com/profile_banners/242324142/1348444787
## 901            https://pbs.twimg.com/profile_banners/526066352/1582338147
## 902   https://pbs.twimg.com/profile_banners/728499529624879104/1541354674
## 903             https://pbs.twimg.com/profile_banners/90617546/1563370938
## 904   https://pbs.twimg.com/profile_banners/799744031127441410/1479746675
## 905   https://pbs.twimg.com/profile_banners/865941026980147200/1496188616
## 906            https://pbs.twimg.com/profile_banners/223919511/1578302764
## 907                                                                  <NA>
## 908            https://pbs.twimg.com/profile_banners/462027865/1573817408
## 909            https://pbs.twimg.com/profile_banners/596800229/1585318478
## 910           https://pbs.twimg.com/profile_banners/1379469558/1382005260
## 911   https://pbs.twimg.com/profile_banners/925373571286863873/1548173090
## 912             https://pbs.twimg.com/profile_banners/36145689/1584066469
## 913            https://pbs.twimg.com/profile_banners/103323813/1581495044
## 914  https://pbs.twimg.com/profile_banners/1191441878698397700/1584063115
## 915  https://pbs.twimg.com/profile_banners/1135600464299474944/1583873055
## 916            https://pbs.twimg.com/profile_banners/423237314/1561374634
## 917           https://pbs.twimg.com/profile_banners/1675910472/1577857660
## 918  https://pbs.twimg.com/profile_banners/1184025479084331008/1585166130
## 919   https://pbs.twimg.com/profile_banners/760863598243479553/1549443257
## 920            https://pbs.twimg.com/profile_banners/418256456/1524272460
## 921                                                                  <NA>
## 922            https://pbs.twimg.com/profile_banners/419559896/1519246460
## 923           https://pbs.twimg.com/profile_banners/2414136888/1573821100
## 924            https://pbs.twimg.com/profile_banners/413440921/1575931287
## 925            https://pbs.twimg.com/profile_banners/818224573/1581316456
## 926  https://pbs.twimg.com/profile_banners/1176013903899156482/1572650597
## 927           https://pbs.twimg.com/profile_banners/1920625123/1543569905
## 928           https://pbs.twimg.com/profile_banners/1219767846/1584639150
## 929   https://pbs.twimg.com/profile_banners/892132134844071937/1581000821
## 930  https://pbs.twimg.com/profile_banners/1171467279877279747/1584409089
## 931           https://pbs.twimg.com/profile_banners/3136970222/1580102641
## 932            https://pbs.twimg.com/profile_banners/804177050/1426783308
## 933            https://pbs.twimg.com/profile_banners/501372903/1569178027
## 934           https://pbs.twimg.com/profile_banners/2243566598/1496033197
## 935  https://pbs.twimg.com/profile_banners/1132542712195026944/1584390413
## 936           https://pbs.twimg.com/profile_banners/1275722959/1411462325
## 937             https://pbs.twimg.com/profile_banners/16102208/1485880101
## 938             https://pbs.twimg.com/profile_banners/64827786/1568993973
## 939             https://pbs.twimg.com/profile_banners/21969215/1579520741
## 940             https://pbs.twimg.com/profile_banners/43596804/1538978149
## 941  https://pbs.twimg.com/profile_banners/1118763194145759232/1585079577
## 942             https://pbs.twimg.com/profile_banners/31310158/1577730466
## 943            https://pbs.twimg.com/profile_banners/395213954/1556530733
## 944           https://pbs.twimg.com/profile_banners/3065924818/1579185025
## 945  https://pbs.twimg.com/profile_banners/1114303846426263559/1583542201
## 946             https://pbs.twimg.com/profile_banners/41243579/1456426725
## 947   https://pbs.twimg.com/profile_banners/938533034659168256/1532278036
## 948           https://pbs.twimg.com/profile_banners/3219528732/1510076614
## 949   https://pbs.twimg.com/profile_banners/827247504215375874/1584724432
## 950            https://pbs.twimg.com/profile_banners/582306752/1585213036
## 951                                                                  <NA>
## 952            https://pbs.twimg.com/profile_banners/273678873/1510680194
## 953   https://pbs.twimg.com/profile_banners/723200908855775232/1540831918
## 954           https://pbs.twimg.com/profile_banners/2982269822/1584877647
## 955   https://pbs.twimg.com/profile_banners/804785625400418304/1571763312
## 956  https://pbs.twimg.com/profile_banners/1045078084028788736/1549563002
## 957            https://pbs.twimg.com/profile_banners/321436678/1553261789
## 958                                                                  <NA>
## 959            https://pbs.twimg.com/profile_banners/534036081/1585314589
## 960            https://pbs.twimg.com/profile_banners/115220086/1404969831
## 961                                                                  <NA>
## 962             https://pbs.twimg.com/profile_banners/22283739/1508710606
## 963            https://pbs.twimg.com/profile_banners/316042195/1404251227
## 964           https://pbs.twimg.com/profile_banners/3246958814/1579498302
## 965                                                                  <NA>
## 966             https://pbs.twimg.com/profile_banners/13525132/1581136040
## 967                                                                  <NA>
## 968           https://pbs.twimg.com/profile_banners/3309371255/1510317388
## 969           https://pbs.twimg.com/profile_banners/3328053011/1566503736
## 970            https://pbs.twimg.com/profile_banners/318656894/1578687225
## 971           https://pbs.twimg.com/profile_banners/1298796487/1569859925
## 972                                                                  <NA>
## 973                                                                  <NA>
## 974           https://pbs.twimg.com/profile_banners/3271119145/1577797279
## 975                                                                  <NA>
## 976  https://pbs.twimg.com/profile_banners/1027727439487631360/1583685497
## 977           https://pbs.twimg.com/profile_banners/2319111437/1498305420
## 978  https://pbs.twimg.com/profile_banners/1025002772025012225/1549387156
## 979                                                                  <NA>
## 980           https://pbs.twimg.com/profile_banners/4180433547/1580673052
## 981  https://pbs.twimg.com/profile_banners/1215516320529362944/1578668047
## 982           https://pbs.twimg.com/profile_banners/1969422174/1561004908
## 983            https://pbs.twimg.com/profile_banners/235906919/1566492533
## 984           https://pbs.twimg.com/profile_banners/2201331817/1397416890
## 985                                                                  <NA>
## 986  https://pbs.twimg.com/profile_banners/1242190381988667392/1584997152
## 987            https://pbs.twimg.com/profile_banners/852096720/1554726438
## 988            https://pbs.twimg.com/profile_banners/169154930/1584992858
## 989  https://pbs.twimg.com/profile_banners/1217568931680006144/1584574019
## 990           https://pbs.twimg.com/profile_banners/2882493896/1537998509
## 991  https://pbs.twimg.com/profile_banners/1048558756810948608/1557390881
## 992             https://pbs.twimg.com/profile_banners/66659124/1553871295
## 993             https://pbs.twimg.com/profile_banners/20794340/1378756082
## 994                                                                  <NA>
## 995  https://pbs.twimg.com/profile_banners/1098106957683019776/1584042658
## 996            https://pbs.twimg.com/profile_banners/164730435/1493349989
## 997  https://pbs.twimg.com/profile_banners/1237064625625223168/1584022758
## 998            https://pbs.twimg.com/profile_banners/426690145/1559906498
## 999   https://pbs.twimg.com/profile_banners/893299346367692800/1520985925
## 1000                                                                 <NA>
## 1001            https://pbs.twimg.com/profile_banners/79986022/1556439033
## 1002                                                                 <NA>
## 1003            https://pbs.twimg.com/profile_banners/48568247/1477375315
## 1004           https://pbs.twimg.com/profile_banners/915496224/1585193593
## 1005 https://pbs.twimg.com/profile_banners/1043389291110572033/1538847530
## 1006            https://pbs.twimg.com/profile_banners/17374056/1584967602
## 1007            https://pbs.twimg.com/profile_banners/36012258/1584921507
## 1008  https://pbs.twimg.com/profile_banners/845418693689405441/1584630463
## 1009  https://pbs.twimg.com/profile_banners/970140879393579009/1520159757
## 1010  https://pbs.twimg.com/profile_banners/728259667906809858/1583128602
## 1011          https://pbs.twimg.com/profile_banners/2716509897/1553474370
## 1012  https://pbs.twimg.com/profile_banners/749977594301480966/1529910945
## 1013          https://pbs.twimg.com/profile_banners/1968262034/1564126716
## 1014 https://pbs.twimg.com/profile_banners/1039350034293112832/1536635487
## 1015                                                                 <NA>
## 1016           https://pbs.twimg.com/profile_banners/296939072/1399492710
## 1017          https://pbs.twimg.com/profile_banners/2238576392/1389070591
## 1018            https://pbs.twimg.com/profile_banners/57597564/1538343736
## 1019           https://pbs.twimg.com/profile_banners/473605659/1553755467
## 1020          https://pbs.twimg.com/profile_banners/1068742092/1553570379
## 1021            https://pbs.twimg.com/profile_banners/25927615/1509769524
## 1022           https://pbs.twimg.com/profile_banners/840979597/1584836814
## 1023  https://pbs.twimg.com/profile_banners/829685651071180802/1486649222
## 1024           https://pbs.twimg.com/profile_banners/616740164/1499456647
## 1025 https://pbs.twimg.com/profile_banners/1097694473952342022/1577146558
## 1026            https://pbs.twimg.com/profile_banners/15483495/1561656664
## 1027 https://pbs.twimg.com/profile_banners/1210806479898333185/1578975644
## 1028          https://pbs.twimg.com/profile_banners/2432037522/1532058892
## 1029                                                                 <NA>
## 1030  https://pbs.twimg.com/profile_banners/823987589623455745/1550670304
## 1031            https://pbs.twimg.com/profile_banners/22594051/1583883886
## 1032                                                                 <NA>
## 1033            https://pbs.twimg.com/profile_banners/26276678/1420683639
## 1034 https://pbs.twimg.com/profile_banners/1068147338789748738/1585226278
## 1035                                                                 <NA>
## 1036  https://pbs.twimg.com/profile_banners/823158574041985024/1552418345
## 1037            https://pbs.twimg.com/profile_banners/34332773/1581437109
## 1038                                                                 <NA>
## 1039          https://pbs.twimg.com/profile_banners/3624846559/1569655161
## 1040           https://pbs.twimg.com/profile_banners/135243332/1583299026
## 1041  https://pbs.twimg.com/profile_banners/752214047744004098/1490328440
## 1042           https://pbs.twimg.com/profile_banners/174361370/1445964770
## 1043           https://pbs.twimg.com/profile_banners/123343056/1420474773
## 1044                                                                 <NA>
## 1045          https://pbs.twimg.com/profile_banners/2266427203/1507382948
## 1046           https://pbs.twimg.com/profile_banners/385531917/1355464363
## 1047            https://pbs.twimg.com/profile_banners/15577279/1574955859
## 1048          https://pbs.twimg.com/profile_banners/3276766916/1502393629
## 1049          https://pbs.twimg.com/profile_banners/2440688198/1506556719
## 1050           https://pbs.twimg.com/profile_banners/302765078/1584738842
## 1051 https://pbs.twimg.com/profile_banners/1221294634514690049/1580014683
## 1052 https://pbs.twimg.com/profile_banners/1237929400898813953/1583981626
## 1053 https://pbs.twimg.com/profile_banners/1240789666388783104/1585201866
## 1054 https://pbs.twimg.com/profile_banners/1208762598738538496/1585062370
## 1055 https://pbs.twimg.com/profile_banners/1131977471295754240/1567066633
## 1056           https://pbs.twimg.com/profile_banners/259740746/1559825577
## 1057           https://pbs.twimg.com/profile_banners/369560707/1567233749
## 1058           https://pbs.twimg.com/profile_banners/188006317/1480367538
## 1059           https://pbs.twimg.com/profile_banners/446398099/1353101035
## 1060  https://pbs.twimg.com/profile_banners/970716252179136514/1520533689
## 1061 https://pbs.twimg.com/profile_banners/1060609814248779777/1541704462
## 1062                                                                 <NA>
## 1063                                                                 <NA>
## 1064          https://pbs.twimg.com/profile_banners/1931443988/1546845255
## 1065                                                                 <NA>
## 1066  https://pbs.twimg.com/profile_banners/730440421768310784/1541625655
## 1067                                                                 <NA>
## 1068  https://pbs.twimg.com/profile_banners/842791717501898754/1489800502
## 1069  https://pbs.twimg.com/profile_banners/714592222994259968/1583643211
## 1070             https://pbs.twimg.com/profile_banners/2467791/1469484132
## 1071            https://pbs.twimg.com/profile_banners/16950863/1552078601
## 1072                                                                 <NA>
## 1073 https://pbs.twimg.com/profile_banners/1107101863751499776/1568074113
## 1074           https://pbs.twimg.com/profile_banners/256487479/1500586851
## 1075           https://pbs.twimg.com/profile_banners/333134880/1578690351
## 1076           https://pbs.twimg.com/profile_banners/448315371/1536159942
## 1077            https://pbs.twimg.com/profile_banners/90760905/1549172822
## 1078            https://pbs.twimg.com/profile_banners/75475601/1574922619
## 1079          https://pbs.twimg.com/profile_banners/3381890295/1538503927
## 1080            https://pbs.twimg.com/profile_banners/14712659/1584384014
## 1081           https://pbs.twimg.com/profile_banners/565159518/1578286196
## 1082          https://pbs.twimg.com/profile_banners/1251717146/1568009956
## 1083            https://pbs.twimg.com/profile_banners/30567521/1582063771
## 1084 https://pbs.twimg.com/profile_banners/1203462567861084160/1581480349
## 1085             https://pbs.twimg.com/profile_banners/1265161/1443365819
## 1086 https://pbs.twimg.com/profile_banners/1084984854096289793/1583348281
## 1087           https://pbs.twimg.com/profile_banners/111721601/1575910872
## 1088           https://pbs.twimg.com/profile_banners/705122902/1585075340
## 1089                                                                 <NA>
## 1090            https://pbs.twimg.com/profile_banners/46045975/1532288742
## 1091                                                                 <NA>
## 1092           https://pbs.twimg.com/profile_banners/137643740/1584374529
## 1093            https://pbs.twimg.com/profile_banners/70797655/1355563306
## 1094          https://pbs.twimg.com/profile_banners/1930148504/1523912000
## 1095           https://pbs.twimg.com/profile_banners/379200688/1548002472
## 1096           https://pbs.twimg.com/profile_banners/495274213/1398231047
## 1097           https://pbs.twimg.com/profile_banners/501107987/1519975043
## 1098          https://pbs.twimg.com/profile_banners/2377450226/1439333072
## 1099                                                                 <NA>
## 1100  https://pbs.twimg.com/profile_banners/851848462576562180/1575231422
## 1101           https://pbs.twimg.com/profile_banners/454138567/1584713392
## 1102          https://pbs.twimg.com/profile_banners/2631976283/1571689400
## 1103  https://pbs.twimg.com/profile_banners/725371772481077248/1464780250
## 1104                                                                 <NA>
## 1105           https://pbs.twimg.com/profile_banners/492736486/1359320335
## 1106           https://pbs.twimg.com/profile_banners/214631950/1349478424
## 1107            https://pbs.twimg.com/profile_banners/16247920/1400878897
## 1108           https://pbs.twimg.com/profile_banners/237520337/1572909683
## 1109 https://pbs.twimg.com/profile_banners/1010481312157896707/1529752784
## 1110 https://pbs.twimg.com/profile_banners/1054332434630799363/1575458834
## 1111  https://pbs.twimg.com/profile_banners/772178581929590784/1585081603
##                                 profile_background_url
## 1     http://abs.twimg.com/images/themes/theme1/bg.png
## 2     http://abs.twimg.com/images/themes/theme1/bg.png
## 3     http://abs.twimg.com/images/themes/theme2/bg.gif
## 4     http://abs.twimg.com/images/themes/theme1/bg.png
## 5     http://abs.twimg.com/images/themes/theme5/bg.gif
## 6     http://abs.twimg.com/images/themes/theme1/bg.png
## 7    http://abs.twimg.com/images/themes/theme16/bg.gif
## 8     http://abs.twimg.com/images/themes/theme1/bg.png
## 9    http://abs.twimg.com/images/themes/theme15/bg.png
## 10                                                <NA>
## 11    http://abs.twimg.com/images/themes/theme1/bg.png
## 12    http://abs.twimg.com/images/themes/theme5/bg.gif
## 13   http://abs.twimg.com/images/themes/theme18/bg.gif
## 14    http://abs.twimg.com/images/themes/theme1/bg.png
## 15    http://abs.twimg.com/images/themes/theme1/bg.png
## 16    http://abs.twimg.com/images/themes/theme1/bg.png
## 17    http://abs.twimg.com/images/themes/theme1/bg.png
## 18    http://abs.twimg.com/images/themes/theme1/bg.png
## 19    http://abs.twimg.com/images/themes/theme1/bg.png
## 20    http://abs.twimg.com/images/themes/theme1/bg.png
## 21    http://abs.twimg.com/images/themes/theme1/bg.png
## 22    http://abs.twimg.com/images/themes/theme1/bg.png
## 23    http://abs.twimg.com/images/themes/theme1/bg.png
## 24   http://abs.twimg.com/images/themes/theme18/bg.gif
## 25                                                <NA>
## 26    http://abs.twimg.com/images/themes/theme1/bg.png
## 27    http://abs.twimg.com/images/themes/theme3/bg.gif
## 28                                                <NA>
## 29    http://abs.twimg.com/images/themes/theme1/bg.png
## 30    http://abs.twimg.com/images/themes/theme1/bg.png
## 31    http://abs.twimg.com/images/themes/theme1/bg.png
## 32    http://abs.twimg.com/images/themes/theme1/bg.png
## 33   http://abs.twimg.com/images/themes/theme14/bg.gif
## 34   http://abs.twimg.com/images/themes/theme16/bg.gif
## 35   http://abs.twimg.com/images/themes/theme18/bg.gif
## 36    http://abs.twimg.com/images/themes/theme1/bg.png
## 37    http://abs.twimg.com/images/themes/theme1/bg.png
## 38    http://abs.twimg.com/images/themes/theme1/bg.png
## 39                                                <NA>
## 40   http://abs.twimg.com/images/themes/theme16/bg.gif
## 41    http://abs.twimg.com/images/themes/theme1/bg.png
## 42   http://abs.twimg.com/images/themes/theme14/bg.gif
## 43    http://abs.twimg.com/images/themes/theme4/bg.gif
## 44                                                <NA>
## 45   http://abs.twimg.com/images/themes/theme14/bg.gif
## 46                                                <NA>
## 47    http://abs.twimg.com/images/themes/theme5/bg.gif
## 48   http://abs.twimg.com/images/themes/theme19/bg.gif
## 49    http://abs.twimg.com/images/themes/theme1/bg.png
## 50   http://abs.twimg.com/images/themes/theme18/bg.gif
## 51    http://abs.twimg.com/images/themes/theme1/bg.png
## 52    http://abs.twimg.com/images/themes/theme1/bg.png
## 53                                                <NA>
## 54    http://abs.twimg.com/images/themes/theme1/bg.png
## 55                                                <NA>
## 56                                                <NA>
## 57    http://abs.twimg.com/images/themes/theme1/bg.png
## 58    http://abs.twimg.com/images/themes/theme1/bg.png
## 59                                                <NA>
## 60                                                <NA>
## 61    http://abs.twimg.com/images/themes/theme1/bg.png
## 62    http://abs.twimg.com/images/themes/theme1/bg.png
## 63    http://abs.twimg.com/images/themes/theme1/bg.png
## 64    http://abs.twimg.com/images/themes/theme1/bg.png
## 65    http://abs.twimg.com/images/themes/theme1/bg.png
## 66   http://abs.twimg.com/images/themes/theme10/bg.gif
## 67    http://abs.twimg.com/images/themes/theme1/bg.png
## 68   http://abs.twimg.com/images/themes/theme14/bg.gif
## 69   http://abs.twimg.com/images/themes/theme14/bg.gif
## 70                                                <NA>
## 71    http://abs.twimg.com/images/themes/theme1/bg.png
## 72    http://abs.twimg.com/images/themes/theme1/bg.png
## 73                                                <NA>
## 74                                                <NA>
## 75    http://abs.twimg.com/images/themes/theme9/bg.gif
## 76    http://abs.twimg.com/images/themes/theme1/bg.png
## 77                                                <NA>
## 78    http://abs.twimg.com/images/themes/theme1/bg.png
## 79    http://abs.twimg.com/images/themes/theme1/bg.png
## 80    http://abs.twimg.com/images/themes/theme1/bg.png
## 81    http://abs.twimg.com/images/themes/theme1/bg.png
## 82    http://abs.twimg.com/images/themes/theme1/bg.png
## 83    http://abs.twimg.com/images/themes/theme1/bg.png
## 84    http://abs.twimg.com/images/themes/theme1/bg.png
## 85    http://abs.twimg.com/images/themes/theme9/bg.gif
## 86                                                <NA>
## 87    http://abs.twimg.com/images/themes/theme1/bg.png
## 88    http://abs.twimg.com/images/themes/theme1/bg.png
## 89    http://abs.twimg.com/images/themes/theme1/bg.png
## 90                                                <NA>
## 91    http://abs.twimg.com/images/themes/theme1/bg.png
## 92                                                <NA>
## 93    http://abs.twimg.com/images/themes/theme6/bg.gif
## 94    http://abs.twimg.com/images/themes/theme1/bg.png
## 95                                                <NA>
## 96    http://abs.twimg.com/images/themes/theme1/bg.png
## 97                                                <NA>
## 98    http://abs.twimg.com/images/themes/theme1/bg.png
## 99                                                <NA>
## 100   http://abs.twimg.com/images/themes/theme1/bg.png
## 101   http://abs.twimg.com/images/themes/theme1/bg.png
## 102   http://abs.twimg.com/images/themes/theme1/bg.png
## 103                                               <NA>
## 104   http://abs.twimg.com/images/themes/theme1/bg.png
## 105                                               <NA>
## 106   http://abs.twimg.com/images/themes/theme1/bg.png
## 107                                               <NA>
## 108   http://abs.twimg.com/images/themes/theme1/bg.png
## 109   http://abs.twimg.com/images/themes/theme1/bg.png
## 110                                               <NA>
## 111   http://abs.twimg.com/images/themes/theme6/bg.gif
## 112   http://abs.twimg.com/images/themes/theme1/bg.png
## 113   http://abs.twimg.com/images/themes/theme1/bg.png
## 114   http://abs.twimg.com/images/themes/theme1/bg.png
## 115   http://abs.twimg.com/images/themes/theme1/bg.png
## 116                                               <NA>
## 117  http://abs.twimg.com/images/themes/theme15/bg.png
## 118                                               <NA>
## 119   http://abs.twimg.com/images/themes/theme1/bg.png
## 120   http://abs.twimg.com/images/themes/theme1/bg.png
## 121                                               <NA>
## 122   http://abs.twimg.com/images/themes/theme1/bg.png
## 123   http://abs.twimg.com/images/themes/theme1/bg.png
## 124   http://abs.twimg.com/images/themes/theme1/bg.png
## 125                                               <NA>
## 126   http://abs.twimg.com/images/themes/theme1/bg.png
## 127                                               <NA>
## 128   http://abs.twimg.com/images/themes/theme1/bg.png
## 129   http://abs.twimg.com/images/themes/theme1/bg.png
## 130   http://abs.twimg.com/images/themes/theme1/bg.png
## 131   http://abs.twimg.com/images/themes/theme1/bg.png
## 132                                               <NA>
## 133  http://abs.twimg.com/images/themes/theme11/bg.gif
## 134   http://abs.twimg.com/images/themes/theme1/bg.png
## 135   http://abs.twimg.com/images/themes/theme1/bg.png
## 136   http://abs.twimg.com/images/themes/theme1/bg.png
## 137                                               <NA>
## 138                                               <NA>
## 139   http://abs.twimg.com/images/themes/theme1/bg.png
## 140  http://abs.twimg.com/images/themes/theme14/bg.gif
## 141   http://abs.twimg.com/images/themes/theme1/bg.png
## 142   http://abs.twimg.com/images/themes/theme1/bg.png
## 143   http://abs.twimg.com/images/themes/theme1/bg.png
## 144                                               <NA>
## 145   http://abs.twimg.com/images/themes/theme8/bg.gif
## 146  http://abs.twimg.com/images/themes/theme15/bg.png
## 147                                               <NA>
## 148   http://abs.twimg.com/images/themes/theme1/bg.png
## 149   http://abs.twimg.com/images/themes/theme1/bg.png
## 150   http://abs.twimg.com/images/themes/theme1/bg.png
## 151   http://abs.twimg.com/images/themes/theme1/bg.png
## 152   http://abs.twimg.com/images/themes/theme7/bg.gif
## 153   http://abs.twimg.com/images/themes/theme1/bg.png
## 154   http://abs.twimg.com/images/themes/theme9/bg.gif
## 155  http://abs.twimg.com/images/themes/theme18/bg.gif
## 156   http://abs.twimg.com/images/themes/theme1/bg.png
## 157   http://abs.twimg.com/images/themes/theme1/bg.png
## 158   http://abs.twimg.com/images/themes/theme6/bg.gif
## 159   http://abs.twimg.com/images/themes/theme5/bg.gif
## 160   http://abs.twimg.com/images/themes/theme1/bg.png
## 161   http://abs.twimg.com/images/themes/theme1/bg.png
## 162   http://abs.twimg.com/images/themes/theme1/bg.png
## 163                                               <NA>
## 164   http://abs.twimg.com/images/themes/theme5/bg.gif
## 165   http://abs.twimg.com/images/themes/theme1/bg.png
## 166   http://abs.twimg.com/images/themes/theme1/bg.png
## 167                                               <NA>
## 168   http://abs.twimg.com/images/themes/theme1/bg.png
## 169   http://abs.twimg.com/images/themes/theme1/bg.png
## 170                                               <NA>
## 171   http://abs.twimg.com/images/themes/theme1/bg.png
## 172                                               <NA>
## 173   http://abs.twimg.com/images/themes/theme1/bg.png
## 174                                               <NA>
## 175  http://abs.twimg.com/images/themes/theme14/bg.gif
## 176  http://abs.twimg.com/images/themes/theme14/bg.gif
## 177   http://abs.twimg.com/images/themes/theme1/bg.png
## 178   http://abs.twimg.com/images/themes/theme1/bg.png
## 179   http://abs.twimg.com/images/themes/theme6/bg.gif
## 180   http://abs.twimg.com/images/themes/theme1/bg.png
## 181   http://abs.twimg.com/images/themes/theme1/bg.png
## 182                                               <NA>
## 183   http://abs.twimg.com/images/themes/theme1/bg.png
## 184   http://abs.twimg.com/images/themes/theme1/bg.png
## 185                                               <NA>
## 186   http://abs.twimg.com/images/themes/theme1/bg.png
## 187                                               <NA>
## 188  http://abs.twimg.com/images/themes/theme14/bg.gif
## 189   http://abs.twimg.com/images/themes/theme1/bg.png
## 190  http://abs.twimg.com/images/themes/theme15/bg.png
## 191   http://abs.twimg.com/images/themes/theme1/bg.png
## 192  http://abs.twimg.com/images/themes/theme19/bg.gif
## 193   http://abs.twimg.com/images/themes/theme1/bg.png
## 194                                               <NA>
## 195  http://abs.twimg.com/images/themes/theme15/bg.png
## 196                                               <NA>
## 197                                               <NA>
## 198                                               <NA>
## 199                                               <NA>
## 200   http://abs.twimg.com/images/themes/theme1/bg.png
## 201   http://abs.twimg.com/images/themes/theme1/bg.png
## 202   http://abs.twimg.com/images/themes/theme1/bg.png
## 203   http://abs.twimg.com/images/themes/theme1/bg.png
## 204                                               <NA>
## 205   http://abs.twimg.com/images/themes/theme1/bg.png
## 206  http://abs.twimg.com/images/themes/theme15/bg.png
## 207   http://abs.twimg.com/images/themes/theme9/bg.gif
## 208                                               <NA>
## 209  http://abs.twimg.com/images/themes/theme19/bg.gif
## 210   http://abs.twimg.com/images/themes/theme1/bg.png
## 211                                               <NA>
## 212   http://abs.twimg.com/images/themes/theme5/bg.gif
## 213   http://abs.twimg.com/images/themes/theme1/bg.png
## 214  http://abs.twimg.com/images/themes/theme14/bg.gif
## 215   http://abs.twimg.com/images/themes/theme1/bg.png
## 216  http://abs.twimg.com/images/themes/theme15/bg.png
## 217   http://abs.twimg.com/images/themes/theme1/bg.png
## 218   http://abs.twimg.com/images/themes/theme1/bg.png
## 219  http://abs.twimg.com/images/themes/theme10/bg.gif
## 220   http://abs.twimg.com/images/themes/theme1/bg.png
## 221  http://abs.twimg.com/images/themes/theme14/bg.gif
## 222   http://abs.twimg.com/images/themes/theme9/bg.gif
## 223  http://abs.twimg.com/images/themes/theme14/bg.gif
## 224   http://abs.twimg.com/images/themes/theme1/bg.png
## 225                                               <NA>
## 226   http://abs.twimg.com/images/themes/theme1/bg.png
## 227                                               <NA>
## 228  http://abs.twimg.com/images/themes/theme18/bg.gif
## 229                                               <NA>
## 230                                               <NA>
## 231   http://abs.twimg.com/images/themes/theme1/bg.png
## 232   http://abs.twimg.com/images/themes/theme1/bg.png
## 233   http://abs.twimg.com/images/themes/theme1/bg.png
## 234  http://abs.twimg.com/images/themes/theme18/bg.gif
## 235   http://abs.twimg.com/images/themes/theme1/bg.png
## 236  http://abs.twimg.com/images/themes/theme10/bg.gif
## 237   http://abs.twimg.com/images/themes/theme4/bg.gif
## 238   http://abs.twimg.com/images/themes/theme1/bg.png
## 239   http://abs.twimg.com/images/themes/theme1/bg.png
## 240   http://abs.twimg.com/images/themes/theme2/bg.gif
## 241  http://abs.twimg.com/images/themes/theme13/bg.gif
## 242   http://abs.twimg.com/images/themes/theme1/bg.png
## 243                                               <NA>
## 244   http://abs.twimg.com/images/themes/theme3/bg.gif
## 245                                               <NA>
## 246                                               <NA>
## 247   http://abs.twimg.com/images/themes/theme1/bg.png
## 248   http://abs.twimg.com/images/themes/theme9/bg.gif
## 249   http://abs.twimg.com/images/themes/theme3/bg.gif
## 250   http://abs.twimg.com/images/themes/theme1/bg.png
## 251   http://abs.twimg.com/images/themes/theme1/bg.png
## 252   http://abs.twimg.com/images/themes/theme1/bg.png
## 253   http://abs.twimg.com/images/themes/theme2/bg.gif
## 254                                               <NA>
## 255   http://abs.twimg.com/images/themes/theme1/bg.png
## 256   http://abs.twimg.com/images/themes/theme1/bg.png
## 257                                               <NA>
## 258   http://abs.twimg.com/images/themes/theme1/bg.png
## 259  http://abs.twimg.com/images/themes/theme19/bg.gif
## 260   http://abs.twimg.com/images/themes/theme5/bg.gif
## 261   http://abs.twimg.com/images/themes/theme1/bg.png
## 262                                               <NA>
## 263                                               <NA>
## 264   http://abs.twimg.com/images/themes/theme1/bg.png
## 265   http://abs.twimg.com/images/themes/theme5/bg.gif
## 266                                               <NA>
## 267   http://abs.twimg.com/images/themes/theme7/bg.gif
## 268   http://abs.twimg.com/images/themes/theme1/bg.png
## 269   http://abs.twimg.com/images/themes/theme1/bg.png
## 270   http://abs.twimg.com/images/themes/theme1/bg.png
## 271   http://abs.twimg.com/images/themes/theme1/bg.png
## 272   http://abs.twimg.com/images/themes/theme1/bg.png
## 273   http://abs.twimg.com/images/themes/theme1/bg.png
## 274   http://abs.twimg.com/images/themes/theme1/bg.png
## 275   http://abs.twimg.com/images/themes/theme1/bg.png
## 276   http://abs.twimg.com/images/themes/theme1/bg.png
## 277                                               <NA>
## 278   http://abs.twimg.com/images/themes/theme5/bg.gif
## 279   http://abs.twimg.com/images/themes/theme7/bg.gif
## 280   http://abs.twimg.com/images/themes/theme1/bg.png
## 281   http://abs.twimg.com/images/themes/theme1/bg.png
## 282                                               <NA>
## 283   http://abs.twimg.com/images/themes/theme1/bg.png
## 284   http://abs.twimg.com/images/themes/theme1/bg.png
## 285                                               <NA>
## 286  http://abs.twimg.com/images/themes/theme14/bg.gif
## 287   http://abs.twimg.com/images/themes/theme1/bg.png
## 288                                               <NA>
## 289   http://abs.twimg.com/images/themes/theme4/bg.gif
## 290                                               <NA>
## 291                                               <NA>
## 292   http://abs.twimg.com/images/themes/theme1/bg.png
## 293                                               <NA>
## 294                                               <NA>
## 295   http://abs.twimg.com/images/themes/theme1/bg.png
## 296   http://abs.twimg.com/images/themes/theme2/bg.gif
## 297   http://abs.twimg.com/images/themes/theme6/bg.gif
## 298   http://abs.twimg.com/images/themes/theme1/bg.png
## 299   http://abs.twimg.com/images/themes/theme1/bg.png
## 300   http://abs.twimg.com/images/themes/theme1/bg.png
## 301   http://abs.twimg.com/images/themes/theme1/bg.png
## 302                                               <NA>
## 303                                               <NA>
## 304  http://abs.twimg.com/images/themes/theme10/bg.gif
## 305   http://abs.twimg.com/images/themes/theme1/bg.png
## 306                                               <NA>
## 307   http://abs.twimg.com/images/themes/theme6/bg.gif
## 308   http://abs.twimg.com/images/themes/theme1/bg.png
## 309                                               <NA>
## 310   http://abs.twimg.com/images/themes/theme1/bg.png
## 311   http://abs.twimg.com/images/themes/theme9/bg.gif
## 312                                               <NA>
## 313   http://abs.twimg.com/images/themes/theme8/bg.gif
## 314   http://abs.twimg.com/images/themes/theme1/bg.png
## 315   http://abs.twimg.com/images/themes/theme1/bg.png
## 316   http://abs.twimg.com/images/themes/theme1/bg.png
## 317   http://abs.twimg.com/images/themes/theme1/bg.png
## 318   http://abs.twimg.com/images/themes/theme1/bg.png
## 319   http://abs.twimg.com/images/themes/theme1/bg.png
## 320                                               <NA>
## 321   http://abs.twimg.com/images/themes/theme1/bg.png
## 322   http://abs.twimg.com/images/themes/theme3/bg.gif
## 323                                               <NA>
## 324                                               <NA>
## 325                                               <NA>
## 326   http://abs.twimg.com/images/themes/theme1/bg.png
## 327  http://abs.twimg.com/images/themes/theme14/bg.gif
## 328                                               <NA>
## 329   http://abs.twimg.com/images/themes/theme1/bg.png
## 330                                               <NA>
## 331  http://abs.twimg.com/images/themes/theme15/bg.png
## 332                                               <NA>
## 333   http://abs.twimg.com/images/themes/theme1/bg.png
## 334   http://abs.twimg.com/images/themes/theme1/bg.png
## 335   http://abs.twimg.com/images/themes/theme9/bg.gif
## 336                                               <NA>
## 337  http://abs.twimg.com/images/themes/theme19/bg.gif
## 338   http://abs.twimg.com/images/themes/theme1/bg.png
## 339   http://abs.twimg.com/images/themes/theme8/bg.gif
## 340                                               <NA>
## 341   http://abs.twimg.com/images/themes/theme4/bg.gif
## 342  http://abs.twimg.com/images/themes/theme14/bg.gif
## 343   http://abs.twimg.com/images/themes/theme1/bg.png
## 344   http://abs.twimg.com/images/themes/theme7/bg.gif
## 345                                               <NA>
## 346                                               <NA>
## 347   http://abs.twimg.com/images/themes/theme6/bg.gif
## 348                                               <NA>
## 349                                               <NA>
## 350   http://abs.twimg.com/images/themes/theme1/bg.png
## 351                                               <NA>
## 352  http://abs.twimg.com/images/themes/theme18/bg.gif
## 353   http://abs.twimg.com/images/themes/theme1/bg.png
## 354   http://abs.twimg.com/images/themes/theme1/bg.png
## 355   http://abs.twimg.com/images/themes/theme1/bg.png
## 356  http://abs.twimg.com/images/themes/theme17/bg.gif
## 357  http://abs.twimg.com/images/themes/theme14/bg.gif
## 358   http://abs.twimg.com/images/themes/theme1/bg.png
## 359   http://abs.twimg.com/images/themes/theme1/bg.png
## 360   http://abs.twimg.com/images/themes/theme1/bg.png
## 361   http://abs.twimg.com/images/themes/theme1/bg.png
## 362                                               <NA>
## 363   http://abs.twimg.com/images/themes/theme9/bg.gif
## 364                                               <NA>
## 365   http://abs.twimg.com/images/themes/theme1/bg.png
## 366   http://abs.twimg.com/images/themes/theme1/bg.png
## 367                                               <NA>
## 368   http://abs.twimg.com/images/themes/theme1/bg.png
## 369  http://abs.twimg.com/images/themes/theme15/bg.png
## 370                                               <NA>
## 371  http://abs.twimg.com/images/themes/theme14/bg.gif
## 372   http://abs.twimg.com/images/themes/theme1/bg.png
## 373   http://abs.twimg.com/images/themes/theme1/bg.png
## 374   http://abs.twimg.com/images/themes/theme1/bg.png
## 375  http://abs.twimg.com/images/themes/theme15/bg.png
## 376   http://abs.twimg.com/images/themes/theme1/bg.png
## 377                                               <NA>
## 378                                               <NA>
## 379   http://abs.twimg.com/images/themes/theme2/bg.gif
## 380   http://abs.twimg.com/images/themes/theme9/bg.gif
## 381  http://abs.twimg.com/images/themes/theme14/bg.gif
## 382   http://abs.twimg.com/images/themes/theme1/bg.png
## 383                                               <NA>
## 384                                               <NA>
## 385   http://abs.twimg.com/images/themes/theme1/bg.png
## 386  http://abs.twimg.com/images/themes/theme11/bg.gif
## 387   http://abs.twimg.com/images/themes/theme1/bg.png
## 388                                               <NA>
## 389   http://abs.twimg.com/images/themes/theme1/bg.png
## 390                                               <NA>
## 391   http://abs.twimg.com/images/themes/theme1/bg.png
## 392                                               <NA>
## 393  http://abs.twimg.com/images/themes/theme16/bg.gif
## 394   http://abs.twimg.com/images/themes/theme1/bg.png
## 395                                               <NA>
## 396   http://abs.twimg.com/images/themes/theme1/bg.png
## 397   http://abs.twimg.com/images/themes/theme8/bg.gif
## 398   http://abs.twimg.com/images/themes/theme6/bg.gif
## 399   http://abs.twimg.com/images/themes/theme1/bg.png
## 400   http://abs.twimg.com/images/themes/theme2/bg.gif
## 401  http://abs.twimg.com/images/themes/theme15/bg.png
## 402                                               <NA>
## 403   http://abs.twimg.com/images/themes/theme1/bg.png
## 404   http://abs.twimg.com/images/themes/theme1/bg.png
## 405   http://abs.twimg.com/images/themes/theme1/bg.png
## 406  http://abs.twimg.com/images/themes/theme15/bg.png
## 407   http://abs.twimg.com/images/themes/theme1/bg.png
## 408   http://abs.twimg.com/images/themes/theme1/bg.png
## 409   http://abs.twimg.com/images/themes/theme1/bg.png
## 410  http://abs.twimg.com/images/themes/theme15/bg.png
## 411   http://abs.twimg.com/images/themes/theme1/bg.png
## 412   http://abs.twimg.com/images/themes/theme1/bg.png
## 413   http://abs.twimg.com/images/themes/theme1/bg.png
## 414   http://abs.twimg.com/images/themes/theme1/bg.png
## 415                                               <NA>
## 416   http://abs.twimg.com/images/themes/theme1/bg.png
## 417   http://abs.twimg.com/images/themes/theme1/bg.png
## 418   http://abs.twimg.com/images/themes/theme1/bg.png
## 419   http://abs.twimg.com/images/themes/theme1/bg.png
## 420  http://abs.twimg.com/images/themes/theme18/bg.gif
## 421   http://abs.twimg.com/images/themes/theme1/bg.png
## 422   http://abs.twimg.com/images/themes/theme4/bg.gif
## 423   http://abs.twimg.com/images/themes/theme7/bg.gif
## 424   http://abs.twimg.com/images/themes/theme1/bg.png
## 425   http://abs.twimg.com/images/themes/theme1/bg.png
## 426                                               <NA>
## 427                                               <NA>
## 428   http://abs.twimg.com/images/themes/theme1/bg.png
## 429   http://abs.twimg.com/images/themes/theme3/bg.gif
## 430   http://abs.twimg.com/images/themes/theme1/bg.png
## 431   http://abs.twimg.com/images/themes/theme1/bg.png
## 432   http://abs.twimg.com/images/themes/theme1/bg.png
## 433                                               <NA>
## 434   http://abs.twimg.com/images/themes/theme1/bg.png
## 435   http://abs.twimg.com/images/themes/theme1/bg.png
## 436                                               <NA>
## 437                                               <NA>
## 438   http://abs.twimg.com/images/themes/theme8/bg.gif
## 439                                               <NA>
## 440   http://abs.twimg.com/images/themes/theme1/bg.png
## 441   http://abs.twimg.com/images/themes/theme1/bg.png
## 442   http://abs.twimg.com/images/themes/theme1/bg.png
## 443   http://abs.twimg.com/images/themes/theme9/bg.gif
## 444   http://abs.twimg.com/images/themes/theme7/bg.gif
## 445   http://abs.twimg.com/images/themes/theme7/bg.gif
## 446  http://abs.twimg.com/images/themes/theme17/bg.gif
## 447   http://abs.twimg.com/images/themes/theme9/bg.gif
## 448                                               <NA>
## 449   http://abs.twimg.com/images/themes/theme1/bg.png
## 450   http://abs.twimg.com/images/themes/theme9/bg.gif
## 451   http://abs.twimg.com/images/themes/theme1/bg.png
## 452   http://abs.twimg.com/images/themes/theme1/bg.png
## 453  http://abs.twimg.com/images/themes/theme14/bg.gif
## 454   http://abs.twimg.com/images/themes/theme1/bg.png
## 455   http://abs.twimg.com/images/themes/theme1/bg.png
## 456                                               <NA>
## 457                                               <NA>
## 458                                               <NA>
## 459   http://abs.twimg.com/images/themes/theme1/bg.png
## 460                                               <NA>
## 461  http://abs.twimg.com/images/themes/theme12/bg.gif
## 462   http://abs.twimg.com/images/themes/theme1/bg.png
## 463                                               <NA>
## 464   http://abs.twimg.com/images/themes/theme9/bg.gif
## 465   http://abs.twimg.com/images/themes/theme1/bg.png
## 466   http://abs.twimg.com/images/themes/theme1/bg.png
## 467   http://abs.twimg.com/images/themes/theme1/bg.png
## 468                                               <NA>
## 469                                               <NA>
## 470  http://abs.twimg.com/images/themes/theme19/bg.gif
## 471  http://abs.twimg.com/images/themes/theme18/bg.gif
## 472                                               <NA>
## 473   http://abs.twimg.com/images/themes/theme1/bg.png
## 474   http://abs.twimg.com/images/themes/theme4/bg.gif
## 475  http://abs.twimg.com/images/themes/theme15/bg.png
## 476   http://abs.twimg.com/images/themes/theme1/bg.png
## 477   http://abs.twimg.com/images/themes/theme1/bg.png
## 478                                               <NA>
## 479   http://abs.twimg.com/images/themes/theme1/bg.png
## 480                                               <NA>
## 481   http://abs.twimg.com/images/themes/theme8/bg.gif
## 482                                               <NA>
## 483  http://abs.twimg.com/images/themes/theme16/bg.gif
## 484  http://abs.twimg.com/images/themes/theme10/bg.gif
## 485   http://abs.twimg.com/images/themes/theme1/bg.png
## 486   http://abs.twimg.com/images/themes/theme1/bg.png
## 487   http://abs.twimg.com/images/themes/theme1/bg.png
## 488   http://abs.twimg.com/images/themes/theme1/bg.png
## 489  http://abs.twimg.com/images/themes/theme14/bg.gif
## 490   http://abs.twimg.com/images/themes/theme1/bg.png
## 491   http://abs.twimg.com/images/themes/theme1/bg.png
## 492                                               <NA>
## 493   http://abs.twimg.com/images/themes/theme1/bg.png
## 494   http://abs.twimg.com/images/themes/theme1/bg.png
## 495   http://abs.twimg.com/images/themes/theme1/bg.png
## 496   http://abs.twimg.com/images/themes/theme1/bg.png
## 497   http://abs.twimg.com/images/themes/theme5/bg.gif
## 498   http://abs.twimg.com/images/themes/theme1/bg.png
## 499  http://abs.twimg.com/images/themes/theme17/bg.gif
## 500   http://abs.twimg.com/images/themes/theme1/bg.png
## 501                                               <NA>
## 502   http://abs.twimg.com/images/themes/theme1/bg.png
## 503   http://abs.twimg.com/images/themes/theme1/bg.png
## 504   http://abs.twimg.com/images/themes/theme1/bg.png
## 505  http://abs.twimg.com/images/themes/theme14/bg.gif
## 506   http://abs.twimg.com/images/themes/theme8/bg.gif
## 507                                               <NA>
## 508   http://abs.twimg.com/images/themes/theme1/bg.png
## 509                                               <NA>
## 510                                               <NA>
## 511   http://abs.twimg.com/images/themes/theme1/bg.png
## 512   http://abs.twimg.com/images/themes/theme1/bg.png
## 513   http://abs.twimg.com/images/themes/theme1/bg.png
## 514                                               <NA>
## 515   http://abs.twimg.com/images/themes/theme1/bg.png
## 516                                               <NA>
## 517  http://abs.twimg.com/images/themes/theme13/bg.gif
## 518                                               <NA>
## 519   http://abs.twimg.com/images/themes/theme1/bg.png
## 520                                               <NA>
## 521  http://abs.twimg.com/images/themes/theme14/bg.gif
## 522                                               <NA>
## 523   http://abs.twimg.com/images/themes/theme1/bg.png
## 524   http://abs.twimg.com/images/themes/theme1/bg.png
## 525   http://abs.twimg.com/images/themes/theme1/bg.png
## 526                                               <NA>
## 527   http://abs.twimg.com/images/themes/theme1/bg.png
## 528                                               <NA>
## 529   http://abs.twimg.com/images/themes/theme1/bg.png
## 530  http://abs.twimg.com/images/themes/theme18/bg.gif
## 531                                               <NA>
## 532   http://abs.twimg.com/images/themes/theme1/bg.png
## 533   http://abs.twimg.com/images/themes/theme1/bg.png
## 534   http://abs.twimg.com/images/themes/theme1/bg.png
## 535   http://abs.twimg.com/images/themes/theme1/bg.png
## 536   http://abs.twimg.com/images/themes/theme9/bg.gif
## 537   http://abs.twimg.com/images/themes/theme1/bg.png
## 538                                               <NA>
## 539                                               <NA>
## 540   http://abs.twimg.com/images/themes/theme1/bg.png
## 541   http://abs.twimg.com/images/themes/theme1/bg.png
## 542                                               <NA>
## 543                                               <NA>
## 544   http://abs.twimg.com/images/themes/theme9/bg.gif
## 545   http://abs.twimg.com/images/themes/theme1/bg.png
## 546   http://abs.twimg.com/images/themes/theme1/bg.png
## 547   http://abs.twimg.com/images/themes/theme9/bg.gif
## 548  http://abs.twimg.com/images/themes/theme14/bg.gif
## 549   http://abs.twimg.com/images/themes/theme1/bg.png
## 550   http://abs.twimg.com/images/themes/theme4/bg.gif
## 551   http://abs.twimg.com/images/themes/theme1/bg.png
## 552   http://abs.twimg.com/images/themes/theme5/bg.gif
## 553   http://abs.twimg.com/images/themes/theme1/bg.png
## 554                                               <NA>
## 555   http://abs.twimg.com/images/themes/theme1/bg.png
## 556   http://abs.twimg.com/images/themes/theme1/bg.png
## 557  http://abs.twimg.com/images/themes/theme14/bg.gif
## 558                                               <NA>
## 559   http://abs.twimg.com/images/themes/theme1/bg.png
## 560   http://abs.twimg.com/images/themes/theme9/bg.gif
## 561                                               <NA>
## 562   http://abs.twimg.com/images/themes/theme1/bg.png
## 563   http://abs.twimg.com/images/themes/theme1/bg.png
## 564                                               <NA>
## 565   http://abs.twimg.com/images/themes/theme1/bg.png
## 566   http://abs.twimg.com/images/themes/theme1/bg.png
## 567   http://abs.twimg.com/images/themes/theme1/bg.png
## 568                                               <NA>
## 569   http://abs.twimg.com/images/themes/theme1/bg.png
## 570                                               <NA>
## 571   http://abs.twimg.com/images/themes/theme9/bg.gif
## 572   http://abs.twimg.com/images/themes/theme4/bg.gif
## 573                                               <NA>
## 574   http://abs.twimg.com/images/themes/theme1/bg.png
## 575   http://abs.twimg.com/images/themes/theme4/bg.gif
## 576                                               <NA>
## 577  http://abs.twimg.com/images/themes/theme15/bg.png
## 578                                               <NA>
## 579   http://abs.twimg.com/images/themes/theme1/bg.png
## 580   http://abs.twimg.com/images/themes/theme1/bg.png
## 581                                               <NA>
## 582  http://abs.twimg.com/images/themes/theme13/bg.gif
## 583   http://abs.twimg.com/images/themes/theme1/bg.png
## 584                                               <NA>
## 585   http://abs.twimg.com/images/themes/theme1/bg.png
## 586   http://abs.twimg.com/images/themes/theme1/bg.png
## 587   http://abs.twimg.com/images/themes/theme1/bg.png
## 588   http://abs.twimg.com/images/themes/theme6/bg.gif
## 589  http://abs.twimg.com/images/themes/theme19/bg.gif
## 590   http://abs.twimg.com/images/themes/theme1/bg.png
## 591   http://abs.twimg.com/images/themes/theme9/bg.gif
## 592   http://abs.twimg.com/images/themes/theme1/bg.png
## 593   http://abs.twimg.com/images/themes/theme1/bg.png
## 594   http://abs.twimg.com/images/themes/theme1/bg.png
## 595   http://abs.twimg.com/images/themes/theme1/bg.png
## 596   http://abs.twimg.com/images/themes/theme1/bg.png
## 597                                               <NA>
## 598   http://abs.twimg.com/images/themes/theme1/bg.png
## 599                                               <NA>
## 600   http://abs.twimg.com/images/themes/theme1/bg.png
## 601   http://abs.twimg.com/images/themes/theme1/bg.png
## 602                                               <NA>
## 603                                               <NA>
## 604   http://abs.twimg.com/images/themes/theme1/bg.png
## 605                                               <NA>
## 606   http://abs.twimg.com/images/themes/theme4/bg.gif
## 607   http://abs.twimg.com/images/themes/theme1/bg.png
## 608   http://abs.twimg.com/images/themes/theme1/bg.png
## 609   http://abs.twimg.com/images/themes/theme2/bg.gif
## 610   http://abs.twimg.com/images/themes/theme1/bg.png
## 611   http://abs.twimg.com/images/themes/theme1/bg.png
## 612                                               <NA>
## 613   http://abs.twimg.com/images/themes/theme1/bg.png
## 614   http://abs.twimg.com/images/themes/theme1/bg.png
## 615   http://abs.twimg.com/images/themes/theme1/bg.png
## 616   http://abs.twimg.com/images/themes/theme7/bg.gif
## 617  http://abs.twimg.com/images/themes/theme19/bg.gif
## 618   http://abs.twimg.com/images/themes/theme1/bg.png
## 619  http://abs.twimg.com/images/themes/theme12/bg.gif
## 620   http://abs.twimg.com/images/themes/theme1/bg.png
## 621                                               <NA>
## 622  http://abs.twimg.com/images/themes/theme15/bg.png
## 623   http://abs.twimg.com/images/themes/theme1/bg.png
## 624   http://abs.twimg.com/images/themes/theme1/bg.png
## 625   http://abs.twimg.com/images/themes/theme1/bg.png
## 626   http://abs.twimg.com/images/themes/theme1/bg.png
## 627   http://abs.twimg.com/images/themes/theme1/bg.png
## 628   http://abs.twimg.com/images/themes/theme1/bg.png
## 629                                               <NA>
## 630   http://abs.twimg.com/images/themes/theme1/bg.png
## 631  http://abs.twimg.com/images/themes/theme10/bg.gif
## 632   http://abs.twimg.com/images/themes/theme1/bg.png
## 633                                               <NA>
## 634   http://abs.twimg.com/images/themes/theme1/bg.png
## 635                                               <NA>
## 636   http://abs.twimg.com/images/themes/theme1/bg.png
## 637  http://abs.twimg.com/images/themes/theme10/bg.gif
## 638   http://abs.twimg.com/images/themes/theme1/bg.png
## 639   http://abs.twimg.com/images/themes/theme1/bg.png
## 640                                               <NA>
## 641                                               <NA>
## 642                                               <NA>
## 643                                               <NA>
## 644   http://abs.twimg.com/images/themes/theme1/bg.png
## 645                                               <NA>
## 646                                               <NA>
## 647  http://abs.twimg.com/images/themes/theme15/bg.png
## 648  http://abs.twimg.com/images/themes/theme16/bg.gif
## 649   http://abs.twimg.com/images/themes/theme1/bg.png
## 650  http://abs.twimg.com/images/themes/theme11/bg.gif
## 651  http://abs.twimg.com/images/themes/theme15/bg.png
## 652  http://abs.twimg.com/images/themes/theme14/bg.gif
## 653                                               <NA>
## 654   http://abs.twimg.com/images/themes/theme1/bg.png
## 655   http://abs.twimg.com/images/themes/theme1/bg.png
## 656                                               <NA>
## 657                                               <NA>
## 658   http://abs.twimg.com/images/themes/theme1/bg.png
## 659  http://abs.twimg.com/images/themes/theme14/bg.gif
## 660   http://abs.twimg.com/images/themes/theme1/bg.png
## 661   http://abs.twimg.com/images/themes/theme1/bg.png
## 662   http://abs.twimg.com/images/themes/theme1/bg.png
## 663   http://abs.twimg.com/images/themes/theme1/bg.png
## 664   http://abs.twimg.com/images/themes/theme7/bg.gif
## 665  http://abs.twimg.com/images/themes/theme16/bg.gif
## 666  http://abs.twimg.com/images/themes/theme10/bg.gif
## 667   http://abs.twimg.com/images/themes/theme1/bg.png
## 668  http://abs.twimg.com/images/themes/theme18/bg.gif
## 669                                               <NA>
## 670                                               <NA>
## 671                                               <NA>
## 672  http://abs.twimg.com/images/themes/theme13/bg.gif
## 673   http://abs.twimg.com/images/themes/theme1/bg.png
## 674  http://abs.twimg.com/images/themes/theme16/bg.gif
## 675   http://abs.twimg.com/images/themes/theme6/bg.gif
## 676                                               <NA>
## 677                                               <NA>
## 678   http://abs.twimg.com/images/themes/theme1/bg.png
## 679                                               <NA>
## 680   http://abs.twimg.com/images/themes/theme1/bg.png
## 681   http://abs.twimg.com/images/themes/theme1/bg.png
## 682                                               <NA>
## 683   http://abs.twimg.com/images/themes/theme1/bg.png
## 684   http://abs.twimg.com/images/themes/theme1/bg.png
## 685  http://abs.twimg.com/images/themes/theme15/bg.png
## 686   http://abs.twimg.com/images/themes/theme1/bg.png
## 687  http://abs.twimg.com/images/themes/theme14/bg.gif
## 688   http://abs.twimg.com/images/themes/theme9/bg.gif
## 689                                               <NA>
## 690   http://abs.twimg.com/images/themes/theme1/bg.png
## 691                                               <NA>
## 692   http://abs.twimg.com/images/themes/theme1/bg.png
## 693                                               <NA>
## 694   http://abs.twimg.com/images/themes/theme1/bg.png
## 695   http://abs.twimg.com/images/themes/theme1/bg.png
## 696  http://abs.twimg.com/images/themes/theme18/bg.gif
## 697   http://abs.twimg.com/images/themes/theme1/bg.png
## 698   http://abs.twimg.com/images/themes/theme1/bg.png
## 699                                               <NA>
## 700   http://abs.twimg.com/images/themes/theme1/bg.png
## 701   http://abs.twimg.com/images/themes/theme1/bg.png
## 702                                               <NA>
## 703                                               <NA>
## 704                                               <NA>
## 705   http://abs.twimg.com/images/themes/theme1/bg.png
## 706                                               <NA>
## 707                                               <NA>
## 708  http://abs.twimg.com/images/themes/theme13/bg.gif
## 709                                               <NA>
## 710   http://abs.twimg.com/images/themes/theme4/bg.gif
## 711                                               <NA>
## 712   http://abs.twimg.com/images/themes/theme1/bg.png
## 713   http://abs.twimg.com/images/themes/theme1/bg.png
## 714   http://abs.twimg.com/images/themes/theme1/bg.png
## 715   http://abs.twimg.com/images/themes/theme1/bg.png
## 716   http://abs.twimg.com/images/themes/theme1/bg.png
## 717   http://abs.twimg.com/images/themes/theme1/bg.png
## 718                                               <NA>
## 719   http://abs.twimg.com/images/themes/theme1/bg.png
## 720  http://abs.twimg.com/images/themes/theme19/bg.gif
## 721  http://abs.twimg.com/images/themes/theme13/bg.gif
## 722   http://abs.twimg.com/images/themes/theme6/bg.gif
## 723   http://abs.twimg.com/images/themes/theme1/bg.png
## 724   http://abs.twimg.com/images/themes/theme1/bg.png
## 725   http://abs.twimg.com/images/themes/theme1/bg.png
## 726  http://abs.twimg.com/images/themes/theme14/bg.gif
## 727   http://abs.twimg.com/images/themes/theme1/bg.png
## 728   http://abs.twimg.com/images/themes/theme1/bg.png
## 729  http://abs.twimg.com/images/themes/theme11/bg.gif
## 730  http://abs.twimg.com/images/themes/theme10/bg.gif
## 731  http://abs.twimg.com/images/themes/theme10/bg.gif
## 732                                               <NA>
## 733   http://abs.twimg.com/images/themes/theme1/bg.png
## 734   http://abs.twimg.com/images/themes/theme1/bg.png
## 735  http://abs.twimg.com/images/themes/theme15/bg.png
## 736   http://abs.twimg.com/images/themes/theme2/bg.gif
## 737                                               <NA>
## 738                                               <NA>
## 739   http://abs.twimg.com/images/themes/theme1/bg.png
## 740   http://abs.twimg.com/images/themes/theme1/bg.png
## 741  http://abs.twimg.com/images/themes/theme14/bg.gif
## 742   http://abs.twimg.com/images/themes/theme1/bg.png
## 743   http://abs.twimg.com/images/themes/theme4/bg.gif
## 744                                               <NA>
## 745   http://abs.twimg.com/images/themes/theme2/bg.gif
## 746  http://abs.twimg.com/images/themes/theme12/bg.gif
## 747   http://abs.twimg.com/images/themes/theme5/bg.gif
## 748                                               <NA>
## 749   http://abs.twimg.com/images/themes/theme1/bg.png
## 750   http://abs.twimg.com/images/themes/theme3/bg.gif
## 751                                               <NA>
## 752                                               <NA>
## 753   http://abs.twimg.com/images/themes/theme1/bg.png
## 754   http://abs.twimg.com/images/themes/theme9/bg.gif
## 755  http://abs.twimg.com/images/themes/theme18/bg.gif
## 756   http://abs.twimg.com/images/themes/theme1/bg.png
## 757                                               <NA>
## 758                                               <NA>
## 759  http://abs.twimg.com/images/themes/theme15/bg.png
## 760                                               <NA>
## 761                                               <NA>
## 762   http://abs.twimg.com/images/themes/theme1/bg.png
## 763   http://abs.twimg.com/images/themes/theme1/bg.png
## 764   http://abs.twimg.com/images/themes/theme1/bg.png
## 765   http://abs.twimg.com/images/themes/theme1/bg.png
## 766                                               <NA>
## 767   http://abs.twimg.com/images/themes/theme1/bg.png
## 768   http://abs.twimg.com/images/themes/theme1/bg.png
## 769   http://abs.twimg.com/images/themes/theme9/bg.gif
## 770  http://abs.twimg.com/images/themes/theme14/bg.gif
## 771   http://abs.twimg.com/images/themes/theme1/bg.png
## 772                                               <NA>
## 773                                               <NA>
## 774                                               <NA>
## 775                                               <NA>
## 776   http://abs.twimg.com/images/themes/theme1/bg.png
## 777   http://abs.twimg.com/images/themes/theme2/bg.gif
## 778                                               <NA>
## 779  http://abs.twimg.com/images/themes/theme18/bg.gif
## 780   http://abs.twimg.com/images/themes/theme1/bg.png
## 781                                               <NA>
## 782                                               <NA>
## 783   http://abs.twimg.com/images/themes/theme1/bg.png
## 784   http://abs.twimg.com/images/themes/theme1/bg.png
## 785   http://abs.twimg.com/images/themes/theme1/bg.png
## 786  http://abs.twimg.com/images/themes/theme14/bg.gif
## 787   http://abs.twimg.com/images/themes/theme1/bg.png
## 788   http://abs.twimg.com/images/themes/theme1/bg.png
## 789   http://abs.twimg.com/images/themes/theme1/bg.png
## 790   http://abs.twimg.com/images/themes/theme1/bg.png
## 791                                               <NA>
## 792                                               <NA>
## 793                                               <NA>
## 794   http://abs.twimg.com/images/themes/theme1/bg.png
## 795   http://abs.twimg.com/images/themes/theme9/bg.gif
## 796                                               <NA>
## 797   http://abs.twimg.com/images/themes/theme1/bg.png
## 798  http://abs.twimg.com/images/themes/theme13/bg.gif
## 799   http://abs.twimg.com/images/themes/theme1/bg.png
## 800   http://abs.twimg.com/images/themes/theme9/bg.gif
## 801   http://abs.twimg.com/images/themes/theme1/bg.png
## 802   http://abs.twimg.com/images/themes/theme1/bg.png
## 803   http://abs.twimg.com/images/themes/theme1/bg.png
## 804   http://abs.twimg.com/images/themes/theme1/bg.png
## 805   http://abs.twimg.com/images/themes/theme1/bg.png
## 806                                               <NA>
## 807  http://abs.twimg.com/images/themes/theme15/bg.png
## 808                                               <NA>
## 809   http://abs.twimg.com/images/themes/theme1/bg.png
## 810   http://abs.twimg.com/images/themes/theme1/bg.png
## 811   http://abs.twimg.com/images/themes/theme1/bg.png
## 812   http://abs.twimg.com/images/themes/theme5/bg.gif
## 813   http://abs.twimg.com/images/themes/theme1/bg.png
## 814   http://abs.twimg.com/images/themes/theme1/bg.png
## 815   http://abs.twimg.com/images/themes/theme3/bg.gif
## 816   http://abs.twimg.com/images/themes/theme1/bg.png
## 817   http://abs.twimg.com/images/themes/theme1/bg.png
## 818   http://abs.twimg.com/images/themes/theme1/bg.png
## 819                                               <NA>
## 820                                               <NA>
## 821  http://abs.twimg.com/images/themes/theme14/bg.gif
## 822   http://abs.twimg.com/images/themes/theme1/bg.png
## 823  http://abs.twimg.com/images/themes/theme10/bg.gif
## 824   http://abs.twimg.com/images/themes/theme1/bg.png
## 825   http://abs.twimg.com/images/themes/theme2/bg.gif
## 826   http://abs.twimg.com/images/themes/theme5/bg.gif
## 827                                               <NA>
## 828   http://abs.twimg.com/images/themes/theme1/bg.png
## 829   http://abs.twimg.com/images/themes/theme1/bg.png
## 830   http://abs.twimg.com/images/themes/theme9/bg.gif
## 831  http://abs.twimg.com/images/themes/theme14/bg.gif
## 832   http://abs.twimg.com/images/themes/theme1/bg.png
## 833   http://abs.twimg.com/images/themes/theme1/bg.png
## 834                                               <NA>
## 835   http://abs.twimg.com/images/themes/theme1/bg.png
## 836   http://abs.twimg.com/images/themes/theme1/bg.png
## 837                                               <NA>
## 838  http://abs.twimg.com/images/themes/theme14/bg.gif
## 839   http://abs.twimg.com/images/themes/theme1/bg.png
## 840  http://abs.twimg.com/images/themes/theme14/bg.gif
## 841   http://abs.twimg.com/images/themes/theme1/bg.png
## 842   http://abs.twimg.com/images/themes/theme1/bg.png
## 843  http://abs.twimg.com/images/themes/theme14/bg.gif
## 844   http://abs.twimg.com/images/themes/theme1/bg.png
## 845   http://abs.twimg.com/images/themes/theme1/bg.png
## 846   http://abs.twimg.com/images/themes/theme1/bg.png
## 847   http://abs.twimg.com/images/themes/theme1/bg.png
## 848                                               <NA>
## 849   http://abs.twimg.com/images/themes/theme1/bg.png
## 850   http://abs.twimg.com/images/themes/theme9/bg.gif
## 851  http://abs.twimg.com/images/themes/theme13/bg.gif
## 852  http://abs.twimg.com/images/themes/theme14/bg.gif
## 853   http://abs.twimg.com/images/themes/theme1/bg.png
## 854   http://abs.twimg.com/images/themes/theme1/bg.png
## 855   http://abs.twimg.com/images/themes/theme1/bg.png
## 856                                               <NA>
## 857   http://abs.twimg.com/images/themes/theme8/bg.gif
## 858   http://abs.twimg.com/images/themes/theme1/bg.png
## 859   http://abs.twimg.com/images/themes/theme1/bg.png
## 860   http://abs.twimg.com/images/themes/theme1/bg.png
## 861   http://abs.twimg.com/images/themes/theme1/bg.png
## 862   http://abs.twimg.com/images/themes/theme1/bg.png
## 863   http://abs.twimg.com/images/themes/theme1/bg.png
## 864   http://abs.twimg.com/images/themes/theme1/bg.png
## 865   http://abs.twimg.com/images/themes/theme1/bg.png
## 866   http://abs.twimg.com/images/themes/theme1/bg.png
## 867   http://abs.twimg.com/images/themes/theme6/bg.gif
## 868   http://abs.twimg.com/images/themes/theme1/bg.png
## 869   http://abs.twimg.com/images/themes/theme1/bg.png
## 870                                               <NA>
## 871                                               <NA>
## 872                                               <NA>
## 873   http://abs.twimg.com/images/themes/theme1/bg.png
## 874                                               <NA>
## 875   http://abs.twimg.com/images/themes/theme8/bg.gif
## 876   http://abs.twimg.com/images/themes/theme1/bg.png
## 877                                               <NA>
## 878                                               <NA>
## 879   http://abs.twimg.com/images/themes/theme1/bg.png
## 880   http://abs.twimg.com/images/themes/theme1/bg.png
## 881   http://abs.twimg.com/images/themes/theme1/bg.png
## 882   http://abs.twimg.com/images/themes/theme6/bg.gif
## 883   http://abs.twimg.com/images/themes/theme1/bg.png
## 884  http://abs.twimg.com/images/themes/theme15/bg.png
## 885   http://abs.twimg.com/images/themes/theme1/bg.png
## 886   http://abs.twimg.com/images/themes/theme1/bg.png
## 887                                               <NA>
## 888   http://abs.twimg.com/images/themes/theme1/bg.png
## 889                                               <NA>
## 890                                               <NA>
## 891   http://abs.twimg.com/images/themes/theme1/bg.png
## 892   http://abs.twimg.com/images/themes/theme2/bg.gif
## 893   http://abs.twimg.com/images/themes/theme1/bg.png
## 894                                               <NA>
## 895                                               <NA>
## 896   http://abs.twimg.com/images/themes/theme1/bg.png
## 897                                               <NA>
## 898   http://abs.twimg.com/images/themes/theme1/bg.png
## 899   http://abs.twimg.com/images/themes/theme1/bg.png
## 900  http://abs.twimg.com/images/themes/theme13/bg.gif
## 901   http://abs.twimg.com/images/themes/theme9/bg.gif
## 902                                               <NA>
## 903   http://abs.twimg.com/images/themes/theme1/bg.png
## 904                                               <NA>
## 905   http://abs.twimg.com/images/themes/theme1/bg.png
## 906   http://abs.twimg.com/images/themes/theme1/bg.png
## 907   http://abs.twimg.com/images/themes/theme1/bg.png
## 908   http://abs.twimg.com/images/themes/theme1/bg.png
## 909   http://abs.twimg.com/images/themes/theme8/bg.gif
## 910  http://abs.twimg.com/images/themes/theme15/bg.png
## 911                                               <NA>
## 912   http://abs.twimg.com/images/themes/theme5/bg.gif
## 913   http://abs.twimg.com/images/themes/theme1/bg.png
## 914                                               <NA>
## 915                                               <NA>
## 916   http://abs.twimg.com/images/themes/theme1/bg.png
## 917   http://abs.twimg.com/images/themes/theme1/bg.png
## 918                                               <NA>
## 919   http://abs.twimg.com/images/themes/theme1/bg.png
## 920  http://abs.twimg.com/images/themes/theme15/bg.png
## 921   http://abs.twimg.com/images/themes/theme4/bg.gif
## 922  http://abs.twimg.com/images/themes/theme14/bg.gif
## 923   http://abs.twimg.com/images/themes/theme1/bg.png
## 924   http://abs.twimg.com/images/themes/theme1/bg.png
## 925   http://abs.twimg.com/images/themes/theme1/bg.png
## 926                                               <NA>
## 927   http://abs.twimg.com/images/themes/theme1/bg.png
## 928  http://abs.twimg.com/images/themes/theme15/bg.png
## 929   http://abs.twimg.com/images/themes/theme1/bg.png
## 930                                               <NA>
## 931   http://abs.twimg.com/images/themes/theme1/bg.png
## 932  http://abs.twimg.com/images/themes/theme14/bg.gif
## 933   http://abs.twimg.com/images/themes/theme1/bg.png
## 934   http://abs.twimg.com/images/themes/theme1/bg.png
## 935                                               <NA>
## 936   http://abs.twimg.com/images/themes/theme1/bg.png
## 937   http://abs.twimg.com/images/themes/theme1/bg.png
## 938   http://abs.twimg.com/images/themes/theme1/bg.png
## 939   http://abs.twimg.com/images/themes/theme1/bg.png
## 940   http://abs.twimg.com/images/themes/theme9/bg.gif
## 941                                               <NA>
## 942   http://abs.twimg.com/images/themes/theme1/bg.png
## 943   http://abs.twimg.com/images/themes/theme1/bg.png
## 944   http://abs.twimg.com/images/themes/theme1/bg.png
## 945                                               <NA>
## 946  http://abs.twimg.com/images/themes/theme14/bg.gif
## 947   http://abs.twimg.com/images/themes/theme1/bg.png
## 948   http://abs.twimg.com/images/themes/theme1/bg.png
## 949                                               <NA>
## 950   http://abs.twimg.com/images/themes/theme1/bg.png
## 951   http://abs.twimg.com/images/themes/theme1/bg.png
## 952   http://abs.twimg.com/images/themes/theme1/bg.png
## 953                                               <NA>
## 954   http://abs.twimg.com/images/themes/theme1/bg.png
## 955                                               <NA>
## 956   http://abs.twimg.com/images/themes/theme1/bg.png
## 957   http://abs.twimg.com/images/themes/theme1/bg.png
## 958                                               <NA>
## 959   http://abs.twimg.com/images/themes/theme1/bg.png
## 960   http://abs.twimg.com/images/themes/theme1/bg.png
## 961   http://abs.twimg.com/images/themes/theme1/bg.png
## 962   http://abs.twimg.com/images/themes/theme1/bg.png
## 963   http://abs.twimg.com/images/themes/theme1/bg.png
## 964  http://abs.twimg.com/images/themes/theme15/bg.png
## 965   http://abs.twimg.com/images/themes/theme1/bg.png
## 966  http://abs.twimg.com/images/themes/theme15/bg.png
## 967  http://abs.twimg.com/images/themes/theme10/bg.gif
## 968   http://abs.twimg.com/images/themes/theme1/bg.png
## 969   http://abs.twimg.com/images/themes/theme1/bg.png
## 970   http://abs.twimg.com/images/themes/theme1/bg.png
## 971   http://abs.twimg.com/images/themes/theme1/bg.png
## 972   http://abs.twimg.com/images/themes/theme1/bg.png
## 973                                               <NA>
## 974   http://abs.twimg.com/images/themes/theme1/bg.png
## 975   http://abs.twimg.com/images/themes/theme1/bg.png
## 976                                               <NA>
## 977   http://abs.twimg.com/images/themes/theme1/bg.png
## 978                                               <NA>
## 979                                               <NA>
## 980   http://abs.twimg.com/images/themes/theme1/bg.png
## 981                                               <NA>
## 982   http://abs.twimg.com/images/themes/theme1/bg.png
## 983   http://abs.twimg.com/images/themes/theme1/bg.png
## 984   http://abs.twimg.com/images/themes/theme1/bg.png
## 985   http://abs.twimg.com/images/themes/theme1/bg.png
## 986                                               <NA>
## 987   http://abs.twimg.com/images/themes/theme1/bg.png
## 988  http://abs.twimg.com/images/themes/theme19/bg.gif
## 989                                               <NA>
## 990   http://abs.twimg.com/images/themes/theme1/bg.png
## 991                                               <NA>
## 992   http://abs.twimg.com/images/themes/theme6/bg.gif
## 993  http://abs.twimg.com/images/themes/theme15/bg.png
## 994                                               <NA>
## 995   http://abs.twimg.com/images/themes/theme1/bg.png
## 996   http://abs.twimg.com/images/themes/theme1/bg.png
## 997                                               <NA>
## 998   http://abs.twimg.com/images/themes/theme1/bg.png
## 999                                               <NA>
## 1000  http://abs.twimg.com/images/themes/theme1/bg.png
## 1001  http://abs.twimg.com/images/themes/theme9/bg.gif
## 1002  http://abs.twimg.com/images/themes/theme1/bg.png
## 1003  http://abs.twimg.com/images/themes/theme1/bg.png
## 1004  http://abs.twimg.com/images/themes/theme1/bg.png
## 1005                                              <NA>
## 1006  http://abs.twimg.com/images/themes/theme1/bg.png
## 1007 http://abs.twimg.com/images/themes/theme11/bg.gif
## 1008  http://abs.twimg.com/images/themes/theme1/bg.png
## 1009  http://abs.twimg.com/images/themes/theme1/bg.png
## 1010                                              <NA>
## 1011  http://abs.twimg.com/images/themes/theme1/bg.png
## 1012                                              <NA>
## 1013  http://abs.twimg.com/images/themes/theme1/bg.png
## 1014                                              <NA>
## 1015  http://abs.twimg.com/images/themes/theme1/bg.png
## 1016  http://abs.twimg.com/images/themes/theme1/bg.png
## 1017  http://abs.twimg.com/images/themes/theme1/bg.png
## 1018 http://abs.twimg.com/images/themes/theme14/bg.gif
## 1019  http://abs.twimg.com/images/themes/theme1/bg.png
## 1020  http://abs.twimg.com/images/themes/theme1/bg.png
## 1021  http://abs.twimg.com/images/themes/theme1/bg.png
## 1022  http://abs.twimg.com/images/themes/theme1/bg.png
## 1023  http://abs.twimg.com/images/themes/theme1/bg.png
## 1024  http://abs.twimg.com/images/themes/theme1/bg.png
## 1025                                              <NA>
## 1026  http://abs.twimg.com/images/themes/theme1/bg.png
## 1027                                              <NA>
## 1028  http://abs.twimg.com/images/themes/theme1/bg.png
## 1029  http://abs.twimg.com/images/themes/theme4/bg.gif
## 1030                                              <NA>
## 1031  http://abs.twimg.com/images/themes/theme4/bg.gif
## 1032                                              <NA>
## 1033  http://abs.twimg.com/images/themes/theme5/bg.gif
## 1034                                              <NA>
## 1035  http://abs.twimg.com/images/themes/theme1/bg.png
## 1036                                              <NA>
## 1037 http://abs.twimg.com/images/themes/theme10/bg.gif
## 1038                                              <NA>
## 1039  http://abs.twimg.com/images/themes/theme1/bg.png
## 1040  http://abs.twimg.com/images/themes/theme1/bg.png
## 1041  http://abs.twimg.com/images/themes/theme1/bg.png
## 1042  http://abs.twimg.com/images/themes/theme9/bg.gif
## 1043 http://abs.twimg.com/images/themes/theme12/bg.gif
## 1044                                              <NA>
## 1045  http://abs.twimg.com/images/themes/theme1/bg.png
## 1046  http://abs.twimg.com/images/themes/theme1/bg.png
## 1047  http://abs.twimg.com/images/themes/theme1/bg.png
## 1048  http://abs.twimg.com/images/themes/theme1/bg.png
## 1049  http://abs.twimg.com/images/themes/theme1/bg.png
## 1050  http://abs.twimg.com/images/themes/theme1/bg.png
## 1051                                              <NA>
## 1052                                              <NA>
## 1053                                              <NA>
## 1054                                              <NA>
## 1055                                              <NA>
## 1056  http://abs.twimg.com/images/themes/theme1/bg.png
## 1057  http://abs.twimg.com/images/themes/theme1/bg.png
## 1058 http://abs.twimg.com/images/themes/theme15/bg.png
## 1059  http://abs.twimg.com/images/themes/theme1/bg.png
## 1060                                              <NA>
## 1061  http://abs.twimg.com/images/themes/theme1/bg.png
## 1062  http://abs.twimg.com/images/themes/theme1/bg.png
## 1063  http://abs.twimg.com/images/themes/theme1/bg.png
## 1064  http://abs.twimg.com/images/themes/theme1/bg.png
## 1065  http://abs.twimg.com/images/themes/theme1/bg.png
## 1066                                              <NA>
## 1067                                              <NA>
## 1068  http://abs.twimg.com/images/themes/theme1/bg.png
## 1069                                              <NA>
## 1070  http://abs.twimg.com/images/themes/theme1/bg.png
## 1071  http://abs.twimg.com/images/themes/theme4/bg.gif
## 1072 http://abs.twimg.com/images/themes/theme14/bg.gif
## 1073                                              <NA>
## 1074 http://abs.twimg.com/images/themes/theme18/bg.gif
## 1075  http://abs.twimg.com/images/themes/theme9/bg.gif
## 1076  http://abs.twimg.com/images/themes/theme4/bg.gif
## 1077 http://abs.twimg.com/images/themes/theme14/bg.gif
## 1078  http://abs.twimg.com/images/themes/theme1/bg.png
## 1079  http://abs.twimg.com/images/themes/theme1/bg.png
## 1080  http://abs.twimg.com/images/themes/theme1/bg.png
## 1081  http://abs.twimg.com/images/themes/theme1/bg.png
## 1082  http://abs.twimg.com/images/themes/theme1/bg.png
## 1083  http://abs.twimg.com/images/themes/theme5/bg.gif
## 1084                                              <NA>
## 1085 http://abs.twimg.com/images/themes/theme12/bg.gif
## 1086                                              <NA>
## 1087  http://abs.twimg.com/images/themes/theme1/bg.png
## 1088  http://abs.twimg.com/images/themes/theme1/bg.png
## 1089  http://abs.twimg.com/images/themes/theme4/bg.gif
## 1090  http://abs.twimg.com/images/themes/theme9/bg.gif
## 1091  http://abs.twimg.com/images/themes/theme1/bg.png
## 1092  http://abs.twimg.com/images/themes/theme1/bg.png
## 1093  http://abs.twimg.com/images/themes/theme9/bg.gif
## 1094  http://abs.twimg.com/images/themes/theme1/bg.png
## 1095  http://abs.twimg.com/images/themes/theme1/bg.png
## 1096  http://abs.twimg.com/images/themes/theme1/bg.png
## 1097  http://abs.twimg.com/images/themes/theme1/bg.png
## 1098  http://abs.twimg.com/images/themes/theme1/bg.png
## 1099                                              <NA>
## 1100                                              <NA>
## 1101  http://abs.twimg.com/images/themes/theme1/bg.png
## 1102  http://abs.twimg.com/images/themes/theme1/bg.png
## 1103  http://abs.twimg.com/images/themes/theme1/bg.png
## 1104                                              <NA>
## 1105  http://abs.twimg.com/images/themes/theme1/bg.png
## 1106  http://abs.twimg.com/images/themes/theme1/bg.png
## 1107  http://abs.twimg.com/images/themes/theme1/bg.png
## 1108  http://abs.twimg.com/images/themes/theme1/bg.png
## 1109                                              <NA>
## 1110  http://abs.twimg.com/images/themes/theme1/bg.png
## 1111                                              <NA>
##                                                                                                     profile_image_url
## 1                                         http://pbs.twimg.com/profile_images/511673152867295232/yVwBSKqt_normal.jpeg
## 2                                                 http://pbs.twimg.com/profile_images/1088750091/brilliant_normal.jpg
## 3                                         http://pbs.twimg.com/profile_images/1013528634957729793/-CrS01L7_normal.jpg
## 4                                          http://pbs.twimg.com/profile_images/817713209968914432/KbUnVP8Z_normal.jpg
## 5                                          http://pbs.twimg.com/profile_images/877715897795923969/6bKZRnNM_normal.jpg
## 6                                         http://pbs.twimg.com/profile_images/1232976397104295937/TfdPi51w_normal.jpg
## 7                                         http://pbs.twimg.com/profile_images/1235819817489203205/rdwkvsu0_normal.jpg
## 8                                               http://pbs.twimg.com/profile_images/1832174819/logo-google_normal.png
## 9                                          http://pbs.twimg.com/profile_images/930110855362072576/gZZSES0X_normal.jpg
## 10                                        http://pbs.twimg.com/profile_images/1200476179905552389/qVabUYFG_normal.jpg
## 11                                        http://pbs.twimg.com/profile_images/1075461943975120897/zOq7oOxI_normal.jpg
## 12                                        http://pbs.twimg.com/profile_images/1045771994975932417/4yqMN2GE_normal.jpg
## 13                                        http://pbs.twimg.com/profile_images/1235386899327528962/HTXo6S6L_normal.jpg
## 14                        http://pbs.twimg.com/profile_images/2828617533/e11d509b4a8105c7b3443132767c03f3_normal.jpeg
## 15                                         http://pbs.twimg.com/profile_images/857000948710985728/rOwl0RBU_normal.jpg
## 16                                        http://pbs.twimg.com/profile_images/573891719403413506/DROOu6st_normal.jpeg
## 17                                         http://pbs.twimg.com/profile_images/943531334269652994/4H_pNau8_normal.jpg
## 18                                        http://pbs.twimg.com/profile_images/1241423067097653248/9iUDk8MM_normal.jpg
## 19                                         http://pbs.twimg.com/profile_images/582198448495161344/GVyxDAqD_normal.jpg
## 20                                        http://pbs.twimg.com/profile_images/1070386303743610881/KLlDWG1A_normal.jpg
## 21                                        http://pbs.twimg.com/profile_images/479841455632953344/7D0K9yUI_normal.jpeg
## 22                                         http://pbs.twimg.com/profile_images/593791914538729472/gij5ENBq_normal.jpg
## 23                                         http://pbs.twimg.com/profile_images/654126606533849088/5ZubnZrw_normal.jpg
## 24                                        http://pbs.twimg.com/profile_images/1189401785640898561/Ei1aSHsC_normal.jpg
## 25                                        http://pbs.twimg.com/profile_images/1223013012656873473/SXbXEu97_normal.jpg
## 26                                        http://pbs.twimg.com/profile_images/1238849744581115904/DGwrd-V6_normal.jpg
## 27                                        http://pbs.twimg.com/profile_images/1184213238176796674/hQNZcCuU_normal.jpg
## 28                                         http://pbs.twimg.com/profile_images/953366988780285952/dC6wveTG_normal.jpg
## 29                                        http://pbs.twimg.com/profile_images/1217696728616337408/viVat4KH_normal.jpg
## 30                                        http://pbs.twimg.com/profile_images/1052272312215527424/95V52nCv_normal.jpg
## 31                                        http://pbs.twimg.com/profile_images/1218805770965463040/8X_omzPm_normal.jpg
## 32                                         http://pbs.twimg.com/profile_images/911045479147933701/e9IQGPLW_normal.jpg
## 33                                         http://pbs.twimg.com/profile_images/979014735684239361/ZezLz9NA_normal.jpg
## 34                                        http://pbs.twimg.com/profile_images/1040606561842810880/jQbAnU3Z_normal.jpg
## 35                                        http://pbs.twimg.com/profile_images/1225754610499014658/TtAS3ArN_normal.jpg
## 36                                        http://pbs.twimg.com/profile_images/1060478610325286912/4p8nfJBF_normal.jpg
## 37                                         http://pbs.twimg.com/profile_images/589863882568663040/MjBcemi__normal.jpg
## 38                                        http://pbs.twimg.com/profile_images/1186638081945939969/YqljuKtJ_normal.jpg
## 39                                        http://pbs.twimg.com/profile_images/1190862466361757696/urJV_yT7_normal.jpg
## 40                                         http://pbs.twimg.com/profile_images/903327435474714624/BOye6YeS_normal.jpg
## 41                http://pbs.twimg.com/profile_images/378800000710240297/b3f87da3168218a536bb2028e078fe91_normal.jpeg
## 42                                        http://pbs.twimg.com/profile_images/1150904607171854338/8C003iqB_normal.png
## 43                                         http://pbs.twimg.com/profile_images/656493750751879170/kFkII36p_normal.jpg
## 44                                        http://pbs.twimg.com/profile_images/1198144877080367104/_uElsdBY_normal.jpg
## 45                                        http://pbs.twimg.com/profile_images/1152796736340893696/HkWb-Okq_normal.jpg
## 46                                         http://pbs.twimg.com/profile_images/876773720848826371/bpPr-3Oi_normal.jpg
## 47                                        http://pbs.twimg.com/profile_images/1224690861625290753/v0Qcii45_normal.jpg
## 48                                        http://pbs.twimg.com/profile_images/1048195639744626688/-Wq4P-rO_normal.jpg
## 49                                         http://pbs.twimg.com/profile_images/865869748898279424/U2ory36p_normal.jpg
## 50                                        http://pbs.twimg.com/profile_images/1176701206330302464/58eO70rp_normal.jpg
## 51                                        http://pbs.twimg.com/profile_images/1081024683263385600/dDQkNE3l_normal.jpg
## 52                http://pbs.twimg.com/profile_images/378800000736866900/c71e3938d05d88bca8499664fc64f5d8_normal.jpeg
## 53                                        http://pbs.twimg.com/profile_images/1221067484612190213/kqZqSrN4_normal.jpg
## 54                                        http://pbs.twimg.com/profile_images/1149649158418026496/O6Xkh-W8_normal.png
## 55                                        http://pbs.twimg.com/profile_images/1240675251148804098/3CBw-7Q6_normal.jpg
## 56                                        http://pbs.twimg.com/profile_images/1237634170857250818/SOAnAJyN_normal.jpg
## 57                                         http://pbs.twimg.com/profile_images/641951431461728256/Df0DIALA_normal.jpg
## 58                                         http://pbs.twimg.com/profile_images/950871360305184769/jm29KyUr_normal.jpg
## 59                                         http://pbs.twimg.com/profile_images/936421015067824134/g_PfzHXA_normal.jpg
## 60                                        http://pbs.twimg.com/profile_images/1230647342950469634/X1yfyDXI_normal.jpg
## 61                                        http://pbs.twimg.com/profile_images/1071023482228625409/wdY1Ecj3_normal.jpg
## 62                                        http://pbs.twimg.com/profile_images/1195009814318870528/cdkBPU-7_normal.jpg
## 63                                        http://pbs.twimg.com/profile_images/1001918076164759552/KBl8u8ia_normal.jpg
## 64                                        http://pbs.twimg.com/profile_images/1016795793150234624/82c4VWyW_normal.jpg
## 65                                        http://pbs.twimg.com/profile_images/1042305421191467009/2_yXgpq3_normal.jpg
## 66                                         http://pbs.twimg.com/profile_images/430931185938612224/45mokdt2_normal.png
## 67                                         http://pbs.twimg.com/profile_images/596333458126872576/J_-z2oRZ_normal.jpg
## 68                                         http://pbs.twimg.com/profile_images/622185246667075584/fsasq2gQ_normal.png
## 69                                        http://pbs.twimg.com/profile_images/1094236161185337344/9mfm7z0v_normal.jpg
## 70                                        http://pbs.twimg.com/profile_images/1139446681819320320/ZMVS88OY_normal.jpg
## 71                                        http://pbs.twimg.com/profile_images/1053301076420714496/ZvlJYrC0_normal.jpg
## 72                                      http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 73                                        http://pbs.twimg.com/profile_images/1242557314407653376/v-Bumu74_normal.jpg
## 74                                        http://pbs.twimg.com/profile_images/1228118353866297346/PDINp-wI_normal.jpg
## 75                                        http://pbs.twimg.com/profile_images/1217935710981906432/VwQ3DSUt_normal.jpg
## 76                                        http://pbs.twimg.com/profile_images/1236699020736806912/GFpqD7CS_normal.jpg
## 77                                         http://pbs.twimg.com/profile_images/995081575149834241/dY8z2N8-_normal.jpg
## 78                                        http://pbs.twimg.com/profile_images/1221351853876707328/FLUeQCd5_normal.jpg
## 79                        http://pbs.twimg.com/profile_images/2953251764/04fc6f57e5990a344f7104daaffea92d_normal.jpeg
## 80                                         http://pbs.twimg.com/profile_images/880484850091917313/t8ryebGJ_normal.jpg
## 81                                         http://pbs.twimg.com/profile_images/942964831870701569/5ZbEkNeG_normal.jpg
## 82                                         http://pbs.twimg.com/profile_images/824663459585527808/DTKsgIOH_normal.jpg
## 83                                        http://pbs.twimg.com/profile_images/1216320346703507461/OLF0qwhz_normal.jpg
## 84                                         http://pbs.twimg.com/profile_images/712006153987858432/JdpsG7or_normal.jpg
## 85                                        http://pbs.twimg.com/profile_images/1138879797218557952/vOxoj8M__normal.jpg
## 86                                        http://pbs.twimg.com/profile_images/1054271211893612544/SsxGCcCG_normal.jpg
## 87                                        http://pbs.twimg.com/profile_images/1208771928699355137/9w7Gdjek_normal.jpg
## 88                                         http://pbs.twimg.com/profile_images/684089183753912321/GeTZBvde_normal.jpg
## 89                                        http://pbs.twimg.com/profile_images/1145620925733376000/9GNrA22g_normal.jpg
## 90                                        http://pbs.twimg.com/profile_images/1157578084310085633/kRI6DVvz_normal.jpg
## 91                                        http://pbs.twimg.com/profile_images/1239066862526386176/YTNG4iQN_normal.jpg
## 92                                         http://pbs.twimg.com/profile_images/828584858469412864/aM6KeVvK_normal.jpg
## 93                                        http://pbs.twimg.com/profile_images/1230887617358651392/uq4jNSJa_normal.jpg
## 94                                        http://pbs.twimg.com/profile_images/514054822656356355/89fp2l2__normal.jpeg
## 95                                         http://pbs.twimg.com/profile_images/978036633713786881/2_1hm3dx_normal.jpg
## 96                                         http://pbs.twimg.com/profile_images/984300761394925568/iYCNMiye_normal.jpg
## 97                                        http://pbs.twimg.com/profile_images/1200666205318594560/2elXdqeA_normal.jpg
## 98                                        http://pbs.twimg.com/profile_images/1122312261475930112/I8cxyeZJ_normal.png
## 99                                         http://pbs.twimg.com/profile_images/987747811453227008/eX1DbgQJ_normal.jpg
## 100                                       http://pbs.twimg.com/profile_images/1208131214827302915/wjsft3zB_normal.jpg
## 101                                       http://pbs.twimg.com/profile_images/1236630870129291265/KBMjQPdr_normal.jpg
## 102                                       http://pbs.twimg.com/profile_images/1110567306575446018/dAm2Xw1n_normal.jpg
## 103                                       http://pbs.twimg.com/profile_images/1193207493188628484/G8xuMP70_normal.jpg
## 104                                                 http://pbs.twimg.com/profile_images/1011406226/Wup_Ass_normal.jpg
## 105                                       http://pbs.twimg.com/profile_images/1217418325342420997/FoVnN6Xj_normal.jpg
## 106                                       http://pbs.twimg.com/profile_images/1118697079705088000/kDBoyMDk_normal.png
## 107                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 108                                        http://pbs.twimg.com/profile_images/750149437482233856/mbgRzWly_normal.jpg
## 109                                        http://pbs.twimg.com/profile_images/939462828204814336/vbLUX1fi_normal.jpg
## 110                                        http://pbs.twimg.com/profile_images/901001016610398208/yESbvs4-_normal.jpg
## 111                                       http://pbs.twimg.com/profile_images/1242969995279323136/iYOKj8uT_normal.jpg
## 112                                        http://pbs.twimg.com/profile_images/717445814600212480/VTB7jWI__normal.jpg
## 113                                                     http://pbs.twimg.com/profile_images/1401219401/tim_normal.jpg
## 114                                        http://pbs.twimg.com/profile_images/785890164077916164/JUuAB3oT_normal.jpg
## 115                                       http://pbs.twimg.com/profile_images/1083341190861180928/Rod6RmnY_normal.jpg
## 116                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 117                                        http://pbs.twimg.com/profile_images/968257525110853632/ic3R_jaB_normal.jpg
## 118                                       http://pbs.twimg.com/profile_images/1227219928085823488/F_Lzbz4l_normal.jpg
## 119                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 120                                        http://pbs.twimg.com/profile_images/735961784750858240/GxU-84xn_normal.jpg
## 121                                       http://pbs.twimg.com/profile_images/1126844582312984576/hN_dX8HL_normal.jpg
## 122                                       http://pbs.twimg.com/profile_images/1213918689998839812/3ljhAgLY_normal.jpg
## 123                                        http://pbs.twimg.com/profile_images/872352245588914178/G5us6g94_normal.jpg
## 124                                       http://pbs.twimg.com/profile_images/1143160806672146432/QoWBwjGx_normal.png
## 125                                       http://pbs.twimg.com/profile_images/1243230722665656321/DH-5PWL9_normal.jpg
## 126                                        http://pbs.twimg.com/profile_images/859917658623549441/0y1MLvz6_normal.jpg
## 127                                       http://pbs.twimg.com/profile_images/1243968064233672704/3MoUWJX9_normal.jpg
## 128                                       http://pbs.twimg.com/profile_images/1045681989095960577/kl5G4rq7_normal.jpg
## 129                                       http://pbs.twimg.com/profile_images/1175425513516670976/TJz5_rl7_normal.jpg
## 130                                       http://pbs.twimg.com/profile_images/1194212508267102209/VubWUtqb_normal.jpg
## 131                                       http://pbs.twimg.com/profile_images/1175048784709148672/Cd2sgPHT_normal.jpg
## 132                                       http://pbs.twimg.com/profile_images/1159294201663610882/FeK8uXNU_normal.jpg
## 133                                        http://pbs.twimg.com/profile_images/823377422137454592/myPaoH0D_normal.jpg
## 134                                        http://pbs.twimg.com/profile_images/974372827146215425/_luyxH7f_normal.jpg
## 135                                       http://pbs.twimg.com/profile_images/1237453897452728323/2M0dDFcT_normal.jpg
## 136                                        http://pbs.twimg.com/profile_images/849568032821309440/6VxoUbSt_normal.jpg
## 137                                       http://pbs.twimg.com/profile_images/1039017244867493888/WAXogJgP_normal.jpg
## 138                                        http://pbs.twimg.com/profile_images/816732605789835264/k_tvd-_c_normal.jpg
## 139                                        http://pbs.twimg.com/profile_images/758344232654479360/wAUkJNwL_normal.jpg
## 140                                       http://pbs.twimg.com/profile_images/1242522109479399424/XRTyDshh_normal.jpg
## 141                                       http://pbs.twimg.com/profile_images/1231275376480907264/6X66vm___normal.jpg
## 142                                        http://pbs.twimg.com/profile_images/935589890888056833/vt8niPFg_normal.jpg
## 143                                        http://pbs.twimg.com/profile_images/531217386683109376/bg6eaGA6_normal.png
## 144                                        http://pbs.twimg.com/profile_images/986698920729501696/J1GZy1S1_normal.jpg
## 145                                        http://pbs.twimg.com/profile_images/859109134188392450/n_iRAcgA_normal.jpg
## 146                                        http://pbs.twimg.com/profile_images/873481115948003328/_fcRQLig_normal.jpg
## 147                                       http://pbs.twimg.com/profile_images/1162155768440692737/DQlOBL7o_normal.jpg
## 148                                        http://pbs.twimg.com/profile_images/982083413971750912/Jp8nIrZZ_normal.jpg
## 149                                       http://pbs.twimg.com/profile_images/1118082590899154944/pKe3TybW_normal.jpg
## 150                                                 http://pbs.twimg.com/profile_images/341762929/P1010397_normal.JPG
## 151                                       http://pbs.twimg.com/profile_images/1207051079109791744/wo3c4cPR_normal.jpg
## 152                                       http://pbs.twimg.com/profile_images/1236824714221363200/32ZTQQfE_normal.jpg
## 153                                   http://pbs.twimg.com/profile_images/2269280357/yt0wvgwmpez2y0aomb2x_normal.jpeg
## 154                                       http://pbs.twimg.com/profile_images/1179284486753665025/8VmmXPUu_normal.jpg
## 155                                        http://pbs.twimg.com/profile_images/660205127127560192/BDxxBGeA_normal.png
## 156                                       http://pbs.twimg.com/profile_images/1032385478278840322/kJjg8ibD_normal.jpg
## 157                                        http://pbs.twimg.com/profile_images/842908415039078404/bk7y3629_normal.jpg
## 158                                       http://pbs.twimg.com/profile_images/1123615082343223296/8vvwLY5Q_normal.png
## 159                                        http://pbs.twimg.com/profile_images/964179841565249544/PQjLxB69_normal.jpg
## 160                                        http://pbs.twimg.com/profile_images/670647105430646784/gygWBKUh_normal.jpg
## 161                                       http://pbs.twimg.com/profile_images/1209392507454398465/Mkm0ICY1_normal.jpg
## 162                                        http://pbs.twimg.com/profile_images/725376527370584065/tOJl-Acs_normal.jpg
## 163                                       http://pbs.twimg.com/profile_images/1230860015180881920/gRdl9nhM_normal.jpg
## 164                                       http://pbs.twimg.com/profile_images/1235930776899915777/L_gMM9sr_normal.jpg
## 165                                        http://pbs.twimg.com/profile_images/957479863266390018/-UBNrWyF_normal.jpg
## 166                                        http://pbs.twimg.com/profile_images/964521214856323072/oGwRKgC7_normal.jpg
## 167                                       http://pbs.twimg.com/profile_images/1222163784027893761/COxztJ_d_normal.jpg
## 168                                        http://pbs.twimg.com/profile_images/941042691105837057/T-glAyTI_normal.jpg
## 169                                       http://pbs.twimg.com/profile_images/1168117938844590080/t8FWXrzf_normal.jpg
## 170                                       http://pbs.twimg.com/profile_images/1199709389550170113/wSGHYKlc_normal.png
## 171                                        http://pbs.twimg.com/profile_images/688638752701333506/sC7yxao4_normal.jpg
## 172                                       http://pbs.twimg.com/profile_images/1236969285576208385/wLX_1gjU_normal.jpg
## 173                                        http://pbs.twimg.com/profile_images/692297290120347649/6Lyj_Mct_normal.jpg
## 174                                       http://pbs.twimg.com/profile_images/1191947920754585600/lwyeDUzQ_normal.jpg
## 175                                       http://pbs.twimg.com/profile_images/1193121171052601344/wEs4sbbT_normal.jpg
## 176                                       http://pbs.twimg.com/profile_images/1044412313816715264/yag9v04V_normal.jpg
## 177                                       http://pbs.twimg.com/profile_images/1080986429411348481/WV954qMh_normal.jpg
## 178                                        http://pbs.twimg.com/profile_images/997326285499129856/ezfScUu2_normal.jpg
## 179                       http://pbs.twimg.com/profile_images/2681099437/bd06d5c98c71551aaa0f7ebbf811e909_normal.jpeg
## 180                                       http://pbs.twimg.com/profile_images/1217669088996200448/69wNQqBY_normal.jpg
## 181                                       http://pbs.twimg.com/profile_images/1090017385409536000/5Y4-0l7C_normal.jpg
## 182                                       http://pbs.twimg.com/profile_images/1243607160157802497/FbjpPUA1_normal.jpg
## 183                                        http://pbs.twimg.com/profile_images/819684690781057025/7feCYrQS_normal.jpg
## 184                                       http://pbs.twimg.com/profile_images/1242769672275218433/etNuJUeu_normal.jpg
## 185                                       http://pbs.twimg.com/profile_images/1155515843364700166/AQYj3R1c_normal.jpg
## 186                                       http://pbs.twimg.com/profile_images/1061489487681937408/uDIVrseG_normal.jpg
## 187                                       http://pbs.twimg.com/profile_images/1126929958725615617/wInFgheu_normal.jpg
## 188                                       http://pbs.twimg.com/profile_images/1204643124628381696/C05TGaU9_normal.jpg
## 189                                       http://pbs.twimg.com/profile_images/1243780275651428355/fRI928al_normal.jpg
## 190                                       http://pbs.twimg.com/profile_images/1206960999603015680/5EZy4T6x_normal.jpg
## 191                                       http://pbs.twimg.com/profile_images/1240667250799099905/9Yt25olU_normal.jpg
## 192                                       http://pbs.twimg.com/profile_images/1195745860933636096/igA7JOsV_normal.jpg
## 193                                       http://pbs.twimg.com/profile_images/1089645381925982208/zqIjJPoc_normal.jpg
## 194                                       http://pbs.twimg.com/profile_images/1243695394581815296/KCJEUraY_normal.jpg
## 195                                        http://pbs.twimg.com/profile_images/624689607439880192/jqnf6t4w_normal.jpg
## 196                                       http://pbs.twimg.com/profile_images/1243283573614002179/l6JhznPd_normal.jpg
## 197                                       http://pbs.twimg.com/profile_images/1212547076589907968/BkWbcLms_normal.jpg
## 198                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 199                                       http://pbs.twimg.com/profile_images/1230933162072477696/2NvHObnY_normal.jpg
## 200                       http://pbs.twimg.com/profile_images/2727606366/45b572bdadae594823eb2d089b5ae443_normal.jpeg
## 201                                       http://pbs.twimg.com/profile_images/1088732825140879361/eyHjVW0y_normal.jpg
## 202                                        http://pbs.twimg.com/profile_images/964225195983585281/B9zSy2no_normal.jpg
## 203                                        http://pbs.twimg.com/profile_images/823914241266696196/ht4-Wr5r_normal.jpg
## 204                                       http://pbs.twimg.com/profile_images/1158854927130726400/GtfoKPkt_normal.png
## 205                                       http://pbs.twimg.com/profile_images/1178378349074362369/kxZVo6Mj_normal.jpg
## 206                                       http://pbs.twimg.com/profile_images/1241602016717066241/hoCjAyiO_normal.jpg
## 207                                        http://pbs.twimg.com/profile_images/600804652989292544/1KBDwC5e_normal.png
## 208                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 209                                        http://pbs.twimg.com/profile_images/613654268269080576/L3sGt704_normal.jpg
## 210                                        http://pbs.twimg.com/profile_images/610534582891491328/H_voGKjZ_normal.jpg
## 211                                       http://pbs.twimg.com/profile_images/1086741758418001920/SSs4Fkqi_normal.jpg
## 212                                       http://pbs.twimg.com/profile_images/1168917780906893312/Fp9rCCpB_normal.jpg
## 213                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 214                                        http://pbs.twimg.com/profile_images/934461074031570944/yMOWnyDp_normal.jpg
## 215                                       http://pbs.twimg.com/profile_images/1235297061676953609/9R86MMZL_normal.jpg
## 216                                       http://pbs.twimg.com/profile_images/1240827125243969538/Pd8rPK4-_normal.jpg
## 217                                        http://pbs.twimg.com/profile_images/806626934327128065/Jmj3hdDX_normal.jpg
## 218                                       http://pbs.twimg.com/profile_images/1113018325657837568/ktFE5OAS_normal.png
## 219                                       http://pbs.twimg.com/profile_images/1242454706787672064/2vyyjFMc_normal.jpg
## 220                                        http://pbs.twimg.com/profile_images/784859136232087552/DEtHDoLA_normal.jpg
## 221                                        http://pbs.twimg.com/profile_images/704378890030952448/qDdbY0RO_normal.jpg
## 222                                        http://pbs.twimg.com/profile_images/925013528305475584/ijUXvw6P_normal.jpg
## 223                                       http://pbs.twimg.com/profile_images/1209896499326410753/beUG7xwa_normal.jpg
## 224                                       http://pbs.twimg.com/profile_images/1193879179084754944/6Zc1aMxL_normal.jpg
## 225                                       http://pbs.twimg.com/profile_images/1240780683657781249/xYvqZy0p_normal.jpg
## 226                                        http://pbs.twimg.com/profile_images/834129020438532096/AkWEBRf2_normal.jpg
## 227                                       http://pbs.twimg.com/profile_images/1227486672977158144/6yQL0Rf3_normal.jpg
## 228                                       http://pbs.twimg.com/profile_images/1219385491319115776/ADMXF5RE_normal.jpg
## 229                                       http://pbs.twimg.com/profile_images/1239201165172035585/Myvzyee6_normal.jpg
## 230                                       http://pbs.twimg.com/profile_images/1243702360272015367/6rMx5idD_normal.jpg
## 231                                        http://pbs.twimg.com/profile_images/892480705304965120/HeLwkwY8_normal.jpg
## 232                                       http://pbs.twimg.com/profile_images/1162102069521551360/E6Gx55km_normal.jpg
## 233                                       http://pbs.twimg.com/profile_images/1237086915066814465/x_jK6gVl_normal.jpg
## 234                                       http://pbs.twimg.com/profile_images/1184576606263791616/ow-GV2MP_normal.jpg
## 235                                       http://pbs.twimg.com/profile_images/1119873771878227970/9ncFmBrU_normal.jpg
## 236                                       http://pbs.twimg.com/profile_images/1212036561786875904/RzfJo3BB_normal.jpg
## 237                                       http://pbs.twimg.com/profile_images/1196472729416994826/r8zwKPh0_normal.jpg
## 238                                       http://pbs.twimg.com/profile_images/1050968849825374208/YEfzP8U8_normal.jpg
## 239                                                   http://pbs.twimg.com/profile_images/2456666474/image_normal.jpg
## 240                                        http://pbs.twimg.com/profile_images/933753664057040896/0pnfZvuk_normal.jpg
## 241                                       http://pbs.twimg.com/profile_images/471241316756488192/S7j6Z5Be_normal.jpeg
## 242                                        http://pbs.twimg.com/profile_images/713149053475786752/vsD6dBZF_normal.jpg
## 243                                       http://pbs.twimg.com/profile_images/1223374687104917507/NgTzOQZT_normal.jpg
## 244                                       http://pbs.twimg.com/profile_images/1181824579431321600/rbp_dngT_normal.jpg
## 245                                       http://pbs.twimg.com/profile_images/1233695918320443392/kuy7972x_normal.jpg
## 246                                       http://pbs.twimg.com/profile_images/1243442818686889985/yIYvKNmN_normal.jpg
## 247                                       http://pbs.twimg.com/profile_images/1140016857425952768/Gpbstw0V_normal.jpg
## 248                                       http://pbs.twimg.com/profile_images/1088283337565880320/xEigAUqW_normal.jpg
## 249                                       http://pbs.twimg.com/profile_images/1237418231578722305/L7P8kvnq_normal.jpg
## 250                                        http://pbs.twimg.com/profile_images/584429770030583809/HXHDUzyv_normal.jpg
## 251                                        http://pbs.twimg.com/profile_images/966346536736231424/W6yf7TB7_normal.jpg
## 252                                        http://pbs.twimg.com/profile_images/907578116557721600/iYhTTpja_normal.jpg
## 253                                               http://pbs.twimg.com/profile_images/478802337/bug-090823_normal.jpg
## 254                                       http://pbs.twimg.com/profile_images/1147196442563502080/6F7jjak1_normal.png
## 255                                       http://pbs.twimg.com/profile_images/1105192731872243713/jfpt-UXu_normal.png
## 256                                        http://pbs.twimg.com/profile_images/866036204298526720/ZatDNM_P_normal.jpg
## 257                                        http://pbs.twimg.com/profile_images/788756767140376577/5Oi8DBQr_normal.jpg
## 258                                        http://pbs.twimg.com/profile_images/995381041836654592/UeLzLQRv_normal.jpg
## 259                                       http://pbs.twimg.com/profile_images/1212495734370635777/G3vwJ7IN_normal.jpg
## 260                                       http://pbs.twimg.com/profile_images/1215868911561789440/TmGDHKC__normal.jpg
## 261                                       http://pbs.twimg.com/profile_images/446141476980785152/ApWXU7FF_normal.jpeg
## 262                                       http://pbs.twimg.com/profile_images/1211245996472180736/gYfs6mzt_normal.jpg
## 263                                       http://pbs.twimg.com/profile_images/1133481342132523009/YSBGYzQx_normal.jpg
## 264                                       http://pbs.twimg.com/profile_images/1241773328945352704/dLuSuApE_normal.jpg
## 265                                       http://pbs.twimg.com/profile_images/1176729167418843137/d7p1gwXc_normal.jpg
## 266                                        http://pbs.twimg.com/profile_images/912839588070199296/mC4JagbC_normal.jpg
## 267                                   http://pbs.twimg.com/profile_images/2413270056/qv5nvk8g5smcnwm5dejq_normal.jpeg
## 268               http://pbs.twimg.com/profile_images/378800000642645395/2f2cebf974f199739c3d928e546ff47f_normal.jpeg
## 269                                       http://pbs.twimg.com/profile_images/1185768581205643264/7SwAamaj_normal.jpg
## 270                                       http://pbs.twimg.com/profile_images/1243624876717543424/bvBXZKzL_normal.jpg
## 271                                       http://pbs.twimg.com/profile_images/1011600856494505986/nm2klZ1__normal.jpg
## 272                                       http://pbs.twimg.com/profile_images/1091403013716086785/uc9xUYZc_normal.jpg
## 273                                       http://pbs.twimg.com/profile_images/1101816053552672768/ityuyHgk_normal.jpg
## 274                                        http://pbs.twimg.com/profile_images/601927452814782464/Qla_Bp2A_normal.jpg
## 275                                       http://pbs.twimg.com/profile_images/1227997833896304641/tAUxWC4B_normal.jpg
## 276                                       http://pbs.twimg.com/profile_images/1237267579347107840/2W2YZgZW_normal.jpg
## 277                                       http://pbs.twimg.com/profile_images/1192914004399706112/ZoFk3Saq_normal.jpg
## 278                                       http://pbs.twimg.com/profile_images/1121745960315576321/oVR2J3n5_normal.png
## 279                                        http://pbs.twimg.com/profile_images/758722726076878848/hGp_Seeq_normal.jpg
## 280                                        http://pbs.twimg.com/profile_images/973481203729928193/o2aDYjuH_normal.jpg
## 281                                       http://pbs.twimg.com/profile_images/1192442870449475585/qwKzibre_normal.jpg
## 282                                       http://pbs.twimg.com/profile_images/1152667285011730432/l4n03Vdj_normal.jpg
## 283                                        http://pbs.twimg.com/profile_images/944425245208752128/XpqN6qes_normal.jpg
## 284                                       http://pbs.twimg.com/profile_images/476733298324959232/83nFhR_I_normal.jpeg
## 285                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 286                                        http://pbs.twimg.com/profile_images/824133325694636033/GSCi5xis_normal.jpg
## 287                                        http://pbs.twimg.com/profile_images/648262853095329792/JoqxIV1__normal.jpg
## 288                                       http://pbs.twimg.com/profile_images/1224738119200567296/q2DkRzIJ_normal.jpg
## 289                                        http://pbs.twimg.com/profile_images/800854559266639872/GXMmf8eW_normal.jpg
## 290                                       http://pbs.twimg.com/profile_images/1240900904364187648/qZ7AGXXl_normal.jpg
## 291                                       http://pbs.twimg.com/profile_images/1217191671831711745/PsVhv_Dv_normal.jpg
## 292                                       http://pbs.twimg.com/profile_images/1048457199977021441/gMYLxEN7_normal.jpg
## 293                                       http://pbs.twimg.com/profile_images/1159532003378827264/UVcD8Ib4_normal.jpg
## 294                                       http://pbs.twimg.com/profile_images/1134191945213980674/47sfyNCf_normal.jpg
## 295                                       http://pbs.twimg.com/profile_images/554393864837300224/HfiaOEue_normal.jpeg
## 296                                        http://pbs.twimg.com/profile_images/964205646240407552/kdt5-9LL_normal.jpg
## 297                                       http://pbs.twimg.com/profile_images/1132197323692421120/Lw0XwNk2_normal.jpg
## 298                                        http://pbs.twimg.com/profile_images/677184802181615616/NxSXLwRZ_normal.jpg
## 299                                        http://pbs.twimg.com/profile_images/412991197360054272/Y77Sx9ri_normal.png
## 300                                       http://pbs.twimg.com/profile_images/1220849912302182401/U_hpbPCj_normal.jpg
## 301               http://pbs.twimg.com/profile_images/378800000531710011/e73d226bf0076b3a5e752cb833e2b1ad_normal.jpeg
## 302                                       http://pbs.twimg.com/profile_images/1226899593192976384/JqZN2MRO_normal.jpg
## 303                                       http://pbs.twimg.com/profile_images/1177330374336290816/go6Dr_6a_normal.jpg
## 304                                       http://pbs.twimg.com/profile_images/1033414586307936256/_nEniO2l_normal.jpg
## 305                                       http://pbs.twimg.com/profile_images/1139573008975179776/S1jV6MBW_normal.jpg
## 306                                        http://pbs.twimg.com/profile_images/792048456223248384/Dixo1eel_normal.jpg
## 307                                       http://pbs.twimg.com/profile_images/1147471694178729985/cXfGpd8p_normal.png
## 308                                       http://pbs.twimg.com/profile_images/1101155959135760384/exERSszX_normal.png
## 309                                       http://pbs.twimg.com/profile_images/1139905105233362946/9xKl7_1__normal.jpg
## 310                                       http://pbs.twimg.com/profile_images/1108780837657591809/OKiYa3Lo_normal.jpg
## 311                                       http://pbs.twimg.com/profile_images/1193002628541603840/55Gw5AsB_normal.jpg
## 312                                       http://pbs.twimg.com/profile_images/1129252424617680896/L9B7hgQQ_normal.jpg
## 313                                       http://pbs.twimg.com/profile_images/1229485428257935360/NNi1ZEO-_normal.jpg
## 314                                       http://pbs.twimg.com/profile_images/1231658747665108992/3_MPi_Xr_normal.png
## 315                                       http://pbs.twimg.com/profile_images/1149599189787013121/Uc2CuNRv_normal.png
## 316                                       http://pbs.twimg.com/profile_images/1124435352108724225/6kuzZ2p__normal.png
## 317                                       http://pbs.twimg.com/profile_images/1220653803994779649/eDjwpSfR_normal.jpg
## 318                                        http://pbs.twimg.com/profile_images/681681336432603136/9U_X-Fbi_normal.jpg
## 319                                       http://pbs.twimg.com/profile_images/1214338539250429952/fs4ittXE_normal.jpg
## 320                                       http://pbs.twimg.com/profile_images/1242633999295496192/99w_mdky_normal.jpg
## 321                                       http://pbs.twimg.com/profile_images/1207848939225042944/kAiziiqs_normal.jpg
## 322                                       http://pbs.twimg.com/profile_images/1212765112001605634/4yhZrLxq_normal.jpg
## 323                                       http://pbs.twimg.com/profile_images/1140253495800541184/XEBzFmcU_normal.jpg
## 324                                        http://pbs.twimg.com/profile_images/923040248619188224/u4lq2JrS_normal.jpg
## 325                                       http://pbs.twimg.com/profile_images/1219935600486293504/Oa81g4mc_normal.jpg
## 326                                        http://pbs.twimg.com/profile_images/760769210901467136/_w27QKeo_normal.jpg
## 327                                       http://pbs.twimg.com/profile_images/414489730299232256/9-7f_X6n_normal.jpeg
## 328                                       http://pbs.twimg.com/profile_images/1240409321021812738/dz2ECAnw_normal.jpg
## 329                                       http://pbs.twimg.com/profile_images/1194602832789409799/0j2Yn-tm_normal.jpg
## 330                                       http://pbs.twimg.com/profile_images/1239760106448760841/oXXCvy18_normal.jpg
## 331                                       http://pbs.twimg.com/profile_images/1051020646061355008/Gl3yh3J8_normal.jpg
## 332                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 333                                       http://pbs.twimg.com/profile_images/1242562697260122112/GPaNa3Jr_normal.jpg
## 334                                        http://pbs.twimg.com/profile_images/787702586556178432/sweYKUiM_normal.jpg
## 335                                        http://pbs.twimg.com/profile_images/981301344135868416/4DvAWc_w_normal.jpg
## 336                                        http://pbs.twimg.com/profile_images/896270095583858688/O_cpIsw8_normal.jpg
## 337                                        http://pbs.twimg.com/profile_images/746128861272780800/Bp9bADCp_normal.jpg
## 338                                                     http://pbs.twimg.com/profile_images/671491946/crow_normal.jpg
## 339                                       http://pbs.twimg.com/profile_images/1235328452292685825/dNWjEoRA_normal.jpg
## 340                                       http://pbs.twimg.com/profile_images/1227095383450492928/c_fF75G6_normal.jpg
## 341                                        http://pbs.twimg.com/profile_images/574309459356315649/Ku5P5qQZ_normal.png
## 342                                       http://pbs.twimg.com/profile_images/1210190979577171969/6kTQcCfN_normal.jpg
## 343                                        http://pbs.twimg.com/profile_images/667518224221646848/MFqGKK-k_normal.jpg
## 344                http://pbs.twimg.com/profile_images/378800000016095463/ec3a27f85472e4a454a25e2a4246306e_normal.png
## 345                                       http://pbs.twimg.com/profile_images/1229612209635901440/5AfAiPad_normal.png
## 346                                       http://pbs.twimg.com/profile_images/1207520756801949696/5AQNj-Kp_normal.jpg
## 347                                   http://pbs.twimg.com/profile_images/1087794875/41473_771828095_985_q_normal.jpg
## 348                                       http://pbs.twimg.com/profile_images/1177952128687640579/aLM6PtwO_normal.jpg
## 349                                       http://pbs.twimg.com/profile_images/1239086037818920960/Xnm3S0pO_normal.jpg
## 350                                       http://pbs.twimg.com/profile_images/1227631161247182855/2Qc0jDns_normal.jpg
## 351                                       http://pbs.twimg.com/profile_images/1243032029530333185/awONTHBX_normal.jpg
## 352                                       http://pbs.twimg.com/profile_images/438947114643492864/9IygPixS_normal.jpeg
## 353                                        http://pbs.twimg.com/profile_images/979457419800608768/Npb5WYbZ_normal.jpg
## 354                                       http://pbs.twimg.com/profile_images/1072484773610876928/rEV6I3bq_normal.jpg
## 355                                       http://pbs.twimg.com/profile_images/1207152766205906945/027HlqhK_normal.jpg
## 356                                        http://pbs.twimg.com/profile_images/613445278499143680/RFgTEdE2_normal.jpg
## 357                                       http://pbs.twimg.com/profile_images/1243813168477954052/kabzjuT1_normal.jpg
## 358                                        http://pbs.twimg.com/profile_images/950901409452445696/DSOXnaLx_normal.jpg
## 359               http://pbs.twimg.com/profile_images/378800000632113562/4f40dc7fbabc534f9f5801c325d3e77d_normal.jpeg
## 360                                        http://pbs.twimg.com/profile_images/842682271089987585/8U66cF9d_normal.jpg
## 361                                        http://pbs.twimg.com/profile_images/914155144719282176/MpRHbG_I_normal.jpg
## 362                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 363                                       http://pbs.twimg.com/profile_images/1215489096929423361/7wIwTFi0_normal.jpg
## 364                                       http://pbs.twimg.com/profile_images/1241883515865780226/3oJYNKgv_normal.jpg
## 365                                       http://pbs.twimg.com/profile_images/1057273518381948930/TDBssyS2_normal.jpg
## 366                                       http://pbs.twimg.com/profile_images/1178616966275317762/cg4KHFGd_normal.jpg
## 367                                       http://pbs.twimg.com/profile_images/1147883974485860352/wohCwwmy_normal.jpg
## 368                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 369                       http://pbs.twimg.com/profile_images/106816538/Champion_English_Bulldog_Cheerio_1_normal.jpg
## 370                                       http://pbs.twimg.com/profile_images/1218532420150071296/vVC9JPYr_normal.jpg
## 371                                       http://pbs.twimg.com/profile_images/1020590015431131138/YVMq0MDs_normal.jpg
## 372                                        http://pbs.twimg.com/profile_images/968745390513238016/6JPqIQib_normal.jpg
## 373                                        http://pbs.twimg.com/profile_images/841715992770179072/5BDaRtsk_normal.jpg
## 374                                              http://pbs.twimg.com/profile_images/801262323/chriskiller_normal.jpg
## 375                                       http://pbs.twimg.com/profile_images/1082557425998278656/kIE_I3P4_normal.jpg
## 376                                        http://pbs.twimg.com/profile_images/714842767785070592/IXQUfJ_P_normal.jpg
## 377                                       http://pbs.twimg.com/profile_images/1155939175008391169/S1Wvan-t_normal.jpg
## 378                                       http://pbs.twimg.com/profile_images/1243823817367093248/SJCB3e_L_normal.jpg
## 379                                       http://pbs.twimg.com/profile_images/1063184986889773058/8p7jNSvv_normal.jpg
## 380                                        http://pbs.twimg.com/profile_images/699038070268493824/Yw5ipMzS_normal.jpg
## 381                                       http://pbs.twimg.com/profile_images/1236818905705746436/VHyxC2R0_normal.jpg
## 382                                       http://pbs.twimg.com/profile_images/1239629828921458688/tuuSFYAC_normal.png
## 383                                       http://pbs.twimg.com/profile_images/1117510955452256259/2gnz2ykn_normal.jpg
## 384                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 385                                        http://pbs.twimg.com/profile_images/968307942721277953/V7w_kZbB_normal.jpg
## 386                                       http://pbs.twimg.com/profile_images/1239681803385962496/2t3B-cfH_normal.jpg
## 387                                 http://pbs.twimg.com/profile_images/1661741995/s697726605_1532863_4143_normal.jpg
## 388                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 389                                       http://pbs.twimg.com/profile_images/1115712304186892288/Oo85LtJI_normal.jpg
## 390                                       http://pbs.twimg.com/profile_images/1140627398297341952/Cp1BkGgY_normal.png
## 391                                       http://pbs.twimg.com/profile_images/1095405495584579586/3Rr1L7w3_normal.jpg
## 392                                       http://pbs.twimg.com/profile_images/1234724642440351744/3EOgWoyr_normal.jpg
## 393                                       http://pbs.twimg.com/profile_images/1210390110904180737/-1JqkTeo_normal.jpg
## 394                                       http://pbs.twimg.com/profile_images/1230116145874849792/g1X0q6gQ_normal.jpg
## 395                                       http://pbs.twimg.com/profile_images/1240158825971236864/drkPLhVl_normal.jpg
## 396                                       http://pbs.twimg.com/profile_images/1162204610372616193/daEdr7rz_normal.jpg
## 397                                       http://pbs.twimg.com/profile_images/1227358207380729856/L-HLZOEo_normal.jpg
## 398                                       http://pbs.twimg.com/profile_images/1111956749119037440/0o7KAgtE_normal.jpg
## 399               http://pbs.twimg.com/profile_images/378800000040099567/44ff26f92f84cab73e54a5ec5875bb92_normal.jpeg
## 400                               http://pbs.twimg.com/profile_images/1786535453/aa-logo-rgb-final-no-text_normal.png
## 401                                        http://pbs.twimg.com/profile_images/988787749405671425/YenK3Kos_normal.jpg
## 402                                       http://pbs.twimg.com/profile_images/1197982805915000836/WuwHG8v3_normal.jpg
## 403                                       http://pbs.twimg.com/profile_images/1167668845433303040/73jBMZN9_normal.jpg
## 404                                       http://pbs.twimg.com/profile_images/1206629960280104966/8998bsCr_normal.jpg
## 405                                       http://pbs.twimg.com/profile_images/1048273870770253825/HdZpG3nT_normal.jpg
## 406                                       http://pbs.twimg.com/profile_images/1123584165335711744/IbAUpyie_normal.png
## 407                                       http://pbs.twimg.com/profile_images/1080988721464242176/U-zy_c9m_normal.jpg
## 408                       http://pbs.twimg.com/profile_images/2911886229/3eadc92d4deb935ef5664a2dcb30f971_normal.jpeg
## 409                                       http://pbs.twimg.com/profile_images/1200802131973820421/PH2KLFgP_normal.jpg
## 410                                       http://pbs.twimg.com/profile_images/1228911995237195777/GH9x8IBG_normal.jpg
## 411                                        http://pbs.twimg.com/profile_images/929061795494596613/c-S9aiPK_normal.jpg
## 412                                       http://pbs.twimg.com/profile_images/1180150199366406149/oRrzhGdm_normal.jpg
## 413                                        http://pbs.twimg.com/profile_images/618733908973252608/64_UGSB0_normal.jpg
## 414                                       http://pbs.twimg.com/profile_images/1196844351021887490/uXkthiOR_normal.jpg
## 415                                       http://pbs.twimg.com/profile_images/1068690136802648064/XwhHEQlf_normal.jpg
## 416                                        http://pbs.twimg.com/profile_images/661362796848807936/CCe-07QG_normal.jpg
## 417                                        http://pbs.twimg.com/profile_images/685478667061989376/l_m_fe-D_normal.jpg
## 418                                       http://pbs.twimg.com/profile_images/1088537771675869185/zptlIYsf_normal.jpg
## 419                                        http://pbs.twimg.com/profile_images/512606006883278848/642ASBuo_normal.png
## 420                                        http://pbs.twimg.com/profile_images/770772445728911360/6I7Ut6gl_normal.jpg
## 421                                        http://pbs.twimg.com/profile_images/955638427403235328/SVXWuDzJ_normal.jpg
## 422                                        http://pbs.twimg.com/profile_images/847939194894901248/QXLUqH9N_normal.jpg
## 423                                       http://pbs.twimg.com/profile_images/1158803574098464770/o7sse0ih_normal.jpg
## 424                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 425                                       http://pbs.twimg.com/profile_images/1201727640828289024/5qNzuVlU_normal.jpg
## 426                                       http://pbs.twimg.com/profile_images/1185885202243035136/iBoY9xAG_normal.jpg
## 427                                       http://pbs.twimg.com/profile_images/1141466300058877958/eJw6bue3_normal.jpg
## 428                                        http://pbs.twimg.com/profile_images/971618562438770688/qXdRMVTU_normal.jpg
## 429                                       http://pbs.twimg.com/profile_images/1224931234/wuxtry_gs_02_main_normal.jpg
## 430                                        http://pbs.twimg.com/profile_images/786776097421680640/ta4hr_Da_normal.jpg
## 431                                       http://pbs.twimg.com/profile_images/1080973623492411392/hhKB8DQK_normal.jpg
## 432                                       http://pbs.twimg.com/profile_images/469232745785208833/57qt3-9l_normal.jpeg
## 433                                        http://pbs.twimg.com/profile_images/960785680329617408/yqXVtk65_normal.jpg
## 434                                       http://pbs.twimg.com/profile_images/454593629579784192/xy0WYloo_normal.jpeg
## 435                                       http://pbs.twimg.com/profile_images/1007728286401585152/tLe7xPuE_normal.jpg
## 436                                       http://pbs.twimg.com/profile_images/1239143513499021312/ESMVYUpp_normal.jpg
## 437                                       http://pbs.twimg.com/profile_images/1241932788023980034/_J94ABxD_normal.jpg
## 438                                       http://pbs.twimg.com/profile_images/1214550600567779335/D_TruI3y_normal.jpg
## 439                                       http://pbs.twimg.com/profile_images/1238478422801776641/zVRkMLfC_normal.jpg
## 440                                       http://pbs.twimg.com/profile_images/1080988486432305152/GlzvxAGF_normal.jpg
## 441                                       http://pbs.twimg.com/profile_images/1133892721092038657/RVUKDR1c_normal.jpg
## 442                       http://pbs.twimg.com/profile_images/3499044832/39c71beb9754443371cc398471343ac9_normal.jpeg
## 443                                       http://pbs.twimg.com/profile_images/1242446984998461442/yROX0e-Y_normal.jpg
## 444                                       http://pbs.twimg.com/profile_images/1242756667940450306/y43w-QYm_normal.jpg
## 445                                       http://pbs.twimg.com/profile_images/1182557174272159745/O38q2Ht6_normal.jpg
## 446                                       http://pbs.twimg.com/profile_images/1199439691482722304/Ff17iJP8_normal.jpg
## 447                                       http://pbs.twimg.com/profile_images/1242339986093080576/qJU0O7kL_normal.jpg
## 448                                       http://pbs.twimg.com/profile_images/1137376259359379459/LvGSsbog_normal.jpg
## 449                                       http://pbs.twimg.com/profile_images/1165823805945569280/TfFyVNx0_normal.jpg
## 450                                       http://pbs.twimg.com/profile_images/1135954570855796736/AtDkjfUN_normal.jpg
## 451                                        http://pbs.twimg.com/profile_images/698729920151814144/lbTsHwlL_normal.jpg
## 452                                       http://pbs.twimg.com/profile_images/1080854697060184064/iHsMyg4V_normal.jpg
## 453                                        http://pbs.twimg.com/profile_images/709713764388442112/evLMdiy__normal.jpg
## 454                                       http://pbs.twimg.com/profile_images/1233470750985785346/yyDUyT7J_normal.jpg
## 455                                        http://pbs.twimg.com/profile_images/634517676833009666/-C-3ut08_normal.jpg
## 456                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 457                                       http://pbs.twimg.com/profile_images/1241034423950348289/qdhyBxJ2_normal.jpg
## 458                                        http://pbs.twimg.com/profile_images/996862046556905474/qsRVwl72_normal.jpg
## 459                                        http://pbs.twimg.com/profile_images/892973382144188416/U5E-bUsH_normal.jpg
## 460                                       http://pbs.twimg.com/profile_images/1243180968204218369/1Aae1IQ6_normal.jpg
## 461                                       http://pbs.twimg.com/profile_images/1146881357169213441/YDzjplcj_normal.jpg
## 462                       http://pbs.twimg.com/profile_images/3724706924/44c7974c242f0fd70eab5cbafd4b2544_normal.jpeg
## 463                                       http://pbs.twimg.com/profile_images/1144598043339165696/iw8kn4xP_normal.jpg
## 464                                       http://pbs.twimg.com/profile_images/1109200641170259971/ZC3pUd0C_normal.jpg
## 465                                       http://pbs.twimg.com/profile_images/459292698193580033/0TYyOj5U_normal.jpeg
## 466                                        http://pbs.twimg.com/profile_images/654726903136256000/gfZecblZ_normal.jpg
## 467                                         http://pbs.twimg.com/profile_images/1195554309/FE-for-Facebook_normal.jpg
## 468                                        http://pbs.twimg.com/profile_images/832777190257344512/EbyYn9_E_normal.jpg
## 469                                       http://pbs.twimg.com/profile_images/1240778498647736322/t0rE22y0_normal.jpg
## 470                                        http://pbs.twimg.com/profile_images/854601287370850304/4us3ArJG_normal.jpg
## 471                                       http://pbs.twimg.com/profile_images/1010883696042364928/1h-nBC0S_normal.jpg
## 472                                       http://pbs.twimg.com/profile_images/1127919808350162944/Hn4Vxj1a_normal.jpg
## 473                                       http://pbs.twimg.com/profile_images/1022721049396371457/faYjmfRo_normal.jpg
## 474                                       http://pbs.twimg.com/profile_images/1012270191080804353/4bcUpot3_normal.jpg
## 475                                       http://pbs.twimg.com/profile_images/1149029865179492352/svSWRQRz_normal.jpg
## 476                                               http://pbs.twimg.com/profile_images/181469259/TwitterPic_normal.jpg
## 477                                       http://pbs.twimg.com/profile_images/1093593909710725120/_gyWdAnQ_normal.jpg
## 478                                       http://pbs.twimg.com/profile_images/1194935646504308736/bHqCH9Wv_normal.jpg
## 479                        http://pbs.twimg.com/profile_images/3505684866/36bf41ca75d637445b88c99f43d6af95_normal.png
## 480                                       http://pbs.twimg.com/profile_images/1241117568884068353/LkI90_oi_normal.jpg
## 481                                       http://pbs.twimg.com/profile_images/1112313529762308096/imAoAZtE_normal.jpg
## 482                                       http://pbs.twimg.com/profile_images/1243482973984428033/cvoE438j_normal.jpg
## 483                                                  http://pbs.twimg.com/profile_images/499695481/PA_Flag_normal.jpg
## 484                                       http://pbs.twimg.com/profile_images/1235373963154542593/xwXyXGFi_normal.jpg
## 485                                       http://pbs.twimg.com/profile_images/1214774100767510528/MyUWsYCS_normal.jpg
## 486                                        http://pbs.twimg.com/profile_images/908579114868662272/8qN5Z-UU_normal.jpg
## 487                                       http://pbs.twimg.com/profile_images/1241229484654653441/6vzvvcVO_normal.jpg
## 488                                        http://pbs.twimg.com/profile_images/811624229481299970/6hs4HeA6_normal.jpg
## 489                                       http://pbs.twimg.com/profile_images/1231801665100996608/Wm_t93MQ_normal.jpg
## 490                                        http://pbs.twimg.com/profile_images/872352490095869957/RHhjnNOj_normal.jpg
## 491                                       http://pbs.twimg.com/profile_images/1216768834507628553/ZhSJ2qZm_normal.jpg
## 492                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 493                                       http://pbs.twimg.com/profile_images/1084256064722235397/WXdd4qVq_normal.jpg
## 494                                        http://pbs.twimg.com/profile_images/762825972806590464/BB4hK6Dd_normal.jpg
## 495                                       http://pbs.twimg.com/profile_images/1243178171689848840/jMFYoSHN_normal.jpg
## 496                                        http://pbs.twimg.com/profile_images/802599055255896064/NZBSqomu_normal.jpg
## 497                                       http://pbs.twimg.com/profile_images/1028857165203693568/nlyouo9g_normal.jpg
## 498                                       http://pbs.twimg.com/profile_images/1229304304210714625/C-aMwsoJ_normal.jpg
## 499                                        http://pbs.twimg.com/profile_images/780062438792294402/3FMRP0TG_normal.jpg
## 500                                        http://pbs.twimg.com/profile_images/880574355763343364/_VyKEbJ1_normal.jpg
## 501                                       http://pbs.twimg.com/profile_images/1222539313524748294/c9VSA5Ps_normal.jpg
## 502                                       http://pbs.twimg.com/profile_images/1176529160581394433/CZf1Te5m_normal.jpg
## 503                                        http://pbs.twimg.com/profile_images/653048589682388992/JenSNIde_normal.jpg
## 504                                                  http://pbs.twimg.com/profile_images/1276724283/smiley_normal.jpg
## 505                                       http://pbs.twimg.com/profile_images/1214456287800561664/-7hIwIZt_normal.jpg
## 506                                       http://pbs.twimg.com/profile_images/1080778102362365952/bqKVbz1W_normal.jpg
## 507                                       http://pbs.twimg.com/profile_images/1197277969472995330/QemU-Soe_normal.jpg
## 508                                       http://pbs.twimg.com/profile_images/1234482328422014976/DUFZBjK-_normal.jpg
## 509                                       http://pbs.twimg.com/profile_images/1001809188031418368/nJ_dJyXZ_normal.jpg
## 510                                        http://pbs.twimg.com/profile_images/944052229840953344/a0N1bsfj_normal.jpg
## 511                                       http://pbs.twimg.com/profile_images/1124931828303843328/5Jw_YbLv_normal.jpg
## 512                                       http://pbs.twimg.com/profile_images/1038746792760934400/NQSTBBYx_normal.jpg
## 513                                       http://pbs.twimg.com/profile_images/1239332640991387648/epWJKnYP_normal.jpg
## 514                                       http://pbs.twimg.com/profile_images/1227640280096157696/Ihu9KOXq_normal.jpg
## 515                                       http://pbs.twimg.com/profile_images/1073917399013998592/Kp7JkQGP_normal.jpg
## 516                                       http://pbs.twimg.com/profile_images/1205092803291729920/8mR0DKh2_normal.jpg
## 517                                       http://pbs.twimg.com/profile_images/1232463861154033664/Cskqwuwn_normal.jpg
## 518                                       http://pbs.twimg.com/profile_images/1243621511581270023/pZMXivPL_normal.jpg
## 519                                       http://pbs.twimg.com/profile_images/1143109362233290752/e6TVkbsN_normal.jpg
## 520                                       http://pbs.twimg.com/profile_images/1121271370111864832/Tzwpmx_A_normal.jpg
## 521                                       http://pbs.twimg.com/profile_images/1224294024812670981/7zY2nnpS_normal.jpg
## 522                                       http://pbs.twimg.com/profile_images/1192797486487932928/N1fU2EIg_normal.jpg
## 523                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 524                                       http://pbs.twimg.com/profile_images/1216393359729811468/JC_OlVN2_normal.jpg
## 525                                       http://pbs.twimg.com/profile_images/1200424251750322176/rv-uwoTj_normal.jpg
## 526                                       http://pbs.twimg.com/profile_images/1242416585115082752/1zD37NlJ_normal.jpg
## 527                                        http://pbs.twimg.com/profile_images/588260890434281472/sns0RQC5_normal.jpg
## 528                                       http://pbs.twimg.com/profile_images/1175530684942880769/e3MQ_BWN_normal.jpg
## 529                                       http://pbs.twimg.com/profile_images/1176584276382384128/EE4K-RNd_normal.jpg
## 530                                   http://pbs.twimg.com/profile_images/2454494692/glb4jvdpt11dpqydvyl1_normal.jpeg
## 531                                       http://pbs.twimg.com/profile_images/1049735279479848962/tR8iou2L_normal.jpg
## 532                                       http://pbs.twimg.com/profile_images/1211695161643819008/COXsA9F5_normal.jpg
## 533                                       http://pbs.twimg.com/profile_images/1164635679973752833/p-0zVx_Q_normal.png
## 534                                                     http://pbs.twimg.com/profile_images/1317203029/EJW_normal.jpg
## 535                                        http://pbs.twimg.com/profile_images/682767495539736576/heXQ_sn__normal.jpg
## 536                                        http://pbs.twimg.com/profile_images/941303202036645893/H_n2gWch_normal.jpg
## 537                                       http://pbs.twimg.com/profile_images/1132556466639048705/9XyPFgt6_normal.jpg
## 538                                        http://pbs.twimg.com/profile_images/917558224638836736/qOMkzgcp_normal.jpg
## 539                                       http://pbs.twimg.com/profile_images/1242522166203011072/wfsWUvxC_normal.jpg
## 540                                       http://pbs.twimg.com/profile_images/1138096106313662464/-847jJ9X_normal.jpg
## 541                                        http://pbs.twimg.com/profile_images/922565311248912390/kziFl8x4_normal.jpg
## 542                                       http://pbs.twimg.com/profile_images/1243385663937904654/AuuIadXs_normal.jpg
## 543                                       http://pbs.twimg.com/profile_images/1243041003491201027/85b8ozue_normal.jpg
## 544                                        http://pbs.twimg.com/profile_images/810680744242724864/UeDG5HvO_normal.jpg
## 545                                       http://pbs.twimg.com/profile_images/1121933568404525061/4lvbXY7r_normal.jpg
## 546                                       http://pbs.twimg.com/profile_images/1075828416602087426/zAkgMR1R_normal.jpg
## 547                                        http://pbs.twimg.com/profile_images/623541921768730624/7CoqEgls_normal.jpg
## 548                                        http://pbs.twimg.com/profile_images/592262014082424832/nEUgaPLL_normal.jpg
## 549                                       http://pbs.twimg.com/profile_images/1215881733951950849/zCexpTdx_normal.jpg
## 550                                       http://pbs.twimg.com/profile_images/1169624320592814080/Rz7nDJmD_normal.jpg
## 551                                       http://pbs.twimg.com/profile_images/1231715283724795906/93Vxblyp_normal.jpg
## 552                                                http://pbs.twimg.com/profile_images/342847730/MyPicture_normal.jpg
## 553                                        http://pbs.twimg.com/profile_images/968617224478085120/KSlV5e2R_normal.jpg
## 554                                       http://pbs.twimg.com/profile_images/1243679947228659712/MKOpI9NF_normal.jpg
## 555                                        http://pbs.twimg.com/profile_images/746611313384660992/kEus8cCe_normal.jpg
## 556                                       http://pbs.twimg.com/profile_images/1083530547442401280/gc9FVEN__normal.jpg
## 557                                        http://pbs.twimg.com/profile_images/709713764388442112/evLMdiy__normal.jpg
## 558                                       http://pbs.twimg.com/profile_images/1204367191602163713/QxhQrlXk_normal.jpg
## 559                                       http://pbs.twimg.com/profile_images/1169612930633089025/bIPoYttk_normal.jpg
## 560                                       http://pbs.twimg.com/profile_images/1241957651010879488/BaJlOFLH_normal.jpg
## 561                                       http://pbs.twimg.com/profile_images/1105576953195741186/8jsl6_bX_normal.jpg
## 562                                       http://pbs.twimg.com/profile_images/1236674013784682497/k89k2Po4_normal.jpg
## 563                                       http://pbs.twimg.com/profile_images/544522587015884800/GURK9EG3_normal.jpeg
## 564                                        http://pbs.twimg.com/profile_images/895634457335615488/8dgsBYBA_normal.jpg
## 565                                        http://pbs.twimg.com/profile_images/922490786863767552/Ozh2mspI_normal.jpg
## 566                                       http://pbs.twimg.com/profile_images/1185000429555462144/_32hx2zt_normal.jpg
## 567                                       http://pbs.twimg.com/profile_images/1113625924212125696/I2W4L8iN_normal.jpg
## 568                                       http://pbs.twimg.com/profile_images/1078347968510447616/TShdXu3d_normal.jpg
## 569                                        http://pbs.twimg.com/profile_images/922565311248912390/kziFl8x4_normal.jpg
## 570                                       http://pbs.twimg.com/profile_images/1160244937943707648/fSCWJuGv_normal.png
## 571                                       http://pbs.twimg.com/profile_images/1087679656038486016/y3ynZrM6_normal.jpg
## 572                                       http://pbs.twimg.com/profile_images/1116186432417280000/FlDbul-G_normal.jpg
## 573                                       http://pbs.twimg.com/profile_images/1243771448688177152/QKvN_NEJ_normal.jpg
## 574                                       http://pbs.twimg.com/profile_images/1019815603752726529/DNFcMgi3_normal.jpg
## 575                                       http://pbs.twimg.com/profile_images/1174136988892426240/jPOJZ4bn_normal.jpg
## 576                                       http://pbs.twimg.com/profile_images/1238833889231155200/1SDBlE99_normal.jpg
## 577                              http://pbs.twimg.com/profile_images/480379962/Beverly_headshot_compressed_normal.jpg
## 578                                        http://pbs.twimg.com/profile_images/695987101247135744/0-IIpySZ_normal.jpg
## 579                       http://pbs.twimg.com/profile_images/3478568004/598d3cdd1b5d77a29e1939f2353e0653_normal.jpeg
## 580                                       http://pbs.twimg.com/profile_images/1129605081920225280/EokaC8Na_normal.png
## 581                                       http://pbs.twimg.com/profile_images/1136105506777419776/BhhWeLTd_normal.jpg
## 582                                       http://pbs.twimg.com/profile_images/1205367104184233984/mM-GujrG_normal.jpg
## 583                                       http://pbs.twimg.com/profile_images/1222233418328506368/SNyYJDyG_normal.jpg
## 584                                       http://pbs.twimg.com/profile_images/1178714197682802688/d7N-rDCt_normal.jpg
## 585                                       http://pbs.twimg.com/profile_images/1152175843549990917/lpyM7gh1_normal.jpg
## 586                                        http://pbs.twimg.com/profile_images/891359575424630784/lK9lmCPO_normal.jpg
## 587               http://pbs.twimg.com/profile_images/378800000771937402/9845db189ade3dbe00879b9d973ddffc_normal.jpeg
## 588                                       http://pbs.twimg.com/profile_images/1106395282432909312/Xd604Yb6_normal.jpg
## 589                                       http://pbs.twimg.com/profile_images/1107137352344969221/ls9kBxq2_normal.jpg
## 590                                       http://pbs.twimg.com/profile_images/1235373848255541248/cBdlWDgb_normal.jpg
## 591                                       http://pbs.twimg.com/profile_images/1193719438476005377/5p1TbH8l_normal.jpg
## 592                                       http://pbs.twimg.com/profile_images/499357373312409600/NwdY62MC_normal.jpeg
## 593                                       http://pbs.twimg.com/profile_images/1243611150287343618/EMkEtWWB_normal.jpg
## 594                                       http://pbs.twimg.com/profile_images/1197566144783278080/lM0Of19o_normal.jpg
## 595                       http://pbs.twimg.com/profile_images/2819236132/ac5b32b2d3e4ec76acd561c9839ad03f_normal.jpeg
## 596                                       http://pbs.twimg.com/profile_images/1217184395309867008/Dqg8LmfV_normal.jpg
## 597                                       http://pbs.twimg.com/profile_images/1158742615396888577/ku1ynBDw_normal.jpg
## 598                                       http://pbs.twimg.com/profile_images/1212708952351350785/RB_jkhVI_normal.jpg
## 599                                       http://pbs.twimg.com/profile_images/1159912348355686400/Fksqa740_normal.jpg
## 600                                    http://pbs.twimg.com/profile_images/2537761200/75leoqa5po430p510g3h_normal.gif
## 601                                        http://pbs.twimg.com/profile_images/916384495070261248/Kst8GNTU_normal.jpg
## 602                                       http://pbs.twimg.com/profile_images/1196503218525810688/0o_dSq5r_normal.jpg
## 603                                       http://pbs.twimg.com/profile_images/1240938025078718465/oBGXDwRH_normal.jpg
## 604                                       http://pbs.twimg.com/profile_images/1094053564823949312/QeRPb5IM_normal.jpg
## 605                                       http://pbs.twimg.com/profile_images/1166694337712939009/0xI5mEfC_normal.jpg
## 606                                        http://pbs.twimg.com/profile_images/604506720518422529/bdiUty1f_normal.png
## 607                                             http://pbs.twimg.com/profile_images/1705080259/hungry-girl_normal.jpg
## 608                                        http://pbs.twimg.com/profile_images/587974325568929793/3fNd-VlH_normal.jpg
## 609                                       http://pbs.twimg.com/profile_images/1085567465910923267/bDVoV16j_normal.jpg
## 610                                       http://pbs.twimg.com/profile_images/1140720247672070144/d2nigOVi_normal.jpg
## 611                                        http://pbs.twimg.com/profile_images/480039530917945345/O3ZYpxec_normal.png
## 612                                       http://pbs.twimg.com/profile_images/1240406768993345536/ZZy5f1kC_normal.jpg
## 613                                       http://pbs.twimg.com/profile_images/1003654937807654912/BOXV_xeZ_normal.jpg
## 614                                       http://pbs.twimg.com/profile_images/1171428057124503552/1FXhMtt9_normal.jpg
## 615                                        http://pbs.twimg.com/profile_images/915284505920983040/zh4Z9-E4_normal.jpg
## 616                                     http://pbs.twimg.com/profile_images/519018992/2009AVCatWithGlasses_normal.jpg
## 617                                       http://pbs.twimg.com/profile_images/508739384053465089/U_daF1Vi_normal.jpeg
## 618                                       http://pbs.twimg.com/profile_images/1239194350803996673/HX1XfcTX_normal.jpg
## 619                        http://pbs.twimg.com/profile_images/2693231917/31abff6878f0ec98cb872058737a9a7f_normal.png
## 620                                        http://pbs.twimg.com/profile_images/771413471250489345/KBnESBGp_normal.jpg
## 621                                       http://pbs.twimg.com/profile_images/1243471491259195397/4ZgprReo_normal.jpg
## 622                                        http://pbs.twimg.com/profile_images/779319402462314496/aPdVMLOl_normal.jpg
## 623                                       http://pbs.twimg.com/profile_images/1085629978845167616/tvp015f4_normal.jpg
## 624                                       http://pbs.twimg.com/profile_images/1243249936378015744/Xelgh7Jo_normal.jpg
## 625                                       http://pbs.twimg.com/profile_images/1159074657766653952/jvs0tzuK_normal.jpg
## 626                                       http://pbs.twimg.com/profile_images/1243630435881684992/6g8JWa06_normal.jpg
## 627                                       http://pbs.twimg.com/profile_images/1126196621006344192/4JDQ0BEN_normal.png
## 628                                       http://pbs.twimg.com/profile_images/1227280054226432000/0SY_NP4T_normal.jpg
## 629                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 630                                        http://pbs.twimg.com/profile_images/587695180062429184/kunkFklc_normal.jpg
## 631                                       http://pbs.twimg.com/profile_images/1026662529852956673/Y5EL2mDt_normal.jpg
## 632                                       http://pbs.twimg.com/profile_images/1227998473267662848/CaisAKXc_normal.jpg
## 633                                       http://pbs.twimg.com/profile_images/1239700688352849920/0wAb30Fe_normal.jpg
## 634                                       http://pbs.twimg.com/profile_images/1199657813158572033/6vbuINcz_normal.jpg
## 635                                       http://pbs.twimg.com/profile_images/1201693485335810048/M9pPoN-Q_normal.jpg
## 636                                        http://pbs.twimg.com/profile_images/776771900722774016/4wyqADT9_normal.jpg
## 637                                       http://pbs.twimg.com/profile_images/1029376079985659904/B2A60My8_normal.jpg
## 638                                       http://pbs.twimg.com/profile_images/1210675335479447553/yZP9aKCc_normal.jpg
## 639                                       http://pbs.twimg.com/profile_images/1017891928644505601/WStR0ue0_normal.jpg
## 640                                       http://pbs.twimg.com/profile_images/1243055276611141633/-42RQcE5_normal.jpg
## 641                                        http://pbs.twimg.com/profile_images/895331950495490048/e6tJaKna_normal.jpg
## 642                                        http://pbs.twimg.com/profile_images/946810166502096896/C4eF8hsL_normal.jpg
## 643                                       http://pbs.twimg.com/profile_images/1196703506809446402/ZEEgKnoe_normal.jpg
## 644                                       http://pbs.twimg.com/profile_images/1013237183338012673/jBFhgJT9_normal.jpg
## 645                                       http://pbs.twimg.com/profile_images/1208401094264655872/AEiQAEAH_normal.jpg
## 646                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 647                                        http://pbs.twimg.com/profile_images/838378924514017280/o00sRhai_normal.jpg
## 648                                       http://pbs.twimg.com/profile_images/1114039882148716544/Ka22puxD_normal.jpg
## 649                                       http://pbs.twimg.com/profile_images/1086042971546374145/0I3GqixQ_normal.jpg
## 650                                       http://pbs.twimg.com/profile_images/1234265514756714497/xJOJNzj2_normal.jpg
## 651                                       http://pbs.twimg.com/profile_images/1025095294113869825/kGS3rnB6_normal.jpg
## 652                                        http://pbs.twimg.com/profile_images/900589188034084864/dAU4wbZo_normal.jpg
## 653                                        http://pbs.twimg.com/profile_images/947226962254278661/V22aKunA_normal.jpg
## 654                                       http://pbs.twimg.com/profile_images/1165543432720281600/f0rU30yW_normal.jpg
## 655                                       http://pbs.twimg.com/profile_images/547154759400964096/vilJdlAV_normal.jpeg
## 656                                       http://pbs.twimg.com/profile_images/1222463934881398784/L7xzncQa_normal.jpg
## 657                                       http://pbs.twimg.com/profile_images/1108358497500971008/IEU45P3P_normal.jpg
## 658                                       http://pbs.twimg.com/profile_images/1017241423714717696/fZsEGyrW_normal.jpg
## 659                                        http://pbs.twimg.com/profile_images/709713764388442112/evLMdiy__normal.jpg
## 660                                       http://pbs.twimg.com/profile_images/1231136788695207937/27bSn64I_normal.jpg
## 661                                       http://pbs.twimg.com/profile_images/1001137402209955841/Cv-10huv_normal.jpg
## 662                                       http://pbs.twimg.com/profile_images/1128428233752489984/_375GOm5_normal.jpg
## 663                                       http://pbs.twimg.com/profile_images/1234818758469967873/DVf9DTw-_normal.jpg
## 664                                        http://pbs.twimg.com/profile_images/839947194245398528/ZojtkkNi_normal.jpg
## 665                                       http://pbs.twimg.com/profile_images/1218229842111537153/2kR8VO67_normal.jpg
## 666                                        http://pbs.twimg.com/profile_images/839398797151092736/1_sglBWh_normal.jpg
## 667                                       http://pbs.twimg.com/profile_images/1241655008082284545/4SpBU6LK_normal.jpg
## 668                                        http://pbs.twimg.com/profile_images/898840642985631744/Pd7n4cyL_normal.jpg
## 669                                       http://pbs.twimg.com/profile_images/1095010516592820225/5hHwJ7iL_normal.jpg
## 670                                       http://pbs.twimg.com/profile_images/1109757337668079616/ColYGb4O_normal.jpg
## 671                                       http://pbs.twimg.com/profile_images/1233252364770873345/WhW5WTFh_normal.jpg
## 672                                       http://pbs.twimg.com/profile_images/1154862025815875586/N7IvY1du_normal.jpg
## 673                                       http://pbs.twimg.com/profile_images/1050874330802982912/4KBs916j_normal.jpg
## 674                                       http://pbs.twimg.com/profile_images/1075048000567865344/_KUeyWFx_normal.jpg
## 675                                       http://pbs.twimg.com/profile_images/1209129606852366336/2uX6uEJ2_normal.jpg
## 676                                       http://pbs.twimg.com/profile_images/1237032013158219776/Fe3oRJFj_normal.jpg
## 677                                        http://pbs.twimg.com/profile_images/797556604069703680/LzL8WIUN_normal.jpg
## 678                                       http://pbs.twimg.com/profile_images/1166492985896439810/aKA2_t0Y_normal.jpg
## 679                                        http://pbs.twimg.com/profile_images/766373315690790912/kkmTmrIS_normal.jpg
## 680                                       http://pbs.twimg.com/profile_images/458759569087283200/edfWqIM0_normal.jpeg
## 681                                       http://pbs.twimg.com/profile_images/1239768795411107841/LlyrXU20_normal.jpg
## 682                                       http://pbs.twimg.com/profile_images/1238478422801776641/zVRkMLfC_normal.jpg
## 683                                       http://pbs.twimg.com/profile_images/1185014662645125122/ucv4YLk__normal.jpg
## 684                                       http://pbs.twimg.com/profile_images/1238689636769292289/c4vce-dT_normal.jpg
## 685                                        http://pbs.twimg.com/profile_images/597059141354528768/JX7l-GJS_normal.png
## 686                       http://pbs.twimg.com/profile_images/3280024681/7cb4ab00c7c74d120616e66c96f8d1a4_normal.jpeg
## 687                                       http://pbs.twimg.com/profile_images/1212484482776698881/UlUg9ent_normal.jpg
## 688                                        http://pbs.twimg.com/profile_images/841210781177802752/VD5lHJw__normal.jpg
## 689                                       http://pbs.twimg.com/profile_images/1170042710054408192/uqkOWGcx_normal.jpg
## 690                                       http://pbs.twimg.com/profile_images/1185975813931446272/LHVBC3cd_normal.jpg
## 691                                       http://pbs.twimg.com/profile_images/1231668849667260416/PphtoejX_normal.jpg
## 692                                        http://pbs.twimg.com/profile_images/925747794408644608/QOJlOoBD_normal.jpg
## 693                                        http://pbs.twimg.com/profile_images/890298118234943488/FZh9pIMM_normal.jpg
## 694                                       http://pbs.twimg.com/profile_images/1185283680035577861/_b7OEJ_q_normal.jpg
## 695                                       http://pbs.twimg.com/profile_images/1235642543179730945/YMSOOiL8_normal.jpg
## 696                                       http://pbs.twimg.com/profile_images/1149668607468736513/6XLJLk7J_normal.jpg
## 697                                       http://pbs.twimg.com/profile_images/1239638486245715968/0MylkTZJ_normal.jpg
## 698                                       http://pbs.twimg.com/profile_images/1229076942130950147/TUlXBUB1_normal.jpg
## 699                                       http://pbs.twimg.com/profile_images/1243225107205689345/g8Ef9Bg7_normal.jpg
## 700                                        http://pbs.twimg.com/profile_images/638968113036267520/QSBZ4Qi4_normal.jpg
## 701                                        http://pbs.twimg.com/profile_images/841471276745134084/DEJOlVcT_normal.jpg
## 702                                       http://pbs.twimg.com/profile_images/1243228707810140160/N9MYDizB_normal.jpg
## 703                                        http://pbs.twimg.com/profile_images/938458038721064960/aMQATzvZ_normal.jpg
## 704                                       http://pbs.twimg.com/profile_images/1233580100303507457/6V5foZMF_normal.jpg
## 705                                       http://pbs.twimg.com/profile_images/1143680028028182528/AorDYG7l_normal.png
## 706                                       http://pbs.twimg.com/profile_images/1215128236339781632/C5NLw90t_normal.jpg
## 707                                       http://pbs.twimg.com/profile_images/1241117387635687427/FPO3S3pX_normal.jpg
## 708                                       http://pbs.twimg.com/profile_images/1039957175148392448/sgyaQkkj_normal.jpg
## 709                                       http://pbs.twimg.com/profile_images/1103147209690759168/L-HsSEz2_normal.jpg
## 710                                       http://pbs.twimg.com/profile_images/1190100007757717506/hTocQZfp_normal.jpg
## 711                                       http://pbs.twimg.com/profile_images/1034901176536518656/u-lk77Cp_normal.jpg
## 712               http://pbs.twimg.com/profile_images/378800000310168732/af87e83fe2e350145cb228b0b19b65a5_normal.jpeg
## 713                                       http://pbs.twimg.com/profile_images/1186416291785035776/62A9ZN1U_normal.jpg
## 714                                       http://pbs.twimg.com/profile_images/1238624542857322496/CCZiHU43_normal.jpg
## 715                                        http://pbs.twimg.com/profile_images/608132742224568320/x3yrArdT_normal.png
## 716                                        http://pbs.twimg.com/profile_images/644563136671031296/qxHCZkau_normal.png
## 717                        http://pbs.twimg.com/profile_images/2720355270/eb3b634e4ba5805e6257b65e0b124b9e_normal.png
## 718                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 719                                       http://pbs.twimg.com/profile_images/1241537939185770496/nWYFKjcQ_normal.jpg
## 720                                       http://pbs.twimg.com/profile_images/1030536988871602176/BfAE2FdA_normal.jpg
## 721                                       http://pbs.twimg.com/profile_images/442047777489440768/Yj4CQkyT_normal.jpeg
## 722                                       http://pbs.twimg.com/profile_images/1061495711282409472/7P-HYU0I_normal.jpg
## 723                                       http://pbs.twimg.com/profile_images/1235337993659076609/Np_mYoKE_normal.png
## 724                                       http://pbs.twimg.com/profile_images/1206345148059279360/1Ux7Knus_normal.jpg
## 725                                       http://pbs.twimg.com/profile_images/1103044354392776704/FLWdA5OX_normal.png
## 726                                       http://pbs.twimg.com/profile_images/1178650665830223873/rVBp_WnS_normal.jpg
## 727                                       http://pbs.twimg.com/profile_images/1140030146633748480/o0_rdpJB_normal.jpg
## 728                                       http://pbs.twimg.com/profile_images/1100808059427921920/LgknD6V0_normal.png
## 729                                        http://pbs.twimg.com/profile_images/917837820311384064/Sv-bYmeG_normal.jpg
## 730                                       http://pbs.twimg.com/profile_images/1134121979336888320/bmBArFBQ_normal.jpg
## 731                                       http://pbs.twimg.com/profile_images/1213657616179593217/lOJ9Kgvr_normal.jpg
## 732                                       http://pbs.twimg.com/profile_images/1242507932916473857/vo1Bccrr_normal.jpg
## 733                                        http://pbs.twimg.com/profile_images/646679472578498561/DqbuKI-9_normal.png
## 734                                       http://pbs.twimg.com/profile_images/1223565277306281984/4lcB0rnu_normal.jpg
## 735                                       http://pbs.twimg.com/profile_images/1234658761748279297/WrNupagl_normal.jpg
## 736                                       http://pbs.twimg.com/profile_images/1211895692056072193/kTlJttJ4_normal.jpg
## 737                                       http://pbs.twimg.com/profile_images/1232461210836185088/o85ZMI3x_normal.jpg
## 738                                       http://pbs.twimg.com/profile_images/1231189469862211584/N_5W0ScW_normal.jpg
## 739                                       http://pbs.twimg.com/profile_images/1120759994637410304/H9NO3cPp_normal.png
## 740                                       http://pbs.twimg.com/profile_images/1191231884841218048/34XgRBy3_normal.jpg
## 741                                        http://pbs.twimg.com/profile_images/970072688420147201/ZflvQbwb_normal.jpg
## 742                                       http://pbs.twimg.com/profile_images/1212670951890010112/DdKfpmPE_normal.jpg
## 743                                       http://pbs.twimg.com/profile_images/493715929503526912/ylcEnhsT_normal.jpeg
## 744                                        http://pbs.twimg.com/profile_images/895338801899241472/qUhbNr9Z_normal.jpg
## 745                                       http://pbs.twimg.com/profile_images/1239321641571602432/T8gQXbtv_normal.jpg
## 746                                        http://pbs.twimg.com/profile_images/864880514120925184/d2JEmQPg_normal.jpg
## 747                                       http://pbs.twimg.com/profile_images/1202395946597965825/wWI02gCJ_normal.jpg
## 748                                       http://pbs.twimg.com/profile_images/1141026393960177665/f25_qTti_normal.png
## 749                                       http://pbs.twimg.com/profile_images/1229397251900006400/LHlfHHaD_normal.jpg
## 750                                       http://pbs.twimg.com/profile_images/1216091844775501825/ny6lKqzc_normal.jpg
## 751                                        http://pbs.twimg.com/profile_images/757316905132658688/AdPTHphF_normal.jpg
## 752                                       http://pbs.twimg.com/profile_images/1239186494109220865/YXNVllkA_normal.jpg
## 753                                       http://pbs.twimg.com/profile_images/466147405809713152/o668Bkzj_normal.jpeg
## 754                                       http://pbs.twimg.com/profile_images/1179254377648918528/xxX33PRV_normal.jpg
## 755                                       http://pbs.twimg.com/profile_images/1234399799107112960/xE5om-62_normal.jpg
## 756                                       http://pbs.twimg.com/profile_images/1173537216716529665/aqDHkHjc_normal.jpg
## 757                                       http://pbs.twimg.com/profile_images/1205262066455633922/f3SME50v_normal.jpg
## 758                                       http://pbs.twimg.com/profile_images/1151693350686212096/rVlcdM2c_normal.jpg
## 759                                       http://pbs.twimg.com/profile_images/1243146562798096387/PNGeY3wn_normal.jpg
## 760                                       http://pbs.twimg.com/profile_images/1243076919593037824/H1S8jbwL_normal.jpg
## 761                                       http://pbs.twimg.com/profile_images/1069663803867054081/LZCUlxu1_normal.jpg
## 762                                        http://pbs.twimg.com/profile_images/920382359467446272/ZY7aapnt_normal.jpg
## 763                                        http://pbs.twimg.com/profile_images/907935047570935808/0U2PlfPI_normal.jpg
## 764                                       http://pbs.twimg.com/profile_images/427372838421409792/biFZzJT5_normal.jpeg
## 765                                        http://pbs.twimg.com/profile_images/877204097354608640/G7eOaUPv_normal.jpg
## 766                                        http://pbs.twimg.com/profile_images/878860420269748224/K3fl86SV_normal.jpg
## 767                                       http://pbs.twimg.com/profile_images/1187751251062284290/Q9vY9PpD_normal.jpg
## 768                                       http://pbs.twimg.com/profile_images/1102948453586554890/_5JLw3eS_normal.png
## 769                                       http://pbs.twimg.com/profile_images/1197281462065586177/dZ4V5AaP_normal.jpg
## 770                                       http://pbs.twimg.com/profile_images/1115052832762232832/pL0gEzCv_normal.jpg
## 771                                        http://pbs.twimg.com/profile_images/884798889777405952/RpPbKGvd_normal.jpg
## 772                                       http://pbs.twimg.com/profile_images/1240760290200948739/Yn2iDXuj_normal.jpg
## 773                                       http://pbs.twimg.com/profile_images/1180476898310344705/4tFK8SfO_normal.jpg
## 774                                       http://pbs.twimg.com/profile_images/1240021782410727426/i95QD9ov_normal.jpg
## 775                                       http://pbs.twimg.com/profile_images/1189805450692366336/YD-x-SKz_normal.jpg
## 776                                       http://pbs.twimg.com/profile_images/1081144565074223104/GXHhxu3j_normal.jpg
## 777                                        http://pbs.twimg.com/profile_images/615852897964818432/j_RICtFH_normal.jpg
## 778                                       http://pbs.twimg.com/profile_images/1212601336375570433/ZfPGe3O7_normal.jpg
## 779                                       http://pbs.twimg.com/profile_images/1078196122026471425/IdeflAdD_normal.jpg
## 780                                        http://pbs.twimg.com/profile_images/974649402114658304/ZpPkIFzO_normal.jpg
## 781                                        http://pbs.twimg.com/profile_images/967696978648993792/6AtmR6AN_normal.jpg
## 782                                       http://pbs.twimg.com/profile_images/1241781771714232320/EjQ0EPLS_normal.jpg
## 783                                       http://pbs.twimg.com/profile_images/1171340590921003008/qHMaGX5j_normal.jpg
## 784                                       http://pbs.twimg.com/profile_images/1114936046070849542/wgILROtz_normal.jpg
## 785                                        http://pbs.twimg.com/profile_images/675440566683828228/QsDnPW4o_normal.jpg
## 786                                       http://pbs.twimg.com/profile_images/1029912238096756736/U_T7YZdW_normal.jpg
## 787                                        http://pbs.twimg.com/profile_images/945027963136995328/8JDeH3rS_normal.jpg
## 788               http://pbs.twimg.com/profile_images/378800000323912750/bb42a373042dec0348a3b45365d0df98_normal.jpeg
## 789                                       http://pbs.twimg.com/profile_images/543064572278484994/q5mVUUrH_normal.jpeg
## 790                                       http://pbs.twimg.com/profile_images/1095153354920132608/uzy-Prl4_normal.jpg
## 791                                       http://pbs.twimg.com/profile_images/1241663154561724416/xXFRcWlW_normal.jpg
## 792                                       http://pbs.twimg.com/profile_images/1226738720352555008/-xNhbise_normal.jpg
## 793                                       http://pbs.twimg.com/profile_images/1231675373810864128/fh6BixKF_normal.jpg
## 794                                       http://pbs.twimg.com/profile_images/1234958075393691651/WlT04dau_normal.jpg
## 795                                        http://pbs.twimg.com/profile_images/903243806803419136/WjL6DInl_normal.jpg
## 796                                       http://pbs.twimg.com/profile_images/1227618012594831360/4aPBvnJT_normal.jpg
## 797                                        http://pbs.twimg.com/profile_images/705465509702193156/Hb3xP1Fe_normal.jpg
## 798                                       http://pbs.twimg.com/profile_images/1008859962825674752/LXZA6gJo_normal.jpg
## 799                                       http://pbs.twimg.com/profile_images/1237768786222161921/ver3axDJ_normal.jpg
## 800                                        http://pbs.twimg.com/profile_images/804487305184448512/5CcFzZ6i_normal.jpg
## 801                                        http://pbs.twimg.com/profile_images/733381817395351552/YdblD3uo_normal.jpg
## 802                       http://pbs.twimg.com/profile_images/2637851968/7185c0babbc538e97fa228bf078d8000_normal.jpeg
## 803                                       http://pbs.twimg.com/profile_images/1234936869298659328/I64c_l2s_normal.jpg
## 804                                       http://pbs.twimg.com/profile_images/1203051309525540870/lWoCzH3C_normal.jpg
## 805       http://pbs.twimg.com/profile_images/1618915304/34616_449021800019_368680505019_6416460_7330995_n_normal.jpg
## 806                                        http://pbs.twimg.com/profile_images/849409635203383298/Ky1hW5sG_normal.jpg
## 807                                       http://pbs.twimg.com/profile_images/1238711600552517632/TzXmP-Gj_normal.jpg
## 808                                       http://pbs.twimg.com/profile_images/1227140710907793408/2w2XIU4K_normal.jpg
## 809                http://pbs.twimg.com/profile_images/378800000648566297/f21c1c49b2002aaa6dc929110b544cf7_normal.png
## 810                                       http://pbs.twimg.com/profile_images/1201572024407207938/yvabKOZw_normal.jpg
## 811                                        http://pbs.twimg.com/profile_images/688251468172808193/jqY15HMj_normal.jpg
## 812                                       http://pbs.twimg.com/profile_images/1189318035552821249/Mmi6XdGZ_normal.jpg
## 813                                       http://pbs.twimg.com/profile_images/1108778805923975168/uC_Ys5Kj_normal.jpg
## 814                                       http://pbs.twimg.com/profile_images/1003983089289187330/pZAOqJxm_normal.jpg
## 815                                        http://pbs.twimg.com/profile_images/923439109061955584/lQe4D3Am_normal.jpg
## 816                                       http://pbs.twimg.com/profile_images/1116793934821224448/CNURiQlr_normal.jpg
## 817                                       http://pbs.twimg.com/profile_images/1188941447824904192/bjFl8YAF_normal.jpg
## 818                                        http://pbs.twimg.com/profile_images/919058210107023361/sntzLa8k_normal.jpg
## 819                                       http://pbs.twimg.com/profile_images/1164304638197358592/4sKimfn9_normal.png
## 820                                       http://pbs.twimg.com/profile_images/1228163026076876800/FovX0iDf_normal.jpg
## 821                                        http://pbs.twimg.com/profile_images/803705582230216706/w744HlFp_normal.jpg
## 822                                       http://pbs.twimg.com/profile_images/1241061730102501376/Hz3lvkmP_normal.jpg
## 823                                        http://pbs.twimg.com/profile_images/815381426145267712/hd9YQDtN_normal.jpg
## 824                                                      http://pbs.twimg.com/profile_images/831003910/Glo_normal.jpg
## 825                    http://pbs.twimg.com/profile_images/483768174/buckley_2009_head_shot_smaller_pixels_normal.jpg
## 826                                       http://pbs.twimg.com/profile_images/1227266180940873732/piy00TqR_normal.jpg
## 827                                       http://pbs.twimg.com/profile_images/1182484855420063744/siCBx_iM_normal.jpg
## 828                                       http://pbs.twimg.com/profile_images/1201252080544960513/KRFyqDPv_normal.jpg
## 829                                                     http://pbs.twimg.com/profile_images/52434199/17873_normal.gif
## 830                                       http://pbs.twimg.com/profile_images/1077983055267221504/CApvAjeX_normal.jpg
## 831                                        http://pbs.twimg.com/profile_images/943052817211711489/zm_WJ1Eq_normal.jpg
## 832                                       http://pbs.twimg.com/profile_images/1131208628478914560/vUN5q1Yl_normal.jpg
## 833                                        http://pbs.twimg.com/profile_images/662739821081726976/GlDXWcrh_normal.jpg
## 834                                       http://pbs.twimg.com/profile_images/1243292041272004609/sOv3bBzl_normal.jpg
## 835                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 836                                        http://pbs.twimg.com/profile_images/996418078954180608/ceTOSwbZ_normal.jpg
## 837                                       http://pbs.twimg.com/profile_images/1225260558070370305/dcmjmiWB_normal.png
## 838                                       http://pbs.twimg.com/profile_images/1158355922714005505/JRXaOlaJ_normal.jpg
## 839                                       http://pbs.twimg.com/profile_images/470925220232970240/R4VmjQa4_normal.jpeg
## 840                                        http://pbs.twimg.com/profile_images/717161657735229440/TihcULEB_normal.jpg
## 841                                  http://pbs.twimg.com/profile_images/1244100681/264850316_873d6eb349_m_normal.jpg
## 842                                       http://pbs.twimg.com/profile_images/1135506970411061248/qucEAswm_normal.jpg
## 843                                       http://pbs.twimg.com/profile_images/1197431763565449216/dufE2RNG_normal.jpg
## 844                                        http://pbs.twimg.com/profile_images/972202422939496448/W8ax8MnG_normal.jpg
## 845                                   http://pbs.twimg.com/profile_images/2479305278/g14ykd53dg3magclx6ir_normal.jpeg
## 846                                       http://pbs.twimg.com/profile_images/1215679645179314176/LzIh0Xw5_normal.jpg
## 847                                       http://pbs.twimg.com/profile_images/1062233533274570752/r4pPbLIh_normal.jpg
## 848                                       http://pbs.twimg.com/profile_images/1229345960305856512/tNNjZfo3_normal.jpg
## 849                                       http://pbs.twimg.com/profile_images/457890836374880256/FgVmfbPw_normal.jpeg
## 850                                       http://pbs.twimg.com/profile_images/1242679960151699457/zS6xd0tc_normal.jpg
## 851                                       http://pbs.twimg.com/profile_images/1151012353586151424/c1DRyDXX_normal.jpg
## 852                                       http://pbs.twimg.com/profile_images/1071915290253058048/VS6hKql2_normal.jpg
## 853                                       http://pbs.twimg.com/profile_images/1056993971623342080/ccELHxPF_normal.jpg
## 854                       http://pbs.twimg.com/profile_images/3554512978/c94f72c16ab55a2dd2616dad1c9deb39_normal.jpeg
## 855                                        http://pbs.twimg.com/profile_images/705997722503897088/KAByG47-_normal.jpg
## 856                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 857                                        http://pbs.twimg.com/profile_images/859229757237374976/NLZWnLnT_normal.jpg
## 858                                       http://pbs.twimg.com/profile_images/1242293803547058176/LGEIFQc-_normal.jpg
## 859                                       http://pbs.twimg.com/profile_images/1231803221561106432/1-wOVWfe_normal.jpg
## 860                                        http://pbs.twimg.com/profile_images/775863429357633536/5lhJIy5v_normal.jpg
## 861                                       http://pbs.twimg.com/profile_images/1192039592247123968/HLFHEB03_normal.jpg
## 862                                       http://pbs.twimg.com/profile_images/1242364419570405376/0eVu31vN_normal.jpg
## 863                                       http://pbs.twimg.com/profile_images/1028008631965429760/rTo_Kiwo_normal.jpg
## 864                                       http://pbs.twimg.com/profile_images/1220054979358019585/aoga4xrn_normal.jpg
## 865                                       http://pbs.twimg.com/profile_images/1030497953117421568/amOqsOjL_normal.jpg
## 866                                        http://pbs.twimg.com/profile_images/808974122135015424/QLvOQx0N_normal.jpg
## 867                                       http://pbs.twimg.com/profile_images/1231144872452730880/Z4aTDnBB_normal.jpg
## 868                                        http://pbs.twimg.com/profile_images/778222524832317440/ds7zsrAX_normal.jpg
## 869                                        http://pbs.twimg.com/profile_images/923624737670021121/ygb1JNzP_normal.jpg
## 870                                       http://pbs.twimg.com/profile_images/1205301854332051456/dqGOHApR_normal.jpg
## 871                                       http://pbs.twimg.com/profile_images/1108567525116121088/VmkCfaVI_normal.jpg
## 872                                     http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 873                                       http://pbs.twimg.com/profile_images/1182132588502061056/j5Ylnxt2_normal.jpg
## 874                                       http://pbs.twimg.com/profile_images/1185285709990682624/c1qEjnp__normal.jpg
## 875                                       http://pbs.twimg.com/profile_images/1234896998278598661/KVZXGkPa_normal.jpg
## 876                                       http://pbs.twimg.com/profile_images/1050163634201157632/aU_Hyopi_normal.jpg
## 877                                       http://pbs.twimg.com/profile_images/1238194052669091842/0L-KeNCb_normal.jpg
## 878                                       http://pbs.twimg.com/profile_images/1200453190350725120/M421uNWn_normal.jpg
## 879                                       http://pbs.twimg.com/profile_images/1168806689086279680/5AS8dIuE_normal.jpg
## 880                                        http://pbs.twimg.com/profile_images/510934945871568896/WhcWjIx1_normal.png
## 881                                       http://pbs.twimg.com/profile_images/1208797126139867136/oLPn-vQ-_normal.png
## 882                                       http://pbs.twimg.com/profile_images/462065562432978944/7gettNFS_normal.jpeg
## 883                                       http://pbs.twimg.com/profile_images/1241703842682527744/BUeczLZH_normal.jpg
## 884                                        http://pbs.twimg.com/profile_images/946433524046766080/fPykkwbG_normal.jpg
## 885                                       http://pbs.twimg.com/profile_images/1207696935240359936/vaIi6qB8_normal.jpg
## 886                                       http://pbs.twimg.com/profile_images/1233046956945047552/K9u9LcQO_normal.jpg
## 887                                       http://pbs.twimg.com/profile_images/1221952744082165760/j1tPbGHR_normal.jpg
## 888                                       http://pbs.twimg.com/profile_images/1222628113907179531/hpqu9gEJ_normal.jpg
## 889                                       http://pbs.twimg.com/profile_images/1176884179977605120/G_C6P1yA_normal.jpg
## 890                                       http://pbs.twimg.com/profile_images/1196466602813874181/Soji_muu_normal.jpg
## 891                                       http://pbs.twimg.com/profile_images/1161680079442907137/DxdD7R5p_normal.jpg
## 892                                        http://pbs.twimg.com/profile_images/818680268085071872/0B5rY_h5_normal.jpg
## 893                                        http://pbs.twimg.com/profile_images/704767312780464128/STFcsmO__normal.jpg
## 894                                       http://pbs.twimg.com/profile_images/1057943661898616832/No5UNSI5_normal.jpg
## 895                                       http://pbs.twimg.com/profile_images/1243682002638974978/Hfd5x9Gi_normal.jpg
## 896               http://pbs.twimg.com/profile_images/378800000068092825/62673203a9579abc78f908a3a97df16d_normal.jpeg
## 897                                       http://pbs.twimg.com/profile_images/1221148035998240768/cU1VFUAr_normal.jpg
## 898                                       http://pbs.twimg.com/profile_images/1243344976907505666/iJ9cEZlZ_normal.jpg
## 899               http://pbs.twimg.com/profile_images/378800000198178193/30571b727044bc042e6ccb4ea6d33ca5_normal.jpeg
## 900                                       http://pbs.twimg.com/profile_images/1199528550774321153/0F_jRC71_normal.jpg
## 901                                       http://pbs.twimg.com/profile_images/1231041527742205952/Iwy4E0cQ_normal.jpg
## 902                                       http://pbs.twimg.com/profile_images/1225123225937399809/38e0pHIj_normal.jpg
## 903                                       http://pbs.twimg.com/profile_images/1228445599315513345/3Jep5R5y_normal.jpg
## 904                                        http://pbs.twimg.com/profile_images/799745098674278401/-w5-YgsG_normal.jpg
## 905                                        http://pbs.twimg.com/profile_images/866469455303520256/y_b7GMWp_normal.jpg
## 906                                       http://pbs.twimg.com/profile_images/1107636640661549058/jsfIXY5j_normal.jpg
## 907                                            http://pbs.twimg.com/profile_images/619088718/twitter-icon_normal.jpeg
## 908                                       http://pbs.twimg.com/profile_images/1231917884642930689/_FF1yAfl_normal.jpg
## 909                                       http://pbs.twimg.com/profile_images/1017077415183515648/_c7xFa55_normal.jpg
## 910               http://pbs.twimg.com/profile_images/378800000608664858/b5761f7f1f9d0d084a41ed25c447cac7_normal.jpeg
## 911                                       http://pbs.twimg.com/profile_images/1037646837883256832/czKx0JS8_normal.jpg
## 912                                       http://pbs.twimg.com/profile_images/1243202607247536128/F9aIHy1H_normal.jpg
## 913                                        http://pbs.twimg.com/profile_images/644805995705692160/hByAwFLY_normal.png
## 914                                       http://pbs.twimg.com/profile_images/1191824574213771265/rKMRXbcK_normal.jpg
## 915                                       http://pbs.twimg.com/profile_images/1217183085000896512/_l0m3slR_normal.jpg
## 916                                       http://pbs.twimg.com/profile_images/1207967364630880259/QiPXHWLH_normal.jpg
## 917                                        http://pbs.twimg.com/profile_images/787320828656574464/7Z_pLIdo_normal.jpg
## 918                                       http://pbs.twimg.com/profile_images/1242903623446626304/g1A5BLr2_normal.jpg
## 919                                       http://pbs.twimg.com/profile_images/1216337939522711552/H5nf2RWV_normal.jpg
## 920                                        http://pbs.twimg.com/profile_images/614311431505195008/ZcHYESI8_normal.jpg
## 921                        http://pbs.twimg.com/profile_images/3211355797/34c226fcfc1c5b99faba725ed1e435ab_normal.png
## 922                                        http://pbs.twimg.com/profile_images/966415727581368322/RVbYSHGS_normal.jpg
## 923                                       http://pbs.twimg.com/profile_images/1085920205472182272/tU8vY15q_normal.jpg
## 924                                       http://pbs.twimg.com/profile_images/1167251644159004673/BBQzLUCa_normal.jpg
## 925                                       http://pbs.twimg.com/profile_images/1233399543972139009/TZCqQ1yD_normal.jpg
## 926                                       http://pbs.twimg.com/profile_images/1190412390673895424/6JMCQnAn_normal.jpg
## 927                                        http://pbs.twimg.com/profile_images/890993341118238720/GeViRi3C_normal.jpg
## 928                                        http://pbs.twimg.com/profile_images/884404508381528065/NXzxoD0A_normal.jpg
## 929                                        http://pbs.twimg.com/profile_images/892133210230050816/AtE8Dy5V_normal.jpg
## 930                                       http://pbs.twimg.com/profile_images/1225707217996763137/XYm4_sTN_normal.jpg
## 931                                       http://pbs.twimg.com/profile_images/1192572708539682816/jJG6byii_normal.jpg
## 932                                        http://pbs.twimg.com/profile_images/702812468205199360/3RT2cfVR_normal.png
## 933                                       http://pbs.twimg.com/profile_images/1153787887046934529/ffh03jz-_normal.jpg
## 934                                        http://pbs.twimg.com/profile_images/816387959498817536/ezToR0Qn_normal.jpg
## 935                                       http://pbs.twimg.com/profile_images/1239649356288012289/sV3fC62N_normal.jpg
## 936                                        http://pbs.twimg.com/profile_images/915496393317502976/7aARUCDF_normal.jpg
## 937                                        http://pbs.twimg.com/profile_images/875680932346384388/vtWOxjw3_normal.jpg
## 938                                       http://pbs.twimg.com/profile_images/1129123097632600064/p1BE6gUr_normal.png
## 939                                       http://pbs.twimg.com/profile_images/1136092019867226112/SSP8UahE_normal.jpg
## 940                                       http://pbs.twimg.com/profile_images/1049176241218228224/3TqFcxOp_normal.jpg
## 941                                       http://pbs.twimg.com/profile_images/1240649587863552002/V6qAYiSs_normal.jpg
## 942                                                  http://pbs.twimg.com/profile_images/392853927/NGB-Clr_normal.jpg
## 943                                       http://pbs.twimg.com/profile_images/1193966240852783106/-B8KYOPE_normal.jpg
## 944                                       http://pbs.twimg.com/profile_images/1217468334683410432/XxOARupE_normal.jpg
## 945                                       http://pbs.twimg.com/profile_images/1234099439209455616/Qt0SbvZa_normal.jpg
## 946                                        http://pbs.twimg.com/profile_images/877036586164035584/NH6ZYm0k_normal.jpg
## 947                                       http://pbs.twimg.com/profile_images/1234979173673963522/R-sEtuCN_normal.jpg
## 948                                        http://pbs.twimg.com/profile_images/604050967714136064/l188QLW4_normal.jpg
## 949                                       http://pbs.twimg.com/profile_images/1241075811819687941/GBgFAbXf_normal.jpg
## 950                                       http://pbs.twimg.com/profile_images/1237689953418498049/kyjDh4zh_normal.jpg
## 951                                        http://pbs.twimg.com/profile_images/594888659876192256/W-Nql7-x_normal.png
## 952                                        http://pbs.twimg.com/profile_images/707294346639314945/kkOvZkby_normal.jpg
## 953                                       http://pbs.twimg.com/profile_images/1225968846835765249/FtX6g0fG_normal.jpg
## 954                                       http://pbs.twimg.com/profile_images/1170222681553162240/9ZaLRf3r_normal.jpg
## 955                                       http://pbs.twimg.com/profile_images/1186699044921344000/5Wl3V-9x_normal.jpg
## 956                                       http://pbs.twimg.com/profile_images/1045083900408606720/dVOebYj3_normal.jpg
## 957                                       http://pbs.twimg.com/profile_images/1104025107637379072/I6je1gKW_normal.png
## 958                                       http://pbs.twimg.com/profile_images/1201220533922279424/XfEVX0AB_normal.jpg
## 959                                       http://pbs.twimg.com/profile_images/1012731105148104707/0eTmgtF2_normal.jpg
## 960               http://pbs.twimg.com/profile_images/378800000253182844/3ee7fcd4f1ce9eb21115d8154d33679a_normal.jpeg
## 961                                       http://pbs.twimg.com/profile_images/496343802915737600/EOMHstqn_normal.jpeg
## 962                                       http://pbs.twimg.com/profile_images/1132869206154915840/4pFNZyxF_normal.jpg
## 963                                       http://pbs.twimg.com/profile_images/1102289839720939521/Zwjwu4sq_normal.jpg
## 964                                       http://pbs.twimg.com/profile_images/1151718257767751682/viP41jpN_normal.jpg
## 965                                                      http://pbs.twimg.com/profile_images/525611424/man_normal.jpg
## 966                                       http://pbs.twimg.com/profile_images/1225999799394033664/NXLdFDfN_normal.jpg
## 967                                          http://pbs.twimg.com/profile_images/55850164/DSC02704Compress_normal.JPG
## 968                                       http://pbs.twimg.com/profile_images/1242086831929331712/0qR8C36B_normal.jpg
## 969                                        http://pbs.twimg.com/profile_images/610569952320466944/VyfV0Nqz_normal.jpg
## 970                                       http://pbs.twimg.com/profile_images/1009459289424105474/DREkBRw5_normal.jpg
## 971                                       http://pbs.twimg.com/profile_images/1084766112133402624/BlexddQO_normal.jpg
## 972                                                   http://pbs.twimg.com/profile_images/1383318225/image_normal.jpg
## 973                                       http://pbs.twimg.com/profile_images/1077878224028340230/X-3iGpHk_normal.jpg
## 974                                       http://pbs.twimg.com/profile_images/1206881917133561857/Y_Rw3C0g_normal.jpg
## 975                                        http://pbs.twimg.com/profile_images/782273610866012160/mBehVKRr_normal.jpg
## 976                                       http://pbs.twimg.com/profile_images/1236692061975236608/2upBdTi6_normal.jpg
## 977                                        http://pbs.twimg.com/profile_images/771901839243677697/uS-h1w49_normal.jpg
## 978                                       http://pbs.twimg.com/profile_images/1241090013242294274/cvRo2RUD_normal.jpg
## 979                                       http://pbs.twimg.com/profile_images/1170413656284127232/vbAbZqBe_normal.jpg
## 980                                       http://pbs.twimg.com/profile_images/1000119451172376577/J_JeUVtl_normal.jpg
## 981                                       http://pbs.twimg.com/profile_images/1215516529997025280/Z6h22a3q_normal.jpg
## 982                                       http://pbs.twimg.com/profile_images/1141563343209209856/ooTRwjPH_normal.png
## 983                                       http://pbs.twimg.com/profile_images/1236663421606612992/CzszKieN_normal.jpg
## 984                                       http://pbs.twimg.com/profile_images/1169885535696850945/dDfJjNLz_normal.jpg
## 985                              http://pbs.twimg.com/profile_images/1664908777/inside_health_logo_twitter_normal.jpg
## 986                                       http://pbs.twimg.com/profile_images/1242190637321109509/tatBJbdl_normal.jpg
## 987                                        http://pbs.twimg.com/profile_images/822933310347169793/5wqBjox1_normal.jpg
## 988                                        http://pbs.twimg.com/profile_images/856095415862800384/Xt4yi8ct_normal.jpg
## 989                                       http://pbs.twimg.com/profile_images/1233760616202096641/YK7VUBVX_normal.jpg
## 990                                       http://pbs.twimg.com/profile_images/1083742521572892673/MPI0L_El_normal.jpg
## 991                                       http://pbs.twimg.com/profile_images/1151595535469633537/362QBvRm_normal.jpg
## 992                                       http://pbs.twimg.com/profile_images/1241042254934007809/BqmCRaUG_normal.jpg
## 993                                        http://pbs.twimg.com/profile_images/620718278063710210/aetUn0AS_normal.jpg
## 994                                       http://pbs.twimg.com/profile_images/1241857343962451970/dKP36Mqf_normal.jpg
## 995                                       http://pbs.twimg.com/profile_images/1238194160252776448/jGwhlRQC_normal.jpg
## 996                                        http://pbs.twimg.com/profile_images/994400181528420352/cjtnEzvH_normal.jpg
## 997                                       http://pbs.twimg.com/profile_images/1238107301002739713/ngNuCxh8_normal.jpg
## 998                                       http://pbs.twimg.com/profile_images/1143305460403122177/TBK5-lsn_normal.png
## 999                                       http://pbs.twimg.com/profile_images/1171616640766627840/TsyhFWVJ_normal.jpg
## 1000                                      http://pbs.twimg.com/profile_images/1004302483231989762/6wp1hnYW_normal.jpg
## 1001                                      http://pbs.twimg.com/profile_images/1190044765175201792/AQcDjMBS_normal.jpg
## 1002              http://pbs.twimg.com/profile_images/378800000633531030/c04790212eab4905ce3388c3bb6bb03e_normal.jpeg
## 1003                                       http://pbs.twimg.com/profile_images/827422276727427073/pRm7NnV8_normal.jpg
## 1004                                      http://pbs.twimg.com/profile_images/1243018135185154048/LZrbjflf_normal.jpg
## 1005                                      http://pbs.twimg.com/profile_images/1208071078100295680/1-N2mUbA_normal.jpg
## 1006                                       http://pbs.twimg.com/profile_images/912695347234918400/qkc44Eop_normal.jpg
## 1007                                      http://pbs.twimg.com/profile_images/1165558259320623104/3ue1fYnl_normal.jpg
## 1008                                      http://pbs.twimg.com/profile_images/1239032443035725824/96fUZZBB_normal.jpg
## 1009                                       http://pbs.twimg.com/profile_images/970142769397272579/u2t3d4qo_normal.jpg
## 1010                                      http://pbs.twimg.com/profile_images/1176870399834935296/osHnsDj1_normal.jpg
## 1011                                      http://pbs.twimg.com/profile_images/1106793547771064320/jlbad88j_normal.jpg
## 1012                                      http://pbs.twimg.com/profile_images/1011145903649054721/xISsQ95G_normal.jpg
## 1013                                      http://pbs.twimg.com/profile_images/1156634919256223744/rs9Aiwdx_normal.jpg
## 1014                                      http://pbs.twimg.com/profile_images/1039350686536716288/-YYaoxLK_normal.jpg
## 1015                                    http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 1016                                      http://pbs.twimg.com/profile_images/423549906050363392/ePYJqe6S_normal.jpeg
## 1017              http://pbs.twimg.com/profile_images/378800000853199023/bd9d3fa391f1a419392a7ec95cb7bf37_normal.jpeg
## 1018                                      http://pbs.twimg.com/profile_images/1240973455228571649/WQduodrf_normal.jpg
## 1019                                      http://pbs.twimg.com/profile_images/1111157090381258758/dznOj_xh_normal.jpg
## 1020                                      http://pbs.twimg.com/profile_images/1110380760186454016/e1F15ndj_normal.jpg
## 1021 http://pbs.twimg.com/profile_images/1779436973/AF_Week_My_Public_Affairs_Photography_OCT_2010_077__3__normal.JPG
## 1022                                      http://pbs.twimg.com/profile_images/1227707902359678976/AxzRSQde_normal.jpg
## 1023                                       http://pbs.twimg.com/profile_images/829690300008431616/vuIXac1-_normal.jpg
## 1024                                       http://pbs.twimg.com/profile_images/852246878423052288/ApsyxAsP_normal.jpg
## 1025                                      http://pbs.twimg.com/profile_images/1209261821376360449/8WO2NYdZ_normal.jpg
## 1026              http://pbs.twimg.com/profile_images/378800000184070749/76595be972c1b0df0e7c4b6151183728_normal.jpeg
## 1027                                      http://pbs.twimg.com/profile_images/1226683275998986240/aVXzQnqM_normal.jpg
## 1028                                      http://pbs.twimg.com/profile_images/1097521391417602048/08_p2Nl2_normal.jpg
## 1029                                           http://pbs.twimg.com/profile_images/80390106/Traci_edited-1_normal.jpg
## 1030                                      http://pbs.twimg.com/profile_images/1202348534206517249/pVWBqd9Z_normal.jpg
## 1031                                      http://pbs.twimg.com/profile_images/1243022297213980672/o4GSXxLd_normal.jpg
## 1032                                      http://pbs.twimg.com/profile_images/1234828311546732544/RkT60GN__normal.jpg
## 1033                                       http://pbs.twimg.com/profile_images/651243977404891136/6PF6EVDw_normal.jpg
## 1034                                      http://pbs.twimg.com/profile_images/1105792851194068992/n23_P6yR_normal.png
## 1035                                      http://pbs.twimg.com/profile_images/1214310461505703938/f3yQw1bU_normal.jpg
## 1036                                      http://pbs.twimg.com/profile_images/1183020647938756608/OWpr4U8x_normal.jpg
## 1037                                      http://pbs.twimg.com/profile_images/1197242541428621314/XU_dgyhp_normal.jpg
## 1038                                      http://pbs.twimg.com/profile_images/1241165622786039811/Me3-omiW_normal.jpg
## 1039                                      http://pbs.twimg.com/profile_images/1180700785841033216/PGrUAhK9_normal.jpg
## 1040                                      http://pbs.twimg.com/profile_images/1243382195609202690/uYla47Zy_normal.jpg
## 1041                                      http://pbs.twimg.com/profile_images/1227413241556537344/U3xHQzKc_normal.jpg
## 1042                      http://pbs.twimg.com/profile_images/3570153251/27760f2995f1ab022196fa6eaddbeb9e_normal.jpeg
## 1043                                      http://pbs.twimg.com/profile_images/1239940456458473472/ob9eklcD_normal.jpg
## 1044                                      http://pbs.twimg.com/profile_images/1237903592033574915/k1JXtU01_normal.jpg
## 1045                                       http://pbs.twimg.com/profile_images/932894370210177024/PDcP5NI5_normal.jpg
## 1046                      http://pbs.twimg.com/profile_images/2973548226/0d314b4513b1bfa0ffd11f1eda53e852_normal.jpeg
## 1047                                      http://pbs.twimg.com/profile_images/1214319178871644162/3To8-Ek4_normal.jpg
## 1048                                       http://pbs.twimg.com/profile_images/903084890832470016/35D_X7Nc_normal.jpg
## 1049                                      http://pbs.twimg.com/profile_images/1237865750427099137/wBo5GPj__normal.jpg
## 1050                                      http://pbs.twimg.com/profile_images/1241110773646196744/akyAmgld_normal.jpg
## 1051                                      http://pbs.twimg.com/profile_images/1221296066580172802/m2JPbHb4_normal.jpg
## 1052                                      http://pbs.twimg.com/profile_images/1237932655985012736/KbbGczlw_normal.jpg
## 1053                                      http://pbs.twimg.com/profile_images/1240790827208564736/ptdpg09W_normal.jpg
## 1054                                      http://pbs.twimg.com/profile_images/1242476383017799681/YtOqL4QB_normal.jpg
## 1055                                      http://pbs.twimg.com/profile_images/1168244181145477120/T0UoAdXs_normal.jpg
## 1056                                      http://pbs.twimg.com/profile_images/1121747836671025153/0o3CaQs5_normal.png
## 1057                                      http://pbs.twimg.com/profile_images/1240036343889231879/_mdjCqVR_normal.jpg
## 1058                                       http://pbs.twimg.com/profile_images/845286790336565250/6C4m1UzM_normal.jpg
## 1059                                      http://pbs.twimg.com/profile_images/1121375693147922432/H2lE67Na_normal.jpg
## 1060                                       http://pbs.twimg.com/profile_images/971824171322871810/ccnk52mc_normal.jpg
## 1061                                      http://pbs.twimg.com/profile_images/1060610156805922816/owm9iDVW_normal.jpg
## 1062                                  http://pbs.twimg.com/profile_images/2300559906/pwh6tqaumq9zvxyrul57_normal.jpeg
## 1063                                    http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 1064                                       http://pbs.twimg.com/profile_images/611673965719879680/aV1ahM-G_normal.jpg
## 1065              http://pbs.twimg.com/profile_images/378800000333556301/3639dbf7f306b65f42b1d539f21ba9a1_normal.jpeg
## 1066                                      http://pbs.twimg.com/profile_images/1060281164747997201/29jZ8vr-_normal.jpg
## 1067                                    http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png
## 1068                                      http://pbs.twimg.com/profile_images/1238297293146804225/a5w0KnmF_normal.jpg
## 1069                                      http://pbs.twimg.com/profile_images/1235647451119226881/pQy9vTxA_normal.jpg
## 1070                                      http://pbs.twimg.com/profile_images/1060271522319925257/fJKwJ0r2_normal.jpg
## 1071                                       http://pbs.twimg.com/profile_images/875412020073381889/kVpgWUwf_normal.jpg
## 1072                                      http://pbs.twimg.com/profile_images/1156400819626844160/ieq_PELd_normal.jpg
## 1073                                      http://pbs.twimg.com/profile_images/1120103555577237507/IRPZeJii_normal.png
## 1074                                       http://pbs.twimg.com/profile_images/888151612161744896/VQELe1ds_normal.jpg
## 1075              http://pbs.twimg.com/profile_images/378800000586237269/9aeb18325e8948ace514ed523e0e5f7f_normal.jpeg
## 1076                                      http://pbs.twimg.com/profile_images/1240015287828832261/JNugYdJs_normal.jpg
## 1077                                       http://pbs.twimg.com/profile_images/950184910010093568/Otuvmk-f_normal.jpg
## 1078                                      http://pbs.twimg.com/profile_images/1085781343387115520/skpm8Y-S_normal.jpg
## 1079                                       http://pbs.twimg.com/profile_images/932381379068915712/RKUqs4k-_normal.jpg
## 1080                                      http://pbs.twimg.com/profile_images/1163298681459814401/odx6Jh1R_normal.jpg
## 1081                                      http://pbs.twimg.com/profile_images/1150892122385592320/qvfEO4Th_normal.jpg
## 1082                                      http://pbs.twimg.com/profile_images/1170944739794935809/Fdj3Ttyx_normal.jpg
## 1083                                      http://pbs.twimg.com/profile_images/1211110716226203648/kqx_02ir_normal.jpg
## 1084                                      http://pbs.twimg.com/profile_images/1221148035998240768/cU1VFUAr_normal.jpg
## 1085                                      http://pbs.twimg.com/profile_images/1024533782341201920/gN4lbUWT_normal.jpg
## 1086                                      http://pbs.twimg.com/profile_images/1241500544553881602/PM2e2rEA_normal.jpg
## 1087                                      http://pbs.twimg.com/profile_images/1204083578365083653/xGumbaQ8_normal.jpg
## 1088                                      http://pbs.twimg.com/profile_images/455798360532738048/qaWYNeaO_normal.jpeg
## 1089                                            http://pbs.twimg.com/profile_images/1539204901/MC900439592_normal.PNG
## 1090                                      http://pbs.twimg.com/profile_images/1238164592804724743/DZAR-iBO_normal.jpg
## 1091              http://pbs.twimg.com/profile_images/378800000394119265/43c970890be525edaed2acdf176e9fa4_normal.jpeg
## 1092                                      http://pbs.twimg.com/profile_images/1243102790823673857/DrLI6Dql_normal.jpg
## 1093                                      http://pbs.twimg.com/profile_images/540539932972838913/wIoOzdn7_normal.jpeg
## 1094                                      http://pbs.twimg.com/profile_images/557082447696125952/SvGNOOyC_normal.jpeg
## 1095                                      http://pbs.twimg.com/profile_images/1087027268021571584/I1n4skP7_normal.jpg
## 1096                                      http://pbs.twimg.com/profile_images/1227412837238177793/p3B1D9XU_normal.jpg
## 1097                                      http://pbs.twimg.com/profile_images/1212326704720568320/6ekqrvST_normal.png
## 1098                                       http://pbs.twimg.com/profile_images/755749411817422848/l3U3ZG4X_normal.jpg
## 1099                                      http://pbs.twimg.com/profile_images/1236007258351419392/O4ObCF02_normal.jpg
## 1100                                      http://pbs.twimg.com/profile_images/1221898467779514375/oc94EyEe_normal.jpg
## 1101                                      http://pbs.twimg.com/profile_images/1227975817222918149/yVc9a0HU_normal.jpg
## 1102                                      http://pbs.twimg.com/profile_images/1186377444829335552/zK7ZkZu8_normal.jpg
## 1103                                       http://pbs.twimg.com/profile_images/736155802600386560/ZYAUH8g__normal.jpg
## 1104                                      http://pbs.twimg.com/profile_images/1240702788394311680/njIGKdjl_normal.jpg
## 1105                                      http://pbs.twimg.com/profile_images/1050480752545202176/jTqrlkcw_normal.jpg
## 1106                                      http://pbs.twimg.com/profile_images/556448194574712833/wQn3yj4L_normal.jpeg
## 1107                                      http://pbs.twimg.com/profile_images/1103769146922217474/OjSB7Zft_normal.png
## 1108                                      http://pbs.twimg.com/profile_images/1210037380872384512/MuaSzkRA_normal.jpg
## 1109                                      http://pbs.twimg.com/profile_images/1208046310168891392/ipkTYSnG_normal.jpg
## 1110                                      http://pbs.twimg.com/profile_images/1068527456926060544/IWgfBxxe_normal.jpg
## 1111                                      http://pbs.twimg.com/profile_images/1242548413293568000/3cjE2kiU_normal.jpg
##  [ reached 'max' / getOption("max.print") -- omitted 3889 rows ]
dim(covid19_tw_sample) # 데이터 프레임; 5000 행; 90 열
## [1] 5000   90
covid19_tw_sample[1,] # covid19_tw_sample 데이터 프레임의 첫번째 행 (관측치) 인덱싱 (불러오기)
##     user_id           status_id          created_at screen_name
## 1 435422713 1243582392390029315 2020-03-27 16:55:21     tjhend1
##                                                                                                       text
## 1 Hopefully when the White House reopens we’ll  have new owners in there too !!!! https://t.co/1EkTXt8nkW
##               source display_text_width reply_to_status_id reply_to_user_id
## 1 Twitter for iPhone                103               <NA>             <NA>
##   reply_to_screen_name is_quote is_retweet favorite_count retweet_count
## 1                 <NA>    FALSE      FALSE              5             2
##   quote_count reply_count hashtags symbols                   urls_url
## 1          NA          NA       NA      NA eater.com/2020/3/26/2119…
##                 urls_t.co
## 1 https://t.co/1EkTXt8nkW
##                                                                              urls_expanded_url
## 1 https://www.eater.com/2020/3/26/21196308/trump-restaurants-comeback-coronavirus-covid-19-lol
##   media_url media_t.co media_expanded_url media_type ext_media_url
## 1        NA         NA                 NA         NA            NA
##   ext_media_t.co ext_media_expanded_url ext_media_type mentions_user_id
## 1             NA                     NA           <NA>               NA
##   mentions_screen_name lang quoted_status_id quoted_text quoted_created_at
## 1                   NA   en             <NA>        <NA>              <NA>
##   quoted_source quoted_favorite_count quoted_retweet_count quoted_user_id
## 1          <NA>                    NA                   NA           <NA>
##   quoted_screen_name quoted_name quoted_followers_count quoted_friends_count
## 1               <NA>        <NA>                     NA                   NA
##   quoted_statuses_count quoted_location quoted_description quoted_verified
## 1                    NA            <NA>               <NA>              NA
##   retweet_status_id retweet_text retweet_created_at retweet_source
## 1              <NA>         <NA>               <NA>           <NA>
##   retweet_favorite_count retweet_retweet_count retweet_user_id
## 1                     NA                    NA            <NA>
##   retweet_screen_name retweet_name retweet_followers_count
## 1                <NA>         <NA>                      NA
##   retweet_friends_count retweet_statuses_count retweet_location
## 1                    NA                     NA             <NA>
##   retweet_description retweet_verified place_url place_name place_full_name
## 1                <NA>               NA      <NA>       <NA>            <NA>
##   place_type country country_code geo_coords coords_coords
## 1       <NA>    <NA>         <NA>     NA, NA        NA, NA
##                      bbox_coords
## 1 NA, NA, NA, NA, NA, NA, NA, NA
##                                               status_url            name
## 1 https://twitter.com/tjhend1/status/1243582392390029315 Terry Henderson
##           location
## 1 Pigeon Forge, TN
##                                                                                                                                                    description
## 1 Husband of Valerie, Grandfather, official cocktail connoisseur, Loves politics, weather, sports, smooth jazz , and my mountains of Tenn. #TheResistance #FBR
##    url protected followers_count friends_count listed_count statuses_count
## 1 <NA>     FALSE           20632         19382            5          37846
##   favourites_count  account_created_at verified profile_url
## 1            46587 2011-12-13 01:44:12    FALSE        <NA>
##   profile_expanded_url account_lang
## 1                 <NA>           NA
##                                           profile_banner_url
## 1 https://pbs.twimg.com/profile_banners/435422713/1510327669
##                             profile_background_url
## 1 http://abs.twimg.com/images/themes/theme1/bg.png
##                                                             profile_image_url
## 1 http://pbs.twimg.com/profile_images/511673152867295232/yVwBSKqt_normal.jpeg
table(covid19_tw_sample[,1]) # covid19_tw_sample 데이터 프레임의 첫번째 열 (변수) 인덱싱 (불러오기)
## 
## 1000104162292617221           100060795 1000829918085877760 1001323313325662208 
##                   1                   1                   1                   1 
## 1001640317542514688 1001769760596676609 1002954431263051777 1003112494615818240 
##                   1                   1                   1                   1 
## 1003719203810136065 1004028896298356736 1004286713760567297 1004417185060552704 
##                   1                   1                   1                   1 
## 1004513627762642944          1004610301 1004854494629453825 1005158059310796801 
##                   1                   1                   1                   1 
##           100555651          1005675566 1006039045078597632 1006448215535833089 
##                   1                   1                   1                   1 
## 1007304227465715717 1007639158825857024 1008401029300412416          1008984373 
##                   1                   1                   1                   1 
## 1009860838432309251           100986964 1009898349078560774 1010188355265613825 
##                   1                   2                   1                   1 
## 1010292108878544896 1010481312157896707 1011265086038708225          1011896054 
##                   1                   1                   1                   1 
## 1012147043018555392          1013053501          1013225876 1013399838128365569 
##                   1                   1                   1                   1 
## 1013959574221721604 1013967453100040192 1014186711889346560           101444042 
##                   1                   1                   1                   1 
##          1014501968 1014536032367198208 1016427176810500096 1017262982416527360 
##                   1                   1                   1                   1 
##           101750881 1017608150424457216 1017887879064932353          1018275578 
##                   1                   1                   1                   1 
## 1018373002302353408 1018414467871277056            10191572 1019196799091912708 
##                   1                   1                   1                   1 
## 1019513143335309313           102014821           102036670 1020649026226569217 
##                   1                   1                   1                   1 
## 1021429123204382721 1021506969381744640           102187500 1022173660675801089 
##                   1                   1                   1                   1 
## 1022289714781581315 1022656354085875713          1022737278           102284891 
##                   1                   1                   1                   1 
## 1023211013905235968 1023570844646363136           102384575 1024393247005859840 
##                   1                   1                   1                   1 
## 1024479532240314369 1024662370210258944 1024761046009958401 1025002772025012225 
##                   1                   1                   1                   1 
##           102504031 1026608641359708161 1027727439487631360 1027779719603937280 
##                   1                   1                   1                   1 
## 1027847986880163840           102832374 1028577651965878278 1028682088332095488 
##                   1                   1                   1                   1 
## 1029042264431972353 1029469617671077888 1029642919374999552 1029769394161733632 
##                   1                   1                   1                   1 
## 1029858251427520512 1029941669418991617 1029964129488883712           103074428 
##                   1                   1                   1                   1 
## 1031021950796099585 1031085202905292800 1031324025811681280 1031624140459896833 
##                   1                   1                   1                   1 
##          1031783461          1031839747 1031854011983560705 1031914298963058690 
##                   1                   1                   1                   1 
## 1032989915305324544          1033198891           103323813           103416063 
##                   1                   1                   2                   1 
## 1034416282991554560 1034622757000990720           103558465 1035733568410939393 
##                   1                   1                   1                   1 
##          1036115508 1036138975772258305 1036213889069981698 1036672119189463040 
##                   1                   1                   1                   1 
## 1036824197325094912 1037016197777125381 1037021823991332864 1037112108675198977 
##                   1                   1                   1                   1 
## 1037387581787394048 1038166953305759744 1038746010984570880 1038849842208886784 
##                   1                   1                   1                   1 
##          1038948841 1039012592801337346          1039123603 1039206560394895362 
##                   1                   1                   1                   1 
##          1039296595 1039346703760072704 1039350034293112832 1039833270136000512 
##                   1                   1                   1                   1 
##            10398432 1039876442916618241           104048294 1040712129836462080 
##                   1                   1                   1                   1 
## 1040742526473392129           104142711 1041718006747820032           104182491 
##                   1                   1                   1                   1 
## 1042167518377332741 1042460661941383168 1043209440894234624 1043389291110572033 
##                   1                   1                   1                   1 
## 1043834805253787648 1044139446172569600 1044256334181470209 1045078084028788736 
##                   1                   1                   1                   1 
## 1045233414591401984           104523504           104567779 1045761293947416577 
##                   1                   1                   1                   1 
## 1047242879104516096 1047466116086452225 1047552186559942657 1047643207679582208 
##                   1                   1                   1                   1 
## 1047676545467392000 1048455864066215936 1048558756810948608 1048672971315994624 
##                   1                   1                   1                   1 
## 1049288911321800704           104943342 1049580038914420737          1049879466 
##                   1                   1                   1                   1 
## 1050203915369746432           105081682 1050843342026752007 1052255338605379584 
##                   1                   1                   1                   1 
## 1052258216695001094 1052539070268796930 1053058626699624448          1053629491 
##                   1                   1                   1                   1 
## 1053646880373174272 1054332434630799363 1054398119545311239 1054664296146309121 
##                   1                   1                   1                   1 
## 1054982793191739392 1055070224305807361 1055161630940643334 1056880983587409920 
##                   1                   1                   1                   1 
## 1057374564873895941 1057942141484318721 1059145092022370310 1059155480407232512 
##                   1                   1                   1                   1 
## 1059695815566942208 1060134345397026816 1060609814248779777 1061090625364418560 
##                   1                   1                   1                   1 
## 1062288634693500928 1062320981148987397 1062344789679579136 1062519918464131073 
##                   1                   1                   1                   1 
## 1062604369944817665 1063034652930203648 1063135254700015620 1063829884940767234 
##                   1                   1                   1                   1 
##            10642452          1064378120 1064752448005382145 1064954946875928576 
##                   1                   1                   1                   1 
## 1065106537952071680 1065294375805116417 1066000770548547584 1066001592392986625 
##                   1                   1                   1                   1 
## 1066013022437617664 1066039768151195648 1066972567943053312          1067720749 
##                   1                   1                   1                   1 
## 1068147338789748738 1068316200302600192          1068742092           106881022 
##                   1                   1                   1                   1 
## 1069011622033858561           106956692          1069719103 1069728985301610497 
##                   1                   1                   1                   1 
## 1069852763494981633 1070113933829246976 1070742463776808960 1070863316686270464 
##                   1                   1                   1                   1 
##           107100478 1071411403003695106 1071467478872719366 1071553595735203840 
##                   1                   1                   1                   1 
## 1071717913579597824 1071747554319233024 1072168892066381824 1072434896998670338 
##                   1                   1                   1                   1 
## 1072532940985376770 1072907567440060418 1073609938629509120 1074710666819325953 
##                   1                   1                   1                   1 
##          1075102393 1075214757899100161 1075699231065890818 1076062184554356736 
##                   1                   1                   1                   1 
## 1076203094021558274 1077127916331433985          1077603570 1078347082220486656 
##                   1                   1                   1                   1 
##          1078468759 1078696432909971456 1078761836416249858 1078785775666384905 
##                   1                   1                   1                   1 
## 1078907489138094080 1080469345292206080 1080551651881218048 1080963004940910592 
##                   1                   1                   1                   1 
## 1080980942796263424 1081218764601995265 1081569541841276930 1081682728540688386 
##                   1                   1                   1                   1 
## 1083000076300177409 1083431944984117248 1083601888795344897 1083796041097506816 
##                   1                   1                   1                   1 
##           108427276          1084599271 1084689348719607809 1084984854096289793 
##                   1                   1                   1                   1 
## 1085231075796926465 1085559370514137089           108576115 1085833963011231744 
##                   1                   1                   1                   1 
## 1085929920042356738 1086282853116067841 1086863521206292480           108707115 
##                   1                   1                   1                   1 
##          1087167182            10872822          1087390572 1087431753130696704 
##                   1                   1                   1                   1 
## 1087905907185516544 1088501349325639682 1088762503113461761 1089184564084465665 
##                   1                   1                   1                   1 
##          1089597794          1089609199 1090143008874549248 1090197450076422145 
##                   1                   1                   1                   1 
## 1090332519659171841 1090442109952446464 1090652065091801088 1090672803047788546 
##                   1                   1                   1                   1 
##           109082290 1091084960566571009          1091735550           109188899 
##                   1                   1                   1                   1 
## 1092360097039351808          1092461503 1092757119273758721          1093309626 
##                   1                   1                   1                   1 
## 1093476305444761600           109418805 1094784088295145473 1095010434913050632 
##                   1                   1                   1                   1 
## 1095367835713302528 1095433469889515521           109549520 1096081984261144578 
##                   1                   1                   1                   1 
## 1096093605708484608           109619043 1096222688819990528           109662055 
##                   1                   1                   1                   1 
## 1096638859926884353           109681911 1097111725738991617 1097558917679177729 
##                   1                   1                   1                   1 
## 1097694473952342022 1097733805886984192           109787469 1097919064733822977 
##                   1                   1                   1                   1 
## 1097976497736957953 1098106957683019776          1098256147 1098507875901673473 
##                   1                   1                   1                   1 
## 1098867103803699200 1098907233151258624           109936228 1099782986143285248 
##                   1                   1                   1                   1 
## 1099805458678738950            11005112          1101055693 1101721332507529221 
##                   1                   1                   1                   1 
## 1101766666147356672 1101879644310200327           110194870 1102789927690031105 
##                   1                   1                   1                   1 
## 1102952446362415104          1103170992 1103571889686040577 1104563671076868103 
##                   1                   1                   1                   1 
## 1105504595617316864 1105762607938633729 1105852915204476928 1106416853914656768 
##                   1                   1                   1                   1 
## 1106772693515407361 1106834028794130433           110692399 1107101863751499776 
##                   1                   1                   1                   1 
##          1107320570 1107367240154955777 1107527195021332480 1107553772639801344 
##                   1                   2                   1                   1 
##           110766028 1107768350870913024 1107892604081975296           110810612 
##                   1                   1                   1                   1 
## 1108357496471576576 1108413581173972994 1109512794909667328 1109756410273792000 
##                   1                   1                   1                   1 
## 1109922072350937088 1109943627852197888 1110010824666558464 1110339603477786625 
##                   1                   1                   1                   1 
## 1111001861870493703 1111014031123341313 1111086753161666561          1111660543 
##                   1                   1                   1                   1 
##          1111780933 1112145766405955584           111241075 1112569604277194753 
##                   1                   1                   1                   1 
## 1112658207820996609 1112736653137723399 1112828281525501953 1113228970999177216 
##                   1                   1                   1                   1 
## 1113747196099399680 1114303846426263559 1114596258428215299 1114757001148497920 
##                   1                   1                   1                   1 
## 1115285566340333570 1115711945309429760 1115853999935315973 1116367540131979265 
##                   1                   1                   1                   1 
##          1117170756           111721601 1117356436437315585          1117483992 
##                   1                   1                   1                   1 
## 1118371610052956168 1118763194145759232          1118767826 1119286872121851906 
##                   1                   1                   1                   2 
## 1119900799105228801 1120285964096634886            11204102 1120493846872248326 
##                   1                   1                   1                   1 
##           112073654 1121536735538581504 1121761443970342912           112216945 
##                   1                   1                   1                   1 
## 1122539621429043200 1122851613989834753           112303384 1124107125205024768 
##                   1                   1                   1                   1 
## 1124336498487300097 1124846100463149056 1125466896768409605 1125948348878376960 
##                   1                   1                   1                   1 
## 1126522595984195584 1126555593446182912 1126844144788357120 1127379536000294913 
##                   1                   1                   1                   1 
## 1127712873537470464 1127744636334825473 1127809169304715264 1128165155110436864 
##                   1                   1                   1                   1 
## 1128257454796492806          1128434916 1128800717760794624          1128888726 
##                   1                   1                   1                   1 
## 1129061108566769664 1129350401738850307 1129420931934302208 1129477055202988032 
##                   1                   1                   1                   1 
## 1129586164082434048 1130751075613417473          1131197072 1131290589570457601 
##                   1                   1                   1                   1 
## 1131554315666055169 1131558211029471232 1131977471295754240 1132376653630443521 
##                   1                   1                   1                   1 
## 1132542712195026944 1132607455752544256 1132699658789249024 1133031318638473217 
##                   1                   1                   1                   1 
## 1133422659352616960 1133481695284301824 1133510366422392833            11336782 
##                   1                   1                   1                   1 
## 1133682480333152256 1134189787953467393 1134336456837586944 1135071967982342145 
##                   1                   1                   1                   1 
## 1135299232548761605 1135600464299474944 1135923419910983680          1136030995 
##                   1                   1                   1                   1 
## 1136063449379811328 1136446087600910336 1136648612165955584 1136652739524616192 
##                   1                   1                   1                   1 
## 1138247180722900992           113826230           113875281 1139405234902425601 
##                   1                   1                   1                   1 
##           113988344          1140164130 1140622597463445509 1140962738627317762 
##                   1                   1                   1                   1 
## 1141295632336019456 1141505181068201985            11416112           114174809 
##                   1                   1                   1                   1 
## 1142083064618717184           114289144 1142935828332797953 1143183736957218817 
##                   1                   1                   1                   1 
## 1143217251803422721 1143889009120333824 1144399432223346688 1144597668326531072 
##                   1                   1                   1                   1 
## 1144693788264341504 1145462684445315072 1145691758971498497 1145756108406939649 
##                   1                   1                   1                   1 
## 1145906440172756993           114625323          1146470090 1146476534330474498 
##                   1                   1                   1                   1 
## 1146547265416417281 1146595459651297280 1146619916780474369 1146642659521355776 
##                   1                   1                   1                   1 
## 1147192973039480832 1147244238612180993 1148097345206308865          1148320386 
##                   1                   1                   1                   1 
##            11483372 1148624056637362176 1149197863626387458           115013442 
##                   1                   1                   1                   1 
## 1150755621462917120 1151019872488501248 1151178924577058816           115123623 
##                   1                   1                   1                   1 
## 1151649054520070144 1151693240648626176 1151924462071078912 1151934548747403264 
##                   1                   1                   1                   1 
##           115220086 1152238701835116545 1152253907512332288 1152568187097100288 
##                   1                   1                   1                   1 
## 1152928038293823493 1153114101662593030          1153435656 1153618720889212929 
##                   1                   1                   1                   1 
## 1154100426070986758 1154171516755546112 1154343273349226496 1154357613355626497 
##                   1                   1                   1                   1 
## 1154704679328260096 1155060358375251969 1155312569361547264          1155417270 
##                   1                   1                   1                   1 
##           115551731 1155545182437171200           115557189 1155573626877485061 
##                   1                   1                   1                   1 
## 1155904560831053824           115624161 1156265515045859331 1156387654751129601 
##                   1                   1                   1                   1 
## 1156399854693826560 1156802882332704768 1157031592482824192          1157153923 
##                   1                   1                   1                   1 
## 1157565909675978752 1157576861234319360 1158317830749618176           115833582 
##                   1                   1                   1                   1 
## 1158743359198040064 1158854621848322048            11589192 1159077699211681792 
##                   1                   1                   1                   1 
## 1159208351642869761 1159374213096071173 1159599872472842241 1160039696807993346 
##                   1                   1                   1                   1 
##           116006673 1160078976292982784 1160113401999306752 1160807974979325959 
##                   1                   1                   1                   1 
##           116141566 1161651929644183552 1161725627856240642 1161820043367321601 
##                   2                   1                   1                   1 
##           116221483 1162222854772944899 1162386157268660224 1162772933493706752 
##                   1                   1                   1                   1 
##           116356889 1164114552499384320 1164301466443628545 1164304446899347457 
##                   1                   1                   1                   1 
##           116466931 1164681827703017475 1165133049035546624 1165297634678120449 
##                   1                   1                   1                   1 
## 1166277681362755584 1166692155865223168 1166693963207757824 1166759532124680192 
##                   1                   1                   1                   1 
## 1167118525359632384 1167435005204656130 1167547766828126209 1167553563339493376 
##                   1                   1                   1                   1 
## 1167669981351313408 1167826295146893312 1168105020140773376 1168169461750358016 
##                   3                   1                   1                   1 
## 1168483995149045761 1168611088533004294 1168910892961976320          1169559752 
##                   1                   1                   1                   1 
##          1169585576 1169807983955468289          1170005964 1170010467592474625 
##                   1                   1                   1                   1 
## 1170465404625522690 1171133491636920320 1171370567091597314 1171467279877279747 
##                   1                   1                   1                   1 
## 1171475306651295744 1171570646725353472          1171620144 1171721557707755525 
##                   1                   1                   1                   1 
## 1171789657815887872 1171874133094936576 1172030497070804993           117204998 
##                   1                   1                   1                   1 
## 1172145907434803200 1172339221551448064 1172706633883029506 1172860329648222208 
##                   1                   1                   1                   1 
## 1173165534805975041           117327100 1173579351230574592 1174049491340496896 
##                   1                   1                   1                   1 
## 1174060621920395269 1174345996375121925 1174465417852653568           117450444 
##                   1                   1                   1                   1 
## 1174559600319717376          1174704810 1174848727741292544          1175113044 
##                   1                   1                   1                   1 
##           117513421          1175284032 1175735630636208130 1175902605056380928 
##                   1                   1                   1                   1 
## 1176013903899156482 1176066452811603968           117610607 1176455300251103233 
##                   1                   1                   1                   1 
## 1176819019682373632 1176884023039336449 1177255829847846915 1177288337360609280 
##                   1                   1                   1                   1 
##           117789706 1177938300969111555 1177951741284892672 1179433794664837120 
##                   1                   1                   1                   1 
##          1179735018 1180185804074885120          1180302456 1180476655262937089 
##                   1                   1                   1                   1 
## 1180853046034812928 1181058490774642688 1181225702588334082 1181600449633439744 
##                   1                   1                   1                   1 
##           118172761           118184874 1181906273152843777 1182309108537540608 
##                   1                   1                   1                   1 
## 1182346921920348161 1183116555225387009 1183207926976008192 1183476976054685707 
##                   1                   1                   1                   1 
## 1183722737405173761 1184025479084331008 1184101874066247681 1184191780054540294 
##                   1                   1                   1                   1 
## 1184341160719990784 1184564864754180097 1185048311176278016 1185066920418201600 
##                   1                   1                   1                   1 
## 1185279016548347905            11856892 1185794056812716034 1186213480161898498 
##                   1                   1                   1                   1 
## 1186564321784029184 1186569289186201603 1186585784150708229           118666965 
##                   1                   1                   1                   1 
## 1187124444462043137 1187149028057894913           118734730           118736440 
##                   1                   1                   1                   1 
## 1187777664221773826 1187866034365177861           118788479 1188070846268694533 
##                   1                   1                   1                   1 
## 1188214399456006144 1188256001876561921 1188482503688019968 1189096427672219649 
##                   1                   1                   1                   1 
## 1189855290553974784 1190298755142225921 1190322974521483264 1190356151474503680 
##                   1                   1                   1                   1 
##           119049059           119062410 1190674111976148993 1190678258074804224 
##                   1                   1                   1                   1 
## 1190723874276724739 1190858816356634625          1191017592           119129449 
##                   1                   1                   1                   1 
##           119132427            11913522 1191441878698397700 1191647305725812736 
##                   1                   1                   1                   1 
## 1191745846615957506 1191839250800693249 1191855720855044096 1191989431089057793 
##                   2                   1                   1                   1 
## 1192134289569308672 1192140310593208320 1192471707593977856 1192597253594198021 
##                   1                   1                   1                   1 
## 1192670568962830336 1192861487720611840 1192883347103657984 1193084353791889409 
##                   1                   1                   1                   1 
## 1193088277047205889 1193207262749372416 1193715082900987905           119385045 
##                   1                   1                   1                   1 
## 1194259671852302336 1194350484372385793 1194745985689276417 1194835997122367488 
##                   1                   1                   1                   1 
## 1194935266097672193 1195051598914998273 1195330132069761025 1195524590899990528 
##                   1                   1                   1                   1 
## 1196220142977503232 1196459980108550145 1196463984104345602 1196502812114456577 
##                   1                   1                   1                   1 
## 1196674406509989889 1196806203634049025 1197100524195074049 1197213643542319104 
##                   1                   1                   1                   1 
##          1197481172 1197973547689267200 1197981808811552768 1198014526442086401 
##                   1                   1                   1                   1 
## 1198016787482320896 1198385831658082306          1198404463 1198593229362520064 
##                   1                   1                   1                   1 
## 1198634786434121729 1198816669977563136 1199465003578867712 1199709005662367746 
##                   1                   1                   1                   1 
## 1199766623298768900 1200272420827025408           120120773 1201220349028900865 
##                   1                   1                   1                   1 
## 1201409443285499904           120158761 1201614327733792768 1201903964649746432 
##                   1                   1                   1                   1 
## 1202427390212730882 1202798467736887297 1202886145169936386           120301297 
##                   1                   1                   1                   1 
## 1203462567861084160 1203651642727583744 1203728719950553091 1204849978155425793 
##                   5                   1                   1                   1 
## 1205387773743550464 1205609158403190784 1205705767518531584 1205842090321731584 
##                   1                   1                   1                   1 
##           120598755 1206160507918569472 1206166412093513729 1206304553777295360 
##                   1                   1                   1                   1 
## 1206323523993636867 1206581582196293634 1206614296983199744 1206791283789979648 
##                   1                   1                   1                   1 
## 1207414449335918593 1207603103345922048 1208762598738538496 1209124166755946496 
##                   1                   1                   1                   1 
##          1209326491 1209433409048629248          1209603074 1210084108543516672 
##                   1                   1                   1                   1 
## 1210510200823660544 1210806479898333185 1211648405207781378 1211841594510336001 
##                   1                   1                   1                   1 
## 1211905857153196032 1212165062602788864 1212404840225067010 1212545944106893312 
##                   1                   1                   1                   1 
## 1212557247659704320 1212599905132273665 1212637220743462912 1212966062666305536 
##                   1                   1                   1                   1 
## 1213078535952187392 1213104547209441280 1213171286337183754 1213191677621362688 
##                   1                   1                   1                   1 
## 1213475121718939648 1213643301884088320 1214050898894188545 1214232500664295424 
##                   1                   1                   1                   2 
##           121490412 1215026615173963776 1215050043138265090 1215257565099065344 
##                   1                   1                   1                   1 
## 1215319107513569280 1215319598624436226 1215516320529362944 1215544938164817920 
##                   1                   1                   1                   1 
##           121597316 1216076013781708800 1216132023661756416 1216455968105648129 
##                   1                   1                   1                   1 
## 1216824204013654016 1217173996908793858 1217568931680006144 1217622758735085569 
##                   2                   1                   2                   1 
## 1217897910471483394 1218147393956392962 1218809530089340928          1219545068 
##                   1                   1                   1                   1 
## 1219576960927588353 1219610161716834309 1219688524573806600          1219767846 
##                   1                   1                   1                   1 
## 1219934191628046336 1219986871511650304 1220061263545479169          1220205126 
##                   1                   1                   1                   1 
## 1220397582381244416 1220474740953010185 1220476542591164416 1220510115373207552 
##                   1                   1                   1                   1 
## 1220658166695964672 1220720610323697666 1220752966774247426 1221243765526093824 
##                   1                   1                   1                   1 
## 1221294634514690049 1221302912946790400 1221311079856263172 1221862282776367104 
##                   1                   1                   1                   1 
## 1221911643929575424 1222048032771829762 1222153993863880704           122223738 
##                   1                   1                   1                   1 
## 1222475287075663874 1222477340917190658          1222574430          1222724010 
##                   1                   1                   1                   1 
## 1222973618386280448 1223011949513990148 1223081433918595072 1223368460199178241 
##                   1                   1                   1                   1 
## 1223472264500273159 1223624637323653121 1223771129422106625 1223941955329105924 
##                   1                   1                   1                   1 
## 1223999851731542021 1224093118317748225 1225041060348514304 1225641367830876161 
##                   1                   1                   1                   1 
##          1226387426 1226899095417217025 1227091571516067841 1227179005352271872 
##                   1                   1                   1                   1 
## 1227568195898310658 1227601890151546882 1227769218457837569 1227806084674543617 
##                   1                   1                   1                   1 
## 1228016119795109890 1228117525763895296 1228593264179261440 1228612430726651904 
##                   1                   1                   1                   1 
## 1229175433498894345 1229370996248829952 1229408533743120386 1229452942509346816 
##                   1                   1                   1                   1 
## 1230143800548286464 1230329059072073729 1230411525619363840           123041474 
##                   1                   1                   1                   1 
##           123043185 1230646848215486465 1230781660221845504 1230977514073403407 
##                   1                   1                   1                   1 
##            12311692           123120658 1231621693950570497 1231668158722822144 
##                   1                   1                   1                   1 
## 1231719662095724544 1231765598239154177 1231799052280291328           123181359 
##                   1                   1                   1                   1 
## 1231932208190980097          1232042137 1232276562386485248 1232352999307173889 
##                   1                   1                   1                   1 
## 1232667945827995648 1232739526541529088 1233173569200242688 1233250695169503234 
##                   1                   1                   1                   1 
## 1233256570454081536           123343056 1233447068879990785 1233902343378391040 
##                   1                   1                   1                   1 
## 1234002448903221249 1234142843372851200 1234187370783637505 1234312660247830528 
##                   1                   1                   1                   1 
## 1234381916557791232 1234570867629346817 1234741244959412226           123481432 
##                   1                   1                   1                   1 
## 1234827786587660289 1235304708421513216 1235395195287396353 1235472342911987712 
##                   1                   1                   1                   1 
## 1235692855819227136 1235867832329465857 1235930179630821378 1236006332299436034 
##                   1                   1                   1                   1 
## 1236142209646264320 1236359063224500225 1236374674482909186 1236454037807079424 
##                   1                   1                   1                   1 
## 1236476170855645186 1236756369912594436 1236766700449804294 1236834245227708416 
##                   1                   1                   1                   1 
## 1236978018502897665 1237031278492307460 1237064625625223168 1237348420395950080 
##                   1                   1                   1                   1 
## 1237436880192503808 1237451314818400258 1237476078936940549 1237548491611811841 
##                   1                   1                   1                   1 
##           123767078 1237809726928441349 1237824952113303552           123791955 
##                   1                   1                   1                   1 
## 1237929400898813953 1238084781591547910 1238161158647005187 1238196548762243073 
##                   1                   1                   1                   1 
## 1238202493907189760 1238226735423991808 1238268606477225984 1238280694729773057 
##                   1                   1                   1                   1 
## 1238534980957077507 1238832906803515392 1238942266112323588 1238946915607347202 
##                   1                   1                   1                   1 
## 1239006893223194624 1239085454592442371 1239198522962042881 1239221893871423488 
##                   1                   1                   1                   1 
## 1239313114253783040 1239374939867820034 1239614709365714946 1239616296163119111 
##                   1                   1                   1                   1 
## 1239689957888987138 1239815229778747392 1239891755283165186 1239902653091590147 
##                   1                   1                   1                   1 
## 1239979423467700225 1239988262078480384          1240001857 1240407447078162432 
##                   1                   1                   1                   1 
## 1240569071621435392 1240641096431964166 1240718895067127809 1240722777180528640 
##                   1                   1                   1                   1 
## 1240759936721858561 1240789666388783104 1240796544569200640 1240839264633606144 
##                   1                   1                   1                   1 
## 1240966622392856577 1241032823806582786 1241036656251207685 1241075459426787330 
##                   1                   1                   1                   1 
## 1241087256577753088 1241153039446290439 1241225208637173760          1241258612 
##                   1                   1                   1                   1 
## 1241272699126796288 1241418685643972608 1241570905731391489 1241782016028233729 
##                   1                   1                   1                   1 
## 1241862877448818688 1241871775400636417 1241891204373123075 1241989743514210308 
##                   1                   1                   1                   1 
## 1242125799966363648 1242134066977050624 1242190381988667392 1242231134727147522 
##                   1                   1                   1                   1 
## 1242338480086122496 1242350384649134081 1242414893321650178 1242449103646265344 
##                   1                   1                   1                   1 
## 1242474381508476929 1242485438163501057 1242507725520732161 1242579583028862976 
##                   1                   1                   1                   1 
## 1242647811432292353 1242666919863312391 1242721773826662400 1242792587318222850 
##                   1                   1                   1                   1 
## 1242923322641276928 1242972781538656259 1242977452424663040 1243054144530681861 
##                   1                   1                   1                   1 
## 1243117621068869634 1243161716046753793 1243169969241759745 1243199709893857281 
##                   1                   1                   1                   1 
## 1243216531078684673 1243224002576998401 1243233793865121793 1243238259515252736 
##                   1                   1                   1                   1 
## 1243238665611968512 1243245259263553540 1243251151060873219 1243253566778851330 
##                   1                   1                   1                   1 
## 1243256870397190144 1243259825863213059 1243262677536796672 1243273287670599692 
##                   1                   1                   1                   1 
## 1243275040101195777 1243280625425092617 1243291782084878336 1243297372115013633 
##                   1                   1                   1                   1 
## 1243510352165384194 1243518105273466880 1243526585635962881 1243541663974391808 
##                   1                   1                   1                   1 
## 1243556628252762116 1243562081267388418 1243562740154851330 1243572938374332417 
##                   1                   1                   1                   1 
## 1243578780938989568 1243587468185800705 1243674858359336961 1243676051424903170 
##                   1                   1                   1                   1 
## 1243709564978991104 1243743948138598402 1243768315345920000 1243772509528502272 
##                   1                   1                   1                   1 
## 1243779526858928133 1243798819311157256 1243822770540220417           124416668 
##                   1                   1                   1                   1 
##           124688897          1247774526           125054226          1251717146 
##                   1                   1                   1                   1 
##          1251945722          1252945921          1258937568           125907895 
##                   1                   1                   1                   1 
##          1260181902          1262195155           126379480           126392009 
##                   1                   2                   1                   1 
##             1265161           126647633          1268221555          1268814828 
##                   1                   1                   1                   1 
##          1270650092           127264048          1272793064          1273725474 
##                   1                   1                   1                   1 
##          1275722959          1279614229          1280644147            12831882 
##                   1                   1                   1                   1 
##            12831902          1283398056            12837932          1284092696 
##                   1                   2                   1                   1 
##          1284271196          1284307536           128447885          1284758503 
##                   1                   1                   1                   1 
##          1285084267          1286300364          1287327240               12898 
##                   1                   1                   1                   1 
##          1291783818           129398419          1294646802          1297499527 
##                   1                   1                   1                   1 
##          1298796487          1299289771           130065700           130170717 
##                   1                   1                   1                   1 
##          1303500438          1305404772          1305481604          1307233507 
##                   1                   1                   1                   1 
##          1307973133           130945845            13117042           131299671 
##                   1                   1                   1                   1 
##           131503213          1315370672          1319200555          1323728197 
##                   1                   1                   1                   1 
##          1324792676          1325843472           132640996          1326854736 
##                   1                   1                   1                   1 
##           132770004          1328276282           132853489          1329391124 
##                   1                   1                   1                   1 
##          1329412062            13294612          1332482671            13340732 
##                   1                   1                   1                   1 
##          1337062778           133785245          1338923474          1340486389 
##                   1                   1                   1                   1 
##           134196475          1343036322          1343242164          1347255096 
##                   1                   1                   1                   1 
##            13492362           134939868          1349875118           135243332 
##                   1                   1                   1                   1 
##            13525132          1354354465           135744132           135796212 
##                   1                   1                   1                   1 
##          1359038060          1359213752           136024024            13640412 
##                   1                   1                   1                   1 
##           136467835          1364852828           136717606          1372632595 
##                   1                   1                   1                   1 
##           137475299           137643740           137715520          1377274477 
##                   1                   1                   1                   1 
##           137731839          1377674856          1379469558           137980540 
##                   1                   1                   1                   1 
##          1380347376          1381088924           138138032          1381496635 
##                   1                   1                   1                   1 
##           138168578          1382834618          1383388860           138369022 
##                   1                   1                   1                   1 
##            13849482          1385477996          1387605979           138933898 
##                   1                   1                   1                   1 
##          1389643033          1390318944           139092161            13918492 
##                   1                   1                   1                   1 
##           139283160          1393732860          1394699252           139481065 
##                   5                   1                   1                   1 
##            13958462           139585085          1397876294            14032852 
##                   1                   1                   1                   1 
##           140362670          1404180445           140437875           140575876 
##                   1                   1                   1                   1 
##            14075154           140761770          1408451995          1409219496 
##                   1                   1                   1                   1 
##           140935033           140997023          1410219468           141156908 
##                   1                   1                   1                   1 
##            14122481            14133036          1413480572           141469339 
##                   1                   1                   1                   1 
##            14149625          1416627822           141737914            14182050 
##                   1                   1                   1                   1 
##           141827890          1418711929            14191823           142249639 
##                   1                   1                   1                   1 
##            14232408           142338949            14239496          1424605753 
##                   1                   1                   1                   1 
##            14258850           142654006           142792928          1428753692 
##                   1                   1                   1                   1 
##            14287669            14288066            14296157           142974764 
##                   1                   1                   1                   1 
##           142979090          1430916032            14317810          1432128606 
##                   1                   1                   1                   1 
##            14327615          1433272646           143521217          1436307913 
##                   1                   1                   1                   1 
##          1436852006            14373721          1438294741           143840324 
##                   1                   1                   1                   1 
##          1440223566            14443094            14443463            14459159 
##                   1                   1                   1                   1 
##            14465282            14469820            14470793           144877740 
##                   1                   1                   1                   1 
##           144934775            14494281            14499829            14509303 
##                   1                   1                   1                   1 
##           145232128           145351229          1453600256          1454780485 
##                   1                   1                   1                   1 
##            14565253          1456759956            14568315            14572879 
##                   1                   1                   1                   1 
##            14578504            14584738          1459650295           146021653 
##                   1                   1                   1                   1 
##            14602924            14604658            14622091           146227634 
##                   1                   2                   1                   1 
##            14632629            14639645           146533106          1465367582 
##                   1                   1                   1                   1 
##           146624076           146717314          1467788160            14678819 
##                   1                   1                   1                   1 
##           146858645           146931390           146972021          1469828252 
##                   1                   1                   1                   1 
##            14705603           147071497            14711106            14711728 
##                   1                   1                   1                   1 
##            14712548            14712659           147289620           147347385 
##                   1                   1                   1                   1 
##          1473523987           147620663           147639572            14775752 
##                   1                   1                   1                   1 
##            14790524          1479739320            14806144            14806596 
##                   1                   1                   1                   1 
##           148122322           148153326           148199050          1482551310 
##                   1                   1                   1                   1 
##           148323486            14834066           148346744            14840030 
##                   1                   1                   1                   1 
##           148440338          1486423418          1486521546          1487465184 
##                   1                   1                   1                   1 
##            14884156            14886344          1488680196          1489363688 
##                   1                   1                   1                   1 
##          1491080899            14912552           149315713           149462249 
##                   1                   1                   1                   1 
##            14969938            14973436            14982854          1498921818 
##                   1                   1                   1                   1 
##            14991184            15008386            15033673            15053833 
##                   1                   1                   1                   2 
##            15070088           150754332            15081364            15087056 
##                   1                   1                   1                   1 
##            15094527           150965189            15112814          1511805104 
##                   1                   1                   1                   2 
##           151193458            15134746          1513922443          1514700288 
##                   1                   1                   1                   1 
##            15149988            15150904           151513624          1515695892 
##                   1                   1                   1                   1 
##            15161618            15163577          1516878408            15183127 
##                   1                   1                   1                   1 
##          1518369139           151887424           151967576          1520851111 
##                   1                   1                   1                   1 
##            15209380            15221967          1522227126           152366061 
##                   1                   1                   1                   1 
##          1524267542            15244133          1524953587            15263106 
##                   1                   1                   1                   1 
##          1526864863            15296897           153004816            15301179 
##                   1                   1                   1                   1 
##            15304100            15308281           153102694           153461591 
##                   1                   1                   1                   1 
##           153537041            15359578           153611023          1536223580 
##                   1                   1                   1                   1 
##           153841435           153940019           153942255           153949157 
##                   1                   1                   1                   1 
##            15405628          1541369246           154159298            15436545 
##                   1                   1                   1                   1 
##            15441074           154537065          1545494354            15459391 
##                   1                   1                   1                   2 
##            15466126            15468858          1547457408           154774769 
##                   1                   1                   1                   1 
##            15483495           154842200            15484279           154909077 
##                   1                   1                   1                   1 
##            15499013            15516591          1551979855          1552541863 
##                   1                   1                   1                   1 
##            15533832            15537656          1554649760          1555109156 
##                   1                   1                   1                   1 
##            15571127            15577279           155965492            15603311 
##                   1                   1                   1                   1 
##            15605368           156159841           156163320          1562600388 
##                   1                   1                   1                   1 
##          1563092696           156406365            15646965          1565411244 
##                   1                   1                   1                   1 
##          1565447557            15654561           156749387            15678167 
##                   1                   1                   1                   1 
##           156948869            15698979            15714216            15714436 
##                   1                   1                   1                   1 
##           157205674            15726398            15726720            15729315 
##                   1                   1                   1                   1 
##            15730075            15756056          1576931762           157997359 
##                   1                   1                   1                   1 
##            15811735            15828062          1583317868          1584139454 
##                   1                   1                   1                   1 
##            15849872            15860016           158627406           158633773 
##                   1                   1                   1                   1 
##            15867461            15878218           158820061           158820175 
##                   1                   1                   1                   1 
##           158967809           159056731            15917758           159189405 
##                   1                   1                   1                   1 
##          1593789164           159514232          1595286248           159555194 
##                   1                   1                   1                   1 
##          1595592481           159605858          1596904951          1599384764 
##                   1                   1                   1                   1 
##          1600858730          1601359999          1601683238           160279987 
##                   1                   1                   1                   1 
##            16031897           160519739            16071327            16080547 
##                   1                   1                   1                   1 
##          1609986314            16102208           161115002            16123423 
##                   1                   1                   1                   1 
##            16125790           161274233           161295171            16154218 
##                   1                   1                   1                   1 
##          1615531814          1615661562          1617287714            16177658 
##                   1                   1                   1                   1 
##          1619571824           161969197           161981702            16203795 
##                   1                   1                   1                   1 
##           162097001            16213116           162260868            16227572 
##                   1                   1                   1                   1 
##          1624301960            16247920            16256661          1626142758 
##                   1                   1                   1                   1 
##           162792799            16288328          1628901756            16292218 
##                   1                   1                   1                   1 
##            16297118          1629880675           163054603            16329426 
##                   1                   1                   1                   1 
##           163296161            16342817           163457844           163562545 
##                   1                   1                   1                   1 
##          1636029540           163635873            16365632            16368788 
##                   1                   1                   1                   1 
##          1637076036           163765275           163898564          1639828028 
##                   1                   1                   1                   1 
##            16399202            16424606            16438911           164431665 
##                   1                   1                   1                   1 
##            16451215          1646127014            16471088           164730435 
##                   1                   1                   1                   1 
##            16479968            16481866            16490401            16508319 
##                   1                   1                   1                   1 
##          1650970068            16524544          1652874782          1653450212 
##                   1                   1                   1                   1 
##          1654110102          1654137720          1654220503            16542708 
##                   1                   1                   1                   1 
##            16548855           165776927            16582131            16584947 
##                   1                   1                   1                   1 
##           165872754            16588298           165894671          1658956214 
##                   1                   1                   1                   1 
##           166201423            16632172            16644495          1665323814 
##                   1                   1                   1                   1 
##           166539231            16661514            16672095            16672272 
##                   3                   1                   1                   1 
##            16674972           166751016            16675413            16677192 
##                   1                   1                   1                   1 
##            16683014            16684965            16695632           166956390 
##                   2                   1                   1                   1 
##           166993091            16701263            16701532           167017165 
##                   1                   1                   1                   1 
##          1670682996            16745704           167464827          1675910472 
##                   1                   1                   1                   1 
##           167771431          1678447045           167909022          1679568758 
##                   1                   1                   1                   1 
##            16796529            16812059           168239508           168346374 
##                   1                   1                   1                   1 
##            16836040          1684251300           168511028          1685150023 
##                   1                   1                   1                   1 
##          1687920662            16882835            16887175            16889506 
##                   1                   1                   1                   1 
##            16892481            16914075           169146823           169154930 
##                   1                   1                   1                   1 
##            16925355            16926327          1694583218            16950863 
##                   1                   1                   1                   1 
##          1699793220            16999934            17004997          1700516168 
##                   1                   1                   1                   1 
##            17018594            17029338            17033050          1704625693 
##                   1                   1                   1                   1 
##            17066782            17084854          1708533829          1708560793 
##                   1                   1                   1                   1 
##            17086434            17089636           170921358           170947380 
##                   1                   1                   1                   1 
##            17110714           171475447           171521108            17153947 
##                   1                   1                   1                   1 
##           171554034            17161553          1717028534            17194257 
##                   1                   1                   1                   1 
##           172020392            17204067            17205366           172056723 
##                   1                   1                   1                   1 
##            17221904            17233331            17235511            17236561 
##                   1                   1                   1                   1 
##            17240435          1724199378          1724936154            17258420 
##                   1                   1                   1                   1 
##           172685223            17270617           172889061          1729758474 
##                   1                   1                   1                   1 
##          1729899438          1731203172          1732045183          1735048843 
##                   1                   1                   1                   1 
##            17374056           173790106            17387589            17389697 
##                   1                   1                   1                   1 
##           173996252           174144887           174320831           174361370 
##                   1                   1                   1                   1 
##          1744173055            17446176            17459636            17461631 
##                   1                   1                   1                   1 
##            17465796            17481977           174824045            17499004 
##                   1                   1                   1                   1 
##            17515254           175194697           175374691            17539385 
##                   1                   1                   1                   1 
##           175472066            17547367            17549460          1755000452 
##                   1                   1                   1                   1 
##          1755404012           175629579            17625521           176340974 
##                   1                   1                   1                   1 
##           176355348           176404629            17655017            17666041 
##                   7                   1                   1                   1 
##           176806814            17697584           177564016            17761521 
##                   1                   1                   1                   1 
##            17782826            17787008            17810687            17828634 
##                   1                   1                   2                   2 
##            17836259           178547795            17870495          1787111144 
##                   1                   1                   1                   1 
##            17895820            17906632            17941459            17969032 
##                   2                   1                   1                   1 
##            17984777           180512314            18060714            18066377 
##                   1                   1                   1                   1 
##           180987994            18149465           181650392            18172434 
##                   1                   1                   1                   1 
##            18213546            18216752            18217470           182493733 
##                   1                   1                   1                   1 
##            18270658           182815759           182854571            18318500 
##                   1                   1                   1                   1 
##           183252509            18339274            18359716            18372408 
##                   1                   2                   1                   1 
##           183987005           184283278           184545993            18480977 
##                   1                   1                   1                   1 
##          1849904065          1850159778          1850560488           185159449 
##                   1                   1                   1                   1 
##          1852220612           185230595          1853071872          1855228159 
##                   1                   1                   1                   1 
##          1855427018           185568256           185650733           185722900 
##                   1                   2                   1                   1 
##            18582213            18624182            18633036          1864463328 
##                   1                   1                   1                   1 
##            18646015            18655484           186573667           186577481 
##                   1                   1                   1                   1 
##          1866105223          1867026396           186890864            18692783 
##                   1                   1                   1                   1 
##          1869834144            18698702          1872262872            18726395 
##                   1                   1                   1                   1 
##            18728203            18743710          1874526990          1874621130 
##                   1                   1                   1                   1 
##            18774342           187771820            18789002           187981835 
##                   1                   1                   1                   1 
##           188006317           188014942          1881515299            18815472 
##                   1                   1                   1                   2 
##           188163611            18831926          1883351018           188341436 
##                   1                   1                   1                   1 
##           188374980           188576531          1887375954           188748627 
##                   1                   1                   1                   1 
##            18891281           188930519            18911813            18917909 
##                   1                   1                   1                   1 
##           189215452          1892222006           189258301            18935711 
##                   1                   1                   1                   1 
##            18936284            18943058            18945939            18964092 
##                   1                   1                   1                   1 
##            18973576          1899140628            18999261            18999809 
##                   1                   1                   1                   1 
##           189999758          1902116852           190224295            19041340 
##                   1                   1                   1                   1 
##            19046831          1904739704            19055125            19061452 
##                   1                   1                   1                   1 
##          1906878560          1907783000          1908079370            19087092 
##                   1                   1                   1                   1 
##          1911138865          1911785280           191190994           191308371 
##                   1                   1                   1                   1 
##          1914710268            19160402            19167941            19171014 
##                   1                   1                   1                   1 
##          1917193051            19174660           191852684          1918574360 
##                   1                   1                   1                   1 
##            19190123           191969714          1919991492          1919994211 
##                   1                   1                   1                   1 
##          1920592164            19206174          1920625123            19212226 
##                   1                   1                   1                   1 
##          1921727274            19239602           192478036            19252684 
##                   1                   1                   1                   1 
##           192547775            19274269          1928003306          1930148504 
##                   1                   1                   1                   1 
##           193036771          1931410818          1931443988           193359024 
##                   1                   1                   1                   1 
##           193687175           193802626            19387464           194009086 
##                   1                   1                   1                   1 
##            19422342           194352754          1943641136           194522633 
##                   1                   1                   1                   1 
##            19463777           194708260            19476219           194786961 
##                   1                   1                   1                   1 
##            19479774           194861798            19488499            19500844 
##                   1                   1                   1                   1 
##           195065032          1952388158          1952690670            19536290 
##                   2                   1                   1                   1 
##          1954175106            19547115          1954853119           195505987 
##                   1                   1                   1                   1 
##            19565264          1957948550            19581053            19584103 
##                   1                   1                   1                   1 
##           196013643          1960376582           196067974            19607115 
##                   1                   1                   1                   1 
##           196131308          1962723907           196690457           196707379 
##                   1                   1                   1                   1 
##          1967864941          1968262034           196901400          1969422174 
##                   1                   1                   1                   1 
##           197016444            19715065          1972018172          1972372730 
##                   1                   1                   1                   1 
##            19724392           197420040            19752354           197526241 
##                   1                   1                   1                   1 
##          1977537332          1979386550           198145412            19819089 
##                   1                   1                   1                   1 
##            19824937            19831976           198459013           198639090 
##                   1                   1                   1                   1 
##           199054027           199511511            19974645           199748949 
##                   1                   1                   1                   1 
##            19981892           199836662            20014055           200146902 
##                   1                   1                   1                   1 
##            20016443           200224426            20060120            20068130 
##                   1                   1                   1                   1 
##            20070029           200838452           201109689            20177423 
##                   1                   1                   1                   1 
##           201806325           201822079            20187873           202098409 
##                   1                   1                   1                   1 
##           202133896            20252833           202780974            20341657 
##                   1                   1                   1                   1 
##           203470575            20363221            20399893            20402945 
##                   1                   1                   1                   1 
##            20403813            20439040            20463039            20467031 
##                   1                   1                   1                   1 
##            20470916           204769030             2048741           205240369 
##                   1                   1                   1                   1 
##            20532030            20542290            20551473           205518700 
##                   1                   1                   1                   1 
##            20552961            20565828           205820027            20597234 
##                   1                   1                   1                   1 
##            20629645           206321314            20645624            20660543 
##                   1                   1                   1                   1 
##           206721200            20682940           207005166            20709062 
##                   1                   1                   1                   1 
##            20711586            20722768            20724105            20729667 
##                   1                   1                   1                   1 
##            20737615            20759479           207689772           207920978 
##                   1                   1                   1                   1 
##           207928167            20794340           208179565            20845519 
##                   1                   1                   1                   1 
##            20875841           208999944            20937779           209492244 
##                   1                   1                   1                   1 
##           209599290            20971849           209734424            21004961 
##                   1                   1                   1                   1 
##            21020467            21021326           210542535            21093744 
##                   1                   1                   1                   1 
##           210946385           211022009            21106414           211068552 
##                   1                   1                   1                   1 
##            21119632           211220546           211595114           212025177 
##                   1                   1                   1                   1 
##            21234664            21234787            21303464           213053129 
##                   1                   1                   1                   1 
##            21313386           213142146           213223290            21324764 
##                   1                   1                   1                   1 
##            21331501            21337411            21347530           213732518 
##                   1                   1                   1                   1 
##            21390452           214065768            21421954            21429834 
##                   1                   1                   1                   1 
##            21455569           214631950          2148553704           215019311 
##                   1                   1                   1                   1 
##            21503636          2151183782           215201388            21527720 
##                   1                   1                   1                   1 
##          2153200177          2153294767            21539403          2156045139 
##                   1                   1                   1                   1 
##           216006612          2160371056          2161115530          2163322584 
##                   1                   1                   1                   1 
##           216405546          2164349064           216437539           216524202 
##                   1                   1                   1                   1 
##          2165963889           216638460           216677271          2166944665 
##                   1                   1                   1                   1 
##           216787361          2168517540          2168594024           216862411 
##                   1                   1                   1                   1 
##          2169016709          2170209896           217118762           217132061 
##                   1                   1                   1                   1 
##            21726490            21731920          2173459784           217370059 
##                   1                   1                   1                   1 
##           217404840          2175893961            21766435           217742234 
##                   1                   1                   1                   1 
##            21780885          2178353256          2178744220          2183262514 
##                   1                   1                   1                   1 
##          2183520866          2183735976            21845346          2184534842 
##                   1                   1                   1                   1 
##          2188112187          2188261357          2190872304            21924543 
##                   1                   1                   1                   2 
##          2192897330            21931305          2193224916           219327896 
##                   1                   1                   1                   1 
##            21935538          2194642694          2194889844           219493826 
##                   1                   1                   1                   1 
##            21951777          2195850319           219641665            21969215 
##                   1                   1                   1                   1 
##           219790142          2198626457           220050745          2201331817 
##                   1                   1                   1                   1 
##          2201782562          2202789144          2203232041            22036193 
##                   1                   1                   1                   1 
##            22044289           220723536          2209767718          2210438382 
##                   1                   1                   1                   1 
##          2210857693          2214350546            22146825          2215874756 
##                   1                   1                   1                   1 
##          2216090436           221792448            22208192           222106378 
##                   1                   1                   1                   1 
##            22218669           222196210            22221730            22233169 
##                   1                   1                   1                   1 
##          2223359100            22240612          2224226376           222563717 
##                   1                   2                   1                   1 
##           222564691            22263368            22278303            22283739 
##                   1                   1                   1                   1 
##          2228647020            22286564           223114623            22313981 
##                   1                   1                   1                   1 
##           223149473          2232476503           223269129            22346160 
##                   1                   1                   1                   1 
##           223515339           223748559            22382110          2238536779 
##                   1                   1                   1                   1 
##          2238576392          2239132789           223919511           223919653 
##                   1                   1                   1                   1 
##          2241969301            22424250          2243566598           224430095 
##                   1                   1                   1                   1 
##          2245099266            22465218          2247607826            22481834 
##                   1                   1                   1                   1 
##          2249436469          2250761564          2252034926            22538359 
##                   1                   1                   1                   1 
##            22544511          2254495046           225456833          2256257457 
##                   1                   1                   1                   1 
##          2256333007           225671444            22592372            22594051 
##                   1                   1                   2                   1 
##          2262042133          2264754072           226579418           226631680 
##                   1                   1                   1                   1 
##          2266427203          2267324779           226774852           226777208 
##                   1                   1                   1                   1 
##          2267979270          2268965659            22703339          2271160944 
##                   1                   1                   1                   1 
##            22714473            22723912          2273313046          2273515344 
##                   1                   1                   1                   1 
##          2275006482            22772972          2277445532            22793955 
##                   1                   1                   1                   1 
##          2279751560          2281299860          2281314234          2282453684 
##                   1                   1                   1                   1 
##          2283049465           228436342           228540376          2285931985 
##                   1                   1                   1                   1 
##           228596969          2287166025          2287250233            22879437 
##                   1                   1                   1                   1 
##          2288701791          2290143631           229050158            22910403 
##                   1                   2                   1                   1 
##           229175747          2291781381           229614824          2297933573 
##                   1                   1                   1                   1 
##            22980986           230030529           230292897          2304116028 
##                   1                   1                   1                   1 
##           230477177            23051190          2311669472           231167619 
##                   1                   1                   1                   1 
##            23132770            23151004           231763336            23176632 
##                   1                   1                   1                   1 
##          2319111437            23199122          2319969973          2320585681 
##                   1                   1                   1                   1 
##            23207060            23214369           232215936           232238263 
##                   1                   1                   1                   1 
##          2323116235          2326291945          2328595302          2329328857 
##                   1                   1                   1                   1 
##           232995380          2330484144          2331266952            23314228 
##                   1                   1                   1                   1 
##            23335644            23335901           233507368           233554971 
##                   1                   1                   1                   1 
##           233788247          2339115726          2343406999           234392565 
##                   1                   1                   1                   1 
##          2344116191            23445264          2345690571            23463848 
##                   1                   1                   1                   1 
##          2347555542           235251868           235255071          2353627721 
##                   1                   1                   1                   1 
##          2353865167          2356713624            23587099           235906919 
##                   1                   1                   1                   1 
##          2362771670          2362793988          2363741781          2364634376 
##                   1                   1                   1                   1 
##           236556051          2367221161           236801264           236900512 
##                   1                   1                   1                   1 
##            23691870           237020420           237026147          2371282777 
##                   1                   1                   1                   1 
##           237152177            23721469           237430855           237520337 
##                   1                   1                   1                   1 
##            23756930            23769845          2377450226          2377947932 
##                   1                   1                   1                   1 
##           237798969          2378002524            23797717           238091231 
##                   1                   1                   1                   1 
##            23812387          2382036558            23823286          2382515425 
##                   2                   1                   1                   1 
##           238270341          2382793933            23828118          2383497839 
##                   1                   1                   1                   1 
##           238454287          2385106567          2385124411          2385478436 
##                   1                   1                   1                   1 
##          2385765978          2386224971          2387282786          2387343834 
##                   1                   1                   1                   1 
##            23875396           238911107            23937508           239458972 
##                   1                   1                   1                   1 
##           239808791          2398852424            23990068          2399204088 
##                   1                   1                   1                   1 
##            23992981          2400475381           240265305          2404960687 
##                   1                   1                   1                   1 
##           240578571           240710605           240849653           241066361 
##                   1                   1                   1                   1 
##          2411147419          2414136888            24161508           241617614 
##                   1                   1                   1                   1 
##          2417586104            24190527           242122010            24220800 
##                   1                   1                   1                   1 
##           242272653           242324142            24232840            24234881 
##                   1                   1                   1                   1 
##            24250033          2426242188          2426409260            24291371 
##                   1                   1                   1                   1 
##          2429511498            24298886           243032876          2430695400 
##                   1                   1                   1                   1 
##            24318789          2432037522           243363569          2436798014 
##                   1                   1                   1                   1 
##          2440688198          2441047423          2441240347            24428174 
##                   1                   1                   1                   1 
##          2443550978           244380368           244400306          2444019684 
##                   1                   1                   1                   1 
##           244422279          2447034256          2451789823            24546792 
##                   1                   1                   1                   1 
##           245472048          2454945285           245527175           245603256 
##                   1                   1                   1                   1 
##           245631096           245649240            24576083           245804214 
##                   1                   1                   1                   1 
##           246469979          2465859758          2466031672           246625361 
##                   1                   1                   1                   1 
##            24670697             2467791          2467844419          2467864917 
##                   1                   1                   1                   1 
##            24680800           246862845          2469672883           247027241 
##                   1                   1                   1                   1 
##          2470674174          2471373550           247290787           247293987 
##                   1                   1                   1                   1 
##           247334603          2473782116           247574410          2475814386 
##                   1                   1                   1                   1 
##           247631603          2477304105            24776576            24776950 
##                   1                   1                   1                   1 
##           247860908            24790428           247970501          2480083422 
##                   1                   1                   1                   1 
##          2480480346            24811047            24829612           248504390 
##                   1                   1                   1                   1 
##          2487131992            24873949          2487423914           248819855 
##                   1                   1                   1                   1 
##           248913844           249409286           249417992            24947616 
##                   1                   1                   1                   1 
##           249621125          2496504085          2497052053            24972442 
##                   1                   1                   1                   1 
##           249820409            24990776           250115113           250122449 
##                   1                   1                   1                   1 
##           250289285            25029677            25033748            25048747 
##                   1                   1                   1                   1 
##            25052405           250622664           250711880            25111363 
##                   1                   1                   1                   1 
##          2513627167          2515536091            25156409          2517480838 
##                   1                   1                   1                   1 
##          2517983366           251841521           251898204          2519434061 
##                   1                   1                   1                   1 
##            25199716           252076966          2520873516           252207631 
##                   1                   1                   1                   1 
##          2522474733            25243287           252468335           252751061 
##                   1                   1                   1                   1 
##           252789303            25296511          2532243756          2532446543 
##                   1                   1                   1                   1 
##            25325821          2532650272           253293654           253339566 
##                   1                   1                   1                   1 
##            25346036          2535246648            25354366            25360410 
##                   1                   1                   1                   1 
##           253667610           253728826            25393191            25399451 
##                   1                   1                   1                   1 
##           254051666            25405301          2540984156           254248720 
##                   1                   1                   1                   1 
##           254301862            25444596          2544494601          2544511130 
##                   1                   1                   1                   1 
##          2545607630           254716686          2552986626            25531114 
##                   1                   1                   1                   1 
##           255363029           255455960            25547397          2555293819 
##                   1                   1                   1                   1 
##            25553306          2556125370            25562381           255655450 
##                   1                   1                   1                   1 
##          2557012136           255716082          2557214269           255925055 
##                   1                   1                   1                   1 
##            25612532            25620597           256206826          2563176642 
##                   1                   1                   1                   1 
##           256478435           256487479           256500380          2565943630 
##                   2                   1                   1                   1 
##          2566031652           256655782           257006628            25708791 
##                   1                   1                   1                   1 
##           257173175           257394747            25739709          2574179264 
##                   1                   1                   1                   1 
##           257587306           257703860          2577123386          2581075469 
##                   1                   1                   1                   1 
##          2583404944          2583715772           258394958            25843801 
##                   1                   1                   1                   2 
##          2584930699           258531148          2585876101          2586748092 
##                   1                   1                   1                   1 
##          2586790071           258710092           258819269            25887412 
##                   1                   1                   1                   1 
##          2590779812            25925601            25927615           259372802 
##                   1                   1                   1                   1 
##          2595358376          2596158810          2596383959           259740746 
##                   1                   1                   1                   1 
##           259890242            26006232           260109740           260449896 
##                   1                   1                   1                   1 
##            26047067            26049426          2605043372          2606387643 
##                   1                   1                   1                   1 
##           260671465            26086971           260880760            26099580 
##                   1                   1                   1                   1 
##           261022596           261062361          2613870120           261417569 
##                   1                   1                   1                   1 
##            26155305          2616078570            26167990           261711452 
##                   1                   1                   1                   1 
##            26203465          2620903078           262302781          2623540653 
##                   1                   1                   1                   1 
##            26243227           262496322            26276678           262785870 
##                   1                   1                   1                   1 
##           262862414          2631976283            26333596            26340080 
##                   1                   1                   1                   1 
##           263515370            26395627           264248576           264743869 
##                   1                   1                   1                   1 
##          2648638897          2652857845            26540330            26555447 
##                   1                   1                   1                   1 
##          2657258191            26575910            26603208           266078818 
##                   1                   1                   2                   1 
##            26644261            26672856           266732731           267130585 
##                   1                   1                   1                   1 
##           267262609           267454085          2674761254           267519044 
##                   1                   1                   1                   1 
##             2682871           268352720           268416076           268473477 
##                   1                   1                   1                   1 
##           268637592            26873427           268859974            26893522 
##                   1                   1                   1                   1 
##          2690112467           269369534           269581619           269754545 
##                   1                   1                   1                   1 
##          2698417466          2700221964            27043789           270475024 
##                   1                   1                   1                   1 
##           270695832          2707145847           270827963           270950830 
##                   1                   1                   1                   1 
##           271014927           271076158          2710999739           271109936 
##                   1                   1                   1                   1 
##            27123426            27138748          2716509897          2716835211 
##                   1                   1                   1                   1 
##          2722067677          2724237405           272431268           272505268 
##                   1                   1                   1                   1 
##          2726875124           272690431           272769192          2728469245 
##                   1                   1                   1                   1 
##            27293335          2729342164          2731914666           273192996 
##                   1                   1                   1                   1 
##           273337477          2733477877          2734304898          2734531293 
##                   1                   1                   1                   1 
##          2735620284           273678873           273792908           273842391 
##                   1                   1                   1                   2 
##           273919684           274016135            27404490          2745488034 
##                   1                   1                   1                   1 
##          2746466350          2749977957          2750865326          2751336881 
##                   1                   1                   1                   1 
##          2751414500           275401598          2754989873          2756671861 
##                   1                   1                   1                   1 
##           275677382          2756826523           275776953          2758908086 
##                   1                   1                   1                   1 
##           275895522          2759989021           276102613            27630697 
##                   1                   1                   1                   1 
##            27644088          2766605831             2768501           276947541 
##                   1                   1                   1                   1 
##           277089952           277613181          2777392601           277756882 
##                   1                   1                   1                   1 
##           277929287           278032124            27805737           278079368 
##                   1                   1                   1                   1 
##           278123550           278123901            27834920            27841547 
##                   1                   1                   1                   1 
##          2785592623           278867539           278978158           279010717 
##                   1                   1                   1                   1 
##           279059078            27922157           279570115          2795990775 
##                   1                   1                   1                   1 
##           279799224          2801816446            28021382           280690372 
##                   1                   1                   1                   1 
##            28084278            28091734          2810031216          2813231534 
##                   1                   1                   1                   1 
##            28136341           281497666          2816257440            28189649 
##                   1                   1                   1                   1 
##           281920387          2819224958          2820083725          2822534611 
##                   1                   1                   1                   1 
##           282716700          2827213519           282859818          2829461701 
##                   2                   1                   1                   1 
##          2832021860            28321312           283443287          2835179069 
##                   1                   1                   1                   1 
##          2837718739            28377308          2837863005          2838250020 
##                   1                   1                   1                   1 
##          2838345419          2838477729           284302137          2843104535 
##                   1                   1                   1                   1 
##          2843996463           284532654          2845814277           284600062 
##                   1                   1                   1                   1 
##          2846594897          2847739387            28480103          2848281329 
##                   1                   1                   1                   1 
##            28488888          2851066569          2851571079          2852399928 
##                   1                   1                   1                   1 
##            28555579          2857162258            28576262          2858116756 
##                   1                   1                   1                   1 
##          2858445324            28605294             2861771          2862714977 
##                   1                   1                   1                   1 
##           286285913           286342836          2864356557          2864840572 
##                   1                   1                   1                   1 
##          2865763619          2866165487          2868080531          2869055849 
##                   1                   1                   1                   1 
##          2870848881          2870931801          2871330699          2872455953 
##                   1                   1                   1                   1 
##           287246747          2872869652          2873737365           287394564 
##                   1                   1                   1                   1 
##           287582448          2876704776          2876786636          2877116790 
##                   1                   1                   1                   1 
##          2880936009          2882493896          2883699524           288417882 
##                   1                   1                   1                   1 
##            28852830           288777068            28879277          2888010194 
##                   1                   1                   1                   1 
##           288818172           288877479           288992814           289118612 
##                   1                   1                   1                   3 
##          2891927737          2892226326            28955345          2896213998 
##                   1                   1                   1                   1 
##          2898463396          2900431460          2900475613           290145392 
##                   1                   1                   1                   1 
##            29022571          2903394248          2904418889          2906764318 
##                   1                   1                   1                   1 
##           290748711          2907596811          2909376908            29100243 
##                   1                   1                   1                   1 
##          2911233762           291305578            29132732           291361298 
##                   1                   1                   1                   1 
##          2914277497            29147175            29174698          2919059838 
##                   1                   1                   1                   1 
##          2920002778          2920432352           292715926           292719488 
##                   1                   1                   1                   1 
##          2927859907           292910133           292953690           293042987 
##                   1                   1                   1                   1 
##           293063251          2930935453          2931999886           293259337 
##                   1                   1                   1                   1 
##            29328876           293305155           293404907          2934375069 
##                   1                   1                   1                   1 
##           293534892          2936363491            29378770          2941369732 
##                   1                   1                   1                   1 
##          2941908418           294257114           294479557           294641087 
##                   1                   1                   1                   1 
##            29464230          2951263410          2953500609          2953945432 
##                   1                   1                   1                   1 
##          2954252804          2954298279           295459753           295880891 
##                   1                   1                   1                   1 
##            29589914           296005306          2961127037          2961500847 
##                   1                   1                   1                   1 
##          2961880449           296285662           296324321          2963594130 
##                   1                   1                   1                   1 
##          2963644725           296409581           296601251          2968444252 
##                   1                   1                   1                   1 
##           296939072            29694955           297106603          2971797095 
##                   1                   1                   1                   1 
##          2971960402          2973615881            29746546          2976824781 
##                   1                   1                   1                   1 
##           297684891          2977636612          2982269822            29828177 
##                   1                   1                   1                   1 
##            29828364          2983401982          2983475539           298721581 
##                   1                   1                   1                   1 
##          2987491773          2987787598          2989313567          2989883024 
##                   1                   1                   1                   1 
##          2989958229           299154244          2992187212           299303441 
##                   1                   1                   2                   1 
##          2994794890            29955899          2995696586            29958928 
##                   1                   1                   1                   1 
##            29982380          2998277273           299858424            29995359 
##                   1                   1                   1                   1 
##          2999804848            30002837          3003234454          3003376699 
##                   1                   1                   1                   1 
##           300428275            30055363          3012690457          3013456549 
##                   1                   1                   1                   1 
##          3016070184          3018120709            30226590          3023007756 
##                   1                   1                   1                   1 
##            30233748            30244108            30264308           302655167 
##                   1                   1                   1                   1 
##           302707511           302765078            30297423           302975594 
##                   1                   1                   1                   1 
##          3031071234          3032059523            30332694           303457569 
##                   1                   1                   1                   1 
##          3037473357            30374920           303979139           304034061 
##                   1                   1                   1                   1 
##          3040593411           304258613          3042923567             3043371 
##                   1                   1                   1                   1 
##          3043765295           304486904            30471527            30506859 
##                   1                   1                   1                   1 
##          3052963502          3055147607           305646149            30567521 
##                   1                   1                   1                   1 
##          3060174289           306200805          3063962601          3064266184 
##                   1                   1                   1                   1 
##           306507855          3065924818          3067027552          3067391840 
##                   1                   1                   1                   1 
##           306797026          3068106785          3068709523          3069871910 
##                   1                   1                   1                   1 
##          3070880908          3071509435          3071756492           307176947 
##                   1                   1                   1                   1 
##            30743976          3075778335          3080943858            30815695 
##                   1                   1                   1                   1 
##          3084365322            30882481           308963594           309119004 
##                   1                   1                   1                   1 
##          3091314307           309159046          3091759240           309305949 
##                   1                   1                   1                   1 
##           309325348          3094019162           309556475           309570860 
##                   1                   1                   1                   1 
##           310193009          3102057259           310393584          3104963032 
##                   1                   1                   1                   1 
##           310559036            31059230          3107989976          3109554274 
##                   1                   1                   1                   1 
##          3109698283           311061782           311276757            31131277 
##                   1                   1                   1                   1 
##          3113593248           312102273            31212216          3121411662 
##                   1                   1                   1                   1 
##           312149882            31251199           312544332            31268233 
##                   1                   1                   1                   1 
##            31270415            31275600           312950658            31299270 
##                   1                   1                   1                   1 
##           313020851            31310158            31313563            31326031 
##                   1                   1                   1                   1 
##            31336805           313536147          3136970222            31417682 
##                   1                   1                   1                   1 
##          3145686570          3145719317          3149293395          3153282534 
##                   1                   1                   1                   1 
##          3155046106           315543965          3157050373            31573982 
##                   1                   1                   1                   1 
##          3158295595           316042195           316204316          3164593715 
##                   1                   1                   1                   1 
##          3168138491           316878270          3171268471            31730751 
##                   1                   1                   1                   1 
##           317359018          3175287100            31762628           317710469 
##                   1                   1                   1                   1 
##           317806870          3178256871          3178439400          3178562929 
##                   1                   1                   1                   1 
##          3180827364          3183234703           318355178          3184319732 
##                   1                   1                   1                   1 
##          3186457117           318656894           318821825           319073774 
##                   1                   1                   1                   1 
##           319169420           319218210          3193758198          3194651468 
##                   1                   1                   1                   1 
##           319748124          3201152602          3201961533           320306282 
##                   1                   1                   1                   1 
##          3209930728           321070496           321283341           321367569 
##                   1                   1                   1                   1 
##           321436678           321582887          3216364852           321649323 
##                   1                   1                   1                   1 
##          3219528732          3219999344          3225626101           322667875 
##                   1                   1                   1                   1 
##            32279577          3229099943          3232042777           323279489 
##                   1                   1                   1                   1 
##           323501283          3238138245           323873427          3239029664 
##                   1                   1                   1                   1 
##          3240962355          3241006564            32422915          3242932675 
##                   1                   1                   1                   1 
##          3243843487          3245372110          3246958814           325067491 
##                   1                   1                   1                   1 
##          3251297965          3251355932           325141708           325386585 
##                   1                   1                   1                   1 
##            32547618          3254840790          3254898446          3255952291 
##                   1                   1                   1                   1 
##           325780908            32584871           325872043          3260570311 
##                   1                   1                   1                   1 
##          3261900399          3266967512           326720583          3267310741 
##                   1                   1                   1                   1 
##          3267474986           326997574          3270302156          3271119145 
##                   1                   1                   1                   1 
##            32711307            32744940           327503844          3276766916 
##                   1                   1                   1                   1 
##           327811537           327941509            32834080           328577933 
##                   1                   1                   1                   1 
##           328808798           328858549          3288994484          3291125484 
##                   1                   1                   1                   1 
##           329159493          3291844599           329188645           329319607 
##                   1                   1                   1                   1 
##          3293883079           329469393          3295465776          3298353607 
##                   1                   1                   1                   1 
##          3298637756           329882357           329907869          3301892949 
##                   1                   1                   1                   1 
##            33025513           330325730          3303296886           330544151 
##                   1                   1                   1                   1 
##          3305748660          3305847006           330606437          3306573848 
##                   1                   1                   1                   1 
##           330826792          3309371255          3310138153           331371205 
##                   1                   1                   1                   1 
##          3314196164          3316376038          3318450085           331845587 
##                   1                   1                   1                   1 
##          3318510966          3319066864            33220123           332366852 
##                   1                   1                   1                   1 
##          3324110314           332545073          3327740671          3327833511 
##                   1                   1                   1                   1 
##          3327974338          3328053011           333134880           333235146 
##                   1                   1                   1                   1 
##           333327976          3333281505           333402741          3335260579 
##                   1                   1                   1                   1 
##            33379379          3340484652           334099894          3341241538 
##                   1                   1                   1                   1 
##          3342914721           334405652          3344561068          3347916467 
##                   1                   1                   1                   1 
##           335397070            33540786           335427789           335523353 
##                   1                   1                   1                   1 
##           335669107           335701222          3359907553            33620070 
##                   1                   1                   1                   1 
##           336274798          3363875993          3365454845            33660132 
##                   1                   1                   1                   1 
##          3366355468           336752249            33676743           337730660 
##                   1                   1                   1                   1 
##          3377958299          3378440735            33801942            33805112 
##                   1                   1                   1                   1 
##          3380556461           338133839          3381890295          3382041796 
##                   1                   1                   1                   1 
##           338354891            33838472           338489286          3384990634 
##                   1                   1                   1                   1 
##            33860462           338660403          3387923524            33889427 
##                   1                   1                   1                   1 
##           339255191          3394640173            33946643           340325008 
##                   1                   1                   1                   1 
##           340344466           340399922           340491651            34053789 
##                   1                   1                   1                   1 
##          3406930692           340790187           340948377            34113439 
##                   1                   1                   1                   1 
##          3413217527          3415741480           341665630           341688379 
##                   1                   1                   1                   1 
##            34175105          3419420026          3421233099           342297848 
##                   1                   1                   1                   1 
##            34280715           342856124            34301670          3430224767 
##                   1                   1                   1                   1 
##          3431793597            34320023          3433226225            34332773 
##                   1                   1                   1                   1 
##          3433385130           343432526           343773480          3439317699 
##                   1                   1                   1                   1 
##          3440590035            34407824            34408232          3440889982 
##                   1                   1                   1                   1 
##           344449819          3444990859            34565572           346357490 
##                   1                   1                   1                   1 
##           346640207           347568180           347765016            34781480 
##                   1                   1                   1                   1 
##           348005724           348371112            34855593            34889448 
##                   1                   1                   1                   1 
##           348911248            34898889            34917790           349362896 
##                   1                   1                   1                   1 
##          3494338533            34997867            35009978           350183125 
##                   1                   1                   1                   1 
##            35053551            35072395           351130607           351131115 
##                   1                   1                   1                   1 
##           351203799           351462815           351496958            35176624 
##                   1                   1                   1                   1 
##            35205279           352190613          3524101401           352650591 
##                   1                   1                   1                   1 
##           352731312          3527760555           353746875            35402730 
##                   1                   1                   1                   1 
##           354232723            35428478          3544946661            35451766 
##                   1                   1                   1                   1 
##            35519288           355445994           355505170           355588147 
##                   1                   1                   1                   1 
##            35636289            35656357           356605038            35692915 
##                   1                   1                   1                   1 
##           357331066           357833234            35812001            35886595 
##                   1                   1                   1                   1 
##          3590785162            35950699           359590878           359598281 
##                   1                   1                   1                   1 
##           359745143            36012258           360210296           360500630 
##                   1                   1                   1                   1 
##            36065762           360878389            36098220            36105594 
##                   1                   1                   1                   1 
##            36109475            36121900            36145689            36161700 
##                   1                   1                   2                   1 
##           361777881          3624846559            36250787            36304374 
##                   1                   1                   1                   1 
##           363327474            36357308            36359791           364000479 
##                   1                   1                   1                   1 
##           364336025           364382778          3648412632          3649080380 
##                   1                   1                   1                   1 
##           365015105          3650612292            36537174           365615666 
##                   1                   1                   1                   1 
##          3656488216           366089337          3662876429           366593953 
##                   1                   1                   1                   1 
##           367446303          3675689357            36768711           367876828 
##                   1                   1                   1                   1 
##           369103219           369560707          3699604457           370014526 
##                   1                   1                   1                   1 
##            37012816           370296496            37030445           370431051 
##                   1                   1                   1                   1 
##           370551654           370827144            37085458          3708720682 
##                   1                   1                   1                   1 
##           371062289           371253879           371617164           371810750 
##                   1                   1                   1                   1 
##            37195472          3722137941           372404741           372430736 
##                   1                   1                   1                   1 
##           372576694           373002728           373439919           374330669 
##                   1                   1                   1                   1 
##            37451200           374628932           374711629            37512303 
##                   1                   1                   1                   1 
##           375268433           375678020           375686410            37597603 
##                   1                   1                   1                   1 
##           376088557           376480957           377635258           377822754 
##                   1                   1                   1                   1 
##           378090557           378187017           378545076            37888932 
##                   1                   1                   1                   1 
##            37915640           379200688            37928746            37938191 
##                   1                   1                   1                   1 
##            37964481           379893599           380344117          3804327617 
##                   1                   1                   1                   1 
##           380929787           381194926            38172071            38213679 
##                   1                   1                   1                   1 
##           382148018           382336810            38254569           382810104 
##                   1                   1                   1                   1 
##           382812408           383768581          3837736993            38395191 
##                   1                   1                   1                   1 
##            38400130           384028278           384507739            38456507 
##                   1                   1                   1                   1 
##           384794821           384903942          3850425012           385183572 
##                   1                   1                   1                   1 
##          3852099016            38531995           385531917           386071775 
##                   1                   1                   1                   1 
##           386204765           386277347            38630406           386476094 
##                   1                   1                   1                   1 
##           386588176            38678036          3871364427           387164450 
##                   1                   1                   1                   1 
##            38733200           387498274           388368711           388622530 
##                   1                   1                   1                   1 
##             3888351           389281501           389397082           390265730 
##                   1                   1                   1                   1 
##           390280842          3905055434           390937624          3911239745 
##                   1                   1                   1                   1 
##           391265962           391397106            39214789           392205222 
##                   1                   1                   1                   1 
##           392594553          3933116666           393544014           393548708 
##                   1                   1                   1                   1 
##           394169629           394256602           394549263           394859323 
##                   1                   1                   1                   1 
##          3951404777           395185464          3951967235           395213954 
##                   1                   1                   1                   1 
##           395354590            39552212          3957997120           396090421 
##                   1                   1                   1                   1 
##          3966228920           397537509           397668966           397912882 
##                   1                   1                   1                   1 
##            39856156           398752432          3991108098           399232334 
##                   1                   1                   1                   1 
##            39937251            39975891            40000004           400032999 
##                   1                   1                   1                   1 
##            40009753           400181671          4003544369            40081852 
##                   1                   1                   1                   1 
##           402482877            40269972            40275479            40279709 
##                   1                   1                   1                   1 
##          4029270083            40293769            40298894            40314833 
##                   1                   1                   1                   1 
##            40315914            40316307           403181776            40339126 
##                   1                   2                   1                   1 
##           404026590           404112499          4042583777          4046653696 
##                   1                   1                   1                   1 
##            40548374           405483969          4057045577          4057689794 
##                   1                   1                   1                   1 
##           405775404            40581159           406442515          4069863080 
##                   1                   1                   1                   1 
##          4070131925           407379007            40737915           407759517 
##                   1                   1                   1                   1 
##            40821317           408467423           409025989           409214738 
##                   1                   1                   1                   1 
##          4094744122           409505983            40954616           409570537 
##                   1                   1                   1                   1 
##            40961354            41013626            41039017           410937245 
##                   1                   1                   1                   1 
##            41098781            41163907            41172853            41194006 
##                   1                   1                   1                   1 
##           412332464            41243579            41272933          4129880279 
##                   1                   1                   1                   1 
##            41312513           413440921           414027725           414888065 
##                   1                   1                   1                   1 
##           414958858          4150093918            41565964           415836020 
##                   1                   1                   1                   1 
##          4158876021            41595148           416057727            41611947 
##                   1                   1                   1                   1 
##          4180433547          4180602754           418256456           418321454 
##                   1                   1                   1                   1 
##          4186708343           418848427           419559896           419851013 
##                   1                   1                   1                   1 
##           420448647            42085971           422023446           422663925 
##                   1                   1                   1                   1 
##           423041680           423237314          4236847030          4242147059 
##                   1                   1                   1                   1 
##           424531030            42501271           425843792           426088233 
##                   1                   1                   1                   1 
##           426242467            42660725           426690145          4267058183 
##                   1                   1                   1                   1 
##            42756539          4275676034           427825916            42816363 
##                   1                   1                   1                   1 
##          4282993872            42832524           428659031           428844272 
##                   1                   1                   1                   1 
##            42887162           429130922           430657044            43066992 
##                   1                   2                   1                   1 
##           430834036            43086506           431304891          4313247499 
##                   1                   1                   1                   1 
##           431486478          4315777152           431781032           432064754 
##                   1                   1                   1                   1 
##          4324283735          4325398279           432589910           432699294 
##                   1                   1                   1                   1 
##            43295161           434294857           434725908           435369338 
##                   2                   1                   1                   1 
##           435422713            43596804           436119902          4364568614 
##                   1                   1                   1                   2 
##            43707887           437448777            43750097            43789332 
##                   1                   1                   1                   1 
##           438381840            43846520            43855487            43889656 
##                   1                   1                   1                   1 
##            43905579            43921687          4396933888          4401187587 
##                   1                   1                   1                   1 
##          4402477632            44150903           441560603            44163381 
##                   1                   1                   1                   1 
##          4422048505           442596321           442664736            44285908 
##                   1                   1                   1                   1 
##           443257096           443292379           443304640            44349228 
##                   1                   1                   1                   1 
##            44352975            44367489           443835893            44391700 
##                   1                   1                   1                   1 
##          4439414115            44405933           444437920           444584217 
##                   1                   1                   1                   1 
##          4448518402           444980926          4452838720            44573244 
##                   1                   1                   1                   1 
##           446398099          4464702015           446490190            44652433 
##                   1                   1                   1                   1 
##            44728980           448315371          4485341777            44876482 
##                   1                   1                   1                   1 
##           448812673            44908784            44934503            44935929 
##                   1                   1                   1                   1 
##           449375266          4497993159           449849732           450426533 
##                   1                   1                   1                   1 
##          4507647255           451823442          4520371468           452295304 
##                   1                   1                   1                   1 
##           452583374            45259327           452799163            45288233 
##                   1                   1                   1                   1 
##            45398184           454071434            45413198           454138567 
##                   1                   1                   1                   1 
##            45459031            45518891            45539868            45551243 
##                   1                   1                   1                   1 
##           455778782            45578720           457206998           457920729 
##                   1                   1                   1                   1 
##          4579604717           458107989           458594357          4592286802 
##                   1                   1                   1                   1 
##           459359865          4594570514           459633448            45967689 
##                   1                   1                   1                   1 
##           460285317            46045975          4607024296            46096491 
##                   1                   1                   1                   1 
##            46105891           461225981           461554757           461634245 
##                   1                   1                   1                   1 
##             4618261            46188029           462027865           462265721 
##                   1                   1                   1                   1 
##          4622667867           462459744            46274679          4628522113 
##                   1                   1                   1                   1 
##           463114746          4632734963          4637470482           463838518 
##                   1                   1                   1                   1 
##          4644292634          4647877692            46483916            46497053 
##                   1                   1                   1                   1 
##           465198669           465760414           465888475            46671452 
##                   1                   1                   1                   1 
##           467466542           468214266          4685498022          4685565913 
##                   1                   1                   1                   1 
##           469356005          4694027246           469569460            46983316 
##                   1                   1                   1                   1 
##           469919231           470068376            47083884            47086949 
##                   1                   1                   1                   1 
##            47127897           472122299           472201804          4726921700 
##                   1                   1                   1                   1 
##           472720903           472835083          4728562041           473496286 
##                   1                   1                   1                   1 
##          4734965658           473605659            47376460          4743525023 
##                   1                   1                   1                   1 
##           474871087           475260383          4752689112           475308891 
##                   1                   1                   1                   1 
##            47542551           475693475            47572133            47653624 
##                   1                   1                   1                   1 
##          4767528991          4768712712          4770303330           477571482 
##                   1                   1                   1                   1 
##            47773590            47791337          4780378096            47834003 
##                   1                   1                   1                   1 
##           478945877            47895596           479297376           479648549 
##                   1                   1                   1                   1 
##            47968796            47981900           479872233           480233120 
##                   1                   1                   1                   1 
##          4809934462          4811145081           481422442           481542672 
##                   1                   1                   1                   1 
##           481665779          4819616115           482269226           482308837 
##                   1                   1                   1                   1 
##           482704360          4828921853            48325019            48352311 
##                   1                   1                   1                   1 
##            48407622           484171825          4842325334            48441949 
##                   1                   1                   1                   1 
##           484570953            48479381           484887729          4850124523 
##                   1                   1                   1                   1 
##            48510958            48568247          4858941530          4860246311 
##                   1                   1                   1                   1 
##          4861145409          4862582645          4864851261            48674839 
##                   1                   2                   1                   1 
##          4871065809          4871219613          4876601765          4881899464 
##                   1                   1                   1                   1 
##           488298894            48839997          4886454527           488948166 
##                   1                   1                   1                   1 
##           489057662          4891815495          4895614001           489589385 
##                   1                   1                   1                   1 
##          4896272800            48968299          4899060791          4899455363 
##                   1                   1                   1                   1 
##           490179072            49031370           490460388           490920590 
##                   1                   1                   1                   1 
##          4913320595          4916875623          4917960324           491947303 
##                   6                   1                   1                   1 
##          4919597969          4920998115            49226317            49228669 
##                   1                   1                   1                   1 
##          4925751509            49258784          4926928720           492736486 
##                   1                   1                   1                   1 
##          4928393141          4928513381           492907274           492958448 
##                   1                   1                   1                   1 
##           495149375           495274213            49595396           496773183 
##                   1                   1                   1                   1 
##            49694445           497305362            49757330           497665754 
##                   1                   1                   1                   1 
##            49766852           497995985           498224762           499136665 
##                   1                   1                   1                   1 
##           499838597           501060027           501107987           501295408 
##                   1                   1                   2                   1 
##           501372903           502018096            50238253           502421906 
##                   1                   1                   1                   1 
##            50243741            50279781            50371199           504828602 
##                   1                   1                   1                   1 
##            50534490             5054721            50636347            50658069 
##                   1                   1                   1                   1 
##            50684507           507871284            50910649            51002583 
##                   1                   1                   1                   1 
##            51050447            51116671            51273193            51422426 
##                   1                   1                   1                   1 
##            51452048           514796996            51495944           515091334 
##                   1                   1                   1                   1 
##            51509876           515339366            51561840           516827568 
##                   1                   1                   1                   1 
##           518561366           518682128            51879262            51897392 
##                   1                   1                   1                   1 
##           520308399           520445177            52052800           520692064 
##                   1                   1                   1                   1 
##            52072055           521332575           522106646            52282776 
##                   1                   1                   1                   1 
##            52305347           523590362            52428360            52436759 
##                   1                   1                   1                   1 
##            52498049            52546360            52571677           526066352 
##                   1                   1                   1                   1 
##            52615210           527545839           527665594           528065896 
##                   1                   1                   1                   1 
##           530796538            53095822           531304042            53264509 
##                   1                   1                   1                   1 
##            53313796           534036081           534528045           534720794 
##                   1                   1                   1                   1 
##           535036691           535351290           535635363           535643852 
##                   1                   1                   1                   2 
##           536631398           536647390            53749779           538369738 
##                   1                   1                   1                   1 
##           538398947            53904097           539511571           540253649 
##                   1                   1                   1                   1 
##            54027969           540543234           542283680           542400979 
##                   1                   1                   1                   1 
##           542557834            54259162           542834197            54425068 
##                   1                   1                   1                   1 
##           544366989            54474303           545371004           545763490 
##                   1                   1                   1                   1 
##            54608984           546375667            54683181            54687156 
##                   1                   1                   1                   1 
##            54846560           549076236            54964459           550374435 
##                   1                   1                   1                   1 
##            55049762            55073092            55089660           551020293 
##                   1                   1                   1                   1 
##            55135988           551787952            55186601           551999236 
##                   1                   1                   1                   1 
##            55201783           552268110            55248333           552753132 
##                   1                   1                   1                   1 
##            55288996           553292384            55419844            55484650 
##                   1                   1                   1                   1 
##            55494142            55526242           555437217           555494466 
##                   1                   1                   1                   1 
##           555940321           556135008           556147828            55626399 
##                   1                   1                   1                   1 
##            55629076            55655935             5571722           558758387 
##                   1                   2                   1                   1 
##            55880135            55963152           560637163           561171816 
##                   1                   1                   1                   1 
##            56124688           561742581             5618162            56189496 
##                   1                   1                   1                   1 
##            56266768            56311749            56334595            56385868 
##                   1                   1                   1                   1 
##           563863798            56404068           564133801           564325710 
##                   1                   1                   1                   1 
##            56470183           565159518           565495553            56566329 
##                   1                   1                   1                   1 
##           566876877            56730137           567946814           568002952 
##                   1                   1                   1                   1 
##           568539051           569225542            56937357           569409452 
##                   1                   1                   1                   1 
##             5695032           569873665            57059492           571642322 
##                   1                   1                   1                   1 
##           571880298           572366128           573084673           574595794 
##                   1                   1                   1                   1 
##           574796987           574807922            57567446            57597564 
##                   1                   1                   1                   1 
##            57743433           577742907           577792575           578525346 
##                   1                   1                   1                   1 
##           578745372           580211436            58064184           581211911 
##                   1                   1                   1                   1 
##            58198180           582230554           582306752           582574776 
##                   1                   1                   1                   1 
##            58366671           584772257           584830319           585857710 
##                   1                   1                   1                   1 
##           587832589            58802260           588645499           588653822 
##                   1                   1                   1                   1 
##            58882431            58916674            58945459           589614722 
##                   1                   1                   1                   1 
##           589891248           590064664            59049281             5917472 
##                   1                   1                   1                   1 
##           592489963            59292344           593094055           594244296 
##                   1                   1                   1                   1 
##            59491835           596800229           597028355            59755457 
##                   1                   1                   1                   1 
##           597832336           597971684            59803771            59811707 
##                   1                   1                   1                   1 
##            59849989           600110872           602536450           603074256 
##                   1                   1                   1                   1 
##            60322048           604356432           605806995           605924651 
##                   1                   1                   1                   1 
##           606663661            60712163            60825835            60841112 
##                   1                   1                   1                   1 
##            60857656            61019126            61069955           610721875 
##                   1                   1                   1                   1 
##           611593682            61180382            61206610           612320569 
##                   1                   4                   1                   1 
##            61273660           613714272            61432754           615459269 
##                   1                   1                   1                   1 
##            61546809           615554233            61592785           616740164 
##                   1                   1                   1                   2 
##            61774098           617943922           618121201           618710011 
##                   1                   1                   1                   1 
##           618855985           619705965           619936583           620925077 
##                   1                   1                   1                   1 
##             6216572           621976657           622015869            62218231 
##                   1                   1                   1                   1 
##            62248042           623258372           623384371           623557211 
##                   1                   1                   1                   1 
##           624656729           624675301           624976940            62558658 
##                   1                   1                   1                   1 
##           625675618            62578731            62620861            62763654 
##                   1                   1                   1                   1 
##           627708753            62809462            62841945            62842567 
##                   1                   1                   1                   1 
##           628621966           629194371           630571912            63166017 
##                   1                   1                   1                   1 
##           632344484           633485882            63362429            63383628 
##                   1                   1                   1                   1 
##           634264954           634380263           634704431           634952572 
##                   1                   1                   1                   1 
##            63511635            63514682           635427539           637165830 
##                   1                   1                   1                   1 
##           637220899            63807317            64742015            64750841 
##                   1                   1                   1                   1 
##            64793964            64823822            64827786            64989443 
##                   1                   1                   1                   1 
##            65109093            65437320            65584054            65594489 
##                   1                   1                   1                   1 
##            65631573            65637508            65709091            65826899 
##                   1                   1                   1                   1 
##             6583942            65868205            65947064            65968759 
##                   1                   1                   1                   1 
##            66031088            66244710            66457303            66525351 
##                   1                   1                   1                   1 
##            66561298            66659124            66740193            67044070 
##                   1                   1                   1                   1 
##            67112070             6721522            67316585             6735142 
##                   1                   3                   1                   1 
##            67375442            67641148            67667675            68061687 
##                   1                   1                   1                   1 
##            68130426            68412451            68545047            68843228 
##                   1                   1                   1                   1 
##            68883683            68912189            68932547            69058391 
##                   1                   1                   1                   1 
##            69135106            69140326            69271273            69315680 
##                   1                   1                   1                   1 
##            69465913  695443086357303301            69793820            69820216 
##                   1                   1                   1                   1 
##            69898325            69957752             7009472           701166589 
##                   1                   1                   1                   1 
##  701596920628772866  701618344391094272  701818008583413760           702038681 
##                   1                   1                   1                   1 
##  702367729588768768  702595818126229504  703162128669102080  703391815777570818 
##                   1                   1                   1                   1 
##           703420117  703488181455290368  704340397829591040            70436289 
##                   1                   1                   1                   1 
##  704620375439597571           705122902            70529694  705330458842701824 
##                   1                   1                   1                   1 
##           705541443  705609627568893953           705731094  707774148072882176 
##                   1                   1                   1                   1 
##            70797655  708452724652830721  708926219484569600  708951546608877568 
##                   1                   1                   1                   1 
##  709153130714243072            70961675  710064166468341760  710509455381635072 
##                   1                   1                   1                   1 
##  710609605395673088  710982933880774656            71126292  712199546638508032 
##                   1                   1                   1                   1 
##  713025381616340992  713147129594707968  713355506761469952           713362236 
##                   1                   1                   1                   1 
##             7138222           713935231  714592222994259968  714893003735732224 
##                   1                   1                   1                   1 
##            71506100  715533519464894464  715962993851424768  715983592107552768 
##                   1                   1                   1                   1 
##  717026210224685057            71703351           717258355             7177992 
##                   1                   1                   1                   1 
##  717911401499471873  718102690321010688           718332223           718533133 
##                   1                   1                   1                   1 
##           718567698  719283973227155457  719634658829459457            72013267 
##                   1                   1                   1                   1 
##  720186421105954816           720210428           720259309  720499942884777985 
##                   2                   1                   1                   1 
##  720948250711343105             7210512  721152797903876098            72123099 
##                   1                   1                   1                   1 
##            72130786  721729490603216896  721917346005131265  722204598262345728 
##                   1                   1                   1                   1 
##            72224733           722907438  723200908855775232  725371772481077248 
##                   1                   1                   1                   1 
##            72577990            72628479  726561140805873665  727316106843574272 
##                   1                   1                   1                   1 
##            72732638  727389491170828288            72743396  727465726810968064 
##                   1                   1                   1                   1 
##  727561733238312960  728030036524032000            72809288  728159985742454784 
##                   1                   1                   1                   1 
##  728259667906809858  728499529624879104  728616171315073025           729112082 
##                   1                   1                   1                   1 
##  729217349174308864  729227853687095300  729807046229565442  730411322999853056 
##                   1                   1                   1                   1 
##  730440421768310784           730585003  730800147198791680           730899792 
##                   1                   1                   1                   1 
##  731418950907641856            73184004  731880554338078720  732863432018497536 
##                   1                   1                   1                   1 
##  733003963994415108            73306525  733380624904421376            73345563 
##                   1                   1                   1                   1 
##           734184572  734596314537811968  734799063510601729           734890242 
##                   1                   1                   1                   1 
##  734973553477570560  735122887850512384           736155733  736270568605900801 
##                   1                   1                   1                   1 
##  736952012999385088  737142202481016832  737358310303662081  737651626803105792 
##                   1                   1                   1                   1 
##            73796916  738131195242778629            73825605             7383122 
##                   1                   1                   1                   1 
##  738449548184457216  738767160395321345  738832163634843649  738894827413086208 
##                   1                   1                   1                   1 
##  739485047217094656  739673291569270785           740440592  740597455385939968 
##                   1                   1                   1                   1 
##            74082296            74123918  741259764492042240  741302428063150080 
##                   1                   1                   1                   1 
##  741766199512551425  741823270899482624  742098188891508736  742166854752342016 
##                   1                   1                   1                   1 
##           742211562           742434763           742613408  742724669028114432 
##                   1                   1                   1                   1 
##  743286898173435904            74339177           743631432            74369402 
##                   1                   1                   1                   1 
##  743723556840693760              743913            74444935  744696897902776320 
##                   1                   1                   1                   1 
##            74479566  745934301989081088           746205583            74699437 
##                   1                   1                   1                   1 
##  747116483227025408  747479817461895168            74831215  748954390489403393 
##                   1                   1                   1                   1 
##            74911854  749728074887987204  749977594301480966           750104527 
##                   1                   1                   1                   1 
##           750360169            75054755  750786192262635520  751054430770958336 
##                   1                   1                   1                   1 
##            75137937  751485404411551744           751589084  751885664283602944 
##                   1                   1                   1                   1 
##           752001618  752214047744004098  752444933596852224            75256311 
##                   1                   1                   1                   1 
##  752572970770501632  752590890061803520  753256614858067968  753271146607415296 
##                   1                   1                   1                   1 
##  754660245130113024            75475601  754922078399266816  756584190112591872 
##                   1                   1                   1                   1 
##  757042689380458496  757407962990276609           757712983  757995682531717120 
##                   1                   1                   1                   1 
##  758682018829983745             7587032           759319046            75934946 
##                   1                   1                   1                   1 
##            75994242           760026259  760118142928433152  760371892914049024 
##                   1                   1                   1                   1 
##            76056489  760784184982011904  760841526977171456  760863598243479553 
##                   1                   1                   1                   1 
##  761096097020248065  761584429684752387           762134390  762894551375765505 
##                   1                   1                   1                   1 
##  763557177923481600  763797399227686912  763895777068331009  764829119175622656 
##                   1                   1                   1                   1 
##  765045737646284800  765316349572763648  765354316567805952  765874611493990400 
##                   1                   1                   1                   1 
##  765927246100135936  766009098097856512  766017503072059392  766183790335102976 
##                   1                   1                   1                   1 
##             7663702  766529864367157248             7665642            76714468 
##                   2                   1                   1                   1 
##            76757990           767793390  768659225866153984  769080866467446784 
##                   1                   1                   1                   1 
##             7700222  770068612308692994            77026274             7703052 
##                   1                   1                   1                   1 
##  771045741527728129  771293699301109760  771325079871336448           771675948 
##                   1                   1                   1                   1 
##            77182888           771877364  772178581929590784  773578537764851712 
##                   1                   1                   1                   2 
##           773750426  773775838424731648  773866588793663488  773954934345719809 
##                   1                   1                   1                   1 
##           774153704  774398933162426368            77477794            77482996 
##                   1                   1                   1                   1 
##  775160871316295680            77520998           775589882  775646952495210496 
##                   1                   1                   1                   1 
##  776119874900811776           777036312  777157181816705024  777927231658004480 
##                   2                   1                   1                   1 
##  778036376138870784             7782542           778590134  779402883003518984 
##                   1                   1                   1                   1 
##           779913055  780072468983779328           780120572  780609440831549440 
##                   1                   1                   1                   1 
##  781756436284145664  782339819615629312           782413784            78336585 
##                   1                   1                   1                   1 
##  783410961290002433            78352894  783715057901252612           784179654 
##                   1                   1                   1                   1 
##  784240769376878592  784357358927577088  784680208993361921  785226688330403840 
##                   1                   1                   1                   1 
##            78596501  786190574504202242  786618972338696192  786629630732013568 
##                   1                   1                   1                   1 
##  787693612314361856  788133803369771008           788134814           788219550 
##                   1                   1                   1                   1 
##           788246138  788751900036431873            78890372  789518250065350656 
##                   1                   1                   1                   1 
##             7901142  790428427807551488  791569205380444161           791617578 
##                   1                   1                   1                   1 
##  791695623216967681  791844256574951424            79242170  793658161047695360 
##                   1                   1                   1                   1 
##           793944151  794654107231539203  795430529386553345  795664301910528000 
##                   1                   1                   1                   1 
##  795973908096806912  796383686639788033  796741046357004288  797030049623003137 
##                   1                   1                   1                   1 
##  797391569355685888  797543985585803264           797649150            79807769 
##                   1                   1                   1                   1 
##  798140128552026112            79869567  799389058245988352           799426280 
##                   1                   1                   1                   1 
##  799744031127441410            79986022  800088951205687296  800757084094533632 
##                   1                   1                   1                   1 
##  800793414585323520           800816377  800962332146810880  802954064048902148 
##                   1                   1                   1                   1 
##  803215340381630464            80329508  803648695660986369  804015436979277824 
##                   1                   1                   1                   1 
##  804101936345731072           804177050  804396339463417856  804490105503088640 
##                   1                   1                   1                   1 
##  804785625400418304  805185034797846529              806122  806148196909121536 
##                   1                   1                   1                   1 
##  806305891863687168  806341413483020288            80693756           808172400 
##                   1                   1                   1                   1 
##             8083542  808555197416906752            80900937            80909755 
##                   1                   1                   1                   1 
##  809240279861645312           809679248  809689076253265921  810476755362414593 
##                   1                   1                   1                   1 
##  810580991651749888  810691321321099268            81128222  811608886063091712 
##                   1                   1                   1                   1 
##            81181888            81311670  813298643377811456  814012868932734976 
##                   1                   1                   1                   1 
##              814233            81459753  815500189620465664  816723993625559041 
##                   1                   1                   1                   1 
##  816890574833733633  817386884045438976  817415480856248322  817538826495258625 
##                   1                   1                   1                   1 
##  818142705075167232  818190053457457153           818224573  818581685788876801 
##                   1                   1                   1                   1 
##  819198396980457473  819223420055523329            81942247            81950435 
##                   1                   1                   1                   1 
##  820066800369041409  820469374620307457           820523155  820627325314334720 
##                   1                   1                   1                   1 
##  820702582737879043           820767607  820958703432122368  821016767203901440 
##                   1                   1                   1                   1 
##            82114365  821157199984504832            82117483  821265252507652096 
##                   2                   1                   1                   1 
##  821748309366669312  821886368120967168  822215673812119553  822361805045559296 
##                   1                   1                   1                   1 
##  822469638516772864           822544189  822574603167993856            82279998 
##                   1                   1                   1                   1 
##  822862852931330051  823158574041985024  823205895681282048  823272803566813184 
##                   1                   1                   1                   1 
##  823651070870167552  823812344392384512  823987589623455745             8241232 
##                   1                   1                   1                   1 
##  824458268420476933  824513169003515906  824780295203336192  824994291965628418 
##                   1                   1                   1                   1 
##  825084934113079296  825134298206400514  825323561149747201  825411446687281154 
##                   1                   1                   1                   1 
##  825505313885413376  825743417728708612  826129656856207360  826155755564732416 
##                   1                   1                   1                   1 
##  826185096189210625  826375817441718272  826469314538663936  826852088114270209 
##                   1                   1                   1                   1 
##  826877162078760960  827182422303334400  827247504215375874  827936164841562112 
##                   1                   1                   1                   1 
##  828041870504767488  828449816162111488  828526380598042624  828582307355295746 
##                   1                   1                   1                   1 
##  828673404421156865           829219016  829685651071180802  829784906150600704 
##                   1                   1                   1                   1 
##  829864120413462528  830140478758780928  830970317988298752  831281726924087297 
##                   1                   1                   1                   1 
##           831930390            83196674  831982169253937152  831999598466105344 
##                   1                   1                   1                   1 
##           832170559  832308837063520257  832487779019788288  833444611796369411 
##                   1                   1                   1                   1 
##           833482238            83369852           833820320           833858262 
##                   1                   1                   1                   1 
##  833925850701590529  833955263803686912  833981757670166528  834187564366045186 
##                   1                   1                   1                   1 
##  834190507731415040  834726437148057601  834806894724124672            83483205 
##                   1                   1                   1                   1 
##  835177219622326272  835262392627933184            83656373           836651137 
##                   1                   1                   1                   1 
##            83720730           837703676  837930591702102016  838246501402882048 
##                   1                   1                   1                   1 
##           838290648  838484669981163520            83859834            83860254 
##                   1                   1                   1                   1 
##  839108627436716033  839609999936520193            83962564  839720956000075776 
##                   1                   1                   1                   1 
##  840034046822473729           840048690           840294985  840830550210404352 
##                   1                   1                   1                   1 
##           840979597           841114604  841725785169891332             8417802 
##                   1                   1                   1                   1 
##  842235649298112513  842729726162554885  842791717501898754           843202129 
##                   1                   1                   1                   1 
##  843361189388197890             8436472  843844722632417281            84416175 
##                   1                   1                   1                   1 
##  845150211248861185  845418693689405441           845474490            84555732 
##                   1                   1                   1                   1 
##           845793992            84637700  846715584544985089           846910993 
##                   1                   1                   1                   1 
##  847392896231686144            84739547  847645126646157312            84795529 
##                   1                   1                   1                   1 
##  848075438970859520  849067031441879042  849289425418891266            85002295 
##                   1                   1                   1                   1 
##  850097885261709312           850239428            85040636  850583529947791361 
##                   1                   1                   1                   1 
##  851035633665626112           851106744  851122226673987584           851436420 
##                   1                   1                   1                   1 
##  851723701095612417  851848462576562180           852096720           852189290 
##                   1                   1                   1                   1 
##           852510109  853636526667964416  853654222323073024  853790344143654914 
##                   1                   1                   1                   1 
##  854045099394838528  854120834696433664  854857120457641984            85560148 
##                   1                   1                   1                   1 
##  855655287398727680           855841070            85601740  856037642575597568 
##                   1                   1                   1                   1 
##  856226516199514114  856298182468407297           856364922  856377349952098305 
##                   1                   1                   1                   1 
##  856471580519673856           856850450  857069576957435906  857255207763234817 
##                   1                   1                   1                   1 
##  857514020877737985  858161820866977792            85862291           858947179 
##                   1                   1                   1                   1 
##            85909836  859729849249693701  860404394705268736  860412132109697025 
##                   1                   1                   1                   1 
##  860494626339344385  860536322968219648  860675555955539972  860917201708232706 
##                   1                   1                   1                   1 
##  861084079600672774           861491130  862190872829362177  862506070589100032 
##                   1                   1                   1                   1 
##  863231793138352128           863666270            86401623  864137663686868992 
##                   1                   1                   1                   1 
##  864631179412213760  864682641030750208  865454384381009924            86590910 
##                   1                   1                   1                   1 
##  865941026980147200  866554543596867584           866740496  866743917819113472 
##                   1                   1                   1                   1 
##  866767664156483584  866801678887997440            86764977  867778616079384578 
##                   1                   2                   1                   1 
##  867937150217715713  868019668132347905           868124522  868613256075673602 
##                   1                   1                   1                   1 
##  868858304725786624  869240496631173121            86982395           870554484 
##                   1                   1                   1                   1 
##  871574222966898688           872419772  872467148026908673  873105540896899073 
##                   1                   1                   1                   1 
##             8731312  873190778910253056            87385342           874160094 
##                   1                   1                   1                   1 
##  874242641046712321           875227669  875761655455641602  875923301549387778 
##                   1                   1                   1                   1 
##             8759292  876146616255860737  876540130538008576  876770484691419137 
##                   1                   1                   1                   1 
##  876770842339938304  877558923871617024  877621549108473856            87822212 
##                   1                   1                   1                   1 
##  878516260014784512  878572636846075904  878628289501442049           878700938 
##                   1                   1                   1                   1 
##  878820871971889153  878906574319779842           879023041            87929320 
##                   1                   1                   1                   1 
##  879362788405149697  879765198961246209            88015743            88025627 
##                   1                   1                   1                   1 
##           880983422            88154871  881702666249707520  882958562296819714 
##                   1                   1                   1                   1 
##  883641278465847296  884435361421721605  885256445809348612  885680553592332288 
##                   1                   1                   1                   1 
##  885763745271521280            88578250  886296705490190336  886319291489894400 
##                   1                   1                   1                   1 
##            88715761           887248374  887330821580914688           887493054 
##                   1                   1                   1                   1 
##            88751152           887711797            88787398            88904418 
##                   1                   1                   1                   1 
##  889188163620569091           889349226  889896058578456576           889926660 
##                   1                   1                   1                   1 
##  890297769096876034  891312994885541888  891419221716066304  892132134844071937 
##                   1                   1                   1                   1 
##  892149131464118273  892597906791743489  893097096622084096  893098663530053636 
##                   1                   1                   1                   1 
##  893124821201985537  893299346367692800  894382460561006592            89467272 
##                   1                   1                   1                   1 
##           894807590  895028152371695622  895245235210539010  895331622572183552 
##                   1                   1                   1                   1 
##  895388295496073221  895460083236126721  895814938995957760  895966977407074304 
##                   1                   1                   3                   1 
##  896262486604750850  896423577523675137            89754038  897819053741543424 
##                   1                   1                   1                   1 
##  897944126536200192  898195500150788096  898765061958717441           898767493 
##                   1                   1                   1                   1 
##  899761782163746816  900737663233384448  900995846673649665  901158235968856064 
##                   1                   1                   1                   1 
##  901479484205006848            90163861  902151402964738051  902217210986471425 
##                   1                   1                   1                   1 
##  902641396624084993  902766566244220929  902964776493498369  903270351064285184 
##                   1                   1                   1                   1 
##  903335676002926592  903617884206776320  903997129424859136           904255076 
##                   1                   1                   1                   1 
##  904785170456293376  904802908520177664            90515678  905406379640414208 
##                   1                   1                   1                   1 
##  905585546805764096  906105384854630400            90617546  906396404406419456 
##                   1                   1                   1                   1 
##            90711842           907196215  907559431184846848            90760905 
##                   1                   1                   1                   1 
##  908035018550861825  908576901697900544  908844863407427585  909089967967793155 
##                   1                   1                   1                   1 
##           909334512            90965557  909794221267341312  910323745188802561 
##                   1                   1                   1                   1 
##  910378184662769664  911259871785422848           912284778              913041 
##                   1                   1                   1                   1 
##           913452476           913665234  913726320466694144            91404995 
##                   1                   1                   1                   1 
##  914065945940910081  914469791431147520  914760457365442560  915163384894672897 
##                   1                   1                   1                   1 
##  915411606351302656  915466525582258176           915496224  915814768325414917 
##                   1                   1                   1                   1 
##             9166982  917151622735826944  917275729347305472  917551134390317057 
##                   1                   1                   1                   1 
##  917756553192787971           917901427            91824729             9183902 
##                   1                   1                   1                   1 
##  918541886377390080  918780298820808704           918800876  919002031775510528 
##                   1                   1                   1                   1 
##  919553563734499328  919893215662051329  919951462985293824  920249159604719617 
##                   1                   1                   1                   1 
##  920370467382419456  920382655346065408  920432462659854337  920710946955448320 
##                   1                   1                   1                   1 
##  921730916464111617           921866330            92197478  922238200554323969 
##                   1                   1                   1                   1 
##            92251482  922873302971904000  923139480927854593  924229572039548928 
##                   1                   1                   1                   1 
##  924372814508957696  924410456889901056  924757323305902082  925132885853696005 
##                   1                   1                   1                   1 
##  925373571286863873            92567328  925777903484149760            92584816 
##                   1                   1                   1                   1 
##            92653124            92653916  927200768096120832            92739201 
##                   1                   1                   1                   1 
##            92784147           928280101  928298616720166912  928455288692154368 
##                   1                   1                   1                   1 
##  928697008801579008           928896739  929067697144582151  929421000403451906 
##                   1                   1                   2                   1 
##  929530326543732736           929686255  929768656829140992  930546152830840832 
##                   1                   1                   1                   1 
##            93145450            93175908            93187905  932582436390633472 
##                   1                   1                   1                   1 
##            93288759  933168114451099653  933187977769115648           933556512 
##                   1                   1                   1                   1 
##  933903263925260288            93419198            93440906  934887919927660545 
##                   1                   1                   1                   1 
##            93505049  935407244711211008  936020578275872769  936190621588557824 
##                   1                   1                   1                   1 
##  936331951694376960  936352804695707648            93639531            93681269 
##                   1                   1                   1                   1 
##  936844184639520768           936973418  937186564580560896           937434584 
##                   1                   1                   1                   1 
##           937623794           937629272  937680980537741313           937704163 
##                   1                   1                   1                   1 
##  937738510748053504            93781504            93813312           938176135 
##                   1                   1                   1                   1 
##  938533034659168256           938687642  939020597614460929              939761 
##                   6                   1                   1                   1 
##  940402872851845120            94058067  941338902849380352  941427870756372482 
##                   1                   1                   1                   1 
##  941704783278288896  943018733068435456            94384796  943968730723311616 
##                   1                   1                   1                   1 
##  944047168188432386  944423886854144000  946526227766087681           946601623 
##                   1                   1                   1                   1 
##  946642154654453760  946761334984728581  946808606585950208           946849627 
##                   1                   1                   1                   1 
##  946873717874978817  946924990020009985  946974201981931522  947346016893882368 
##                   1                   1                   1                   1 
##            94761188           948582787  948795442661339143  948994330122792960 
##                   1                   1                   1                   1 
##  949155613283516416  949590068943048704           949957440           950468988 
##                   1                   1                   1                   1 
##  950826700086050816  950870120565493761           951154548           951430134 
##                   1                   1                   1                   1 
##  951892305098788864             9520112  953188399548129280  953700961947668480 
##                   1                   1                   1                   1 
##  953985293430001664             9543092           954329887           954618535 
##                   1                   1                   1                   1 
##  954930063698550785  956265541370568704           956328698            95637047 
##                   1                   1                   1                   1 
##  956523931862781955  956557230635024384           956648575  956906339388846085 
##                   1                   1                   1                   1 
##  956999651869253632  957231762035433472           958010360           958309004 
##                   1                   1                   1                   1 
##  958491581572665344  958633020361080832           958815049  958847561233772551 
##                   1                   1                   1                   1 
##  959127129341472768  959187289774714880  959528418953056256            95980592 
##                   1                   1                   2                   1 
##  959834882812891136            96011873             9601512  960226339629535232 
##                   1                   1                   1                   1 
##            96026129  960331970713608192  960899729516384257             9609632 
##                   1                   1                   1                   2 
##  961006190720249858            96149868  961638138165817345  961721367854018563 
##                   1                   1                   1                   1 
##  961934746438848512  962153417400602624             9627102  962826389282893824 
##                   1                   1                   1                   1 
##  963056689955123202  963495628545327104  964052994475151360  964228602098257921 
##                   1                   1                   1                   1 
##  964281598526066689  965284014268575744  965392727461564417  965602965586370560 
##                   1                   1                   1                   1 
##            96574384  965925349979811840  965976498443313152  966507449955094528 
##                   1                   1                   1                   1 
##  966740329041772544  967084459966148608  968077607655870464  968472594524639232 
##                   1                   1                   1                   1 
##  968507079823523841            96857244            96888217            96894306 
##                   1                   1                   1                   1 
##  969188033349259264           969375157           969431090  969816332848963584 
##                   1                   1                   1                   1 
##  970115109681967104  970140879393579009  970432569627070465  970708045742387200 
##                   1                   1                   1                   1 
##  970716252179136514  970855556406792193            97135016            97191869 
##                   1                   1                   1                   1 
##  971993737311080448  972164019799945217  972217420709548032  972564937519149056 
##                   1                   1                   1                   1 
##            97370130  973937157214674945  974321995331510273            97479037 
##                   1                   1                   1                   1 
##            97479619  974889080193519617  974995792380473345  976345683681619968 
##                   1                   1                   1                   1 
##  976866663747465216  977185617913303041  978377662971432960  978421741440573440 
##                   1                   1                   1                   1 
##  978710606760108033  979036701422227457           979110254  979389638422028288 
##                   1                   1                   1                   1 
##  979664132935839744  979690486872051712  979776202800902144  980026120694325248 
##                   1                   1                   1                   1 
##            98008000  980847169153335296  981624095610691584  981854105181147136 
##                   1                   1                   1                   1 
##  981858078336446464  981871593851965441           983527219  983528548496388099 
##                   1                   1                   1                   1 
##            98430731  984538659234828289  984587587531632642  985200075466035200 
##                   1                   1                   1                   1 
##            98546373  985774399792988160  985849749319356417           985931431 
##                   1                   1                   1                   1 
##  985938313784807425            98655881  986637310367322112  987063638115614720 
##                   1                   1                   1                   1 
##  987073620735352832  987825082822283265  988145698561552391            98844496 
##                   1                   1                   1                   1 
##           988489190  988794545113522176           988990854  988998226652037121 
##                   1                   1                   1                   1 
##  989530120728858624           990056731  990979427315191808  991253633571303425 
##                   1                   1                   1                   1 
##  991298277340524545  991864097607176193  992026123809837056  992056970248183808 
##                   1                   1                   1                   1 
##  992501142989950976  993040996744159233  993101890291298304           993154328 
##                   1                   2                   1                   1 
##  993243230677463041  993407241821794304  994322943126601728  994400454741250048 
##                   1                   1                   1                   1 
##  994436705514999808            99484020  994872414851956736  995499280067514370 
##                   1                   2                   1                   1 
##           995502204           995764722             9959012           996365438 
##                   1                   1                   1                   1 
##  996988416322555904             9970972  997485108973129731  997569506250813445 
##                   1                   1                   1                   1 
##  999112928291934208  999371328246419456  999395862328602626           999954782 
##                   1                   1                   1                   1
sort(table(covid19_tw_sample[,1]), decreasing=TRUE)
## 
##           176355348          4913320595  938533034659168256 1203462567861084160 
##                   7                   6                   6                   5 
##           139283160            61180382 1167669981351313408           166539231 
##                   5                   4                   3                   3 
##           289118612             6721522  895814938995957760           100986964 
##                   3                   3                   3                   2 
##           103323813 1107367240154955777 1119286872121851906           116141566 
##                   2                   2                   2                   2 
## 1191745846615957506 1214232500664295424 1216824204013654016 1217568931680006144 
##                   2                   2                   2                   2 
##          1262195155          1283398056            14604658            15053833 
##                   2                   2                   2                   2 
##          1511805104            15459391            16683014            17810687 
##                   2                   2                   2                   2 
##            17828634            17895820            18339274           185568256 
##                   2                   2                   2                   2 
##            18815472           195065032            21924543            22240612 
##                   2                   2                   2                   2 
##            22592372          2290143631            23812387           256478435 
##                   2                   2                   2                   2 
##            25843801            26603208           273842391           282716700 
##                   2                   2                   2                   2 
##          2992187212            36145689            40316307           429130922 
##                   2                   2                   2                   2 
##            43295161          4364568614          4862582645           501107987 
##                   2                   2                   2                   2 
##           535643852            55655935           616740164  720186421105954816 
##                   2                   2                   2                   2 
##             7663702  773578537764851712  776119874900811776            82114365 
##                   2                   2                   2                   2 
##  866801678887997440  929067697144582151  959528418953056256             9609632 
##                   2                   2                   2                   2 
##  993040996744159233            99484020 1000104162292617221           100060795 
##                   2                   2                   1                   1 
## 1000829918085877760 1001323313325662208 1001640317542514688 1001769760596676609 
##                   1                   1                   1                   1 
## 1002954431263051777 1003112494615818240 1003719203810136065 1004028896298356736 
##                   1                   1                   1                   1 
## 1004286713760567297 1004417185060552704 1004513627762642944          1004610301 
##                   1                   1                   1                   1 
## 1004854494629453825 1005158059310796801           100555651          1005675566 
##                   1                   1                   1                   1 
## 1006039045078597632 1006448215535833089 1007304227465715717 1007639158825857024 
##                   1                   1                   1                   1 
## 1008401029300412416          1008984373 1009860838432309251 1009898349078560774 
##                   1                   1                   1                   1 
## 1010188355265613825 1010292108878544896 1010481312157896707 1011265086038708225 
##                   1                   1                   1                   1 
##          1011896054 1012147043018555392          1013053501          1013225876 
##                   1                   1                   1                   1 
## 1013399838128365569 1013959574221721604 1013967453100040192 1014186711889346560 
##                   1                   1                   1                   1 
##           101444042          1014501968 1014536032367198208 1016427176810500096 
##                   1                   1                   1                   1 
## 1017262982416527360           101750881 1017608150424457216 1017887879064932353 
##                   1                   1                   1                   1 
##          1018275578 1018373002302353408 1018414467871277056            10191572 
##                   1                   1                   1                   1 
## 1019196799091912708 1019513143335309313           102014821           102036670 
##                   1                   1                   1                   1 
## 1020649026226569217 1021429123204382721 1021506969381744640           102187500 
##                   1                   1                   1                   1 
## 1022173660675801089 1022289714781581315 1022656354085875713          1022737278 
##                   1                   1                   1                   1 
##           102284891 1023211013905235968 1023570844646363136           102384575 
##                   1                   1                   1                   1 
## 1024393247005859840 1024479532240314369 1024662370210258944 1024761046009958401 
##                   1                   1                   1                   1 
## 1025002772025012225           102504031 1026608641359708161 1027727439487631360 
##                   1                   1                   1                   1 
## 1027779719603937280 1027847986880163840           102832374 1028577651965878278 
##                   1                   1                   1                   1 
## 1028682088332095488 1029042264431972353 1029469617671077888 1029642919374999552 
##                   1                   1                   1                   1 
## 1029769394161733632 1029858251427520512 1029941669418991617 1029964129488883712 
##                   1                   1                   1                   1 
##           103074428 1031021950796099585 1031085202905292800 1031324025811681280 
##                   1                   1                   1                   1 
## 1031624140459896833          1031783461          1031839747 1031854011983560705 
##                   1                   1                   1                   1 
## 1031914298963058690 1032989915305324544          1033198891           103416063 
##                   1                   1                   1                   1 
## 1034416282991554560 1034622757000990720           103558465 1035733568410939393 
##                   1                   1                   1                   1 
##          1036115508 1036138975772258305 1036213889069981698 1036672119189463040 
##                   1                   1                   1                   1 
## 1036824197325094912 1037016197777125381 1037021823991332864 1037112108675198977 
##                   1                   1                   1                   1 
## 1037387581787394048 1038166953305759744 1038746010984570880 1038849842208886784 
##                   1                   1                   1                   1 
##          1038948841 1039012592801337346          1039123603 1039206560394895362 
##                   1                   1                   1                   1 
##          1039296595 1039346703760072704 1039350034293112832 1039833270136000512 
##                   1                   1                   1                   1 
##            10398432 1039876442916618241           104048294 1040712129836462080 
##                   1                   1                   1                   1 
## 1040742526473392129           104142711 1041718006747820032           104182491 
##                   1                   1                   1                   1 
## 1042167518377332741 1042460661941383168 1043209440894234624 1043389291110572033 
##                   1                   1                   1                   1 
## 1043834805253787648 1044139446172569600 1044256334181470209 1045078084028788736 
##                   1                   1                   1                   1 
## 1045233414591401984           104523504           104567779 1045761293947416577 
##                   1                   1                   1                   1 
## 1047242879104516096 1047466116086452225 1047552186559942657 1047643207679582208 
##                   1                   1                   1                   1 
## 1047676545467392000 1048455864066215936 1048558756810948608 1048672971315994624 
##                   1                   1                   1                   1 
## 1049288911321800704           104943342 1049580038914420737          1049879466 
##                   1                   1                   1                   1 
## 1050203915369746432           105081682 1050843342026752007 1052255338605379584 
##                   1                   1                   1                   1 
## 1052258216695001094 1052539070268796930 1053058626699624448          1053629491 
##                   1                   1                   1                   1 
## 1053646880373174272 1054332434630799363 1054398119545311239 1054664296146309121 
##                   1                   1                   1                   1 
## 1054982793191739392 1055070224305807361 1055161630940643334 1056880983587409920 
##                   1                   1                   1                   1 
## 1057374564873895941 1057942141484318721 1059145092022370310 1059155480407232512 
##                   1                   1                   1                   1 
## 1059695815566942208 1060134345397026816 1060609814248779777 1061090625364418560 
##                   1                   1                   1                   1 
## 1062288634693500928 1062320981148987397 1062344789679579136 1062519918464131073 
##                   1                   1                   1                   1 
## 1062604369944817665 1063034652930203648 1063135254700015620 1063829884940767234 
##                   1                   1                   1                   1 
##            10642452          1064378120 1064752448005382145 1064954946875928576 
##                   1                   1                   1                   1 
## 1065106537952071680 1065294375805116417 1066000770548547584 1066001592392986625 
##                   1                   1                   1                   1 
## 1066013022437617664 1066039768151195648 1066972567943053312          1067720749 
##                   1                   1                   1                   1 
## 1068147338789748738 1068316200302600192          1068742092           106881022 
##                   1                   1                   1                   1 
## 1069011622033858561           106956692          1069719103 1069728985301610497 
##                   1                   1                   1                   1 
## 1069852763494981633 1070113933829246976 1070742463776808960 1070863316686270464 
##                   1                   1                   1                   1 
##           107100478 1071411403003695106 1071467478872719366 1071553595735203840 
##                   1                   1                   1                   1 
## 1071717913579597824 1071747554319233024 1072168892066381824 1072434896998670338 
##                   1                   1                   1                   1 
## 1072532940985376770 1072907567440060418 1073609938629509120 1074710666819325953 
##                   1                   1                   1                   1 
##          1075102393 1075214757899100161 1075699231065890818 1076062184554356736 
##                   1                   1                   1                   1 
## 1076203094021558274 1077127916331433985          1077603570 1078347082220486656 
##                   1                   1                   1                   1 
##          1078468759 1078696432909971456 1078761836416249858 1078785775666384905 
##                   1                   1                   1                   1 
## 1078907489138094080 1080469345292206080 1080551651881218048 1080963004940910592 
##                   1                   1                   1                   1 
## 1080980942796263424 1081218764601995265 1081569541841276930 1081682728540688386 
##                   1                   1                   1                   1 
## 1083000076300177409 1083431944984117248 1083601888795344897 1083796041097506816 
##                   1                   1                   1                   1 
##           108427276          1084599271 1084689348719607809 1084984854096289793 
##                   1                   1                   1                   1 
## 1085231075796926465 1085559370514137089           108576115 1085833963011231744 
##                   1                   1                   1                   1 
## 1085929920042356738 1086282853116067841 1086863521206292480           108707115 
##                   1                   1                   1                   1 
##          1087167182            10872822          1087390572 1087431753130696704 
##                   1                   1                   1                   1 
## 1087905907185516544 1088501349325639682 1088762503113461761 1089184564084465665 
##                   1                   1                   1                   1 
##          1089597794          1089609199 1090143008874549248 1090197450076422145 
##                   1                   1                   1                   1 
## 1090332519659171841 1090442109952446464 1090652065091801088 1090672803047788546 
##                   1                   1                   1                   1 
##           109082290 1091084960566571009          1091735550           109188899 
##                   1                   1                   1                   1 
## 1092360097039351808          1092461503 1092757119273758721          1093309626 
##                   1                   1                   1                   1 
## 1093476305444761600           109418805 1094784088295145473 1095010434913050632 
##                   1                   1                   1                   1 
## 1095367835713302528 1095433469889515521           109549520 1096081984261144578 
##                   1                   1                   1                   1 
## 1096093605708484608           109619043 1096222688819990528           109662055 
##                   1                   1                   1                   1 
## 1096638859926884353           109681911 1097111725738991617 1097558917679177729 
##                   1                   1                   1                   1 
## 1097694473952342022 1097733805886984192           109787469 1097919064733822977 
##                   1                   1                   1                   1 
## 1097976497736957953 1098106957683019776          1098256147 1098507875901673473 
##                   1                   1                   1                   1 
## 1098867103803699200 1098907233151258624           109936228 1099782986143285248 
##                   1                   1                   1                   1 
## 1099805458678738950            11005112          1101055693 1101721332507529221 
##                   1                   1                   1                   1 
## 1101766666147356672 1101879644310200327           110194870 1102789927690031105 
##                   1                   1                   1                   1 
## 1102952446362415104          1103170992 1103571889686040577 1104563671076868103 
##                   1                   1                   1                   1 
## 1105504595617316864 1105762607938633729 1105852915204476928 1106416853914656768 
##                   1                   1                   1                   1 
## 1106772693515407361 1106834028794130433           110692399 1107101863751499776 
##                   1                   1                   1                   1 
##          1107320570 1107527195021332480 1107553772639801344           110766028 
##                   1                   1                   1                   1 
## 1107768350870913024 1107892604081975296           110810612 1108357496471576576 
##                   1                   1                   1                   1 
## 1108413581173972994 1109512794909667328 1109756410273792000 1109922072350937088 
##                   1                   1                   1                   1 
## 1109943627852197888 1110010824666558464 1110339603477786625 1111001861870493703 
##                   1                   1                   1                   1 
## 1111014031123341313 1111086753161666561          1111660543          1111780933 
##                   1                   1                   1                   1 
## 1112145766405955584           111241075 1112569604277194753 1112658207820996609 
##                   1                   1                   1                   1 
## 1112736653137723399 1112828281525501953 1113228970999177216 1113747196099399680 
##                   1                   1                   1                   1 
## 1114303846426263559 1114596258428215299 1114757001148497920 1115285566340333570 
##                   1                   1                   1                   1 
## 1115711945309429760 1115853999935315973 1116367540131979265          1117170756 
##                   1                   1                   1                   1 
##           111721601 1117356436437315585          1117483992 1118371610052956168 
##                   1                   1                   1                   1 
## 1118763194145759232          1118767826 1119900799105228801 1120285964096634886 
##                   1                   1                   1                   1 
##            11204102 1120493846872248326           112073654 1121536735538581504 
##                   1                   1                   1                   1 
## 1121761443970342912           112216945 1122539621429043200 1122851613989834753 
##                   1                   1                   1                   1 
##           112303384 1124107125205024768 1124336498487300097 1124846100463149056 
##                   1                   1                   1                   1 
## 1125466896768409605 1125948348878376960 1126522595984195584 1126555593446182912 
##                   1                   1                   1                   1 
## 1126844144788357120 1127379536000294913 1127712873537470464 1127744636334825473 
##                   1                   1                   1                   1 
## 1127809169304715264 1128165155110436864 1128257454796492806          1128434916 
##                   1                   1                   1                   1 
## 1128800717760794624          1128888726 1129061108566769664 1129350401738850307 
##                   1                   1                   1                   1 
## 1129420931934302208 1129477055202988032 1129586164082434048 1130751075613417473 
##                   1                   1                   1                   1 
##          1131197072 1131290589570457601 1131554315666055169 1131558211029471232 
##                   1                   1                   1                   1 
## 1131977471295754240 1132376653630443521 1132542712195026944 1132607455752544256 
##                   1                   1                   1                   1 
## 1132699658789249024 1133031318638473217 1133422659352616960 1133481695284301824 
##                   1                   1                   1                   1 
## 1133510366422392833            11336782 1133682480333152256 1134189787953467393 
##                   1                   1                   1                   1 
## 1134336456837586944 1135071967982342145 1135299232548761605 1135600464299474944 
##                   1                   1                   1                   1 
## 1135923419910983680          1136030995 1136063449379811328 1136446087600910336 
##                   1                   1                   1                   1 
## 1136648612165955584 1136652739524616192 1138247180722900992           113826230 
##                   1                   1                   1                   1 
##           113875281 1139405234902425601           113988344          1140164130 
##                   1                   1                   1                   1 
## 1140622597463445509 1140962738627317762 1141295632336019456 1141505181068201985 
##                   1                   1                   1                   1 
##            11416112           114174809 1142083064618717184           114289144 
##                   1                   1                   1                   1 
## 1142935828332797953 1143183736957218817 1143217251803422721 1143889009120333824 
##                   1                   1                   1                   1 
## 1144399432223346688 1144597668326531072 1144693788264341504 1145462684445315072 
##                   1                   1                   1                   1 
## 1145691758971498497 1145756108406939649 1145906440172756993           114625323 
##                   1                   1                   1                   1 
##          1146470090 1146476534330474498 1146547265416417281 1146595459651297280 
##                   1                   1                   1                   1 
## 1146619916780474369 1146642659521355776 1147192973039480832 1147244238612180993 
##                   1                   1                   1                   1 
## 1148097345206308865          1148320386            11483372 1148624056637362176 
##                   1                   1                   1                   1 
## 1149197863626387458           115013442 1150755621462917120 1151019872488501248 
##                   1                   1                   1                   1 
## 1151178924577058816           115123623 1151649054520070144 1151693240648626176 
##                   1                   1                   1                   1 
## 1151924462071078912 1151934548747403264           115220086 1152238701835116545 
##                   1                   1                   1                   1 
## 1152253907512332288 1152568187097100288 1152928038293823493 1153114101662593030 
##                   1                   1                   1                   1 
##          1153435656 1153618720889212929 1154100426070986758 1154171516755546112 
##                   1                   1                   1                   1 
## 1154343273349226496 1154357613355626497 1154704679328260096 1155060358375251969 
##                   1                   1                   1                   1 
## 1155312569361547264          1155417270           115551731 1155545182437171200 
##                   1                   1                   1                   1 
##           115557189 1155573626877485061 1155904560831053824           115624161 
##                   1                   1                   1                   1 
## 1156265515045859331 1156387654751129601 1156399854693826560 1156802882332704768 
##                   1                   1                   1                   1 
## 1157031592482824192          1157153923 1157565909675978752 1157576861234319360 
##                   1                   1                   1                   1 
## 1158317830749618176           115833582 1158743359198040064 1158854621848322048 
##                   1                   1                   1                   1 
##            11589192 1159077699211681792 1159208351642869761 1159374213096071173 
##                   1                   1                   1                   1 
## 1159599872472842241 1160039696807993346           116006673 1160078976292982784 
##                   1                   1                   1                   1 
## 1160113401999306752 1160807974979325959 1161651929644183552 1161725627856240642 
##                   1                   1                   1                   1 
## 1161820043367321601           116221483 1162222854772944899 1162386157268660224 
##                   1                   1                   1                   1 
## 1162772933493706752           116356889 1164114552499384320 1164301466443628545 
##                   1                   1                   1                   1 
## 1164304446899347457           116466931 1164681827703017475 1165133049035546624 
##                   1                   1                   1                   1 
## 1165297634678120449 1166277681362755584 1166692155865223168 1166693963207757824 
##                   1                   1                   1                   1 
## 1166759532124680192 1167118525359632384 1167435005204656130 1167547766828126209 
##                   1                   1                   1                   1 
## 1167553563339493376 1167826295146893312 1168105020140773376 1168169461750358016 
##                   1                   1                   1                   1 
## 1168483995149045761 1168611088533004294 1168910892961976320          1169559752 
##                   1                   1                   1                   1 
##          1169585576 1169807983955468289          1170005964 1170010467592474625 
##                   1                   1                   1                   1 
## 1170465404625522690 1171133491636920320 1171370567091597314 1171467279877279747 
##                   1                   1                   1                   1 
## 1171475306651295744 1171570646725353472          1171620144 1171721557707755525 
##                   1                   1                   1                   1 
## 1171789657815887872 1171874133094936576 1172030497070804993           117204998 
##                   1                   1                   1                   1 
## 1172145907434803200 1172339221551448064 1172706633883029506 1172860329648222208 
##                   1                   1                   1                   1 
## 1173165534805975041           117327100 1173579351230574592 1174049491340496896 
##                   1                   1                   1                   1 
## 1174060621920395269 1174345996375121925 1174465417852653568           117450444 
##                   1                   1                   1                   1 
## 1174559600319717376          1174704810 1174848727741292544          1175113044 
##                   1                   1                   1                   1 
##           117513421          1175284032 1175735630636208130 1175902605056380928 
##                   1                   1                   1                   1 
## 1176013903899156482 1176066452811603968           117610607 1176455300251103233 
##                   1                   1                   1                   1 
## 1176819019682373632 1176884023039336449 1177255829847846915 1177288337360609280 
##                   1                   1                   1                   1 
##           117789706 1177938300969111555 1177951741284892672 1179433794664837120 
##                   1                   1                   1                   1 
##          1179735018 1180185804074885120          1180302456 1180476655262937089 
##                   1                   1                   1                   1 
## 1180853046034812928 1181058490774642688 1181225702588334082 1181600449633439744 
##                   1                   1                   1                   1 
##           118172761           118184874 1181906273152843777 1182309108537540608 
##                   1                   1                   1                   1 
## 1182346921920348161 1183116555225387009 1183207926976008192 1183476976054685707 
##                   1                   1                   1                   1 
## 1183722737405173761 1184025479084331008 1184101874066247681 1184191780054540294 
##                   1                   1                   1                   1 
## 1184341160719990784 1184564864754180097 1185048311176278016 1185066920418201600 
##                   1                   1                   1                   1 
## 1185279016548347905            11856892 1185794056812716034 1186213480161898498 
##                   1                   1                   1                   1 
## 1186564321784029184 1186569289186201603 1186585784150708229           118666965 
##                   1                   1                   1                   1 
## 1187124444462043137 1187149028057894913           118734730           118736440 
##                   1                   1                   1                   1 
## 1187777664221773826 1187866034365177861           118788479 1188070846268694533 
##                   1                   1                   1                   1 
## 1188214399456006144 1188256001876561921 1188482503688019968 1189096427672219649 
##                   1                   1                   1                   1 
## 1189855290553974784 1190298755142225921 1190322974521483264 1190356151474503680 
##                   1                   1                   1                   1 
##           119049059           119062410 1190674111976148993 1190678258074804224 
##                   1                   1                   1                   1 
## 1190723874276724739 1190858816356634625          1191017592           119129449 
##                   1                   1                   1                   1 
##           119132427            11913522 1191441878698397700 1191647305725812736 
##                   1                   1                   1                   1 
## 1191839250800693249 1191855720855044096 1191989431089057793 1192134289569308672 
##                   1                   1                   1                   1 
## 1192140310593208320 1192471707593977856 1192597253594198021 1192670568962830336 
##                   1                   1                   1                   1 
## 1192861487720611840 1192883347103657984 1193084353791889409 1193088277047205889 
##                   1                   1                   1                   1 
## 1193207262749372416 1193715082900987905           119385045 1194259671852302336 
##                   1                   1                   1                   1 
## 1194350484372385793 1194745985689276417 1194835997122367488 1194935266097672193 
##                   1                   1                   1                   1 
## 1195051598914998273 1195330132069761025 1195524590899990528 1196220142977503232 
##                   1                   1                   1                   1 
## 1196459980108550145 1196463984104345602 1196502812114456577 1196674406509989889 
##                   1                   1                   1                   1 
## 1196806203634049025 1197100524195074049 1197213643542319104          1197481172 
##                   1                   1                   1                   1 
## 1197973547689267200 1197981808811552768 1198014526442086401 1198016787482320896 
##                   1                   1                   1                   1 
## 1198385831658082306          1198404463 1198593229362520064 1198634786434121729 
##                   1                   1                   1                   1 
## 1198816669977563136 1199465003578867712 1199709005662367746 1199766623298768900 
##                   1                   1                   1                   1 
## 1200272420827025408           120120773 1201220349028900865 1201409443285499904 
##                   1                   1                   1                   1 
##           120158761 1201614327733792768 1201903964649746432 1202427390212730882 
##                   1                   1                   1                   1 
## 1202798467736887297 1202886145169936386           120301297 1203651642727583744 
##                   1                   1                   1                   1 
## 1203728719950553091 1204849978155425793 1205387773743550464 1205609158403190784 
##                   1                   1                   1                   1 
## 1205705767518531584 1205842090321731584           120598755 1206160507918569472 
##                   1                   1                   1                   1 
## 1206166412093513729 1206304553777295360 1206323523993636867 1206581582196293634 
##                   1                   1                   1                   1 
## 1206614296983199744 1206791283789979648 1207414449335918593 1207603103345922048 
##                   1                   1                   1                   1 
## 1208762598738538496 1209124166755946496          1209326491 1209433409048629248 
##                   1                   1                   1                   1 
##          1209603074 1210084108543516672 1210510200823660544 1210806479898333185 
##                   1                   1                   1                   1 
## 1211648405207781378 1211841594510336001 1211905857153196032 1212165062602788864 
##                   1                   1                   1                   1 
## 1212404840225067010 1212545944106893312 1212557247659704320 1212599905132273665 
##                   1                   1                   1                   1 
## 1212637220743462912 1212966062666305536 1213078535952187392 1213104547209441280 
##                   1                   1                   1                   1 
## 1213171286337183754 1213191677621362688 1213475121718939648 1213643301884088320 
##                   1                   1                   1                   1 
## 1214050898894188545           121490412 1215026615173963776 1215050043138265090 
##                   1                   1                   1                   1 
## 1215257565099065344 1215319107513569280 1215319598624436226 1215516320529362944 
##                   1                   1                   1                   1 
## 1215544938164817920           121597316 1216076013781708800 1216132023661756416 
##                   1                   1                   1                   1 
## 1216455968105648129 1217173996908793858 1217622758735085569 1217897910471483394 
##                   1                   1                   1                   1 
## 1218147393956392962 1218809530089340928          1219545068 1219576960927588353 
##                   1                   1                   1                   1 
## 1219610161716834309 1219688524573806600          1219767846 1219934191628046336 
##                   1                   1                   1                   1 
## 1219986871511650304 1220061263545479169          1220205126 1220397582381244416 
##                   1                   1                   1                   1 
## 1220474740953010185 1220476542591164416 1220510115373207552 1220658166695964672 
##                   1                   1                   1                   1 
## 1220720610323697666 1220752966774247426 1221243765526093824 1221294634514690049 
##                   1                   1                   1                   1 
## 1221302912946790400 1221311079856263172 1221862282776367104 1221911643929575424 
##                   1                   1                   1                   1 
## 1222048032771829762 1222153993863880704           122223738 1222475287075663874 
##                   1                   1                   1                   1 
## 1222477340917190658          1222574430          1222724010 1222973618386280448 
##                   1                   1                   1                   1 
## 1223011949513990148 1223081433918595072 1223368460199178241 1223472264500273159 
##                   1                   1                   1                   1 
## 1223624637323653121 1223771129422106625 1223941955329105924 1223999851731542021 
##                   1                   1                   1                   1 
## 1224093118317748225 1225041060348514304 1225641367830876161          1226387426 
##                   1                   1                   1                   1 
## 1226899095417217025 1227091571516067841 1227179005352271872 1227568195898310658 
##                   1                   1                   1                   1 
## 1227601890151546882 1227769218457837569 1227806084674543617 1228016119795109890 
##                   1                   1                   1                   1 
## 1228117525763895296 1228593264179261440 1228612430726651904 1229175433498894345 
##                   1                   1                   1                   1 
## 1229370996248829952 1229408533743120386 1229452942509346816 1230143800548286464 
##                   1                   1                   1                   1 
## 1230329059072073729 1230411525619363840           123041474           123043185 
##                   1                   1                   1                   1 
## 1230646848215486465 1230781660221845504 1230977514073403407            12311692 
##                   1                   1                   1                   1 
##           123120658 1231621693950570497 1231668158722822144 1231719662095724544 
##                   1                   1                   1                   1 
## 1231765598239154177 1231799052280291328           123181359 1231932208190980097 
##                   1                   1                   1                   1 
##          1232042137 1232276562386485248 1232352999307173889 1232667945827995648 
##                   1                   1                   1                   1 
## 1232739526541529088 1233173569200242688 1233250695169503234 1233256570454081536 
##                   1                   1                   1                   1 
##           123343056 1233447068879990785 1233902343378391040 1234002448903221249 
##                   1                   1                   1                   1 
## 1234142843372851200 1234187370783637505 1234312660247830528 1234381916557791232 
##                   1                   1                   1                   1 
## 1234570867629346817 1234741244959412226           123481432 1234827786587660289 
##                   1                   1                   1                   1 
## 1235304708421513216 1235395195287396353 1235472342911987712 1235692855819227136 
##                   1                   1                   1                   1 
## 1235867832329465857 1235930179630821378 1236006332299436034 1236142209646264320 
##                   1                   1                   1                   1 
## 1236359063224500225 1236374674482909186 1236454037807079424 1236476170855645186 
##                   1                   1                   1                   1 
## 1236756369912594436 1236766700449804294 1236834245227708416 1236978018502897665 
##                   1                   1                   1                   1 
## 1237031278492307460 1237064625625223168 1237348420395950080 1237436880192503808 
##                   1                   1                   1                   1 
## 1237451314818400258 1237476078936940549 1237548491611811841           123767078 
##                   1                   1                   1                   1 
## 1237809726928441349 1237824952113303552           123791955 1237929400898813953 
##                   1                   1                   1                   1 
## 1238084781591547910 1238161158647005187 1238196548762243073 1238202493907189760 
##                   1                   1                   1                   1 
## 1238226735423991808 1238268606477225984 1238280694729773057 1238534980957077507 
##                   1                   1                   1                   1 
## 1238832906803515392 1238942266112323588 1238946915607347202 1239006893223194624 
##                   1                   1                   1                   1 
## 1239085454592442371 1239198522962042881 1239221893871423488 1239313114253783040 
##                   1                   1                   1                   1 
## 1239374939867820034 1239614709365714946 1239616296163119111 1239689957888987138 
##                   1                   1                   1                   1 
## 1239815229778747392 1239891755283165186 1239902653091590147 1239979423467700225 
##                   1                   1                   1                   1 
## 1239988262078480384          1240001857 1240407447078162432 1240569071621435392 
##                   1                   1                   1                   1 
## 1240641096431964166 1240718895067127809 1240722777180528640 1240759936721858561 
##                   1                   1                   1                   1 
## 1240789666388783104 1240796544569200640 1240839264633606144 1240966622392856577 
##                   1                   1                   1                   1 
## 1241032823806582786 1241036656251207685 1241075459426787330 1241087256577753088 
##                   1                   1                   1                   1 
## 1241153039446290439 1241225208637173760          1241258612 1241272699126796288 
##                   1                   1                   1                   1 
## 1241418685643972608 1241570905731391489 1241782016028233729 1241862877448818688 
##                   1                   1                   1                   1 
## 1241871775400636417 1241891204373123075 1241989743514210308 1242125799966363648 
##                   1                   1                   1                   1 
## 1242134066977050624 1242190381988667392 1242231134727147522 1242338480086122496 
##                   1                   1                   1                   1 
## 1242350384649134081 1242414893321650178 1242449103646265344 1242474381508476929 
##                   1                   1                   1                   1 
## 1242485438163501057 1242507725520732161 1242579583028862976 1242647811432292353 
##                   1                   1                   1                   1 
## 1242666919863312391 1242721773826662400 1242792587318222850 1242923322641276928 
##                   1                   1                   1                   1 
## 1242972781538656259 1242977452424663040 1243054144530681861 1243117621068869634 
##                   1                   1                   1                   1 
## 1243161716046753793 1243169969241759745 1243199709893857281 1243216531078684673 
##                   1                   1                   1                   1 
## 1243224002576998401 1243233793865121793 1243238259515252736 1243238665611968512 
##                   1                   1                   1                   1 
## 1243245259263553540 1243251151060873219 1243253566778851330 1243256870397190144 
##                   1                   1                   1                   1 
## 1243259825863213059 1243262677536796672 1243273287670599692 1243275040101195777 
##                   1                   1                   1                   1 
## 1243280625425092617 1243291782084878336 1243297372115013633 1243510352165384194 
##                   1                   1                   1                   1 
## 1243518105273466880 1243526585635962881 1243541663974391808 1243556628252762116 
##                   1                   1                   1                   1 
## 1243562081267388418 1243562740154851330 1243572938374332417 1243578780938989568 
##                   1                   1                   1                   1 
## 1243587468185800705 1243674858359336961 1243676051424903170 1243709564978991104 
##                   1                   1                   1                   1 
## 1243743948138598402 1243768315345920000 1243772509528502272 1243779526858928133 
##                   1                   1                   1                   1 
## 1243798819311157256 1243822770540220417           124416668           124688897 
##                   1                   1                   1                   1 
##          1247774526           125054226          1251717146          1251945722 
##                   1                   1                   1                   1 
##          1252945921          1258937568           125907895          1260181902 
##                   1                   1                   1                   1 
##           126379480           126392009             1265161           126647633 
##                   1                   1                   1                   1 
##          1268221555          1268814828          1270650092           127264048 
##                   1                   1                   1                   1 
##          1272793064          1273725474          1275722959          1279614229 
##                   1                   1                   1                   1 
##          1280644147            12831882            12831902            12837932 
##                   1                   1                   1                   1 
##          1284092696          1284271196          1284307536           128447885 
##                   1                   1                   1                   1 
##          1284758503          1285084267          1286300364          1287327240 
##                   1                   1                   1                   1 
##               12898          1291783818           129398419          1294646802 
##                   1                   1                   1                   1 
##          1297499527          1298796487          1299289771           130065700 
##                   1                   1                   1                   1 
##           130170717          1303500438          1305404772          1305481604 
##                   1                   1                   1                   1 
##          1307233507          1307973133           130945845            13117042 
##                   1                   1                   1                   1 
##           131299671           131503213          1315370672          1319200555 
##                   1                   1                   1                   1 
##          1323728197          1324792676          1325843472           132640996 
##                   1                   1                   1                   1 
##          1326854736           132770004          1328276282           132853489 
##                   1                   1                   1                   1 
##          1329391124          1329412062            13294612          1332482671 
##                   1                   1                   1                   1 
##            13340732          1337062778           133785245          1338923474 
##                   1                   1                   1                   1 
##          1340486389           134196475          1343036322          1343242164 
##                   1                   1                   1                   1 
##          1347255096            13492362           134939868          1349875118 
##                   1                   1                   1                   1 
##           135243332            13525132          1354354465           135744132 
##                   1                   1                   1                   1 
##           135796212          1359038060          1359213752           136024024 
##                   1                   1                   1                   1 
##            13640412           136467835          1364852828           136717606 
##                   1                   1                   1                   1 
##          1372632595           137475299           137643740           137715520 
##                   1                   1                   1                   1 
##          1377274477           137731839          1377674856          1379469558 
##                   1                   1                   1                   1 
##           137980540          1380347376          1381088924           138138032 
##                   1                   1                   1                   1 
##          1381496635           138168578          1382834618          1383388860 
##                   1                   1                   1                   1 
##           138369022            13849482          1385477996          1387605979 
##                   1                   1                   1                   1 
##           138933898          1389643033          1390318944           139092161 
##                   1                   1                   1                   1 
##            13918492          1393732860          1394699252           139481065 
##                   1                   1                   1                   1 
##            13958462           139585085          1397876294            14032852 
##                   1                   1                   1                   1 
##           140362670          1404180445           140437875           140575876 
##                   1                   1                   1                   1 
##            14075154           140761770          1408451995          1409219496 
##                   1                   1                   1                   1 
##           140935033           140997023          1410219468           141156908 
##                   1                   1                   1                   1 
##            14122481            14133036          1413480572           141469339 
##                   1                   1                   1                   1 
##            14149625          1416627822           141737914            14182050 
##                   1                   1                   1                   1 
##           141827890          1418711929            14191823           142249639 
##                   1                   1                   1                   1 
##            14232408           142338949            14239496          1424605753 
##                   1                   1                   1                   1 
##            14258850           142654006           142792928          1428753692 
##                   1                   1                   1                   1 
##            14287669            14288066            14296157           142974764 
##                   1                   1                   1                   1 
##           142979090          1430916032            14317810          1432128606 
##                   1                   1                   1                   1 
##            14327615          1433272646           143521217          1436307913 
##                   1                   1                   1                   1 
##          1436852006            14373721          1438294741           143840324 
##                   1                   1                   1                   1 
##          1440223566            14443094            14443463            14459159 
##                   1                   1                   1                   1 
##            14465282            14469820            14470793           144877740 
##                   1                   1                   1                   1 
##           144934775            14494281            14499829            14509303 
##                   1                   1                   1                   1 
##           145232128           145351229          1453600256          1454780485 
##                   1                   1                   1                   1 
##            14565253          1456759956            14568315            14572879 
##                   1                   1                   1                   1 
##            14578504            14584738          1459650295           146021653 
##                   1                   1                   1                   1 
##            14602924            14622091           146227634            14632629 
##                   1                   1                   1                   1 
##            14639645           146533106          1465367582           146624076 
##                   1                   1                   1                   1 
##           146717314          1467788160            14678819           146858645 
##                   1                   1                   1                   1 
##           146931390           146972021          1469828252            14705603 
##                   1                   1                   1                   1 
##           147071497            14711106            14711728            14712548 
##                   1                   1                   1                   1 
##            14712659           147289620           147347385          1473523987 
##                   1                   1                   1                   1 
##           147620663           147639572            14775752            14790524 
##                   1                   1                   1                   1 
##          1479739320            14806144            14806596           148122322 
##                   1                   1                   1                   1 
##           148153326           148199050          1482551310           148323486 
##                   1                   1                   1                   1 
##            14834066           148346744            14840030           148440338 
##                   1                   1                   1                   1 
##          1486423418          1486521546          1487465184            14884156 
##                   1                   1                   1                   1 
##            14886344          1488680196          1489363688          1491080899 
##                   1                   1                   1                   1 
##            14912552           149315713           149462249            14969938 
##                   1                   1                   1                   1 
##            14973436            14982854          1498921818            14991184 
##                   1                   1                   1                   1 
##            15008386            15033673            15070088           150754332 
##                   1                   1                   1                   1 
##            15081364            15087056            15094527           150965189 
##                   1                   1                   1                   1 
##            15112814           151193458            15134746          1513922443 
##                   1                   1                   1                   1 
##          1514700288            15149988            15150904           151513624 
##                   1                   1                   1                   1 
##          1515695892            15161618            15163577          1516878408 
##                   1                   1                   1                   1 
##            15183127          1518369139           151887424           151967576 
##                   1                   1                   1                   1 
##          1520851111            15209380            15221967          1522227126 
##                   1                   1                   1                   1 
##           152366061          1524267542            15244133          1524953587 
##                   1                   1                   1                   1 
##            15263106          1526864863            15296897           153004816 
##                   1                   1                   1                   1 
##            15301179            15304100            15308281           153102694 
##                   1                   1                   1                   1 
##           153461591           153537041            15359578           153611023 
##                   1                   1                   1                   1 
##          1536223580           153841435           153940019           153942255 
##                   1                   1                   1                   1 
##           153949157            15405628          1541369246           154159298 
##                   1                   1                   1                   1 
##            15436545            15441074           154537065          1545494354 
##                   1                   1                   1                   1 
##            15466126            15468858          1547457408           154774769 
##                   1                   1                   1                   1 
##            15483495           154842200            15484279           154909077 
##                   1                   1                   1                   1 
##            15499013            15516591          1551979855          1552541863 
##                   1                   1                   1                   1 
##            15533832            15537656          1554649760          1555109156 
##                   1                   1                   1                   1 
##            15571127            15577279           155965492            15603311 
##                   1                   1                   1                   1 
##            15605368           156159841           156163320          1562600388 
##                   1                   1                   1                   1 
##          1563092696           156406365            15646965          1565411244 
##                   1                   1                   1                   1 
##          1565447557            15654561           156749387            15678167 
##                   1                   1                   1                   1 
##           156948869            15698979            15714216            15714436 
##                   1                   1                   1                   1 
##           157205674            15726398            15726720            15729315 
##                   1                   1                   1                   1 
##            15730075            15756056          1576931762           157997359 
##                   1                   1                   1                   1 
##            15811735            15828062          1583317868          1584139454 
##                   1                   1                   1                   1 
##            15849872            15860016           158627406           158633773 
##                   1                   1                   1                   1 
##            15867461            15878218           158820061           158820175 
##                   1                   1                   1                   1 
##           158967809           159056731            15917758           159189405 
##                   1                   1                   1                   1 
##          1593789164           159514232          1595286248           159555194 
##                   1                   1                   1                   1 
##          1595592481           159605858          1596904951          1599384764 
##                   1                   1                   1                   1 
##          1600858730          1601359999          1601683238           160279987 
##                   1                   1                   1                   1 
##            16031897           160519739            16071327            16080547 
##                   1                   1                   1                   1 
##          1609986314            16102208           161115002            16123423 
##                   1                   1                   1                   1 
##            16125790           161274233           161295171            16154218 
##                   1                   1                   1                   1 
##          1615531814          1615661562          1617287714            16177658 
##                   1                   1                   1                   1 
##          1619571824           161969197           161981702            16203795 
##                   1                   1                   1                   1 
##           162097001            16213116           162260868            16227572 
##                   1                   1                   1                   1 
##          1624301960            16247920            16256661          1626142758 
##                   1                   1                   1                   1 
##           162792799            16288328          1628901756            16292218 
##                   1                   1                   1                   1 
##            16297118          1629880675           163054603            16329426 
##                   1                   1                   1                   1 
##           163296161            16342817           163457844           163562545 
##                   1                   1                   1                   1 
##          1636029540           163635873            16365632            16368788 
##                   1                   1                   1                   1 
##          1637076036           163765275           163898564          1639828028 
##                   1                   1                   1                   1 
##            16399202            16424606            16438911           164431665 
##                   1                   1                   1                   1 
##            16451215          1646127014            16471088           164730435 
##                   1                   1                   1                   1 
##            16479968            16481866            16490401            16508319 
##                   1                   1                   1                   1 
##          1650970068            16524544          1652874782          1653450212 
##                   1                   1                   1                   1 
##          1654110102          1654137720          1654220503            16542708 
##                   1                   1                   1                   1 
##            16548855           165776927            16582131            16584947 
##                   1                   1                   1                   1 
##           165872754            16588298           165894671          1658956214 
##                   1                   1                   1                   1 
##           166201423            16632172            16644495          1665323814 
##                   1                   1                   1                   1 
##            16661514            16672095            16672272            16674972 
##                   1                   1                   1                   1 
##           166751016            16675413            16677192            16684965 
##                   1                   1                   1                   1 
##            16695632           166956390           166993091            16701263 
##                   1                   1                   1                   1 
##            16701532           167017165          1670682996            16745704 
##                   1                   1                   1                   1 
##           167464827          1675910472           167771431          1678447045 
##                   1                   1                   1                   1 
##           167909022          1679568758            16796529            16812059 
##                   1                   1                   1                   1 
##           168239508           168346374            16836040          1684251300 
##                   1                   1                   1                   1 
##           168511028          1685150023          1687920662            16882835 
##                   1                   1                   1                   1 
##            16887175            16889506            16892481            16914075 
##                   1                   1                   1                   1 
##           169146823           169154930            16925355            16926327 
##                   1                   1                   1                   1 
##          1694583218            16950863          1699793220            16999934 
##                   1                   1                   1                   1 
##            17004997          1700516168            17018594            17029338 
##                   1                   1                   1                   1 
##            17033050          1704625693            17066782            17084854 
##                   1                   1                   1                   1 
##          1708533829          1708560793            17086434            17089636 
##                   1                   1                   1                   1 
##           170921358           170947380            17110714           171475447 
##                   1                   1                   1                   1 
##           171521108            17153947           171554034            17161553 
##                   1                   1                   1                   1 
##          1717028534            17194257           172020392            17204067 
##                   1                   1                   1                   1 
##            17205366           172056723            17221904            17233331 
##                   1                   1                   1                   1 
##            17235511            17236561            17240435          1724199378 
##                   1                   1                   1                   1 
##          1724936154            17258420           172685223            17270617 
##                   1                   1                   1                   1 
##           172889061          1729758474          1729899438          1731203172 
##                   1                   1                   1                   1 
##          1732045183          1735048843            17374056           173790106 
##                   1                   1                   1                   1 
##            17387589            17389697           173996252           174144887 
##                   1                   1                   1                   1 
##           174320831           174361370          1744173055            17446176 
##                   1                   1                   1                   1 
##            17459636            17461631            17465796            17481977 
##                   1                   1                   1                   1 
##           174824045            17499004            17515254           175194697 
##                   1                   1                   1                   1 
##           175374691            17539385           175472066            17547367 
##                   1                   1                   1                   1 
##            17549460          1755000452          1755404012           175629579 
##                   1                   1                   1                   1 
##            17625521           176340974           176404629            17655017 
##                   1                   1                   1                   1 
##            17666041           176806814            17697584           177564016 
##                   1                   1                   1                   1 
##            17761521            17782826            17787008            17836259 
##                   1                   1                   1                   1 
##           178547795            17870495          1787111144            17906632 
##                   1                   1                   1                   1 
##            17941459            17969032            17984777           180512314 
##                   1                   1                   1                   1 
##            18060714            18066377           180987994            18149465 
##                   1                   1                   1                   1 
##           181650392            18172434            18213546            18216752 
##                   1                   1                   1                   1 
##            18217470           182493733            18270658           182815759 
##                   1                   1                   1                   1 
##           182854571            18318500           183252509            18359716 
##                   1                   1                   1                   1 
##            18372408           183987005           184283278           184545993 
##                   1                   1                   1                   1 
##            18480977          1849904065          1850159778          1850560488 
##                   1                   1                   1                   1 
##           185159449          1852220612           185230595          1853071872 
##                   1                   1                   1                   1 
##          1855228159          1855427018           185650733           185722900 
##                   1                   1                   1                   1 
##            18582213            18624182            18633036          1864463328 
##                   1                   1                   1                   1 
##            18646015            18655484           186573667           186577481 
##                   1                   1                   1                   1 
##          1866105223          1867026396           186890864            18692783 
##                   1                   1                   1                   1 
##          1869834144            18698702          1872262872            18726395 
##                   1                   1                   1                   1 
##            18728203            18743710          1874526990          1874621130 
##                   1                   1                   1                   1 
##            18774342           187771820            18789002           187981835 
##                   1                   1                   1                   1 
##           188006317           188014942          1881515299           188163611 
##                   1                   1                   1                   1 
##            18831926          1883351018           188341436           188374980 
##                   1                   1                   1                   1 
##           188576531          1887375954           188748627            18891281 
##                   1                   1                   1                   1 
##           188930519            18911813            18917909           189215452 
##                   1                   1                   1                   1 
##          1892222006           189258301            18935711            18936284 
##                   1                   1                   1                   1 
##            18943058            18945939            18964092            18973576 
##                   1                   1                   1                   1 
##          1899140628            18999261            18999809           189999758 
##                   1                   1                   1                   1 
##          1902116852           190224295            19041340            19046831 
##                   1                   1                   1                   1 
##          1904739704            19055125            19061452          1906878560 
##                   1                   1                   1                   1 
##          1907783000          1908079370            19087092          1911138865 
##                   1                   1                   1                   1 
##          1911785280           191190994           191308371          1914710268 
##                   1                   1                   1                   1 
##            19160402            19167941            19171014          1917193051 
##                   1                   1                   1                   1 
##            19174660           191852684          1918574360            19190123 
##                   1                   1                   1                   1 
##           191969714          1919991492          1919994211          1920592164 
##                   1                   1                   1                   1 
##            19206174          1920625123            19212226          1921727274 
##                   1                   1                   1                   1 
##            19239602           192478036            19252684           192547775 
##                   1                   1                   1                   1 
##            19274269          1928003306          1930148504           193036771 
##                   1                   1                   1                   1 
##          1931410818          1931443988           193359024           193687175 
##                   1                   1                   1                   1 
##           193802626            19387464           194009086            19422342 
##                   1                   1                   1                   1 
##           194352754          1943641136           194522633            19463777 
##                   1                   1                   1                   1 
##           194708260            19476219           194786961            19479774 
##                   1                   1                   1                   1 
##           194861798            19488499            19500844          1952388158 
##                   1                   1                   1                   1 
##          1952690670            19536290          1954175106            19547115 
##                   1                   1                   1                   1 
##          1954853119           195505987            19565264          1957948550 
##                   1                   1                   1                   1 
##            19581053            19584103           196013643          1960376582 
##                   1                   1                   1                   1 
##           196067974            19607115           196131308          1962723907 
##                   1                   1                   1                   1 
##           196690457           196707379          1967864941          1968262034 
##                   1                   1                   1                   1 
##           196901400          1969422174           197016444            19715065 
##                   1                   1                   1                   1 
##          1972018172          1972372730            19724392           197420040 
##                   1                   1                   1                   1 
##            19752354           197526241          1977537332          1979386550 
##                   1                   1                   1                   1 
##           198145412            19819089            19824937            19831976 
##                   1                   1                   1                   1 
##           198459013           198639090           199054027           199511511 
##                   1                   1                   1                   1 
##            19974645           199748949            19981892           199836662 
##                   1                   1                   1                   1 
##            20014055           200146902            20016443           200224426 
##                   1                   1                   1                   1 
##            20060120            20068130            20070029           200838452 
##                   1                   1                   1                   1 
##           201109689            20177423           201806325           201822079 
##                   1                   1                   1                   1 
##            20187873           202098409           202133896            20252833 
##                   1                   1                   1                   1 
##           202780974            20341657           203470575            20363221 
##                   1                   1                   1                   1 
##            20399893            20402945            20403813            20439040 
##                   1                   1                   1                   1 
##            20463039            20467031            20470916           204769030 
##                   1                   1                   1                   1 
##             2048741           205240369            20532030            20542290 
##                   1                   1                   1                   1 
##            20551473           205518700            20552961            20565828 
##                   1                   1                   1                   1 
##           205820027            20597234            20629645           206321314 
##                   1                   1                   1                   1 
##            20645624            20660543           206721200            20682940 
##                   1                   1                   1                   1 
##           207005166            20709062            20711586            20722768 
##                   1                   1                   1                   1 
##            20724105            20729667            20737615            20759479 
##                   1                   1                   1                   1 
##           207689772           207920978           207928167            20794340 
##                   1                   1                   1                   1 
##           208179565            20845519            20875841           208999944 
##                   1                   1                   1                   1 
##            20937779           209492244           209599290            20971849 
##                   1                   1                   1                   1 
##           209734424            21004961            21020467            21021326 
##                   1                   1                   1                   1 
##           210542535            21093744           210946385           211022009 
##                   1                   1                   1                   1 
##            21106414           211068552            21119632           211220546 
##                   1                   1                   1                   1 
##           211595114           212025177            21234664            21234787 
##                   1                   1                   1                   1 
##            21303464           213053129            21313386           213142146 
##                   1                   1                   1                   1 
##           213223290            21324764            21331501            21337411 
##                   1                   1                   1                   1 
##            21347530           213732518            21390452           214065768 
##                   1                   1                   1                   1 
##            21421954            21429834            21455569           214631950 
##                   1                   1                   1                   1 
##          2148553704           215019311            21503636          2151183782 
##                   1                   1                   1                   1 
##           215201388            21527720          2153200177          2153294767 
##                   1                   1                   1                   1 
##            21539403          2156045139           216006612          2160371056 
##                   1                   1                   1                   1 
##          2161115530          2163322584           216405546          2164349064 
##                   1                   1                   1                   1 
##           216437539           216524202          2165963889           216638460 
##                   1                   1                   1                   1 
##           216677271          2166944665           216787361          2168517540 
##                   1                   1                   1                   1 
##          2168594024           216862411          2169016709          2170209896 
##                   1                   1                   1                   1 
##           217118762           217132061            21726490            21731920 
##                   1                   1                   1                   1 
##          2173459784           217370059           217404840          2175893961 
##                   1                   1                   1                   1 
##            21766435           217742234            21780885          2178353256 
##                   1                   1                   1                   1 
##          2178744220          2183262514          2183520866          2183735976 
##                   1                   1                   1                   1 
##            21845346          2184534842          2188112187          2188261357 
##                   1                   1                   1                   1 
##          2190872304          2192897330            21931305          2193224916 
##                   1                   1                   1                   1 
##           219327896            21935538          2194642694          2194889844 
##                   1                   1                   1                   1 
##           219493826            21951777          2195850319           219641665 
##                   1                   1                   1                   1 
##            21969215           219790142          2198626457           220050745 
##                   1                   1                   1                   1 
##          2201331817          2201782562          2202789144          2203232041 
##                   1                   1                   1                   1 
##            22036193            22044289           220723536          2209767718 
##                   1                   1                   1                   1 
##          2210438382          2210857693          2214350546            22146825 
##                   1                   1                   1                   1 
##          2215874756          2216090436           221792448            22208192 
##                   1                   1                   1                   1 
##           222106378            22218669           222196210            22221730 
##                   1                   1                   1                   1 
##            22233169          2223359100          2224226376           222563717 
##                   1                   1                   1                   1 
##           222564691            22263368            22278303            22283739 
##                   1                   1                   1                   1 
##          2228647020            22286564           223114623            22313981 
##                   1                   1                   1                   1 
##           223149473          2232476503           223269129            22346160 
##                   1                   1                   1                   1 
##           223515339           223748559            22382110          2238536779 
##                   1                   1                   1                   1 
##          2238576392          2239132789           223919511           223919653 
##                   1                   1                   1                   1 
##          2241969301            22424250          2243566598           224430095 
##                   1                   1                   1                   1 
##          2245099266            22465218          2247607826            22481834 
##                   1                   1                   1                   1 
##          2249436469          2250761564          2252034926            22538359 
##                   1                   1                   1                   1 
##            22544511          2254495046           225456833          2256257457 
##                   1                   1                   1                   1 
##          2256333007           225671444            22594051          2262042133 
##                   1                   1                   1                   1 
##          2264754072           226579418           226631680          2266427203 
##                   1                   1                   1                   1 
##          2267324779           226774852           226777208          2267979270 
##                   1                   1                   1                   1 
##          2268965659            22703339          2271160944            22714473 
##                   1                   1                   1                   1 
##            22723912          2273313046          2273515344          2275006482 
##                   1                   1                   1                   1 
##            22772972          2277445532            22793955          2279751560 
##                   1                   1                   1                   1 
##          2281299860          2281314234          2282453684          2283049465 
##                   1                   1                   1                   1 
##           228436342           228540376          2285931985           228596969 
##                   1                   1                   1                   1 
##          2287166025          2287250233            22879437          2288701791 
##                   1                   1                   1                   1 
##           229050158            22910403           229175747          2291781381 
##                   1                   1                   1                   1 
##           229614824          2297933573            22980986           230030529 
##                   1                   1                   1                   1 
##           230292897          2304116028           230477177            23051190 
##                   1                   1                   1                   1 
##          2311669472           231167619            23132770            23151004 
##                   1                   1                   1                   1 
##           231763336            23176632          2319111437            23199122 
##                   1                   1                   1                   1 
##          2319969973          2320585681            23207060            23214369 
##                   1                   1                   1                   1 
##           232215936           232238263          2323116235          2326291945 
##                   1                   1                   1                   1 
##          2328595302          2329328857           232995380          2330484144 
##                   1                   1                   1                   1 
##          2331266952            23314228            23335644            23335901 
##                   1                   1                   1                   1 
##           233507368           233554971           233788247          2339115726 
##                   1                   1                   1                   1 
##          2343406999           234392565          2344116191            23445264 
##                   1                   1                   1                   1 
##          2345690571            23463848          2347555542           235251868 
##                   1                   1                   1                   1 
##           235255071          2353627721          2353865167          2356713624 
##                   1                   1                   1                   1 
##            23587099           235906919          2362771670          2362793988 
##                   1                   1                   1                   1 
##          2363741781          2364634376           236556051          2367221161 
##                   1                   1                   1                   1 
##           236801264           236900512            23691870           237020420 
##                   1                   1                   1                   1 
##           237026147          2371282777           237152177            23721469 
##                   1                   1                   1                   1 
##           237430855           237520337            23756930            23769845 
##                   1                   1                   1                   1 
##          2377450226          2377947932           237798969          2378002524 
##                   1                   1                   1                   1 
##            23797717           238091231          2382036558            23823286 
##                   1                   1                   1                   1 
##          2382515425           238270341          2382793933            23828118 
##                   1                   1                   1                   1 
##          2383497839           238454287          2385106567          2385124411 
##                   1                   1                   1                   1 
##          2385478436          2385765978          2386224971          2387282786 
##                   1                   1                   1                   1 
##          2387343834            23875396           238911107            23937508 
##                   1                   1                   1                   1 
##           239458972           239808791          2398852424            23990068 
##                   1                   1                   1                   1 
##          2399204088            23992981          2400475381           240265305 
##                   1                   1                   1                   1 
##          2404960687           240578571           240710605           240849653 
##                   1                   1                   1                   1 
##           241066361          2411147419          2414136888            24161508 
##                   1                   1                   1                   1 
##           241617614          2417586104            24190527           242122010 
##                   1                   1                   1                   1 
##            24220800           242272653           242324142            24232840 
##                   1                   1                   1                   1 
##            24234881            24250033          2426242188          2426409260 
##                   1                   1                   1                   1 
##            24291371          2429511498            24298886           243032876 
##                   1                   1                   1                   1 
##          2430695400            24318789          2432037522           243363569 
##                   1                   1                   1                   1 
##          2436798014          2440688198          2441047423          2441240347 
##                   1                   1                   1                   1 
##            24428174          2443550978           244380368           244400306 
##                   1                   1                   1                   1 
##          2444019684           244422279          2447034256          2451789823 
##                   1                   1                   1                   1 
##            24546792           245472048          2454945285           245527175 
##                   1                   1                   1                   1 
##           245603256           245631096           245649240            24576083 
##                   1                   1                   1                   1 
##           245804214           246469979          2465859758          2466031672 
##                   1                   1                   1                   1 
##           246625361            24670697             2467791          2467844419 
##                   1                   1                   1                   1 
##          2467864917            24680800           246862845          2469672883 
##                   1                   1                   1                   1 
##           247027241          2470674174          2471373550           247290787 
##                   1                   1                   1                   1 
##           247293987           247334603          2473782116           247574410 
##                   1                   1                   1                   1 
##          2475814386           247631603          2477304105            24776576 
##                   1                   1                   1                   1 
##            24776950           247860908            24790428           247970501 
##                   1                   1                   1                   1 
##          2480083422          2480480346            24811047            24829612 
##                   1                   1                   1                   1 
##           248504390          2487131992            24873949          2487423914 
##                   1                   1                   1                   1 
##           248819855           248913844           249409286           249417992 
##                   1                   1                   1                   1 
##            24947616           249621125          2496504085          2497052053 
##                   1                   1                   1                   1 
##            24972442           249820409            24990776           250115113 
##                   1                   1                   1                   1 
##           250122449           250289285            25029677            25033748 
##                   1                   1                   1                   1 
##            25048747            25052405           250622664           250711880 
##                   1                   1                   1                   1 
##            25111363          2513627167          2515536091            25156409 
##                   1                   1                   1                   1 
##          2517480838          2517983366           251841521           251898204 
##                   1                   1                   1                   1 
##          2519434061            25199716           252076966          2520873516 
##                   1                   1                   1                   1 
##           252207631          2522474733            25243287           252468335 
##                   1                   1                   1                   1 
##           252751061           252789303            25296511          2532243756 
##                   1                   1                   1                   1 
##          2532446543            25325821          2532650272           253293654 
##                   1                   1                   1                   1 
##           253339566            25346036          2535246648            25354366 
##                   1                   1                   1                   1 
##            25360410           253667610           253728826            25393191 
##                   1                   1                   1                   1 
##            25399451           254051666            25405301          2540984156 
##                   1                   1                   1                   1 
##           254248720           254301862            25444596          2544494601 
##                   1                   1                   1                   1 
##          2544511130          2545607630           254716686          2552986626 
##                   1                   1                   1                   1 
##            25531114           255363029           255455960            25547397 
##                   1                   1                   1                   1 
##          2555293819            25553306          2556125370            25562381 
##                   1                   1                   1                   1 
##           255655450          2557012136           255716082          2557214269 
##                   1                   1                   1                   1 
##           255925055            25612532            25620597           256206826 
##                   1                   1                   1                   1 
##          2563176642           256487479           256500380          2565943630 
##                   1                   1                   1                   1 
##          2566031652           256655782           257006628            25708791 
##                   1                   1                   1                   1 
##           257173175           257394747            25739709          2574179264 
##                   1                   1                   1                   1 
##           257587306           257703860          2577123386          2581075469 
##                   1                   1                   1                   1 
##          2583404944          2583715772           258394958          2584930699 
##                   1                   1                   1                   1 
##           258531148          2585876101          2586748092          2586790071 
##                   1                   1                   1                   1 
##           258710092           258819269            25887412          2590779812 
##                   1                   1                   1                   1 
##            25925601            25927615           259372802          2595358376 
##                   1                   1                   1                   1 
##          2596158810          2596383959           259740746           259890242 
##                   1                   1                   1                   1 
##            26006232           260109740           260449896            26047067 
##                   1                   1                   1                   1 
##            26049426          2605043372          2606387643           260671465 
##                   1                   1                   1                   1 
##            26086971           260880760            26099580           261022596 
##                   1                   1                   1                   1 
##           261062361          2613870120           261417569            26155305 
##                   1                   1                   1                   1 
##          2616078570            26167990           261711452            26203465 
##                   1                   1                   1                   1 
##          2620903078           262302781          2623540653            26243227 
##                   1                   1                   1                   1 
##           262496322            26276678           262785870           262862414 
##                   1                   1                   1                   1 
##          2631976283            26333596            26340080           263515370 
##                   1                   1                   1                   1 
##            26395627           264248576           264743869          2648638897 
##                   1                   1                   1                   1 
##          2652857845            26540330            26555447          2657258191 
##                   1                   1                   1                   1 
##            26575910           266078818            26644261            26672856 
##                   1                   1                   1                   1 
##           266732731           267130585           267262609           267454085 
##                   1                   1                   1                   1 
##          2674761254           267519044             2682871           268352720 
##                   1                   1                   1                   1 
##           268416076           268473477           268637592            26873427 
##                   1                   1                   1                   1 
##           268859974            26893522          2690112467           269369534 
##                   1                   1                   1                   1 
##           269581619           269754545          2698417466          2700221964 
##                   1                   1                   1                   1 
##            27043789           270475024           270695832          2707145847 
##                   1                   1                   1                   1 
##           270827963           270950830           271014927           271076158 
##                   1                   1                   1                   1 
##          2710999739           271109936            27123426            27138748 
##                   1                   1                   1                   1 
##          2716509897          2716835211          2722067677          2724237405 
##                   1                   1                   1                   1 
##           272431268           272505268          2726875124           272690431 
##                   1                   1                   1                   1 
##           272769192          2728469245            27293335          2729342164 
##                   1                   1                   1                   1 
##          2731914666           273192996           273337477          2733477877 
##                   1                   1                   1                   1 
##          2734304898          2734531293          2735620284           273678873 
##                   1                   1                   1                   1 
##           273792908           273919684           274016135            27404490 
##                   1                   1                   1                   1 
##          2745488034          2746466350          2749977957          2750865326 
##                   1                   1                   1                   1 
##          2751336881          2751414500           275401598          2754989873 
##                   1                   1                   1                   1 
##          2756671861           275677382          2756826523           275776953 
##                   1                   1                   1                   1 
##          2758908086           275895522          2759989021           276102613 
##                   1                   1                   1                   1 
##            27630697            27644088          2766605831             2768501 
##                   1                   1                   1                   1 
##           276947541           277089952           277613181          2777392601 
##                   1                   1                   1                   1 
##           277756882           277929287           278032124            27805737 
##                   1                   1                   1                   1 
##           278079368           278123550           278123901            27834920 
##                   1                   1                   1                   1 
##            27841547          2785592623           278867539           278978158 
##                   1                   1                   1                   1 
##           279010717           279059078            27922157           279570115 
##                   1                   1                   1                   1 
##          2795990775           279799224          2801816446            28021382 
##                   1                   1                   1                   1 
##           280690372            28084278            28091734          2810031216 
##                   1                   1                   1                   1 
##          2813231534            28136341           281497666          2816257440 
##                   1                   1                   1                   1 
##            28189649           281920387          2819224958          2820083725 
##                   1                   1                   1                   1 
##          2822534611          2827213519           282859818          2829461701 
##                   1                   1                   1                   1 
##          2832021860            28321312           283443287          2835179069 
##                   1                   1                   1                   1 
##          2837718739            28377308          2837863005          2838250020 
##                   1                   1                   1                   1 
##          2838345419          2838477729           284302137          2843104535 
##                   1                   1                   1                   1 
##          2843996463           284532654          2845814277           284600062 
##                   1                   1                   1                   1 
##          2846594897          2847739387            28480103          2848281329 
##                   1                   1                   1                   1 
##            28488888          2851066569          2851571079          2852399928 
##                   1                   1                   1                   1 
##            28555579          2857162258            28576262          2858116756 
##                   1                   1                   1                   1 
##          2858445324            28605294             2861771          2862714977 
##                   1                   1                   1                   1 
##           286285913           286342836          2864356557          2864840572 
##                   1                   1                   1                   1 
##          2865763619          2866165487          2868080531          2869055849 
##                   1                   1                   1                   1 
##          2870848881          2870931801          2871330699          2872455953 
##                   1                   1                   1                   1 
##           287246747          2872869652          2873737365           287394564 
##                   1                   1                   1                   1 
##           287582448          2876704776          2876786636          2877116790 
##                   1                   1                   1                   1 
##          2880936009          2882493896          2883699524           288417882 
##                   1                   1                   1                   1 
##            28852830           288777068            28879277          2888010194 
##                   1                   1                   1                   1 
##           288818172           288877479           288992814          2891927737 
##                   1                   1                   1                   1 
##          2892226326            28955345          2896213998          2898463396 
##                   1                   1                   1                   1 
##          2900431460          2900475613           290145392            29022571 
##                   1                   1                   1                   1 
##          2903394248          2904418889          2906764318           290748711 
##                   1                   1                   1                   1 
##          2907596811          2909376908            29100243          2911233762 
##                   1                   1                   1                   1 
##           291305578            29132732           291361298          2914277497 
##                   1                   1                   1                   1 
##            29147175            29174698          2919059838          2920002778 
##                   1                   1                   1                   1 
##          2920432352           292715926           292719488          2927859907 
##                   1                   1                   1                   1 
##           292910133           292953690           293042987           293063251 
##                   1                   1                   1                   1 
##          2930935453          2931999886           293259337            29328876 
##                   1                   1                   1                   1 
##           293305155           293404907          2934375069           293534892 
##                   1                   1                   1                   1 
##          2936363491            29378770          2941369732          2941908418 
##                   1                   1                   1                   1 
##           294257114           294479557           294641087            29464230 
##                   1                   1                   1                   1 
##          2951263410          2953500609          2953945432          2954252804 
##                   1                   1                   1                   1 
##          2954298279           295459753           295880891            29589914 
##                   1                   1                   1                   1 
##           296005306          2961127037          2961500847          2961880449 
##                   1                   1                   1                   1 
##           296285662           296324321          2963594130          2963644725 
##                   1                   1                   1                   1 
##           296409581           296601251          2968444252           296939072 
##                   1                   1                   1                   1 
##            29694955           297106603          2971797095          2971960402 
##                   1                   1                   1                   1 
##          2973615881            29746546          2976824781           297684891 
##                   1                   1                   1                   1 
##          2977636612          2982269822            29828177            29828364 
##                   1                   1                   1                   1 
##          2983401982          2983475539           298721581          2987491773 
##                   1                   1                   1                   1 
##          2987787598          2989313567          2989883024          2989958229 
##                   1                   1                   1                   1 
##           299154244           299303441          2994794890            29955899 
##                   1                   1                   1                   1 
##          2995696586            29958928            29982380          2998277273 
##                   1                   1                   1                   1 
##           299858424            29995359          2999804848            30002837 
##                   1                   1                   1                   1 
##          3003234454          3003376699           300428275            30055363 
##                   1                   1                   1                   1 
##          3012690457          3013456549          3016070184          3018120709 
##                   1                   1                   1                   1 
##            30226590          3023007756            30233748            30244108 
##                   1                   1                   1                   1 
##            30264308           302655167           302707511           302765078 
##                   1                   1                   1                   1 
##            30297423           302975594          3031071234          3032059523 
##                   1                   1                   1                   1 
##            30332694           303457569          3037473357            30374920 
##                   1                   1                   1                   1 
##           303979139           304034061          3040593411           304258613 
##                   1                   1                   1                   1 
##          3042923567             3043371          3043765295           304486904 
##                   1                   1                   1                   1 
##            30471527            30506859          3052963502          3055147607 
##                   1                   1                   1                   1 
##           305646149            30567521          3060174289           306200805 
##                   1                   1                   1                   1 
##          3063962601          3064266184           306507855          3065924818 
##                   1                   1                   1                   1 
##          3067027552          3067391840           306797026          3068106785 
##                   1                   1                   1                   1 
##          3068709523          3069871910          3070880908          3071509435 
##                   1                   1                   1                   1 
##          3071756492           307176947            30743976          3075778335 
##                   1                   1                   1                   1 
##          3080943858            30815695          3084365322            30882481 
##                   1                   1                   1                   1 
##           308963594           309119004          3091314307           309159046 
##                   1                   1                   1                   1 
##          3091759240           309305949           309325348          3094019162 
##                   1                   1                   1                   1 
##           309556475           309570860           310193009          3102057259 
##                   1                   1                   1                   1 
##           310393584          3104963032           310559036            31059230 
##                   1                   1                   1                   1 
##          3107989976          3109554274          3109698283           311061782 
##                   1                   1                   1                   1 
##           311276757            31131277          3113593248           312102273 
##                   1                   1                   1                   1 
##            31212216          3121411662           312149882            31251199 
##                   1                   1                   1                   1 
##           312544332            31268233            31270415            31275600 
##                   1                   1                   1                   1 
##           312950658            31299270           313020851            31310158 
##                   1                   1                   1                   1 
##            31313563            31326031            31336805           313536147 
##                   1                   1                   1                   1 
##          3136970222            31417682          3145686570          3145719317 
##                   1                   1                   1                   1 
##          3149293395          3153282534          3155046106           315543965 
##                   1                   1                   1                   1 
##          3157050373            31573982          3158295595           316042195 
##                   1                   1                   1                   1 
##           316204316          3164593715          3168138491           316878270 
##                   1                   1                   1                   1 
##          3171268471            31730751           317359018          3175287100 
##                   1                   1                   1                   1 
##            31762628           317710469           317806870          3178256871 
##                   1                   1                   1                   1 
##          3178439400          3178562929          3180827364          3183234703 
##                   1                   1                   1                   1 
##           318355178          3184319732          3186457117           318656894 
##                   1                   1                   1                   1 
##           318821825           319073774           319169420           319218210 
##                   1                   1                   1                   1 
##          3193758198          3194651468           319748124          3201152602 
##                   1                   1                   1                   1 
##          3201961533           320306282          3209930728           321070496 
##                   1                   1                   1                   1 
##           321283341           321367569           321436678           321582887 
##                   1                   1                   1                   1 
##          3216364852           321649323          3219528732          3219999344 
##                   1                   1                   1                   1 
##          3225626101           322667875            32279577          3229099943 
##                   1                   1                   1                   1 
##          3232042777           323279489           323501283          3238138245 
##                   1                   1                   1                   1 
##           323873427          3239029664          3240962355          3241006564 
##                   1                   1                   1                   1 
##            32422915          3242932675          3243843487          3245372110 
##                   1                   1                   1                   1 
##          3246958814           325067491          3251297965          3251355932 
##                   1                   1                   1                   1 
##           325141708           325386585            32547618          3254840790 
##                   1                   1                   1                   1 
##          3254898446          3255952291           325780908            32584871 
##                   1                   1                   1                   1 
##           325872043          3260570311          3261900399          3266967512 
##                   1                   1                   1                   1 
##           326720583          3267310741          3267474986           326997574 
##                   1                   1                   1                   1 
##          3270302156          3271119145            32711307            32744940 
##                   1                   1                   1                   1 
##           327503844          3276766916           327811537           327941509 
##                   1                   1                   1                   1 
##            32834080           328577933           328808798           328858549 
##                   1                   1                   1                   1 
##          3288994484          3291125484           329159493          3291844599 
##                   1                   1                   1                   1 
##           329188645           329319607          3293883079           329469393 
##                   1                   1                   1                   1 
##          3295465776          3298353607          3298637756           329882357 
##                   1                   1                   1                   1 
##           329907869          3301892949            33025513           330325730 
##                   1                   1                   1                   1 
##          3303296886           330544151          3305748660          3305847006 
##                   1                   1                   1                   1 
##           330606437          3306573848           330826792          3309371255 
##                   1                   1                   1                   1 
##          3310138153           331371205          3314196164          3316376038 
##                   1                   1                   1                   1 
##          3318450085           331845587          3318510966          3319066864 
##                   1                   1                   1                   1 
##            33220123           332366852          3324110314           332545073 
##                   1                   1                   1                   1 
##          3327740671          3327833511          3327974338          3328053011 
##                   1                   1                   1                   1 
##           333134880           333235146           333327976          3333281505 
##                   1                   1                   1                   1 
##           333402741          3335260579            33379379          3340484652 
##                   1                   1                   1                   1 
##           334099894          3341241538          3342914721           334405652 
##                   1                   1                   1                   1 
##          3344561068          3347916467           335397070            33540786 
##                   1                   1                   1                   1 
##           335427789           335523353           335669107           335701222 
##                   1                   1                   1                   1 
##          3359907553            33620070           336274798          3363875993 
##                   1                   1                   1                   1 
##          3365454845            33660132          3366355468           336752249 
##                   1                   1                   1                   1 
##            33676743           337730660          3377958299          3378440735 
##                   1                   1                   1                   1 
##            33801942            33805112          3380556461           338133839 
##                   1                   1                   1                   1 
##          3381890295          3382041796           338354891            33838472 
##                   1                   1                   1                   1 
##           338489286          3384990634            33860462           338660403 
##                   1                   1                   1                   1 
##          3387923524            33889427           339255191          3394640173 
##                   1                   1                   1                   1 
##            33946643           340325008           340344466           340399922 
##                   1                   1                   1                   1 
##           340491651            34053789          3406930692           340790187 
##                   1                   1                   1                   1 
##           340948377            34113439          3413217527          3415741480 
##                   1                   1                   1                   1 
##           341665630           341688379            34175105          3419420026 
##                   1                   1                   1                   1 
##          3421233099           342297848            34280715           342856124 
##                   1                   1                   1                   1 
##            34301670          3430224767          3431793597            34320023 
##                   1                   1                   1                   1 
##          3433226225            34332773          3433385130           343432526 
##                   1                   1                   1                   1 
##           343773480          3439317699          3440590035            34407824 
##                   1                   1                   1                   1 
##            34408232          3440889982           344449819          3444990859 
##                   1                   1                   1                   1 
##            34565572           346357490           346640207           347568180 
##                   1                   1                   1                   1 
##           347765016            34781480           348005724           348371112 
##                   1                   1                   1                   1 
##            34855593            34889448           348911248            34898889 
##                   1                   1                   1                   1 
##            34917790           349362896          3494338533            34997867 
##                   1                   1                   1                   1 
##            35009978           350183125            35053551            35072395 
##                   1                   1                   1                   1 
##           351130607           351131115           351203799           351462815 
##                   1                   1                   1                   1 
##           351496958            35176624            35205279           352190613 
##                   1                   1                   1                   1 
##          3524101401           352650591           352731312          3527760555 
##                   1                   1                   1                   1 
##           353746875            35402730           354232723            35428478 
##                   1                   1                   1                   1 
##          3544946661            35451766            35519288           355445994 
##                   1                   1                   1                   1 
##           355505170           355588147            35636289            35656357 
##                   1                   1                   1                   1 
##           356605038            35692915           357331066           357833234 
##                   1                   1                   1                   1 
##            35812001            35886595          3590785162            35950699 
##                   1                   1                   1                   1 
##           359590878           359598281           359745143            36012258 
##                   1                   1                   1                   1 
##           360210296           360500630            36065762           360878389 
##                   1                   1                   1                   1 
##            36098220            36105594            36109475            36121900 
##                   1                   1                   1                   1 
##            36161700           361777881          3624846559            36250787 
##                   1                   1                   1                   1 
##            36304374           363327474            36357308            36359791 
##                   1                   1                   1                   1 
##           364000479           364336025           364382778          3648412632 
##                   1                   1                   1                   1 
##          3649080380           365015105          3650612292            36537174 
##                   1                   1                   1                   1 
##           365615666          3656488216           366089337          3662876429 
##                   1                   1                   1                   1 
##           366593953           367446303          3675689357            36768711 
##                   1                   1                   1                   1 
##           367876828           369103219           369560707          3699604457 
##                   1                   1                   1                   1 
##           370014526            37012816           370296496            37030445 
##                   1                   1                   1                   1 
##           370431051           370551654           370827144            37085458 
##                   1                   1                   1                   1 
##          3708720682           371062289           371253879           371617164 
##                   1                   1                   1                   1 
##           371810750            37195472          3722137941           372404741 
##                   1                   1                   1                   1 
##           372430736           372576694           373002728           373439919 
##                   1                   1                   1                   1 
##           374330669            37451200           374628932           374711629 
##                   1                   1                   1                   1 
##            37512303           375268433           375678020           375686410 
##                   1                   1                   1                   1 
##            37597603           376088557           376480957           377635258 
##                   1                   1                   1                   1 
##           377822754           378090557           378187017           378545076 
##                   1                   1                   1                   1 
##            37888932            37915640           379200688            37928746 
##                   1                   1                   1                   1 
##            37938191            37964481           379893599           380344117 
##                   1                   1                   1                   1 
##          3804327617           380929787           381194926            38172071 
##                   1                   1                   1                   1 
##            38213679           382148018           382336810            38254569 
##                   1                   1                   1                   1 
##           382810104           382812408           383768581          3837736993 
##                   1                   1                   1                   1 
##            38395191            38400130           384028278           384507739 
##                   1                   1                   1                   1 
##            38456507           384794821           384903942          3850425012 
##                   1                   1                   1                   1 
##           385183572          3852099016            38531995           385531917 
##                   1                   1                   1                   1 
##           386071775           386204765           386277347            38630406 
##                   1                   1                   1                   1 
##           386476094           386588176            38678036          3871364427 
##                   1                   1                   1                   1 
##           387164450            38733200           387498274           388368711 
##                   1                   1                   1                   1 
##           388622530             3888351           389281501           389397082 
##                   1                   1                   1                   1 
##           390265730           390280842          3905055434           390937624 
##                   1                   1                   1                   1 
##          3911239745           391265962           391397106            39214789 
##                   1                   1                   1                   1 
##           392205222           392594553          3933116666           393544014 
##                   1                   1                   1                   1 
##           393548708           394169629           394256602           394549263 
##                   1                   1                   1                   1 
##           394859323          3951404777           395185464          3951967235 
##                   1                   1                   1                   1 
##           395213954           395354590            39552212          3957997120 
##                   1                   1                   1                   1 
##           396090421          3966228920           397537509           397668966 
##                   1                   1                   1                   1 
##           397912882            39856156           398752432          3991108098 
##                   1                   1                   1                   1 
##           399232334            39937251            39975891            40000004 
##                   1                   1                   1                   1 
##           400032999            40009753           400181671          4003544369 
##                   1                   1                   1                   1 
##            40081852           402482877            40269972            40275479 
##                   1                   1                   1                   1 
##            40279709          4029270083            40293769            40298894 
##                   1                   1                   1                   1 
##            40314833            40315914           403181776            40339126 
##                   1                   1                   1                   1 
##           404026590           404112499          4042583777          4046653696 
##                   1                   1                   1                   1 
##            40548374           405483969          4057045577          4057689794 
##                   1                   1                   1                   1 
##           405775404            40581159           406442515          4069863080 
##                   1                   1                   1                   1 
##          4070131925           407379007            40737915           407759517 
##                   1                   1                   1                   1 
##            40821317           408467423           409025989           409214738 
##                   1                   1                   1                   1 
##          4094744122           409505983            40954616           409570537 
##                   1                   1                   1                   1 
##            40961354            41013626            41039017           410937245 
##                   1                   1                   1                   1 
##            41098781            41163907            41172853            41194006 
##                   1                   1                   1                   1 
##           412332464            41243579            41272933          4129880279 
##                   1                   1                   1                   1 
##            41312513           413440921           414027725           414888065 
##                   1                   1                   1                   1 
##           414958858          4150093918            41565964           415836020 
##                   1                   1                   1                   1 
##          4158876021            41595148           416057727            41611947 
##                   1                   1                   1                   1 
##          4180433547          4180602754           418256456           418321454 
##                   1                   1                   1                   1 
##          4186708343           418848427           419559896           419851013 
##                   1                   1                   1                   1 
##           420448647            42085971           422023446           422663925 
##                   1                   1                   1                   1 
##           423041680           423237314          4236847030          4242147059 
##                   1                   1                   1                   1 
##           424531030            42501271           425843792           426088233 
##                   1                   1                   1                   1 
##           426242467            42660725           426690145          4267058183 
##                   1                   1                   1                   1 
##            42756539          4275676034           427825916            42816363 
##                   1                   1                   1                   1 
##          4282993872            42832524           428659031           428844272 
##                   1                   1                   1                   1 
##            42887162           430657044            43066992           430834036 
##                   1                   1                   1                   1 
##            43086506           431304891          4313247499           431486478 
##                   1                   1                   1                   1 
##          4315777152           431781032           432064754          4324283735 
##                   1                   1                   1                   1 
##          4325398279           432589910           432699294           434294857 
##                   1                   1                   1                   1 
##           434725908           435369338           435422713            43596804 
##                   1                   1                   1                   1 
##           436119902            43707887           437448777            43750097 
##                   1                   1                   1                   1 
##            43789332           438381840            43846520            43855487 
##                   1                   1                   1                   1 
##            43889656            43905579            43921687          4396933888 
##                   1                   1                   1                   1 
##          4401187587          4402477632            44150903           441560603 
##                   1                   1                   1                   1 
##            44163381          4422048505           442596321           442664736 
##                   1                   1                   1                   1 
##            44285908           443257096           443292379           443304640 
##                   1                   1                   1                   1 
##            44349228            44352975            44367489           443835893 
##                   1                   1                   1                   1 
##            44391700          4439414115            44405933           444437920 
##                   1                   1                   1                   1 
##           444584217          4448518402           444980926          4452838720 
##                   1                   1                   1                   1 
##            44573244           446398099          4464702015           446490190 
##                   1                   1                   1                   1 
##            44652433            44728980           448315371          4485341777 
##                   1                   1                   1                   1 
##            44876482           448812673            44908784            44934503 
##                   1                   1                   1                   1 
##            44935929           449375266          4497993159           449849732 
##                   1                   1                   1                   1 
##           450426533          4507647255           451823442          4520371468 
##                   1                   1                   1                   1 
##           452295304           452583374            45259327           452799163 
##                   1                   1                   1                   1 
##            45288233            45398184           454071434            45413198 
##                   1                   1                   1                   1 
##           454138567            45459031            45518891            45539868 
##                   1                   1                   1                   1 
##            45551243           455778782            45578720           457206998 
##                   1                   1                   1                   1 
##           457920729          4579604717           458107989           458594357 
##                   1                   1                   1                   1 
##          4592286802           459359865          4594570514           459633448 
##                   1                   1                   1                   1 
##            45967689           460285317            46045975          4607024296 
##                   1                   1                   1                   1 
##            46096491            46105891           461225981           461554757 
##                   1                   1                   1                   1 
##           461634245             4618261            46188029           462027865 
##                   1                   1                   1                   1 
##           462265721          4622667867           462459744            46274679 
##                   1                   1                   1                   1 
##          4628522113           463114746          4632734963          4637470482 
##                   1                   1                   1                   1 
##           463838518          4644292634          4647877692            46483916 
##                   1                   1                   1                   1 
##            46497053           465198669           465760414           465888475 
##                   1                   1                   1                   1 
##            46671452           467466542           468214266          4685498022 
##                   1                   1                   1                   1 
##          4685565913           469356005          4694027246           469569460 
##                   1                   1                   1                   1 
##            46983316           469919231           470068376            47083884 
##                   1                   1                   1                   1 
##            47086949            47127897           472122299           472201804 
##                   1                   1                   1                   1 
##          4726921700           472720903           472835083          4728562041 
##                   1                   1                   1                   1 
##           473496286          4734965658           473605659            47376460 
##                   1                   1                   1                   1 
##          4743525023           474871087           475260383          4752689112 
##                   1                   1                   1                   1 
##           475308891            47542551           475693475            47572133 
##                   1                   1                   1                   1 
##            47653624          4767528991          4768712712          4770303330 
##                   1                   1                   1                   1 
##           477571482            47773590            47791337          4780378096 
##                   1                   1                   1                   1 
##            47834003           478945877            47895596           479297376 
##                   1                   1                   1                   1 
##           479648549            47968796            47981900           479872233 
##                   1                   1                   1                   1 
##           480233120          4809934462          4811145081           481422442 
##                   1                   1                   1                   1 
##           481542672           481665779          4819616115           482269226 
##                   1                   1                   1                   1 
##           482308837           482704360          4828921853            48325019 
##                   1                   1                   1                   1 
##            48352311            48407622           484171825          4842325334 
##                   1                   1                   1                   1 
##            48441949           484570953            48479381           484887729 
##                   1                   1                   1                   1 
##          4850124523            48510958            48568247          4858941530 
##                   1                   1                   1                   1 
##          4860246311          4861145409          4864851261            48674839 
##                   1                   1                   1                   1 
##          4871065809          4871219613          4876601765          4881899464 
##                   1                   1                   1                   1 
##           488298894            48839997          4886454527           488948166 
##                   1                   1                   1                   1 
##           489057662          4891815495          4895614001           489589385 
##                   1                   1                   1                   1 
##          4896272800            48968299          4899060791          4899455363 
##                   1                   1                   1                   1 
##           490179072            49031370           490460388           490920590 
##                   1                   1                   1                   1 
##          4916875623          4917960324           491947303          4919597969 
##                   1                   1                   1                   1 
##          4920998115            49226317            49228669          4925751509 
##                   1                   1                   1                   1 
##            49258784          4926928720           492736486          4928393141 
##                   1                   1                   1                   1 
##          4928513381           492907274           492958448           495149375 
##                   1                   1                   1                   1 
##           495274213            49595396           496773183            49694445 
##                   1                   1                   1                   1 
##           497305362            49757330           497665754            49766852 
##                   1                   1                   1                   1 
##           497995985           498224762           499136665           499838597 
##                   1                   1                   1                   1 
##           501060027           501295408           501372903           502018096 
##                   1                   1                   1                   1 
##            50238253           502421906            50243741            50279781 
##                   1                   1                   1                   1 
##            50371199           504828602            50534490             5054721 
##                   1                   1                   1                   1 
##            50636347            50658069            50684507           507871284 
##                   1                   1                   1                   1 
##            50910649            51002583            51050447            51116671 
##                   1                   1                   1                   1 
##            51273193            51422426            51452048           514796996 
##                   1                   1                   1                   1 
##            51495944           515091334            51509876           515339366 
##                   1                   1                   1                   1 
##            51561840           516827568           518561366           518682128 
##                   1                   1                   1                   1 
##            51879262            51897392           520308399           520445177 
##                   1                   1                   1                   1 
##            52052800           520692064            52072055           521332575 
##                   1                   1                   1                   1 
##           522106646            52282776            52305347           523590362 
##                   1                   1                   1                   1 
##            52428360            52436759            52498049            52546360 
##                   1                   1                   1                   1 
##            52571677           526066352            52615210           527545839 
##                   1                   1                   1                   1 
##           527665594           528065896           530796538            53095822 
##                   1                   1                   1                   1 
##           531304042            53264509            53313796           534036081 
##                   1                   1                   1                   1 
##           534528045           534720794           535036691           535351290 
##                   1                   1                   1                   1 
##           535635363           536631398           536647390            53749779 
##                   1                   1                   1                   1 
##           538369738           538398947            53904097           539511571 
##                   1                   1                   1                   1 
##           540253649            54027969           540543234           542283680 
##                   1                   1                   1                   1 
##           542400979           542557834            54259162           542834197 
##                   1                   1                   1                   1 
##            54425068           544366989            54474303           545371004 
##                   1                   1                   1                   1 
##           545763490            54608984           546375667            54683181 
##                   1                   1                   1                   1 
##            54687156            54846560           549076236            54964459 
##                   1                   1                   1                   1 
##           550374435            55049762            55073092            55089660 
##                   1                   1                   1                   1 
##           551020293            55135988           551787952            55186601 
##                   1                   1                   1                   1 
##           551999236            55201783           552268110            55248333 
##                   1                   1                   1                   1 
##           552753132            55288996           553292384            55419844 
##                   1                   1                   1                   1 
##            55484650            55494142            55526242           555437217 
##                   1                   1                   1                   1 
##           555494466           555940321           556135008           556147828 
##                   1                   1                   1                   1 
##            55626399            55629076             5571722           558758387 
##                   1                   1                   1                   1 
##            55880135            55963152           560637163           561171816 
##                   1                   1                   1                   1 
##            56124688           561742581             5618162            56189496 
##                   1                   1                   1                   1 
##            56266768            56311749            56334595            56385868 
##                   1                   1                   1                   1 
##           563863798            56404068           564133801           564325710 
##                   1                   1                   1                   1 
##            56470183           565159518           565495553            56566329 
##                   1                   1                   1                   1 
##           566876877            56730137           567946814           568002952 
##                   1                   1                   1                   1 
##           568539051           569225542            56937357           569409452 
##                   1                   1                   1                   1 
##             5695032           569873665            57059492           571642322 
##                   1                   1                   1                   1 
##           571880298           572366128           573084673           574595794 
##                   1                   1                   1                   1 
##           574796987           574807922            57567446            57597564 
##                   1                   1                   1                   1 
##            57743433           577742907           577792575           578525346 
##                   1                   1                   1                   1 
##           578745372           580211436            58064184           581211911 
##                   1                   1                   1                   1 
##            58198180           582230554           582306752           582574776 
##                   1                   1                   1                   1 
##            58366671           584772257           584830319           585857710 
##                   1                   1                   1                   1 
##           587832589            58802260           588645499           588653822 
##                   1                   1                   1                   1 
##            58882431            58916674            58945459           589614722 
##                   1                   1                   1                   1 
##           589891248           590064664            59049281             5917472 
##                   1                   1                   1                   1 
##           592489963            59292344           593094055           594244296 
##                   1                   1                   1                   1 
##            59491835           596800229           597028355            59755457 
##                   1                   1                   1                   1 
##           597832336           597971684            59803771            59811707 
##                   1                   1                   1                   1 
##            59849989           600110872           602536450           603074256 
##                   1                   1                   1                   1 
##            60322048           604356432           605806995           605924651 
##                   1                   1                   1                   1 
##           606663661            60712163            60825835            60841112 
##                   1                   1                   1                   1 
##            60857656            61019126            61069955           610721875 
##                   1                   1                   1                   1 
##           611593682            61206610           612320569            61273660 
##                   1                   1                   1                   1 
##           613714272            61432754           615459269            61546809 
##                   1                   1                   1                   1 
##           615554233            61592785            61774098           617943922 
##                   1                   1                   1                   1 
##           618121201           618710011           618855985           619705965 
##                   1                   1                   1                   1 
##           619936583           620925077             6216572           621976657 
##                   1                   1                   1                   1 
##           622015869            62218231            62248042           623258372 
##                   1                   1                   1                   1 
##           623384371           623557211           624656729           624675301 
##                   1                   1                   1                   1 
##           624976940            62558658           625675618            62578731 
##                   1                   1                   1                   1 
##            62620861            62763654           627708753            62809462 
##                   1                   1                   1                   1 
##            62841945            62842567           628621966           629194371 
##                   1                   1                   1                   1 
##           630571912            63166017           632344484           633485882 
##                   1                   1                   1                   1 
##            63362429            63383628           634264954           634380263 
##                   1                   1                   1                   1 
##           634704431           634952572            63511635            63514682 
##                   1                   1                   1                   1 
##           635427539           637165830           637220899            63807317 
##                   1                   1                   1                   1 
##            64742015            64750841            64793964            64823822 
##                   1                   1                   1                   1 
##            64827786            64989443            65109093            65437320 
##                   1                   1                   1                   1 
##            65584054            65594489            65631573            65637508 
##                   1                   1                   1                   1 
##            65709091            65826899             6583942            65868205 
##                   1                   1                   1                   1 
##            65947064            65968759            66031088            66244710 
##                   1                   1                   1                   1 
##            66457303            66525351            66561298            66659124 
##                   1                   1                   1                   1 
##            66740193            67044070            67112070            67316585 
##                   1                   1                   1                   1 
##             6735142            67375442            67641148            67667675 
##                   1                   1                   1                   1 
##            68061687            68130426            68412451            68545047 
##                   1                   1                   1                   1 
##            68843228            68883683            68912189            68932547 
##                   1                   1                   1                   1 
##            69058391            69135106            69140326            69271273 
##                   1                   1                   1                   1 
##            69315680            69465913  695443086357303301            69793820 
##                   1                   1                   1                   1 
##            69820216            69898325            69957752             7009472 
##                   1                   1                   1                   1 
##           701166589  701596920628772866  701618344391094272  701818008583413760 
##                   1                   1                   1                   1 
##           702038681  702367729588768768  702595818126229504  703162128669102080 
##                   1                   1                   1                   1 
##  703391815777570818           703420117  703488181455290368  704340397829591040 
##                   1                   1                   1                   1 
##            70436289  704620375439597571           705122902            70529694 
##                   1                   1                   1                   1 
##  705330458842701824           705541443  705609627568893953           705731094 
##                   1                   1                   1                   1 
##  707774148072882176            70797655  708452724652830721  708926219484569600 
##                   1                   1                   1                   1 
##  708951546608877568  709153130714243072            70961675  710064166468341760 
##                   1                   1                   1                   1 
##  710509455381635072  710609605395673088  710982933880774656            71126292 
##                   1                   1                   1                   1 
##  712199546638508032  713025381616340992  713147129594707968  713355506761469952 
##                   1                   1                   1                   1 
##           713362236             7138222           713935231  714592222994259968 
##                   1                   1                   1                   1 
##  714893003735732224            71506100  715533519464894464  715962993851424768 
##                   1                   1                   1                   1 
##  715983592107552768  717026210224685057            71703351           717258355 
##                   1                   1                   1                   1 
##             7177992  717911401499471873  718102690321010688           718332223 
##                   1                   1                   1                   1 
##           718533133           718567698  719283973227155457  719634658829459457 
##                   1                   1                   1                   1 
##            72013267           720210428           720259309  720499942884777985 
##                   1                   1                   1                   1 
##  720948250711343105             7210512  721152797903876098            72123099 
##                   1                   1                   1                   1 
##            72130786  721729490603216896  721917346005131265  722204598262345728 
##                   1                   1                   1                   1 
##            72224733           722907438  723200908855775232  725371772481077248 
##                   1                   1                   1                   1 
##            72577990            72628479  726561140805873665  727316106843574272 
##                   1                   1                   1                   1 
##            72732638  727389491170828288            72743396  727465726810968064 
##                   1                   1                   1                   1 
##  727561733238312960  728030036524032000            72809288  728159985742454784 
##                   1                   1                   1                   1 
##  728259667906809858  728499529624879104  728616171315073025           729112082 
##                   1                   1                   1                   1 
##  729217349174308864  729227853687095300  729807046229565442  730411322999853056 
##                   1                   1                   1                   1 
##  730440421768310784           730585003  730800147198791680           730899792 
##                   1                   1                   1                   1 
##  731418950907641856            73184004  731880554338078720  732863432018497536 
##                   1                   1                   1                   1 
##  733003963994415108            73306525  733380624904421376            73345563 
##                   1                   1                   1                   1 
##           734184572  734596314537811968  734799063510601729           734890242 
##                   1                   1                   1                   1 
##  734973553477570560  735122887850512384           736155733  736270568605900801 
##                   1                   1                   1                   1 
##  736952012999385088  737142202481016832  737358310303662081  737651626803105792 
##                   1                   1                   1                   1 
##            73796916  738131195242778629            73825605             7383122 
##                   1                   1                   1                   1 
##  738449548184457216  738767160395321345  738832163634843649  738894827413086208 
##                   1                   1                   1                   1 
##  739485047217094656  739673291569270785           740440592  740597455385939968 
##                   1                   1                   1                   1 
##            74082296            74123918  741259764492042240  741302428063150080 
##                   1                   1                   1                   1 
##  741766199512551425  741823270899482624  742098188891508736  742166854752342016 
##                   1                   1                   1                   1 
##           742211562           742434763           742613408  742724669028114432 
##                   1                   1                   1                   1 
##  743286898173435904            74339177           743631432            74369402 
##                   1                   1                   1                   1 
##  743723556840693760              743913            74444935  744696897902776320 
##                   1                   1                   1                   1 
##            74479566  745934301989081088           746205583            74699437 
##                   1                   1                   1                   1 
##  747116483227025408  747479817461895168            74831215  748954390489403393 
##                   1                   1                   1                   1 
##            74911854  749728074887987204  749977594301480966           750104527 
##                   1                   1                   1                   1 
##           750360169            75054755  750786192262635520  751054430770958336 
##                   1                   1                   1                   1 
##            75137937  751485404411551744           751589084  751885664283602944 
##                   1                   1                   1                   1 
##           752001618  752214047744004098  752444933596852224            75256311 
##                   1                   1                   1                   1 
##  752572970770501632  752590890061803520  753256614858067968  753271146607415296 
##                   1                   1                   1                   1 
##  754660245130113024            75475601  754922078399266816  756584190112591872 
##                   1                   1                   1                   1 
##  757042689380458496  757407962990276609           757712983  757995682531717120 
##                   1                   1                   1                   1 
##  758682018829983745             7587032           759319046            75934946 
##                   1                   1                   1                   1 
##            75994242           760026259  760118142928433152  760371892914049024 
##                   1                   1                   1                   1 
##            76056489  760784184982011904  760841526977171456  760863598243479553 
##                   1                   1                   1                   1 
##  761096097020248065  761584429684752387           762134390  762894551375765505 
##                   1                   1                   1                   1 
##  763557177923481600  763797399227686912  763895777068331009  764829119175622656 
##                   1                   1                   1                   1 
##  765045737646284800  765316349572763648  765354316567805952  765874611493990400 
##                   1                   1                   1                   1 
##  765927246100135936  766009098097856512  766017503072059392  766183790335102976 
##                   1                   1                   1                   1 
##  766529864367157248             7665642            76714468            76757990 
##                   1                   1                   1                   1 
##           767793390  768659225866153984  769080866467446784             7700222 
##                   1                   1                   1                   1 
##  770068612308692994            77026274             7703052  771045741527728129 
##                   1                   1                   1                   1 
##  771293699301109760  771325079871336448           771675948            77182888 
##                   1                   1                   1                   1 
##           771877364  772178581929590784           773750426  773775838424731648 
##                   1                   1                   1                   1 
##  773866588793663488  773954934345719809           774153704  774398933162426368 
##                   1                   1                   1                   1 
##            77477794            77482996  775160871316295680            77520998 
##                   1                   1                   1                   1 
##           775589882  775646952495210496           777036312  777157181816705024 
##                   1                   1                   1                   1 
##  777927231658004480  778036376138870784             7782542           778590134 
##                   1                   1                   1                   1 
##  779402883003518984           779913055  780072468983779328           780120572 
##                   1                   1                   1                   1 
##  780609440831549440  781756436284145664  782339819615629312           782413784 
##                   1                   1                   1                   1 
##            78336585  783410961290002433            78352894  783715057901252612 
##                   1                   1                   1                   1 
##           784179654  784240769376878592  784357358927577088  784680208993361921 
##                   1                   1                   1                   1 
##  785226688330403840            78596501  786190574504202242  786618972338696192 
##                   1                   1                   1                   1 
##  786629630732013568  787693612314361856  788133803369771008           788134814 
##                   1                   1                   1                   1 
##           788219550           788246138  788751900036431873            78890372 
##                   1                   1                   1                   1 
##  789518250065350656             7901142  790428427807551488  791569205380444161 
##                   1                   1                   1                   1 
##           791617578  791695623216967681  791844256574951424            79242170 
##                   1                   1                   1                   1 
##  793658161047695360           793944151  794654107231539203  795430529386553345 
##                   1                   1                   1                   1 
##  795664301910528000  795973908096806912  796383686639788033  796741046357004288 
##                   1                   1                   1                   1 
##  797030049623003137  797391569355685888  797543985585803264           797649150 
##                   1                   1                   1                   1 
##            79807769  798140128552026112            79869567  799389058245988352 
##                   1                   1                   1                   1 
##           799426280  799744031127441410            79986022  800088951205687296 
##                   1                   1                   1                   1 
##  800757084094533632  800793414585323520           800816377  800962332146810880 
##                   1                   1                   1                   1 
##  802954064048902148  803215340381630464            80329508  803648695660986369 
##                   1                   1                   1                   1 
##  804015436979277824  804101936345731072           804177050  804396339463417856 
##                   1                   1                   1                   1 
##  804490105503088640  804785625400418304  805185034797846529              806122 
##                   1                   1                   1                   1 
##  806148196909121536  806305891863687168  806341413483020288            80693756 
##                   1                   1                   1                   1 
##           808172400             8083542  808555197416906752            80900937 
##                   1                   1                   1                   1 
##            80909755  809240279861645312           809679248  809689076253265921 
##                   1                   1                   1                   1 
##  810476755362414593  810580991651749888  810691321321099268            81128222 
##                   1                   1                   1                   1 
##  811608886063091712            81181888            81311670  813298643377811456 
##                   1                   1                   1                   1 
##  814012868932734976              814233            81459753  815500189620465664 
##                   1                   1                   1                   1 
##  816723993625559041  816890574833733633  817386884045438976  817415480856248322 
##                   1                   1                   1                   1 
##  817538826495258625  818142705075167232  818190053457457153           818224573 
##                   1                   1                   1                   1 
##  818581685788876801  819198396980457473  819223420055523329            81942247 
##                   1                   1                   1                   1 
##            81950435  820066800369041409  820469374620307457           820523155 
##                   1                   1                   1                   1 
##  820627325314334720  820702582737879043           820767607  820958703432122368 
##                   1                   1                   1                   1 
##  821016767203901440  821157199984504832            82117483  821265252507652096 
##                   1                   1                   1                   1 
##  821748309366669312  821886368120967168  822215673812119553  822361805045559296 
##                   1                   1                   1                   1 
##  822469638516772864           822544189  822574603167993856            82279998 
##                   1                   1                   1                   1 
##  822862852931330051  823158574041985024  823205895681282048  823272803566813184 
##                   1                   1                   1                   1 
##  823651070870167552  823812344392384512  823987589623455745             8241232 
##                   1                   1                   1                   1 
##  824458268420476933  824513169003515906  824780295203336192  824994291965628418 
##                   1                   1                   1                   1 
##  825084934113079296  825134298206400514  825323561149747201  825411446687281154 
##                   1                   1                   1                   1 
##  825505313885413376  825743417728708612  826129656856207360  826155755564732416 
##                   1                   1                   1                   1 
##  826185096189210625  826375817441718272  826469314538663936  826852088114270209 
##                   1                   1                   1                   1 
##  826877162078760960  827182422303334400  827247504215375874  827936164841562112 
##                   1                   1                   1                   1 
##  828041870504767488  828449816162111488  828526380598042624  828582307355295746 
##                   1                   1                   1                   1 
##  828673404421156865           829219016  829685651071180802  829784906150600704 
##                   1                   1                   1                   1 
##  829864120413462528  830140478758780928  830970317988298752  831281726924087297 
##                   1                   1                   1                   1 
##           831930390            83196674  831982169253937152  831999598466105344 
##                   1                   1                   1                   1 
##           832170559  832308837063520257  832487779019788288  833444611796369411 
##                   1                   1                   1                   1 
##           833482238            83369852           833820320           833858262 
##                   1                   1                   1                   1 
##  833925850701590529  833955263803686912  833981757670166528  834187564366045186 
##                   1                   1                   1                   1 
##  834190507731415040  834726437148057601  834806894724124672            83483205 
##                   1                   1                   1                   1 
##  835177219622326272  835262392627933184            83656373           836651137 
##                   1                   1                   1                   1 
##            83720730           837703676  837930591702102016  838246501402882048 
##                   1                   1                   1                   1 
##           838290648  838484669981163520            83859834            83860254 
##                   1                   1                   1                   1 
##  839108627436716033  839609999936520193            83962564  839720956000075776 
##                   1                   1                   1                   1 
##  840034046822473729           840048690           840294985  840830550210404352 
##                   1                   1                   1                   1 
##           840979597           841114604  841725785169891332             8417802 
##                   1                   1                   1                   1 
##  842235649298112513  842729726162554885  842791717501898754           843202129 
##                   1                   1                   1                   1 
##  843361189388197890             8436472  843844722632417281            84416175 
##                   1                   1                   1                   1 
##  845150211248861185  845418693689405441           845474490            84555732 
##                   1                   1                   1                   1 
##           845793992            84637700  846715584544985089           846910993 
##                   1                   1                   1                   1 
##  847392896231686144            84739547  847645126646157312            84795529 
##                   1                   1                   1                   1 
##  848075438970859520  849067031441879042  849289425418891266            85002295 
##                   1                   1                   1                   1 
##  850097885261709312           850239428            85040636  850583529947791361 
##                   1                   1                   1                   1 
##  851035633665626112           851106744  851122226673987584           851436420 
##                   1                   1                   1                   1 
##  851723701095612417  851848462576562180           852096720           852189290 
##                   1                   1                   1                   1 
##           852510109  853636526667964416  853654222323073024  853790344143654914 
##                   1                   1                   1                   1 
##  854045099394838528  854120834696433664  854857120457641984            85560148 
##                   1                   1                   1                   1 
##  855655287398727680           855841070            85601740  856037642575597568 
##                   1                   1                   1                   1 
##  856226516199514114  856298182468407297           856364922  856377349952098305 
##                   1                   1                   1                   1 
##  856471580519673856           856850450  857069576957435906  857255207763234817 
##                   1                   1                   1                   1 
##  857514020877737985  858161820866977792            85862291           858947179 
##                   1                   1                   1                   1 
##            85909836  859729849249693701  860404394705268736  860412132109697025 
##                   1                   1                   1                   1 
##  860494626339344385  860536322968219648  860675555955539972  860917201708232706 
##                   1                   1                   1                   1 
##  861084079600672774           861491130  862190872829362177  862506070589100032 
##                   1                   1                   1                   1 
##  863231793138352128           863666270            86401623  864137663686868992 
##                   1                   1                   1                   1 
##  864631179412213760  864682641030750208  865454384381009924            86590910 
##                   1                   1                   1                   1 
##  865941026980147200  866554543596867584           866740496  866743917819113472 
##                   1                   1                   1                   1 
##  866767664156483584            86764977  867778616079384578  867937150217715713 
##                   1                   1                   1                   1 
##  868019668132347905           868124522  868613256075673602  868858304725786624 
##                   1                   1                   1                   1 
##  869240496631173121            86982395           870554484  871574222966898688 
##                   1                   1                   1                   1 
##           872419772  872467148026908673  873105540896899073             8731312 
##                   1                   1                   1                   1 
##  873190778910253056            87385342           874160094  874242641046712321 
##                   1                   1                   1                   1 
##           875227669  875761655455641602  875923301549387778             8759292 
##                   1                   1                   1                   1 
##  876146616255860737  876540130538008576  876770484691419137  876770842339938304 
##                   1                   1                   1                   1 
##  877558923871617024  877621549108473856            87822212  878516260014784512 
##                   1                   1                   1                   1 
##  878572636846075904  878628289501442049           878700938  878820871971889153 
##                   1                   1                   1                   1 
##  878906574319779842           879023041            87929320  879362788405149697 
##                   1                   1                   1                   1 
##  879765198961246209            88015743            88025627           880983422 
##                   1                   1                   1                   1 
##            88154871  881702666249707520  882958562296819714  883641278465847296 
##                   1                   1                   1                   1 
##  884435361421721605  885256445809348612  885680553592332288  885763745271521280 
##                   1                   1                   1                   1 
##            88578250  886296705490190336  886319291489894400            88715761 
##                   1                   1                   1                   1 
##           887248374  887330821580914688           887493054            88751152 
##                   1                   1                   1                   1 
##           887711797            88787398            88904418  889188163620569091 
##                   1                   1                   1                   1 
##           889349226  889896058578456576           889926660  890297769096876034 
##                   1                   1                   1                   1 
##  891312994885541888  891419221716066304  892132134844071937  892149131464118273 
##                   1                   1                   1                   1 
##  892597906791743489  893097096622084096  893098663530053636  893124821201985537 
##                   1                   1                   1                   1 
##  893299346367692800  894382460561006592            89467272           894807590 
##                   1                   1                   1                   1 
##  895028152371695622  895245235210539010  895331622572183552  895388295496073221 
##                   1                   1                   1                   1 
##  895460083236126721  895966977407074304  896262486604750850  896423577523675137 
##                   1                   1                   1                   1 
##            89754038  897819053741543424  897944126536200192  898195500150788096 
##                   1                   1                   1                   1 
##  898765061958717441           898767493  899761782163746816  900737663233384448 
##                   1                   1                   1                   1 
##  900995846673649665  901158235968856064  901479484205006848            90163861 
##                   1                   1                   1                   1 
##  902151402964738051  902217210986471425  902641396624084993  902766566244220929 
##                   1                   1                   1                   1 
##  902964776493498369  903270351064285184  903335676002926592  903617884206776320 
##                   1                   1                   1                   1 
##  903997129424859136           904255076  904785170456293376  904802908520177664 
##                   1                   1                   1                   1 
##            90515678  905406379640414208  905585546805764096  906105384854630400 
##                   1                   1                   1                   1 
##            90617546  906396404406419456            90711842           907196215 
##                   1                   1                   1                   1 
##  907559431184846848            90760905  908035018550861825  908576901697900544 
##                   1                   1                   1                   1 
##  908844863407427585  909089967967793155           909334512            90965557 
##                   1                   1                   1                   1 
##  909794221267341312  910323745188802561  910378184662769664  911259871785422848 
##                   1                   1                   1                   1 
##           912284778              913041           913452476           913665234 
##                   1                   1                   1                   1 
##  913726320466694144            91404995  914065945940910081  914469791431147520 
##                   1                   1                   1                   1 
##  914760457365442560  915163384894672897  915411606351302656  915466525582258176 
##                   1                   1                   1                   1 
##           915496224  915814768325414917             9166982  917151622735826944 
##                   1                   1                   1                   1 
##  917275729347305472  917551134390317057  917756553192787971           917901427 
##                   1                   1                   1                   1 
##            91824729             9183902  918541886377390080  918780298820808704 
##                   1                   1                   1                   1 
##           918800876  919002031775510528  919553563734499328  919893215662051329 
##                   1                   1                   1                   1 
##  919951462985293824  920249159604719617  920370467382419456  920382655346065408 
##                   1                   1                   1                   1 
##  920432462659854337  920710946955448320  921730916464111617           921866330 
##                   1                   1                   1                   1 
##            92197478  922238200554323969            92251482  922873302971904000 
##                   1                   1                   1                   1 
##  923139480927854593  924229572039548928  924372814508957696  924410456889901056 
##                   1                   1                   1                   1 
##  924757323305902082  925132885853696005  925373571286863873            92567328 
##                   1                   1                   1                   1 
##  925777903484149760            92584816            92653124            92653916 
##                   1                   1                   1                   1 
##  927200768096120832            92739201            92784147           928280101 
##                   1                   1                   1                   1 
##  928298616720166912  928455288692154368  928697008801579008           928896739 
##                   1                   1                   1                   1 
##  929421000403451906  929530326543732736           929686255  929768656829140992 
##                   1                   1                   1                   1 
##  930546152830840832            93145450            93175908            93187905 
##                   1                   1                   1                   1 
##  932582436390633472            93288759  933168114451099653  933187977769115648 
##                   1                   1                   1                   1 
##           933556512  933903263925260288            93419198            93440906 
##                   1                   1                   1                   1 
##  934887919927660545            93505049  935407244711211008  936020578275872769 
##                   1                   1                   1                   1 
##  936190621588557824  936331951694376960  936352804695707648            93639531 
##                   1                   1                   1                   1 
##            93681269  936844184639520768           936973418  937186564580560896 
##                   1                   1                   1                   1 
##           937434584           937623794           937629272  937680980537741313 
##                   1                   1                   1                   1 
##           937704163  937738510748053504            93781504            93813312 
##                   1                   1                   1                   1 
##           938176135           938687642  939020597614460929              939761 
##                   1                   1                   1                   1 
##  940402872851845120            94058067  941338902849380352  941427870756372482 
##                   1                   1                   1                   1 
##  941704783278288896  943018733068435456            94384796  943968730723311616 
##                   1                   1                   1                   1 
##  944047168188432386  944423886854144000  946526227766087681           946601623 
##                   1                   1                   1                   1 
##  946642154654453760  946761334984728581  946808606585950208           946849627 
##                   1                   1                   1                   1 
##  946873717874978817  946924990020009985  946974201981931522  947346016893882368 
##                   1                   1                   1                   1 
##            94761188           948582787  948795442661339143  948994330122792960 
##                   1                   1                   1                   1 
##  949155613283516416  949590068943048704           949957440           950468988 
##                   1                   1                   1                   1 
##  950826700086050816  950870120565493761           951154548           951430134 
##                   1                   1                   1                   1 
##  951892305098788864             9520112  953188399548129280  953700961947668480 
##                   1                   1                   1                   1 
##  953985293430001664             9543092           954329887           954618535 
##                   1                   1                   1                   1 
##  954930063698550785  956265541370568704           956328698            95637047 
##                   1                   1                   1                   1 
##  956523931862781955  956557230635024384           956648575  956906339388846085 
##                   1                   1                   1                   1 
##  956999651869253632  957231762035433472           958010360           958309004 
##                   1                   1                   1                   1 
##  958491581572665344  958633020361080832           958815049  958847561233772551 
##                   1                   1                   1                   1 
##  959127129341472768  959187289774714880            95980592  959834882812891136 
##                   1                   1                   1                   1 
##            96011873             9601512  960226339629535232            96026129 
##                   1                   1                   1                   1 
##  960331970713608192  960899729516384257  961006190720249858            96149868 
##                   1                   1                   1                   1 
##  961638138165817345  961721367854018563  961934746438848512  962153417400602624 
##                   1                   1                   1                   1 
##             9627102  962826389282893824  963056689955123202  963495628545327104 
##                   1                   1                   1                   1 
##  964052994475151360  964228602098257921  964281598526066689  965284014268575744 
##                   1                   1                   1                   1 
##  965392727461564417  965602965586370560            96574384  965925349979811840 
##                   1                   1                   1                   1 
##  965976498443313152  966507449955094528  966740329041772544  967084459966148608 
##                   1                   1                   1                   1 
##  968077607655870464  968472594524639232  968507079823523841            96857244 
##                   1                   1                   1                   1 
##            96888217            96894306  969188033349259264           969375157 
##                   1                   1                   1                   1 
##           969431090  969816332848963584  970115109681967104  970140879393579009 
##                   1                   1                   1                   1 
##  970432569627070465  970708045742387200  970716252179136514  970855556406792193 
##                   1                   1                   1                   1 
##            97135016            97191869  971993737311080448  972164019799945217 
##                   1                   1                   1                   1 
##  972217420709548032  972564937519149056            97370130  973937157214674945 
##                   1                   1                   1                   1 
##  974321995331510273            97479037            97479619  974889080193519617 
##                   1                   1                   1                   1 
##  974995792380473345  976345683681619968  976866663747465216  977185617913303041 
##                   1                   1                   1                   1 
##  978377662971432960  978421741440573440  978710606760108033  979036701422227457 
##                   1                   1                   1                   1 
##           979110254  979389638422028288  979664132935839744  979690486872051712 
##                   1                   1                   1                   1 
##  979776202800902144  980026120694325248            98008000  980847169153335296 
##                   1                   1                   1                   1 
##  981624095610691584  981854105181147136  981858078336446464  981871593851965441 
##                   1                   1                   1                   1 
##           983527219  983528548496388099            98430731  984538659234828289 
##                   1                   1                   1                   1 
##  984587587531632642  985200075466035200            98546373  985774399792988160 
##                   1                   1                   1                   1 
##  985849749319356417           985931431  985938313784807425            98655881 
##                   1                   1                   1                   1 
##  986637310367322112  987063638115614720  987073620735352832  987825082822283265 
##                   1                   1                   1                   1 
##  988145698561552391            98844496           988489190  988794545113522176 
##                   1                   1                   1                   1 
##           988990854  988998226652037121  989530120728858624           990056731 
##                   1                   1                   1                   1 
##  990979427315191808  991253633571303425  991298277340524545  991864097607176193 
##                   1                   1                   1                   1 
##  992026123809837056  992056970248183808  992501142989950976  993101890291298304 
##                   1                   1                   1                   1 
##           993154328  993243230677463041  993407241821794304  994322943126601728 
##                   1                   1                   1                   1 
##  994400454741250048  994436705514999808  994872414851956736  995499280067514370 
##                   1                   1                   1                   1 
##           995502204           995764722             9959012           996365438 
##                   1                   1                   1                   1 
##  996988416322555904             9970972  997485108973129731  997569506250813445 
##                   1                   1                   1                   1 
##  999112928291934208  999371328246419456  999395862328602626           999954782 
##                   1                   1                   1                   1

“covid19_tw_sample.RData” 로드가 되어있고, 그 데이터 파일이 covid19_tw_sample이라는 객체에 할당되어있음을 확인할 수 있습니다.

  1. 데이터 프레임 CSV 형태의 트윗 데이터를 불러온다.
# COVID19 hashtag tweets 1004640

# 영어 텍스트
# 중복 트윗 제거
# 5000 random sample
getwd()
## [1] "D:/Dropbox/2020_Class/spring/IntroTM/Rscripts"
load("covid19_tw_sample.RData")

class(covid19_tw_sample)
## [1] "tbl_df"     "tbl"        "data.frame"
covid19_tw_sample$text[100]
## [1] "Favorite @Simpsons meme I’ve found so far related to work and #COVID<U+30FC>19 https://t.co/Di8otjSMXJ"

“stringr” 패키지

함수 설명 유사한 기본 함수
str_length() 문자의 수 nchar()
str_split() 문자열 분리 strsplit()
str_c() 문자열 연결 paste()
str_detect() 문자열의 패턴 유무 인식하여 결과(T/F)를 반환합니다) none
str_view_all() 매칭된 문자열 모두를 보여줌 none

stringr 패키지에 있는 모든 함수는 "str_"로 시작하고 뒤에는 수행 작업과 관련된 용어가 따라옵니다.

패턴 매칭을 위한 유용한 stringr 함수

대부분의 stringr 함수는 처리하고자 하는 특정 패턴의 텍스트를 찾는데 필요한 정규 표현식과 함께 쓰입니다.

텍스트 사전처리에 유용한 stringr의 함수들을 좀 더 소개해드리자면:

함수 정의
str_trim() 문자열의 선/후 공백을 제거합니다.
str_which() 문자열 벡터에서 일치하는 텍스트 패턴의 모든 위치를 반환합니다.
str_extract() 각 문자열 요소에서 처음으로 일치하는 텍스트 패턴을 추출합니다.
str_extract_all() 각 문자열 요소에서 일치하는 모든 텍스트 패턴을 추출합니다.
str_replace() 각 문자열 요소에서 처음으로 일치하는 텍스트 패턴을 원하는 문자열로 바꿉니다.
str_replace_all() 각 문자열에서 일치한는 모든 텍스트 패턴을 원하는 문자열로 바꿉니다.

정규 표현식

R에서 텍스트를 다루고 처리하기 위한 몇가지 기본 기능을 학습하는 과정에서 우리는 문자열을 자유롭게 다룰 수 있어야 한다는 필요성을 가집니다. 그래서 우리는 정규 표현식(regular expressions)에 대해 알아볼 것입니다.

정규 표현식이란 무엇일까요?

정규 표현식이라는 용어는 낯설게 느껴지고 그 예는 복잡하게 보일 수 있습니다. 하지만 정규 표현식은 텍스트를 구성하는 방식으로 문자 집합의 패턴을 설명합니다.

오늘날 우리는 이메일, 문자 메세지, 뉴스 기사, 블로그, 댓글, 트윗과 같은 다양한 디지털 텍스트를 쉽게 접할 수 있죠. 이러한 데이터들은 모두 디지털 기호로 이뤄져 있기 때문에, 우리가 텍스트를 구성하는 방식을 안다면 많은 양의 데이터를 즉 빅데이터를 다룰 수 있는 힘을 갖게 됩니다. 다시 말해, 정규 표현식을 이용해서 디지털 텍스트를 처리할 수 있는 것이죠.

그럼 정규 표현식은 무엇일까요? regular expression, 즉 정규 표현식은 텍스트의 특정 pattern을 찾아내기 위한 특수 문자열입니다. 결국 정규 표현식은 문자열 집합을 매칭하기 위한 기호 집합이죠. 영어로 regular expression이라는 용어 자체가 다소 길기 때문에, 흔히 regex 라고 짧게 줄여서 지칭합니다. 저도 이 수업에서 정규 표현과 regex를 혼용해서 사용할 것입니다.

하지만, 정규표현식은 프로그래밍 언어는 아니라는 점에 주목할 필요가 있습니다. regex가 프로그래밍 언어처럼 보일지도 모르겠습니다. 왜냐하면 정규 표현은 컴퓨터를 통해 텍스트에서 우리가 원하는 것을 찾아내는데 사용된는 규칙의 집합이기 때문입니다. 그러나 regex는 변수를 지정할 수 없고, 2+2와 같은 계산을 추가할 수 없기 때문에, 프로그래밍 언어라 말할 순 없습니다.

정규표현식에 들어가기 전에…

정규 표현식은 처음에는 이해하기 어려울 수 있습니다. 무의미한 방식으로 결합된 문자, 숫자 및 구두점이 포함된 문자열을 볼 수 있기 때문입니다. 프로그래밍 및 데이터 분석과 마찬가지로, 정규 표현식을 학습하고 정규 표현식 패턴을 정의하는 데에 시간이 걸리므로 많은 연습이 필요합니다.

그러나 연습을 많이하면 할수록 더 복잡한 패턴을 정의할 수 있고 제거할 수도 있습니다. 그리고 정규 표현식은 Python, Perl, Java와 같은 다른 프로그래밍 언어의 대부분에서 지원되기 때문에 사용에 익숙해지면 매우 유용합니다.

정규 표현식(RegEx)은 어디에 사용될까요?

우리는 정규 표현식을 사용하여 텍스트 작업을 할 것입니다. 가령, 아까 예시에서 언급했던, 구두점, 숫자 그리고 원하지 않는 문자 등을 찾아내서 지우거나 원하는 문자로 바꿔주는 작업을 regex를 이용해서 할 것입니다.

예를 들어, 우리가 전처리하고자 하는 트윗 텍스트에서 # 기호로 시작하는 해시태그를 추출해내거나, @ 기호로 시작하는 싸용자이름을 추출해 낼 쑤 있습니다. 또한, 텍스트에 등장하는 구두점과 숫자 표현들, 영어 알파벳 이외의 문자 그리고 웹페이지 주소와 같은 URL을 일일이 지정해서 지워내는 번거로운 작업을 피할 수 있기 때문에 효율적인 텍스트 분석을 가능하게 합니다.

사실, 처리해줘 야 할 텍스트 패턴은 매우 다양할 수 있기 때문에 일일이 모든 경우를 포함시킬 수는 없습니다. 가령, 연도를 가리키는 숫자만 해도 “2018”, “2016”, “2017”에 국한된 것이 아니라 더 많은 다양한 경우가 올 수 있기 때문에, 이러한 규칙을 가진 숫자 표현 모두를 매칭해서 처리해주는 정규 표현이 필요합니다. 이런 방식으로 텍스트에 등장하는 그리고 우리가 지워줘야 하는 모든 문자열, 숫자 또는 구두점을 찾아서 처리할 수 있죠.

정규표현식의 기본

다시 한번 강조하자면, 정규 표현식은 특정 텍스트 문자열을 일괄적으로 찾아낼 수 있는 패턴을 구성하는 것이라 할 수 있습니다. 따라서 regex를 사용할 경우 우리가 처리하고자 하는 텍스트 패턴을 모두 찾아낼 수 있습니다. 그리고 stringr 패키지에서 regex pattern을 잘 구성해서 이용하는 것은 그래서 매우 중요합니다.

그러면 어떻게 regex를 구성해야 할까요. 위에서 언급했듯, 패턴 매칭의 가장 간단한 방법은 특정 문자열 그대로를 찾도록 만드는 것입니다. 예를 들어, 지난 시간에 우리는 텍스트 문서에서 “the”라는 문자열을 매칭하고자 하는 문자패턴 그대로의 regex를 사용해서 그 위치를 검색하는 것이죠.

하지만 대부분의 경우 보다 복잡한 구조의 정규표현식 패턴을 만들어야 할 필요가 생깁니다. 예를 들어서 위키피디아 페이지에서 모든 숫자, 또는 모든 구두점, 또는 해시 태그나 url 또는 영어가 아닌 글자들을 모두 매칭해서 처리하려면 어떻게 해야 할까요? 이러한 필요를 충족시키는 regex 구성 방법에 대해서 설명드리도록 하겠습니다.

리터럴 문자의 일치

우선, 가장 단순한 일치로 시작해봅시다. : 문자 그대로의 패턴 리터럴 문자 일치는 문자 “A”와 같은 주어진 문자가 문자 “A”와 일치한다는 것입니다. 이 것은 그 자체로 일치하기 때문에 literal이라고 불리웁니다. 이 유형의 일치는 가장 기본적인 유형의 정규표현식 연산입니다. 일반 텍스트와 따옴표만 일치시킵니다.

다음은 정규표현식에 대한 기본적인 이해의 예입니다.

우리가 정규표현식으로 매칭할 첫번째 문자열은 단어 "the"입니다. 이 문자열은 문자 “t”, 문자 “h”, 문자 “e로 구성됩니다. 그러나 우리가 regex 패턴을”the“로 구성한다면 단어”the“뿐만 아니라 단어”they“와”soothe" 또한 매칭하는 결과를 얻게 될 것입니다. 따라서 따라서 정규 표현식 패턴은 시작과 끝에 공백이 있어야 하겠죠: " the "

다시 한번 강조하자면, 정규표현식에서 공백은 문자로 인식됩니다.

자 이제, 문자열 백터 객체 covid19_tw_sample$text로부터 각 트윗마다 특정 정규표현식을 적용해 봅시다.

우리가 구성한 정규표현이 문자열 객체에서 찾아낸 즉, 매칭된 결과를 확인하기 위해 우리는 str_extract_all() 함수를 사용하겠습니다.

library(stringr)
View(covid19_tw_sample)
covid19_tw_sample$text
##    [1] "Hopefully when the White House reopens we’ll  have new owners in there too !!!! https://t.co/1EkTXt8nkW"                                                                                                                                                                                                                                                                                                                                                                                                     
##    [2] "All governments in the world are trying to manipulate the COVID-19 statistics. I trust countries that allow for free speech and free media. That doesnt mean trust media always being accurate. Question everything, but be open minded and come to your own fact driven conclusions."                                                                                                                                                                                                                        
##    [3] "\"No health service in the world would be able to deal with #coronavirus if the public don't stay indoors...\" Stay in, muppets."                                                                                                                                                                                                                                                                                                                                                                             
##    [4] "Wow!\nCovid-19 Deaths per million:\nGermany: 3\nUSA.         4\n\nWhy is the default in the media, America is bad? https://t.co/MlXSa38wSG"                                                                                                                                                                                                                                                                                                                                                                   
##    [5] "Best quick summary I’ve read of the (temporary) changes to the Ohio educational system due to #COVID19 and HB197. #ohedchat https://t.co/IPjKqwD0UE"                                                                                                                                                                                                                                                                                                                                                         
##    [6] "Does fitness play a part in the recovery process? Here's what happened https://t.co/UvpOGd26CX"                                                                                                                                                                                                                                                                                                                                                                                                               
##    [7] "South Georgia Medical Center, like many other Southwest Georgia hospital systems, are releasing their COVID-19 numbers daily. https://t.co/rLV1idTNv9"                                                                                                                                                                                                                                                                                                                                                        
##    [8] "Although the world should be focusing on how to solve #COVID19, Asian-American advocacy groups and researchers confirm that they have seen a surge of verbal and physical assaults. This needs to stop! https://t.co/bVBxt9kIfd #coronavirus #racism"                                                                                                                                                                                                                                                         
##    [9] "RIP COVID-19 Hero. #covidfallen https://t.co/8SjgVqlRpA"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [10] "3. @unusual4tune could you tell us a little about the symptoms of COVID-19?\n\nPatients with COVID-19 may have mild to severe respiratory \nillness with symptoms of\n     <U+0001F912>  Fever \n\n  <U+0001F62B>  Cough\n    \n<U+0001F975>  Shortness of breath"                                                                                                                                                                                                                                            
##   [11] "Our firefighters, along with #firstresponders &amp; #healthcareworkers throughout the Region, continue to serve our communities every day.  \nDo your part - #stayhome and be safe.\nHelp prevent the spread of #COVID19.\n<U+0001F692> If you do go outside - keep a fire truck width apart! (2 m/6 ft) https://t.co/AjrMprEZYA"                                                                                                                                                                             
##   [12] "Day 4 of #onlineschool - the new TA managed to convince me to take a nap with her. <U+0001F926><U+0001F3FB><U+200D>♀<U+FE0F> It was a good one. #coronavirus #StayHome https://t.co/RRlalxxGl1"                                                                                                                                                                                                                                                                                                              
##   [13] "@StephenKing Apparently working doesn’t mean much to investing. Building, growing, healing, producing are all just platitudes in the age of Covid-19 #TwistedLogic"                                                                                                                                                                                                                                                                                                                                          
##   [14] "@RudyGiuliani @jeffgiesea @charliekirk11 Preventative measures that succeed in preventing people from getting COVID-19 have a 100% \"effective\" rate. I'd rather not get sick in the first place, thank you, Doctor G, Rudy."                                                                                                                                                                                                                                                                                
##   [15] "Hospitals urgently need Personal Protective Equipment (PPE) to help fight #COVID19. You or your company can help by donating supplies. #Toronto let’s keep our healthcare workers safe. We are in this together. https://t.co/a2hmhmI8l3 #thePPEdrive"                                                                                                                                                                                                                                                       
##   [16] "Immensely proud of my #community  #kwawesome -View from the ‘Loo: When Waterloo Region helps A distinguished history of lending a hand is coming to bear for good during the COVID-19 crisis https://t.co/cPrTPeRA1Y"                                                                                                                                                                                                                                                                                        
##   [17] "Even if the #quarantine forces us to #StayAtHome, our #LumipocketLT multifunctional #3Dprinter engraves with the #laser always new materials, such as this colored #chalk!\n#colors #coronavirus #customization #lumindustries #engraving #laserengraving #print3D #3D #allinone #DIY https://t.co/8rr4aG6IZ7"                                                                                                                                                                                                
##   [18] "Now coronavirus is playing Bigg Boss with the whole nation #covid19 #lockdown #janatacurfew #India #ckmkb"                                                                                                                                                                                                                                                                                                                                                                                                    
##   [19] "and on the basis of such determination, the Secretary of HHS then declared on March 24, 2020, that circumstances exist justifying the authorization of emergency use of medical devices, including alternative products used as medical devices, during the COVID-19 pandemic"                                                                                                                                                                                                                                
##   [20] "The fog is creeping in on bloody tiger's feet. Direct news from a friend he's had a friend die from NYC COVID-19. Wifey's feverish sister can only get a test because her Long Island employer is restricting plant access. It's coming. #dumpTrump and #lyingGOP before they kill you."                                                                                                                                                                                                                      
##   [21] "Bahrain, Belgium Report COVID-19 Treatment Touted By Trump Is Working For Patients | Zero Hedge https://t.co/s33ko7weA4"                                                                                                                                                                                                                                                                                                                                                                                      
##   [22] "Should non-violent offenders be released from prison to avoid COVID-19 spread? https://t.co/LlCiGxCk4q"                                                                                                                                                                                                                                                                                                                                                                                                       
##   [23] "Open invitation for Sr. PMs &amp; PM leaders:\n\nI'll be doing Zoom sessions (1:1 &amp; small groups) with folks who are looking for a new role due to COVID-19.\n\nI clearly can't promise a great new job, but am happy to assist you with PM skills development &amp; job search prep.\n\nDMs open."                                                                                                                                                                                                       
##   [24] "How you laughing it up &amp; working along side a fellow RN &amp; next thing you hear is that they coded &amp; died from COVID-19?!?"                                                                                                                                                                                                                                                                                                                                                                         
##   [25] "#CoronaVirus update \n \n Total Cases= 596,723 +702\n Total Deaths= 27,352 +11\n Total Recovered= 133,355 +298\n\n Active Cases: 436,016\n Closed Cases: 160,707\n \n Next update in 30 mins"                                                                                                                                                                                                                                                                                                                 
##   [26] "I've just got a text from my mom saying her cousin just died due to COVID<U+2014>19.\n\nDidn't know him well, but what I know is that he was a *healthy* 47-year-old man.\n\nStay home guys, stay safe. It ain't no joke."                                                                                                                                                                                                                                                                                    
##   [27] "Join us for another free webinar series next week - March 30th 3pm &amp; March 31st - 10am. Click link to register - https://t.co/hEWg9XKzjp suitable for youth &amp; adults #YQGStandsStrong #COVID2019 #mentalhealth https://t.co/y4REXp8XAj"                                                                                                                                                                                                                                                               
##   [28] "The #coronavirus (COVID-19) #pandemic has changed life across the country. The #IRS and Congress have responded with some #tax and financial relief. Here’s a brief rundown of what’s been provided so far. https://t.co/rf2l3q7uU4 https://t.co/3R3CFoA1kc"                                                                                                                                                                                                                                                
##   [29] "So while everyone is scrambling for masks and respirators this is going on behind the curtains in Oz! What a gigantic waste of dollars when Trump &amp; Co. won’t cover the Covid-19 Pandemic? What the Hell is going on here.....<U+0001F621><U+0001F92C><U+0001F6D1><U+0001F921><U+0001F3AA><U+0001F6D1>"                                                                                                                                                                                                  
##   [30] "We thank all nurses for standing up against COVID-19 during this time. Sign our card to thank your local nurse:  https://t.co/3QUbglO8sC"                                                                                                                                                                                                                                                                                                                                                                     
##   [31] "@PrinceMolekga @kulanicool My people please the vaccine doesn’t exist apparently it’s there to kill us soo please I plea with you don’t take vaccine for Covid-19 that’s a death penalty for those who take it"                                                                                                                                                                                                                                                                                           
##   [32] "Thank you. Hated seeing so many people get this story wrong. https://t.co/PWL6sG3uuo"                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [33] "***JUST IN***\n\nCollin County @JudgeChrisHill reacts to a statement made earlier tonight by Dallas County @JudgeClayJ. \n\nJenkins said there was a call today between medical officials and 10 other regional county judges to unify COVID-19 approaches and that Hill wasn't on the call. https://t.co/de4psxyTNq"                                                                                                                                                                                         
##   [34] "How can business leaders manage the stress and uncertainty surrounding the #coronavirus pandemic? Embrace the fear instead of rejecting it, says @RebootHQ CEO @jerrycolonna: https://t.co/g9oIuFwEtd #eventprofs #covid19 #teammanagement"                                                                                                                                                                                                                                                                   
##   [35] "New employer content on COVID-19 on Capell &amp; Howard's website feed. Check it out. \n\nhttps://t.co/y4FPJDrMZB\n\n#humanresources #EmpLawGods #employmentlaw #Covid19usa #businessadvice"                                                                                                                                                                                                                                                                                                                  
##   [36] "Beautifully explained - simple reason for social distancing. \nThank you #bbcnews \n#COVID19 https://t.co/XO6yv79ujQ"                                                                                                                                                                                                                                                                                                                                                                                         
##   [37] "@Pontifex with no congregation because of #COVID19 \n\nBut back home bado tunaambiwa  twende kanisani. https://t.co/zcU9Q0S1IT"                                                                                                                                                                                                                                                                                                                                                                               
##   [38] "Alarmed by <U+0001F1ED><U+0001F1F7> govt plan to reduce protection for workers amid #COVID19. Outbreak cant be a pretext for nullifying labor legislation re: remuneration, working hours, sickness and holiday provision. @IUFglobal &amp; #EFFAT wrote to Andrej Plenkovi<U+0107>  to urge drop of plans https://t.co/krtFLaIsap"                                                                                                                                                                           
##   [39] "COVID-19: Behavioral Health Core Crisis Continuum as Essential Services - #CrisisTalk https://t.co/z0wPNruhBh"                                                                                                                                                                                                                                                                                                                                                                                                
##   [40] "I'm working on the #BuildforCOVID19 global hackathon &amp; wondering if there are resources for developers that are discounted/free during #coronavirus pandemic that would help to build /deploy ? I'll compile a list @sundarpichai @awscloud @Microsoft #tech @lessin @FrontendMasters"                                                                                                                                                                                                                    
##   [41] "3/25 CoVID-19 cases were 62, 045-today 3/26 cases are 80,000 +day isn't over... Deaths up over 1100 but the day isn't over ! \nTESTING: NOT EVEN CLOSE TO BEING ADEQUATE\nbut is why we're beginning to see the tip of those exposed-GET THE VENTILATORs+SAFETY mat'ls to front line NOW"                                                                                                                                                                                                                     
##   [42] "A further 70 cases of coronavirus have been reported in Queensland. #coronavirus #7NEWS \n\nhttps://t.co/ikPk1lwttk"                                                                                                                                                                                                                                                                                                                                                                                          
##   [43] "this is the fake president that CNN has enabled (via mostly uncritical coverage) for years. the man is a pathological liar, at the very worst moment. #TrumpVirus #COVID19 #StayHome #FlattenTheCurve https://t.co/HRIkVYVExn"                                                                                                                                                                                                                                                                                
##   [44] "<U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C>\n\nSOMETHING MORE HAPPENS \n\nIs China hiding COVID-19 death toll? 21 million cell phones disappeared, why? https://t.co/ctFCBSD9Av"                                                                                                                                                                                                 
##   [45] "lets be real, so far the real winners of the damn #coronavirus are #JoeExotic and everyone who bought #zoom stock last year<U+0001F937><U+200D>♂<U+FE0F>"                                                                                                                                                                                                                                                                                                                                                    
##   [46] "Please join us, Friday, 3/27/2020 at 6:30 P.M. to speak with an expert in infectious diseases and immunology. Dr. Valerie E. Cadet will answer questions you have on the current pandemic and give an in-depth explanation of COVID-19.\n\nClick here to register: https://t.co/vHmdhLfYqd https://t.co/KSWprgXAC2"                                                                                                                                                                                           
##   [47] "Queen Pissed After MI5 Infect The Wrong Son With Covid-19 https://t.co/7szQFn1tk3 via @TheunAustralia"                                                                                                                                                                                                                                                                                                                                                                                                        
##   [48] "I appreciate it's a complex situation and there are plenty of questions still to be asked. However:\n\n<U+2022> The self-employed in my constituency cannot wait until June to receive support. \n\n<U+2022> It's as simple as that. \n\n<U+2022> We need to expedite this support. \n\nImmediately #coronavirus"                                                                                                                                                                                             
##   [49] "YEAH <U+0001F973> we’re back up &amp; running<U+0001F3C3><U+200D>♀<U+FE0F>a more powerful &amp; stronger website big thankyou for your patience it’s been tough for all but behind the scenes we haven’t stopped just take a look 24/7 totally committed <U+0001F44A><U+0001F44D> #COVID2019 @thechefsforum @BBCLondonNews @SabrinaGhayour @MGaletti01 https://t.co/VhuirS7Esq"                                                                                                                           
##   [50] "@CodyThorn They’re out of control. And COVID-19 spread there is gonna be really bad. Calling it now."                                                                                                                                                                                                                                                                                                                                                                                                        
##   [51] "Death rates in the UK from #coronavirus go up by a whopping 31 percent to 759! https://t.co/DD55NNcOcK"                                                                                                                                                                                                                                                                                                                                                                                                       
##   [52] "@Reboticant Both. \nThe email is real. \nGo take a look...\nhttps://t.co/EF5T5n7Gvh"                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [53] "@Alienware I am taking my 7yr old for COVID-19 testing tomorrow!!...  He has pneumonia right now and hes scared to death...  Send your extraterrestrial help!!..\n\nYou never think it can happen to you.... Until it does.... <U+0001F637><U+0001F637><U+0001F62D><U+0001F62D>"                                                                                                                                                                                                                              
##   [54] "Alesha is extremely vulnerable to #Coronavirus. Children like Alesha - and their families<U+00A0>- need our support more than ever. Please help us to care for seriously unwell children - https://t.co/G1s2t2YPQ7 <U+2764> https://t.co/5z3YX2PzVP"                                                                                                                                                                                                                                                          
##   [55] "hoarding raid  \ntwo weeks later  \nstill empty shelves  \n#haiku #coronavirus #pandemic"                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [56] "Did President Trump Call COVID-19 A Hoax? NO!!\n\nhttps://t.co/gk3VPrjOdg @wbcknews"                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [57] "How different countries are reacting to the COVID-19 risk and their governments’ responses. https://t.co/wPJ1u7ne8I https://t.co/wPJ1u7ne8I @cambridge_uniより"                                                                                                                                                                                                                                                                                                                                              
##   [58] "#AddictionTreatment Centers Make Adjustments During #COVID-19 Pandemic https://t.co/PrajNhCplf #fightaddiction #addictionrecovery"                                                                                                                                                                                                                                                                                                                                                                            
##   [59] "@angryablib Hi, you can read it here: Thread by @RobWarrenMD: @JasonNixonAB. We expect we will have our first COVID-19 case in Sundre next week. Your… https://t.co/bGInn0Eqm5. Share this if you think it's interesting. <U+0001F916>"                                                                                                                                                                                                                                                                      
##   [60] "#COVID19 please help ushttps://www.gofundme.com/f/1w340aamlc?utm_medium=copy_link&amp;utm_source=customer&amp;utm_campaign=p_na+share-sheet&amp;rcid=2c3278c725b04fcd8863e6c18d802ded"                                                                                                                                                                                                                                                                                                                        
##   [61] "This is not an Olympic, showing the medals by country Gold, Silver, Bronze, this is the most difficult tragedy on humanity, which we are seeing/facing, can’t believe ppl are dying and we are watching/counting live. May God bless/protect us and forgive us. Ameen. #coronavirus https://t.co/iNNkAJRW4d"                                                                                                                                                                                                 
##   [62] "hey @HomaTav, look what popped up in @PublishersWkly!\n\nhttps://t.co/4p9oKAQPx9"                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [63] "Confronting the possibility of extreme animal care shortages and disruptions to research in the wake of the #coronavirus, U.S. universities across the country have asked labs to think hard about the mice they actually need. https://t.co/O6YE6eZDRC"                                                                                                                                                                                                                                                      
##   [64] "A glimmer of #COVID-19 optimism via @ty_olsen  https://t.co/wZsYM8xbKF"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [65] "@BenjaminNorton A carrier has to head to shore over coronavirus. \n\nPompeo is such an idiot he thought the aggressor 7,000 miles away has an advantage during a pandemic!\n\nhttps://t.co/bG0HHYnd38"                                                                                                                                                                                                                                                                                                        
##   [66] "Part of me was really hoping that the sheer number of people wearing masks and gloves would help illustrate social responsibility to those with more of an... uncouth style.\n\n#maybenot #gross #publichealth #covid19… https://t.co/A2cBV89aKp"                                                                                                                                                                                                                                                            
##   [67] "Heal:    https://t.co/pJgGxUrt8K …\n\n#addiction #alcoholism #recovery #RecoveryPosse #coronavirus #sober #sobriety #treatment #addictionrecovery  #bipolar #coronapocolypse https://t.co/yvuAuNxgnY"                                                                                                                                                                                                                                                                                                        
##   [68] "#RememberTheTime just the other day, #impeached #Trump announced the #USA only had 15 confirmed cases of #Coronavirus exposures &amp; predicted zero cases quickly, 19,800 cases ago. #HeLied #YouBeenConned #DrinkingTheKoolAid #TrumpLiesPeriod #WhenWordsAreEaten"                                                                                                                                                                                                                                         
##   [69] "#BREAKING: At the current rate, #COVID19 cases in Italy and the United States will surpass China in the next 24 hours.\n\nThursday PM Update:\n\n<U+0001F310> 521,000 cases worldwide\n\n▶<U+FE0F> 81,800 China <U+0001F1E8><U+0001F1F3> \n▶<U+FE0F> 80,500 Italy <U+0001F1EE><U+0001F1F9> \n▶<U+FE0F> 79,700 USA <U+0001F1FA><U+0001F1F8> \n\n(data from @JohnsHopkins) https://t.co/GUH37mtpYB"                                                                                                          
##   [70] "@News24 Let’s not rejoice when people get #COVID19 no matter the race, class, social standing,political view or nationality. Once this thing hits the townships, all hell will break loose #CoronavirusSouthAfrica #COVID19SouthAfrica"                                                                                                                                                                                                                                                                      
##   [71] "Indy 500 shifted to August due to Covid-19 https://t.co/HWgZI6ySBB https://t.co/FFchjBpieW"                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [72] "@BSYBJP @narendramodi Most H'nble and Respected Sir,\nI just have a very small idea to share with you sir. we have thousands of State transport buses off from sevices.  we can transform them into mini moving isolated wards to test &amp; treat the affected people from  covid - 19."                                                                                                                                                                                                                     
##   [73] "Curogram Streamlines COVID-19 Testing Process for United Memorial Medical Center https://t.co/WvhOfIS85G https://t.co/sr778BlgJv"                                                                                                                                                                                                                                                                                                                                                                             
##   [74] "@lampert_poliana Covid-19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [75] "End Apartheid now\n#coronaviruspalestine #coronavirus #endapartheid #endoccupation\nGantz will block annexation, Palestinians are at last a ‘player’ <U+2014> J Street sees upside in Israeli politics <U+2013> Mondoweiss https://t.co/xs0CIqs8OD"                                                                                                                                                                                                                                                         
##   [76] "This is an #EmergencyAlert #DPANow #CoronavirusOutbreak #COVID2019 https://t.co/Do6uSWwDbD https://t.co/PYsuhwicZZ"                                                                                                                                                                                                                                                                                                                                                                                           
##   [77] "In memory of all those who have lost their lives due to #COVID19 &amp; to all the family &amp; friends who couldn't be present at their loved ones funerals @PallCare_Nurse #pallicovid https://t.co/X0MSmPLzfl"                                                                                                                                                                                                                                                                                              
##   [78] "Just to say: I was baking #bread from scratch before #coronavirus made it cool. So back off gays, stop stealing my niche. https://t.co/L6JhtAKxlU"                                                                                                                                                                                                                                                                                                                                                            
##   [79] "This is called a marshmallow hug  took food up to my grandchildren staying safe. #coronavirus https://t.co/fpjn2FX1tD"                                                                                                                                                                                                                                                                                                                                                                                        
##   [80] "61% of U.S. Adults Are Stressed About #COVID19: https://t.co/Y1EHDdfV1h"                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [81] "This kind of police brutality in this country is un called for the police are fighting the citizen of kenya and not Covid 19 the only solution is a revolution @MigunaMiguna @RobertAlai @NelsonHavi https://t.co/LmwDRM7vn7"                                                                                                                                                                                                                                                                                 
##   [82] "Join a live panel discussion on COVID-19 with BU Health Experts tomorrow from 1-1:30 pm. \nGet details here: https://t.co/cKOGqn0pys"                                                                                                                                                                                                                                                                                                                                                                         
##   [83] "@socialfoodhour @Reddylane who I've been supporting this year has had the challenge of increased demand for her amazing fresh fruit and veg from their #socent Market Garden .... deliveries have had to increase and services increase due to #covid19 #SocentCovid19"                                                                                                                                                                                                                                       
##   [84] "“A beautiful day.” The POTUS’ first words during a task force briefing during a pandemic. #COVIDIDIOT #potus #trumpvirus #coronavirus"                                                                                                                                                                                                                                                                                                                                                                     
##   [85] "Our demo system in @securedatakit is called Rid Our World of Disease....Yesterday so all of the #covid19 datasets we've created start with \"rowdy\" and every time I write a query I think of Rowdy Roddy Piper. \n\nI've spent too much time with this data. Send help. https://t.co/J0QIT8T3Y4"                                                                                                                                                                                                            
##   [86] "Why can't Buhari administration pay salary for civil servants in all 36states to have someone to buy foods at home for Covid-19 pandemic problem???@eggheader @ProfOsinbajo @kfayemi @APCNigeria @OfficialPDPNig @DigiCommsNG @NCDCgov"                                                                                                                                                                                                                                                                       
##   [87] "Stop smoking <U+0001F6AB>\nStop alcohol drinking <U+0001F6AB>\nEat healthy foods <U+0001F375>\nDrink water<U+0001F4A6>\nWalk, run, ride, exercise <U+0001F3C3><U+0001F6B6><U+0001F6B2>\nMaintain.    social       distancing\n#Coronavirus is not invincible!!"                                                                                                                                                                                                                                               
##   [88] "Please take a moment to join us in thanking our amazing #HealthCareHeroes on the front line of the #COVID19 pandemic. Your strength and bravery have not gone unnoticed by the world! #NYC #WeStayHereForYou #PleaseStayHomeForUs #ClapBecauseWeCare @nyphospital @Columbia https://t.co/5ZlQ5s7NYz"                                                                                                                                                                                                          
##   [89] "#Coronavirus: strategic considerations for investment advisers considering whether to apply for temporary relief from filing obligations due to COVID-19 https://t.co/inCWvQ39Oe #investmentadviser #FormPF https://t.co/SkSwZ62vkV"                                                                                                                                                                                                                                                                          
##   [90] "#AskZee\n\nAs REMDESIVIR  and FAVIPIRAVIR shown effctive treatment against #COVID19 in china , japan and south korea then why india is not considering those drugs ????"                                                                                                                                                                                                                                                                                                                                      
##   [91] "Covid-19 is real and seeking protection against it , is allowed religiously or secularly ...\nTry to know its symptoms..\nAnd don't just go to hospitals  endeavors to contact NCDC or any relevant agency in your state #CovidNGR #StayAtHomeAndStaySafe #StaySafeNigeria #COVID19"                                                                                                                                                                                                                          
##   [92] "Kenya government has launched war against  it's people in the name of fighting COVID-19. Look what is happening in Mombasa."                                                                                                                                                                                                                                                                                                                                                                                  
##   [93] "Some #DisneyPlus shows have been called off due to #coronavirus https://t.co/SbhqkEYnIc https://t.co/6Zylggaa62"                                                                                                                                                                                                                                                                                                                                                                                              
##   [94] "China bans entry of foreigners in move to curb the spread of virus #tcot #tlot #teaparty #MAGA #coronavirus\nhttps://t.co/v9hvtf19Fk"                                                                                                                                                                                                                                                                                                                                                                         
##   [95] "Just listening to an epidemiologist who gives daily updates, and he is confirming that COVID-19 is indeed comorbid with the loss of taste and smell.  Just some info to keep an eye out for.  Also, apparently, the virus can cause conjunctivitis, so PPE!"                                                                                                                                                                                                                                                  
##   [96] "[Infographic] Covid-19 update: 927 confirmed cases in South Africa. Our infographic also indicates current global numbers: https://t.co/rwmKI0rKOO https://t.co/rk1DCFluX1"                                                                                                                                                                                                                                                                                                                                   
##   [97] "Wife: I don’t care. Just entertain the kids.                                                           Me: Noted                                        #dadsinselfisolation #StayAtHome #COVID #COVID19 #COVIDIDIOT #CoronaLockdown #CoronavirusOutbreak @curnwah158 #covid19australia https://t.co/jmeN5x2csK"                                                                                                                                                                                             
##   [98] "#Myositis patients, join us TONIGHT, Thurs., Mar. 26th, at 7 PM for COVID-19 and Myositis, a Patient Video Support session. Let's discuss what we are feeling and support each other. Add to your calendar. See details  https://t.co/Wt1pcWorS7 #inflammatorymyopathy #myositissupport https://t.co/DcfecA3aFl"                                                                                                                                                                                              
##   [99] "Filtering ODE with Random coefficients #COVID19 #mftg https://t.co/XBHt1BhPJr"                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [100] "Favorite @Simpsons meme I’ve found so far related to work and #COVID<U+30FC>19 https://t.co/Di8otjSMXJ"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [101] "Coronavirus COVID-19 FREE\nPrintable ESL Lesson!<U+0001F9A0> <U+0001F637>\nDownload link: <U+0001F447><U+0001F447><U+0001F447><U+0001F447><U+0001F447> https://t.co/Xamzjtw5lf https://t.co/v41CuZqlmt"                                                                                                                                                                                                                                                                                                       
##  [102] "Various #COVID19 reports include the prohibitive cost of ventilation &amp; ECMO in the US....so proud to work for &amp; always grateful for our NHS   <U+2764><U+FE0F><U+0001F9E1><U+0001F49B><U+0001F49A><U+0001F499><U+0001F49C>"                                                                                                                                                                                                                                                                           
##  [103] "Salute to our that Doctors who are continuously trying to save our lives. <U+0001F614><U+0001F613><U+0001F62A>\n#coronavirusinpakistan #CoronaLockdown #COVID2019"                                                                                                                                                                                                                                                                                                                                            
##  [104] "@sal_castaneda Could become a Post-Wuhan Coronavirus (COVID-19) Outbreak option. <U+0001F60E>"                                                                                                                                                                                                                                                                                                                                                                                                                
##  [105] "I learned from #COVID19:\nThe man of the 21century,with all his claims and a wave of disbelief in God,has become so powerless that he cannot even guarantee the lives of the leaders of the developed countries against a virus that is not even visible to the eye.\n#ThePromisedSaviour https://t.co/epgdnVvYBN"                                                                                                                                                                                            
##  [106] "@RepKenBuck Sir, who owns \"Washington's Opera House\"? Answer: the United States people. While you may not care about the maintenance of our assets, I do. Your disingenuous criticism here is only equaled by your dangerous downplay of the COVID-19 pandemic. You, sir, are bad for Colorado."                                                                                                                                                                                                            
##  [107] "Double Mask Industrial Supplied Anti-COVID-19 Face Masks for Medical Experts and General Public https://t.co/kFBam4NIVq https://t.co/uUXVWRqqVO"                                                                                                                                                                                                                                                                                                                                                              
##  [108] "@RudyGiuliani @RealCandaceO Rudy! It was so nice not seeing or hearing from you for quite a while! So, the 1,000 casualties so far due to COVID-19, and those we will see in the future, are acceptable, correct? If that is indeed your perspective, here’s to seeing you among the next 1,000."                                                                                                                                                                                                            
##  [109] "@DerbysPolice @DerPolDroneUnit Haven't you got better things to to do than make fancy videos? Maybe arrest the man who said you can't catch covid-19 on the tube then proceeded to pack people in like sardines?"                                                                                                                                                                                                                                                                                             
##  [110] "Talks are underway between #Iran guild of fuel station owners and the government to partially shut the stations, the guild’s secretary says adding, “High number of our employees have been infected with #COVID19... Gasoline sales have plummeted 70% as well.” https://t.co/eWVWy8kX3W"                                                                                                                                                                                                                 
##  [111] "@NCDCgov would later visit the hospital to inform them that the patient tested positive to #coronavirus &amp; has since been moved to Yaba.\n\n@NCDCgov has ordered immediate shutdown of the hospital but the source says this order has not be fully carried out by the hospital management."                                                                                                                                                                                                               
##  [112] "Another Greetings Card Commission for a PCSO that is leaving to become a PC! Extra poignant to create something nice for our key workers during the #COVID2019 lockdown in the UK. <U+0001F46E><U+200D>♂<U+FE0F><U+0001F3A8> https://t.co/67AppPJ6eA"                                                                                                                                                                                                                                                        
##  [113] "Does anyone know (or have) their employers' Covid-19 policy? We're trying to write one, which goes past our normal extended-sickness policy, but IANAL and I'm unclear if, for example, we can treat caring for a relative like sick leave, or what."                                                                                                                                                                                                                                                         
##  [114] "Prevent the Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/6VeOo0vFOM"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [115] "COVID-19 Is Not Even Close To America's Biggest Problem https://t.co/Mw5tEE91IP https://t.co/GqG2RJircj"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [116] "Look at Italy #COVID19 \nYesterday's death toll in Italy Rose to #724 https://t.co/yTva4mX2D7"                                                                                                                                                                                                                                                                                                                                                                                                                
##  [117] "Christmas lights shining hope for people amid the COVID-19 pandemic https://t.co/jnowQfVScu"                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [118] "Scammers using COVID-19...@CNBC 'Coronavirus fraudsters prey on fear and confusion with fake products, email scams' https://t.co/VTzPMmmBVu https://t.co/hqrUmpzp25"                                                                                                                                                                                                                                                                                                                                          
##  [119] "Clot-busting drug may work in Covid-19 emergency: Researchers - india news - Hindustan Times https://t.co/piI2wzlPPj @PMOIndia @ICMRDELHI @atulkasbekar @RahulGandhi @LilavatiHRC @HospitalHinduja @ndtv"                                                                                                                                                                                                                                                                                                     
##  [120] "Superstar! #coronavirus https://t.co/sGigLveqxS"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [121] "@PatriqKanyomozi <U+0001F606><U+0001F606><U+0001F606><U+0001F606><U+0001F606>Ba wa Lucky, Bebe will send you goons harder than #COVID2019. #StaySafeStayHome"                                                                                                                                                                                                                                                                                                                                                 
##  [122] "We are really about to hit 1000 covid-19 deaths in a matter of days \n#bbcnews"                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [123] "PLEASE STOP GOING ON FLIGHTS. \n\nThe Uber driver who picked up NY’s 1st identified CoVid-19 patient is dead. He died Tuesday am. It was a 20 min ride. \n\nFor 3 months I’ve been trying to halt flights. look who is still traveling. east coast will be ravaged. https://t.co/deXuwR3Brw"                                                                                                                                                                                                                
##  [124] "Ontario confirms another 135 cases of #coronavirus, and Prime Minister @JustinTrudeau announces an increased payroll subsidy for #smallbusiness\n\nAll this and more 680 NEWS TO GO with @SteveRobertsTO and @SarahParrott7\n\nWe're here for you anytime at\nhttps://t.co/h9p45U4Tka https://t.co/uW720zoAjr"                                                                                                                                                                                                
##  [125] "Currently we are just waiting for Mr.President to announce that \"all registered  Kenyans citizens to expect a massage from mpesa....\nConfirmed you have received Ksh......... From the government of Kenya....your mpesa balance Ksh......\nThis will help you counter Covid_19"                                                                                                                                                                                                                            
##  [126] "Speechless <U+0001F494><U+0001F614> #COVID19 #London #CoronavirusOubreak #CoronavirusOubreak https://t.co/IYvIg4DimG"                                                                                                                                                                                                                                                                                                                                                                                         
##  [127] "I swear we are fighting two pandemics Covid 19 and RSS ."                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [128] "Cyber Version of 'Justice League' Launches to Fight COVID-19 Related Hacks: Goal is to help organizations - especially healthcare entities - protect against cybercriminals trying to take advantage of the pandemic. https://t.co/RpaYhDRYi2 https://t.co/10hFmHmEre"                                                                                                                                                                                                                                        
##  [129] "On today’s episode of COVID-19 in Oklahoma, host @benfelder_okc speaks with State Superintendent Joy Hofmeister @joy4ok about the decision to pivot to distance learning and what led her to make this proposal. #oklaed\n\nhttps://t.co/E40ww9Sjw2"                                                                                                                                                                                                                                                         
##  [130] "With a symphony of sound from the Port and Bay of #Gibraltar the salute commences...thank you to all of our essential services on the Rock\n\n#COVID19 #ClapForTheGHA"                                                                                                                                                                                                                                                                                                                                        
##  [131] "I will be sharing 1 film from #DokuFest production, each day during the #COVID<U+30FC>19 #QuarantineAndChill #OneFilmADayKeepsDoctorAway\nFilm #14 THE LONGEST SUMMER by Gentiana Gashi\n#DokuFest #SweetAndShortQuarantine https://t.co/PUtAfr6xIr"                                                                                                                                                                                                                                                          
##  [132] "@Vijayabaskarofl \nSir,please read this article,got a good news for corona virus infected people,Thank you\nhttps://t.co/OT1WlqGAJw"                                                                                                                                                                                                                                                                                                                                                                          
##  [133] "Fauci says #US needs to be prepared for #coronavirus to be cyclical https://t.co/ZWZNPmyBtm"                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [134] "\"Coronavirus cuts: Airlines slash snacks, drinks and middle seats during pandemic\": Major airlines in the U.S. are adjusting their in-flight practices and policies to help fight the spread of COVID-19 in the skies.,https://t.co/2CXvE0RN7P"                                                                                                                                                                                                                                                             
##  [135] "@googlepodcast has been helpful during this period. #COVID<U+30FC>19 #StayHomeSaveLives #LetsFightCovid19 https://t.co/MnNwSAPpjZ"                                                                                                                                                                                                                                                                                                                                                                            
##  [136] "Farmers offer safe haven for grey nomads with nowhere to go due to COVID-19 https://t.co/JarCpdhL3f"                                                                                                                                                                                                                                                                                                                                                                                                          
##  [137] "Heard Joe Biden is having SNIFF withdrawal symptoms. COVID 19 sure has a way of messing with someone's life"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [138] "@realDonaldTrump I know you don’t read much about historical lessons learned, but please give this a scan:\nhttps://t.co/ts92Hg4mnX"                                                                                                                                                                                                                                                                                                                                                                         
##  [139] "Introducing The Monitoring COVID-19 In Canada Dashboard.\nA #COVID19 viz tool for Canada - designed with @theresabernardo &amp; Kurtis Sobkowich (@OntVetCollege).\nRegardless of what data suggest - follow health expert guidelines; stay home; wash your hands. https://t.co/257gWLZnMH"                                                                                                                                                                                                                   
##  [140] "A fantastic resource from the GC Health Dept for helping children, teens &amp; adults alike process what’s going on in the world around us right now. Staying<U+00A0>#HealthyatHome<U+00A0>includes mind as well as body. Take a listen<U+00A0>https://t.co/4lBwXOlkA1 #WeAreGCconnectEd<U+00A0>on<U+00A0>#TeamKentucky https://t.co/Y7nATRLxvX"                                                                                                                                                             
##  [141] "@BJP4India @narendramodi @nsitharaman @ianuragthakur Sirji, pls send emergency buses to Delhi UP Highway. \nPoor women &amp; children are walking to their hometown.\nThey are migrant labourers, not well educated to understand COVID-19.\nPls do it on compassionate grounds.\nOne time emergency service only\n<U+0001F64F>"                                                                                                                                                                              
##  [142] "The March 27 issue of e-Merriam News is now available!\n\n- See how many of your neighbors have already filled out the 2020 Census! \n\n- Get updates on COVID-19 in JoCo.\n\n- The Merriam Community Center opens in June. Sign up now to become a charter member!\n\n https://t.co/Iqjs7j6Rop https://t.co/uWxznu4FyW"                                                                                                                                                                                      
##  [143] "Anyone who missed the 31 January deadline has four weeks from 26 March to file their 2018-19 return and benefit from the self employment support scheme #COVID2019 #selfemployed"                                                                                                                                                                                                                                                                                                                             
##  [144] "Kathy Griffin was hospitalized for an abdominal infection #Coronavirus symptoms include dry cough/tightness/pain in the chest, trouble breathing and a fever.The hospital was following CDC guidelines which is why they didn’t test her\nhttps://t.co/QjoCiuyAoE via @gatewaypundit"                                                                                                                                                                                                                        
##  [145] "Creative way to fight Corona!  <U+0001F64F>\n\nhttps://t.co/5NfnkUIcKB\n\n#ChineseVirus19 #CoronavirusOubreak #IndiaBattlesCoronavirus \n\n@narendramodi Sir, @PMOIndia \n@ZeeNewsHindi @aajtak @indiatvnews @republic"                                                                                                                                                                                                                                                                                       
##  [146] "This a really good article and puts some perspective to a very difficult time for all. \nThe evidence on Covid-19 is not as clear as we think | The Spectator https://t.co/BE8RiMX1pa"                                                                                                                                                                                                                                                                                                                        
##  [147] "#IndiaFightsCorona do follow the rule of the government. Just stay 21 days at your home to see your 42 years <U+2795>ahead future. You can do lots of work at your home like you can take care of your family. You can help them in their works. You can share your past with them. #COVID19"                                                                                                                                                                                                                 
##  [148] "@realDonaldTrump \nPlease answer this Mr. President. \nWill sole proprietors get a check? We are business people that cannot conduct business if the economy is locked. \nWe need to pay bills too. Utility bills are not stopping because of COVID-19."                                                                                                                                                                                                                                                      
##  [149] "Sowore Alleges Plan By FGN To Inject Him With COVID-19 Over Abba Kyari News Report. https://t.co/EJSTlLQI5z https://t.co/58xhTVT6x3"                                                                                                                                                                                                                                                                                                                                                                          
##  [150] "Request a swab kit to register as a potential blood stem cell donor #COVID19 #\n<U+2066>@DKMS_uk<U+2069>  https://t.co/1G7fNQntrZ"                                                                                                                                                                                                                                                                                                                                                                            
##  [151] "Cried a lot tonight for a really beautiful show that no one will see. Tonight I am not ok. And that’s ok. Tomorrow will be new and tomorrow will be beautiful and God is always good. But Covid-19 can suck a dick. And that is all."                                                                                                                                                                                                                                                                        
##  [152] "It's okay to feel heartbroken. \n\nIt's okay to be angry.\n\nIt's okay to mourn the life you knew before COVID-19. \n\nThis pandemic is disrupting everyone's \"normal\" in so many ways. Give yourself time to grieve."                                                                                                                                                                                                                                                                                      
##  [153] "Senator Jimmy Hickey, Jr. presenting an amendment: \n\nSB2 #1 <U+2013> An act to create the COVID-19 Rainy Day Fund; to transfer funds to the COVID-19 Rainy\nDay Fund; and declare an emergency."                                                                                                                                                                                                                                                                                                            
##  [154] "good thread about the #covid19 situation WRT to the working class vs the interests of capital https://t.co/E99fqDdSFg"                                                                                                                                                                                                                                                                                                                                                                                        
##  [155] "The Governor issued an EO ensuring AZ hospitals increase capacity for a potential influx of patients due to COVID-19. The order requires hospitals to increase bed capacity in the state by April 10, take steps to optimize staffing and maximize resources. https://t.co/lGpwdJlu1g"                                                                                                                                                                                                                        
##  [156] "@CNN @andersoncooper @drsanjaygupta Are the face masks and gowns that are being made from polyester or other material safe for use during Covid-19? I saw where Fanatics is turning the material that they would use to make uniforms into face masks and gowns."                                                                                                                                                                                                                                             
##  [157] "Make no mistake, now more than ever, stay home. #covid19 https://t.co/5MOoBKjp4a"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [158] "Monroe County coronavirus cases now include young child; fourth person dies https://t.co/jAWAhIr4we via @DandC #ROC"                                                                                                                                                                                                                                                                                                                                                                                          
##  [159] "We must maintain vigilance that the current global #pandemic is not used as an excuse to unnecessarily erode #encryption and #privacy laws and permanently remove our protections.\n\nhttps://t.co/dCjcS1OZ1x\n\n#infosec #COVID19 https://t.co/K2FderhGyA"                                                                                                                                                                                                                                                   
##  [160] "The $2 trillion stimulus gives #hospitals $100B to help treat #COVID19 patients but also to make up for lost revenue.\n\nThere are other provisions dealing with patient privacy and over-the-counter drugs.\n\nSubscribe to @BIPrime for all the details: https://t.co/5LwvfM0Eao"                                                                                                                                                                                                                           
##  [161] "I just herd about a cookout. WHY tf you outside DH having a cookout. YOU supposed to be inside. #Blackpeople #CoronaLockdown  #coronavirus"                                                                                                                                                                                                                                                                                                                                                                   
##  [162] "Farmers seeking to find any good news revolving around the new coronavirus disease 2019 (COVID-19) will find some regarding 2020 supplies of seed, agricultural chemicals, and fertilizer. In most cases, supplies should be adequate and even plentiful.  https://t.co/mC5bkuGWwg"                                                                                                                                                                                                                           
##  [163] "BREAKING NEWS: Burundi is the only African country without any case of coronavirus. When the Minister Of Health was asked about the secret behind the zero case of covid-19, this is what he had to say; \"It is very simple. We don't have the testing kits.\"<U+0001F923><U+0001F923><U+0001F923>"                                                                                                                                                                                                          
##  [164] "#covid_19 rant, #neworleans #mardigras #louisiana https://t.co/1L0idKreNh"                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [165] "Is this the kind of stuff of which #CivilWar is made? #Trump did it to #PuertoRico after the disasters there -- now #Washington &amp; #Michigan? Says he told Pence not to call \"governors who aren’t ‘appreciative’ of White House #coronavirus efforts\" #covid19 https://t.co/xd0EJJdTsE"                                                                                                                                                                                                              
##  [166] "If you are a City of Miami resident over the age of 65 or older &amp; are experiencing symptoms of #COVID19, please call 305-499-8767 to schedule an appointment to be tested at Marlins Park. #InThisTogether https://t.co/RMj16Rqo49"                                                                                                                                                                                                                                                                       
##  [167] "@LaraLeaTrump @realDonaldTrump Is Covid -19 biologic weapon from usa?? To kill chinna and irak?? I heard that"                                                                                                                                                                                                                                                                                                                                                                                                
##  [168] "#COVID_19 : Chinese health authorities confirm patient zero 'had sex with bats' https://t.co/fU3c1WMNXi"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [169] "Global chairman @SAFoundationN Mr. @SAfridiOfficial nominates Mr. @iamamirofficial , Mr. @harbhajan_singh and Mr. @CJordan for #DonateKaroNa Challenge to tackle #Covid19 pandemic, support the needy &amp; ensuring #HopeNotOut for all! #Stayhometosavelives &amp; #DonateKaroNa to the cause https://t.co/cO2FvADhW2"                                                                                                                                                                                      
##  [170] "Additional Information Released on SW Iowa COVID-19 Case https://t.co/J8Poeai6Ua"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [171] "Me when I see my next electricity bill\n\n#wfm #coronavirus #COVID19 #QuarantineLife #Quarantine #workingfromhome #workfromhome https://t.co/0rrW34bYVy"                                                                                                                                                                                                                                                                                                                                                      
##  [172] "Many Thank You  #Darling  @PrabhasRaju  @BTR_KTR  @KTRTRS  @TelanganaCMO  @alluarjun  @ssrajamouli  @JAGANTRS @JAYANAVEENTRS @Dr_RakeshTRS @trsharish \nEach And Every One Person  Plz Help This Our India \n#JaiHind\n#COVID2019 \n#caronavirus2020 https://t.co/kxReyWVRHP"                                                                                                                                                                                                                                 
##  [173] "Our MoneySense materials are not just for teachers - there's loads for parents and kids too! #StayHome #COVID2019 #financialeducation https://t.co/8pYop4aIx7"                                                                                                                                                                                                                                                                                                                                                
##  [174] "<U+0001F4A5>All in One about COVID-19<U+0001F331><U+0001F331><U+0001F331><U+0001F64F> https://t.co/nK313jlJPe"                                                                                                                                                                                                                                                                                                                                                                                                
##  [175] "We're gonna kick coronavirus'es ass and save lives, says @NYGovCuomo ! <U+0001F64F> #COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                    
##  [176] "COVID-19 model https://t.co/X7ryLz4S9r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [177] "COLUMN: Four reasons to hope that B.C. will win COVID-19 fight https://t.co/Sdtj8ItoPI"                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [178] "@TheOfficialSBI \nThe Position at RUSU branches is critical after announcement of package by Govt.  Take more steps to protect staff and customers.  Gondhia Branch already closed by govt and all staff under self  quarantine. Protect staff from COVID-19."                                                                                                                                                                                                                                                
##  [179] "Coronavirus is sweeping the globe and the nation, here's what it looks like in California. https://t.co/SRGJ7qzbkh"                                                                                                                                                                                                                                                                                                                                                                                           
##  [180] "i realize many of you loathe The War Machine -- I'm not a huge fan myself -- but in an honest analysis sailors are workers, and you will be hard-pressed to argue that two floating nuclear-powered virus factories is a welcome development https://t.co/bDiK5TXQWn"                                                                                                                                                                                                                                         
##  [181] "Mayor Hurley toured businesses on Kingsway with bylaw officers today, and was pleased to see that they are getting the physical distancing message. \n\n#PhysicalDistancingEqualsSocialResponsibility #COVID19 https://t.co/X9WAjSOOvb"                                                                                                                                                                                                                                                                       
##  [182] "could you please release prisoners from UK HMP PRISONS due to COVID-19\nPrisoner's\nPrison Officer's \nVisitor's\nAre at risk to get infected with Covid-19 There was a case in HMP ."                                                                                                                                                                                                                                                                                                                        
##  [183] "@rfeenstra2 @JanetBrown980 @CKNW @GlobalBC @jillreports @steeletalk Covid-19. Why isn’t there an edit option?"                                                                                                                                                                                                                                                                                                                                                                                               
##  [184] "#Covid_19 Reincarnation is Real and Loading.. This is going to be messy, as next Generation viral Nucleotide (protein) sequence maybe resist Alcohol effect ..\n\n@alykhansatchu https://t.co/dPkTKOvFXD"                                                                                                                                                                                                                                                                                                     
##  [185] "#COVID19 \n\n1524 pts with cancer\n- 12/1524 (0.79%) had SARSCoV2\n- median age 66\n- 7/12 had NSCLC\n- 5 (41.7%) treated with either chemo w/ or w/o immuno (3) or XRT (2)\n\nPt w/ cancer have higher risk (OR 2.3) \n\nAdmission and recurrent visits are risk factors\n\nhttps://t.co/b7lTk3L8iE https://t.co/V61ZDGcW5f"                                                                                                                                                                                 
##  [186] "Hmmm, the conspiracy theory that this virus is a bioweapon is forming shape day by day... We'll see how it goes...\n#StaySafeNigeria #COVID19 #PresidentCovikk #TBJoshua https://t.co/AbIFsP9DdI"                                                                                                                                                                                                                                                                                                             
##  [187] "Quick story:\nWife was using the bathroom.\nDidn't want to go and use upstairs 1.\nOpened door\nPeed a stream in which my cat Jack went right through said stream\nJack is...pissed.\nMoral of the story? Never piss outside with cats during a pandemic\n#COVID2019"                                                                                                                                                                                                                                         
##  [188] "me running home to #selfquarantine when I saw the #coronavirus coming\n\n https://t.co/XqR8QxP49w"                                                                                                                                                                                                                                                                                                                                                                                                            
##  [189] "@SaharaReporters @followlasg @jidesanwoolu What am seeing in the picture is not even enough  for a local  government, talk less of a whole  state, I don't want to hear story after the covid 19 saying  the project is executed with so so so billion naira"                                                                                                                                                                                                                                                 
##  [190] "@CGBadley @ZoeHowerska @BeverleyHughes1 @Alan_Haselhurst @davegoddardsk2 How terribly deflating. People who operate through a personal service company will receive vanishingly small amounts through this scheme.\n\nhttps://t.co/wdmbphpcbq"                                                                                                                                                                                                                                                                
##  [191] "Wildlife consumption ban is insufficient\n\n#wildlife #COVID2019 https://t.co/2fxfNMsihG"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [192] "This is a true leader. #ThankYouGovCuomo #COVID19\n#coronavirus\nhttps://t.co/LTT0Oao4F2"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [193] "Free tax help postponed #coronavirus #COVID19NC  https://t.co/jw1xfIV2pE"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [194] "bad bunny #CoronaLockdown #StarTrekPicard #COVID19 #DeborahBirx #CoronaUpdate https://t.co/5taMFzVAWt"                                                                                                                                                                                                                                                                                                                                                                                                        
##  [195] "26/3: COVID19 death rate continues climbing\n\nWorld wide:  4.5%\n\nDeath rate comparison (and still rising in each of these countries)\n\nItaly:      10.2%\nUK:         4.95%\nUSA:         1.4%\nAus<U+0001F998>:   0.46%\n\n#covid19"                                                                                                                                                                                                                                                                     
##  [196] "#coronavirus confusion... wtf is going on??? https://t.co/prgdpMqC4m"                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [197] "@ElmaAksalic Anyone who dies from here on out will be blamed on the #COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [198] "Published on: 03/27/2020\n\nThis Message Is Especially For\n\"The Make America Great Again \nSupporters!\"\nHow Would You Feel, If I Told You\nThat \"The MAGA Campaign\" Didn't\n \"Include YOU?  That You Would Become Part Of The\"Casualty Of\n #CORONAVIRUS, Making Room \nFor Rich &amp; Young Only?"                                                                                                                                                                                                   
##  [199] "Somethings to ponder..There are things in the Covid-19 virus that didn’t happen in “nature”. With that said, they tried to get Trump with Russian collusion, then impeachment and now they are trying to crash his economy. They will stop at nothing."                                                                                                                                                                                                                                                    
##  [200] "@IAGovernor The optics on your press conferences from a National Guard bunker everyday feels like a cowardly contradiction to Iowans who are still going to work everyday?\nThe covid-19 numbers will not be falling off next week or the following. Wake up."                                                                                                                                                                                                                                                
##  [201] "@PrabhatChandrat @RPF_INDIA @rpfcr @CMOMaharashtra @PiyushGoyal @PiyushGoyalOffc @narendramodi @PMOIndia @HMOIndia All type of training has been postponed till further order at Valsad training centre due to COVID-19 from 22.03.2020."                                                                                                                                                                                                                                                                     
##  [202] "Ontario Libs/NDP must really hate this:   Doug Ford rises to the occasion again &amp; is ahead of the curve\n\nhttps://t.co/HL8QA6i4iw\n\nhttps://t.co/HE3a9ZslKh"                                                                                                                                                                                                                                                                                                                                            
##  [203] "Introducing The COVID-19 High Performance Computing Consortium\nhttps://t.co/9L8Wn0Z2Ms #supercomputing #washington"                                                                                                                                                                                                                                                                                                                                                                                          
##  [204] "Maze hackers didn't live up to their word to stop targeting medical organizations... surprise, surprise. The #ransowmare victim this time? A #COVID vaccine test lab. #StayCyberFit #cybersecurity #healthcare \nhttps://t.co/fApYtt3zFf"                                                                                                                                                                                                                                                                     
##  [205] "With superstars pulling back and the situation around COVID-19 continuing to cause huge uncertainty, should #Wrestlemania go ahead?"                                                                                                                                                                                                                                                                                                                                                                          
##  [206] "I’ve accumulated data around COVID-19 spread in Long Beach and created a chart that will update daily. Hope you find it helpful.\nhttps://t.co/tM5leU8sG8\n#coronavirus #longbeach #COVID19"                                                                                                                                                                                                                                                                                                                 
##  [207] "How will leviathan expand<U+2014>temporarily and then permanently via the ratchet effect<U+2014>in response to #COVID19? It’s too early to make any definite predictions, but we can make educated guesses based on experience and our knowledge of how governments work. https://t.co/0GkLqtPsZW"                                                                                                                                                                                                           
##  [208] "Coronavirus could be controlled in 13 weeks if 80 per cent of people stay home, data sugges…STAY HOME https://t.co/9oh4ZdbaC0"                                                                                                                                                                                                                                                                                                                                                                               
##  [209] "More people RECOVERING from #COVID2019 than dying from it GLOBALLY and in the US. Here are the numbers from the CDC (updated every few hours).\nDon't trust the failed testing!!\nDon't believe the economy driven left msm panic!\n#LiberalHypocrisy \n#DemsDontCare \n#ChinaLiedPeopleDied https://t.co/HyYYNPhYof"                                                                                                                                                                                         
##  [210] "@e3_waitfor NOPE! Good grief, dude. Math - currently, there are 27, 352 COVID-19 DEATHS in the US. That's beginning in April 2020, so about three months. That's twice the cases of COVID-19 in half the about of time as H1N1. \nsource: https://t.co/lLHmsRjfs9\nI'm done with you."                                                                                                                                                                                                                        
##  [211] "@dougducey Arizona has reported 665 cases of COVID-19 and 13 deaths as of Friday (March 27), according to the Arizona Department of Health Services (ADHS)."                                                                                                                                                                                                                                                                                                                                                  
##  [212] "Government boosts wage subsidy to 75% for small, medium businesses to avoid layoffs during COVID-19 crisis https://t.co/oHwxAcZcjO https://t.co/03Wq3sX4D8"                                                                                                                                                                                                                                                                                                                                                   
##  [213] "@SylvesterTurner Mayor, you are right that we need to band together. But not for the same reasons. \nWe need to band together to fight the robbing of freedoms at an unprecedented level during this crisis. \nCovid 19 so far has been a fear based mind game tricking us into giving up our freedoms"                                                                                                                                                                                                       
##  [214] "What are early #coronavirus drug trials showing?\n\nAn HIV pill had little benefit in drug trials on #COVID2019 patients in China while a flu medication showed some promise. More via @business: https://t.co/z472EV3w1H https://t.co/5Gonl5rzzF"                                                                                                                                                                                                                                                            
##  [215] "@felipem_jose @pinewoodsdojo @HewittNewton @njterrie @john_godish @sdauwm @foggybottomgal @gumboqueen3030 @airbagmoments @RockyMountViews @MarilynT4 @Ironyrulesall @Irishgawdess @tess_tess2 @JamesEFinch @StevePPhill @matbo2 @Out5p0ken @InhellJourney @shossy2 @JustWhatNowWhy @BreSta7 @dougducey That's great! Is there a problem with COVID-19 in Mexico? \n<U+0001F60E><U+270C><U+FE0F><U+270A><U+0001F44D>"                                                                                          
##  [216] "Finally <U+0001F44F><U+0001F3FE> The House just passed historic $2 trillion stimulus bill by voice vote. President Trump is expected to sign it this afternoon. @WashInformer  #StimulusPackage2020 #coronavirus"                                                                                                                                                                                                                                                                                             
##  [217] "On Fri 3/20/20\n10000+ new confirmed\n100+ deaths\n*\n1 week later TO DAY\n*\nOn Fri 3/27/20\n20000+ new confirmed\n500+ deaths\n\n#covid19\n#coronavirus\n\nwish i could tell you what im thinking(probably wouldn't matter)"                                                                                                                                                                                                                                                                                
##  [218] "At the begining of the Cuban Revolution there were 3 000 doctors left, most of them in Havana. Now there are 95 487 active doctors &amp; 85 732 nurses all over the country.That is why #CubaSalvaVidas,#COVID2019,#Cuba https://t.co/w2oufdUQQD"                                                                                                                                                                                                                                                             
##  [219] "I’m starting to get the feeling that a lot of people don’t know or haven’t realised that a ventilator is more commonly known as life support. AKA, a medically induced coma. AKA the machine is keeping you alive. This is not a drill, STAY AT HOME. #COVID19 https://t.co/QpyQNml3lJ"                                                                                                                                                                                                                    
##  [220] "@HillaryClinton Don’t you have the #coronavirus  to catch or something?? #goaway #shhhh"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [221] "Callers flood dispatch lines to report those not following stay-at-home-order: police (via @oliviaprentzel)\nhttps://t.co/bmTOycv0yb\n#COVID19Colorado #coronavirus"                                                                                                                                                                                                                                                                                                                                          
##  [222] "By my math #COVID19 will be around and be a risk for at least 4 more years minimal.  Probably more 5-7. And 3 years after its gone is when the economy starts to come back.  I don't think it will only take a year to kill #COVID19, people are too greedy and so it will spread etc."                                                                                                                                                                                                                       
##  [223] "@umerjaffer You need to see what elitist Lahoris are doing in covid-19 times? So so disgusting"                                                                                                                                                                                                                                                                                                                                                                                                               
##  [224] "Now that it’s been a bit longer, \n\nthose who thought there would be babies\n\nbc of #COVID2019 , you standing by that? \n\nNo haircuts, sweatpants, overeating, too much time together...<U+0001F616>\n\n#trainwreck #teamdivorce"                                                                                                                                                                                                                                                                         
##  [225] "In Missouri @BigElad Elad Gross is running an agressive bid to become the state's Dem nominee #attorneygeneral -- focused lately on criticizing the Governor of the state over #coronavirus #covid19 response more than the incumbent AG.  Is the Gov being too slow? https://t.co/97hsfDc8Kb"                                                                                                                                                                                                                
##  [226] "Ready to seize an opportunity! <U+0001F923><U+0001F923><U+0001F923> #SpreadCheerNotFear #COVID19 https://t.co/CwfoVQaVpy"                                                                                                                                                                                                                                                                                                                                                                                     
##  [227] "We're living in some weird times, folks. This is at a Subway.\n#COVID19 #CoronavirusUSA https://t.co/l9vAOlWsX4"                                                                                                                                                                                                                                                                                                                                                                                              
##  [228] "Fox Business said it had “parted ways” with the anchor Trish Regan, weeks after she dismissed #coronavirus concerns as a “scam” fueled by enemies of President Donald J. Trump.\nTrish Regan, Fox Business Host Who Dismissed Virus Concerns, Departs https://t.co/3ZBTTbONGM"                                                                                                                                                                                                                            
##  [229] "can't believe that we are experiencing future history<U+0001F937><U+0001F3FB><U+200D>♀<U+FE0F> \n#COVID2019 #PrayForWorld"                                                                                                                                                                                                                                                                                                                                                                                   
##  [230] "<U+0001D5D6><U+0001D5FC><U+0001D5FF><U+0001D5FC><U+0001D5FB><U+0001D5EE><U+0001D603><U+0001D5F6><U+0001D5FF><U+0001D602><U+0001D600> <U+0001D604><U+0001D5FC><U+0001D5FF><U+0001D5F9><U+0001D5F1><U+0001D604><U+0001D5F6><U+0001D5F1><U+0001D5F2> <U+0001D5F9><U+0001D5F6><U+0001D603><U+0001D5F2> <U+0001D600><U+0001D601><U+0001D5EE><U+0001D601><U+0001D5F6><U+0001D600><U+0001D601><U+0001D5F6><U+0001D5F0><U+0001D600> <U+0001F30E>\n<U+0001F1FA><U+0001F1F2>   <U+0001F1EE><U+0001F1F9>   <U+0001F1E8><U+0001F1F3>\nTotal Cases:  596,350\nNew Cases:  +64,485\nDeaths:          27,343\nNew Deaths: +3,270\nRecovered:  133,057\n #CoronavirusOutbreak #covid19 #GoCorona #hope @who @nytimes @timesofindia\n18:36 PST"
##  [231] "No prisoners deserve to contract COVID-19 because of prisons’ lack of access to proper hygiene. Especially those kept in prison because they can’t make bail.\n \nHelp @RFKHumanRights and the @bailfundnetwork to provide #MassBailOut! https://t.co/aNn5abmCsV"                                                                                                                                                                                                                                           
##  [232] "A new startup @JupeInc is pitching a modular building solution to the #COVID19 crisis. Looks great, right?  I am going to be as constructive as I can. (1/x) https://t.co/EdHqUNlpVd"                                                                                                                                                                                                                                                                                                                         
##  [233] "It’s important to be honest at the moment. Please don’t unnecessarily add to the fear lots of people are feeling right now. #COVID2019 <U+0001F427> https://t.co/ZHbhkcWvgC"                                                                                                                                                                                                                                                                                                                                
##  [234] "So many Canadians couldn’t understand “go home and stay home for 14 days if you’ve travelled” Trudeau had to make it law and impose punishments. \n\nIt’s not that hard. Stay home and you could be saving lives.   \n\n#StayHome #coronavirus https://t.co/o8U2TO0q6R"                                                                                                                                                                                                                                  
##  [235] "#COVID19 #CORONAVIRUS PANDEMIC\nLast updated: March 28, 2020, 03:41 GMT\nCase Graphs<U+00A0>-<U+00A0>Death Graphs<U+00A0>-<U+00A0>Countries<U+00A0>-<U+00A0>Death Rate<U+00A0>-<U+00A0>Incubation<U+00A0>-<U+00A0>Age<U+00A0>-<U+00A0>Symptoms<U+00A0>-<U+00A0>News\n\nCoronavirus Cases: 597,267 view by country\nDeaths: 27,365 <U+0001F480>\nRecovered: 133,363\n@WORLDOMETERS<U+0001F4CB>\nhttps://t.co/au1t4HcfCE"                                                                                       
##  [236] "I’d be amazed if @educationgovuk<U+2069> stuck to the Wave 1 T-Level delivery timetable. It is not only a question of college delivery. Employers will struggle to provide quality work placements post-#CoronaCrisis @GavinWilliamson<U+2069> <U+2066>@GillianKeegan<U+2069>  https://t.co/hVOhWrPsQ9"                                                                                                                                                                                                      
##  [237] "IT services sector faces armageddon as COVID-19 lockdown forces project cancellations <U+2013> analysts \nhttps://t.co/mkLk39Uzvu"                                                                                                                                                                                                                                                                                                                                                                            
##  [238] "More than 100 workers at Boston area hospitals have tested positive for COVID-19.\n\nStory is paywalled--I bought 6-month intro subscription last week--but fear is that these infections are from community spread, *not* from contact with patients. \n\nhttps://t.co/qLEqXRwLrl"                                                                                                                                                                                                                           
##  [239] "@brianmoore666 They are all 6’6” away from Trump. He’s probably the only one with BSE. As for Covid-19...?!"                                                                                                                                                                                                                                                                                                                                                                                               
##  [240] "Thank You NHS <U+0001F469><U+200D><U+2695><U+FE0F> <U+0001F468><U+200D><U+2695><U+FE0F> <U+0001F3E5> \nTo all frontline health &amp; care staff.\n#coronavirus #NHSThankyou https://t.co/wEqKeHxttO"                                                                                                                                                                                                                                                                                                          
##  [241] "@peterdaou @RebeccaforWA #coronavirus #COVID19 is the opportunity to make shedloads of money <U+0001F4B0> <U+0001F4B0> <U+0001F4B0> that Right Wing Capitalists have been waiting for and manipulating things towards. \n\nThey are ecstatic. It is chilling."                                                                                                                                                                                                                                                
##  [242] "How to distinguish COVID-19 symptoms from allergies and the common cold  https://t.co/t1ZLtGMtAi"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [243] "Gotta watch out now Im sure they are going to spread COVID-19 too https://t.co/xUkaTLJQWJ"                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [244] "Looks like the Mexicans will build the wall. \n\nCovid-19: Mexicans demand Americans stop crossing border as it spreads coronavirus https://t.co/kqFboE8eDQ"                                                                                                                                                                                                                                                                                                                                                  
##  [245] "The blockade of Gaza is collective punishment which is illegal under International law. #SaveGazaFromCorona #COVID_19 #Act4Palestine  https://t.co/WQtb0JNaof"                                                                                                                                                                                                                                                                                                                                                
##  [246] "France to use the antimalarial - antibiotic regimen as a cure for covid-19.\n\nThank god"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [247] "@MaamSyj @ArbetBernardo In a live interview, duque said Marikina testing center is at 6th floor of cityhall. That's #FakeNews. Mrkna cityhall has no 6th flr and their #COVID19 Testing lab is at city health center bldg with own elevator. New bldg yan. Kulang na lng pasyente, ospital mag-operate yan https://t.co/H7mSnSZvjW"                                                                                                                                                                           
##  [248] "It’s hard to imagine how this crisis won’t be the end of Conservatism.\n\nLook at every piece of Coronavirus news from the USA and UK;\n\nFearing facts kills. Austerity kills. Unfettered capitalism kills.\n\n#COVID19 #Covid_19 #coronavirus \n\n#ResignTrump #Resign45 #ResignBoris"                                                                                                                                                                                                                    
##  [249] "Take allyuh boff. \n\nOnly a set of games....political games. \n\n#COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [250] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/yAUElNulUe via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [251] "The #COVID<U+30FC>19 pandemic has managed to do what various wars could not: close restaurants and entertainment spots across #Lebanon. It's an economic gut punch at a time when the country is already mired in the worst financial crisis in its history. https://t.co/Dw24jcCLuX"                                                                                                                                                                                                                         
##  [252] "#c4news gove will take over he is the Manchurian candidate of covid 19.."                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [253] "There will come a point in the next week when there will be no chocolate in my house. This may be a problem.\n#QuarantineLife #COVID2019"                                                                                                                                                                                                                                                                                                                                                                     
##  [254] "covid 19.webm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [255] "Guest host @moniquebeaudin is joined by health reporter @sharon_kirkey on the latest @TenThreePodcast: Why a COVID-19 vaccine is a moral responsibility \nhttps://t.co/P63TvNraFf"                                                                                                                                                                                                                                                                                                                            
##  [256] "This is hitting the medical community particularly hard. Probably due to viral load. To everyone on the front lines: we appreciate you so much. Pls stay safe. #COVID19 https://t.co/0w0xoQVDFT"                                                                                                                                                                                                                                                                                                              
##  [257] "A possible treatment for COVID-19 and an approach for developing others https://t.co/YkulvpoHBP"                                                                                                                                                                                                                                                                                                                                                                                                              
##  [258] "This is pathetic. During a time of crisis a real POTUS doesn’t act like this. Trump is president in name only. \n\nThe media is reporting facts about COVID-19, &amp; all he can do is gloss it over lie &amp; complain like a petulant child. \n\nHe needs to grow up! https://t.co/wdWywlo8mi"                                                                                                                                                                                                             
##  [259] "I have a student (@AshleyKSmalls) looking at how live streaming is fostering participatory communities during #COVID19. She’s looking to interview people who live stream themselves playing video games on Twitch for a class project. @stephanieorme @ferchauda @FusRoDoc @Nerd_901"                                                                                                                                                                                                                       
##  [260] "Their launch &amp; book tour is cancelled due to COVID-19\nBut at least we all have time to work our way through lists like this now... maybe @eatlikeanimals will spend lock down on a sequel! https://t.co/hJdIu0ttTm"                                                                                                                                                                                                                                                                                      
##  [261] "@danitasteinberg Fun Fact: Ferrets have respiratory systems very similar to #COVID19 which is why scientists are using them to test potential vaccines. Not sure if ferrets can get #coronavirus but it sounds like they may be able to <U+0001F914> *shrug*"                                                                                                                                                                                                                                                 
##  [262] "Even if COVID-19 doesn't kill you, it leaves you with significant damage to your lungs. We have no choice but adhere to GoK directives and orders. Coronavirus is worse than #PoliceBrutality folks, I have seen it first hand. https://t.co/Eo0Pif9iJn"                                                                                                                                                                                                                                                      
##  [263] "You are not alone. It’s ok to be feeling anxious and worried. Please keep your eyes peeled for your uni providers guidance and stance and for up to date information keep checking back with the NMC covid 19 for students guidance. #COVID2019 #CYPStNN https://t.co/etLNcCpA6o"                                                                                                                                                                                                                            
##  [264] "This action by Dr. @Akwangaderek is commendable. The last thing Southern Cameroons needs now is more transmissions of #coronavirus. I hope the (many) other Ambazonian groups follow his lead. \nhttps://t.co/L0EEsvJtn6"                                                                                                                                                                                                                                                                                     
##  [265] "Imagine Trump thinking our superhero would want to step into the <U+2623><U+FE0F>HOT ZONE<U+2623><U+FE0F> formerly known as the WH. \n\nShe'll take the benefits for workers + families and the provisions preventing Trump + his progeny from getting their grubby little fingers on the funds, TYVM.\n\n#coronavirus https://t.co/pSXRgZjlqq"                                                                                                                                                               
##  [266] "@RepThomasMassie \nResign now!\nYou can try to kill off the Dems who will vote for the bill by forcing them to appear. #Covid-19 won't save your party. \nThe #GOP is extinct the American people will kill it in the next two elections."                                                                                                                                                                                                                                                                    
##  [267] "me struggling to juggle all the different #covid19 instructions from the government https://t.co/IZCOLHlfpB"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [268] "Read our March 27 #coronavirus update: https://t.co/mDGFiymOp6\n\nThere are 12 positive cases &amp; 170 confirmed negative tests in #Brunsco. @CDCgov recommends that those who think they have #COVID19 &amp; have mild symptoms stay home &amp; call their doctor for advice. Read update for more. https://t.co/VOMqnzGllP"                                                                                                                                                                                
##  [269] "hey Liberals, as far as mocking the fact that We’re number one for most Covid-19 cases, how about practicing social distancing by staying the fuck off of Twitter. You are not helping anybody by any means. By showing your TDS, you’re more dangerous at the moment."                                                                                                                                                                                                                                     
##  [270] "It means @ImranKhanPTI decision to hand over each daily wager a amount of 3000/ Rs was correct? #imrankhanPTI \n#coronavirusinpakistan \n#COVID2019 https://t.co/XWAz7LxnMK"                                                                                                                                                                                                                                                                                                                                  
##  [271] "if you read AI new media these days...you might get the impression that #COVID19 is the only use case in the entire industry"                                                                                                                                                                                                                                                                                                                                                                                 
##  [272] "Top Pandemic Related Games on the Internet #coronavirus #covid19 #pandemic #internet #games https://t.co/IEUejlzoRp"                                                                                                                                                                                                                                                                                                                                                                                          
##  [273] "Here is my query on counter ticket cancellation during the restriction days due to COVID 19. As I have booked a counter ticket on 9th April 2020, do I need to visit railway counter in between these days or shall I be able to do so even after the date of journey passed? #IRCTC"                                                                                                                                                                                                                         
##  [274] "An American tragedy,#POTUS lying birther #Trump an incompetent tool, completely void of human decency.  #MSNBC #Resist #COVID19  #CoronaVirusUpdate #LastWord"                                                                                                                                                                                                                                                                                                                                                
##  [275] "The us about to be hit real hard #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [276] "Glasses Ned needs to wear with no glass in them. They have tape on the inside near his nose to help his eyes focus until he sees the optometrist...after this covid-19 is done https://t.co/E6S3oAXZX4"                                                                                                                                                                                                                                                                                                       
##  [277] "@DrEtiquette @gaye_gallops You need to see this. And this is also the reason why the US <U+0001F1FA><U+0001F1F8> MSM wants @realDonaldTrump not to say #COVID2019 as the #ChineseVirus. https://t.co/Bdm6ZsfaLR"                                                                                                                                                                                                                                                                                              
##  [278] "Codewords and advice for women trapped in abusive relationships during #Isolation from @SolaceWomensAid #Coronavirus #COVID19 #DomesticAbuse https://t.co/qRUzW2Pn1R"                                                                                                                                                                                                                                                                                                                                         
##  [279] "While the masses are watching #Ramayan and getting drugged on religion , poorly established methods in #COVID2019 treatment and red-tape will kill millions. While demo will ask everyone to #ThaliBajao https://t.co/BHeHiHYbQs"                                                                                                                                                                                                                                                                             
##  [280] "We are delivering seeds all over the country so that food production does not come to a halt, and are doing our part during this pandemic, we request you to do yours. Stay at home! (2/2)\n\n#Mahyco #COVID19 #CoronaVirus #SocialDistancing"                                                                                                                                                                                                                                                                
##  [281] "Question for @drsanjaygupta or dr Fauci #CNNTownHall . Are people with the history of pneumonia, frequent bronchitis or asthma more susceptible to COVID-19?"                                                                                                                                                                                                                                                                                                                                                 
##  [282] "Our broken immigration system has resulted in a human rights crisis at our Southern border -- with detainees at Texas immigration facilities especially vulnerable to #COVID19. https://t.co/117YO954kB"                                                                                                                                                                                                                                                                                                      
##  [283] "Remember how everybody bitches about no real public transportation options in LA and how everybody drives alone in cars instead? In contrast the NYC subways carries 5.5 million riders per DAY and remains open to this day. NY Metro area has half the #COVID19 cases in the country."                                                                                                                                                                                                                      
##  [284] "Virginia Pastor Who Said COVID-19 Was Anti-Trump “Mass Hysteria” Dies of Virus https://t.co/e8amqrxJYi"                                                                                                                                                                                                                                                                                                                                                                                                     
##  [285] "@deedeedagumby1 @agoodson93 @KajiDousa So, give me a link to the people who went blind or died when treated by a doctor with Chloroquine for COVID 19. I want a link now."                                                                                                                                                                                                                                                                                                                                    
##  [286] "@DerekBrunson @AungLANsang @danhardymma @DavidcBranchMMA @AngieOverkill Top 5 cheat meals during #coronavirus answer &amp; tag 5 \n1. Cookies \n2. My Kids Snacks\n3. Ice Cream\n4. Cereal with Protein \n5. Jalapeno Cheetos \n@KendaPerez @jarchmma @IKEVF @heroheber @georgimma"                                                                                                                                                                                                                           
##  [287] "Yep. Well done, @realDonaldTrump. USA is winning again - #1 Total Cases #COVID19 #TrumpVirus https://t.co/x0gjYSiewb"                                                                                                                                                                                                                                                                                                                                                                                         
##  [288] "PM Modi Deploys Ministers On COVID-19 Frontline To Defeat Pandemic: Report - https://t.co/II6XsDHiXb"                                                                                                                                                                                                                                                                                                                                                                                                         
##  [289] "Small businesses hit by #coronavirus: '#SharkTank' star @BarbaraCorcoran answers common questions to help via @GMA https://t.co/1MpVLhQCNC #SmallBiz #SmallBizRelief #SmallBusiness #COVID19"                                                                                                                                                                                                                                                                                                                 
##  [290] "@SyedaMahinu @KaleechBaig There's no established correlation between the variations in temp &amp; spread of covid-19."                                                                                                                                                                                                                                                                                                                                                                                        
##  [291] "Business leaders and entrepreneurs in these difficult times should display the following qualities:\n\n1- display optimism\n2- motivate people from inside out\n3- have a vision\n4- practice empathy\n\n#leadershipadvice \n#COVID2019 \n#Startup_lawyer"                                                                                                                                                                                                                                                    
##  [292] "When will it slow down? #coronavirus https://t.co/GPgt1C83LY"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [293] "More US citizens have the virus than in China.  We won!! #coronavirus #Trump"                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [294] "We’re still open online! Place a custom order, or snag one of our Stronger Together t-shirts! Five dollars from every stronger tee sold will be donated to organizations helping families effected by covid-19! Visit https://t.co/ff1MYXEQeI to get one today! https://t.co/slL0pu6nes"                                                                                                                                                                                                                     
##  [295] "@LoveLoriM I asked the same question yesterday in anticipation of the smaller stimulus we will receive.  https://t.co/82ly58RwR7"                                                                                                                                                                                                                                                                                                                                                                             
##  [296] "City of Kawartha Lakes now has 27 COVID-19 cases https://t.co/t2imJxJlpW"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [297] "Seriously <U+2066>@TALaustralia<U+2069> ?  As a long term customer I, and I bet many others, will change insurers once we are through this storm ...Insurance giant TAL moves to exclude people who die from COVID-19, leaked policy reveals https://t.co/sZtZLoiO7d"                                                                                                                                                                                                                                         
##  [298] "I think our Sadie might be taking self-isolation a little too literally. Still, better to be safe than sorry! #HamOnt #selfisolation #sociallydistant #Covid_19 #StayHome https://t.co/pzZW6quu56"                                                                                                                                                                                                                                                                                                            
##  [299] "#bloomerg article is lie  the study's \"Conclusions: The prognosis of common COVID-19 patients is good\" Did they even read it?  #warroom2020 @Potus @thegreatawakening https://t.co/f91q072BDg https://t.co/fwVIcdkRwh"                                                                                                                                                                                                                                                                                      
##  [300] "@LucPicat @JeremyKonyndyk Yes. This is the core measure. Also they eventually sent healthcare teams from other provinces to help Wuhan, as well as expanding COVID-19 screening and treatment facilities (the 1000-bed makeshifts). Commitment in all levels of the government, money, as well as speed count."                                                                                                                                                                                               
##  [301] "@MrAndyNgo Trudeau cares more about the UN than about Canada. #wuflu  #coronavirus https://t.co/OgEpdoTes4"                                                                                                                                                                                                                                                                                                                                                                                                   
##  [302] "#US #coronavirus #cases #top 100,000, #doubling in three days\n\nhttps://t.co/0tdWv7CKR9 https://t.co/Sn9ygXwd5g"                                                                                                                                                                                                                                                                                                                                                                                             
##  [303] "\"I've never signed anything with a 'T' on it,\" #Trump said while signing the $2.2 trillion bill, with the federal government attempting to stabilize the economy and with millions of Americans suddenly out of work amid the #coronaviruspandemic. #coronavirus #covid19 #usa #congress https://t.co/zks0PgnltG"                                                                                                                                                                                           
##  [304] "Give Our Brave First Responders Support While They Fight COVID-19! https://t.co/iv8jSYdeK7"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [305] "@waluwande @EtalePhilip Plus all barbers have a lot of stories to keep your attention thus spitting a lot .Me after the eradication of Covid-19 I go shave https://t.co/1XNZ61iiKl"                                                                                                                                                                                                                                                                                                                           
##  [306] "One of the most telling things in this #COVID2019 crisis is that Americans are buying guns and ammo. Look at us. We are a nation overfed and wasteful people. There is obviously enough of any necessity to go around, but people are hoarding &amp; preparing to kill to defend their hoard"                                                                                                                                                                                                                 
##  [307] "@brithume Hey Brit, I've eaten Lucky Charms for breakfast every day to ward of Covid 19. So far I'm okay."                                                                                                                                                                                                                                                                                                                                                                                                    
##  [308] "It won't prevent the coronavirus, but it is a nice way to relax. #COVID19 https://t.co/1dIvXJnhOP"                                                                                                                                                                                                                                                                                                                                                                                                            
##  [309] "Finally Trump \"invokes\" the #DefenseProductionAct #COVID19 #coronavirus #CoronavirusOutbreak #StayHome #WhiteHouseBriefing #TrumpPressConf #deadlinewh #MSNBC #TheBeat #CNN #FoxNews #cspan #OANN"                                                                                                                                                                                                                                                                                                          
##  [310] "I haven’t been outside for 9 days but this I just had to do. @NHSuk you are amazing thank you for everything you are doing we owe you everything. From the bottom of our hearts thank you! #clapforourcarers #thankyou #coronavirus #carers #nhs https://t.co/RULzqybHEM"                                                                                                                                                                                                                                    
##  [311] "Unequivocal unanimous opinion: base decisions on science, not the stock market. Keep isolating, stay home. This is not a time for political rhetoric, this is a time to listen to the scientists. #coronavirus #medicalpanel #streamthebern"                                                                                                                                                                                                                                                                  
##  [312] "<U+2066>@hanitweet<U+2069> has visited the most impoverished areas in Korea to see how they’re coping w #Covid19\n“The people pushed back in this world were dragged to the frontlines and got stabbed first. Invisible virus exposed the invisible people...” it writes. https://t.co/XmPzUBRYTy"                                                                                                                                                                                                         
##  [313] "The myth that COVID-19 kills only vulnerable/old ppl is getting people killed.\n\nYoung ppl taking risks they shouldn't - ignoring social distancing orders &amp; not taking care of themselves when they get sick. \n\nThis dad didn't deserve this. \n\nhttps://t.co/2YNTsrqqON"                                                                                                                                                                                                                            
##  [314] "@KDVR  Can I please come on your show and talk about #covid19 as a blind person? About how much more stuff I have to touch in the world and therefore how much more I could be exposed to this virus? People need to hear these perspectives. I can do a skype video chat. #pwds"                                                                                                                                                                                                                             
##  [315] "#FWICE President BN Tiwari writes a mail to #AmitabhBachchan seeking financial help in the times of #lockdown due to #coronavirus. The actor is yet to reply. @SrBachchan \n\nhttps://t.co/grxeEZrmN7"                                                                                                                                                                                                                                                                                                        
##  [316] "#Calfrac cuts capital spending  almost in half and workforce by 40% due to #COVID-19 and oil price war #abpoli https://t.co/OHS3TXQDa0 via @albertapress"                                                                                                                                                                                                                                                                                                                                                     
##  [317] "The latest video sent from the Government &amp; NHS.\nStay Home, Save Lives\n#coronavirus #doncaster #bassetlaw #mexborough https://t.co/jdMgvbpLqq"                                                                                                                                                                                                                                                                                                                                                          
##  [318] "@kathygriffin @latimes @TheCDZ Have you ever seen a woman in full blown labor (w/o drugs) take a selfie &amp; tweet? The answer is no. That’s bearable pain, but while in “unbearable pain” you managed to do that? #Attention #COVID2019 #liar #neverwas #notfunny"                                                                                                                                                                                                                                       
##  [319] "Well done NHS <U+0001F49A><U+0001F44F><U+0001F3FD><U+0001F1EC><U+0001F1E7> #NHSheroes #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [320] "@Leroy_Brown7 @ComfortablySmug LOL!! It's either the COVID-19 or the beers, but either way, I'm a sappy Irishman."                                                                                                                                                                                                                                                                                                                                                                                            
##  [321] "@shannonrwatts Jared was in charge so we could become #1 in COVID-19 cases.  Now he's working on the death part."                                                                                                                                                                                                                                                                                                                                                                                             
##  [322] "Very sad that Kenya joined the \"statistics\" when 1st #COVID19 related death was confirmed."                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [323] "#Covid19 <U+0001F1EC><U+0001F1E7> support schemes https://t.co/KaT4U8CZRf"                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [324] "During these testing times, #EuropeOnlinePharmacy market is experiencing an exponential surge in demand. Read more about this market https://t.co/4JPq2yOfhC\n#MarketResearch #MarketAnalysis #OnlinePharmacy #Telehealth #OnlinePharma #COVID19 #Coronavirus #ZurRoseGroup #SHOPAPOTHEKE https://t.co/OmVXF0stOM"                                                                                                                                                                                            
##  [325] "COVID-19: Nnamdi Kanu announces donation of N50m to fight COVID-19 https://t.co/z5R00lFCac"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [326] "WHEN YOUR AT WORK REPPING THE KEYWORKER LIFE TRYING TO ENJOY AS MUCH AS YOU CAN WHILST OUT... #COVID19 \n\n#TAAARKDATINNG #SKINTUUTEEET #BIGUYAAHCHESST #THATMOMENT <U+0001F601><U+0001F44A><U+0001F3FD><U+0001F44F><U+0001F3FD> https://t.co/Naxes4ZJrl"                                                                                                                                                                                                                                                     
##  [327] "Thank you to all the key workers <U+0001F499><U+0001F31F><U+0001F44F><U+0001F3FB> #NHS #Grateful #ClapForCarers #Britain #COVID2019 #CommunitySpirit https://t.co/PDkE7Dyf8C"                                                                                                                                                                                                                                                                                                                                 
##  [328] "All this #Covid19 got me thinking if the series @Gotham. For some strange reason it keeps floating in my head."                                                                                                                                                                                                                                                                                                                                                                                               
##  [329] "@leeds24hrlocks Hi, you can find information on this here: https://t.co/3hl6kV3FG8. Darryl"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [330] "COVID-19 India: This is how local police punish anyone who violates nation’s 21-day lockdown https://t.co/G2QNzHvb2r https://t.co/jhNvuB4XRe"                                                                                                                                                                                                                                                                                                                                                                
##  [331] "Importance of why social distancing and isolation matters if you may have been exposed to the COVID-19. Stay safe and stay indoors to prevent the spread and don't be that one person who may be the reason thousands others got sick.\n#COVID19 #StayHome\nhttps://t.co/Chiunbl7TR"                                                                                                                                                                                                                          
##  [332] "It is important to practice kindness during the COVID-19 pandemic because due to the uncertainty of outcomes, it may cause many people to experience anxiety and fear #TEARtalk"                                                                                                                                                                                                                                                                                                                              
##  [333] "A sore throat isn't a symptom to Covid-19 ;  he probably just has a sore throat.\n\n                                          <U+275B>   Yes.   <U+275C> https://t.co/QGyKwHemXv"                                                                                                                                                                                                                                                                                                                             
##  [334] "#COVID19 #CripTheVote\nDisability Rights Activist @missrusset2006 Shares Concerns About Coronavirus Rhetoric, Crisis Care Plans http://https://t.co/MNvL0bJCVT"                                                                                                                                                                                                                                                                                                                                               
##  [335] "About to break 100k COVID19+ cases in the USA! Are we great again yet? I can't take all this fucking #winning\n\n#COVID19 #TrumpPandemic"                                                                                                                                                                                                                                                                                                                                                                     
##  [336] "@VisakhapatnamJn @GVMC_OFFICIAL @GummallaSrijana @GVMC_OFFICIAL @vizagcitypolice &amp; team are sensitive on precautions to be taken on #coronavirus On behalf public, I salute their motivation, hardworking in hot summer, appreciate their devotion to duty @vizagcollector @vizaggoap @AndhraPradeshCM @OfficialMvv @MoHUA_India @dgp_ap"                                                                                                                                                                 
##  [337] "In 2016, <U+2066>@realDonaldTrump<U+2069> promised to #MAGA. He said he would win so much, we’d ask him to stop. Now he’s won the race to the bottom in the #COVID19 #pandemic.\n\nI’m asking: stop winning so much. #PeopleOverProfit #TOBT #UsNotMe #FeelTheBern  https://t.co/iNdLq1Dyx1"                                                                                                                                                                                                               
##  [338] "@tribelaw One person can on average pass it to 3.\nLack of water to wash hands, access to common disinfectants. 1 penny, double that to 2, double that to 4, double over and over for 30 days, 1,073,741,825,now substitute person for penny.\n#coronavirus"                                                                                                                                                                                                                                                  
##  [339] "Too much chaos in the World right now. I need to share this random-ideology II right now. Follow @africanaffairs @_AfricanUnion you've been on peace keeping mission for too long. What's up with that? #coronavirus #CoronaLockdown #COVID2019 #Africa Unite for your people. Unite!!! https://t.co/hGfvARhGqB"                                                                                                                                                                                              
##  [340] "@CCrowe90 @stclairashley I've been told North Korea has ZERO cases now. Granted they execute anyone who is even expected having COVID-19, which technically still makes a it true. I think we should all go to North Korea!"                                                                                                                                                                                                                                                                                  
##  [341] "Masks for the parents (who still venture out for burgers from a drive-thru now and then), featuring openings for adding removable filters. #StayHomeSaveLives #COVID19 https://t.co/qnM9OoKFm6"                                                                                                                                                                                                                                                                                                               
##  [342] "‘Perfectly healthy’ Texas dad with coronavirus dies from COVID-19, family says https://t.co/UlM7gtcXdV"                                                                                                                                                                                                                                                                                                                                                                                                     
##  [343] "I'll be chatting with @susanhopkins5, @pcjurczak &amp; @Self_Reg in an hour (7:30pm EST) for a special #TMCTalks about #SelfReg &amp; Parenting In The Times of #COVID19. We hope you can join us. Learn how to join here: https://t.co/kwCnwKvTny https://t.co/BgGGtmIOAJ"                                                                                                                                                                                                                                   
##  [344] "Watched the interview on how South Korea managed to beat Covid-19. So amazed at how prepared they are. Kudos to their leaders and their government!"                                                                                                                                                                                                                                                                                                                                                          
##  [345] "\"Pandemic COVID19 is a Global Challenge Needs a Global Response\" #Virology #microbiologycoronavirus #ChinaHow come the virus COVID 19 originated!!! Is it naturally originated or human-created??? Let's discuss pandemics in this meet. https://t.co/w3GQOyRJfJ"                                                                                                                                                                                                                                           
##  [346] "How many people had a job BEFORE and after the #coronavirus?\n\nAre you still working, either at home or at the job? Or, are you laid off either temporarily or permanently?"                                                                                                                                                                                                                                                                                                                                 
##  [347] "Offline: COVID-19 and the NHS<U+2014>“a national scandal” https://t.co/IueCkfTJxq"                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [348] "@ogajazzyk It's Covid-19 not Codiv-19 olodo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [349] "How the @NPSOfficial_KE conducted themselves yesterday is uncalled-for and primitive to say the least. I wonder even if they know and take into practice the basic measures of preventing #COVID19. They are even increasing the possibility of the spread. I'm disappointed."                                                                                                                                                                                                                                
##  [350] "With governments requiring social distancing, the normal rules that require a signer of legal documents to be in the “presence” of a notary or witness have been put into question. For those in Illinois,  guidance is now provided. #COVID19 #coronavirus https://t.co/xjoPqoFWSA https://t.co/lVKUpqLAPl"                                                                                                                                                                                                
##  [351] "I’m not a surgeon fr. Covid-19 starting to get real so we gotta suit up even more now."                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [352] "Covid-19 Chronicles <U+2013> Living in Lockdown: Our cameras recorded the moment of lockdown. We also hear from Dr Mohamed Irhuma, a clinical pharmacologist and medical specialist as he unpacks the psychological impact a lockdown might have on us: https://t.co/k7pm0AIJMF"                                                                                                                                                                                                                              
##  [353] "Great clip of an interview with Bill Gates about our response to the coronavirus crisis.\n#CoronaLockdown #coronavirus #CoronaUpdate #COVID19 #COVID #COVID2019 \nhttps://t.co/B61iN0rx5u"                                                                                                                                                                                                                                                                                                                    
##  [354] "Staff member at Homebase store in North Wales tests positive for Covid-19 #coronavirusuk cases: https://t.co/XASDMq3tpj"                                                                                                                                                                                                                                                                                                                                                                                      
##  [355] "Covid-19: #Boeing halts dividend to help it survive virus https://t.co/3NWzPLnhJA @BoeingDefense #COVID19 https://t.co/8oFnrrOlAX"                                                                                                                                                                                                                                                                                                                                                                            
##  [356] "Minister Young: Walk with identification (ID card, driver's permit) including your work ID. #COVID_19 #COVID19 #COVID<U+30FC>19 https://t.co/9d51008gll"                                                                                                                                                                                                                                                                                                                                                      
##  [357] "Bill Gates wants to capitalise on the Chinese #Coronavirus pandemic by proposing that vaccines now contain nano-chips that will ENABLE YOU TO BE TRACKED."                                                                                                                                                                                                                                                                                                                                                    
##  [358] "Covid 19 continues to supply more March madness in the Stock Market #coronavirus #covid 19 #dowjones #stockmarket #bailout #socialdistancing #quarantine #isolation #editorialcartoon #cintiq #clipstudiopaint https://t.co/BKonxqXAvR"                                                                                                                                                                                                                                                                       
##  [359] "#Zimbabwe lockdown on Monday, 30th<U+00A0>March - Essential services will be remain open - Funerals exempt 50 people only - hospital visits one person one patient - Food markets allowed to operate non food markets closed - private mass transport suspended coronavirus #COVID19"                                                                                                                                                                                                                         
##  [360] "I wash my hands regularly &amp; thoroughly to fight the spread of #coronavirus #COVID19. @WHO says \"Washing your hands with soap and water or using alcohol-based hand rub kills viruses that may be on your hands.' Accept the #SafeHands Challenge. @AminaJMohammed @UN_Piper @RonKayanja https://t.co/KecYPts2i8"                                                                                                                                                                                         
##  [361] "A powerful piece from <U+2066>@Essence<U+2069> on what it means to be Black, Southern, Rural and Poor in the age of #COVID19  https://t.co/fvcDLRCz5d"                                                                                                                                                                                                                                                                                                                                                        
##  [362] "COVID-19 closures: It's as if Ottawa has fallen off the electricity grid https://t.co/7qMB6pq3QI Oh!Duhhhh!"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [363] "Scammers picked the wrong person to mess with!  What you need to know about coronavirus testing scams tonight 9pm @KDVR #coronavirus #elderly #scamalert https://t.co/SJ1x6OCV57"                                                                                                                                                                                                                                                                                                                             
##  [364] "<U+26A0><U+FE0F> Attention <U+26A0><U+FE0F> group masturbation has been postponed due to covid-19 we will keep updated until further notice"                                                                                                                                                                                                                                                                                                                                                                  
##  [365] "@ChrisMBiggs We understand our customers are relying on our network to ensure they have connection w/ loved ones &amp; emergency service providers. Check here for more details on how we are helping in response to COVID-19 https://t.co/reGthF81zd - Isaac"                                                                                                                                                                                                                                                
##  [366] "WWlll is very very close.\n#usaCoronavirus #COVID2019 #FelizJueves #USA #America"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [367] "Y’all should stay safe and calm covid-19 has been cut off \nGame over\n#PastorChris #COVID19 https://t.co/22nvBjOJQI"                                                                                                                                                                                                                                                                                                                                                                                        
##  [368] "@jerome_corsi @QsentMeToo @realDonaldTrump I suppose I am sheltered but I have never personally known \nanyone who died from the flu. Now  ~~~ I have known someone who died of Covid 19."                                                                                                                                                                                                                                                                                                                    
##  [369] "@rebeccaballhaus @JohnJHarwood @AndrewRestuccia Great, let's keep him busy personally signing every single check so the real adults that science can take over the COVID-19 response!"                                                                                                                                                                                                                                                                                                                        
##  [370] "@tayokun @JosepBorrellF @eu_eeas Who you're asking for?\n\nHuawei to 'scale down' supply of COVID-19 masks, after Borrell comments https://t.co/lIaTky9qfG"                                                                                                                                                                                                                                                                                                                                                   
##  [371] "JMC puts more men, machinery to fight COVID-19\n@jmcjammu @CMGuptaOfficial \n\nRead more at: https://t.co/TG7e6uiDpg https://t.co/e8zTW5zXMr"                                                                                                                                                                                                                                                                                                                                                                 
##  [372] "We can't thank you enough! (apologies for the rubbish video) #clapforourcarers #NHSheroes #COVID2019 #NotAllHeroesWearCapes https://t.co/OqGhAIdrUy"                                                                                                                                                                                                                                                                                                                                                          
##  [373] "UPDATE: 639 confirmed #COVID19 cases in Alabama https://t.co/KrBsuHhwAV"                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [374] "@Ianblackford_MP Are you sure you're not just using #coronavirus as  an excuse to spend some time on your own? I know many husbands and wives  doing this ! I'm one of them ! <U+0001F602> #SelfIsolation"                                                                                                                                                                                                                                                                                                    
##  [375] "After @abbvie now @Roche gives up a de facto monopoly, in this case for a diagnostic reagent for #COVID19. A harmful monopoly which should never have been a reality.\n\nSay no to profiteering of this pandemic\nSay to no patents and monopolies https://t.co/AJdTwRKLqZ"                                                                                                                                                                                                                                   
##  [376] "May Allah help us... Ameen #StaySafeNigeria #StayAtHome #COVID19 https://t.co/Sn3Uf2EVja"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [377] "When gaming is the only way to quarantine! \n\n#bikham #onlinegaming \n#facts #steam #technology \n#covid19 #quarantine https://t.co/088Jt9DF7B"                                                                                                                                                                                                                                                                                                                                                              
##  [378] "@Jane_nkyalo And sadly enough in the comfort of her bungalow in the USA. She should let us alone to solve our problems the best way we can. Btw advise the New York mayor on how to fight covid-19"                                                                                                                                                                                                                                                                                                           
##  [379] "@realDonaldTrump @WhiteHouse You've had THREE YEARS to get stuff done. You piddle-farted around playing golf ALL THE TIME. \n\nYou threw the pandemic handbook on a shelf and figured it couldn't happen. Well, it has. You piddle-farted around on #Covid19 too. \n\nAll you do is blame EVERYONE ELSE. This is on you. https://t.co/wvteMYRkhO"                                                                                                                                                             
##  [380] "COVID-19 stands for \"Coronavirus Disease 2019.\"\n\nCO-rona\nVI-rus\nD-isease\n\nThe WHO guidelines say they can't name a virus after a geographic location or group of people. \n\nSo no - it doesn't stand for \"Chinese Originated Viral Infectious Disease.\"\n\nhttps://t.co/kjgy0N1aXJ\n\n#VERIFY https://t.co/GqjEmi9IxK"                                                                                                                                                                             
##  [381] "Wii Sports Resort released June of 2009...BUT...I am now the Table Tennis Champ!!! #TodayInHistory \n\nThanks #COVID19, none of this would've been possible w'out you.  Through boredom &amp; determination, I was able to finally defeat the table tennis champion. https://t.co/n89GPeA2hr"                                                                                                                                                                                                                 
##  [382] "#DataScience vs COVID-19 pandemic: Flattening the curve -- but how? https://t.co/DMTUbj0RWZ via @ZDNet &amp; @linked_do"                                                                                                                                                                                                                                                                                                                                                                                      
##  [383] "Help Cuba fight the coronavirus and the US blockade. Sign the open letter calling on the US government to lift its inhuman blockade and allow Cuba to fight COVID-19 at home and abroad.\nSign your name here https://t.co/EeVPnFOora #CubaVScoronavirUSblockade"                                                                                                                                                                                                                                             
##  [384] "Watching Ramayna with family . Thanks to everyone  #StayHomeStaySafe  #COVID19  #Ramayana  @narendramodi  @DDNational  @BJP4India  @myogiadityanath #IndiaFightsCorona #StayHome https://t.co/kM5KmzRDD5"                                                                                                                                                                                                                                                                                                     
##  [385] "\"Coronavirus: US leads the world in number of confirmed cases\" #Coronavirus https://t.co/D2m8LtjPW5"                                                                                                                                                                                                                                                                                                                                                                                                        
##  [386] "<U+0001F914><U+0001F914><U+0001F914> #CoronaLockdown #coronavirus #lockdown #SaturdayMorning #SaturdayThoughts #SaturdayMotivation have a great day everyone ♥<U+0001F60A><U+0001F618> https://t.co/FjQgQBoAlB"                                                                                                                                                                                                                                                                                              
##  [387] "I think we all now know who was responsible for the  #TrumpPressConf, hmm @katemclennan1 and @katemccccartney ?\n#Covid_19 #auspol https://t.co/ObYrBl4vGT"                                                                                                                                                                                                                                                                                                                                                   
##  [388] "@gtconway3d Excuse me but the US doesn’t call the virus that . The US calls it by its given name , Covid-19 . It’s our ass of a president  and his followers that calls it  by  what ever flows out of their mouths ."                                                                                                                                                                                                                                                                                      
##  [389] "Now we’ve had a taste of what it’s like to be caged, Will we finally abolish zoos<U+0001F91E><U+0001F91E> and then stop having ‘pets’ <U+0001F937><U+200D>♀<U+FE0F>- free the animals!! #SelfIsolation #IsolationLife #lockdown #COVID2019 #afterthequarantine https://t.co/nZhffCI8nE"                                                                                                                                                                                                                  
##  [390] "Spread the love! Hope you all have a pawesome day! <U+0001F431><U+0001F970><U+0001F43E>\nFollow <U+0001F449>@letspawsfirst<U+0001F448>\n-\n-\n-\n#GoodMorning #FridayMotivation #FridayVibes #FridayMorning #FridayFun #friyay #FridayWin #StayHome #COVID19 #hometasking #amazon #shopping #CatsOfTwitter #kitty #cats #pets #love #followme https://t.co/oNdx90xUkX"                                                                                                                                        
##  [391] "Number of confirmed cases of COVID-19 jumps to 54 in SLO County https://t.co/O7J9zzG8lP"                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [392] "I think that by the time we have a vaccine most people would have gotten COVID-19 and either have died or gotten over it."                                                                                                                                                                                                                                                                                                                                                                                    
##  [393] "#BREAKING: House passes historic $2 trillion aid package hoping to curb COVID-19’s economic impact #WashingtonDC #wlwt @wlwt  https://t.co/weatms3ofI"                                                                                                                                                                                                                                                                                                                                                       
##  [394] "Who’s staying home this weekend <U+0001F64B><U+0001F3FC><U+200D>♀<U+FE0F><U+0001F64B><U+0001F3FB><U+200D>♂<U+FE0F>\n\nWho’s up for creating some videos to say ‘Thank you’ for staying at home this weekend?\n\nLet’s help keep everyone safe during this time #COVID19 #SocialDistancing https://t.co/d3i9MklTv8"                                                                                                                                                                                     
##  [395] "“Our hearts are heavy having learned of this first death in our community’s struggle against the spread of COVID-19.\"\nPitkin County Public Health director Karen Koenemann\nhttps://t.co/zxj4lkfj5L"                                                                                                                                                                                                                                                                                                      
##  [396] "What a time to be alive  \n               27\n               03 \n             2020 \n\nTB. Joshua's covid-19 cure revelation\nImamOfPeace vs covid 1-9\nBorisJohnson  Vs  COVID19\n\nAnd the day isn't over yet o anything can still happen maybe presidential briefing <U+0001F602> <U+0001F923>\n\n#ImamOfPeace"                                                                                                                                                                                           
##  [397] "Loudoun County school staffer dies from COVID-19 @InsideNoVA https://t.co/msEVzytIs5"                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [398] "Devil in the details: US Congress reaches deal on $2 trillion rescue bill, which still requires House vote and president's signature\nhttps://t.co/XX6Wmy9Gpc https://t.co/boI0Y6siXL"                                                                                                                                                                                                                                                                                                                        
##  [399] "I learned some things watching this. Everyone should watch.\n\nPSA Safe Grocery Shopping in COVID-19 Pandemic\n\nhttps://t.co/hwnTQ8uBCg"                                                                                                                                                                                                                                                                                                                                                                     
##  [400] "UCT Confirms Fifth Case of Covid-19: https://t.co/OtUFEEn56J #SouthAfrica #Day1 #StayHomeSA #CoronavirusSouthAfrica #CoronavirusInSouthAfrica #COVID19SouthAfrica #21DayLockdown #Coronavirus #COVID19 https://t.co/t6M6LmpUlL"                                                                                                                                                                                                                                                                               
##  [401] "Indy 500 postponed until August because of COVID-19\nhttps://t.co/bdgJ2rfHB0 https://t.co/EfAGANG0aH"                                                                                                                                                                                                                                                                                                                                                                                                         
##  [402] "350 #virtualvolunteer registrations so far; we need 1,000. Can you share this post to help us? We need #volunteers to provide #EmotionalSupport to people in #isolation due to the #COVID19 Pandemic. Register here https://t.co/nWxbnx1fsh\nThanks, to @CharityVillage &amp; @VolunteerTO"                                                                                                                                                                                                                   
##  [403] "Bold journalist @benkoku of @Citi973\n@CitiTVGH ...\nA word to @NAkufoAddo .\nInfact untill the president sacks NIA BOSS , no other mitigating move will save him from this disgrace!!\n\n#COVID2019Ghana  #StopGhanaCard #COVID19 #coronavirus #CoronaLockdown #StayAtHomeChallenge #Eastern https://t.co/36N7QTtzfM"                                                                                                                                                                                        
##  [404] "Parents v Teachers Minions Style Coronavirus Covid-19 - Stay Safe Stay A... https://t.co/RbLTERIFwc via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                             
##  [405] "It brings us hope to see Mayor @sliccardo &amp; Council acting to ensure people on front lines of this crisis can stay home and seek care if they get sick. Paid sick policy gets Council vote 4/1. Also TY @CM_Magdalena @SylviaArenas @MayaEsparza3 for your lead!\nhttps://t.co/DOuRoPejaw"                                                                                                                                                                                                                
##  [406] "Macon restaurant offers free lunch to kids amid COVID-19 outbreak https://t.co/RUAlOAaVg9"                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [407] "COVID-19 closes North Okanagan convenience store https://t.co/5Xh3dgDfZQ"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [408] "#Boulder County has rescinded its stay at home #coronavirus order, simply to adopt the similar measure issued by Gov. Jared Polis. The gov's has planned expiration date of April 11, versus county's April 17. https://t.co/E7MciQwVwL https://t.co/9gIgmfTDQF"                                                                                                                                                                                                                                              
##  [409] "Are we going to be ok? When will this end? #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [410] "As Montana's confirmed (tested) COVID-19 cases jumped from 71-90 and Gallatin County's jumped from 24-38 today, Governor Bullock has issued a Stay at Home order. #coronavirus #COVID #COVID2019 #Montana \n\nhttps://t.co/2P36lkYxW9"                                                                                                                                                                                                                                                                        
##  [411] "So if you're in the 99% of people that had #coronavirus and survived.. does that mean you can go anywhere you want??"                                                                                                                                                                                                                                                                                                                                                                                         
##  [412] "Latest #Covid19 update from David Mills\nPLEASE SHARE AS MUCH AS POSSIBLE.\n\n#clockhousenursery #enfield #garden #gardening 27/03/20 https://t.co/4SN5bJqojH"                                                                                                                                                                                                                                                                                                                                                
##  [413] "I hope when the country has healed from this devastating plague whoever is is in charge will bring back full uk production of essential items instead of giving business overseas #COVID19 #makeukgreat"                                                                                                                                                                                                                                                                                                      
##  [414] "Our experiences today, will help us grow and get through tomorrow.\n\n#coronavirus\n#covid19\n#mentalhealth\n#resilience \n#yougotthis\n#depression\n#BPD\n#anxiety\n#mentalillness\n#stayhome\n#quarantine \n#chatowl\n#therapist\n#inspo https://t.co/GE2Yd3DylT"                                                                                                                                                                                                                                           
##  [415] "Are Advil and Tylenol good to reduce fever in covid -19 treatments?#CNNTownHall"                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [416] "Plans this weekend? Tune in to the latest episode of Cinnaire's #AdvancingCommunities #Podcast which focuses on the #COVID19 crisis &amp; its impact on the affordable housing &amp; community development industries: https://t.co/MeLWQAsEAT"                                                                                                                                                                                                                                                               
##  [417] "#nationalscribbleday Reece’s assignment for Mrs. Gonzalez’ online class today @Stewart_Creek \n#ThanksHealthHeroes @Roms_10 #nursesareheroes #CoronaLockdown #stayhome #coronavirus @KHOU #scribble @imnotascribble https://t.co/axLR9wcesV"                                                                                                                                                                                                                                                                
##  [418] "The Canvas (online school portal) update makes it look more like the fucking #Coronavirus https://t.co/10jXLnza0S"                                                                                                                                                                                                                                                                                                                                                                                            
##  [419] "#BREAKING ROME (AP) -- Italy reports 6,153 new coronavirus infections, taking global total over 500,000. #COVID19 #coronavirus #fox5atl"                                                                                                                                                                                                                                                                                                                                                                      
##  [420] "<U+0001F4DA>A great read on how to support and protect children’s emotional well-being during the pandemic. This is targeted at younger kids but there are great suggestions here that apply to teens as well.\n\nhttps://t.co/Nl0z3s2QBs"                                                                                                                                                                                                                                                                   
##  [421] "@null Woj Pod: Burke reveals COVID-19 diagnosis ESPN NBA Analyst Doris Burke joins The  https://t.co/BQjS0iQ0x5"                                                                                                                                                                                                                                                                                                                                                                                              
##  [422] "Coping With COVID-19 Crisis: Craig’s Owner On Keeping Hollywood Hot Spot Going, Staff Employed &amp; Some Ice Cream Smiles https://t.co/JC5cIFV742 https://t.co/pOhK4C8Jip"                                                                                                                                                                                                                                                                                                                                  
##  [423] "\"On Thursday, the Navy, without specifically mentioning the USS Theodore Roosevelt, reported that \"17 Sailors assigned to a ship underway in the Pacific have also tested positive for COVID-19.\"\"\n\n(It's onboard the USS Ronald Reagan too)\n\nhttps://t.co/cl3pipXFnZ"                                                                                                                                                                                                                                
##  [424] "@davidaxelrod @JoeBiden @LarryRasky So there's a 99.99% chance that his death is unrelated to Covid-19.\n\nI hope Tara Reade doesn't catch it."                                                                                                                                                                                                                                                                                                                                                               
##  [425] "Options available to victims of domestic violence during the #coronavirus quarantine\n\n-Some Shelters are putting survivors up in hotels.\n-Local programs are helping victims make plans to stay safe.\n-The National Domestic Violence Hotline is available via chat, email, and phone. https://t.co/eNwM2EQNvY"                                                                                                                                                                                           
##  [426] "Let’s examine the facts:\n\nTB Joshua said that on the 27th of March, a heavy rain will fall in Wuhan, China which would begin the end of the Coronavirus. Fact: There was a rain in Wuhan on the 27th of March. \n\nLet’s be patient and hope for the best. #COVID19"                                                                                                                                                                                                                                      
##  [427] "@bbcquestiontime @bbcquestiontime \n\nQuestion from Tad Tomkinson\n\nWhy is the government refusing to test frontline healthcare professionals for covid-19?"                                                                                                                                                                                                                                                                                                                                                 
##  [428] "Buyers, sellers and agents grapple with a housing market shaped by coronavirus.\n\nLand registration services, real estate agent services and moving services may all continue to operate.\n\nLearn more here:\n\n#realestate #toronto #covid19\n\n https://t.co/mh15WvWg6Z"                                                                                                                                                                                                                                  
##  [429] "COVID-19: Zoos, pawnshops, newspapers, parks for sheltering homeless included in B.C. list of essential services #COVID19Vancouver #COVID19BC #BC #Vancouver\nhttps://t.co/osftCNYgdh"                                                                                                                                                                                                                                                                                                                        
##  [430] "PIIE: The banking system is critical to society and requires due attention and support. But in doing so, tough love is preferable to complacency. By nicolas_veron: https://t.co/v9QItYEEpf #finance #money"                                                                                                                                                                                                                                                                                                  
##  [431] "67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/qr9rWuTcyB"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [432] "Due to travel #restrictions imposed during the #coronavirus #pandemic, #Alrosa announced it is selling its largest rough #diamonds via digital tender.\n\nhttps://t.co/J5f9XGDjAr"                                                                                                                                                                                                                                                                                                                            
##  [433] "The COVID-19 pandemic has put in fast forward our slow-motion crises, including economic inequality, food insecurity and xenophobia. Give today to support our neighbors, because we all depend on one another to survive. https://t.co/0RqkT0rIQ3"                                                                                                                                                                                                                                                           
##  [434] "Jimmy #Kimmel Gives Savage New Nickname To #Trump In #Coronavirus Era. #SmartNews #KAG #MAGA #FoxNews @FoxNews #TrumpIsAnIdiot  https://t.co/EQl7SsCxsL"                                                                                                                                                                                                                                                                                                                                                      
##  [435] "The #coronavirus pandemic has forced a lot of changes across our community. A former #KNXHero of the Week is adapting his food kitchen to help keep thousands of people nourished during this time of uncertainty. https://t.co/Vq87UtkWtR https://t.co/KxjGlBnXvb"                                                                                                                                                                                                                                           
##  [436] "A reminder that 'Clap for our Carers' is taking place in the UK tonight at 8 PM.\n\nPlease join us in clapping and cheering on all those heroes and heroines fighting #Covid19 in the #NHS across the UK!\n\n#clapforourcarers https://t.co/tHsyMqORQR https://t.co/IbivWXqA0j"                                                                                                                                                                                                                               
##  [437] "Sorry - we can't find that page https://t.co/jx4s7AbXYy"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [438] "This is what my loving country did for me<U+2764><U+FE0F> proud to be a Saudi citizen #saudiarabia #COVID19 https://t.co/rhk9TVUJuu"                                                                                                                                                                                                                                                                                                                                                                          
##  [439] "Coronavirus: Nigeria reports chloroquine poisonings after Donald Trump touts antimalarial drug as treatment | South China Morning Post https://t.co/IM31VeEEi6 #coronavirus #covid19 #pandemic https://t.co/iniT806tnm"                                                                                                                                                                                                                                                                                       
##  [440] "Food Banks BC already seeing surge in demand due to COVID-19 pandemic https://t.co/t7lh20zGnI"                                                                                                                                                                                                                                                                                                                                                                                                                
##  [441] "I was scheduled to get an IUD at the beginning of March. I cancelled due to COVID-19 anxiety (I’ve been following it since late December) and decided I would go on the pill when I felt necessary"                                                                                                                                                                                                                                                                                                          
##  [442] "PLEASE RETWEET: We all need to do our part to flatten the curve, so please stay at home as much as possible. #Coronavirus #CoronavirusDelaware #COVID19 #deCOVID #COVID19Delaware @Delaware_DHSS https://t.co/GGNLpEBL9C"                                                                                                                                                                                                                                                                                     
##  [443] "@Khanoisseur This admin can't even deal with the #COVID19 crisis. There's no way anyone in that den of thieves is thinking about the next looming crisis. I can't believe we continue to treat this admin with any amount of respect or legitimacy. They haven't earned it EVER."                                                                                                                                                                                                                             
##  [444] "i hope @selenagomez @ladygaga get #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [445] "Don't wait for GOI to call the #coronavirus as #ChineseVirus . Govts have compulsions. Hence it's got to be people's movement. China has blood on its hands and world must punish it - ban entry of Chinese people to their countries, isolate their companies, throw it out of UNSC.."                                                                                                                                                                                                                       
##  [446] "@ZLevyMD @ercowboy Stay safe. Also, we are building an oral history of #COVID19; consider lending your voice. https://t.co/gvqN8KzIn7"                                                                                                                                                                                                                                                                                                                                                                        
##  [447] "Oh, Wired covers one of my favorite Twitch heroes! Though this goes against keeping him in our secret back pocket. #kitboga #coronavirus #scammers https://t.co/abthLjTthQ"                                                                                                                                                                                                                                                                                                                                   
##  [448] "@KTRTRS sir we permitted many grocery and other shops for public but if we do not have a monitor mechanism for retailers health, these platforms could be sources of #COVID2019 so some taskforce should be deployed for the same."                                                                                                                                                                                                                                                                           
##  [449] "Public leaders &amp; health officials: The only thing that matters right now is the speed of your response.\n\nThis model predicts the last day each state can act before the point of no return.\n\n@govhawaii @KHONnews @kauai\n #kauaimayor #hawaii #COVID19  #kauai \n\nhttps://t.co/p9W7vrSf5O"                                                                                                                                                                                                          
##  [450] "Well. The covid-19 #StayAtHome order has everyone doing puzzles &amp; bettering themselves &amp; I’m over here matching up the @nfl teams for a new 17th inter conference rivialry game via @BarstoolBigCat @PardonMyTake https://t.co/h8H0HC2G4J"                                                                                                                                                                                                                                                           
##  [451] "My wife is a full time nurse at MGH in Boston so this is very real for my family. I don’t do politics on Twitter but please let’s protect the healthcare workers taking care of patients. #coronavirus #PPE @KeithSpiro @jeffpulver @TedRubin @BonnieHunt_real @BobSocci @BobCoughlin https://t.co/kUKRiwy6Hv"                                                                                                                                                                                              
##  [452] "“Data analysis- validation of wishful correlations.  \nAnalysis and interpretation of data using tools and techniques that are available in the present”\n#rcbquotes \n#changemanagement #lifeinthetimeofcovid #COVID2019 #coronavirusindia #DataAnalytics"                                                                                                                                                                                                                                                 
##  [453] "@The_vijju Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                                 
##  [454] "#UPDATE on coronavirus cases in Ontario via @gabbyrodriguess\nfor @globalnews \n\nREAD MORE: https://t.co/wUw3xvTW6P\n\n-&gt;170 new cases in Ontario\n-&gt;provincial total rises to 837 active cases\n-&gt;province's largest single-day spike\n-&gt;38,000+ people tested so far in Ontario\n#COVID19"                                                                                                                                                                                                     
##  [455] "@POTUS still talking #tariffs? American businesses need parts and products from #China to be sustainable.\n\n#CNN #MSNBC #coronavirus #CoronavirusPandemic #SocialDistancing"                                                                                                                                                                                                                                                                                                                                 
##  [456] "Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief https://t.co/9vNzx1BXim"                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [457] "Lord do not leave us at the mercy of the storm #PopeFrancis #UrbietOrbi #CatholicTwitter #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                            
##  [458] "@InDarknessShine @eosfanatic Covid-19 is the new way to control masses like the church did back in those days. This is why separation of church and State is so essential."                                                                                                                                                                                                                                                                                                                                   
##  [459] "\"Due to the spread of COVID-19, application for the 1st JLPT in 2020(July) is currently suspended and the test execution is now under consideration.\nPlease confirm the further information announced on the JLPT website on Monday, April 6.\"\n<U+0001F62D>"                                                                                                                                                                                                                                              
##  [460] "Stay safe and be careful! Don't go out unless it's necessary! #Coronavirus https://t.co/KyZ5hMwfyr"                                                                                                                                                                                                                                                                                                                                                                                                           
##  [461] "Trump wil 100.000 extra beademingsmachines in 100 dagen https://t.co/KTdvwrFvyr via @NUnl thank you, all countries must ... #usa #uk #asia #china #africa #america #americas #oceania #australia #be #de #nl #rutte3 #rivm #ggd #spain #france #italy #portugal #covid19 #everyone"                                                                                                                                                                                                                           
##  [462] "Trump to New York: Drop Dead  #Coronavirus #Pandemic #NewYorkCity #NewYork #DonaldTrump #TrumpKills #Federalpolicy #healthcare #Federalintervention #unifiedationalresponse #Andrew Cuomo https://t.co/Funl1Ge1To"                                                                                                                                                                                                                                                                                            
##  [463] "To help keep the community updated on COVID-19, we’ve created a series of videos featuring perspective from SMC physicians. Here, Dr. Angela Oates, Infectious Disease Specialist, addresses whether pets can be infected with the COVID-19 virus. https://t.co/VqwbVFarEw"                                                                                                                                                                                                                                  
##  [464] "Slant | Paul B. Preciado on life after COVID-19 https://t.co/negRwtagVe @artforum"                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [465] "Donald Trump, COVID-19 Task Force Hold Press Briefing on Coronavirus Pandemic - Video: https://t.co/GcB5QS68Mg via @SputnikInt"                                                                                                                                                                                                                                                                                                                                                                               
##  [466] "This is new / cool -- GoogleScholar linking to academic journal coverage of #COVID19 on the front page: https://t.co/CN6XYMyd2d"                                                                                                                                                                                                                                                                                                                                                                              
##  [467] "#Sharemarket LIVE: Sensex, #Nifty set for gap-up opening; #RBI Governor @DasShaktikanta Das press meet at 10am amid #CoronavirusLockdown  https://t.co/4J9b3KijPc"                                                                                                                                                                                                                                                                                                                                            
##  [468] "Congratulations @realDonaldTrump, the US is now OFFICIALLY IN FIRST PLACE with the most reported cases of COVID-19 in the ENTIRE WORLD. You must be so proud to have set yet another amazing record! https://t.co/q53wqvnjsI"                                                                                                                                                                                                                                                                                 
##  [469] "So, China reports NO new #coronavirus cases in the past week?!  How can that be?"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [470] "Last night cerita this year confirm kami tidak travel and most probably next year pun tidak. Tunggu vaccine #COVID19 ini developed baru travel la."                                                                                                                                                                                                                                                                                                                                                           
##  [471] "#login Just watched Trump sign the Covid-19 bill. Big group and no one was 6 feet apart. Sad to watch Dr. Fauchi pander and praise Trump. Can't count on him. The only channel allowed to show signing was FOX. Listened to Trump bash Governors. The man is unstable. #JoeDay"                                                                                                                                                                                                                               
##  [472] "Seeing a 70 plus couple dance to some Desi Arnaz from their youth durning this #coronavirus has made my night. Great food, great music and great family time has blessed me so much! One day at a time y’all! \nMuch Love Tommy <U+0001F918><U+0001F3FB><U+0001F918><U+0001F3FB>"                                                                                                                                                                                                                            
##  [473] "Things just got really serious! Pray for the ones that are suffering <U+0001F64F><U+0001F3FB> and as for the others, STAY AT HOME FFS! #coronavirus #CoronaPandemic https://t.co/pQVJ36OT3C"                                                                                                                                                                                                                                                                                                                  
##  [474] "[Video] : How to protect yourself from the explosion of #cybersecurity risks during a crisis\n#coronavirus #covid19 https://t.co/axKseOQHZq"                                                                                                                                                                                                                                                                                                                                                                  
##  [475] "One of latest 18 new death’s to Covid-19 was a 17 year old according to @LouisianaGov"                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [476] "How to distinguish COVID-19 symptoms from allergies and the common cold  https://t.co/I833ZIJt0k"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [477] "@trish_regan @realDonaldTrump @VP @SecPompeo @JuanGuaido You deserve to be fired! Stop spreading the lies, hoax theories while America prepares to be the largest epicenter for #COVID19 . This virus kills and sickens republicans and Democrats equally."                                                                                                                                                                                                                                                   
##  [478] "Here’s a great video to make sense of all the #Covid_19 data out there. One thing is certain, humanity will prevail and we will recover, but how soon and where will we get to before that happens. \n\nhttps://t.co/hIIfZIgxFB https://t.co/FK53HEhhEc"                                                                                                                                                                                                                                                     
##  [479] "Latest Inspiration from Tim Ferriss! Dr. Vivek Murthy <U+2014> Former Surgeon General on Combatting COVID-19, Loneliness, and More (#417) https://t.co/I0u825FVK8 TheCocamama"                                                                                                                                                                                                                                                                                                                                
##  [480] "It seems that Covid-19, has had another effect. It shrinks the brain cells of Right-whinge New Zealanders, who drink the QAnUS DIPSHITTERY CRAZYade! Thoughts and prayers that they recover their sanity."                                                                                                                                                                                                                                                                                                    
##  [481] "Dear citizens, \nPlease protect yourselves. Those that won't protect you when there was calm &amp; they had the time, will most likely not protect you now that they are also struggling for their own lives. Whatever they tell you, hold with a pinch of salt. Protect yourselves. #COVID19"                                                                                                                                                                                                                
##  [482] "@davido's fiance @thechefchii Test Positive to #CoronaVirus after returning from London.\n\n _Please Note they are two types of Corona Virus, one is Non symptomatic which implies you won't have any symptoms till after a said period of time_\n#StayAtHomeAndStaySafe #StaySafeNigeria"                                                                                                                                                                                                                    
##  [483] "Tucker: Opposition to Trump is fueling media lies about chloroquine, a potential COVID-19 treatment | News | LifeSite https://t.co/Ad39bJy1mG"                                                                                                                                                                                                                                                                                                                                                                
##  [484] "My pal @KarlDDawson has the right idea... It's two weeks people; we can do this.<U+0001F64C> #StayHomeSaveLives #coronavirus #COVID19 \n\n\"https://t.co/lNtipy74ga\""                                                                                                                                                                                                                                                                                                                                        
##  [485] "Make me famous \nHaha jk,, unless <U+0001F440>\n\n#tiktok #anime #otaku #artist #art #<U+0641><U+0639><U+0627><U+0644><U+064A><U+0627><U+062A>_<U+0627><U+0644><U+062D><U+062C><U+0631>_<U+0627><U+0644><U+0645><U+0646><U+0632><U+0644><U+064A> #StayHome #QuarantineLife #<U+0631><U+0633><U+0645><U+064A> #followforfollow #follow #commission #commissions #artstyle #COVID2019 #tiktokchallenge #AnimeArt #love #pastel #ocs #originalcharacter https://t.co/TVZ1JRAWod"                                 
##  [486] "@JarredProvich @geracechris @StocksAllUp @mitchellvii Now take this tidbit into account.\nFlu has a vaccine and still produces those numbers.\nCOVID-19 has nothing but a hoe on two meds that are not approved and has produced LESS cases and deaths statistically over the same period."                                                                                                                                                                                                                   
##  [487] "How much does it cost for one COVID-19 test again?"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [488] "@noplaceforsheep @NickThiwerspoon @D_LittleproudMP It's a Health Minister responsibility under the Act. (Has Covid-19 been listed yet? I assume it has. The listed human disease page goes to \"not found\")\n\nhttps://t.co/LATTwWFr9v\n\nhttps://t.co/C6OOAJllJ4 https://t.co/q1e9hVjCzE"                                                                                                                                                                                                                   
##  [489] "@ASlobComesClean Hi! Thanx for the Like. Glad I kept a few iffy items that I might have tossed out. They will come in handy during stay-at-home in the time of COVID-19."                                                                                                                                                                                                                                                                                                                                     
##  [490] "How to stay #fit and #active at home during the #coronavirus #SelfIsolation\nGreat tips by @M_Stamatakis @docandrewmurray @fiona_bull and @DrKateEds <U+0001F44F><U+0001F4AA><U+0001F938><U+200D>♀<U+FE0F>\n#COVID #FlattenTheCurve #CoronavirusOutbreak https://t.co/W8FyLbzJAf via @ConversationEDU"                                                                                                                                                                                                       
##  [491] "#Coronavirus #sanitizer #Nature  #kunar province https://t.co/ctY4VCKBHo"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [492] "We are here stuck due to #coronavirus,cases are getting doubled everyday and here only one patient recorded,our parents are also very disturb,UA is sending flight to call ukrainians from DEL,we request us to go back in india @PMOIndia @AmitShah @AjTakNews @ABPNews @narendramodi https://t.co/g7wAgNnRRZ"                                                                                                                                                                                               
##  [493] "Good tips to remember. @accellres @CDAA_inc #Workingfromhome #wfh #mentalhealth #wellbeing\nhttps://t.co/XKdE9gyOnE"                                                                                                                                                                                                                                                                                                                                                                                          
##  [494] ".@MYER has announced it will be closing 60 stores and standing down 10,000 staff for at least a month in the wake of the coronavirus crisis. Meanwhile, @Coles says it has hired more than 7,000 people in just two weeks to meet customer demand. https://t.co/dvNbHV2ctR #7NEWS https://t.co/h36FT78Pu6"                                                                                                                                                                                                    
##  [495] "it’s called that break up diet &amp; 100 crunches a day #coronavirus https://t.co/ER3mCCbp52"                                                                                                                                                                                                                                                                                                                                                                                                                
##  [496] "Portugal created a corona virus test <U+270C><U+FE0F><U+0001F1F5><U+0001F1F9>\nWe have everything we need for producing a credited COVID-19 test in house.\n\n#CoronaUpdate #COVID19 #Covid_19 #TestingForCovid19 https://t.co/W4ZNTUAz3a"                                                                                                                                                                                                                                                                    
##  [497] "After COVID-19 is over @govsingapore should just scrap the whole DORSCON framework. It does nothing but fuel anticipatory but unnecessary overreactions. It’s like some people keep wanting you to declare red, but for what leh?!"                                                                                                                                                                                                                                                                          
##  [498] "@Salym God protect us from the #coronavirus https://t.co/L9DY8PynWc"                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [499] "Muslim groups in #UK band together to combat #coronavirus - https://t.co/vqwqKxgtK6 on @The_newarab #MuslimHandsUK #SavingLives https://t.co/CRALkuGmPY"                                                                                                                                                                                                                                                                                                                                                      
##  [500] "@realDonaldTrump @WhiteHouse We'd all be better off reading Dr. Seuss than listening to your blather.\n\nThis morning: 69,684 COVID-19 cases in the U.S.\nStill not \"going to zero\" and considerably more than 15.\n1,049 American deaths from COVID-19."                                                                                                                                                                                                                                                   
##  [501] "Tonight, I will host Penn State epidemiologist Drs. Nita Bharti and Beth McGraw from Penn State's Center for Infectious Disease Dynamics to share information about the #Coronavirus / #COVID19. Join us. \nhttps://t.co/s4yRMSoRVA https://t.co/MeGJPfUMIV"                                                                                                                                                                                                                                                  
##  [502] "Govt must listen to the plight of indian doctors who don't even have basic gears to combat Corona virus.  #COVID2019 #IndiaFightsCorona https://t.co/1eZCcnY1ri"                                                                                                                                                                                                                                                                                                                                              
##  [503] "https://t.co/FURHpjQd5Q Hear from the #Niantic family who put up a holiday display to spread some joy during this challenging time #EastLyme #COVID19"                                                                                                                                                                                                                                                                                                                                                        
##  [504] "Slothful, slow to act, complacent: Johnson has probably infected hundreds, thousands, tens of thousands according to his own government information.\n\n'Nonchalant': Boris Johnson accused of Covid-19 complacency https://t.co/xGMhQb5g3j"                                                                                                                                                                                                                                                                  
##  [505] "#Breaking A member of the Maryland Army National Guard recently tested positive for COVID-19. The Soldier is in isolation. About 20 additional soldiers from the Soldier's unit are quarantined as a precaution to limit the spread of the virus. -Maryland National Guard spokesman"                                                                                                                                                                                                                         
##  [506] "UN System urges Guyana Gov&amp;#8217;t to take more stringent measures to stem COVID-19 https://t.co/T27qpvFmrL via @stabroeknews"                                                                                                                                                                                                                                                                                                                                                                            
##  [507] "Hey @SenateGOP @senatemajldr  @HouseGOP @GOPLeader,\nWith his signing statement @realDonaldTrump admits he will violate the law you just passed. When are your going to get spines and stop him? #GOPSlushFund #CoronavirusOutbreak #TrumpLiesAmericansDie #COVID19 #DoYourJob"                                                                                                                                                                                                                               
##  [508] "#SVEs responses to economic impacts of COVID-19 pandemic as of 26/03 show focus on fiscal +monetary measures to adapt. But much lower average value of stimulus measures: 1% of GDP on av. compared to + 8% for #G20 members  \n.@DWteVelde .@deodat_maharaj .@sherillyn_raga https://t.co/ZfIZIkRBcH"                                                                                                                                                                                                        
##  [509] "Many people facing problem in Andhra Pradesh they all belonging to rajasthan many of them people are workers they all living in room due to covid-19 your honerable PM Mr narendra modi make lock down 21 days that’s why yours income are stop I am requestingAndhra Pradesh governmen"                                                                                                                                                                                                                     
##  [510] "Latest: 531,684 confirmed cases &amp; 24,054 deaths.\nIt's in 173 countries/territories, 93 with 100+ cases, 34 with 1,000+, 9 with 10,000+.\n453 cases in #HongKong, 4 deaths.\n\n#COVID19\n#WuhanPneumonia\n#WuhanCoronavirus\n#WuhanSARS\n#2019nCoV\n#CoronavirusOutbreak"                                                                                                                                                                                                                                 
##  [511] "A message from FXPrimus regarding Covid19 \nPlease take care during this terrible situation. Remember that we care and wish you all health and happiness. And please stay home and stay safe\n#stayhomestaysafe #covid19… https://t.co/bjA5Xm2Wpu"                                                                                                                                                                                                                                                           
##  [512] "@DiamondandSilk China Makes Virus. China Spreads Virus world over. China recovers from Virus. The rest of the world starts experiencing the Virus. China closes off its entry points. \nInteresting scenario! #COVID19 #CoronaLockdown #COVID #CoronaVillains #LockdownWithoutPlan"                                                                                                                                                                                                                           
##  [513] "mortality rate in italy is 10.5% but ignorant buffoons will still swear up and down that covid-19 is just another flu https://t.co/pFXmDMLKmU"                                                                                                                                                                                                                                                                                                                                                                
##  [514] "As of 26 Mar 20 @ 09:00\n\nAccording to the UK’s Department of Health and Social Care\n\n11,658 Confirmed Cases\n578 Dead\n\n104,866 Total Tested\n93,208 Tested Negative\n\n#coronavirus #UnitedKingdom #covid19UK #UK19CVD \n\nhttps://t.co/F72rlJx3y7"                                                                                                                                                                                                                                                    
##  [515] "@ErinMPerrine @DanaPerino @realDonaldTrump I don’t understand how somebody’s “where can I make a quick buck” analysis of the Covid 19 virus briefing is more important than the doctors and scientists.”"                                                                                                                                                                                                                                                                                                
##  [516] "It's true tho. When you have force majeure clause in your contract, your financial situation will be protected. Thus, it is important to have this in your tenancy agreement.\n\nhttps://t.co/cFu7J5y9ev"                                                                                                                                                                                                                                                                                                     
##  [517] "The number and quality of #COVID19 parody songs is heart warming and a great way to spend quarantine lunch break  https://t.co/sHP2ltEqMh"                                                                                                                                                                                                                                                                                                                                                                    
##  [518] "@Zlatan_Ibile Says we shall not die of covid 19 StayAtHome and.........? Fill in the gaps ibile ayiiiiiii <U+0001F341><U+0001F607><U+0001F4AF>"                                                                                                                                                                                                                                                                                                                                                               
##  [519] "My cousins daughter who is just four is so fed up of watching TV these days. She always asks  \"Mom, why are all channels talking about Macaroona\" She thinks that COVID-19 is food."                                                                                                                                                                                                                                                                                                                        
##  [520] "@randlight Yeah something is definitely not right there... there is NO WAY, he can be applauded for abysmal response to #COVID2019.\n\nWho concluded this &amp; how/where did they get their information???\n\n#ImNotBuyingItForOneMinute #TrumpVirusCoverup"                                                                                                                                                                                                                                                 
##  [521] "Kim just got her #COVID19 test results.... she’s negative."                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [522] "If you’re interested in joining a community where we #SmallBusinesses share helpful resources, exchange our thoughts and feelings, and swap ideas about #COVID19 join the Small Business Survivors Facebook Group.\n\nhttps://t.co/0Y4Q9S3DEJ https://t.co/sqFLig90WC"                                                                                                                                                                                                                                       
##  [523] "@TVMohandasPai @BDUTT @ShekharGupta @sardesairajdeep @ndtv Pie brained.\nIndia is testing 1 person in a million 4 #COVID19 what a shame.\n#GaribiHaatov by starving or beating to death by Tadipar #CoronaLockdown https://t.co/Z6kJ3vOulJ"                                                                                                                                                                                                                                                                   
##  [524] "Who believes her??\nLook, we've seen this before: people propping up Trump because they feel they serve the greater good.  It hasn't worked yet.\n#COVID19  #Trump https://t.co/08CzSuL98n"                                                                                                                                                                                                                                                                                                                   
##  [525] "Never say think \"POSITIVE\" to someone waiting for their COVID-19 test results.\n\nNo say I no warn you ooo<U+0001F602><U+0001F923><U+0001F602>"                                                                                                                                                                                                                                                                                                                                                             
##  [526] "Y’all still using clocks? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [527] "#COVID19 has stolen the opportunity for a good death.  Contagion means that many patients die alone without their child holding their hand or kissing them gently goodbye.  HCWs are kind to the dying but they too fear the illness.  #StayAtHome please.  This tragedy has many facets"                                                                                                                                                                                                                     
##  [528] "Please if you can offer a counselling service during this pandemic (covid-19) please sign up with the link below <U+0001F447> https://t.co/AAQ34KUdzQ"                                                                                                                                                                                                                                                                                                                                                        
##  [529] "I thought I would get SOOO much reading done while staying at home during Corona. Nope. Nada. Just have had no urge. But tonight I'm going to crack open my Kindle and dive in. #CoronaVirus"                                                                                                                                                                                                                                                                                                                 
##  [530] "In two weeks, COVID-19 has claimed more lives in New York City than homicides did there in all of 2019.\n\nhttps://t.co/YfAUx55ayv"                                                                                                                                                                                                                                                                                                                                                                           
##  [531] "The nation is seeing @realDonaldTrump for who he really is: a spineless pussy.  He threatened law suits, &amp; never followed through.  He only fired people if it was on a reality tv show.  And now he refuses to use the Defense Production Act to build ventilators.  #coronavirus"                                                                                                                                                                                                                       
##  [532] "These entrepreneurs are incredible and working so hard to print 3D supplies for those on the front line. Let’s spread this far and wide and get them help in their fight against Covid-19. #covid19 #3Dprinting #coronavirushelp #PPEshortage https://t.co/PyIxfjh526"                                                                                                                                                                                                                                       
##  [533] "To all my Montana people out there. https://t.co/AjBlSVXiba"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [534] "COVID-19 Face Shields Now at AlphaGraphics Cary https://t.co/NQdcbqwdbM https://t.co/I1HJzXrSav"                                                                                                                                                                                                                                                                                                                                                                                                              
##  [535] "Tiger King 16x20 inch painting by #JohnFamousArt #Netflix #TigerKing #JoeExotic #BigTiger #Tigers #Lions #NetflixAndChill #netflixandquarantine #quarantine #covid_19 #CoronaVirus #StayHome#StaySafe #StayHome #tigerkingfanart #CountryMusicStar #CountryMusic #Zoo #Redneck https://t.co/UeMGURrnlG"                                                                                                                                                                                                       
##  [536] "“If you find yourself in a more abundant position then others (aka, you have more than $400 in your bank account) this is your time to shine baby. You are the minority American here.”\nhttps://t.co/ylXP0997PH"                                                                                                                                                                                                                                                                                           
##  [537] "Technically life is not as easy for all of us \n\nThe sad part is if retailers reduce their trading hours we will automatically get paid less\n\nMost of us can't even afford to pay #DStv can't even afford the same services we offer to others daily \n\n#CoronavirusSouthAfrica #Covid_19"                                                                                                                                                                                                                
##  [538] "Again, we welcome these initiatives by @NGRPresident @CorrectionsNg @raufaregbesola However, time is of the essence. #COVID19 is spreading. There is no time for the usual Bureaucracy. Immediate action is required."                                                                                                                                                                                                                                                                                        
##  [539] "Oh my goodness <U+0001F62D><U+0001F62D><U+0001F62D>\nWhen will this stop !!!!\n\nCovid-19: Highest daily death toll as 919 die in Italy https://t.co/sQqTJ8NJ3J"                                                                                                                                                                                                                                                                                                                                              
##  [540] "#Jaipur |  Oman return tests positive in city\n\n#RajasthanLockDown #CoronaLockdown #Coronavirus #Stage3 #COVID19 #coronavirusindia #CoronavirusPandemic #CoronavirusOutbreak #CoronaUpdate https://t.co/KgH1dxNXTY"                                                                                                                                                                                                                                                                                          
##  [541] "@AnkitRawat98075 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs."                                                                                                                                                                                                          
##  [542] "This is the first time I’ve asked for shares. This is life or death. Please make the 3P tweet go viral  to help beat the virus. The situation is evolving quickly. Only community action can help NHS staff get the #PPE they deserve #COVID19 #covid19UK #Masks4All #PPEshortage"                                                                                                                                                                                                                           
##  [543] "That mpempe hun was so loud she woke Covid-19 up"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [544] "Hackers that target agencies working on COVID-19 cures should be given the virus if caught. This kind of callous behavior is simply unconscionable."                                                                                                                                                                                                                                                                                                                                                          
##  [545] "COVID-19: Akufo-Addo to meet NDC’s coronavirus response team https://t.co/3tO48Nxjg5"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [546] "Thank you @NickLaFave from @wzzm13 for the interview on Altus' production of #ventilator carts. Check it out below <U+2935><U+FE0F> #COVID19\nhttps://t.co/fdLdGUUtiR"                                                                                                                                                                                                                                                                                                                                        
##  [547] "SOME POSITIVE NEWS on #coronavirus : Dept. of @USNavy hospital ship \"USNS Comfort\" will arrive in New York on Monday - three weeks ahead of schedule. #CoronavirusNewYork #CoronaVirusNYC #CoronaLockdown"                                                                                                                                                                                                                                                                                                  
##  [548] "World Bank, IMF urge debt relief for poorer countries hit by coronavirus\n\nhttps://t.co/8an5qXT3fW #NRTnews #WorldBank #IMF #Coronavirus https://t.co/2GXmMsy3zS"                                                                                                                                                                                                                                                                                                                                            
##  [549] "**** IMRAN KHAN TEST COVID-19 POSITIVE***\nWhy our media Hide???? Like and share my page https://t.co/PbmQzcRLlx"                                                                                                                                                                                                                                                                                                                                                                                             
##  [550] "The Bermuda Cricket Board has held several “virtual” meetings to discuss possible changes for the new cricket season because of the Covid-19 pandemic. https://t.co/yfic5sCObv"                                                                                                                                                                                                                                                                                                                             
##  [551] "if/when a COVID-19 vaccine is developed...should it be free to all?"                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [552] "Manu Dibango - Electric Africa (1985) full album https://t.co/UcNBlPm60T via @YouTube RIP covid-19"                                                                                                                                                                                                                                                                                                                                                                                                           
##  [553] "@TeamRVH president and CEO Janice Skot updates the community on the situation at the #Barrie hospital regarding #COVID19. https://t.co/w9nUSVteUp"                                                                                                                                                                                                                                                                                                                                                            
##  [554] "When talking about #COVID19 #JoeBiden sounded professional and offered honest guidance with empathy and compassion. That’s why I’m #TeamJoe"                                                                                                                                                                                                                                                                                                                                                                
##  [555] "Trump’s new chief of staff still serving in Congress and trying to learn new role as COVID-19 threatens millions https://t.co/wtGbUlpFxQ"                                                                                                                                                                                                                                                                                                                                                                    
##  [556] "Everywhere that COVID-19 hits hardest, this is a very common theme. \n\nMulti-generational families living together:\n\nWuhan, Lombardy, Spain, Queens, etc.\n\nRemember, COVID-19 spreads in confined spaces. \n\nLockdown is the antithesis to stopping the spread."                                                                                                                                                                                                                                        
##  [557] "@BRIJESH40374114 Hi, in purview of COVID-19, we are currently operating at reduced strength. We might take a little longer than usual to respond back. While we are doing all we can to ensure that our services are running, we encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                
##  [558] "Great job ma'am,\nSelfish Bollywood should learn from this. \nSirf social media pe ghar pe rahne aur hat dhone k msg viral karne k liye hi nahi hai ye celibities.\n\n#PMReliefFund #COVID2019 https://t.co/z8NXeONtIH"                                                                                                                                                                                                                                                                                       
##  [559] "Patients are counting on lifesaving blood throughout this pandemic. If you're healthy, schedule an appointment to give in the days ahead: https://t.co/Cjp3HW9FPm #coronavirus https://t.co/PgP72jqkHL"                                                                                                                                                                                                                                                                                                       
##  [560] "Please visit https://t.co/dv9BqgCINX to find out if you are eligible for free COVID-19 testing by the City of L.A. Schedule an appointment now.   \n#COVID19 #CoronaOutbreak #TrumpVirusCoverup #TrumpPlague"                                                                                                                                                                                                                                                                                                 
##  [561] "#Trump signs $2 trillion #Coronavirus Economic Relief Bill = Cheques for #Americans - Too LATE for #UK and @10DowningStreet\n#BorisJohnson ££'s ...\n\n https://t.co/xUgSKv0aZj"                                                                                                                                                                                                                                                                                                                            
##  [562] "#COVID2019 #ThursdayThoughts UK eligible to take part in EU ventilator plan despite missed email https://t.co/JiKfy3g1pu"                                                                                                                                                                                                                                                                                                                                                                                     
##  [563] "PART TWO: Alternative Options that Uganda Can Adopt to Cushion Citizens During the Covid-19 Pandemic. - #COVID19\nhttps://t.co/b8ZmAo8DUE https://t.co/UqHx8rlCvk"                                                                                                                                                                                                                                                                                                                                            
##  [564] "I submitted my form today confirming my (and Norman's) participation in this initiative. If we're not going to get meaningful guidance from the state on how to handle this pandemic, I'll get it from my peers. Thanks for the help, @BloombergDotOrg! #COVID19 #localgov #OklaStayHoma https://t.co/6Ty4aIiJEy"                                                                                                                                                                                             
##  [565] "@marklewismd Entitlement of health needs re-assessment in leadership @ #COVID19 public health. <U+0001F34E><U+0001F34B><U+0001F34A><U+0001F34F>"                                                                                                                                                                                                                                                                                                                                                              
##  [566] "This is what one day of quarantine can look like in our house. #offwork #corona #coronvirus #covid_19 #covıd19 #quarantine #home #projects #parenting #motherhood #parenthood #stayhome #survive #stayhealthy… https://t.co/KPc3D7OFqH"                                                                                                                                                                                                                                                                     
##  [567] "#StayAwareStaySafe\n\nBenefits of social distancing :-\n\nEach one of us needs to maintain social distance, it will help flatten the curve &amp; slow down the rate of spread of #CoronaVirus!\nWith less patients, hospitals will be able to batter handle critical patients!\n#FridayMotivation https://t.co/twVlZoJRiL"                                                                                                                                                                                    
##  [568] "Watch \"Reporter Accuses Trump of Playing Politics with COVID-19. He BURNS Her!\" on YouTube https://t.co/4buta1o07x"                                                                                                                                                                                                                                                                                                                                                                                         
##  [569] "@Tirath89123746 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs."                                                                                                                                                                                                           
##  [570] "Courtesy of Asian Boss on youtube, leading infectious disease expert Professor Kim from South Korea shares his knowledge about COVID-19. Informative, detailed, and transparent; I highly, highly recommend it. \n\nhttps://t.co/IkSHOPEHnl"                                                                                                                                                                                                                                                                  
##  [571] "Some 1,500 passengers from Algeria, Tunisia, and Jordan stranded at #Istanbul airport by the #coronavirus pandemic have been taken to a dormitory in northern Turkey, according to local media. \n https://t.co/6jSakhuKjp"                                                                                                                                                                                                                                                                                   
##  [572] "Save Lives with Face Shields - my nephew’s company is making these at $1/each! Plz donate if you can! #COVID19 #1dollarequals1faceshield  https://t.co/NFASM7AQ3C."                                                                                                                                                                                                                                                                                                                                          
##  [573] "DONATION FOR DRIVERS\n\nWe plan to give a financial support or relief goods to workers who's daily income are just enough for a day particularly trycycle and jeepney drivers.\n\nKindly repost this photo! Thank you! <U+2764><U+FE0F>\n\n#Covid_19 #CoronaLockdown #Donations https://t.co/bI7ztFe02p"                                                                                                                                                                                                      
##  [574] "On <U+2066>@sunriseon7<U+2069> at 8.45am talking about how a wage subsidy will help us avoid mass unemployment #wagesubsidynow #coronavirus https://t.co/WmbeeiPTIn"                                                                                                                                                                                                                                                                                                                                          
##  [575] "Coronavirus Australia news: NSW confirms 186 new cases as Victoria pushes for stage 3 lockdown <U+2013> live updates https://t.co/ZyzL8J5Uo3"                                                                                                                                                                                                                                                                                                                                                                 
##  [576] "House passes $2 trillion COVID-19 emergency bill  https://t.co/DOK8mDMelR"                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [577] "The Four Seasons Hotel on 57th Street, New York City will provide FREE lodging to doctors, nurses &amp; medical personnel currently working to respond to the #COVID19 pandemic. Way to step up @FourSeasons! #TogetherWeCan"                                                                                                                                                                                                                                                                                 
##  [578] "Necessity is the mother of invention !!!\n#covid19 #savelives https://t.co/eoLvvnny7y"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [579] "The Armageddon is their business. And business is good. How survivalists are prepping for a windfall. My latest for @5280Magazine https://t.co/k9rtuWiv98"                                                                                                                                                                                                                                                                                                                                                    
##  [580] "Life at home cause of covid: 80% sleep, 10% gaming, 10% bsing on my phone.\n\nI am okay with this. #Quarantine #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                  
##  [581] "How do you think things are being handled with the #coronavirus?\n#covid19 #quarantine\n@PragerU #PragerFORCE @DennisPrager https://t.co/RZRsMYsfFA"                                                                                                                                                                                                                                                                                                                                                          
##  [582] "@Oochka3 @CTVNews ppl in the states died of chloroquine overdose after Trump said it was a covid-19 cure. \nwe're thinning the herd"                                                                                                                                                                                                                                                                                                                                                                          
##  [583] "While we've had to make significant changes to our daily lives to protect ourselves and our communities from the #covid19 pandemic, Seacology's work continues to move forward. This includes some major plans in the coming months.\nhttps://t.co/D6jCAz8BtW"                                                                                                                                                                                                                                                
##  [584] "People need to take the COVID-19 virus seriously, I can't work if there are customers who don't give a f*ck about it and don't follow the rules.."                                                                                                                                                                                                                                                                                                                                                            
##  [585] "If you’re in the business of growing grain - check out latest @GrainGrowersLtd farm guide for COVID-19 - plenty of tips and practical advice for helping manage the risks on farm @theGRDC @NationalFarmers #letsalldoourpart #COVID2019AU #agchatoz  https://t.co/wRMzlQLAzm"                                                                                                                                                                                                                               
##  [586] "Oof. The U.S. just became the global epicenter of COVID-19:\n\nhttps://t.co/Hd1VeGSmKw"                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [587] "Nope. Apple launches new COVID-19 screening app and website in partnership with CDC https://t.co/u1tHxkU3E2"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [588] "#Vancouver's #Roundhouse and #CoalHarbour CC will be converted to referral only response centres, housing those who do not have #COVID19 or housing and need to isolate. More to come: https://t.co/qmBS4cRRQT"                                                                                                                                                                                                                                                                                               
##  [589] "#Coronavirus pandemic:\n\nFrom 0 to 250,000 cases: 4 months\n\nFrom 250,000 to 500,000 cases: 1 week\n\n#ChineseVirus19 #COVID2019 https://t.co/TPRgXFCsz4"                                                                                                                                                                                                                                                                                                                                                   
##  [590] "What @realDonaldTrump is REALLY saying here is:\n“Yes, President Xi Did ask me to stop saying “Chinavirus” and like a good boy I complied.”\n\n#Coronavirus #TrumpLies\n#TrumpPandemic https://t.co/eXwT1as1Mo"                                                                                                                                                                                                                                                                                           
##  [591] "Looking for factual, local Miami-Dade County coronavirus (COVID-19) information? Testing, Curfews, Closures, etc...\n\nLatest Updates:\nhttps://t.co/bUE9vnWfWR\n\nMiami-Dade County Departments &amp; Services:\nhttps://t.co/mKVlNckp4B"                                                                                                                                                                                                                                                                    
##  [592] "This has bugged me for years. On the pilot episode of #Frasier, just before Martin enters Frasier is sitting at the piano playing a song then stops when the door bell rings. Can anyone name that song? #Covid19 #californialockdown #bingemywaythrucovid #Imstayinghome"                                                                                                                                                                                                                                    
##  [593] "@mkraju TRAGEDY:\n\n5959 new cases of #Coronavirus in #Italy with 919 new deaths. Taking tally to 86,498 confirmed cases &amp; 9134 deaths in total.\n\n46 doctors have died to date (with 4 additional deaths today). 6414 health workers have tested positive. #COVID19 #COVID2019 #coronaitalia"                                                                                                                                                                                                           
##  [594] "With this #coronavirus pretty much putting almost everything on hold, why is @24hourfitness still collecting membership fees? I think it’s time to cancel my membership if they don’t have the decency to put memberships on hold during this pandemic especially in cities with a"                                                                                                                                                                                                                         
##  [595] "@purtheil @realDonaldTrump Covid-19 what not to do: Oval Office edition."                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [596] "Zamfara State will shut down its borders as from Saturday, 28th March, 2020 which is a measure against spread of Covid-19. This was announced by Governor @Bellomatawalle1 in a state wide broadcast this evening.\nhttps://t.co/1nR1OtLtyu"                                                                                                                                                                                                                                                                  
##  [597] "They’re even saying covid 19 will struggle in Europe and America because of the hot weather in the summer. I’m going out this summer I really couldn’t give a fuck wallahi"                                                                                                                                                                                                                                                                                                                                
##  [598] "#COVIDWATCH graph for 26/3 from @mikey0callaghan with @UL + @ICGPnews. We are the vectors for #COVID19. It can't spread if we stay in our family units and stay home. YOU can save lives in your own community. So now, more than ever, please play your part #PhysicalDistancing https://t.co/Wu0uThXWYJ"                                                                                                                                                                                                    
##  [599] "The impact of the new coronavirus disease, COVID-19, is being felt around the world. We believe we are better when we work together. \n.\n.\n.\n#WeSelNwDreams #Bhhsnwre #Bhsnwrefw #Covid19 #StayAtHome #DoYourPart #StayHealthy #StaySafe #WashYourHands #Washington https://t.co/qzIXbMiGjH"                                                                                                                                                                                                               
##  [600] "Kindly take note:\n\nIf you are British visitor in Ghana and affected by COVID-19 please contact:  ConsularAccraEnquiries@fco.gov.uk @ukinghana https://t.co/yIhDwccqwk"                                                                                                                                                                                                                                                                                                                                      
##  [601] "\"The human ingenuity and ability to adapt and innovate in a time of crisis continues to astound and inspire me each and every day\" - Co-founder @BaillieForGood shares her thoughts on #insights in the time of #COVID19  https://t.co/GAZOzEbByA #MRX #MR https://t.co/yfc48xMPhk"                                                                                                                                                                                                                         
##  [602] "Hello yes it is I the deserving 10th seed of COVID-19 week 3."                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [603] "No wait are they... lying?\n\n#CoronaLockdown #coronavirus #CoronaUpdate #COVID19 #COVID2019 #Brexit #BrexitBeforeBreathing #BorisJohnson #ToriesFault #BorisResign https://t.co/CcFxjvjgnW"                                                                                                                                                                                                                                                                                                                  
##  [604] "Dozens of elephants 'set free' as chairs used to carry tourists are scrapped in wake of COVID-19 downturn [Video] https://t.co/UY8tI2K5Ah"                                                                                                                                                                                                                                                                                                                                                                    
##  [605] "We could easily actually have half a million or more COVID-19 cases in the U.S. by now. \n\nIf people are still being told not to get tested unless they have symptoms, and more people still aren’t getting tested if they have mild symptoms, the current 99k case count is inaccurate."                                                                                                                                                                                                                   
##  [606] "Corona Kavach: Indian Government launches location-based COVID-19 tracking app. #coronavirus #ceilingfansale #homedecor #CeilingFans  #design #TableFans #interior #PedestalFans #wallfans #ExhaustFans #Cool… https://t.co/58Sf3hoDwu"                                                                                                                                                                                                                                                                      
##  [607] "Leading VCs discuss how COVID-19 is impacting real estate &amp; proptech https://t.co/ojK2GfR4s3"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [608] "@EMD4ME Fox News just said Covid 19 is being unfairly blamed. People are actually dying of underlying health problems. That is what it is now down to. By mid-April we will have a 9/11 like death count every other day. (Hey but there’s a carryover at Oaklawn and the market is up! Yay)"                                                                                                                                                                                                                
##  [609] "Loss of smell may be an important clue in COVID-19 infection - The Daily Memphian  - https://t.co/zI98subOKJ  #COVID19 d19"                                                                                                                                                                                                                                                                                                                                                                                   
##  [610] "Rush Hour. Friendship Heights Metro Station. #coronavirus https://t.co/RXKYrEQa9T"                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [611] "Covid-19: Christians, Jews and Muslims join in prayer in Jerusalem - Vatican News https://t.co/gaPdVW983J"                                                                                                                                                                                                                                                                                                                                                                                                    
##  [612] "@nazifaz_ @WarwickLabour please investigate this hateful tweet celebrating Boris Johnson getting  #coronavirus <U+0001F44D>"                                                                                                                                                                                                                                                                                                                                                                                  
##  [613] "Here is The British Society of Gastroenterology's guidance and advice regarding #COVID19 #coronavirus. The advice for children is the same as for adults. There is a grid at end of this guidance which gives specific advice on self-isolation: https://t.co/4GSdZWDLo3 … https://t.co/79mRNctgne"                                                                                                                                                                                                          
##  [614] "#Canada - MPs poised to score pay hike amid COVID-19 crisis https://t.co/iEbBxdjRkx This is outrageous. #Cdnpoli"                                                                                                                                                                                                                                                                                                                                                                                             
##  [615] "My family is packing wildflower seeds to share with people in our village and inviting donations to @Somerset_CF #coronavirus appeal https://t.co/IjkNSrI8ke https://t.co/zCKPXYKUyj"                                                                                                                                                                                                                                                                                                                         
##  [616] "Thx @SenateGOP for forcing this sociopath upon our country in its hour of greatest need. #ShamSenateTrial #WeWillRememberInNovember #COVID19 https://t.co/ZGwH5sBV5Z"                                                                                                                                                                                                                                                                                                                                         
##  [617] "The irony of it. These money now will need to be spent to save jobs and lifes.\n#COVID19 #StayHomeSaveLives https://t.co/JECECN4NXW"                                                                                                                                                                                                                                                                                                                                                                          
##  [618] "People congratulating Boris Johnson's handling of #COVID19, I have to ask. Don't you think we'd have been in a much stronger position if we hadn't had more than a decade of austerity and cuts? The fact that front line workers can't get correct PPE is scandalous..."                                                                                                                                                                                                                                     
##  [619] "#Copyright in schools has been changing fast with the rapid move to #OnlineLearning. Here's an #infographic for teachers which may assist. Based on Australian law, but the principles will be the same everywhere; hope it's useful in this #Covid2019 world! https://t.co/zhfh8CbGdN https://t.co/UoLoY6OuJA"                                                                                                                                                                                               
##  [620] "@beholdcosmicwav Don't forget that if a state does more to check the incidence the fatality rate will tend towards its true value. Germany has tested 120,000 people in a month:\nhttps://t.co/dSTuCszjbS"                                                                                                                                                                                                                                                                                                    
##  [621] "2nd World Conference on #Vaccine &amp; #Immunology | October 19-20, 2020 | #Helsinki #Finland\n\nIf you are interested to be a part of this event as a speaker or delegate!\n\nE: meevents@memeetings.com\n\nVisit: https://t.co/C8L1REAeJd\n\n#Immunity #Childhealth #Infection #Coronavirus #Care https://t.co/0WK7Sd9gho"                                                                                                                                                                                  
##  [622] "\"A Washington Post poll this week found 48% of Americans approve of the president's work\"\n\nHow tf is this possible?\nAre they awake?\nAre they paying attention?\nWhat 10 feet below the bottom of the barrel benchmark are they using?\n#COVID19"                                                                                                                                                                                                                                                        
##  [623] "WATCH LIVE: San Diego Mayor Kevin Faulconer provides his daily update on the response to the #coronavirus. https://t.co/NWy9IhglxL https://t.co/91kKz9nQcl"                                                                                                                                                                                                                                                                                                                                                   
##  [624] "More than befores,, Glued to the books indoors slowly become a lifestyle during this Covid-19 times... I guess after this I can look back a count a positive attitude that was gained!"                                                                                                                                                                                                                                                                                                                       
##  [625] "@SamsClub 9 days later... No response. @SamsClub doesn’t care about #coronavirus safety! Wrong time to send a survey! https://t.co/tGHWQqB8LP"                                                                                                                                                                                                                                                                                                                                                               
##  [626] "@tanamongeau $ktbugg13 Just signed the lease to my apartment last month and am currently laid off due to covid-19 because I’m a waitress and my landlord basically said I have to pay rent by the 1st or I have to get out even tho this is affecting thousands of people. Anything would help:("                                                                                                                                                                                                            
##  [627] "@californiapuc Californians need relief. They are being told to stay home and running up their electricity bills. Please direct utility companies like @SDGE @PGE4Me to reduce rates and/or eliminate high usage charges during #COVID19"                                                                                                                                                                                                                                                                     
##  [628] "At 8pm tonight we are going to be joining in with the #ClapForOurCarers!<U+0001F499> In everyday life they go above and beyond but even more so while they work hard in the fight against #Coronavirus!<U+0001F499>\n\nWill you be joining in?<U+0001F499> https://t.co/TNJuKmcGLW"                                                                                                                                                                                                                           
##  [629] "@psac_afpc That should have been implemented in January 23rd!!!\n\n#COVID19 winning by late reaction gov of Canada"                                                                                                                                                                                                                                                                                                                                                                                           
##  [630] "<U+0001F4E3> New Podcast! \"Same God in an Uncertain World\" on @Spreaker #anxiety #christianity #coronavirus #economy #fear #god #health #jesus #sickness #uncertainty #virus #worry https://t.co/pCBt2EwkIw"                                                                                                                                                                                                                                                                                                
##  [631] "UCLA's Chip Kelly's Biggest Concern Is Players' 'Mental Health' Amid COVID-19 https://t.co/Klk1ek2Lb4"                                                                                                                                                                                                                                                                                                                                                                                                        
##  [632] "We need to suspend elective abortions now. #ChooseHope #coronavirus #ProLife \n\nPlanned Parenthood is now 100% abortion - and that's unacceptable: https://t.co/Rxf1nK6HK4\n\nHere's a state breakdown of #COVID19 and elective abortion policy: https://t.co/P0Qinv6L5p https://t.co/Chmjuml2ow"                                                                                                                                                                                                            
##  [633] "Map shows county-by-county breakdown of COVID-19 cases in the US \n\nThe maps runs on IBM's Watson, combining data from the World Health Organization with reported data at the state and county level to show a detailed breakdown of coronavirus cases across US https://t.co/HUXOw4qc6L"                                                                                                                                                                                                                   
##  [634] "@AherneMike95 Feel so reassured that we have the amazing #drcatherinemotherway @ULHospitals #nobull #Social_Distancing #washyourhands #COVID19 #LateLateShow https://t.co/ibfourxW8s"                                                                                                                                                                                                                                                                                                                         
##  [635] "I am currently #socialdistancing. I will be 100% #workingfromhome for the next 2 weeks. The #covid19 situation is very bad in NYC and no one is taking chances. I had to improvise with random furniture to make an… https://t.co/VB4TNmN3qt"                                                                                                                                                                                                                                                                
##  [636] "@56kylecoop @GulfstreamPark @HRRN Due to Covid-19 restrictions, the boys are doing a remote broadcast. Live at 5:30 ET on Sirius219/XM201 and streaming on https://t.co/dux7G6UP2S with @HRRNBaron #BobbyNewman\n@AnnouncerPete \nFlorida Derby (G1), Pan American (G2) &amp; Appleton (3)."                                                                                                                                                                                                                  
##  [637] "Shame On You @ArvindKejriwal \nI thought u will help poors in this pandemic situation, u will go against ur father #China but no u r a Communist n killing innocent people by hunger..u hv no heart.. SHAME\n#CoronaVillains #LockdownWithoutPlan #ChineseVirus19 #WuhanVirus #COVID2019 https://t.co/XeskwAapQb"                                                                                                                                                                                             
##  [638] "Families at risk of domestic violence need a way to request home delivered essential food packs. They can’t ask angry men for non-existent food/petrol $ OR leave kids home alone with them to go shop properly @Coles @woolworths @AusPost @amazon @ALDIAustralia @uber #coronavirus https://t.co/UTt2cFuMm0"                                                                                                                                                                                               
##  [639] "See the video recording of our webinar: Contain #COVID19, Not People! \n\nhttps://t.co/g8nNI6KWPz\n\nEdited closed-captioning to be included shortly.\n\n#ContainCOVIDNotPeople #AnswerTheCall #LetUsTalk #abolitionNOW #FreeThemAll4PublicHealth #LetThemGo"                                                                                                                                                                                                                                                 
##  [640] "I hope y'all have a negative for the covid-19 https://t.co/Dl0OIFTr4x"                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [641] "gerald_bader : Bird lays off about 30% of workforce amid COVID-19 pandemic via Megan Rose Dickey https://t.co/2r6e5W5ChE #ML #AI #Analytics #Automation https://t.co/cJ3kgHB5HH (via Twitter https://t.co/bjJg0OOkWU) https://t.co/qF51vyjrir"                                                                                                                                                                                                                                                                
##  [642] "@Baddiel @WeeMissBea It's actually the other way round. Sars-CoV-2 is the virus which causes a disease called Covid-19 x"                                                                                                                                                                                                                                                                                                                                                                                     
##  [643] "We are hosting #quickcast series on issues surrounding #COVID19, and @DoubleEph was our first guest. It was insightful and enlightening. Listen or download now https://t.co/tk4NNGPDD8"                                                                                                                                                                                                                                                                                                                      
##  [644] "@JohnACrimmins @JohnACrimmins they have done one thing exceptionally well - sent very clear, no fluff, messages to their people. \"If you have any questions and you are looking for answers, apply a simple rule - act like you have Covid-19...Be kind, stay at home, break the chain.\" Ardern"                                                                                                                                                                                                            
##  [645] "@JGPharmD @NickKristof @V2019N @stuartathompson Also they don't really attempt to slow it down much at all.\n\nPeople are still allowed to go out. Groups over 500 are banned. Elementary schools open. It's kinda seen as it being fine hospital staff and care givers don't use protection. #SARSCoV2 #COVID19 #Sweden\n\n..."                                                                                                                                                                              
##  [646] "@MargotR90016343 @MargotRobbie Sorry for bothering you, when COVID-19 is finished you are very welcome in Banff, AB Canada"                                                                                                                                                                                                                                                                                                                                                                                   
##  [647] "Nancy Pelosi: Ring leader of Democrat’s Covid-19 relief thievery https://t.co/735OlTKDNw via @CommDigiNews"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [648] "I was told there would be an abundance of time to kill. So far, this is the opposite of that. \n#socialdistancing #COVID2019 #ParentingInAPandemic"                                                                                                                                                                                                                                                                                                                                                           
##  [649] "Find out what's in the #CARESAct #stimulusbill that passed the Senate last night. It's now on to the House for a vote, so check back for updates: https://t.co/rgIDFVCImq  #coronavirus #COVID19 #businesshelp"                                                                                                                                                                                                                                                                                               
##  [650] "My sales dropped a lot as shipping has been suspended to many countries amid #COVID19 pandemic. I have many downloadable PDF #crochetpatterns in my shop. Please help me by sharing this tweet \n #Etsy #crochet #pandemic #SmallBusiness https://t.co/kR2hGSZfJA"                                                                                                                                                                                                                                            
##  [651] "Couple recreates final dance scene from ‘Dirty Dancing’ while in COVID-19 isolation https://t.co/AgJoq6VCPN"                                                                                                                                                                                                                                                                                                                                                                                                
##  [652] "If you want to get out of the house, the Wildlife Safari near Ashland opened up Friday.  Just expect a wait time.  The venue made some changes to help prevent the spread of #coronavirus more on that tonight at 6pm @3NewsNowOmaha https://t.co/6MljsBTmFL"                                                                                                                                                                                                                                                 
##  [653] "The @nigerianports, other shareholders donate @AguraHotel as Isolation Centre for COVID-19 in Abuja. https://t.co/OFbQvdwjLH"                                                                                                                                                                                                                                                                                                                                                                                 
##  [654] "@PuneCityPolice https://t.co/1XIUKUmf8I\nPUNE: WAGHOLI HOSPITAL STAFF EVICTED FROM NEARBY SOCIETY AMID COVID-19 Scare."                                                                                                                                                                                                                                                                                                                                                                                       
##  [655] "Definitely uplifting Treatment of 5 Critically Ill Patients With COVID-19 With Convalescent Plasma | JAMA | JAMA Network https://t.co/ej71mECRsJ"                                                                                                                                                                                                                                                                                                                                                             
##  [656] "Awww fuck! https://t.co/IvhreWe61E"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [657] "@KayceeMaduYEG @rebeccakschulz Hope they record everything.  Our council was still recommending that public go to a seniors tea March 13, and a fundraiser dance March 14.  Now we have Covid-19 in our community."                                                                                                                                                                                                                                                                                           
##  [658] "@Postmates me and my mom are doing Postmates to earn a little extra money through this COVID-19...my moms has been going off the hook with deliveries and I’m lucky to have one throughout the whol day...what gives? <U+0001F615>"                                                                                                                                                                                                                                                                          
##  [659] "@san614617 Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                                 
##  [660] "@ananavarro I don’t believe this poll is accurate. #coronavirus https://t.co/w0yHEiYlO7"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [661] "EXCLUSIVE: A person incarcerated on Rikers Island speaks out. “They’re putting up posters everywhere that say, 'Space yourselves six feet apart!' It’s completely impossible. Even if this place was half full, it would still be impossible at most times.” https://t.co/sBZax17rK3"                                                                                                                                                                                                                     
##  [662] "@rachelgould1996 @thescottishsn @FionaCMcQueen @NHS_Education You will have a lot to reflect on after all this is over, you may want to keep a diary, it’s been shown this helps during times of stress at work #mentalhealthsupport #staysafe #COVID19"                                                                                                                                                                                                                                                     
##  [663] "A small kind gesture always matters. Show love to our First Responders. Thank you @krispykreme for providing 250 Two Packs to our officers at the 42nd Precinct in #TheBronx.  We will overcome #COVID2019 together by #BuildingABetterBronx https://t.co/1LYpfDbpAP"                                                                                                                                                                                                                                         
##  [664] "Support is available for Kiwi businesses and workers who have been impacted by COVID-19. The Government's economic response package is in place to ensure that workers receive some form of income as we weather the global economic impacts of the virus. More<U+27A1><U+FE0F>https://t.co/9biBrfyG0I https://t.co/lYvFHYWTH1"                                                                                                                                                                               
##  [665] "Just a reminder that, other than evidence provided *by China* <U+2014> a regime known for tyranny and govt control <U+2014> there’s nothing to indicate COVID-19 has stabilized in China. https://t.co/j4lZIMyx2H"                                                                                                                                                                                                                                                                                           
##  [666] "VIDEO: A COVID-19 Admonition ***EXPLICIT https://t.co/Np8JFzRNlM via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [667] "@YRDeshmukh The series of events in which this #CoronavirusOubreak has occured clearly points a doubtful finger towards #China .\n\nAnd there is no harm calling #COVID19 as #ChineseVirus19 because in the past also many diseases have been named by their place of origin.\nKindly google abt it !"                                                                                                                                                                                                        
##  [668] "I have been doing a lot of video calling for someone that hasn’t washed their hair in a week <U+0001F486><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F602> #Lockdown #COVID2019"                                                                                                                                                                                                                                                                                                                                    
##  [669] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!!\n\nhttps://t.co/crzOOIJe0m"                                                                                                                                                                                                                                                                                                                                                                                                                
##  [670] "Now we discover what “rights” we really have, perhaps proving the point that we have none, that we have privileges which must be cherished and preserved. #COVID19"                                                                                                                                                                                                                                                                                                                                         
##  [671] "Looting of goods in some parts of south of the border in a Covid 19 backdrop es no bueno"                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [672] "A massive Thank You to the NHS and those on the frontline, volunteers and key workers helping with the virus battle! Lots clapping <U+0001F44F><U+0001F44F><U+0001F44F> here for you all. Obviously those who didn’t clap need to go to the clap clinic but I’m afraid the NHS are rather occupied with Covid 19."                                                                                                                                                                                          
##  [673] "GOP governor @GovParsonMO: 'I don't believe I am costing lives' by refusing to act on #coronavirus #MOGOV  https://t.co/fn9llf1Gvh"                                                                                                                                                                                                                                                                                                                                                                           
##  [674] "I've been traveling for a few years and to see all #airtravel grind down to a hault is so new, to have a 5th of the population of the planet in some sort of #stayathome feels like the beginning of an apocalypse movie #besafe among the #Covid_19 worries"                                                                                                                                                                                                                                                 
##  [675] "#CNNTownHall Will the COVID-19 vaccine give me autism?"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [676] "NEW data visualizations are available on the #COVID-19 page from @UNOSNews https://t.co/GiAlJD2yxE ...These charts show national #data on #organ #transplantation &amp; #donation &amp; they are updated daily!!!"                                                                                                                                                                                                                                                                                            
##  [677] "Sure. 24,000+ people are dead, but no biggie. The US now has the most confirmed cases of COVID-19, but her emails. Fear has nothing to do with facts. https://t.co/AG1xPsViNR"                                                                                                                                                                                                                                                                                                                                
##  [678] "@dsgngal @jdwickie I felt guilty for 2 1/2 years about my thoughts when it comes to Trump. But how can anyone with a heart not feel this way? Kids in cages, sacrificing our Kurdish allies, Khashoggi, racism women's rights, POC, LBGTQ rights, Climate Change Covid-19. He did nothing until he had to."                                                                                                                                                                                                   
##  [679] "Great to be part of this Swedish-Chinese collaboration in times of #COVID19  https://t.co/xZsKBcGmxA"                                                                                                                                                                                                                                                                                                                                                                                                         
##  [680] "#BREAKING Reno County now reports 5 cases of COVID-19. The two latest patients are men over the age of 50. https://t.co/dk5X3jzac2 #kwch12 https://t.co/u3UsM7L1ZO"                                                                                                                                                                                                                                                                                                                                           
##  [681] "Thank you for the great initiative and innovation!\n\n\"can supply up to 100,000 Covid-19 testing kits a week and can produce up to 200,000 if needed.\" \n\nMUST CHANGE TO \n\n\"WE MUST supply 100,000 #COVID2019 testing kits/ week and HAVE TO DELIVER up to 200,000\"\n\n#CoronavirusOutbreak https://t.co/T7ytnFpof6"                                                                                                                                                                                   
##  [682] "Cepheid Receives Emergency Use Authorization from FDA for Rapid SARS-CoV-2 Test - Mar 21, 2020 https://t.co/QzVMFo5lSs #covid19 #pandemic #coronavirus"                                                                                                                                                                                                                                                                                                                                                       
##  [683] "Panama Canal blocks Holland America cruise ship with 138 ill crew members and passengers, and 2 confirmed cases of COVID-19 on board https://t.co/rTKeXWJkUC"                                                                                                                                                                                                                                                                                                                                                 
##  [684] "She was furloughed, but they hope this is temporary. I understand state &amp; local health agencies are overwhelmed but their has to be a way to redirect healthcare workers to fullfil needed functions, like testing. #coronavirus"                                                                                                                                                                                                                                                                         
##  [685] "Nonprofits and Companies That Are Helping to Fight the Pandemic https://t.co/JSAeXxc9tt"                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [686] "Hey @BostonGlobe: take down the paywall for #COVID2019 coverage and I’ll resubscribe"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [687] "Monday on “In The Ring With Mia” @ 7am - 8am PT I’ll be talking #steroids in #boxing How it affects #MENTALHEALTH &amp; how it affected my physical health<U+0001F397>Then we’ll check in w/ @LaurenceRifkin &amp; get the latest tips on #coronavirus Call in with ur questions! https://t.co/t4w07S3n1l https://t.co/InlWINN6WN"                                                                                                                                                                        
##  [688] "Two Areas In Johor Are Now Under #Lockdown Due To High Number of Positive #COVID19 Cases\n\n#movementcontrolorder \n\nhttps://t.co/gvZzERvH83 https://t.co/CMUKbdc48H"                                                                                                                                                                                                                                                                                                                                        
##  [689] "@_chaybay21_ Plus who honestly belives China is telling the truth about their cases. After all they suppressed anyone trying to warn the world about Covid 19 in November."                                                                                                                                                                                                                                                                                                                                   
##  [690] "Whole street out tonight to say Thank You to @NHSuk staff and ALL those working hard (delivery drivers, postal workers, distribution worker, carers ETC.) to keep us safe! #COVID19 https://t.co/Px4AJinV7X"                                                                                                                                                                                                                                                                                                  
##  [691] "#covid19 #chinaliespeopledies\nIts a request to all police plz don't behave like a killer only punish people for their saftey only how Cornoa can kill people when their guards can kill people by beating them its a horrible thing that i have heard . https://t.co/EcIiyit2AS"                                                                                                                                                                                                                             
##  [692] "TOO CUTE! A few lucky pups had the Georgia Aquarium all to themselves this week. The aquarium is closed (to humans) due to the coronavirus pandemic. <U+0001F436> VIDEO: https://t.co/7JARWU8TzU"                                                                                                                                                                                                                                                                                                             
##  [693] "Excellent webinar in COVID-19 crisis management and clinical experience. https://t.co/JBDgcQL6dL"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [694] "Mesa County has 7 cases of COVID-19 according to new @CDPHE numbers.\nColorado totals:\n-1,734 cases\n-31 deaths \n-239 hospitalized"                                                                                                                                                                                                                                                                                                                                                                         
##  [695] "#MaximumPressure’ campaign has weakened the Iranian economy and eroded the confidence of the Iranian people in their government #nowruz #covid19 @jzarif https://t.co/LmaEok1mnT"                                                                                                                                                                                                                                                                                                                            
##  [696] "This is an emotional rollercoaster #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [697] "#COVID19 is not a joke,So please stay at home,stay safe &amp; stay healthy <U+0001F64F>. https://t.co/WUtMW0zKKE"                                                                                                                                                                                                                                                                                                                                                                                             
##  [698] "<U+0001F914> I don’t wanna speculate but I think (and this is completely just a thought,of which I cannot be held liable for it, anyone’s perception of it or any further news that may arise from it, inclusive of but not limited to the influencing of people’s views on covid-19)"                                                                                                                                                                                                                     
##  [699] "@drjenndowd here is the link to the a English version of the executive summary: https://t.co/72UQEcM7R8"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [700] "I can't begin to imagine what it must be like for people who don't have good digital access and connectivity during #COVID19. Then again, digital immersion at this time can also be challenging to wellbeing.  #SAheapsunfair"                                                                                                                                                                                                                                                                               
##  [701] "It will ship payments of up to $1,200 to millions of Americans, bolster unemployment benefits, offer loans, grants and tax breaks to businesses large and small. #coronavirus\nhttps://t.co/FYS759cgqB"                                                                                                                                                                                                                                                                                                       
##  [702] "<U+2022> mood confinement eat sleep - acnh netflix ! #Covid_19 #ACNH #Netflix"                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [703] "@Wil_Johnson1 @gatewaypundit Watch from here... Nurse laid off suspected Covid-19. After Joe rattles off his morbid death experiences with his own family in Hospitals he starts reading her benefits she will get that Congress just passed. It gets too complicated so...No Joke..Call Me\n\nhttps://t.co/M1b9e6oB9I"                                                                                                                                                                                       
##  [704] "3.3 million have applied for unemployment this week.\nWe have 330M people in this country. How many of us are workers that could even be eligible for unemployment?\nThen only a percentage of them have applied. That is why this number is so alarming.\n#CoronavirusOubreak \n#NotEaster"                                                                                                                                                                                                                  
##  [705] "These changes to SDOH are likely to be in place for months at least, and some perhaps for longer. \n\nTo put it bluntly, from a public health perspective, we are playing with fire.  \n\nIn responding to the COVID-19 virus, we are disrupting many of things that support good health."                                                                                                                                                                                                                    
##  [706] "Boosting the immune system after being chased by two crazy neighbors who don't care about the #sixfeet rule <U+0001F615> <U+0001F620>\n#immunesystem #boostingimmunity #SocialDistancing #QuarentineLife #Prevention #StayYourAssAtHome #BeSmart #StayHealthy #Coronavirus #Covid19 #GoVegan #GoPlantBased https://t.co/KO4GqqHiJS"                                                                                                                                                                           
##  [707] "@JennMGreenberg @Cody_Floate Yep! As Liz says in the video, if it’s not Covid-19 then why can't Lilly have steroids? And if it is possibly Covid-19 she should be tested. She is the very definition of high risk."                                                                                                                                                                                                                                                                                          
##  [708] "This is great advice from Dr. Michelle Dickinson aka Nanogirl on what to do to protect yourself when shopping at the grocery store.\n\n@medickinson #COVID19 #StaySafe #StayHome #StayHealthy #StayHealthyEveryone #KeepOthersSafeToo https://t.co/B9Bg4gfmID"                                                                                                                                                                                                                                                
##  [709] "Had to wear mask for 2 hours today while going out for an essential work. That is when I fully realized how much difficult the doctors are going through physically and mentally to wear a double mask while dealing with patients with #COVID19 .Literally had no words to praise them!"                                                                                                                                                                                                                     
##  [710] "COVID-19 is not going to return the hostages after President leaves office. https://t.co/jTVMDDgQYt"                                                                                                                                                                                                                                                                                                                                                                                                          
##  [711] "How many #suicides have there been because of the #coronavirus?"                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [712] "Jump in Arizona #COVID19 numbers. 13 deaths, 665 positive tests, 102 in Pima County. Again these are only test results and do not reflect the total number of people with the virus"                                                                                                                                                                                                                                                                                                                          
##  [713] "@TimesNow Who represents Indians? SC or Lokh Sabha. SC only Duty --interpret laws. SC is telling Center to jeopardize the life of 1.3 Billion Indians especially it was Indian Shia pIlgrims choice to be in epicenter of Covid 19 Qom.@narendramodi @AmitShah @Swamy39 @amitmalviya @MajorPoonia"                                                                                                                                                                                                            
##  [714] "#coronavirus #justforfun  my son was listening to this song it's raining tacos &amp; wa lah #inspiration <U+0001F923><U+2764> https://t.co/ViEQnm4jdh"                                                                                                                                                                                                                                                                                                                                                        
##  [715] "Johns Hopkins' widely used #COVID19 map erased \"Palestine\" and merged cases into the numbers for \"Israel,\" making it impossible for more than two weeks to track cases in the West Bank and Gaza https://t.co/L12gpsn77A"                                                                                                                                                                                                                                                                                 
##  [716] "Beloved Seattle restaurateur dies from coronavirus as her husband also battles the virus https://t.co/jiZf0yvz71"                                                                                                                                                                                                                                                                                                                                                                                             
##  [717] "Entrepreneur Ignas Jurkonis and Hollywood actor Ian Ziering takes active part in fighting Corona virus (COVID-19) https://t.co/VbZBkpgKlE https://t.co/EgWirgaVEM"                                                                                                                                                                                                                                                                                                                                            
##  [718] "Jeff Bezos sold $3.4bn of Amazon stock just before Covid-19 collapse https://t.co/glhE1Q4iLP"                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [719] "the United Stares has a population of 330 million while China has 1.2 billion yet we somehow managed to have more cases of covid-19. Tell me how that happens? @realDonaldTrump \nHow does China manage to control the outbreak with a population of 1.2B and we can’t with 330M? <U+0001F602><U+0001F602>"                                                                                                                                                                                                  
##  [720] "A new machine is currently in place and installation will be in place soon, 10,000 tests have been ordered to go with this machine. We currently have 3000 test kits minus the 250 tests that were done, PAHO is to give us 6000 more kits. #covid19"                                                                                                                                                                                                                                                         
##  [721] "@realDonaldTrump @Kayrile02025449 WHO is Dr Faucci &amp; Debra Brix really?\nTedros, Bill Gates, CF, PEPFAR, circle of corruption. \n#COVID19?\n#Eugenicist #Vaccines  #AIDS\n\nAnother piece of the puzzle by: #AmazingPolly\nhttps://t.co/sumtdEcwBm"                                                                                                                                                                                                                                                       
##  [722] "President #Trump allegedly got advice from #ARod &amp; spoke to him about the #CoronaVirus response. https://t.co/1mCetLyFvi"                                                                                                                                                                                                                                                                                                                                                                                 
##  [723] "There have been 170 cases of coronavirus community transmission in NSW as the state’s Premier @GladysB announces another death. #coronavirus #7NEWS \n\nhttps://t.co/B9ICnj0B3Q"                                                                                                                                                                                                                                                                                                                             
##  [724] "Know what’s tough? Having to explain to your 10 year old son why you had all 4 grand parents for 37 years while he is trying to understand why he lost his first and can’t say goodbye. #COVID19 and yes I understand he and I are both lucky"                                                                                                                                                                                                                                                              
##  [725] "The most powerful single image of the COVID-19 crisis yet https://t.co/WhNQ6YkwwB #infoviz"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [726] "Don't let coronavirus concerns stall your business. Discover how these remote working technologies can keep your team productive (and safe!).  https://t.co/nU3RaMPr9T\n\nBy @chalklinetech\n#remoteworking #homeworking #coronavirus https://t.co/uNW2psMEQc"                                                                                                                                                                                                                                                
##  [727] "#COVID2019 James Dyson invented a new ventilator in 10 days. He’s making 15,000.\n https://t.co/A8KSXx4NqB"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [728] "Health officials say peak of COVID-19 crisis is yet to come https://t.co/I5qvbmO2Bi"                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [729] "Tomorrow, NY will have more new cases than Italy.\n#COVID19  I do not write this lightly.  We have started the math logarithm task force led by Gordon Buchanan and we all are struggling with how horrific this is."                                                                                                                                                                                                                                                                                         
##  [730] "@Baddiel I blame you. Before I saw your show in Basingstoke the million years ago that was last month I didn’t do Twitter, and now I spend my days scrolling for comedic relief from #COVID19"                                                                                                                                                                                                                                                                                                               
##  [731] "A Look Inside the Navy Hospital Ships Fighting COVID-19 https://t.co/JuDoGZeouO"                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [732] "@greaterheights_ @Dclasyc ... imagine if they’ve seen how ‘vulnerable’ we are now cause of #CoronaVirus https://t.co/ld81qhaGVl"                                                                                                                                                                                                                                                                                                                                                                           
##  [733] ".@HouseDemocrats will always fight for America’s #students. In the new #coronavirus relief bill, we've paused payments for federal #StudentLoan borrowers, suspended wage garnishment and negative credit reporting, and secured over $30 billion in emergency #education funding."                                                                                                                                                                                                                          
##  [734] "We wish all of us safe as we combat this novel-CoronaVirus19. #COVID19 #CoronavirusPandemic  #COVID2019 \nWe shall defeat it,  God is with us.\nN/B : Follow  the instructions and guidelines given by the government."                                                                                                                                                                                                                                                                                       
##  [735] "Another activity's season lost to the Covid-19 pandemic. Definitely the right decision, but still disappointing. #dci2020 #marchon"                                                                                                                                                                                                                                                                                                                                                                           
##  [736] "Dr. Arnaud Prevot, School Marketing Specialist, on why the COVID-19 pandemic and its expected economic and social impacts may lead private schools to seriously consider a Blended Learning Model. https://t.co/HitbcO2Qgi #schoolleadership #covid19 #coronavirus #blendedlearning"                                                                                                                                                                                                                          
##  [737] "Snoops understands social distancing. Be like snoop. #COVID19 https://t.co/AKZzsIc5BK"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [738] "The whole world faces one virus, yet Palestinian people face two viruses: corona and \"Israel\". #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/IpcRVm4srA"                                                                                                                                                                                                                                                                                                                                        
##  [739] "Showing maps on Covid-19 cases."                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [740] "#BC residents are optimistic about of the #Federal Government's financial aid package in response to #COVID-19. 79% across the Province think that this aid will be effective.\n\n67% feel Prime Minister Justin #Trudeau is doing a good job handling the crisis\n\nhttps://t.co/IfHj5g10Am https://t.co/3sJ7tsIuYZ"                                                                                                                                                                                         
##  [741] "How the #VanLife community is coping with the coronavirus crisis https://t.co/Bh5eOH7aLd via @Curbed"                                                                                                                                                                                                                                                                                                                                                                                                         
##  [742] "VIDEO: In an exclusive interview, Abta's CEO Mark Tanzer talks to @Lucy_Huxley about negotiations with the government on refund rules and the future of the travel industry. Watch it here:\nhttps://t.co/7aY8wj5rR6\n\n#Coronavirus\n@ABTAtravel https://t.co/U4cy6Poouq"                                                                                                                                                                                                                                    
##  [743] "This #Covid_19 pandemic will not only be a lifetime lesson but a litmus test to those regimes which promise heavenly healthcare services to the taxpayers while delivering raw material for constructing hell. https://t.co/RQUBWtJ8qq"                                                                                                                                                                                                                                                                       
##  [744] "COVID-19 Phone Location Tracking: Yes, It’s Happening Now<U+2014>Here’s What You Should Know via @forbes https://t.co/LlW7R5m4IM"                                                                                                                                                                                                                                                                                                                                                                           
##  [745] "Getting a lot of questions from partners and clients in terms of how to track the impact of the #COVID19 Stimulus Bill. <U+2066>@JoeKnowsGov<U+2069> to the rescue with this great summary. #govtech  https://t.co/RM3NIhRYH3"                                                                                                                                                                                                                                                                                
##  [746] "Illinois health officials: 488 new cases of COVID-19, bringing total to 3,026 across the state\n\nTotal COVID-19 related deaths: 34"                                                                                                                                                                                                                                                                                                                                                                          
##  [747] "Arts Support Included in Federal COVID-19 Relief Bill https://t.co/LWsZTni8Ny"                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [748] "Has anybody checked if mosquitoes can help spread covid-19?\n\nIf it sticks an infected person and flies to stick a none infected person, will the the person become infected?\n\nhttps://t.co/kPfkFLmAXN"                                                                                                                                                                                                                                                                                                    
##  [749] "@RTGACADEMY Super hero Ryan. Delighted to hear that you are doing well in the USA. Stay safe from that bloody covid 19. Will be looking forward to seeing you in tallaght sometime."                                                                                                                                                                                                                                                                                                                          
##  [750] "These are family friends from #WNY and they facing dangerous consequences if they don't receive the medicine they need to survive.\n\nPls share. Maybe someone out there will have answers for this desperate family: https://t.co/B42klLEqYP\n\n#WNY #COVID19 #stuckinmalaysia"                                                                                                                                                                                                                              
##  [751] "@AshburnDusty @Azdeb1957 @MaryPea10015905 @NotSoSuper_Dave @EmeraldEagle79 @The_Webologist @DynastyFrank @leftontheradio @MichaelRoach @JohnFromCranber @maddow @BarackObama @FoxNews Suggest reviewing what trump has done to degrade America\n\n- deny #ClimateChange\n\n- DOUBLING. #deficit\n\n- removing vital #environmental #regulations\n\n- Lying about #energy independence\n\n- attacking #FreePress\n\n- delay response #coronavirus\n\n#ThursdayThoughts @FoxNewsOpinion https://t.co/6xFsFgd9Xf"
##  [752] "The number of #coronavirus related deaths in Italy has risen by 919, taking the country's total to 9,134.\n#Italy #CoronaUpdate #COVID2019 https://t.co/TOgldXdKV7"                                                                                                                                                                                                                                                                                                                                           
##  [753] "This is hilarious \n#COVID2019 https://t.co/ZafyVJ9P8Q"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [754] "US passes China for total COVID-19 cases according to the Worldometers tracker https://t.co/JtELbmeA9n"                                                                                                                                                                                                                                                                                                                                                                                                       
##  [755] "With #COVID19 outbreak safety and health measures for workers of solid waste treatment is a big concern for all of us. @UNDP in partnership with #EU continues to support municipalities in all Libya with procurement of equipment to support the solid waste management sector https://t.co/dWXRuq85rS"                                                                                                                                                                                                     
##  [756] "An online fund to help the @unilincoln's project to help make safety visors and other equipment for hospital staff treating Covid-19 patients has raised more than £12,500 #CapitalReports https://t.co/PGYY4q3YwS"                                                                                                                                                                                                                                                                                          
##  [757] "As @realDonaldTrump Said : \nAmerica first \n#CoronavirusUSA #COVID2019 #Coronavid19 https://t.co/AEHuxYiU5T"                                                                                                                                                                                                                                                                                                                                                                                                 
##  [758] "After testing, doctors have recommended that Richard Burgon MP self-isolate.\n\nIn other news, he’s not showing any signs of #COVID19."                                                                                                                                                                                                                                                                                                                                                                      
##  [759] "@vinayak_jain Especially when they are the root cause of this evil! \n\n#ChineseVirus\n#COVID2019\n#CoronaUpdate"                                                                                                                                                                                                                                                                                                                                                                                             
##  [760] "America that won't lose to the covid-19   We support the United States."                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [761] "COVID-19: What Bashir Ahmad said about President Buhari, Abba Kyari being secretly flown abroad https://t.co/cAv3LR9BuG"                                                                                                                                                                                                                                                                                                                                                                                      
##  [762] "During a time where many people are being affected by this Covid-19 pandemic, it is great to see these companies stepping up and showing great corporate social responsibility to the public! <U+2764><U+FE0F>"                                                                                                                                                                                                                                                                                               
##  [763] "3 times the number of annual flue deaths may not impress epidemiologists, lumped in a month by CovID creates a 25-fold surge in demand for ICU beds. If you work there (or in the morgue) it doesn’t look optimistic.  But the is a bigger picture we need to mind as well.   #COVID2019"                                                                                                                                                                                                                    
##  [764] "The world may not begin to appear normal again until three things have happened. #pandemic #coronavirus https://t.co/1GI2FsMoX8 via @wired"                                                                                                                                                                                                                                                                                                                                                                   
##  [765] "LinkedIn lists 10 most in-demand jobs, companies with most open positions during Covid-19 pandemic https://t.co/6CeooFsUTH"                                                                                                                                                                                                                                                                                                                                                                                   
##  [766] "COVID-19; Husband died in Kerala on wedding anniversary, wife in Dubai\n#Kochi #Bijimol #Keralitewoman #Dubai #virus #VirusChino #nCoV19 #ChinaVirus #WuhanCoronavius #lockdown #StayHome #Social_Distancing #CoronavirusPandemic #COVID2019 #COVID19 \nhttps://t.co/nHKpDDsDqH"                                                                                                                                                                                                                              
##  [767] "Every news is biased so am I #CORONAVIRUS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [768] "The world: losing jobs, terrified of COVID-19 &amp; staying home to avoid it  \n\nCongress: approved $2 trillion in emergency spending to help businesses &amp; families\n\n@USOCC: pushing ahead with a plan to help banks do less for poor people and poor neighborhoods.\n\n#TreasureCRA @FDICgov"                                                                                                                                                                                                         
##  [769] "How dare #coronavirus not \"discriminate\" and infect a Royal! Off with its head!! <U+0001F451> #CORVID19 #PrinceCharles https://t.co/yAzBGdr5I0"                                                                                                                                                                                                                                                                                                                                                             
##  [770] "\"Essential: My Careers, Yes. Lockdown, Yes. \"Demon City Shinjuku\", Maybe\". From current desolation to future destruction. https://t.co/oilpNd1rtP #anime #animationlockdown #movies #AnimeArt #COVID2019 @FUNimation @PrimeVideo  @Crunchyroll"                                                                                                                                                                                                                                                           
##  [771] "Help slow the spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download the app https://t.co/jGd2XLkLQw"                                                                                                                                                                                                                                                                                                          
##  [772] "@HSELive Check out this interactive online dashboard which tracks the spread of COVID-19 across Ireland at https://t.co/MnTTsFTgcA. We all have a part to play in flattening the curve! #COVID19 #COVID19ireland  #SocialDistanacing #FlattenTheCurve https://t.co/CBwbL63HoJ"                                                                                                                                                                                                                                
##  [773] "Please help spread the word to families in Miami-Dade: Women, Infants &amp; Children (WIC) REMAINS OPEN! They provide healthy food, nutrition education, breastfeeding support, &amp; family resources. #COVID19 #coronavirus #MiamiBaby #MiamiMom More info:\nhttps://t.co/fSOK06quf0 https://t.co/uCyeKgIVbR"                                                                                                                                                                                               
##  [774] "There are 375 jails in Turkey for 220,000 people but nowadays 300,000 prisoners are kept inside.\namong them:\n780 babies \n2500 kids \n1333 patients \n457 serious patients, who are very likely to catch COVID-19\n\nKoronaTahliyesinde E<U+015F>itlik\n\n@NASM @AmCollSurgeons @NightShiftMD https://t.co/Dj1aQa6hbF"                                                                                                                                                                                      
##  [775] "@PatriotsSoapbox Does anyone else wonder where all the homeless population is? I am concerned sincerely about them during COVID 19....I know some don't care but as a mom of an addict (recovery now) I do. Does anyone really know?"                                                                                                                                                                                                                                                                         
##  [776] "The Missionary Sisters of the Sacred Heart of Jesus join @Pontifex's prayer. <U+0001F64F><U+2764><U+FE0F> \n#PrayTogether #PopeFrancis #COVID19 https://t.co/vTcuKsIpi4"                                                                                                                                                                                                                                                                                                                                      
##  [777] "Times of crisis brings innovation #fact #coronavirus #COVID19 https://t.co/44JOGIK5KE"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [778] "Since climate change and Covid-19 have similarities in both cause and effect - why not!  https://t.co/6qYbk61yyM"                                                                                                                                                                                                                                                                                                                                                                                             
##  [779] "NW doctor working against COVID-19 https://t.co/AFkqnM0qYJ"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [780] "#Covid_19 Antonello Soro President of the Italian DPA on the processing of personal data: No rush to cross all limits.Our Constitution and GDPR must be our benchmarks. Proportionality is the key. Once the emergency is over,no exceptions must stay\n#GarantePrivacy #dataprotection https://t.co/dfaHWzcYCM"                                                                                                                                                                                              
##  [781] "For everyday during #lockdown21days #covid_19 I'll pretend Brinley and I are somewhere on holiday #day2, you welcome to do the same <U+2764><U+2764>#staysafe #stayhome #bigbuddah @ Big Buddha Pukhet https://t.co/yHTdAFjbaM"                                                                                                                                                                                                                                                                               
##  [782] "@BellaTwins You ladies &amp; all of us are subject to propaganda as well. Although I have no doubt that animals are abused, the #WuhanMarket conspiracy is also promoted by @coasttocoastam who are holding a national live radio psychic prayer 'experiment' to lessen the impact of #Coronavirus."                                                                                                                                                                                                          
##  [783] "Early on today, my close friends father passed away. Suspected #COVID19. He was taken into hospital last night, after complaining of breathing difficulty and having a bit of a fever. He was ok until this morning. May Allah have mercy on him, sabr and eman to the family."                                                                                                                                                                                                                               
##  [784] "An email my dad sent me about #COVID19 #coronavirus long but worth the read I promise. https://t.co/tIjtXHtqkT"                                                                                                                                                                                                                                                                                                                                                                                               
##  [785] "Created this for my #SPAinspires team 2keep building their mindfulness toolkit. Gr8 part was it helped my perspective on what I/we CAN control during this time of uncertainty.  \n\nFeel free 2share-if you need a mindset reset during COVID-19 \nI am no yogi:)\nhttps://t.co/QhKArgld5E https://t.co/QNCVOAYUil"                                                                                                                                                                                          
##  [786] "Another pair of masks requested out of state again. Love that these Hawkeye masks are being used by medical professionals on the front lines of the battle against COVID-19. Hate that they don't have the proper PPE that they have to need these. #ThankYouHealthCareWorkers https://t.co/oNB69iC9Hs"                                                                                                                                                                                                       
##  [787] "@JeffBezos @elonmusk Can you get a license for this and mass produce and distribute this? Would solve the problem in about 4 weeks. 5 minute tests daily fro 350 million people (and all visitors) find and isolate the #coronavirus <U+0001F44F> https://t.co/vWJ9jKtFh7"                                                                                                                                                                                                                                    
##  [788] "If Harsh Vardhan started preparing on Jan 18th, Why werent buses for migrant labour, food and bank transfers done even before the lockdown?  \n\nhttps://t.co/2wb1hnc1PS @ndtv @IndiaToday @bainjal @tanvishukla @SreenivasanJain @PrannoyRoyNDTV @aroonpurie @vineetjaintimes @BDUTT"                                                                                                                                                                                                                        
##  [789] "Local shops taking measures to remain open https://t.co/bikt9jCmf6 https://t.co/k8HmpfavOU"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [790] "@2tb_adrian $KayAlamia78 I'm a student going for my bachelor's degree in sociology and provide for my mom full time. I need help to get my meds things are rough with this Covid-19 <U+0001F614>"                                                                                                                                                                                                                                                                                                             
##  [791] "@MigunaMiguna So the government thinks that the police are immune to COVID-19 and the police themselves are blinded by temporary power to mishandle the citizens they are supposed to protect. Don't they see that they are being used? #CurfewKenya"                                                                                                                                                                                                                                                         
##  [792] "@KTVB It's not like we just topped over 201 #coronavirus  cases &amp; 3 deaths in under 2 weeks, the U.S. just beat China's #COVID19  case # at ~86k, &amp; every hospital needs more ventilators &amp; PPE<U+0001F926>. @GovernorLittle this money is needed elsewhere! The virus is more dangerous than any wolf! https://t.co/b4EiNzQaeX"                                                                                                                                                                  
##  [793] "Mardi Gras happening right before the nationwide panic was one of the most unfortunate things to happen to Louisiana. It allowed the virus to spread like wildfire before we even considered it a threat  #COVID19"                                                                                                                                                                                                                                                                                           
##  [794] "“Research on rare diseases is delayed due to prioritization towards the pandemic, as well as due to work and social distancing restrictions.” via @irdirc #COVID19 #RareDiseases"                                                                                                                                                                                                                                                                                                                           
##  [795] "WATCH LIVE: Federal finance minister and Bank of Canada governor speak about COVID-19 https://t.co/suneQPzB2q #cdnpoli #covid19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                 
##  [796] "After this Covid-19 over <U+0001F612> I’m moving outside <U+0001F62D>"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [797] "US never spent enough on emergency stockpile, former managers say.\n\nhttps://t.co/q7yPKUW1PT\n\n#COVID19 #SocialDistanacing #CoronaLockdown #StayHome"                                                                                                                                                                                                                                                                                                                                                       
##  [798] "#trump #COVID<U+30FC>19\n\nMarch 16: [Reporter: \"On a scale of 1 to 10, how would you rate your response to this crisis?\"]\n\n\"I’d rate it a 10. I think we’ve done a great job.\" \n\nhttps://t.co/eCeNnTCmUM"                                                                                                                                                                                                                                                                                          
##  [799] "@Comicalsuicide @fogken The symptoms I gave you are general guides for you. I would advise you to ring for advice, I'm limited on what I can advise from Ireland. Very important to remember,do not suffer in silence because of Covid-19. Many patients are reluctant to trouble frontline staff, this is silly"                                                                                                                                                                                             
##  [800] "Canadians and Americans Mock US and #IdiotInChief Trump as President Weighs Stationing Troops at Border Over #Coronavirus Crisis https://t.co/gOFKpWzTkG"                                                                                                                                                                                                                                                                                                                                                     
##  [801] "@AnnCoulter Do you even bother to look at your own data? You're showing Covid-19 to be 6 times more deadly for people 30-39. https://t.co/e3x13Lhads"                                                                                                                                                                                                                                                                                                                                                         
##  [802] "Until the next one I’m replaying this classic matchup. This time there’s no Joe Cortez but unfortunately there’s no pre-fight build up. C’mon @HitmanHatton #eWBSS #COVID19 #StayHome @SauerlandBros https://t.co/Dw9ymM990b https://t.co/2DRRWHYiBX"                                                                                                                                                                                                                                                     
##  [803] "As COVID-19 continues to spread across the world, I encourage you to visit @funds4disaster's list of opportunities to offer support on both a local and international level. Learn more here about critical needs and how to help today: https://t.co/pMxGXUt6zF"                                                                                                                                                                                                                                             
##  [804] "What #SouthKorea did right in regards of the #CoronaVirus, perfectly illustrated <U+0001F447>\nBottom line: #SocialDistanacing FTW, as hard as it might be. https://t.co/0UqG6OB0yT"                                                                                                                                                                                                                                                                                                                          
##  [805] "The @MSCSealift's USNS Mercy has arrived on the west coast to support @US_FEMA and @USNorthernCmd task force. #Togetherwedeliver #COVID19 #Covid19usa https://t.co/2GwMnWR4Qf"                                                                                                                                                                                                                                                                                                                                
##  [806] "<U+2066>@MingGao26<U+2069>  Virginia Pastor Who Said COVID-19 Was Anti-Trump “Mass Hysteria” Dies of Virus | Bo Gardiner | Friendly Atheist | Patheos https://t.co/kwPM2oHyjq"                                                                                                                                                                                                                                                                                                                              
##  [807] "How's that #coronavirus doing, @kathygriffin? Liar. https://t.co/tFB0vE6wby"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [808] "Today Columbus City Council President Shannon Hardin had a conversation w/ medical official(s) and in that conversation he urged young adults to abide by the #StayAtHomeOhio order from Governor Mike DeWine. Over 70% of Columbus’ cases of #COVID19 are those age 18-44!"                                                                                                                                                                                                                                 
##  [809] "Dr. Saphier breaks down 'very encouraging' COVID-19 numbers: 'We are slowing'\n\nhttps://t.co/KLQkgb9Mna"                                                                                                                                                                                                                                                                                                                                                                                                     
##  [810] "@Rubenbaeza8 @GHS @nytimes H1N1 was less infectious and less dangerous than COVID-19. H1N1 ended up killing 50 million people"                                                                                                                                                                                                                                                                                                                                                                                
##  [811] "#Kentucky is REALLY loving and proud of the leadership our new Governor Has displayed during the #Covid19 crisis. #KentuckyStrong #KentuckyTogether https://t.co/1dK6gcaPtb"                                                                                                                                                                                                                                                                                                                                  
##  [812] "@cmckenney @ShawnMenard1 So disappointed. I was nearly run over on a residential St on my way to pick up prescriptions for my family today. People on the sidewalk, so I took the road. A car came speeding around the corner so fast I hardly could get out of way. We need more room to walk safely! #COVID19"                                                                                                                                                                                              
##  [813] "So now that we’re the country with the most recorded cases of COVID-19, I think it’s time to start calling it the #MAGAvirus"                                                                                                                                                                                                                                                                                                                                                                               
##  [814] "Trump says nobody could’ve saw this coming; well here’s the Inside Story of How H-E-B Planned for the Pandemic:   Translation: we got a dumb f#ck for president. #Coronavirus #Maddow https://t.co/ZYLsyOKjVX"                                                                                                                                                                                                                                                                                              
##  [815] "@WHO @MBuhari @ProfOsinbajo @NTANewsNow @channelstv @HerbertOWigwe @TonyOElumelu @jimoviafoundatn @alakijaofficial @TheEconomist @Forbes\n@DangoteGroup\n#Coronavirus \n#CONVID19\n#CoronaVirusInNigeria: Abdulsamad Rabiu Redeems <U+20A6>1 Billion Pledge To CBN -\nhttps://t.co/yw25wLATkN https://t.co/Sx6P7VDY6z"                                                                                                                                                                                        
##  [816] "@loeschtwins @PicPedant Good hygiene and caution are the best ways to slow the spread of COVID-19."                                                                                                                                                                                                                                                                                                                                                                                                           
##  [817] "As we work to combat #COVID<U+30FC>19 by staying at home,  we still need to fight hunger.  What if you could learn how to grow with no soil? Join me on Saturday via IG @Samsonprolific #CovidNGR #ZeroHunger #foodsecurity #FarmLab2020 #ABetterNigeria #StayHomeSaveLives #Agribusiness https://t.co/JEyTmRol2L"                                                                                                                                                                                            
##  [818] "If you have student loans, you can call and get a forbearance due to covid-19. No penalties. But you have to call/go online and request it."                                                                                                                                                                                                                                                                                                                                                                  
##  [819] "To Stop the Spread of COVID-19, a Temporary Halt on Amazon Deliveries Is Needed, Crypto Coins News\nhttps://digital... https://t.co/F9yo2Tfo6P"                                                                                                                                                                                                                                                                                                                                                               
##  [820] "@AdamParkhomenko He would never do that. he said hes the most transparent president ever! He would never lie to us, would he??? #COVID2019 #CoronaVillains #TrumpLiesPeopleDie"                                                                                                                                                                                                                                                                                                                               
##  [821] "Yesterday during an aimless Twitter feed read, I came across a website that showed a map of states colored according to strength of COVID-19 response measures, with a drill-down to show \"the curves\" for status quo vs. clamping down even more, 1/"                                                                                                                                                                                                                                                      
##  [822] "Local businesses in #Bedford can apply for #businesssupport #grant via @BedfordTweets website. Check whether you’re eligible through U.K. Gov qualifying criteria. More info shared in attached screenshot. @WeAreBCA @quarryatstlukes @ThePlaceBedford @uniofbeds @SEMLEP #COVID2019 https://t.co/NlVxbPlPML"                                                                                                                                                                                               
##  [823] "IDPH announces 56 new #COVID19 cases today. 235 total statewide. @KCCINews"                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [824] "@OwensboroHealth Saw your news article about fabric masks. Just created a pocket mask pattern available free on my website. Let's all get out our sewing machines!\n\nhttps://t.co/mQX7kyqmZr\n\n#facemasks #coronavirus #Covid19usa https://t.co/oo4yz3Ltds"                                                                                                                                                                                                                                                 
##  [825] "Impact of COVID-19 on Municipal Finance: Restructurings Inevitable (Part 1): “Only when the tide goes out do you discover who’s been swimming naked” <U+2013> Warren Buffet The tide has gone out on the municipal finance market. While much of… https://t.co/rIMheZDhb2 RI Bankruptcy lawyer"                                                                                                                                                                                                           
##  [826] "within   a fortnight and reinforce our fight against COVID -19. We are not wanting face the scenarios like USA, China, and Italy. But every stake holders need to follow lock down and all precautionary measures advised by WHO,,, \n\nWe shall win, Corona Must defeat,,,,, https://t.co/pzdO24BbBb"                                                                                                                                                                                                        
##  [827] "Attn fellow Michiganders:\n\n#COVID2019\n#25thAmendmentNow\n#StayHome\nhttps://t.co/SPTqyRiOQg"                                                                                                                                                                                                                                                                                                                                                                                                               
##  [828] "I officially know two ppl living with #COVID19 \n\nShe and her boyfriend say that there's really nothing hospitial can do for you if you get it.\n\nOne thing she mentioned was her loss of smell and taste so thats consistent."                                                                                                                                                                                                                                                                             
##  [829] "A #TwitchStreamer Is Exposing /#Coronavirus Scams Live.\nhttps://t.co/u4UlGP5XMS #kitboga"                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [830] "That emergency alert was really ahead of the curve on this whole COVID-19 situation <U+0001F644> Sent so urgently they forgot to add the French part together in one alert"                                                                                                                                                                                                                                                                                                                                   
##  [831] "Safe places to visit during COVID 19\n.\n.\n.\n#covid #covid19india #covidsafety #safeplaces #homesafe #kitchen #window #studyroom #livingroom #kidsroom #safeindia #covidvaccine #safefuture #covidresponsibility #humanity https://t.co/pkZIHx4aIm"                                                                                                                                                                                                                                                         
##  [832] "@HillaryClinton @realDonaldTrump You &amp; your spouse are the CANCER-92+ that has riddled @TheDemocrats. Your signature brand is the plague of #Neoliberalism, far deadlier than COVID-19. For the sake of humanity &amp; all of planet Earth, *please* go away &amp; be quiet<U+2014>quit spreading death (&amp; enabling rapists). <U+0001F30D><U+0001F30E><U+0001F30F><U+0001F6AB><U+0001F480>"                                                                                                           
##  [833] "https://t.co/Zl4N3DeRY8\n\n#covid19 #@home\n\nA little bit of Physics in these tough times!!! https://t.co/WgPDG2ZLql"                                                                                                                                                                                                                                                                                                                                                                                        
##  [834] "@Goodmoisturizer @A_S12 @sbjsbd That however sort of defeats COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [835] "@JimSantilli @richviss @NikkiRedeemed @GovWhitmer It worked for what disease? It didn’t cure COVID 19! So stop lying and killing people with damn lies and dirty politics! If it really cured your covid19, it’s still called anecdotal evidence! NOT scientific proof! Do you know the diff between the two?"                                                                                                                                                                                              
##  [836] "Seeing tooooo many house parties in my feed... <U+0001F974> #COVID19 #CoronaLockdown #coronavirus #CoronavirusOutbreak #StayAtHomeAndStaySafe https://t.co/axV2gftxzm"                                                                                                                                                                                                                                                                                                                                        
##  [837] "Langley Sephora employee tests positive for COVID-19 https://t.co/IwZtmSxauz"                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [838] "What if the federal government is purposely not  taking the proper action against COVD-19 to use the emergence of the virus as justification to build The Wall...<U+0001F914>\n\n#CoronaLockdown #LockdownWithoutPlan #COVID19 #Coronavirus #USCOVID19"                                                                                                                                                                                                                                                       
##  [839] "Enter to #win Rubik's Race board game - perfect to keep you and your family busy during #quarantine for #covid19! https://t.co/2FjUg0HSIT"                                                                                                                                                                                                                                                                                                                                                                    
##  [840] "While the full impact of COVID-19 is not yet known, we do know it has significantly disrupted the lives of our students. Make an impact today. Gifts to the Student Relief Fund help meet emergent critical needs. #StocktonUStrong  https://t.co/HyuK9JdzG7"                                                                                                                                                                                                                                                 
##  [841] "Is there a single politician speaking to the world and saying that we will get through this? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                        
##  [842] "Eventually , deploying army would be the only choice when the non-compliance would rise and civil unrest due to rapid spread of #Epidemic of #CoronaVirus leading to large number of deaths due to #COVID19 would occur  ( April )\n\nAll data points to hotbed #Mumbai ! https://t.co/vcCSDIWFPD"                                                                                                                                                                                                            
##  [843] "I've got a two week holiday coming up and Boris has said he will review the lockdown on Easter Monday I bet he extended it for another week and opens the pubs the day I go back #coronavirus"                                                                                                                                                                                                                                                                                                                
##  [844] "BC, we can #FlattenTheCurve . Let's show the world that by working together, we can get through this! #PhysicalDistancing #COVID19 https://t.co/qehsOYrXj0"                                                                                                                                                                                                                                                                                                                                                   
##  [845] "That’s all fine and good, but has anyone asked how Jake the Snake has been through all this #COVID2019 #CoronavirusOubreak #Quarantine"                                                                                                                                                                                                                                                                                                                                                                      
##  [846] "Watch <U+0001F4FA>: President Trump and his well-established CoronaVirus Task Force brief the press and provide the public updates! <U+0001F1FA><U+0001F1F8> \n\n#COVID19 #PresidentTrump #StayHomeSaveLives \n\nhttps://t.co/5ANYGt6QfA"                                                                                                                                                                                                                                                                     
##  [847] "There are currently more Covid-19 cases concentrated in the Charlotte area than anywhere else in the state of NC.\n\n#ncpol #NCpolitics #northcarolina https://t.co/8BfJdDZdBD"                                                                                                                                                                                                                                                                                                                               
##  [848] "Also, I think it has been a pleasure to have @LeoVaradkar as a leader during this crisis. 100% truthfulness at all times, transparency in decision making, decisive when needed, and a completely evidence-based approach! Putting the UK and USA to shame! #COVID19 #COVID19ireland"                                                                                                                                                                                                                         
##  [849] "@nickreeves9876 @gwcollinge @SkyNews If it was seasonal(reducing in the summer ) how do you explain covid-19 infections rapidly spreading in the Southern Hemisphere during the height of summer."                                                                                                                                                                                                                                                                                                            
##  [850] "38 new cases of COVID-19 have been reported in Lake County. My dad works in the hospital and he has been working with patients who have it... please, STAY THE FUCK HOME AND HAVE PROPER HYGIENE!\n\nGracias <U+0001F5A4>"                                                                                                                                                                                                                                                                                    
##  [851] "#beauty in the age of #covid_19 #confinement #day15 https://t.co/RbNLOcBRgM"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [852] "I feel like 2020 is what we all expected from 2000. #COVID19 #Y2K"                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [853] "Congress Passes CARES Act (Phase Three) in response to Covid-19 - https://t.co/1kaSk8xgIt #coronavirus #covid-19"                                                                                                                                                                                                                                                                                                                                                                                             
##  [854] "Investigational COVID-19 Convalescent Plasma - Emergency INDs https://t.co/OBuITC8Jix"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [855] "Rajasthan COVID-19 tally reaches 52 with two new cases: https://t.co/xkc5ZHNBDw"                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [856] "@worthlessmind2 Testing is free in government hospitals.\n\nhttps://t.co/XN2AoTrz3N"                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [857] "I bet others can identify with this statement. #COVID19 #brandexperience https://t.co/WK9zWpXw0Z"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [858] "All because you are selfish. Shut down the plants NOW. #CoronavirusUSA #COVID2019 #COVID #CoronavirusPandemic https://t.co/uBGoQH5Qjc"                                                                                                                                                                                                                                                                                                                                                                        
##  [859] "COVID-19 hits fast-forward. Nurses without PPE, unemployed workers without health insurance, immense money injected into monopolized industries while you're given a paltry $1200 or less to ward off social unrest. \n\nThis is a bourgeois democracy in crisis acting accordingly."                                                                                                                                                                                                                         
##  [860] "Ways to keep yourself and others safe during COVID-19 pandemic - https://t.co/gT11FKBBjB https://t.co/jKCrJZ23Ob #firesafety https://t.co/UcmjSU9NFk"                                                                                                                                                                                                                                                                                                                                                         
##  [861] "We've had some extra workload at work due to things that's been going on regarding COVID-19 and helping clients/business in regards to that. I need to catch up on the soaps, which I will do at some point, lol. I did catch some of the scenes today with Nick/Billy/Lily. #YR."                                                                                                                                                                                                                            
##  [862] "My COVID-19 logs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [863] "Patient 2 (full term)\n\nmaternal COVID-19 pneumonia.\n\nDay 1? lethargy, vomiting, and fever. Tests showed leukocytosis, lymphocytopenia, and an elevated. A chest radiographic image showed pneumonia. NP and anal swabs were positive for SARS-CoV-2 on days 2 and 4.  Negative on day 6."                                                                                                                                                                                                                 
##  [864] "How Soon Will COVID-19 Peak?  (And How To Tell) https://t.co/mwcWPaXb3P via @YouTube - with a lot of caveats. Depends on source data accuracy. Distorted by testing."                                                                                                                                                                                                                                                                                                                                         
##  [865] "WesternU students have mobilized efforts to make masks from fabric and collect or buy N95 masks in the wake of a shortage of personal protective equipment (PPE) due to the COVID-19 pandemic.\nhttps://t.co/gvIEKxRgSR \n#WesternUStrong #abc7eyewitness #WesternUWay #Coronavirus https://t.co/p2HH23dSE8"                                                                                                                                                                                                  
##  [866] "@pepperdem5 @BBSimons When it gets real and you get affected by COVID-19 there you will know no man is immune to COVID-19.  if Sarcasm is Implicit the opposite is Explicit."                                                                                                                                                                                                                                                                                                                                 
##  [867] "Tonight <U+2764><U+FE0F> #ThankYouNHS #COVID<U+30FC>19 #StayHomeSaveLives https://t.co/N8dEUODHS7"                                                                                                                                                                                                                                                                                                                                                                                                            
##  [868] "Total lockdown for 21 days in Zimbabwe #COVID2019 z"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [869] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/3shO2QqAbf via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [870] "Two Dane County Jail inmates test positive for COVID-19, six still in isolation with fevers | Crime | https://t.co/som8Vo31hx https://t.co/mHN75bUZSs"                                                                                                                                                                                                                                                                                                                                                        
##  [871] "@essenviews Why is no one talking about what the Republicans really wanted: to suspend habeas corpus. This would have given the government the right to detain people indefinitely, and most likely those people would be the ones that have tested positive for Covid-19. This way,/1"                                                                                                                                                                                                                       
##  [872] "@ericgarcetti Tw2. ... than in clear sky regions. Those pre-trash peoples lungs., making it easy for Covid 19. Add fags and alcohol. All medics stone deaf. In Wuhan it is (unusually) SO2 from their Al and steel plants burning hi-S petcoke anodes, courtesy Trump cutting off their"                                                                                                                                                                                                                      
##  [873] "We're trying to do our part @fiftyyears.\n\nWe recently offered all 12 portfolio companies working on #COVID19 solutions uncapped SAFE notes to accelerate their efforts.\n\nWe hope other VCs will join us in this.\n\nhttps://t.co/isre50lVgJ\n\n7/n"                                                                                                                                                                                                                                                       
##  [874] "Social distancing by Kenya police!\nHow gasing and beating helps fight covid19.  How u expect tens of thousands ppl get home before curfew.  Stupudity of highest degree \nCURE IS WORST THAN DISEASE \n#COVID2019\n#Kenya\nhttps://t.co/aPcTvnCoeA"                                                                                                                                                                                                                                                          
##  [875] "So edey mean say if you get underlying health condition Covid-19 is your death sentence ?"                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [876] "@Lilpoo404 @OCDrises @Covid_19_UK @Inevitable_ET There are Patriots and there are traitors. No name is #1 on the latter."                                                                                                                                                                                                                                                                                                                                                                                     
##  [877] "@SusannaLHarris No need to start a #ScienceFight it's already been started #COVID2019 redefining world's superpower."                                                                                                                                                                                                                                                                                                                                                                                         
##  [878] "@JohnDelaney @JoeBiden Gaslighting Americans about Governors not being partisan is insulting at this point. \n\nHow many Governors have used executive orders to stop chloroquine from being used with azithromycin for COVID 19 patients? \n\nThe answer should be zero, sadly it is NOT! \n\nRiddle me that?"                                                                                                                                                                                               
##  [879] "Ok I am late to the party, but what’s happening in Russia?\n\n#COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [880] "Jamaicans in New York afraid of COVID-19 <U+2013> “It’s scary out there”\n\nhttps://t.co/X4HEX5JHGx"                                                                                                                                                                                                                                                                                                                                                                                                       
##  [881] "from the Mayo Clinic website:\n\n\"Currently, no antiviral medication is recommended to treat COVID-19. Treatment is directed at relieving symptoms and may include:\n \nPain relievers (ibuprofen or acetaminophen)\nCough syrup or medication\nRest\nFluid intake\"\n\n#coronavirus"                                                                                                                                                                                                                        
##  [882] "I wonder how long until there's a #COVID19 DLC for #PapersPlease...\n\n@dukope"                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [883] "BREAKING: Global #coronavirus cases have surpassed 500,000.\nA Johns Hopkins tally reports:\n<U+25AA><U+FE0F> At least 75,233 cases in the U.S.\n<U+25AA><U+FE0F> At least 22,993 total deaths globally\n<U+25AA><U+FE0F> At least 120,983 recoveries globally \nVia <U+0001F449>  @ajplus \n#CoronaVirusUpdates #CoronavirusPandemic"                                                                                                                                                                        
##  [884] "@chennaicorp #GCCMythBusters  Cuban Interferon Alfa-2B has proven effective for viruses with characteristics similar to those of COVID-19. https://t.co/uGnyIu7z5v is this true ? #govt"                                                                                                                                                                                                                                                                                                                      
##  [885] "Dear #FasadChaudhry, \nEvery University &amp; educational  institutions(Madarsas) in Pakistan use 2 operate by Hafiz Sayeed, Masood Azhar, Syed Salahuddin and other terrorists. They will provide you only Terrorism, don't expect research. #CoronaUpdate\n#coronavirusinpakistan #COVID19 https://t.co/UHEWMQwiT7"                                                                                                                                                                                         
##  [886] "@itsjojosiwa this is how u dress when u dont have to wear ur uniform #homeschool #COVID2019 https://t.co/7tffWuzdef"                                                                                                                                                                                                                                                                                                                                                                                          
##  [887] "GOOGLE announces #Coronavirus aid: \"$800+ million to support small businesses and crisis response\" https://t.co/8Z7LWbwTsn"                                                                                                                                                                                                                                                                                                                                                                                 
##  [888] "@Derp_Decider @Storm_22xoxo @thehill No, COVID-19 is the important part.\n\nHad this been written about any other disease it wouldn’t be getting as much coverage as it is.\n\n\"Though early tests indicated a positive result for COVID-19, the case is complex and there may be an alternate explanation for this fatality,\""                                                                                                                                                                            
##  [889] "Why is ChineseVirus19 trending???? This racism shouldn’t be tolerated do better people #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                           
##  [890] "Applause to all working currently in the Health Services inclusing HSCP's.\n#medicalscientists #COVID19 #Covid_19ireland https://t.co/eZ1u9Ls8Z9"                                                                                                                                                                                                                                                                                                                                                             
##  [891] "@WeleSeg @AndiMakinana @tumie09 Our journalists can be rubbish sometimes. They seem to have normalized homelessness to legitimize Covid-19 pandemic on homelessness.\n\nThe problem here is homelessness, which started before the pandemic. It would still the case post the pandemic. That's is the real \"sad story\""                                                                                                                                                                                     
##  [892] "#COVID19 pandemic is truly global. Tak, a remote border province in Thailand’s northwest, now records 2 cases: No. 1 a Pakistani man, No. 2 a Thai woman who just returned from NY, flying into Phuket -&gt; Chiang Mai, then picked up by brother in car to Tak. https://t.co/KNuKqkFq6W"                                                                                                                                                                                                                   
##  [893] "Read why America’s broken health care system is the biggest obstacle to containing the coronavirus here &gt; https://t.co/ftGNfQOZCs #COVID19 https://t.co/pRT1bHSWHu"                                                                                                                                                                                                                                                                                                                                       
##  [894] "OH&amp;S Content Editor Amanda Smiley gives a COVID-19 update  and sits down with Greg Olson, a Sr. Product Specialist for Industrial Hygiene and Respiratory Protection at TSI, to discuss proper fit testing amid the pandemic.\n\nSponsored by TSIIncorporated\n \n… https://t.co/M7KG7V1dX2"                                                                                                                                                                                                             
##  [895] "Where the fuck is Ron DeSantis? #PissedOffRepublican #Coronavirus #shutdownflorida"                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [896] "#CNN #USA now has more COVID-19 cases than any other country in the World.... Mission Accomplished, Nice Job Mr. President"                                                                                                                                                                                                                                                                                                                                                                                   
##  [897] "Now on https://t.co/0J2UdYHyh5\n\nVin Scully Gives Pump-Up Speech Amid COVID-19 War, We'll Unleash The Tiger!"                                                                                                                                                                                                                                                                                                                                                                                                
##  [898] "Mi laptop dio positivo al COVID-19 y un cancelled subscription de Word. (: https://t.co/USsWuL29a0"                                                                                                                                                                                                                                                                                                                                                                                                           
##  [899] "Nineties Country Star Joe Diffie Tests Positive for Coronavirus https://t.co/cJhEtRGhRE via @RollingStone"                                                                                                                                                                                                                                                                                                                                                                                                    
##  [900] "If anything, Canada is the one that needs to have military in the border to stop the already #1 affected #COVID19 country in the world to try to cross our way #USA #ohcanada #stayaway"                                                                                                                                                                                                                                                                                                                      
##  [901] "I was supposed to be spending my 29th birthday with my daughter, instead, we are stuck on different islands due to COVID-19. What was meant to be just a few days apart has become 10 days and will continue to increase… https://t.co/2dkPJ9k9xB"                                                                                                                                                                                                                                                           
##  [902] "My Contribution to PRIME MINISTER'S NATIONAL RELIEF FUND ACCOUNT.@PMO we'll stand with you and your efforts against #Covid-19\n\nMy request is Please Test More,so that more positives could be found out.\n\nI request to all my friends contribute if you can !\nThankyou @airtelbank https://t.co/UU0zE5dJ8V"                                                                                                                                                                                              
##  [903] "Happy Birthday, Lauren, and I thank God for people like you<U+2014> nurses who are on the front line fighting this COVID 19 to save lives. I pray a hedge of protection around you from God<U+271D><U+FE0F><U+0001F64F><U+0001F3FB><U+2757><U+FE0F> https://t.co/u7fgBot5Tv"                                                                                                                                                                                                                                  
##  [904] "Parker team members are stepping up to deliver products that are helping the front-line effort to combat the spread of COVID-19: https://t.co/SKg17kKpsn https://t.co/XdstPR1myz"                                                                                                                                                                                                                                                                                                                             
##  [905] "@ToddJCefaratti @gabrielsherman @teigland_cindy It's not like this guy will be voting for Tump in November.<U+0001F60F> (And really. You should look at Louisiana. That's the next hotspot.)\n\nhttps://t.co/TKD1rHVXuG"                                                                                                                                                                                                                                                                                      
##  [906] "@ReneeMarieHern2 @wtpact5js @GovBillLee And Sen. Lamar Alexander’s daughter tested positive for Covid-19!"                                                                                                                                                                                                                                                                                                                                                                                                   
##  [907] "@TedMielczarek @johnregehr @TedMielczarek @johnregehr To be honest, the frequency of the All Hands has always been draining for me. Due to COVID-19, 2020 will end up only having one and I would love it if we could keep to this schedule."                                                                                                                                                                                                                                                                 
##  [908] "Further patrols completed in the south, strong words of advice given  to two groups, please listen to government advice #COVID19 #StayHomeSaveLives #FlattenTheCurve #bishopstortford https://t.co/W06W1ixUvf"                                                                                                                                                                                                                                                                                                
##  [909] "Tracking the COVID-19 Pandemic’s Immediate Effects on Women and Minorities in the U.S. Workforce https://t.co/XJWXlcrkqT"                                                                                                                                                                                                                                                                                                                                                                                    
##  [910] "ICO has a new information hub to help people and organisations with data protection issues during the COVID-19 outbreak. https://t.co/Imrx2qns6c"                                                                                                                                                                                                                                                                                                                                                             
##  [911] "Truly dreadful. \n\nTeen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/JpE26PkYyF via @@gizmodo"                                                                                                                                                                                                                                                                                                                                                             
##  [912] "This video has critical info for how to sanitize your groceries from #coronavirus #covid19 please watch and SHARE EVERYWHERE and DO what he says <U+0001F64F><U+2764> #StaySafe https://t.co/4dZqoXpMEC"                                                                                                                                                                                                                                                                                                      
##  [913] "@W_S_O_S_D Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                                 
##  [914] "Fall Cabal - COVID-19 series NEW <U+0001F447>\nhttps://t.co/DxWtsIqtFF"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [915] "Day 1 And already we dealing with this<U+0001F614>.Covid-19 <U+23E9><U+23E9>The Days may it will be better . https://t.co/joyz2m611D"                                                                                                                                                                                                                                                                                                                                                                         
##  [916] "Keep the Covid-19 Memes flowing https://t.co/TkKigYCFT7"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [917] "The God that you serve is able to protect you and you will outlive this season (coronavirus) \n\n#alcc #comeandsee #COVID19"                                                                                                                                                                                                                                                                                                                                                                                  
##  [918] "ITALY OIL REFINER API HALTS PLANT AS COVID-19 HITS DEMAND\n\nITALY OIL REFINER API HALTS ANCONA OIL REFINERY ON WEAK MARKET"                                                                                                                                                                                                                                                                                                                                                                                  
##  [919] "Day 11 of MCO is here. Foreigners are defying the order here and are being locked up and may face jail time. So unfortunate. But there will always be consequences in all that we do. Sorry. #MCO #Malaysia  #Covid19"                                                                                                                                                                                                                                                                                        
##  [920] "JUST IN: A sixth Santa Clara County Sheriff's Office deputy has tested positive for #COVID19. Story to come."                                                                                                                                                                                                                                                                                                                                                                                                 
##  [921] "Jair Bolsonaro claims Brazilians 'never catch anything' as Covid-19 cases rise https://t.co/AVuel1HzGp"                                                                                                                                                                                                                                                                                                                                                                                                       
##  [922] "How about; “As testing ramps up to reveal 604 cases in #Virginia and thousands live with fear and anxiety, some can only see the politics in #coronavirus.” This is serious! DON’T #BeBill https://t.co/hcVqgV9elW"                                                                                                                                                                                                                                                                                        
##  [923] "@lerato_morapedi Please note that all deliveries have been put on hold as per the COVID 19 #lockdown instructions. Yes, purchases are delivered through Takealot <U+0001F609>."                                                                                                                                                                                                                                                                                                                               
##  [924] "SEO After #COVID-19: 8 Opportunities to Start Working on Now https://t.co/QH3lzx2gBd #SEO"                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [925] "WATCH - The City of Abilene announced its 1st positive COVID-19 case this morning. \n\nHere is my live recap following the press conference: https://t.co/jZPs4jvIsx"                                                                                                                                                                                                                                                                                                                                         
##  [926] "ICYMI Feb: German Minister of Health and Minister of the Interior: \n\n\"Health care of the population has priority over financial interests of the economy amid the outbreak of #COVID19. Labs throughout Germany are now able to test the coronavirus, free of charge for all citizens.\""                                                                                                                                                                                                                  
##  [927] "They should have compared this number with the prevalence of cancer since incidence accounts for new cases. The prevalence of cancer for most countries is around 2% of the population so COVID-19 does not seem elevated in patients with cancer."                                                                                                                                                                                                                                                           
##  [928] "Defense #creditunions are uniquely prepared to respond to widespread disruptions in day to day operations &amp; member income streams enabling them to serve their #military installations &amp; their members worldwide during the #COVID19 health and economic crisis.\nhttps://t.co/BvAhxMiRHF https://t.co/YbGLsum7NU"                                                                                                                                                                                    
##  [929] "A group of our amazing ER staff is pictured here preparing our indoor surge area for potential COVID-19 patients. https://t.co/mL7wwRkuBY"                                                                                                                                                                                                                                                                                                                                                                    
##  [930] "When your quarantined and you have to suck yourself off #COVID<U+30FC>19 https://t.co/9ztvdvPDFg"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [931] "Not sure if I’m in week 2 or week 20 of self isolation... #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [932] "Covid-19 - Communication is key! The Latest News from Jones and Clark - https://t.co/Ji0M32jqYO\n\nContact us with your questions or requirements!!"                                                                                                                                                                                                                                                                                                                                                          
##  [933] "Why we need #Medicare4All #MedicareForAll #Bernie2020\nThe U.S. may end up with the worst COVID-19 outbreak in the industrialized world. @edyong209 explains how it will play out: https://t.co/CkcoAuein5"                                                                                                                                                                                                                                                                                                   
##  [934] "#IndianRailways In Action :: \nIsolation coaches prepared by the Indian Railways to fight the #Coronavirus Pandemic.\n#COVID2019india https://t.co/RLaevKcw73"                                                                                                                                                                                                                                                                                                                                                
##  [935] "i need to consult the psychiatrist I had to meet but I can't :) fuuuuck you covid-19 and all the people who still go out."                                                                                                                                                                                                                                                                                                                                                                                    
##  [936] "Worlds colliding in response to #COVID19 and it's amazing to see.\n\nA super successful fintech that powers 500k SMEs across Europe has started providing subsidised loans to customers directly from their balance sheet.\n\nReaching out to @EBRD to see if there's a way to scale it..."                                                                                                                                                                                                                   
##  [937] "A local restaurant is going above and beyond to make sure its employees are taken care of during the COVID-19 pandemic by providing meals for them and their families: https://t.co/ftj3YIhuLB https://t.co/VFpJWp6b5n"                                                                                                                                                                                                                                                                                       
##  [938] "@MAS, looking for employee ideas on how to save $? Sign up for our FREE crowdsourcing app, Slash here: https://t.co/W5hrmxjdM8\n\nWe are providing this to all companies affected by #COVID19 in order to help you navigate these unprecedented times. We'll get through this together!"                                                                                                                                                                                                                      
##  [939] "We thank all nurses for standing up against COVID-19 during this time. Sign our card to thank your local nurse:  https://t.co/Any7SIYY9f"                                                                                                                                                                                                                                                                                                                                                                     
##  [940] "#coronavirus can eat it.\n\nSICKNESS MUST BE PURGED.\n\n......tag someone who will know this. https://t.co/IGiB2C0qCD"                                                                                                                                                                                                                                                                                                                                                                                        
##  [941] "COVID-19 https://t.co/XpCLi20zVF"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [942] "“We really appreciate the presence of the (@MINationalGuard) members because it’s showing the importance and reinforcing the screening processes being a critical tool to safeguarding our members. https://t.co/avV6omaKZq"                                                                                                                                                                                                                                                                                
##  [943] "I hope each new day brings the world closer to a full and<U+00A0>speedy recovery from #COVID19 <U+0001F64F>"                                                                                                                                                                                                                                                                                                                                                                                                  
##  [944] "Curious how far the spring break Zoomers might have spread #COVID19 ? Check out this #dataviz of cell phone pings from just a single Ft Lauderdale beach during spring break. https://t.co/HPni9dYZvj"                                                                                                                                                                                                                                                                                                        
##  [945] "My mom got to see Pap through the window. He was so happy &amp; asked about his knuckle heads. That’s what he calls the bitties. He forgets about covid19 so he has to be reminded daily that the entire world is sick<U+2639><U+FE0F> Praying that the world gets better<U+0001F64F><U+0001F3FB>#COVID2019 #TogetherApart https://t.co/MUQZ5OXIpU"                                                                                                                                                          
##  [946] "Covid-19: WHO says Africa should ‘prepare for the worst’ #Ethiopia https://t.co/TRTQuuE3vz via @ecadf"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [947] "<U+0001F58B> Support Patricia by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r\n\n<U+0001F4E8> Last delivered to @GavinNewsom, Assemblymember Cooley and Senator Nielsen  #CApolitics #CApol #COVID19 https://t.co/MLwPv4XEo6"                                                                                                                                                                                                                     
##  [948] "Is #stayathome boredom setting in? Here are some ideas on fun things to do! You can also find a list of recommendations at https://t.co/iRVQY7k2Os\n \n#InlandRegionalCenter #coronavirus #staysafe https://t.co/OPYXppvjwc"                                                                                                                                                                                                                                                                                  
##  [949] "@BetteMidler Donald Trump will fill Rikers Island with rows of mass graves before he lifts a finger to help governor Cuomo, a man who failed to bend the knee ... #Coronavirus https://t.co/HaAGSunJ44"                                                                                                                                                                                                                                                                                                       
##  [950] "BLH Medical Director Dr. Ignatius Cordova assured that all safety measures are in place and they are in control of the situation.\n\nThe management also assured that they will continue to provide quality healthcare services amid its battle with COVID-19."                                                                                                                                                                                                                                               
##  [951] "New post: DRDO develops N99 masks, ventilators and hand sanitizers to help fight against COVID-19 https://t.co/wpdrfbYi8A"                                                                                                                                                                                                                                                                                                                                                                                    
##  [952] "The BC Ministry of Health strongly urges anyone who has symptoms - including a fever, cough, sneezing, sore throat, or difficulty breathing - to self-isolate for 14 days. Visit the BC Centre for Disease Control for more #COVID19 info: https://t.co/QVdaYRjsZf https://t.co/uqednseo0O"                                                                                                                                                                                                                   
##  [953] "AMERICA was infected with VIRUS which is #Trump. Democrats are currently conducting job interviews to HIRE A TECHNICIAN to expel this virus. The result of employment will be in NOVEMBER. STAY TUNED !\n#coronavirus\n#UnEndorseBiden\n#TrumpLiesAmericansDie\n#CoronaLockdown https://t.co/M4P0GMtSlz"                                                                                                                                                                                                      
##  [954] "LIVE | Farm activities exempted from #lockdown rules to ensure food security, says Agriculture Minister Narendra Singh Tomar.\nFollow for updates:\nhttps://t.co/YEy4fGBkI1"                                                                                                                                                                                                                                                                                                                                  
##  [955] "Mexico: Mexicans Need Accurate COVID-19 Information | Human Rights Watch https://t.co/zoGeNjSjho"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [956] "Leadership &amp; The Era of COVID-19 --FREE\nIt’s a new day in leadership &amp; macro social work. Join NASW-NJ|DE &amp; Network for Social Work Mgmt on Friday to discuss the challenges we face in leading programs, managing teams &amp; course-adjusting during COVID-19.  https://t.co/J0WQqI6rbQ https://t.co/L81NakX3hE"                                                                                                                                                                              
##  [957] "We’re incredibly proud of our team who continue to support patients, worldwide, under these exceptional circumstances #MakingaDifferenceTogether #Covid19 https://t.co/VZ7UcKcGo1"                                                                                                                                                                                                                                                                                                                           
##  [958] "How is everyone coping with this new world?\n#COVID2019 #writing #WritingCommnunity"                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [959] "Conrad Black on COVID-19: The world succumbed to a pandemic of hysteria, more than a virus | National Post https://t.co/Jmp4sF9vdy"                                                                                                                                                                                                                                                                                                                                                                           
##  [960] "I need tech tools to transition to remote learning during #coronavirus \n@DonorsChoose please share this project! https://t.co/Nvpdlz2ebD"                                                                                                                                                                                                                                                                                                                                                                    
##  [961] "Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among the first in Virginia to die from virus https://t.co/zvvCE9pUmU"                                                                                                                                                                                                                                                                                                                                                                     
##  [962] "Don’t shoot the messenger. But the majority of deaths from the #COVID19 in the US are people with #Diabetes or Pre Diabetes. #WakeUpAmerica. The majority of you are FAT!\nIt’s time to lose that weight and start moving!"                                                                                                                                                                                                                                                                                 
##  [963] "That wis good clapping for the @P_H_S_Official YASSSSSSS #heroes #nhs #COVID2019  <U+2764><U+FE0F><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC>"                                                                                                                                                                                                                                                                                                           
##  [964] "Updates on the #COVID19 situation in Thailand  https://t.co/NO6fW6OLDT"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [965] "Podcast: Supercomputing the Coronavirus on Frontera\n\nhttps://t.co/JhlOHY8OZS #HPC #TACC #coronavirus #UCSD https://t.co/HfQ01ZMdae"                                                                                                                                                                                                                                                                                                                                                                         
##  [966] "Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/VU0alTPtb5"                                                                                                                                                                                                                                                                                                                                                                                               
##  [967] "@mitchellvii Were H1N1 numbers ever like these, in terms of rapid global onset?  Did H1N1 ever threaten to seriously overwhelm the US healthcare capacity with a surge like covid 19?  There seem to be significant differences driving a different response.  Will u even consider this possibility?"                                                                                                                                                                                                        
##  [968] "After Kathy Griffin was admitted to the hospital and placed in a coronavirus isolation ward <U+2014> where she criticized President Donald Trump and claimed she couldn't secure a test for COVID-19 -\n\nKathy has returned home to recover from an abdominal infection\nhttps://t.co/TGrEkbJOon"                                                                                                                                                                                                            
##  [969] "\"Congress’ stimulus package expands on and supersedes earlier relief programs that you might have heard of, but which are now out of date. Here’s how the new stimulus affects your student loans, and what to do if you’re in each of…https://t.co/Te5z0Bnzkj https://t.co/Vt6oZN7uv3"                                                                                                                                                                                                                  
##  [970] "We need to care for the carers - A view of Donegal through the #coronavirus crisis and beyond by Siobhan McNamara\nhttps://t.co/CZEsbGw7me"                                                                                                                                                                                                                                                                                                                                                                   
##  [971] "This Black Female #Doctor Is Leading Her Team To Develop Vaccine For Covid-19  https://t.co/HADrYV3oZf\n\n#COVID19 #COVID2019Ghana #StaySafeNigeria #COVID #SocialDistanacing #CoronavirusOutbreak #FridayMotivation"                                                                                                                                                                                                                                                                                         
##  [972] "Every Friday in every country #COVID19 https://t.co/Tpldv5fqsc"                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [973] "Covid 19, my 17 months old daughter has finished our Nutela without my knowledge. #COVID2019 #StayAtHome https://t.co/VdMEr8dFb4"                                                                                                                                                                                                                                                                                                                                                                             
##  [974] "A doctor who never failed the call of duty is incarcerated on fabricated charges. He saved infant lives in Gorakhpur. When 'chamki bukhar' ravaged Muzaffarpur, he set up free health camps. He offers his services again to fight the pandemic.#ReleaseDrKafeel\nhttps://t.co/hNxcbXa048"                                                                                                                                                                                                                    
##  [975] "Maharashtra Covid-19 count 156, army sounded for ‘medical help’\n\n#COVID19 #Maharashtra #fightagainstcorona \n\nhttps://t.co/ZG5GCq28xc"                                                                                                                                                                                                                                                                                                                                                                   
##  [976] "got let go from my job bc covid-19 and when they told me i literally said “deadass? no really, deadass?” lmaoo"                                                                                                                                                                                                                                                                                                                                                                                             
##  [977] "\"The threat of COVID-19 spread has suspended all Wet’suwet’en meetings, including talks on a proposed deal between hereditary chiefs, B.C., and Canada\" but not construction? Canadian governments can't exploit public health and safety precautions to further this project. https://t.co/lCUh5VtDnj"                                                                                                                                                                                                   
##  [978] "@tehreemazeem This nation will survive Covid-19 and than die of Stupidity."                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [979] "@ddale8 Does anyone notice how he says a lie, then the next day gives a very pedantic explanation of it?\n\nLike he's quoting how someone just explained it to him. \n\nWell you see, usually hospitals don't need thousands of them. But almost all  #COVID19 patients need one."                                                                                                                                                                                                                            
##  [980] "Boris Johnson Has COVID 19 https://t.co/fOI1O1xXv8 via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [981] "#COVID2019 Follow His Lead. Stay In The Crib https://t.co/nTwsAWRKxQ"                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [982] "Legal Aid Chicago's Teresa Sullivan talks to @ABAJournal about services provided to domestic violence survivors amid COVID-19 pandemic. \nRead more: https://t.co/jbD4zXzlQv"                                                                                                                                                                                                                                                                                                                                 
##  [983] "You know what’s more dangerous than virus covid-19? The racism and hate towards one’s religion/race."                                                                                                                                                                                                                                                                                                                                                                                                       
##  [984] "Video: Hospital in China where #COVID19 patients treated by #robots https://t.co/h54adrpSEF"                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [985] "Final COVID-19 Bill Would Deny Loans To Planned Parenthood, Group Says https://t.co/VWRMXJq4uJ"                                                                                                                                                                                                                                                                                                                                                                                                               
##  [986] "Quarantine day 11: \n\nGali men police waly pubg khel rahe hein !\n#StaySafeStayHome #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                              
##  [987] "The COVID-19 pandemic<U+2014>illustrated by the widespread social distancing guidance with which most Americans are living today<U+2014>drives home just how interdependent we all are."                                                                                                                                                                                                                                                                                                                      
##  [988] "#COVID19france New record one-day death toll in France: 365 lives lost in hospitals nationwide in 24 hrs. This includes death of 16-yr-old in Ile-de-France.\nSo far: \n- total 1 696 people have died from #coronavirus\n- total 29 155 confirmed cases\n\n#StayHome"                                                                                                                                                                                                                                        
##  [989] "I'm reminded why I love the Finnish people right now through this #COVID2019 #biowarfare pandemic. \n\nFinns aren't freaking out buying up all the food in the grocery store or binge buying on toilet paper. \n\nIt's completely calm here. \n\n#Finland"                                                                                                                                                                                                                                                    
##  [990] "I'm happy to help, but unless they need a minefield cleared or a parking lot swept, I'm pretty much useless. \nhttps://t.co/h36VF9SMCn"                                                                                                                                                                                                                                                                                                                                                                       
##  [991] "I’m very happy <U+0001F60A> and proud of my government’s initiative of helping those in need during this pandemic crisis (COVID-19). Kudos to our president @PaulKagame and other members of our government <U+0001F64F><U+0001F3FE>. https://t.co/a4qcdeEGVu"                                                                                                                                                                                                                                              
##  [992] "U.S. leads world in confirmed coronavirus cases for first time https://t.co/uizU0xdbB8 #coronavirus #covid19"                                                                                                                                                                                                                                                                                                                                                                                                 
##  [993] "What if someone in your household becomes sick? Here are suggestions to help keep the rest of your family healthy. Find more COVID-19 resources at https://t.co/IyKrPyWr4c. https://t.co/oNZMV7GlHJ"                                                                                                                                                                                                                                                                                                          
##  [994] "@SykesCharlie Because he is not up for re-election in 2020, so not a\n\"now\" campaign issue.\nand because COVID-19 will knock him out of the spotlight like the Cong. Gary Condit/intern Chandra Levy ugliness\nwas brushed aside by 9/11"                                                                                                                                                                                                                                                                   
##  [995] "Pornhub Premium Becomes Free for All to Make You Stay at Home https://t.co/1kWZubylMy via @PCMag\n#coronavirus #2019nCoV #virus #chinavirus #wuhan #sos #COVID19 #COVID_19 #SARSCoV2 #COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                        
##  [996] "@covidperspectiv RAMMSTEIN's statement reads: \"Yesterday evening Till Lindemann was admitted to a hospital on the band's doctor's advice. He spent the night in intensive care but has been moved as he is feeling better. Till has tested negative for the coronavirus.\"\n\nhttps://t.co/26EQ5L0t1x"                                                                                                                                                                                                       
##  [997] "In light of #COVID19, @Rusi_org's @MChalmers_RUSI + Will Jessett recommend pushing the #IntegratedReview back to 2021. \n\nRead their paper - with insight on potential shifts in geopolitical alignments - here:  https://t.co/ONvasUyre5\n\n#ISDFPR https://t.co/tRp1vvn3Nh"                                                                                                                                                                                                                                
##  [998] "PLEASE PLEASE remember those sick with the COVID-19 and continue to recover But the whole truth not being told to the American people and the world for a reason and prayerfully a good reason\nhttps://t.co/hS0W30EvwV https://t.co/3JhupaoDk0"                                                                                                                                                                                                                                                              
##  [999] "@fourie_art @CJ_isnowblue not long I hope. we in the midst of the worst of #coronavirus rightnow!"                                                                                                                                                                                                                                                                                                                                                                                                            
## [1000] "@SteveSisolak I missed the name of your med school.  <U+0001F6AB> trying 2 practice medicine,  Legislators! We train a long time 4 that honor! #patientsfirst #covid19 leave it to the professionals #scrubsnotsuits @PPA_USA  @Free2CareHC  https://t.co/0LwoAur6Ku https://t.co/oExgTtoGlf"                                                                                                                                                                                                                 
## [1001] "707 out of 2,147 ang positive sa mga natest for COVID-19. 33% whew"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1002] "@DeleMomodu 40 million Nigerians have BVN verified bank accounts. It will cost the FG <U+20A6>100 billion to pay <U+20A6>250k into each account so Nigerians can buy food for themselves and their families during the #CoronaVirus lockdown. If Nigeria can budget <U+20A6>150b for national assembly"                                                                                                                                                                                                       
## [1003] "@RandiRhodes @StephMillerShow @maddow @Thom_Hartmann \nAbbott Labs is unveiling a #coronavirus test that tells if someone is infected within 5 mins. It's small, portable and can be used in any health-care setting. \nEvery person can now be tested! \nhttps://t.co/LkzeBBtciV @business"                                                                                                                                                                                                                  
## [1004] "Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/3bWotGUn9f"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1005] "The senate spent a week swinging their $1200 bologna in the window. Rest at ease that this will calm the constituents, but it does not solve anything. @realDonaldTrump @SpeakerPelosi @AOC @BernieSanders #Coronavirus"                                                                                                                                                                                                                                                                                      
## [1006] "\"I can’t think of a time when this hasn’t happened, frankly,\" @VT_LiberalArts<U+00A0>historian Matt Heaton told @CestLaBrianna<U+00A0>of @BINederland, referring to times when a whole group of people were blamed for a contagious disease  <U+0001F30E>  <U+0001F501>  \n\nhttps://t.co/1EHwvanxZY\n\n#COVID19 #Coronavirus"                                                                                                                                                                            
## [1007] "Really? \"China also does not include asymptomatic cases in case counts.\"\n#coronavirus #COVID<U+30FC>19 https://t.co/zwEOOUd0CK"                                                                                                                                                                                                                                                                                                                                                                            
## [1008] "As horrible as this is during this time...people are creating fraudulent ways to trick others during this time...PLEASE, LOOK THEM UP, watch the NEWS AND BE CAREFUL OUT THERE WHEN, YOU DONATE, GET TESTED, FAKE TESTS, SICK PEOPLE...BE ALERT!<U+0001F497>\n#Coronavirus #COVID #CoronaOutbreak"                                                                                                                                                                                                            
## [1009] "#Dr. #DeborahBirx faces #call to #affirm #LGBTQ #people won’t face #bias in #coronavirus #relief.\n\n#Women #Transgender #LGBTQIA #Covid19 https://t.co/zhtvkrGUUu"                                                                                                                                                                                                                                                                                                                                          
## [1010] "The #CHP’s priority is your #safety! #Traffic volume has drastically decrease during these unprecedented times. If you need to leave your home, please allow yourself the opportunity to arrive safely by slowing down.\n(<U+0001F4F8>: Ofc. Mullane)\n\n#COVID19 #Quarantine #StayHome #California https://t.co/Ymp2PRmMRQ"                                                                                                                                                                                 
## [1011] "@GovMurphy Currently there is a large house party going on in Rockaway and local police are refusing to break it up because it's not at a closed public space. Please make these officers respond and break up this party! They are spreading Covid-19!"                                                                                                                                                                                                                                                      
## [1012] "Y’all tune In I’m tellin right now @LiveeAihhReese applying straight Pressure! #coronavirus #CLUBTWITTER #ClubQuarantine https://t.co/n8l5TwNitP"                                                                                                                                                                                                                                                                                                                                                           
## [1013] "I have to say these are perfect times for the drive-in to come back in style <U+0001F914>\n\n @RegalFilms #COVID #coronavirus https://t.co/rSdYOPtQM2"                                                                                                                                                                                                                                                                                                                                                        
## [1014] "Tripura News Live appeal: Stay home, follow government guidelines on lockdown to stop coronavirus COVID-19; Keep away from rumours https://t.co/5SEDi85GAg https://t.co/hSVauIQMdJ"                                                                                                                                                                                                                                                                                                                           
## [1015] "Take the lead in fight against COVID-19, ex-Minister Chidoka says https://t.co/6MJAOvXrZy https://t.co/cWrllRBtub"                                                                                                                                                                                                                                                                                                                                                                                            
## [1016] "So 113 deaths today and 43 yesterday, really poor reporting of a massive increase. This is due to a change in reporting time. 156 in 2 days is a very encouraging trend, but don’t let that get in the way of a good story. #COVID<U+30FC>19"                                                                                                                                                                                                                                                                
## [1017] "This Doctor Is Provoking the Right's Narrative That Covid-19 Is No Big Deal https://t.co/QVXvCwbulw"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1018] "@ALMLGROUP For most people who end up infected, the disease runs a mild course. While the symptoms can be distressing all the same, you should #TakeResponsibility not to infect others around you. \n\nPlease #StayAtHomeAndStaySafe \nIsolate yourself. Hydrate as much as possible. #COVID19"                                                                                                                                                                                                              
## [1019] "@GovDunleavy #ShelterInPlace #Alaska\nNew York state has 10 times the COVID-19 cases California has. Why? https://t.co/zrPiLLVnmO via @sfchronicle"                                                                                                                                                                                                                                                                                                                                                           
## [1020] "'Mint the F*cking Coin': Rep. Rashida Tlaib Proposes Radical Law to Provide Coronavirus Relief Payments https://t.co/ZrOMZwkvnC via @lawcrimenews"                                                                                                                                                                                                                                                                                                                                                            
## [1021] "@SpaceForceDoD #SpaceForce launches its 1st mission with #Covid19 virus precautions\nhttps://t.co/9leh3vtXIn"                                                                                                                                                                                                                                                                                                                                                                                                 
## [1022] "13/ <U+2022>A Region-specific strategy?\n<U+2013>Retired Intensive Care Physician #CoryFranklin &amp; @RushMedical #InfectiousDisease Specialist #RobertAWeinstein in @ChiTribOpinions:\n&gt; https://t.co/SBP6xq7FCu\n<U+2014>\n#economics #coronavirus #nationalsecurity #natsec https://t.co/P3N9Mg6RIh"                                                                                                                                                                                                   
## [1023] "Great to catch up and share ideas on remaining creative during #SelfIsolation  #lockdown #COVID19 \nPhoto from last years day of art in #stainburnforest @TCLcollective https://t.co/mvtONb166z https://t.co/2shjTkVITi"                                                                                                                                                                                                                                                                                      
## [1024] "Healthy 16 year old dies of Coronavirus in Paris:\n\nhttps://t.co/efRp90TfLj"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1025] "COVID-19 - putting people at risk for no reason is bullshit. One of those people is my sister, an estimator and lead. So, whether you feel sick or not - do your godamn part. Because I am immune compromised, I won't see her for months now, because of shit like this."                                                                                                                                                                                                                                    
## [1026] "@NateSilver538 Was this approach approved by #COVID19 ? It has the last word."                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1027] "#MSM slams #Trump #COVID19 briefings because every time he does one his approval rating increases while #MSM credibility decreases. https://t.co/ul8X6waKdg"                                                                                                                                                                                                                                                                                                                                                  
## [1028] "Please click below to view the March 27, 2020 update from Paul Looker, LHSA Superintendent, about the Covid-19 Coronavirus.\n\nThis update includes 6 Points of Prayer and Thankfulness and 5 Points of Important School Information.\n\nhttps://t.co/SAXeiw7d61"                                                                                                                                                                                                                                             
## [1029] "Shell Suspends Work On Cracker Plant Amid Coronavirus Concerns\nRoyal Shell halts construction on its Beaver County, Pennsylvania petrochemical complex in an effort to contain the spread of the coronavirus. #Coronavirus\nhttps://t.co/pqqfhMtd6U"                                                                                                                                                                                                                                                         
## [1030] "To think she was one of very few I was taking seriously up to now.  #coronavirus https://t.co/lZdhiIJX8Y"                                                                                                                                                                                                                                                                                                                                                                                                     
## [1031] "Covid-19: Disinfection of public spaces, high-risk areas to begin March 30\nhttps://t.co/nCkP3UkzlY  https://t.co/nCkP3UkzlY"                                                                                                                                                                                                                                                                                                                                                                                 
## [1032] "Dont Know Twice anyone??\n\nhttps://t.co/f9R7VUjaCc\n\n#youtube #friends #family #familytime #friday #fridaynight #horrorgames #horror #gamer #games #game #like #subscribe #covid19 #keepgoing #netflix #twitch… https://t.co/nukPXIb3J6"                                                                                                                                                                                                                                                                   
## [1033] "Just finished up a @zoom_us with my EMS Company <U+2014> our first as a group. It was great for all of us to get together (virtually) to discuss #COVID19 and what we have to do to stay safe."                                                                                                                                                                                                                                                                                                               
## [1034] "On #climate and #COVID19, @GernotWagner makes the important point that fossil industries are better connected politically than (eg) clean energy companies when it comes to lobbying for support in the pandemic downturn https://t.co/8faQHI0v9s"                                                                                                                                                                                                                                                            
## [1035] "283 #socialprotection programs from 84 countries in response to #COVID19. No #LIC has put forth a response mechanism yet! https://t.co/rfKZlBNtRH"                                                                                                                                                                                                                                                                                                                                                            
## [1036] "Sending my best wishes for lots of inspiration to all my colleagues close and far as we are doing our best to provide an education to our students from our homes to theirs :-) #teach #COVID19 #ShelterInPlace https://t.co/3ZHSZtnXU8"                                                                                                                                                                                                                                                                      
## [1037] "@RepLeeZeldin doesn’t seem to understand that @NYGovCuomo could easily take the $6 billion RIGHT NOW if he leaves NY Medicaid as is. We can revisit the Medicaid budget later, we can't get back the lives of our seniors and people with disabilities at risk NOW from #coronavirus. https://t.co/zDeny8WSR4"                                                                                                                                                                                               
## [1038] "India hiding its figures of Corona Virus Cases #COVID2019 https://t.co/WfZO1YtZQK"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1039] "In the post COVID-19 landscape when the economy will be on life support,  Treasury coffers will need every1 at work from DAY 1. W/o ECEC &amp; School Aged Care - any <U+0001F4B0> recovery will be delayed. Those likely to be affected will be mothers <U+0001F931> &amp; the criminally underpaid in the sector. https://t.co/4HIjudcGIB"                                                                                                                                                                  
## [1040] "See them calling it African swine fever,but God forbid you call covid-19 Chinese Virus. https://t.co/gSV0Euyh5t"                                                                                                                                                                                                                                                                                                                                                                                              
## [1041] "@sarahtavel Great idea. I’m also keeping a journal of my/the worlds reactions. \n\nhttps://t.co/IZ3pKZCVn3"                                                                                                                                                                                                                                                                                                                                                                                                  
## [1042] "She got COVID-19 and lost her sense of taste and smell. But she says she's very lucky https://t.co/6D1BtZoh0D via @courierjournal"                                                                                                                                                                                                                                                                                                                                                                            
## [1043] "At least we ain’t #2 anymore <U+0001F605> #Rome #coronavirus #COVID19 #QuarantineLife https://t.co/opfeeqeUw9"                                                                                                                                                                                                                                                                                                                                                                                               
## [1044] "LETSS GOOO Tested Negative For Coronavirus But Got Something Called Covid-19"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1045] "NOVEL CORONAVIRUS COVID-19 THEME SONG BY LOST KiNGDOM https://t.co/Jbh5ePCJvm via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1046] "@marwilliamson Please call it what it is: a PLANdemic \n\nDel Bigtree utterly destroys the official media narrative on COVID-19. Watch the Highwire\n\nhttps://t.co/W0lf89o7Ug"                                                                                                                                                                                                                                                                                                                               
## [1047] "@SenSanders Who disagrees with what Bernie stated? \n\nSomebody explain why a hard working person (ESPECIALLY if they’re sick) should lose their health insurance if they lose their job. \n\nI know any answer will be trash.\n\n#M4A \n#coronavirus"                                                                                                                                                                                                                                                       
## [1048] "COVID-19: Freebies for Parents Teaching Kindergarten Aged Children https://t.co/9ILH5LndGB on @bloglovin"                                                                                                                                                                                                                                                                                                                                                                                                     
## [1049] "More info on what @DNC demanded in the bill \n\n$300M for public broadcasting\n-tax credits for wind and solar\n-climate standards on airlines.\nThey didn’t use this bill to fight #covid19, but to fund more liberal pet projects.\nThey don’t care about #Americans\n\n#DNC #Traitors"                                                                                                                                                                                                                   
## [1050] "@TheSSEHydro Perhaps you could offer your building as a COVID-19 place for NHS to treat those where hospital beds have all been taken up. Do your bit for the effort...not just tweets which do, lets face it almost zero. It's real help that's needed."                                                                                                                                                                                                                                                     
## [1051] "@GraceSm16250397 @ScottPresler @kaniff_ken1 @realDonaldTrump I’m a Michigander.  My sister just got tested for COVID-19 because she is immune compromised and has been horribly ill, so I guess my family is about to find out how good Witmore is.  It concerns me she wouldn’t trust a doctor to make this kind of decision with a patient."                                                                                                                                                              
## [1052] "day ?? of quarantine: at this point getting covid-19 wouldn’t be so bad cause it’d be a different ~interesting~ way to spend my time. and i already wanna die so, like, come infect me, bitch.\n\n<U+00AF>\\_(ツ)_/<U+00AF> <U+00AF>\\_(ツ)_/<U+00AF> <U+00AF>\\_(ツ)_/<U+00AF>"                                                                                                                                                                                                                            
## [1053] "Managing COVID-19 stress. https://t.co/Sc3KtuLFTn.  #ruralhealth #indigenoushealth #publichealth https://t.co/GIcsClUCXh"                                                                                                                                                                                                                                                                                                                                                                                     
## [1054] "#BreakingNews \n#Live \n\n@realDonaldTrump is addressing the nation about #COVID19 \n\n[Actual footage] https://t.co/RmdwFD0Kku"                                                                                                                                                                                                                                                                                                                                                                              
## [1055] "@1_odonkor @NAkufoAddo @GhanaPresidency @rashpelp @UN_SDG @EuropeInGhana @UN @_AfricanUnion @UNDPPA @NDCYouthWing @ndccommbureau The Covid-19 is not on people walking freely in the country. It is among those who were quarantined and that's why each day, the numbers rise within those who have been taken to the isolation centres to be monitored. The President's measure to curb the spread is a great one."                                                                                         
## [1056] "WEBINAR: COVID-19: Insurance industry update\n\n@Fareham_IC is hosting a free, 30-minute webinar on 1 April on #COVID19, the implications on #insurance and how you can mitigate risk. There will be an extended Q&amp;A at the end of the session. Register online\nhttps://t.co/RRvjOIRJAh"                                                                                                                                                                                                                 
## [1057] "The thoughts of all @leicspolice\nare with the families and friends of the 14 people in the Force area who have died because of #COVID19\n\n#Rutland now has its' first confirmed case too\n\nPlease #StayHomeSaveLives this weekend \n\nThis is not a drill....\n\nhttps://t.co/JgsqCIVtoX"                                                                                                                                                                                                                  
## [1058] "A reminder for the \"it's just the flu\" crowd:\n1) No, #COVID19 is not the flu\n2) It is 10 times deadlier than the flu\n3) It is more contagious than the flu \n4) We have a flu vaccine &amp; antiviral medications that can shorten the severity &amp; duration of influenza"                                                                                                                                                                                                                             
## [1059] "Good https://t.co/pIvtB2IEIO"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1060] "\"Behind the global surge in unemployment will lie all too many human tragedies, for individuals, families, and communities. It’s these people we should keep in mind as we watch the trajectory of this economic free-fall,\" writes @KateAndrs\n\nhttps://t.co/CiOfiRFPtU"                                                                                                                                                                                                                                 
## [1061] "@camorborg no one wants to hear your covid 19 one liners christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1062] "Hey @disneyplus any chance you can release some movies early since we are all in quarantine due to #COVID19? I'm talking about titles like the live action Beauty and the Beast and The Jungle Book."                                                                                                                                                                                                                                                                                                         
## [1063] "@allinwithchris Hallelujah and pass the Covid-19!"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1064] "House passes historic $2 trillion aid package hoping to curb COVID-19’s economic impact<U+0001F6A8>ICYMI https://t.co/z26AqKKkpO"                                                                                                                                                                                                                                                                                                                                                                            
## [1065] "Covid-19 coronavirus: British Prime Minister Boris Johnson tests positive for coronavirus \n https://t.co/QOHHCCRC2r"                                                                                                                                                                                                                                                                                                                                                                                         
## [1066] "Buzzicati reports that the Anambra Police Commissioner John Abang and his team went round Awka today to ensure compliance to the State Government’s Coronavirus directives\nhttps://t.co/tdLpmZpSuC"                                                                                                                                                                                                                                                                                                         
## [1067] "SANDF. I have 1 question for u. How are u going to defend urself from this Covid 19 pandemic? Ur government is playing fools. https://t.co/oQlC9l0AfW"                                                                                                                                                                                                                                                                                                                                                        
## [1068] "The Tip of the Iceberg: Virologist David Ho (BS '74) Speaks About #COVID19\nhttps://t.co/TSCHy9iHSC"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1069] "#Coronavirus can we make an anime about the Japanese coronavirus task force? <U+0001F914>"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1070] "Opinion: Covid-19 is probably seasonal, but that’s no reason to relax https://t.co/zaNtFmLzzP"                                                                                                                                                                                                                                                                                                                                                                                                               
## [1071] "Gov. Abbott: \"As of today, we've tested more than 21,000 people in the state of Texas\" for #coronavirus https://t.co/2HPzs1wamU"                                                                                                                                                                                                                                                                                                                                                                            
## [1072] "COVID-19 go away please <U+0001F62D><U+0001F62D><U+0001F62D>"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1073] "Tying healthcare to employment is a TERRIBLE IDEA\nPass it on\n\n#MedicareForAll #CNNTownHall #CoronavirusOubreak https://t.co/qk684kNkes"                                                                                                                                                                                                                                                                                                                                                                    
## [1074] "More than 300 people have died; another 1,000 have fallen ill in #Iran, after consuming methanol in the belief that it will protect them against the #coronavirus.\n\n“We have to both cure the people with the alcohol poisoning &amp; also fight the coronavirus.”\n\nhttps://t.co/5JUF9NQwJA"                                                                                                                                                                                                            
## [1075] "You would thing that the \"So called\" #POTUS would have more important things to do than play with his unsecured phone on twitter... #COVID19 https://t.co/bSkoz2VY0q"                                                                                                                                                                                                                                                                                                                                       
## [1076] "They cancelled dci this year because of corona and i will personally fight covid-19 in hell when i see it"                                                                                                                                                                                                                                                                                                                                                                                                    
## [1077] "THANK YOU THANK YOU!! We LOVE You to #HCWShoutOut to everyone on the front lines of this crazy war. Thank you so much for all you do - to all the Health Care Workers around the world!!  You are our ANGELS <U+0001F496> <U+0001F495><U+0001F64F><U+0001F607><U+0001F495><U+0001F30D><U+0001FA7A> #COVID2019 #cnn @CNN @ChrisCuomo #ChrisCuomo"                                                                                                                                                              
## [1078] "Justice In The time Of Covid-19: First-Hand Experience Of Videoconferencing At Supreme Court https://t.co/9DT3MbI9e2"                                                                                                                                                                                                                                                                                                                                                                                         
## [1079] "@AntonPilgram @Commuterist People just see some shit happening with doctors and police and think yeah, cool. Keep in mind the number of people with direct experience of covid-19 remains pretty small (for now, ofc)"                                                                                                                                                                                                                                                                                        
## [1080] "Kent County Recycling Center will be temporarily closing its drop-off station near Rockford and stop taking loads of recyclables due to COVID-19 concerns. https://t.co/L0uygsNBhE"                                                                                                                                                                                                                                                                                                                           
## [1081] "#BREAKING: The Wichita Falls<U+2013>Wichita County Public Health District announces two more cases of COVID-19. Wichita County is now up to 12 cases. https://t.co/aC5DPdP2IN"                                                                                                                                                                                                                                                                                                                                
## [1082] "The not-thinkingable has happened. America is great again again. What an amazing feeling to be #1. How can we ever thank stupidity and the best deals for possibilitating this so bigly? #COVID19 #Covid19usa https://t.co/3buv9v220k"                                                                                                                                                                                                                                                                        
## [1083] "#Coronavirus: #US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/J5BV42FAhR"                                                                                                                                                                                                                                                                                                                                                                                                        
## [1084] "Now on https://t.co/0J2UdYHyh5\n\nPaulo Dybala opens up on COVID-19 experience: ‘I could hardly breathe’"                                                                                                                                                                                                                                                                                                                                                                                                   
## [1085] "I LOVE @ncsecu and continue to bank there though I'm in Seattle. Everything about SECU is great. Check out the @ncsecu profile: \"does not actively tweet.\" Their COVID-19 address is excellent: https://t.co/JJLosPeKbN\nI have been banking online with them for 5+ years, member for 20"                                                                                                                                                                                                                  
## [1086] "COVID-19 maps of Georgia, South Carolina: Latest coronavirus cases by county https://t.co/9baIApgm6O"                                                                                                                                                                                                                                                                                                                                                                                                         
## [1087] "There’s no doubt that COVID-19 is causing a lot of hardship for Montana families. It’s also causing incredible hardships for our front line doctors, nurses and other hospital staff across the country."                                                                                                                                                                                                                                                                                                   
## [1088] "Suva Market area at 1pm today. It’s a good thing that it’s protected by a special “Bula force field” which can resist any #coronavirus that’s hanging around https://t.co/nfAXwmBa49"                                                                                                                                                                                                                                                                                                                    
## [1089] "Inslee signs plastic bag ban despite COVID-19 concerns with reusable bags https://t.co/MHyljtw6Uk via @TheLensNews"                                                                                                                                                                                                                                                                                                                                                                                           
## [1090] "@eschatoL0GICal @AmIDoinItWright Yeah absolutely stinks he *checks notes* ensured that this happened while he has been organizing supporters to donate for a Covid 19 relief fund?"                                                                                                                                                                                                                                                                                                                           
## [1091] "COVID-19 has sent shockwaves through the screen industry as cinemas close and productions shut down.  Content Cafe highlights some of the challenges currently facing the industry \n\n@AusCopyright @CopyrightAgency @screenrights1 \n\nhttps://t.co/f3mKiyaldR"                                                                                                                                                                                                                                             
## [1092] "Even too watch movies or play games don tire me.\nBoredom is real and I'm about to go outta my mind.\n#COVID19"                                                                                                                                                                                                                                                                                                                                                                                               
## [1093] "Fucking RACISTS.\n\nG7 ministers spike joint statement on COVID-19 after U.S. demands it be called 'Wuhan virus' | CBC News https://t.co/RQOOmHvWHQ"                                                                                                                                                                                                                                                                                                                                                          
## [1094] "Let's look at it again, how did it start and what do we know..mainstream&amp;beyond, do your own discernment, part 2+3 too #TheGreatAwakening #QAnon #CoronaVirus #Covid-19 #DarkToLight #FutureProvesPast #FactsMatter #WWG1WGA #WWG1WGAWorldWide https://t.co/1S6xlqjfu2 via @YouTube"                                                                                                                                                                                                                      
## [1095] "@dino_melaye To All the politicians with #Covid-19 Allah will give you the equal attentions you're giving to the poor masses of your State"                                                                                                                                                                                                                                                                                                                                                                   
## [1096] "@BorisJohnson COVID-19 doesn't care about pithy slogans, and that's literally all you know how to do. You're an incompetent buffoon."                                                                                                                                                                                                                                                                                                                                                                         
## [1097] "Which can be clinically achievable as demonstrated in the plasma of rheumatoid arthritis patients who received 500<U+2009>mg administration. #ChinaVirus #Coronavirus #COVID19"                                                                                                                                                                                                                                                                                                                               
## [1098] "The release states that the USPS has a dedicated COVID-19 Command Response team focusing on maintaining continuity in providing service. &gt;&gt; https://t.co/wCIQkvsaGn"                                                                                                                                                                                                                                                                                                                                    
## [1099] "@akreana_ You won't tweet this because you have political friends! This was supposed to be a platform for all to vent, you retweet obscene gestures of sex mentioned by ppl but won't tweet this, your platform is biased &amp; you show you are weak!  let this comment trend #COVID19 @Vodacom"                                                                                                                                                                                                             
## [1100] "Error 404 found <U+0001F926><U+200D>♀<U+FE0F><U+0001F926><U+200D>♀<U+FE0F><U+0001F926><U+200D>♀<U+FE0F> #Covid_19 #vaka5698 https://t.co/Ydr8TWZx2v"                                                                                                                                                                                                                                                                                                                                                       
## [1101] "We are all working together as Oklahomans to <U+0001F44A>Combat #COVID19 https://t.co/WepwiaPF5k"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1102] "Today Jane brought me some essential as I am in quarantine for 12 weeks or more due to cancer and COVID -19 risk. This is as close as we could get. I miss hugging my friend <U+0001F61E> https://t.co/FaF24vAccR"                                                                                                                                                                                                                                                                                            
## [1103] "New post: TRINIDAD-HEALTH- Trinidad records second death from COVID-19 https://t.co/5ShlIphav0"                                                                                                                                                                                                                                                                                                                                                                                                               
## [1104] "G20: ‘whatever it takes’ 2 control virus\n#whateverittakesG20\n#CoronavirusOubreak \n#CoronaVillains \n#Corona \n#COVID \n#COVID2019 \n#StayHomeSaveLives \n#LockdownNow \n#LOCKDOWNWORSHIP"                                                                                                                                                                                                                                                                                                                
## [1105] "Management of Critically Ill Adults With COVID-19 https://t.co/oj9Okfd0ja"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1106] "Starting to look very distopian out there #Covid19  <U+0001F914> https://t.co/NWAs8Rhwb4"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1107] "Ways local media companies are supporting local businesses during COVID-19 https://t.co/PGtD1WMdSz via @LocalMediaAssoc"                                                                                                                                                                                                                                                                                                                                                                                      
## [1108] "COVID-19 showing mfers that their social class doesn't make them untouchable <U+0001F974>"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1109] "Is it me or have Russia and South Korea been very quiet over this virus. #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1110] "Michigan sees jump of 800 COVID-19 cases since Thursday, up to 92 deaths https://t.co/VD93Ko17nD via @michiganadvance"                                                                                                                                                                                                                                                                                                                                                                                        
## [1111] "“Commitment is the little choices every day that lead to the final results we’re striving for.” \nYes the world is crazy right now! But we have an opportunity to reassess our goals, lace up our shoes, and get moving!  \n#trackandfield \n#COVID2019 \n#FearTheGoat"                                                                                                                                                                                                                                    
## [1112] "@goosmoo @NYGovCuomo What state has the worst COVID-19 crisis? How about the worst crime? Poverty? Rats everywhere? Oh yea, it's New York. Yea, he's doing a great job!"                                                                                                                                                                                                                                                                                                                                      
## [1113] "With #COVID19 decimating the spring/summer conference &amp; meeting calendar, @TChanMD gives some AWESOME Tips for filling your former conference time here: https://t.co/BjZWrliinL #FacDev #MedEd https://t.co/mAI4kXYCn0"                                                                                                                                                                                                                                                                                  
## [1114] "Boris Johnson has COVID-19, and Italy has set a grim new record - here's what happened overnight worldwide in the coronavirus outbreak  https://t.co/NQrNlWai1n"                                                                                                                                                                                                                                                                                                                                              
## [1115] "@narendramodi @RBI Sir ji, Please quarantine each and every single person with 1 or 2 symptoms, possible he just has ordinary cold not covid-19. Many private hospitals are sending home patients with fewer symptoms, eventually it may be covid-19. Since there are not enough kits to test every patient"                                                                                                                                                                                                  
## [1116] "Beijing has offered medical expertise and equipment to various countries around the world to tackle #COVID19, but experts worry about the motives of the Chinese Government and possible strings attached https://t.co/39WGJ1d9h5"                                                                                                                                                                                                                                                                            
## [1117] "Another #COVID19 positive case reported just now; a patient from Rajouri district in Jammu. History of close contact with a (now deceased) positive case-Rohit Kansal, J&amp;K Principal Secretary (Planning) (file pic) https://t.co/YDQYDxG0Bi"                                                                                                                                                                                                                                                             
## [1118] "@noahsarkcrypto @BTC_JackSparrow Seems like #BTC is on a ventilator right now, have been infected by #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                
## [1119] "Our sincere thanks to the farmers and cattlemen who continue to work tirelessly <U+0001F469><U+200D><U+0001F33E><U+0001F468><U+200D><U+0001F33E> And to all the actors in the agri-food chain <U+0001F393><U+0001F52C><U+0001F331><U+0001F69B> Whose work is essential to ensure the food production and supply needs.\n\nTOGETHER WE'LL STOP COVID-19!\n#StillCloseToYou #StopTheSpread https://t.co/2L1d0OoJa1"                                                                                             
## [1120] "You can’t put a date on when this virus ends #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1121] "Sadly the US just passed 80,000 cases of #coronavirus moving ahead of China as the country with the MOST cases in the world. https://t.co/TeRhub1z0F"                                                                                                                                                                                                                                                                                                                                                         
## [1122] "Sheriff Daron Hall on bracing for COVID-19 in Nashville's jails\n\"We’ve seen a reduction in our jail population, but it’s not where it needs to be.\" https://t.co/BUpBmff9ak https://t.co/c3bEl4jz1S"                                                                                                                                                                                                                                                                                                     
## [1123] "The Estee Lauder Companies (ELC) and its corporate foundation, The Estee Lauder Companies Charitable Foundation (ELCCF) have made financial contributions to support COVID-19 relief efforts around the world.\n\nhttps://t.co/NFEpwg0BOR"                                                                                                                                                                                                                                                                    
## [1124] "#Halifax Transit says service will be \"significantly impacted\" tomorrow based on current staff availability.\n\n\"Riders should expect route delays and/or cancellations and are asked to make alternate plans if possible.\"\n\nMore here: https://t.co/taRJ1uVQFI\n\n#COVID19 @globalhalifax"                                                                                                                                                                                                             
## [1125] "Labourers travelling back to their home states do not realise they are putting lives of thousands on risk. \n@FinMinIndia has sanctioned a considerable amount for their daily needs (3 months duration), so that they stay at their location itself\n#covidindia \n#COVID2019"                                                                                                                                                                                                                               
## [1126] "Touchless technologies are not only the future, they're in demand right now more than ever and spurred by COVID-19. #coronavirus #touchlesstechnology #wirelesspower https://t.co/hqarihaV12"                                                                                                                                                                                                                                                                                                                 
## [1127] "@BettyBowers Just got my COVID-19 Positive test back. I hope I was the one the pushed us over the edge!\n(I was sick last week, but haven't had a fever in days hope my bout is winding down)"                                                                                                                                                                                                                                                                                                                
## [1128] "Here’s the Friday evening update on the city’s response to COVID-19. Huge thanks and respect to our amazing @BhamCityCouncil staff, to our dedicated NHS and social care professionals, to @BVSC, the volunteers &amp; citizens working so hard to see us through these difficult days. https://t.co/UjWIMuiVTL"                                                                                                                                                                                            
## [1129] "Animal Shelters Are Struggling Due to COVID-19. We Must Help Them Now! #care2 https://t.co/F5Maql0o3z"                                                                                                                                                                                                                                                                                                                                                                                                        
## [1130] "A 69-year-old man died due to #Coronavirus, at Kochi Medical College today https://t.co/5GH0kOrepW"                                                                                                                                                                                                                                                                                                                                                                                                           
## [1131] "@coursera In this situation of global lock down the world need to grow from home. The knowledge gained now can help to pay later to reduce the global loss. Let's start to educating more by freeing up the online education sources till the situation #COVID19  gets control."                                                                                                                                                                                                                              
## [1132] "Australian Supercomputing Centers Join Efforts Against COVID-19 https://t.co/AUTm2l40l6"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1133] "I would trust the local FB COVID-19 page more if anytime data was posted Tr*mp supporters didn’t try to get the post pulled down because it makes their guy look bad."                                                                                                                                                                                                                                                                                                                                       
## [1134] "@RogueFirstLady @rob13567 In mid January all COVID 19 meetings were made “Classified Status” so Trump could withhold info to public\n\nhttps://t.co/Upxok3rYIW"                                                                                                                                                                                                                                                                                                                                             
## [1135] "Wash your hands with soap and water often <U+2013> do this for at least 20 seconds <U+0001F9FC><U+23F3> #Coronavirus #COVID-19\nhttps://t.co/xQ20h8ajB6 https://t.co/JDV3EeK5Ko"                                                                                                                                                                                                                                                                                                                              
## [1136] "Spring is coming in South Korea.\nHowever, people wear a mask to prevent COVID-19. Social distance is keeping. https://t.co/mOxAme593T"                                                                                                                                                                                                                                                                                                                                                                       
## [1137] "@narendramodi\nSir,your step toward covid 19 is highly appraised. you and your team appreciated for hard work for fighting against corona.but many people like us feeling economic crisis due lockdown.requesting you to something for home loan emi extension for period of 1to2 month."                                                                                                                                                                                                                     
## [1138] "@ddale8 Or they had to repurpose a convention center because Trump didn’t take #coronavirus seriously"                                                                                                                                                                                                                                                                                                                                                                                                       
## [1139] "things are very serious with the #coronavirus https://t.co/rbbpz7UaeQ"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1140] "Many accuse the US of using #Coronavirus a biological weapon against the peoples of the world, the US history in biological warfare is well known. #5YearsOfWarOnYemen https://t.co/rMRZ4b2SXl"                                                                                                                                                                                                                                                                                                               
## [1141] "I bet all these celebrities are faking having COVID-19 so they can fake their deaths and escape to wherever Tupac and Mac Miller are"                                                                                                                                                                                                                                                                                                                                                                         
## [1142] "My great uncle who’s lived 90 long years was diagnosed with Covid-19 and is now dying alone in a Michigan hospital. Family is devastated. I am devastated. I’m angry. I want to scream and fight and lose my goddamn mind. None of it changes the facts. Please, please just stay home."                                                                                                                                                                                                                    
## [1143] "2 weeks ago, I donate some money for our medical workers to fight covid-19 in my country under Jackson Wang's name. I hope everything will be fine as soon as possible. Thank you Jackson, for always inspiring me. Once again, 生日快<U+4E50> @JacksonWang852 <U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F> #BlessedToHaveJackson https://t.co/E9B02OVSJm"                                                                                                                                                
## [1144] "Chloroquine is known to block virus infection by increasing endosomal pH required for virus/cell fusion, as well as interfering with the glycosylation of cellular receptors of SARS-CoV. #ChinaVirus #Coronavirus #COVID19"                                                                                                                                                                                                                                                                                  
## [1145] "For graduate students nearing the end of their programs, #COVID19 has created a challenge: remotely presenting a dissertation defense. That was the new reality for @kylegodbey, who embraced the ‘dissertation-at-home’ format for a creative presentation. \n\nhttps://t.co/WaHUTIWeAa"                                                                                                                                                                                                                   
## [1146] "#Maroon5 - #SheWillBeLoved (Official Music Video) https://t.co/BRR0vzN3TB via @YouTube  #coronavirus #COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                                                                                        
## [1147] "Do you know the symptoms of #COVID19, how it spreads, and how to prevent its spread? Find the answers in this infographic. And check the BC COVID-19 Self-Assessment Tool if you have symptoms: https://t.co/pYmxr4VjyE https://t.co/1YK3hvc1e3"                                                                                                                                                                                                                                                              
## [1148] "@BENDTDISTILLING @Forbes Well Done! I am so proud to see @BENDTDISTILLING making a difference! #COVID19 #commUNITY #Texas"                                                                                                                                                                                                                                                                                                                                                                                    
## [1149] "Tennis star @Bandreescu_ is donating a signed tennis racket to raise money for @funds4disaster COVID-19 relief efforts. Anyone who donates $25 or more will be automatically entered to win the racket. \n\nhttps://t.co/4F6RnoX7Bf"                                                                                                                                                                                                                                                                          
## [1150] "COVID-19: $800+ million to support small businesses and crisis response @google https://t.co/buNT7Za0yG"                                                                                                                                                                                                                                                                                                                                                                                                      
## [1151] "<U+0001F4A5>Protecting the most vulnerable against the #COVID-19 #coronavirus\nWe will distribute 1.000 re-usable with certified air filter face masks and soaps to the most vulnerable #refugees.\n\n#Seeds_of_Humanity https://t.co/JuxCaiciBo"                                                                                                                                                                                                                                                             
## [1152] "@FIGZ415 @FirstSquawk The U.S takes the lead in numbers of #Covid19 cases"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1153] ".@realDonaldTrump denies he had briefings on #Covid19 early.  He was briefed in January!"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1154] "Leading my example @NJGov @PhilMurphyNJ. #SocialDistance being practice while giving update on #Covid-19. They are doing what they are telling us to do. https://t.co/9qTtFyRpj1"                                                                                                                                                                                                                                                                                                                             
## [1155] "@nanagotgame u see how westernisers dey hold their leaders accountable?\n\nu see how piers morgan dey bully boris and his govt over #COVID2019?\n\nthats what u call civilisation"                                                                                                                                                                                                                                                                                                                            
## [1156] "https://t.co/aTtFdceF8f Fact check: Claim of new symptoms for COVID-19 is partly false #epitwitter"                                                                                                                                                                                                                                                                                                                                                                                                           
## [1157] "In a further step to assist members facing severe financial hardship during the coronavirus, the NFRN has re-established a partnership with Commercial Plus.\n\nhttps://t.co/vCWZsmVFpL"                                                                                                                                                                                                                                                                                                                      
## [1158] "@ambiej I'm one of the first to raise the alarm at Spectrum over their lack of regard for employee/customer safety. they're still giving people shit for trying to WFH or use the 3 weeks PTO. a comcast tech DIED from covid-19 last week."                                                                                                                                                                                                                                                                  
## [1159] "Wonder if Leek are one of these? (I do not know nor have looked).\nCan see the point for some clubs though?\n#coronavirus: Opposition grows among non-league clubs to ending season - https://t.co/VRuvTfqQ9k"                                                                                                                                                                                                                                                                                                
## [1160] "@megynkelly Also, smart people \"plan for the worst and hope for the best\".  Overestimation is almost always far LESS damaging than underestimating the seriousness of any threat. Using the boy-who-cried-wolf metaphor does not apply to this situation since the #Covid19 is real."                                                                                                                                                                                                                       
## [1161] "EVERY AMERICAN THAT DIES DUE TO COVID-19 IT IS ON TRUMPS HANDS POINT BLANK PERIOD"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1162] "@NateSilver538 We need a better COVID-19 reporting system, and a technology that can track critical medical resources. I have a solution. https://t.co/T4M3Jxw9bQ"                                                                                                                                                                                                                                                                                                                                            
## [1163] "NEW COMMENT! Management of #IBD during the COVID-19 outbreak: resetting clinical priorities\n\nInsights from clinicians in Milan, Italy\n\nhttps://t.co/P9fhm55qnh\n\n#COVID19 #Coronavirus https://t.co/RejNiq3Oo1"                                                                                                                                                                                                                                                                                          
## [1164] "If you’re in this photo hope you’re pleased with yourself for endangering the vulnerable and health workers of Australia #COVID19 #Coronaaustralia #corona https://t.co/KYBcnSB5Sy"                                                                                                                                                                                                                                                                                                                         
## [1165] "In Louisiana the most common underlying health condition amongst the COVID19 dead is diabetes. More common than pulmonary or cardiac problems. Why? Scary and fascinating. https://t.co/d9fSZA11BT"                                                                                                                                                                                                                                                                                                           
## [1166] "@Blu3d0t @SwedishCanary Poor baby took social distancing to the extreme. <U+0001F43C>\n#SocialDistancing\n#COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                                                                                   
## [1167] "Our new webpage details consumer issues tied to COVID-19:\n\n-price gouging\n-fake tests\n-fake cures, treatments\n-false advertising\n\nRisking the health, money &amp; identity of anyone getting scammed.\n\nAre you a victim? Go here: https://t.co/PA1QVL82C1\n#COVID19 #InThisTogether"                                                                                                                                                                                                                 
## [1168] "- Assault on a supermarket in Palermo. Citizens shouted: \"We have to eat.\"\n- Twenty Somali doctors are coming to help fight the virus.\n- The Italian health authority authorizes the administration of drugs composed of antimalarial chloroquine. #coronavirus \n..."                                                                                                                                                                                                                                    
## [1169] "Lol my apartment complex sent an email about rent during COVID-19 and tried to give us a 20% discount if we pay April and May's rent up front, as though multiple people aren't being laid off right now"                                                                                                                                                                                                                                                                                                     
## [1170] "You would think that with all this time at home during this quarantine, I would be caught up with all my schoolwork..but that’s not the case at all <U+0001F926><U+0001F3FB> #FridayThoughts #CoronaLockdown #COVID19 #procrastination"                                                                                                                                                                                                                                                                      
## [1171] "@tdfbeefeaters Do we have an official quote from you guys yet on the BBC Sport report about #TDF2020behindcloseddoors ???? #TDF2020 #cycling #COVID2019 #backstronger #wtfock \nTour de France: Sports minister considers Tour with no spectators https://t.co/I9a010Zulq"                                                                                                                                                                                                                                    
## [1172] "Video: COVID-19: 'Adhere To Preventive Measures' - MP Urges Public\nhttps://t.co/6x6DCO3vDu"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1173] "Engaging with climate justice means being constantly away from my family and our homelands. Pandemic based self isolation is forcing me to slow down, but I still don’t get to see family. #COVID19 #IndigenousHealth #cndpoli"                                                                                                                                                                                                                                                                              
## [1174] "@ibdtweets @ibddoctor @IBDMD @MRegueiroMD @SaraElOualiMD @SunandaKaneMD Agree. We should try to have at least one per city. A free of #COVID19 place for infusions. Not only #IBD but also another kind of patients (#rheumatoidarthritis #psoriasis etc, in order to keep their treatment safe."                                                                                                                                                                                                             
## [1175] "https://t.co/FKuGLLovJz New York State Has 10 Times the COVID-19 Cases California Has. Why?"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1176] "@YAATeamSouth Mine also went live all over video too :) for the #coronavirus  #nhs staff . Lovely video on Facebook of the #barnsleyhosptialstaff ."                                                                                                                                                                                                                                                                                                                                                          
## [1177] "As most of us are working from home now, here is an article with some tips to be more productive!\n\nhttps://t.co/CRe0U65QDn\n\n#WorkFromHome #COVID2019 #Tips"                                                                                                                                                                                                                                                                                                                                               
## [1178] "George Diaz, who treated the first U.S. novel #coronavirus patient at @providence, describes real-time decision-making and implementation of a telehealth program to protect patients and staff alike: https://t.co/Rz809tC2YT https://t.co/ohq6D0qgFm"                                                                                                                                                                                                                                                       
## [1179] "WATCH: @GovKemp will be holding an unprecedented statewide town hall with members of his #coronavirus task force tonight 8:00 PM.\n\nYou can watch on your @mygpb TV station and listen live on @gpbnews. https://t.co/XKbhGK6jBf"                                                                                                                                                                                                                                                                            
## [1180] "@Mallikarjun_KC To ensure customer &amp; employee safety against COVID-19, our teams are working remotely. We are committed to servicing your queries. Please use our 24x7 Digital channels - Website, Chatbot ILA or Mobile App https://t.co/EPRRNIvSdA. Stay healthy and safe!"                                                                                                                                                                                                                             
## [1181] "Just realized, #COVID19 takes a pretty significant part of the rest of our time watching Messi away. I reckon he'll call it a day at Barca 2022 after the world cup. Maybe one more year after that if we're lucky. <U+0001F636>"                                                                                                                                                                                                                                                                             
## [1182] "Insider Exposes COVID-19 Coronavirus Scam | Alternative | Before It's News - https://t.co/uariUzDrb8 via @shareaholic"                                                                                                                                                                                                                                                                                                                                                                                        
## [1183] "'Heartbreaking': Burglars ransack food bank amid coronavirus lockdown https://t.co/QyTeLCgA54 #Covid19 #Covid19UK #CovidIdiots #Bolton https://t.co/jtRwCnUtdk"                                                                                                                                                                                                                                                                                                                                               
## [1184] "A Comtist perspective on COVID-19 https://t.co/gzsVRPLpuZ"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1185] "There are no strings attached. Just use it and hopefully, it'll aid you to turn over a new stone in the way we work. Because we believe, #PeopleCare is Good Business.\n\n#StayHappy! #StaySafe!\n\nSign up here: https://t.co/k9V9b3TBaq https://t.co/dRi760xu4H"                                                                                                                                                                                                                                            
## [1186] "@FairyL \"Make COVID-19 great again\". https://t.co/pORvEMxbEi"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1187] "$COCP Heard a report that ppl can be reinfected w COVID-19. If true can you design a vaccine? Doesn’t that make symptom relief SOC until Antvirals are available that cos like Cocrystal are working. Merck partnership?"                                                                                                                                                                                                                                                                                    
## [1188] "WATCH #COVID19 update...\nhttps://t.co/5k7fzbZceB"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1189] ".@dougducey is jumping into action with the new money provided by the #AzLeg to help people financially impacted by the #coronavirus https://t.co/fgl8Mf3gdm"                                                                                                                                                                                                                                                                                                                                                 
## [1190] "I hope the way that Trump is handling the covid-19 pandemic will be a wake up call for many Americans come the next election. All I can say is that I’m so thankful to live in Canada where my government actually gives a damn about it’s people. https://t.co/MD2z7OSo48"                                                                                                                                                                                                                                 
## [1191] "Same action must be done here in Sindh markets. Rates are high in vegetables, fruits and other things for dialy usage.\n@MuradAliShahPPP \n@murtazawahab1 \n#coronavirusinpakistan \n#COVID2019 \n#CoronaVirusUpdates \n#StayHomeStaySafe https://t.co/FlluumpJRw"                                                                                                                                                                                                                                            
## [1192] "Correct:  no one's ever (made as big a mess of a national crisis while being an utter jackass.  #Trumpocalypse #TrumpPlague2020  #COVID19 https://t.co/5utgzbXhoy"                                                                                                                                                                                                                                                                                                                                            
## [1193] "Are you up-to-date on the COVID19 affects persons w disabilities? @ilo @WHO @UN @hrw &amp; many  come together, ensure human-rights based approach #COVID19 response.\n\nCheck out latest resources &amp; compilation on: https://t.co/sovuWo4fYQ\n\nPhoto: ⓒ 2020 Dennis Sigwe/SIPA via AP Images https://t.co/dv0lQRu0sr"                                                                                                                                                                                  
## [1194] "#ReadABookChallenge #Lockdown21 Next in my reading list once I complete with \"Stealth War\". This book featured in today's @dna with @sudhirchaudhary on how China used #COVID2019 to unleash this Unrestricted Warfare on the entire world, though the target was #USA @robert_spalding https://t.co/q8GvLMkhbB"                                                                                                                                                                                            
## [1195] ".@melissajoell from @Instructure / @CanvasLMS discusses how she thinks online learning will change the way kids learn even after #COVID19"                                                                                                                                                                                                                                                                                                                                                                    
## [1196] "Pres Trump Q&amp;A: Tell Pence not to call govs of Washington, and Michigan but he calls anyway. Think \"it's a great sign\" to go to Norfolk to visit hospital ship that's going to NY. Visit to be at 2p ET Saturday. #Trump #coronavirus @anthonymace"                                                                                                                                                                                                                                                     
## [1197] "GitHub Trending Archive, 25 Mar 2020, All. coronasafe/care, ProtofyTeam/OxyGEN, deepset-ai/COVID-QA, peixebabel/COVID-19, elcronos/COVID-19, datasets/covid-19, pomber/covid19, ElderJames/ant-design-blazor, nzw9314/QuantumultX, ahmadawais/corona-cli https://t.co/UPTqMmzYhJ"                                                                                                                                                                                                                             
## [1198] "So many people out tonight clapping for the NHS <U+0001F60A> <U+0001F44F> #nhs #thankyou #clapforthenhs #thankshealthheroes #clapforourcarers #staysafe #stayhome #covid_19 https://t.co/cL2SnFZIiV"                                                                                                                                                                                                                                                                                                          
## [1199] "Letter to the Trojan Family: COVID-19 and USC Athletics Update - University of Southern California Official Athletic Site https://t.co/VeFnw471gh"                                                                                                                                                                                                                                                                                                                                                            
## [1200] "Missed out on this week’s dental news? No problem, here’s what happened over the past seven days…https://t.co/6ZnsiFtWzp\n\n#coronavirus #coronaupdateuk #fmc #coronacrisis #coronavirusdentistry #covid19dentistry #weeklyroundup #newsyoumighthavemissed https://t.co/yZbfDbCutn"                                                                                                                                                                                                                        
## [1201] "This article, too, has a lot of great info about things they're doing. I'm fascinated by the operational side of running a business like this. https://t.co/yK20XdXx8d"                                                                                                                                                                                                                                                                                                                                       
## [1202] "Our response to Lancet paper suggesting ARBS/ACEi be discontinued in #COVID<U+30FC>19 #CoronavirusUSA\n#CoronavirusPandemic #FDA #losartan #PPE #SocialDistanacing\nhttps://t.co/lB5hkg2pln"                                                                                                                                                                                                                                                                                                                  
## [1203] "They are doing an amazing job!\nSask. town executes tailored pandemic plan to get ahead of COVID-19 https://t.co/RC0hjoMVgf"                                                                                                                                                                                                                                                                                                                                                                                  
## [1204] "I’m incidentally writing my doctoral dissertation about the bimodal effect of ageism and healthcare treatment so observing how we are handling COVID-19 has been oddly both encouraging yet disheartening and my little researcher + public health advocate heart feels torn <U+0001F97A><U+0001F494>"                                                                                                                                                                                                       
## [1205] "Protecting the well-being of our employees and clients has and will always be our top priority. We understands the concern and uncertainty caused by coronavirus (COVID-19). While this situation hasn't been easy on anyone, we remain committed to keeping our promise of serving you."                                                                                                                                                                                                                     
## [1206] "Michigan governor threatens doctors who prescribe hydroxychloroquine to treat COVID-19 https://t.co/hLGjktOQWI"                                                                                                                                                                                                                                                                                                                                                                                               
## [1207] "Question: I’ve been looking around for healthcare for me and my husband and an insurance agent that was helping me said if you don’t have medical you no longer can get medical after next week until a vaccine is available for COVID-19 ...is this true???? I hope not"                                                                                                                                                                                                                                   
## [1208] "Absolutely, China is the solo World's leader! .\nThe Chinese doctors and supplies are all over the world to defeat the #coronavirus outbreak. The fact is only China stands out to help the mankind . \n<U+0001F1E8><U+0001F1F3> #China #Covid_19 https://t.co/Cf8EEA7iCP"                                                                                                                                                                                                                                    
## [1209] "Nonprofits are stepping in to help military families in need during the #COVID19 pandemic. @AmandaBrandeis shows you how https://t.co/ZhPQHCkqnt"                                                                                                                                                                                                                                                                                                                                                             
## [1210] "Hand? See the way this Covid-19 is set up...... https://t.co/s70DdUNJY1"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1211] "Slaughterhouse Is Business As Usual After Worker Tests Positive for COVID-19 https://t.co/NyXKgvJo1y via @peta"                                                                                                                                                                                                                                                                                                                                                                                               
## [1212] "@theodoraclarke As an Awareness raiser for @CarersUK can I ask you what extra support you will be seeking for us #UnpaidCarers in #Stafford at this very difficult time? Again we seem to be the forgotten army that helps to prop up the #NHS #CoronaLockdown #Coronavirus"                                                                                                                                                                                                                                  
## [1213] "There's been a rise in Anti-Chinese &amp; Anti-Asian Racism in light of #Coronavirus &amp; xenophobic remarks from Trump https://t.co/rDI9PonL9e \n\nRSVP for a Townhall on Sat 3/28 from 6-8pm EST: https://t.co/RyM2QyOhRW #COVID<U+30FC>19 #RacismIsAVirus \n\nShoutout to my friend @gregorycendana!"                                                                                                                                                                                                     
## [1214] "Stocks cut losses after House passes <U+0001F9A0> relief bill, #Dow still down 500 points. We need #coronavirus vaccine <U+0001F489>.Only reliable way to <U+0001F6D1> pandemic is <U+0001F489>. #StayHome policy is not enough. As soon as <U+0001F489> is developed <U+0001F5FA> must be prepared for fast <U+0001F489> distribution https://t.co/Se90kE24lX"                                                                                                                                               
## [1215] "@TheEllenShow I am a teacher at Sartell High School (MN) and we start teaching distances learning Monday for a month because of COVID-19.  Wondering if you would be interested in joining my classes online to encourage my students? It would blow their minds!"                                                                                                                                                                                                                                            
## [1216] "So, what's the real secret to make poached eggs?\n\nThis is the one skill I want to learn during this time.\n\n#COVID2019"                                                                                                                                                                                                                                                                                                                                                                                    
## [1217] "By the time I come back I wish #COVID19 mutates into an avirulent strain."                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1218] "If you know someone in #Islamabad who needs #Ration please let AC @iasadullah_pas know, who is doing a great job in #Islamabad. \n\n#CoronaVirusUpdate #StaySafeStayHome #Quarantine #COVID #PakistanFightsCorona #COVID2019 #CoronavirusOutbreak https://t.co/5faH5RIzn0"                                                                                                                                                                                                                                    
## [1219] "More Caribbean Countries Close Borders to Counter COVID-19 | TravelPulse https://t.co/sMTXiogeeV @cruiseprguy @TravelPulse"                                                                                                                                                                                                                                                                                                                                                                                   
## [1220] "@nycHealthy @NYCMayorsOffice @NYCMayor I want to ask if a person is tested positive for #covid19, and lives in apartment complex, are neighbors notified, and the building be sanitized? Thank you.\n\n#AskMyMayor"                                                                                                                                                                                                                                                                                           
## [1221] "Six more diagnosed with Covid-19 in Vietnam, putting country's count at 169 https://t.co/07f8FvUjGP"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1222] "COVID-19 ruined drum corps I can’t take this anymore https://t.co/BSC2REuFNq"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1223] "HUGE! Author of Ridiculous Imperial College Coronavirus Study Backtracks Says UK can Now Expect Under 20,000 Deaths Not Half a Million and LESS THAN ANNUAL FLU DEATHS\n\n Brits would die in the pandemic and 2 million Americans would perish from COVID-19. https://t.co/PmGWPl31pC"                                                                                                                                                                                                                       
## [1224] "Coronavirus (COVID-19) - Apple and CDC https://t.co/Wo6IybkL9b"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1225] "Omg, Esther Rantzen admitting on @BBCNews that she has wine o’clock with her friends at 6pm gives me life. Go girl <U+0001F942> #COVID19"                                                                                                                                                                                                                                                                                                                                                                    
## [1226] "The biggest thank you to all the NHS staff and carers working so hard to tackle #coronavirus- you deserve every clap and more! I think we all needed this tonight,  \n\n#clapforourcarers  #clapforNHS https://t.co/GU82KIC6YO"                                                                                                                                                                                                                                                                               
## [1227] "@advocatemahere It appears you don't agree with this absolutely necessary move. We are in between a rock and a hard place. I suppose that's why this decision has taken this long to make. What needs to come out is full honesty with the Covid -19 stats."                                                                                                                                                                                                                                                  
## [1228] "@TeamTrump @realDonaldTrump A national emergency and everyone crowds together as though social distancing is just something ‘other people’ should do. All for someone to sign a piece of paper. Disappointing the medical advice is ignore at the top #badexample #COVID19 #StayHomeSaveLives"                                                                                                                                                                                                              
## [1229] "Down with COVID-19<U+0001F44E> https://t.co/bsUfBKhnMa"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1230] "I am glad that my state Jharkhand is doing really well against COVID-19 and I also hope that CM @HemantSorenJMM is ready for the aftermath of this epidemic as well. I hope so"                                                                                                                                                                                                                                                                                                                               
## [1231] "\"America first\" #coronavirus https://t.co/mqEyibonK6"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1232] "@realDonaldTrump why aren’t you visiting hospitals to see what they need? Why don’t you care more about people than the stock market? I call on you to be a leader and visit them. #visitcovid #COVID19 #visithospitals"                                                                                                                                                                                                                                                                                    
## [1233] "Moving during #covid19 and crazy #oklahomaweather #donotrecommend please no more rain and hail for at least an hour so I can get everything moved in to my new place <U+0001F62C><U+0001F62C><U+0001F62C>"                                                                                                                                                                                                                                                                                                    
## [1234] "Social_Distancing...<U+0001F44C><U+0001F44C><U+0001F44C>\n#IndiaawaitsCovidaid #IndiaBattlesCoronavirus #IndiaFightsCoronavirus #IndiaFightsCOVID19 #IndiaComeTogether #IndiaRespondstoCOVID19 #Indianpolice #Indianpolice #IndiaLockedDown #CoronavirusOubreak #CoronavirusLockdown #CoronavirusPandemic #Corona https://t.co/YdJXUVlEzY"                                                                                                                                                                    
## [1235] "My running path reminds me of a gym on January 1st. Who are all these new people! Crowding and socializing. Get the F out of my way so I can run! #Illinoiscoronavirus #COVID19 #runner #trailrunning"                                                                                                                                                                                                                                                                                                        
## [1236] "Linn County reported two more cases of COVID-19 for a total of 28 since the coronavirus pandemic began, the Oregon Health Authority announced on Friday, while Benton County continued to hold steady at six cases. https://t.co/MfgsNhAXxt"                                                                                                                                                                                                                                                                  
## [1237] "@Lobiyn_Achien Believing in God is healthy but believing in unproven information esp for COVID-19 case is deadly."                                                                                                                                                                                                                                                                                                                                                                                            
## [1238] "<U+0001F44F><U+0001F44F><U+0001F44F>To @VickyWright14 , to all your colleagues @NHSForthValley and @NHSuk at 8pm<U+23F0>tonight we applaud you <U+0001F44F><U+0001F44F><U+0001F44F> for your courage and bravery on the front line in the face of adversity as we fight Covid-19. \nOur<U+0001F496>felt thanks!   \n#ClapForCarers #NHS #clapforNHS https://t.co/kUxg2mo0H7"                                                                                                                                  
## [1239] "@mileslunn You're right they aren't a huge source, but they are currently a source, an $8.9b one (incl hunting). \n\nCovid-19 is going to keep this gov't busy and very broke for this term.  Likely a decade before any vanity spending can start again.  Alas, we're both just speculating."                                                                                                                                                                                                                
## [1240] "This reminds me of high-school.Being beaten for crimes your comrade committed #COVID19 #comrade #thesweetsleepafterabeating #GoCoronaCoronaGo #kenya #Somalia #pain #probox #QuarantineActivities #shutdown #SocialDistanacing https://t.co/d3NT0xUaG3"                                                                                                                                                                                                                                                       
## [1241] "3/4 \"painter's mask\": https://t.co/so8wAwzKOl ) because, when adjusted correctly, the mask creates an airtight seal around your mouth and nose. I'm so disgusted that the CDC doesn't tell people this, BUT DON'T TRUST ME, PLEASE...\n#Corvid19 #Coronavirus"                                                                                                                                                                                                                                              
## [1242] "The National Marine Manufacturers Association and the Marine Retailers Association of the Americas recently joined forces in response to the ever-evolving COVID-19 pandemic sweeping across the globe. @therealnmma @MarineRetailers \n\nhttps://t.co/T8R8lNAEQy"                                                                                                                                                                                                                                            
## [1243] "<U+0001F1E9><U+0001F1EA>In Germany, just 0.6% of their confirmed #coronavirus cases have so far ended up being fatal - the lowest figure amongst any of the most affected countries for #COVID19 @skynews\n#Exposome #Epitwitter  <U+2066>@me4_so<U+2069> https://t.co/GljBwP8JGH"                                                                                                                                                                                                                            
## [1244] "WHO may launch MyHealth app to help curb spread of COVID-19 misinformation https://t.co/cTDZx9LZkx\n\n#travelingculturati #advantageinternational #travelhealth #twb"                                                                                                                                                                                                                                                                                                                                         
## [1245] "Hey guys, check out this short piece my team and I did on the #coronavirus epidemic. Watch and share and spread the word. #stayhealty                                  https://t.co/eAgsfCVqAP"                                                                                                                                                                                                                                                                                                               
## [1246] "In light of #COVID19, we want to highlight and thank those on the front lines making sure that we still get the resources we need. This #thankyouthursday goes to the amazing #TruckDrivers who are helping us get through this crisis and keeping our economy moving! #logisticsSC https://t.co/K5hfVkN3pr"                                                                                                                                                                                                  
## [1247] "@BeaudoinCharlie @JeffCrowder16 He has no idea what he's doing.\n\n#TrumpMadness\n#WorstPresidentInHistory\n#ThursdayThoughts\n#ThursdayMood\n#CoronaOutbreak\n#COVID<U+30FC>19\n#DumpTrump2020\n#Coronapocolypse\n#TrumpLiedPeopleDied\n#TrumpPandemic\n#CoronaCrisis\n#COVIDIOT\n#TrumpVirus https://t.co/jSXqobXuNh"                                                                                                                                                                                       
## [1248] "@kiranshaw One Third of India's COVID 19 cases are now in just two states - Kerala and Maharashtra. Looks like each day there is a contest as to which state has the highest cases. Sad scene.\n15th Jan to 23 March 15 lakhs traveller has returned. GOI tracked down this traveller n quarantine"                                                                                                                                                                                                           
## [1249] "The COVID-19 pandemic is a global problem and we’re offering help on the ground everywhere, drawing on our extensive presence and experience in 187 countries. Measures are in place to ensure employees are healthy, safe and... #NestleCares #WeAreNestle https://t.co/Pd4Dgl4fji"                                                                                                                                                                                                                         
## [1250] "@MattHancock When we were clapping at 8pm my 16y old son ( who’s sad he had his GCSE’s taken away from him) said to me “Mum that’s why I want to work for @NHSuk @NHSMillion and become the best doctor I can be! #inspired #clapforNHS #COVID2019 #positivity"                                                                                                                                                                                                                                           
## [1251] "@drvox See how the @TheLocalItaly coverage compares against other news outlets on Ground News #COVID19 #coronavirus #Pandemic #Rome #Europe https://t.co/d6MTp2iacT"                                                                                                                                                                                                                                                                                                                                          
## [1252] "The #coronavirus bioweapon is an economic weapon that sure looks like it will bring mark of the beast. #COVID19 https://t.co/yF1OVQQmXE"                                                                                                                                                                                                                                                                                                                                                                      
## [1253] "The above video of Bill Gates, done in 2005, is beyond shocking. Possibly to use any future  #COVID2019 vaccine to remove the \"GID GENE\"\nfrom Muslims. You can clearly see they are discussing\n\"RELUGIOUS BRAIN\" &amp;\n\"NON RELIGIOUS BRAIN\" &amp;\n\"God gene\"\nas they mockingly call it. https://t.co/COgyqLCWLP"                                                                                                                                                                                
## [1254] "Creating a narrative where celebs have gotten tested and test positive but showing no symptoms. Telling us to stay inside. How can you have a virus but show no symptoms at all? It doesn't make sense. Why do \"they\" want us to stay inside so bad? \n#coronu #Covid19 #test https://t.co/YRjo5Tl7i7"                                                                                                                                                                                                      
## [1255] "@davidfrum @SPIEGEL_English Couldn't settle on, oh, I don't know. . .\n\nCOVID-19\n\nCO - Corona\nVI - virus\nD - disease\n19 - 2019"                                                                                                                                                                                                                                                                                                                                                                         
## [1256] "<U+0001F58B> Support Katherine by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r\n\n<U+0001F4E8> Last delivered to @rondesantisfl, Representative Fischer and Senator Bean  #sayfie #flapol #COVID19 https://t.co/xKgAx8vsIV"                                                                                                                                                                                                                       
## [1257] "Stay informed SF! Subscribe to this Twitter list from @SF_emergency for the latest COVID-19  info.\nhttps://t.co/dGE903s0vn"                                                                                                                                                                                                                                                                                                                                                                                  
## [1258] "Dr. Brix says that models showing 40-80% of the population being infected with #CoronaVirus are not credible and not supported by US data.\n\nAdditionally, the US has worked with the UK to revise their models from half a million deaths down to only 20,000 deaths based on US data."                                                                                                                                                                                                                     
## [1259] "@kendallybrown This would be bad enough if it was a drug that actually worked against covid-19.  As it is . . . I don't even have words.  Sending love to anyone affected by this nonsense."                                                                                                                                                                                                                                                                                                                  
## [1260] "Five new cases of #COVID19 have been reported in Nigeria: 3 in FCT &amp; 2 in Oyo State\n\nAs at 08:00 pm 27th March there are 70  cases of  confirmed #COVID19 reported Nigeria. 3 have been discharged with 1 death. https://t.co/9z58eIuWOE"                                                                                                                                                                                                                                                               
## [1261] "The number of deaths have increased since yesterday and so have the number of #coronavirus cases.\nPlease stay at home as much as possible.\n#InThisTogether \n#StayHomeOhio https://t.co/zqVwP2cZ0x"                                                                                                                                                                                                                                                                                                         
## [1262] "How’s your quarantine going?  #covid_19 #quarantine #corona #coronavirus #dogquarantine #doglife #dog #mydogisatoddlerapparently #sendhelp #bostonterrier #bostonterrierlove #gettingmyhairdid #puppygram #puppylove #stayhome #stayhealthy #staystrong #junoyouloveme https://t.co/Kdo9EIZhh3"                                                                                                                                                                                                              
## [1263] "Government House Leader says the bill says COVID-19 is being designated a communicable disease to protect employees from losing their jobs and protects jobs."                                                                                                                                                                                                                                                                                                                                                
## [1264] "Experts skeptical of study connecting blood type to COVID-19 risk https://t.co/LeNKTNB12W https://t.co/VP5ZiwF5vj"                                                                                                                                                                                                                                                                                                                                                                                            
## [1265] "Here are some further details. https://t.co/UYAJ73KUpC"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1266] "In #Patagonia we sale 620 hectare land! 2 rivers and native forest https://t.co/pTNcNDTC0w Price off $500,000 #USD \n\n#RealEstate #realestateagent #realestateinvesting #traveling #travelphotography #USA #China #CoronaCrisis #Covid_19 #property #PropertyInvestment #PropertyForSale https://t.co/LFRpriSEbu"                                                                                                                                                                                            
## [1267] "A new FDA-authorized COVID-19 test doesn’t need a lab and can produce results in just 5 minutes https://t.co/urXsbvTG0r via @techmedy #techmedy https://t.co/OtjotdZij1"                                                                                                                                                                                                                                                                                                                                     
## [1268] "The United States has more cases of COVID-19 then any other country. How did this happen?!"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1269] "Woman who died of COVID-19 refused to go to hospital, worried about bills, her son says https://t.co/QeQUWofqnc via @PittsburghPG"                                                                                                                                                                                                                                                                                                                                                                            
## [1270] "StedPic is still here to meet all your real estate needs, order our services online via https://t.co/nn9EhqoTje.\n#stayhome\n#staysafe\n#COVID19 https://t.co/Tt89dU22tm"                                                                                                                                                                                                                                                                                                                                     
## [1271] "So Trump administration withholding medical supply aid to states that the governors he doesn't like, wow. \n\nWhile in other countries, politics takes a back seat to everything that's happening in the world right now. #COVID19"                                                                                                                                                                                                                                                                           
## [1272] "The three golden rules of #COVID19:\n1. ISOLATE 2. ISOLATE 3. ISOLATE"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1273] "Eat the rich https://t.co/CT14qjAi0b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1274] "The 5 most common mistakes SMEs make in drafting purchase and sales contracts + solutions for SMEs during the #COVID19 crisis https://t.co/IDcGU3x5Rc #globalbiz #contracts #suppliers https://t.co/PSKwEhMPjL"                                                                                                                                                                                                                                                                                               
## [1275] "@hari_chauhanji Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                            
## [1276] "@SurakCondemned @nowthisnews We don’t know if he had covid-19 so he could’ve infected many ppl possibly killing some. Over reactions are necessary for these kinds of actions to prevent other idiots doing the same"                                                                                                                                                                                                                                                                                       
## [1277] "As the world numbers rise for COVID-19, I’m starting to raise an eyebrow at China’s figures. Did They have Diane Abbott counting ? #COVID<U+30FC>19 https://t.co/lYmzcI5oSK"                                                                                                                                                                                                                                                                                                                                
## [1278] "Yup! We’re number 1. #covid19 #medtwitter #phychat #coronavirus #publichealth https://t.co/r0Cy3ZR7iX https://t.co/sp9rgxNkHT"                                                                                                                                                                                                                                                                                                                                                                               
## [1279] "<U+0001F6A8> Join me in demanding Supreme Court justices delay their ruling on #DACA amidst the #COVID19 pandemic. Immigrant youth should NOT be put in danger of deportation and job loss. Sign here <U+0001F449> https://t.co/Mnn1MpNByB"                                                                                                                                                                                                                                                                   
## [1280] "Ok, this COVID-19 is hitting a little close to home now. This crap can stop anytime now"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1281] "New #COVID19 Podcast! Tune in via ZOOM or Facebook Live (Eyetube) at 3:00 PM ET tomorrow (March 27) to watch hosts @blakewilly and @cataractMD talk surviving the storm &amp; supporting staff with Drs. Robert Weinstock and Elizabeth Yeu. Zoom: https://t.co/x0YPQyV1mq; password: 19087 https://t.co/OxIIbThoR1"                                                                                                                                                                                          
## [1282] "The United States.\nThe so called most powerful Nation in the world.\nHas surpassed China as the country with the most COVID-19 cases in the world.\nPoor planning is to blame for this smh @realDonaldTrump"                                                                                                                                                                                                                                                                                                 
## [1283] "If you are immunocompromised and are #Sheilding then feel free to use this wee poster #COVID19 - happy to amend wording for you if you need it, just give me a shout. https://t.co/3H0yAuJDjz"                                                                                                                                                                                                                                                                                                                
## [1284] "This is an incredibly petty response from the UK government. \n\nPeople struggling to breathe don’t give a damn if the ventilator has a British or EU flag on it. \n\n#Covid19 #Coronavirus \n\nhttps://t.co/0l1VUTxwcg"                                                                                                                                                                                                                                                                                     
## [1285] "In light of the #COVID19 pandemic, we believe the CRA rulemaking process needs to be put on hold. To our friends at @USOCC &amp; @FDIC -- we need a rule-making suspension until the crisis is over. #TreasureCRA"                                                                                                                                                                                                                                                                                            
## [1286] "@amyklobuchar Senator Klobuchar, in Milwaukee WI  COVID 19 is hitting the poorest black community the highest.  In my mind... if this pandemic is a \"war\" then refusing to release all 12,000 Department of Defense ventilators is indirectly forcing doctors to let patients die.  Almost criminal..."                                                                                                                                                                                                     
## [1287] "<U+0001F44F><U+0001F44F><U+0001F44F><U+0001F44F><U+0001F44F>\nAt 8pm the whole nation took part in #clapforourcarers to thank our amazing #NHS workers. \n#COVID2019 #StayHomeSaveLives https://t.co/5APat5J6Ov"                                                                                                                                                                                                                                                                                              
## [1288] "Daily coronavirus updates: 21 deaths involving confirmed COVID-19 in Connecticut, as Gov. Ned Lamont urges travelers from NY to self-quarantine https://t.co/5AVT7LtXgk"                                                                                                                                                                                                                                                                                                                                      
## [1289] "The Houston Health Department announced two new positive coronavirus disease 2019 (COVID-19) cases on Thursday, bringing the city's total to 68. https://t.co/tLuLYiibrV"                                                                                                                                                                                                                                                                                                                                     
## [1290] "SA Covid-19 cases rise to 1,170 https://t.co/7C5BBZNbg2"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1291] "Released on a Friday afternoon amongst the #COVID19 crisis . \n\nBesides enabling the spread of a virus with non- existent border and bio security, the NSW Govt is also clearly committing #ecocide https://t.co/SYoUXEjxtq"                                                                                                                                                                                                                                                                                 
## [1292] "This #COVID2019 outbreak is revealing the how deeply selfish we #Americans have become in the name of \"freedom\".\n\nYou're not really free if your neighbor is a self-centered prick.\n\nWe wanna go to beaches cause we can't see past our own Hyper-Individualism.\n\n#Facts"                                                                                                                                                                                                                             
## [1293] "In the midst of a pandemic, 1 in 5 patients admitted to a hospital with #COVID19 will be at risk for a surprise bill. This needs to stop. @soleil_shah and I discuss why #COVID could trigger a surprise billing crisis and how to stop it in @undarkmag https://t.co/oblxhEcP2x https://t.co/jYWVBy6Fb3"                                                                                                                                                                                                     
## [1294] "Don't let anyone else speak for the Federal Government on COVID-19 other than Dr. Fauci. https://t.co/vSuq206Agq"                                                                                                                                                                                                                                                                                                                                                                                             
## [1295] "WTF is wrong with people?!? Keep her in forced quarantine #COVIDIDIOT #COVID2019 https://t.co/XUJzdlCTfZ"                                                                                                                                                                                                                                                                                                                                                                                                     
## [1296] ".Why is every other Australian sport suspended except Horse racing? how delusional are those people in power to make those decisions? @RacingAust @Racing @RacingInsider @racing_nsw @racing_qld @TheRacesSA @theracesWA @TasracingAus Health over $$$$ #covid19 #auspol"                                                                                                                                                                                                                                     
## [1297] "Our best defense against Covid-19? Science https://t.co/dwZQU6W5vO @AmerMedical @statnews"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1298] "COVID-19 is not spreading any faster than it was previously. The reason it looks like it is because we have more tests now. Don’t let the media fool you."                                                                                                                                                                                                                                                                                                                                                   
## [1299] "@murpharoo He’s more interested in the economics of it, hence not closing shopping centres, he wants people to go shopping in April when this money starts to flow...stands out like dogs balls, we’re not stupid #coronavirus"                                                                                                                                                                                                                                                                             
## [1300] "https://t.co/BV7AQw1dRG Oh, yeah! A claim so outlandish that many people would actually believe it.\n\n#WuhanVirus #ChineseVirus #CoronaVillains #CoronavirusOubreak #COVID19 #COVID19US"                                                                                                                                                                                                                                                                                                                     
## [1301] "In response to COVID-19, we are making a special offer to financial institutions to give them the ability to accept small business loan applications online to better serve small businesses who need loans now more than ever. Special offer through 05/31/2020 https://t.co/P0z3CP0iz8 https://t.co/qstho3i4Cv"                                                                                                                                                                                             
## [1302] "Google is committing $800M+ in new #COVID19 response efforts, incl $340M in ad credits for SMBs worldwide, $250M in ad grants for WHO\n &amp; 100+ govt orgs globally, a $200M investment fund for NGOs &amp; banks to help small businesses access capital, and more <U+0001F92F>\nhttps://t.co/UNfjNNr701"                                                                                                                                                                                                  
## [1303] "How to distinguish COVID-19 symptoms from allergies and the common cold  https://t.co/OlDTsip6UA"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1304] "Ingram Micro Helps U.S. and Canadian Channel Partners Solve for Expected Cash Crunch Amid COVID-19 https://t.co/QvsWtZQOvk"                                                                                                                                                                                                                                                                                                                                                                                   
## [1305] "I’ll be talking about the market for us real estate investors in a video soon. #COVID19 #RealEstate #StayUpdated"                                                                                                                                                                                                                                                                                                                                                                                            
## [1306] "If Y’all have learned anything from #COVID19 it should be You Can’t Just Eat ANYTHING.. <U+0001F987>\n\n*Stop eating Ass.."                                                                                                                                                                                                                                                                                                                                                                                 
## [1307] "Covid-19 presents people in the crosshairs of conflict with a terrifying new threat https://t.co/JXiF9eHDnr"                                                                                                                                                                                                                                                                                                                                                                                                  
## [1308] "@BashirAhmaad @MBuhari Oga! @MBuhari is covid 19 positive. Nigerians know the truth already. He who lives by propaganda will surely die by propaganda. What ever God has started, will surely come to end by his grace. 'The earth is cleansing itself'"                                                                                                                                                                                                                                                      
## [1309] "\"Coronavirus live updates: US cases top 100,000, California bans evictions for those impacted by COVID-19\" https://t.co/zQWb8jTdwV"                                                                                                                                                                                                                                                                                                                                                                         
## [1310] "Some people are volunteering their time and skills in fighting covid-19, some are on the frontlines risking their lives to serve others.\n\nOthers sit back and do nothing. They are even so happy that this quarantine happened because they get to have a sort of “extended vacation”."                                                                                                                                                                                                                   
## [1311] "GMB host Piers Morgan branded a 'total b*****d' by Kirstie Allsopp as Twitter row worsens\nhttps://t.co/gnduOAWyki https://t.co/xQiG12ksJw"                                                                                                                                                                                                                                                                                                                                                                   
## [1312] "\"Breaking News! Covid-19 has...\" https://t.co/Drrg1iFL5S"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1313] "Opinion: #StephenCurry's #coronavirus interview with Dr. Anthony Fauci is most significant move of his career. @CLupus63\nhttps://t.co/9pxniKIbgI"                                                                                                                                                                                                                                                                                                                                                            
## [1314] "Judge Bill Stoudt confirms a 4th case of COVID-19 in Gregg County. @KLTV7"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1315] "I HAVE A CRUSH ON A CUTE GIRL BUT CAN’T DO ANYTHING ABOUT IT BC IM NO LONGER ON CAMPUS BC OF COVID-19. IM GONNA CRY"                                                                                                                                                                                                                                                                                                                                                                                         
## [1316] "Like every other thing in the world, US wants to have it more than anyone  and we do. Congratulations countrymen for now becoming # 1 country in the world to have more infected people from COVID19. #coronavirus"                                                                                                                                                                                                                                                                                           
## [1317] "@RahulGandhi Only Congress Party is  actively engaged in politics during this hour of crisis.\n\nMost regional parties are fully with centre.. that speak a lot!!\n\nShame on you @RahulGandhi !!\n\n#COVID19 \n#CoronaLockdown"                                                                                                                                                                                                                                                                              
## [1318] "@skillsdevscot has issued new information in response the impacts of COVID-19 including contact info for Stirling businesses to access support and guidance. https://t.co/gk6t67QMI5"                                                                                                                                                                                                                                                                                                                         
## [1319] "What happens when extreme heat collides with a pandemic?<U+00A0>   https://t.co/KnTlurWa34"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1320] "End COVID-19 please so I can also end my quality education in USC."                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1321] "One of my favorite moments each morning #COVID2019 #WinningHabits https://t.co/4F2EC1GXS9"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1322] "The #coronavirus outbreak could result in serious setbacks to the fight against #ClimateChange <U+2013> which itself is a threat multiplier for some infectious diseases. We lay out challenges &amp; opportunities in a new feature on our blog: https://t.co/InZc0j46HI"                                                                                                                                                                                                                                    
## [1323] "Looks like it's gonna be a minute before I can rock a show again, gotta get this #covid_19 under control and get people healthy again first. Shout out to youralberta for taking the necessary steps to enforce… https://t.co/wLuoXuBORU"                                                                                                                                                                                                                                                                    
## [1324] "Donald Trump fulfilled a campaign promise. He said “America First”. Congrats @realDonaldTrump you succeeded. We are now first in #COVID2019. https://t.co/nSITgAErel"                                                                                                                                                                                                                                                                                                                                       
## [1325] "Hello there parents! Help your child understand the importance of hygiene during Covid-19 in a kid-friendly manner! We are here to help and support kids and parents!\n\nhttps://t.co/zk6cQCKEsP"                                                                                                                                                                                                                                                                                                             
## [1326] "#IndiaFightsCorona #Lockdown21 \n<U+0001F64F><U+0001F3FB>respect to all warriors in fight against #coronavirus https://t.co/ixsMqKthzv"                                                                                                                                                                                                                                                                                                                                                                       
## [1327] "@HalSparks @geoff9cow @Michael_WI @MaryKPH @Soxwriter @RobertH48756949 CTV News: 'No Canadian' trends after Donald Trump floats idea of U.S. troops at border during COVID-19 pandemic.\nhttps://t.co/6m4eG4gDq4\n\nvia @GoogleNews"                                                                                                                                                                                                                                                                          
## [1328] "@ianrobo1 @Tomfurness2 @kingofthecentre @david_clarke91 @PeterWestYorks Chatted to a friend I used to live near this aft,she's an ICU nurse at Fairfield Hospital, Bury our nearest hospital, as of yday they had 19 #COVID19 patients\nApparently from tomorrow England's figures will be counted 5pm to 5pm the next day, not sure when they'll be announced"                                                                                                                                               
## [1329] "Good one Robert Peston swearing during the questioning - ‘ah shit’ <U+0001F602> #COVID2019 https://t.co/ytBBfNa8iR"                                                                                                                                                                                                                                                                                                                                                                                         
## [1330] "@AdamRacusin Now I’m uncaring about people with COVID-19? Gimme a break. Maybe you could’ve done more in terms of requesting supporting info from either side, not just their word. Do journalist no longer look to support their stories? I remember why I don’t watch 10news. You can be better."                                                                                                                                                                                                        
## [1331] "I don't even tune in to the Farceur-In Chief Trump anymore; using #CoronaVirus #TrumpPressConference as a time to air his grievances. \n.\n\n @realdonaldtrump\n https://t.co/87RO4Oxxls"                                                                                                                                                                                                                                                                                                                     
## [1332] "A cat in Belgium has tested positive for the Covid-19 virus. Viruses find a way to cross over zoonotically to humans. Maybe best not to kiss you cats or dogs on the lips at the moment. \n\nhttps://t.co/e59oXVYo6L"                                                                                                                                                                                                                                                                                         
## [1333] "Something getting lost among all of this #COVID19 business is that Trump's EPA has decided it's \"temporarily\" no longer going to do its job, given businesses carte blanche to fuck up the environment. #resist https://t.co/8butPnemAG"                                                                                                                                                                                                                                                                    
## [1334] "America has such an insane, inhumane system \n\nhttps://t.co/lxZBcVhZvZ"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1335] "Federal government shutting down network of in-person Service Canada centres over COVID-19 concerns. @LFPress https://t.co/NpqfytmSl4 https://t.co/XCcVuNokJf"                                                                                                                                                                                                                                                                                                                                                
## [1336] "London woman dies of suspected #Covid19 after being told she was 'not priority' https://t.co/PhM9Q744vu"                                                                                                                                                                                                                                                                                                                                                                                                      
## [1337] "@JHSPH_CHS @V2019N @MSchochSpana 12 Weeks #lockdown #COVID2019 for the UK"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1338] "@jboyded @wendy_harmer I’m one of them. I have done a new Will and had it signed on Wednesday.  I’m super fit for my age but don’t take anything for granted. Descriptions of the horrific struggle to breathe that the #COVID19 victims can suffer have been very scary."                                                                                                                                                                                                                                 
## [1339] "Pastor dies from COVID-19 <U+2014> after claiming coronavirus was a ‘mark of the beast’ conspiracy - https://t.co/vlQg6A847o"                                                                                                                                                                                                                                                                                                                                                                               
## [1340] "“I want them to be appreciative” <U+2014> (in reference to media, governors and local governments) @realDonaldTrump \n\nreally?! We have a pandemic and he is all about how many accolades he can get?! Come. On. Let’s just work together and get help to all of these people. #COVID19"                                                                                                                                                                                                                  
## [1341] "#iphmk resource limit is reached #macedonian map of #coronavirus infested statistics #македони<U+0458>а https://t.co/H8JrXB6dBJ"                                                                                                                                                                                                                                                                                                                                                                     
## [1342] "This collection of trustworthy videos, links and sources of information can help you navigate the flood of COVID-19 information. https://t.co/tH3Y0Mtvl0"                                                                                                                                                                                                                                                                                                                                                     
## [1343] "@pablo_honey1 @realDonaldTrump @generalmotors @Ford Huh? Covid-19 is under control in the USA. He told us so..."                                                                                                                                                                                                                                                                                                                                                                                              
## [1344] "Going out on the streets and getting the clap was an entirely different thing back in the day #clapforourcarers #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                   
## [1345] "I'm losing it\n#Quarantine \n#COVID2019 \n#coronavirus https://t.co/vD0ilMUap4"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1346] "Just my “OPEN OPINION” #freehealthcare #coronavirus #StimulusPlan #StimulusPackage you can agree or not! #CoronaLockdown https://t.co/Jd0S2GxgmO"                                                                                                                                                                                                                                                                                                                                                           
## [1347] "Shishir Joshi at @projectmumbai1 is running a campaign to support doctors and nurses beat Covid 19. You can donate here: https://t.co/qUJLc4ynHj (5/n)"                                                                                                                                                                                                                                                                                                                                                       
## [1348] "Some positive #COVID2019 news!\n\nhttps://t.co/14yuJK6OL8"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1349] "I just published how the coronavirus impacts me on Weebly. https://t.co/8rVf80FJEx via @weebly"                                                                                                                                                                                                                                                                                                                                                                                                               
## [1350] "Coronavirus pandemic | 400 million Indians to be infected by July, report suggests start of community transmission\nContrary to the government's stance, the report noted that community transmission (Stage-3) of COVID-19 in India most likelyin early March.\nhttps://t.co/5ZuB0HvmHf"                                                                                                                                                                                                                     
## [1351] "Tennessee doctors call on Governor Lee to take action against COVID-19-Their stories on the front lines and what they recommend we do on FOX 17 News @ 9-WATCH: https://t.co/wHWuG95mFT https://t.co/l3URYliFn8"                                                                                                                                                                                                                                                                                              
## [1352] "Kingdom Animalia during the times of #COVID-19 in #Chennai on Thursday\n\n1. Kaliamman Koil Street, off Arcot Road\n2. Near Koyambedu market\n3 &amp; 4. Kamarajar Salai\n\nPhotos: K. Pichumani and K.V. Srinivasan for @the_hindu @THChennai https://t.co/dnYhD9vwax"                                                                                                                                                                                                                                       
## [1353] "@MehreenFaruqi more than %70 of people killed by Covid-19 are men, but ya it's about us."                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1354] "At the Javits Center in New York City giving a briefing on #Coronavirus. WATCH: https://t.co/7nUNdNJo7K https://t.co/StU9iZbsXV"                                                                                                                                                                                                                                                                                                                                                                              
## [1355] "18 people have now died of COVID-19 in Quebec, as confirmed cases jump above 2,000 https://t.co/VwmbQxuIKQ https://t.co/51tlhPzuiW"                                                                                                                                                                                                                                                                                                                                                                           
## [1356] "It is easy to hate and it is difficult to love. This is how the whole scheme of thing works. All good thing are difficult to achieve; and bad things are very easy to get----CONFUCIUS #coronavirus #CoronaLockdown"                                                                                                                                                                                                                                                                                          
## [1357] "@ColoradoDavidSu Just trying to make money out of the crisis, I believe #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1358] "UPDATE - some less common symptoms of Covid-19 are now being reported.  #TheDailyFeed #StayConnected\nhttps://t.co/56neFrxAGm"                                                                                                                                                                                                                                                                                                                                                                                
## [1359] "@LeahFHardy Of course. But at this stage, decisions concerning covid-19 are much bigger than individual politicians/parties, or individual nations. Every leader is having to push political ideology and cultural norms aside and do whatever the hell the experts think might work."                                                                                                                                                                                                                        
## [1360] "Israel Carrera adopted a healthy lifestyle while living in Miami Beach. He thought he had a cold. He was hospitalized for about nine days before he died of COVID-19 on March 26. He was 40.\nhttps://t.co/jE6PZADcKJ https://t.co/LnGBDWAVg6"                                                                                                                                                                                                                                                                
## [1361] "#SocialDistanacing #coronavirus good idea https://t.co/POBFJZ2RBF"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1362] "Trop top pour les copains #agriculteurs @Fragritwittos ! 1<U+FE0F><U+20E3>0<U+FE0F><U+20E3>0<U+FE0F><U+20E3>0<U+FE0F><U+20E3> mercis @AnaisLochon <U+0001F44D>\n#FrAgTw #agriloving #ceuxquifontlelait #ceuxquifontlaviande #ceuxquifontlesfruits #ceuxquifontleslegumes #ceuxquifontlescereales #ceuxquifontlevin #confinement #COVID2019 @InstitutElevage https://t.co/zaUgRh0zkN"                                                                                                                          
## [1363] "We shouldn’t be “balancing” the economy v health now. @ama_media &amp; Panel of Experts aren’t, CMO is. Health comes first, and will save the economy more in the long run #COVID19au #COVID<U+30FC>19 #COVID19Aus #Covid_19 #auspol https://t.co/aRL3gBPNwk"                                                                                                                                                                                                                                             
## [1364] "@JoshiPralhad Respected sir\nJSS K H KABBUR INSTITUTE OF ENGINEERING, VIDYAGIRI  DHARWAD... NSS UNIT...COVID 19 awerness video\nFacebook link\nhttps://t.co/4ZWioPRES2\nYoutube link \n https://t.co/3GI7kgqjKJ"                                                                                                                                                                                                                                                                                              
## [1365] "Thank the Lord for the Medical Team that @POTUS and @VP  have put together.  Today's Presidential Briefing was bringing hope and putting numbers out there concerning the COVID 19.  Keep up the good work."                                                                                                                                                                                                                                                                                                  
## [1366] "Money set aside for COVID 19  fix is for for scum bags of PPBM and UMNO to also steal from in all the creative accounting / confusion @HarithIskander  @joannekam @liewcf @NazrilIdrus  @paultantk \n@AIOMAR @AishahSinclair @afdlinshauki @alexyoong \n @flizzow @ChelsiaNg Cash is king https://t.co/mN75b6O72T"                                                                                                                                                                                            
## [1367] "A9: Our friends at @VoicesOfYouth recently highlighted \"COVID-19 Photos by Bored Teens,” a Seattle-based account that helps young people feel a little less alone during these often scary times. Take a look: https://t.co/i6faizq2h8 #Give4CovidRelief https://t.co/RMFOAlvMp5"                                                                                                                                                                                                                           
## [1368] "bts tour army comeback brazil gay NSFW 18+ namjoon blackpink loona army gay lesbian hot kinky twink coronavirus charli dixie quarantine covid-19 donald trump kim kardashian taylor swift kanye west #AnimalCrossing // now i have your attention goodnight<U+0001F495> https://t.co/qHZpfMoD5Z"                                                                                                                                                                                                              
## [1369] "@ABaskerville10 @NBCPhiladelphia My son is working there to get it up and running for covid-19 patients . Thank you guys for working round the clock"                                                                                                                                                                                                                                                                                                                                                         
## [1370] "Covid-19 is nature's wake-up call to complacent civilisation https://t.co/pKXtH3IbBu"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1371] "@YOO_AD_ Lml I can’t imagine, I know you love the outside. You Should be taking pics in this pandemic #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                          
## [1372] "Stress free from COVID-19 https://t.co/PuTBWg3ja7"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1373] "If 21 of the 46 tested for #Coronavirus so far are positive, what is the likely infection rate for the 3,500 other passengers &amp; crew confined aboard that same ship? https://t.co/Cg7QLtH3Qz 02\n#FBR"                                                                                                                                                                                                                                                                                                    
## [1374] "@YRP What kind of selfish human being does that?!  It could be a missing child or, as it was today, an important Covid-19 warning."                                                                                                                                                                                                                                                                                                                                                                           
## [1375] "Just to be clear, it is not a completely outlandish possibility that the number of deaths in America from #COVID2019 could surpass American wartime casualties for all American wars... ever.... combined.\n\nHave a cocktail!\n\n@PodSaveAmerica"                                                                                                                                                                                                                                                            
## [1376] "Serious question.......how many toilet rolls are all your hoarders through after 10 days? I think we're only through 1 and a quarter and that includes curry night and a @Dominos_UK? <U+0001F937> <U+0001F4A9>\n\n#Coronavirus #COVIDIDIOT"                                                                                                                                                                                                                                                                  
## [1377] "Work starts on Birmingham Airport Covid-19 mortuary for up to 12,000 bodies https://t.co/vkJNsTWsAf"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1378] "@LoriShemekSanitizing these seven should help cordon  #coronavirus.\nPsalm 26:6\nI will WASH MY HANDS mine hands in innocency: so will I compass thine altar, O Lord:"                                                                                                                                                                                                                                                                                                                                        
## [1379] "The Senate updated the CARES Act to provide COVID-19 relief, including stimulus funds for individuals, expanded unemployment insurance, small business loans and more. Get the details on our blog: https://t.co/fKBeOD3o5A https://t.co/jtikhH7zg2"                                                                                                                                                                                                                                                          
## [1380] "So today it was confirmed I am being furloughed\n\n#CoronaLockdown #COVID19 #furloughleave"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1381] "@hatchdw @DRVCommonality @projectnoah Lol- this is my new normal!!! We now have a nice “collection” of roly poly bugs and have created “homes” for them filled with dirt, leaves and fruit! #COVID19 #Homeschooling"                                                                                                                                                                                                                                                                                      
## [1382] "\"I will never go anywhere that I wouldn't go myself\". \"It is your duty to do what you can when u can\" --Gov. Cuomo 2.27.20 Press conference. Now that is real leadership! NY is blessed to have him at the helm. #coronavirus #GovCuomo"                                                                                                                                                                                                                                                                  
## [1383] "#BREAKING \n\n#Italy #coronavirus WORST day: Deaths rate highest since start of #outbreak\n\nhttps://t.co/Tg5w5p44KG"                                                                                                                                                                                                                                                                                                                                                                                         
## [1384] "Death toll half way through Friday is REALLY high!\n\nIf this number doubles by the end of the day then we're not in good shape.\n\n@realDonaldTrump must isolate close to a million asymptomatic Americans to prevent their transmission of #COVID19. Every week this number doubles!"                                                                                                                                                                                                                       
## [1385] "#COVID19-<U+0001F1FA><U+0001F1F8>USA\n\nBREAKING: 11,533 new cases of coronavirus and 182 new deaths reported so far.\n\n<U+0001F535> Total Cases: 96,968\n<U+0001F535> <U+0001F195> Cases: 11,533\n\n<U+0001F534> Total Deaths: 1,477\n<U+0001F534> <U+0001F195> Deaths: 182\n\n<U+26AA> Recoveries: 2,453\n\n#CoronavirusPandemic"                                                                                                                                                                          
## [1386] "Thank you @LSSFoodPantries for continuing your work of filling the needs in our community during the #COVID19  crisis. #LiveUnited https://t.co/PrgAZDAbyi"                                                                                                                                                                                                                                                                                                                                                   
## [1387] "We need the cure ASAP!!!\n<U+0001F9A0><U+0001F926><U+0001F3FE><U+200D>♂<U+FE0F> #RicoRants #like #share #comedy #funny #coronavirus #quarantine #black #Chicago #Woodside #FloodTheMarket https://t.co/oN81tkCccg"                                                                                                                                                                                                                                                                                           
## [1388] "A slight uptick in homeschool shootings<U+2014>perpetrated by teachers.\n#stayhome #covid19 #CovidHumor \n#covidhomeschooling"                                                                                                                                                                                                                                                                                                                                                                                
## [1389] "<U+2705> Covid-19 or not, Western New York has serious health issues - Buffalo News <U+0001F44C> <U+0001F449> https://t.co/ySwmzUdgfU <U+0001F6A9> #Medical #GroupZirigoza"                                                                                                                                                                                                                                                                                                                                   
## [1390] "What are governments doing? The indomitable @Ugentilini has been tracking social protection responses to COVID-19 around the world. Most measures include cash transfers, but other options include subsidized social security and unemployment. https://t.co/e0vbe5Wom5"                                                                                                                                                                                                                                     
## [1391] "What the world is experiencing in these 4 months isn't less than what Yemenis hv been experiencing in 5 years!\nAt least anyone can protect himself  from #Coronavirus, But Yemenis can't protect themselves from the US-F15 jets bombs! #5YearsOfWarOnYemen https://t.co/YVhC6iGdOQ"                                                                                                                                                                                                                         
## [1392] "Insanity \n\nMississippi Churches, Stores Reopen As Governor Overrides Mayors’ COVID-19 Orders https://t.co/hmoQNz1zrL"                                                                                                                                                                                                                                                                                                                                                                                      
## [1393] "HitachiVantaraWe are grateful for the collaboration and support of our customers, employees and partners every day. See what actions Hitachi Vantara is taking to support the continued well-being and safety of our community: https://t.co/9bFOeY7tOY https://t.co/UwX0087tJm"                                                                                                                                                                                                                              
## [1394] "Now, the epidemiologist predicts, hospitals will be just fine taking on COVID-19 patients and estimates 20,000<U+00A0>or far fewer<U+00A0>people will die from the virus itself or from its agitation of other ailments, as reported by New Scientist<U+00A0>Wednesday. https://t.co/I8eUhCLJ7P https://t.co/hKuzMgbpRz"                                                                                                                                                                                      
## [1395] "#BorisJohnson Come on chaps, let’s have a #clapforboris tonight! #FrontLineHeroes #COVID19 #nhs #unison #rcn #unite"                                                                                                                                                                                                                                                                                                                                                                                         
## [1396] "Practice #SocialDistancing people... #CoronaVirus https://t.co/CJphkVD1lq"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1397] "Something of a milestone.\n\nNumbers are changing at an incredible rate.\n\n#coronavirus https://t.co/2la4vFqMPY"                                                                                                                                                                                                                                                                                                                                                                                             
## [1398] "I can’t believe how far this stupid corona has come to what a crazy virus hopefully it ends soon but not soon enough. #COVID2019 #COVID19 #CoronavirusOubreak"                                                                                                                                                                                                                                                                                                                                               
## [1399] "DUMP TRUMP IN 2020!\nDEMAND CRIMINAL 45 BE ARRESTED FOR COVID-19 MANSLAUGHTER!!\nMAKE AMERICA AMERICA AGAIN!!! https://t.co/dviZNLB43y"                                                                                                                                                                                                                                                                                                                                                                       
## [1400] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/aCDTGkwX63 via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                      
## [1401] "Bell Canada asked to set aside phone charges for Ontario prisoners during COVID-19 pandemic https://t.co/oUUiFEzMlM"                                                                                                                                                                                                                                                                                                                                                                                          
## [1402] "UK Government: PROPER Support for Owners/Directors of their own Ltd Companies from UK Government COVID-19 - Sign the Petition! https://t.co/5VT9s18tBJ via @UKChange"                                                                                                                                                                                                                                                                                                                                         
## [1403] "Latest #COVID19Colorado updates: \n\n<U+27A1><U+FE0F> Sen. Bennet to hold telephone town hall tomorrow at noon. \n<U+27A1><U+FE0F> Call 211, not 911, for #coronavirus resources\n<U+27A1><U+FE0F> U.S. surpasses China in number of positive cases for COVID-19.\n\nhttps://t.co/moPUUHGg0Q"                                                                                                                                                                                                                 
## [1404] "Cybersecurity vigilance can't slip during this tough time.  Oil &amp; gas companies are being hit hard - a crude price crash, supply glut, and workforce impacts of COVID-19.  Unfortunately, entities want to take advantage... https://t.co/UjvmZloFAQ"                                                                                                                                                                                                                                                     
## [1405] "The last time I remember I was keeping up with the figures between China and America it was about the number of gold and silver medals they acquired in Olympics and now it’s the number of cases of #COVID2019 <U+0001F622>"                                                                                                                                                                                                                                                                                
## [1406] "Hey @Twitter @TwitterSupport @jack: Can we get a “false information about #coronavirus” category when we report a tweet? Currently I have to find something and it’s usually not a match. I have a lot of tweets to report. Thanks."                                                                                                                                                                                                                                                                       
## [1407] "Tracy Lawrence - Paint Me A Birmingham https://t.co/mtmBUFRd0u via @YouTube Sing along with @tracy_lawrence and pretend that you are there at a live #countrymusic concert. Remember that there is a life after #coronavirus."                                                                                                                                                                                                                                                                                
## [1408] "The UK govt @BorisJohnson got the #coronavirus testing dangerously wrong. Free read from @FT https://t.co/LMddX3VmUa"                                                                                                                                                                                                                                                                                                                                                                                         
## [1409] "today i told my mom that my throat hurts and i asked for obh kan, and she was looking at me as if im infected by the covid-19 and my brother <U+0001F440> <U+0001F629><U+0001F629>"                                                                                                                                                                                                                                                                                                                           
## [1410] "It’s #LemmingsDay at the @NYSE folks!\n\nHighly intelligent lemmings have once again locked arms &amp; are running off a cliff together. \n\nThis time herd was scared by US having most cases of #CoronaVirus (because we’re actually testing &amp; not lying about results, nimrods) #StockMarket"                                                                                                                                                                                                        
## [1411] "Data visualizations show internet usage in inner cities idled by COVID-19 https://t.co/CHgn8MPoJp https://t.co/g6WdFgijLO"                                                                                                                                                                                                                                                                                                                                                                                    
## [1412] "BBC news just announced 115 new UK deaths in past 24 hours, first time it's gone over 100 #COVID2019 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                            
## [1413] "#COVID2019,\n#NH here we go. It's #official. Time to learn to be a cave dweller. #Kids staying home from #school until May 4 continuing #online learning. Thank you #Governor Sununu for being #proactive. We will #survive this. <U+0001F4AA><U+2764> https://t.co/8l61MBn7Fg"                                                                                                                                                                                                                               
## [1414] "China closes the door to all Foreign Nationals https://t.co/KRYmTsZqj5    #COVID2019   #China"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1415] "@RahulGandhi Italy records almost 1,000 #COVID19 related deaths, highest in a day: AFP news agency\nHey, @RahulGandhi Don't spread fear in public rather than to support the government."                                                                                                                                                                                                                                                                                                                     
## [1416] "Now on https://t.co/0J2UdYHyh5\n\nBREAKING: Davido’s fiancee, Chioma, tests positive for COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                           
## [1417] "Coronavirus Chicago: Lakefront, 606 trails, parks, beaches closed to public from Ardmore south amid stay-at-home order due to COVID-19 https://t.co/VAQHHVgLpX via @abc7chicago  How do you make a Chicagoan stay off beach?  Cases Covid-19 1875 in State of IL 16 deaths. https://t.co/TrwVrAbyZm"                                                                                                                                                                                                          
## [1418] "Good progress in #COVID19 coverage decisions but still very limited given the amount of actual testing done in the US. What happens when providers can’t test the patients because of strict criteria? https://t.co/CwdiDve9dT"                                                                                                                                                                                                                                                                              
## [1419] "You want context on how badly @realDonaldTrump has handled #COVID<U+30FC>19? The US now has more cases than China, which got the virus first and has almost five times our population."                                                                                                                                                                                                                                                                                                                       
## [1420] "Someone from my local Foodland just stopped by to drop off hand sanitizer. Said they were stopping at all the businesses that were open. Really cool. Shout out to @HaliFoodland for the kind gesture! #COVID19 #covid19Canada"                                                                                                                                                                                                                                                                               
## [1421] "Covid-19: Time for pastors and politicians to give back to society https://t.co/jBDqAX2w34 https://t.co/2LnUVR26fb"                                                                                                                                                                                                                                                                                                                                                                                           
## [1422] "#Geopolitical #Science has its #Empirical reasons that #Scientific #Reason does not understand.\n↓\n#Epidemic in #China: January (No #Treatment)\n+\n#Global #Inaction =0°= #Late #Reaction\n=\n#WHO declares on: March 11, 2020\n#Pandemic: #SARSCoV2 / #Coronavirus / #Covid19\n#CHAOS https://t.co/1f51PBIP4O"                                                                                                                                                                                           
## [1423] "#CoronaVirusUpdates: Mizoram has not reported any new case of novel coronavirus since the first case was detected on Wednesday\n\n@zoramthangaCM\n#Day4 #CoronaUpdate\n#COVID2019india\nhttps://t.co/yIKdX1gtWG"                                                                                                                                                                                                                                                                                              
## [1424] "Protect your mental well-being Carers <U+0001F496><U+0001F54A><U+FE0F> \nIf you know someone isolating with their vulnerable person, please get this info to them. \nCaring at home is mentally &amp; emotionally challenging already! Imagine how the current crisis ups that ante. \nhttps://t.co/9xYLyCs5M6"                                                                                                                                                                                               
## [1425] "Those who missed the live show..\n\nhttps://t.co/HQJnEsCX1s  \n\n#COVID2019 #coronavirus #Cancer https://t.co/yrTouvA7XL"                                                                                                                                                                                                                                                                                                                                                                                     
## [1426] "NEWS:  President Trump @realDonaldTrump Job Approval Rating Surges to Highest Point of Presidency https://t.co/H6xs5Lt9UX #Trump #News #ShareTheNews #CoronaVirus"                                                                                                                                                                                                                                                                                                                                            
## [1427] "@LeoVaradkar Can I travel 10 miles to pickup my daughter. Her mother is a healthcare worker. We are separated? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                      
## [1428] "Photo shows NY hospital staff using trash bags as protective gear https://t.co/PWz6d51MRq #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                       
## [1429] "@JCHannah77 @RemainingKind Heard reports for weeks that some hospitals have had to do it because of triage.....I believe that this is why they \"sheltered\" the most vulnerable....partly to keep numbers down. Also Covid 19 Act changes rules on reporting \"cause of death\". I know it is all horrible."                                                                                                                                                                                                 
## [1430] "EU Android search choice screen’s impact delayed due to COVID-19 https://t.co/xiI3WIInDo https://t.co/wo4NLaLGXc"                                                                                                                                                                                                                                                                                                                                                                                            
## [1431] "Amidst The gnashing of the teeth and sorrows of this pandemic  Covid 19 . Let's reflect on \"Heaven\" \nCause thats all we got and that's where Eternal life resides . This pandemic will  pass .Read Mark 13:31-36  @Ugaman01 @REALCARTHIE @FynShakirah\n<U+27A1><U+FE0F>\nhttps://t.co/wd5ljFd7Ju https://t.co/yFv5Xl5gKg"                                                                                                                                                                                  
## [1432] "Well, if #COVID19 isn’t personal yet for you, it will be. BigKid’s friend’s great-aunt succumbed to it. RIP"                                                                                                                                                                                                                                                                                                                                                                                               
## [1433] "Since the whole wolrd has been affected by the COVID-19,the GOOUNION brand of our RINA TECH group company can provide medical consumables (masks, forehead guns, etc.) which suppling to countries affected by the global epidemic. \nhttps://t.co/1owPQspg1P"                                                                                                                                                                                                                                                
## [1434] "Dr. Anthony Fauci says health officials are working to control the #Coronavirus contagion while it is on the brink of becoming a pandemic.  https://t.co/P8zo4BM7SL\n#VoteBlueNoMatterWho"                                                                                                                                                                                                                                                                                                                    
## [1435] "The # of domestic violence &amp; child abuse cases has risen exponentially since this quarantine started. Remember that this situation affects people in more ways than one. Please listen to what you're being told to do so we can hopefully get a hold on this virus.\n#COVID19"                                                                                                                                                                                                                           
## [1436] "We all must practice safe running, with 6 feet minimal distance, running solo, and giving maximum right-of-way when passing anyone. Stay safe -- and running (and at off-hours if possible). https://t.co/yZDO7HOS8S"                                                                                                                                                                                                                                                                                         
## [1437] "How long does the coronavirus live on different surfaces? Do face masks help? All of your #COVID-19 questions answered.\nhttps://t.co/rxm7LMiRUh"                                                                                                                                                                                                                                                                                                                                                             
## [1438] "https://t.co/5T6W96qUH8 I rarely agree with Trump. Today he did the right thing. He ordered him thrown out of #GOP! #Housefloor #senatefloor #cnn #msnbc #nyt #Wapo #COVID2019 #pandemia #wtop #senategop #senatedems #dems #texas #kentuckytogether #democrats <U+2066>@JoeBiden<U+2069> <U+2066>"                                                                                                                                                                                                           
## [1439] "People really need to be enlightened about this virus , it's clear that the only place where we #stayhome #staysafe is on social media finish! Tell your neighbors what you learn or know about #COVID19 ...spread the word !\n\n#CovidNGR"                                                                                                                                                                                                                                                                   
## [1440] "The need never stops.\n#GiveBlood\n#COVID2019\n#NHS https://t.co/oXghiPZPfN"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1441] "Can we please just have the medical experts on TV for the daily briefings? I just want to hear from folks that are experts on COVID-19."                                                                                                                                                                                                                                                                                                                                                                      
## [1442] "My bonus game won, thanks to mrjohnbet I really appreciate your kind gesture. Keep on subscribing @johnfixed01 for greater winning. #COVID19 #sydneytalker #ImamOfPeace #StayHome #PresidentCovikk #Quarantine https://t.co/6zatmXvgYm"                                                                                                                                                                                                                                                                       
## [1443] "Please y'all need to hit the streets with more sanitizers these local people hardly get access to it and educate them on how it's used charleyy these \"officers\" can afford it. Oh  #COVID2019Ghana #COVID2019 #StayAtHomeGh"                                                                                                                                                                                                                                                                               
## [1444] "@StupidJonathan I hope you are doing well amidst this pandemic. Mattress Mack and GF believe that the blessed must always help others. You can help me in providing supplies to our senior citizens. To know more, click: https://t.co/eGZP4y1mLS"                                                                                                                                                                                                                                                            
## [1445] "So all it took was non-Nigerian twitter to bring Buhari out of his cocoon of irresponsibility and start scrambling to get his media aides to send out tweets and give interviews regarding Covid-19? Essentially, look alive socially. Smh"                                                                                                                                                                                                                                                                   
## [1446] "If you think the system can't handle #COVID19. Let's take a look into our already broken mental health system in dealing with thousands of new patients with physical brain damage."                                                                                                                                                                                                                                                                                                                          
## [1447] "Built an (extremely!) simple dashboard of daily totals of #COVID19 in Allegheny County, using update archives from @PAHealth.\n\nInteractive version is here: https://t.co/SMZ9CGGDxO https://t.co/v24EwOSHRA"                                                                                                                                                                                                                                                                                                
## [1448] "The Los Angeles City Council just approved more paid sick leave for workers at companies with 500 or more employees nationally. This would not apply to people taking sick leave at companies that were temporarily closed due to COVID-19 related orders."                                                                                                                                                                                                                                                   
## [1449] "(7) What I'm saying here is, take ALL the necessary precautions you can and be smart about the #COVID19 and you should be safe enough! Everyone's different, that's true but still...take care of yourselves!"                                                                                                                                                                                                                                                                                                
## [1450] "The coronavirus (COVID-19) has pushed many small businesses to the brink. If you’re struggling, consider a new SBA loan launched specifically because of the outbreak.https://t.co/71JrjXFCIS https://t.co/ta1y3VPglm"                                                                                                                                                                                                                                                                                       
## [1451] "BREAKING: A veteran at Overton Brooks VA Medical Center in Shreveport has died of complications from COVID-19. https://t.co/gYwvqw19CD"                                                                                                                                                                                                                                                                                                                                                                       
## [1452] "Philabundance temporarily closes after employee reports COVID-19 contact | #Philly #Covid19 <U+2066> https://t.co/vNkCOHIJBR"                                                                                                                                                                                                                                                                                                                                                                                 
## [1453] "As eggs become more expensive due to “shortages”, govt party PPRP starts to sell eggs at lower-than market price at its HQ.\n\nDunno about you but it seems this govt party has a knack to find goods others can’t get their hands on. Masks, eggs... <U+0001F914> #COVID19 https://t.co/6DOH0xTKdN"                                                                                                                                                                                                       
## [1454] "@mryderqc I have already been given two letters. One to guarantee school children a place (15years too late) and the other to say I am allowed out and to travel.  I can see what's coming and they will try to restrict movement.  Try closing @GOVUK offices currently spreading #COVID19 first."                                                                                                                                                                                                           
## [1455] "Why? Just why? #SleepyJoe is senile who shouldn’t be running for President &amp; should run to a nursing home instead for goodness sake. At best he doesn’t know what day it is, at worse he’s slamming people for being “full of shit”. \n\nMy God....\n\n#Coronavirus #auspol https://t.co/PwicmQXvQm"                                                                                                                                                                                                 
## [1456] "Anyone else noticed the similarities between Caligula and Tump? #CoronaUpdate #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1457] "Support funds against #COVID19 \nTotal 15 Billion +."                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1458] "Apple announces COVID-19 screening app with CDC and White House https://t.co/SG38suAvd6"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1459] "#Bangladesh is in a race against the clock to stop the spread of #coronavirus in the #Rohingya refugee camps. Authorities should stop obstructing aid workers’ ability to provide emergency health services and coordinate essential preventive measures: @HRW https://t.co/PyJpXyzfhA https://t.co/XSHtGq6z9b"                                                                                                                                                                                              
## [1460] "NHS staff have been wearing far less (PPE) than World Health Organization (WHO) recommends when caring for Covid-19 patients. WHO’s advice recommends wearing a visor &amp; a respirator mask, whereas UK advice issued earlier this month recommended a standard surgical mask - Guardian"                                                                                                                                                                                                                  
## [1461] "#NewBluehand #Bluehand I just wrapped up tonight’s CNN town hall, where we discussed COVID-19 and how we move forward. I know times are tough, but the stakes in this election have never been higher. If you could chip in a few dollars I would really appreciate it. …"                                                                                                                                                                                                                                  
## [1462] "This 2,000 capacity hospital has been set up in Tehran by the army and the plan is to create more in Iran depending on need.\n\nFor the latest on #coronavirus around the world, head here: https://t.co/TYxht7Wxhg https://t.co/e9vdMQs10F"                                                                                                                                                                                                                                                                  
## [1463] "I don’t want to make a big deal about this or anything, but in the coming post apocalyptic era I shall be a king (or at least a high level scullery maid) based upon my skill in procuring toilet paper this morning.\n\n#COVID19 https://t.co/c49XUfvDcG"                                                                                                                                                                                                                                                   
## [1464] "Study: COVID-19 Impacts Men, Women More Than All Other Genders Combined https://t.co/YBlqu0h7Py"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1465] "@DrOlusesan Major intention of the adversaries is to take attention from the WHO acclaimed efforts of PMB admin to minimize the spread of COVID-19 in Nigeria.Or what else can make some Nigerians to ignore reality of a ravaging virus to waste time&amp;dwell on Inanities that benefit none?"                                                                                                                                                                                                             
## [1466] "I get that Trump is not reopening America, and that experts are frantically stopping him by repeatedly explaining the terrible consequences of that, but every time he does these press briefings he convinces more idiots it almost over. #Covid19 #RussianPresident"                                                                                                                                                                                                                                        
## [1467] "@AlexBerenson @Cernovich I’m not cool with that.  But I understand why others feel that way. #QuarantineLife #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                   
## [1468] "In response to the COVID-19 crisis, our incredible costume department is constructing thousands of medical masks to meet the needs of healthcare professionals.\n\nWant to contribute? Please DM us if you are able to donate grosgrain ribbon or poly twill tape at 3/8” wide. https://t.co/ZQqoUbrE28"                                                                                                                                                                                                     
## [1469] "@Ian_Burnett_ She's trying to build a another case for #indyref2  with the international community by showing she cares. We all know that #indyref2  is all she brothers about and not #COVID19 #coronavirus  Damn her."                                                                                                                                                                                                                                                                                      
## [1470] "Q2. If a nonviolent prisoner dies in custody from Covid-19, will their families have the right to sue the state for the negligence of care?"                                                                                                                                                                                                                                                                                                                                                                  
## [1471] "The @PierceCo website now features a resource page for ways to help and get help during COVID-19. https://t.co/yMAnLNSS6W\n#Community #Resources https://t.co/142vF5Mukm"                                                                                                                                                                                                                                                                                                                                     
## [1472] "This week's Facebook Live event went so well that we are doing it again! Join us again on April 1, when we will have Gene Takagi with us and discuss some of the legal issues that nonprofits are facing due to COVID-19. https://t.co/1Qd8OGdfOe"                                                                                                                                                                                                                                                            
## [1473] "The #USA is a shit show. We are NOT #1. We are NOT #MakingAmericaGreatAgain. 1 check for some isn’t going to cut it @POTUS. Millions of us are falling through the cracks. #SSDI is not coming through quick enough. How can I qualify for unemployment when I’m sick? #COVID2019 https://t.co/9U4dZNujHl"                                                                                                                                                                                                  
## [1474] "Cause <U+0001F987>Batman says so! #COVID19 #StayAtHome https://t.co/I1Nl9LFNIt"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1475] "@shtoopidTHICK Yup . They just hit us with another COVID-19 update ."                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1476] "@epsilon3141 @ABetterYouToda1 @HelenBranswell We were instructed to NOT wear masks and leave them to the HCW. I have felt exposed  many times but went by the state and CDC covid 19 instructions.  I knew that was stupid but felt bad for the HCW."                                                                                                                                                                                                                                                         
## [1477] "@RealCandaceO swine flu has death rate of 0.1%, covid-19 has over 1% death rate and over 10% in Italy for confirmed cases"                                                                                                                                                                                                                                                                                                                                                                                    
## [1478] "UChicago Medicine brings back employees exposed to COVID-19 https://t.co/fFMM6fjy1g via @crainschicago"                                                                                                                                                                                                                                                                                                                                                                                                       
## [1479] "Column: Andrew #Cuomo and Gavin #Newsom deliver the leadership and straight talk #trump won’t\n\n#coronavirus  https://t.co/Q4KvC6W2lq"                                                                                                                                                                                                                                                                                                                                                                      
## [1480] "Thank you from<U+00A0>the bottom of our Hearts<U+2764><U+FE0F> Mister @JackMa \n#CoronaVirus https://t.co/4gxWUjddKY"                                                                                                                                                                                                                                                                                                                                                                                         
## [1481] "One of the worst things about being single is falling off your bed. Especially when you're a fluffy person and knuckling up in self-isolation from Rona aka Covid 19.  Gosh!!! This hurts.  Self isolation is not a problem to me. Been doing it for 9yrs now. It's the fall and hurt."                                                                                                                                                                                                                       
## [1482] "\"Continued infection there will pose a continued threat to the world, and thus the outcome of the COVID-19 epidemic in Iran will affect the world’s ability to bring the virus under control.\"\n\nhttps://t.co/iW7pH77zpG"                                                                                                                                                                                                                                                                                 
## [1483] "Well, he got one thing right. He’s done quite a job on this country<U+2014>con-job that is. Moved from grifter to murderer. #COVID2019 #NotDyingForWallStreet #EasterMassacre https://t.co/F9LdLK1JTz"                                                                                                                                                                                                                                                                                                       
## [1484] "COVID-19 Updates: Saturday 28th March 2020, 06:00 A.M. https://t.co/hK67VxwuhI"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1485] "I know times are tough right now but “This too shall pass.” \n#covid_19 #europe #Covid19usa https://t.co/tT1A6U2KgL"                                                                                                                                                                                                                                                                                                                                                                                        
## [1486] "Please we want to know the state of our president @Mbuhari we demand you address us today as regards #COVID<U+30FC>19. You should be bold enough to tell us your health status and as well reassure the people how committed you are in tackling the virus in Nigeria. Please do the needful"                                                                                                                                                                                                                 
## [1487] "The graphic is self-explanatory. \n#coronavirus #Covid-19\n#wuhan #virus https://t.co/6c9Hf3MIjr"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1488] "A request to all the uncles &amp; brothers as it’s Jummah tomorrow. \n\nIf your local Mosque is open for prayers, please do not go. Just pray at home. \n\nIt’s a priority to protect yourself and others by avoiding congregations during such a time. \n\n#coronavirus https://t.co/Zm2PzLESeJ"                                                                                                                                                                                                           
## [1489] "Alright I’m tired, I’m going to find the cure to this COVID 19 shit myself"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1490] "The national task force for Covid-19 constituted by Indian Council for Medical Research (ICMR) has recommended hydroxy-chloroquine as a preventive medication for high-risk population. According to the advisory, it should be given to high risk population.  https://t.co/aNc9uYfnUi"                                                                                                                                                                                                                      
## [1491] "I'd humans can make a real Transformer, I'm certain we can figure out how to beat #COVID19 https://t.co/bWPm8inbY7"                                                                                                                                                                                                                                                                                                                                                                                           
## [1492] "@IdiotTracker @jasoncrawford That’s is not the only standard of morality. Honestly this has nothing to do with morality. Plenty of people with good moral character will never donate a penny to COVID-19 research."                                                                                                                                                                                                                                                                                         
## [1493] "We have also decided to sanction INR 4,000 as a one time relief to all GBOC workers under the scheme “Goa Labour Welfare Board Assistance Scheme COVID-19”. This shall benefit another 4000 eligible labourers."                                                                                                                                                                                                                                                                                            
## [1494] "Elsevier: We are helping support the response to COVID-19! https://t.co/e4Z4qxnqt4\n\nEveryone else, knowing that their business model is based on preventing access to life-saving knowledge and that this is a horrific PR stunt: https://t.co/zpjuTx9tO5"                                                                                                                                                                                                                                                  
## [1495] "it really took #COVID19 for y'all to spend time with y'all family ...  <U+0001F44E><U+0001F3FE>"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1496] "@SacrificialMods is streaming live right now on YouTube!!\n\nSims 4 Chill Stream - Covid-19 Quarintine. https://t.co/VrR8OcAmHH"                                                                                                                                                                                                                                                                                                                                                                              
## [1497] "You're encouraged to practice #SocialDistancing. Keep a safe distance from others to ensure everyone stays healthy. https://t.co/FnUIb03Ohj #COVID19 #COVID19AZ"                                                                                                                                                                                                                                                                                                                                              
## [1498] "A personal story of living through Covid-19 https://t.co/IPoaKevPJI"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1499] "C'mon, ppl! What's the WORST that could happen if you don't get your abortion; if you don't get to kill your baby?You're not suddenly sick &amp; unhealthy. No! You become the mother of a newborn baby boy or girl. How is that SO BAD? #AbortionIsMurder #COVID19\nhttps://t.co/8MRE8KMrxk"                                                                                                                                                                                                                 
## [1500] "New NB Podcast out today - CORONAVIRUS SPECIAL: COVID-19 in the Community. @drnealtucker discusses this week's covid data including hydroxycholorquine &amp; azithromycin, &amp; how hospital data on covid presentation doesn't help in the community. https://t.co/so7bYWgvIY"                                                                                                                                                                                                                              
## [1501] "We encourage students to visit the Student FAQS and Resources page. Get answers to some of your questions, information about resources and access to how-to videos.\nhttps://t.co/ikjm9NVjQV https://t.co/H2GFKeSEs8"                                                                                                                                                                                                                                                                                         
## [1502] "Be Prepared India. It has entered Slums. \n\n#COVID2019 \n#COVID https://t.co/zRTS8ZnVLN"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1503] "Trump, our worst president in history, totally screw ......... tremendous failure ..... #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                         
## [1504] "Amidst the pandemic, let's remember to be happy.\n\nWe asked some of our non-tech guys the full meaning of HTML and here are some of their amazing responses.\n\n#techstars #COVID<U+30FC>19 #WeWillPrevail https://t.co/FM31rYExQh"                                                                                                                                                                                                                                                                          
## [1505] "Indianapolis 500 postponed until August because of COVID-19 https://t.co/ZhD8xmckSj #10TV https://t.co/U0gX1gHJQi"                                                                                                                                                                                                                                                                                                                                                                                            
## [1506] "With our community and country facing the global coronavirus (COVID-19) outbreak, Beaumont-Cherry Valley Water District is reminding you <U+2013> your tap water is safe and available, just like it was yesterday and will be tomorrow. https://t.co/LPFhyJU59b"                                                                                                                                                                                                                                             
## [1507] "Lindsey was featured on the podcast - Domestic Connection! This podcast is hosted by Libby James &amp; Will Medlin of Offit Kurman. They discuss how COVID-19 is affecting custody cases, what they're doing to help clients &amp; more. Check it out- https://t.co/GYIO0OjUpO."                                                                                                                                                                                                                              
## [1508] "the hoast once again change its behaviour pattern leaving china - pattern differ in EU  as well \nA 2-month-old who has tested positive for COVID-19 in Nashville is likely one of the youngest in the country.\nhttps://t.co/LtrPXI6H6r"                                                                                                                                                                                                                                                                     
## [1509] "Increasing numbers of “confirmed COVID-19 cases” in the US honestly just reflect the increasing numbers of available test kits in the US.\n\n‘Cause Coronavirus outran our testing a long time ago lol"                                                                                                                                                                                                                                                                                                    
## [1510] "Ottawa has announced new #COVID19 relief, including increasing the federal wage subsidy program for SMEs to 75% from 10%, deferring GST/HST payments until June, 2020, among other measures. Full details TBD.  \n\nRead our latest update for a full overview.\nhttps://t.co/tVmGIMEo7y"                                                                                                                                                                                                                     
## [1511] "I just sent a donation to @prioritiesUSA More ads like this one. @realdonaldtrump #VoteHimOut  #WorstPresidentInHistory #UnfitToBePresident #COVID19 https://t.co/ZnwdgOG4TJ"                                                                                                                                                                                                                                                                                                                                 
## [1512] "covid-19 anjing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1513] "@cybergent1 This disease has no respect. People need to be aware. Why won't they listen. Read report of 102 yr old in italy who made it thru. Strange this covid 19 is."                                                                                                                                                                                                                                                                                                                                      
## [1514] "BREAKING: Worldwide confirmed cases of coronavirus top half a million. At least 120,000 people around the world have recovered.\n#coronavirus https://t.co/BDGhRaAsXa"                                                                                                                                                                                                                                                                                                                                        
## [1515] "Amtelco customers rely on our virtual operator application to make working from home easy to keep their businesses running. We are offering free operator licenses to our customers during the #COVID19 crisis. https://t.co/l8jo4QmM2J #RemoteWorking #RemoteOperators #WFH https://t.co/RBfbKofX8S"                                                                                                                                                                                                         
## [1516] "Stop the spread of #COVID19 by keeping your distance. Don't forget to keep 6 feet between you and the people around you. For more from @nychealthy, visit https://t.co/OCoRunCLE7. https://t.co/3jyvIRJnXK"                                                                                                                                                                                                                                                                                                   
## [1517] "Residents of nursing homes &amp; assisted living facilities are especially vulnerable to #COVID19, and the professional caregivers on hand do their job at great risk to themselves. We are grateful for your selfless dedication. #coronavirus https://t.co/d3Z6FFnFiA"                                                                                                                                                                                                                                      
## [1518] "While waiting for the final decision on wether or not to continue the season I had time for riding. @chicagobulls  #BennyTheBull @NBA #BullsNation #COVID19 #WeWillWinThisBattle #confidence https://t.co/ET9EsZW7hY"                                                                                                                                                                                                                                                                                         
## [1519] "<U+0001F58B> Support Emma by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r\n\n<U+0001F4E8> Last delivered to @johncarneyde, Representative Schwartzkopf and Senator Lopez  #DEpolitics #COVID19 https://t.co/rDvHeKgk1Z"                                                                                                                                                                                                                           
## [1520] "People can survive without any food for 30-40 days, as long as they are properly hydrated.\n#COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                            
## [1521] "Necessity is the mother of invention. @GHCSCW shares DIY construction plans for a desktop droplet barrier to save PPE and protect medical staff when administering #COVID -19 tests. @_ACHP https://t.co/CV8BJ6Wvr0 https://t.co/jEGBdVFAPx"                                                                                                                                                                                                                                                                  
## [1522] "@LesterHoltNBC I’m really sick and tired of @DrJohnTorres peddling BULLSHIT data-free speculation about  the #coronavirus being seasonal, that it just dies off in hot weather. Tell that to the sick &amp; dead of #COVID19 in places where it is currently summer."                                                                                                                                                                                                                                        
## [1523] "@OregonGovBrown Please have Oregon officials give some clarity in this area. https://t.co/D6US562Lp1"                                                                                                                                                                                                                                                                                                                                                                                                         
## [1524] "@CaptInappropri8 Are you thinking you have covid 19? A constant headache is one of the signs"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1525] "@RealCandaceO Did you do the math? That is a .04% death rate. COVID-19 death rate is 4.5%. That means COVID-19 is 113 times more deadly. At the current rate of spread and mortality the death rate of the swine flu will be easily surpassed if people like you continue to underestimate it."                                                                                                                                                                                                               
## [1526] "Five things about Ottawa’s support for Canadians, businesses during COVID-19 https://t.co/QhNLSbJSDH via @TorontoStar https://t.co/mbYkl9TzxQ"                                                                                                                                                                                                                                                                                                                                                               
## [1527] "@StefSimanowitz Amazing to watch... and we have health care workers in the U.S. using garbage bags and home-made masks because we don't have enough #PPE! \n\nWe need to get appropriate PPE to the front lines! #CoronaCrisis #COVID19 #covidusa #PPEshortage #CoronaHeroes #livertwitter"                                                                                                                                                                                                                   
## [1528] "The US now has more cases than any other nation, including China. There are 82,474 #COVID19 cases recorded in the United States. https://t.co/KTrx2ht85n"                                                                                                                                                                                                                                                                                                                                                     
## [1529] "Shut illegal meat markets, animal rights bodies to govt amid Covid-19 pandemic\nhttps://t.co/Pv1Vc3qy4k"                                                                                                                                                                                                                                                                                                                                                                                                      
## [1530] "@BankofAmerica Customers you have to go at them hard. Start a https://t.co/zrqAj8zPGj petition, contact every media outlet you can and tell them . I took them on after the 2008 crash and won. Glad I’m rid of them but #FightBack #mortgagerelief #BofA #COVID19"                                                                                                                                                                                                                                          
## [1531] "#DonaldTrump February 28th said We are at 15 #coronavirus cases now in a couple of days will be near zero. \nMarch 26th we are at 85,594 #coronaviruscases and 1,300 Deaths. And he still won’t #ListenToTheDoctors #AnybodyExceptTrump2020 #CNN #cuomobriefing"                                                                                                                                                                                                                                             
## [1532] "Quarantine got me brainstorming Covid-19 pick up lines."                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1533] "Awesome work @pmarinnevz! There are #HealthCareHeros everywhere. #COVID19 #medstudenttwitter @Cal_EMRA @emresidents https://t.co/0Tx85t8k0W"                                                                                                                                                                                                                                                                                                                                                                  
## [1534] "Tlaib Calls for US To Mint Two Trillion-Dollar Coins in Laughable COVID-19 Relief Proposal https://t.co/SacksUwOAe"                                                                                                                                                                                                                                                                                                                                                                                           
## [1535] "IBM Summit, titleholder of the world's<U+00A0>most powerful #supercomputer, has joined the fight against the #COVID19 outbreak.\nhttps://t.co/lhTRJcTJYt\nvia @ZDNet \n#IBMSummit\n#defstar5 #makeyourownlane #smm \nT.H., @Thomas_Harrer, #IBM #IBMer #CTO @ #IBMSystems, #Europe, #Influencer"                                                                                                                                                                                                              
## [1536] "@nationalpost More than 27000 deaths from covid-19 have occured around the world but Mr. Black thinks we're in the grips of hysteria. About 6000 people died on 9/11 and Black waxes poetic about that awful day every chance he gets. I'll take some life-saving fear over denial every time."                                                                                                                                                                                                               
## [1537] "Want to stay up-to-date with breaking news regarding the COVID-19 Pandemic, weather alerts (especially with storms coming this weekend), traffic crashes/lane closures and so much more!  Now you can, we have an App for that!  Download our app today! https://t.co/JyLA4tW4Lj https://t.co/UnZrlayxuk"                                                                                                                                                                                                     
## [1538] "This Sunday night, we are paying tribute to the front line health professionals &amp; local heroes who are helping to fight the spread of COVID-19 Watch the iHeartRadio Living Room Concert For America on @foxtv this Sunday night at 9PM ET / 6PM PT. <U+0001F4FA> #iHeartConcertOnFOX https://t.co/ukjAltzQ4s"                                                                                                                                                                                            
## [1539] "It’s too late for trump.\nHe already has blood on his hands from school shootings to not protecting the American citizens from the Covid-19 virus.\ntrump will always be months late and billions short no matter what he does!\ntrump has fallen short on all fronts. https://t.co/8IgCG4orHq"                                                                                                                                                                                                              
## [1540] "United States to provide #financialassistance of 174 million US Dollars to 64 countries including #India to fight #COVID-19."                                                                                                                                                                                                                                                                                                                                                                                 
## [1541] "Just found out my old coworker/bar manager is positive with Covid-19 and is on a respirator. This shit is real REAL, stop playing games STAY HOME"                                                                                                                                                                                                                                                                                                                                                            
## [1542] "@Maryam_Rajavi Under dictator regime rulling in #Iran #PoliticalPrisoner are the most vulnerable people in this situation and must be free immidetly\n#FreeAllProtesters\n#COVID19\n#FreeIran2020 \n#Coronavirus \n@USADarFarsi @mbachelet, @javaidRehman @UNHumanRights\n@WHO @WHOEMRO"                                                                                                                                                                                                                      
## [1543] "Yoooo leave me alone. I’m trying to Quarantine. <U+0001F480> #COVID19 https://t.co/1XHJJP3fNK"                                                                                                                                                                                                                                                                                                                                                                                                               
## [1544] "This one is for @BorisJohnson @MattHancock and Dominic Cummings...keeping it for future reference.\n\n#COVID19 https://t.co/zUitTwXnYi"                                                                                                                                                                                                                                                                                                                                                                       
## [1545] "@TyraDemi_ I would slap box Covid-19 for you."                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1546] "The #SanDiego #COVID19 numbers: \nUnfortunately, 3 deceased residents. \n\nAn increase of 44 new cases (an underestimation, takes 7 days for test results). Total of 341.\n\n45% of cases between 20-39 yrs of age!\n\n10 extra hospitalizations and 2 more patients in ICU. https://t.co/DNJSdlt7M9"                                                                                                                                                                                                         
## [1547] "@MelissaSimms3 @onlinemgm @GovernorKayIvey There is more background information for the State of Alabama to review on this COVID-19 virus reception blocker than can be included in a Tweet #COVID19"                                                                                                                                                                                                                                                                                                         
## [1548] "Psi also has supplies necessary to fight the spread of the COVID-19 virus. Therefore, PSI maintains its operations to ensure that other critical industries and front-line service responders can do their essential work in a safe and clean environment."                                                                                                                                                                                                                                                   
## [1549] "When “great” is exactly the flaming dumpster fire and human rights atrocity Hillary and her ~65 million voters always knew it would be... #COVID2019 #TrumpEffect #SociopathRoulette #Cult45* https://t.co/MLlkkkgO11 https://t.co/sHvhiqhz08"                                                                                                                                                                                                                                                              
## [1550] "UK #F1 teams step up to help scale production of #ventilators for fighting the #CoronaVirus #F12020 #ProjectPitlane  #VentilatorChallengeUK\n\nhttps://t.co/wT4gsoIVbV"                                                                                                                                                                                                                                                                                                                                       
## [1551] "As another measure to protect staff from  COVID-19, #StJoeStatePark will implement a self-pay system on Sunday, March 29. ORV riders can self pay at the check station with exact change. Riding permits are $5 for ATV and $10 for UTV. An online ORV/UTV permit is in the works. https://t.co/2Gxr6TZ7Iw"                                                                                                                                                                                                   
## [1552] "Having Donald Trump as President* during a pandemic is like having Donald Trump as President* during a pandemic. #coronavirus #trumpvirus #trumpandemic  #unfit #thedailydon https://t.co/GOYdbhh512"                                                                                                                                                                                                                                                                                                         
## [1553] "WHATEVER IT TAKES: Chris McCormick had to furlough 23 employees after big orders were cancelled due to the economic impact from the #coronavirus. He woke up the next day and decided to start making PPEs for hospitals around the country. Hear the full story tonight on @fox5dc https://t.co/4xQeFX4VfN"                                                                                                                                                                                                  
## [1554] "@PontDaddy @CBCAlerts Maybe Canada should build a Trump-COVID-19 wall to keep the U.S. out. <U+0001F609>"                                                                                                                                                                                                                                                                                                                                                                                                     
## [1555] "When CM @UsmanAKBuzdar  announces double pay for health care providers but you are an unpaid  HO \n\n#COVID2019  \n#ShareTheLoad\n#CoronavirusOutbreak https://t.co/2lq1fOGzKm"                                                                                                                                                                                                                                                                                                                               
## [1556] "Apple launches a COVID-19 information tool for the US https://t.co/Ox6dw2XCMG"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1557] "We have better testing and even with the strain on the American medical system we still have the best care in the world if you do become infected with the Chinamancovid19 virus\n\nU.S. passes Italy, China as nation with the most confirmed cases of COVID-19 https://t.co/jdJ0MjnvGw"                                                                                                                                                                                                                     
## [1558] "#COVID19 update by Scott Morrison on @abcnews #auspol #coronavirusaustralia #BreakingNews https://t.co/BPrDyKON4V"                                                                                                                                                                                                                                                                                                                                                                                            
## [1559] "We reached over 100,000 #COVID19 cases! But our rapid response will get this under control! #coronavirus #TrumpDidThisToUs #TrumpPressConf https://t.co/IeVaSoDvLV"                                                                                                                                                                                                                                                                                                                                           
## [1560] "@davidred5sw @Uniblonder It's like #COVID19... shitty at first but steadily improves until the end. Also, based on true story here in WA. <U+0001F601><U+0001F44D>"                                                                                                                                                                                                                                                                                                                                           
## [1561] "UBC is communicating answers to such questions from graduate students and to supervisors in emails and via this website: https://t.co/fDzy5kOGB9.  You can anticipate more communications in the future. https://t.co/1qidQKhDuw"                                                                                                                                                                                                                                                                             
## [1562] "Report: WhatsApp has seen a 40% increase in usage due to COVID-19 pandemic https://t.co/eqGNwSKwHH https://t.co/QqgV4nfqOb"                                                                                                                                                                                                                                                                                                                                                                                   
## [1563] "OSE Immunotherapeutics Reports 2019 Financial Results and Provides Business Update Expectations for Potential Impact of COVID-19 on the Company's Clinical Development Activities - Associated Press https://t.co/1NjkIQsIPa"                                                                                                                                                                                                                                                                                 
## [1564] "We have made the decision to send our team to work from home, to prevent the advance of COVID-19 in Brazil. So we can preserve our employees and remain active in our services. You can count on us!<U+200B>\n\nOur services: https://t.co/HAuTh3fieL <U+200B>\n\n#Synova #Caution #Coronavirus"                                                                                                                                                                                                              
## [1565] "@GovMikeDeWine @LtGovHusted @FrankLaRose @OHIOAG Due to the impact of COVID-19 on small businesses in Ohio, how is your office addressing debt collection and/or litigation appointed by Special Counsel to small businesses when many have been forced to shut down during this crisis?"                                                                                                                                                                                                                     
## [1566] "My dad is officially out of a job because of covid-19 he just lost his only source of income. Please tell me what am I suppose to do. There is no rent freeze so how is he going to pay rent, how is he going to buy food. This “president” has no answers and refuses to take action"                                                                                                                                                                                                                      
## [1567] "#Govlies about masks. Yes masks work. Lies about #Plaquenil #Hydroxychloroquine and #Azithromycin. Yes, together they thump the #Wuflu #coronavirus. Govs lie lie lie, a.) b/c there’s limited supply, b.) BUT ALSO b/c the elites want the protective useful shit FOR THEMSELVES."                                                                                                                                                                                                                          
## [1568] "Free resources for exercise practitioners regarding the mental health impacts of #COVID19 \n\nTeam of us will update as often as possible.  \n\n@ESSA_NEWS @UNSW  @apaphysio @BJSM_BMJ @SMA_News @ACSEPpresident @ACSMNews @ISBNPA @LIFTS_SIG \n\nhttps://t.co/axUb1DlT1G https://t.co/srtNtLeNS9"                                                                                                                                                                                                            
## [1569] "@OnlyGod4ever @LaraPatriot Who would like to see President Trump invite the SEIU President to a COVID-19 presser and ask him flat out, \"What the fuck?\""                                                                                                                                                                                                                                                                                                                                                    
## [1570] "#PopeFrancis gave an extraordinary blessing \"urbi et orbi\" (to the city and the world) today in an empty St. Peter's Square. https://t.co/upOj2nIS1J"                                                                                                                                                                                                                                                                                                                                                       
## [1571] "It looks like the Belarusian soccer league will be going forward in spite of COVID-19, because Lukashenko says so. \nIt sucks for the players but at least I'll have some soccer to to watch.\nhttps://t.co/7cAPYZhw7E"                                                                                                                                                                                                                                                                                       
## [1572] "@alx @realDonaldTrump Listen to this wanks take on \"media delusion\"! <U+0001F92A> Pardon me for remembering but, it was Fox News that seriously entertained the conspiracy theory of China and it's bioweapon COVID-19. Hannity IS THE MEDIA politicization he wants us to fear. The big lies of liars."                                                                                                                                                                                                    
## [1573] "Check out this COVID-19 game which helps separate the facts from the myths and provide information on how best to avoid catching and spreading cornovirus...\n\nhttps://t.co/k6Anisv6Qt\n\n#COVID19 @RoyLilley @christheeagle1"                                                                                                                                                                                                                                                                               
## [1574] "WATCH LIVE: Beaufort County sheriff, local officials provide COVID-19 update https://t.co/SdhOlKGqeI via @WSAV @WSAVAndrewD"                                                                                                                                                                                                                                                                                                                                                                                  
## [1575] "Announcing a temporary new “opt-in” grading system for all undergraduate and graduate students for the spring 2020 semester and until the disruption to the learning environment lessens from the COVID-19 pandemic https://t.co/aC5SZZ67m1"                                                                                                                                                                                                                                                                
## [1576] "Some people were trying to defend that guy who wanted to sneeze on people's faces and give them Covid-19. Good job in firing him. Hope he's arrested too.<U+00A0>\nhttps://t.co/7Y97recX5c"                                                                                                                                                                                                                                                                                                                   
## [1577] "Idgaf how you feel if I say sum bout standing too close to me. With this pandemic going on I don’t want anyone near me in the stores. I have a sick mother who is too high risk for covid-19 that Needs me hands on w her every day so bitch back up I want my space."                                                                                                                                                                                                                                       
## [1578] "This one's for you revsheridanjames <U+0001F4AE><U+0001F618>\n#cherryblossom #outside #covid_19 #spring https://t.co/FsyEIEEsG4"                                                                                                                                                                                                                                                                                                                                                                              
## [1579] "Ok so since I'm working in total lockdown I'll be out of my house so I'm offering my help to anyone in the Westmeath and Meath area that need anything. \n\nJusy hit my dms and I'll do my best for anyone in need.\n\n#COVID19 #IrelandLockdown"                                                                                                                                                                                                                                                             
## [1580] "When the community gets together and the clapping and cheering occurs- beautiful #clapping #clappingforNHS #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                        
## [1581] "#CBWTF operators and their staff taking #pledge to provide their services to collect #waste generated from home #quarantine and  treatment of #COVID19 @GPCB @CMOGuj  #Waste handling and its disposal is most important for control of #COVID19 https://t.co/1xA1MhpnXn"                                                                                                                                                                                                                                     
## [1582] "Zim Leader Appoints New Coronavirus Response Drivers\n\nContinue reading at https://t.co/2JXShFT398 | ZTN\n\nStay tuned for a continuation of Diplomatic Passport, as Zimbabwe President @edmnangagwa is expected to address the nation.\n\n#GetThePicture #Zimbabwe #coronavirus #Covid19"                                                                                                                                                                                                                   
## [1583] "No, not me! Many came out and applauded health workers, why? They are doing their job and are renumerated. Oh l do care, there was no preparation for a pandemic, overworked junior doctors, crowded A+E's, lousy working conditions: this is.. (Continued)(#1)#health #Ireland #covid19"                                                                                                                                                                                                                     
## [1584] "Today @GovTomWolf  signed several bills that provide comprehensive assistance to Pennsylvania in the midst of the #COVID19 pandemic.\n\nPlease visit https://t.co/CO3ubQTRhD to read more about the legislative action taken today. https://t.co/6sEYeRGUOl"                                                                                                                                                                                                                                                  
## [1585] "We should really do the same to Floridians, to be honest. \n\nAnd not just for COVID-19 purposes. https://t.co/zqbxcLqUvB"                                                                                                                                                                                                                                                                                                                                                                                    
## [1586] "2 Fox News, The Daily Briefing with @DanaPerino Here are the breakdowns of each hospital in Boston reporting the number of workers who have contracted COVID-19. \nMassachusettes General Hospital 41, Bringham &amp; Womens 45, Tuffs Medical Ctr 31 &amp; Boston Medical more than a dozen. https://t.co/3nsUBiC7Sz"                                                                                                                                                                                        
## [1587] "@JohnJHarwood It would be very helpful if the media began asking the question: how many covid-19 patients have died because there was not a ventilator available for them? Is it a current problem or a future one?"                                                                                                                                                                                                                                                                                          
## [1588] "Community Effort Helps Wiradjuri Elders in Need Amid Panic-buying | NITV https://t.co/yg6fosgwpD via @NITV Beautiful. #coronavirus"                                                                                                                                                                                                                                                                                                                                                                           
## [1589] "Good Saturday morning, how are we doing ZA?\n\n#LockdownSA #Covid19 https://t.co/u7O7KA3gsV"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1590] "A quiz from @OregonGovBrown to help you understand whether or not your business operations can stay up and running as normal #PortlandTogether #COVID2019  https://t.co/UEejPT9eqz"                                                                                                                                                                                                                                                                                                                           
## [1591] "Genomic Study Points to Natural Origin of COVID-19 https://t.co/PODZ7QJ1KS"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1592] "This is 30minutes ago.\n@WHO @NCDCgov \n#CovidNGR #COVID19 https://t.co/irnCowjx39"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1593] "@maggieNYT @JessicaTarlov 9/11 victims were murdered. COVID 19 and influenza victims die from illness."                                                                                                                                                                                                                                                                                                                                                                                                       
## [1594] "Thinking of Stories of the Streets (MCR 2018) Photographer, &amp; Big Issue North Vendor, Nicolae Alienate\n\nHis photo, Dog on a Lead, tkn just outside the @rxtheatre ,was showcased at Late at the @Tate last April \n \nLet's help @bigissuenorth and the Vendor team through #covid19 https://t.co/ddeLSmSKBz https://t.co/RUeZdwNJYa"                                                                                                                                                                   
## [1595] "Mayor of #Montgomery issues curfew to help prevent spread of COVID-19 - Mar 28 @ 12:13 AM ET https://t.co/FbgT167enj"                                                                                                                                                                                                                                                                                                                                                                                         
## [1596] "@geonews_urdu We really are thankful.\n#COVID2019 \n#Doctor4Covid \n#clapforourcarers https://t.co/3sIRhralhk"                                                                                                                                                                                                                                                                                                                                                                                                
## [1597] "Liam Gallagher wants Oasis reunion once Covid-19 pandemic 'put to bed' - https://t.co/5LtSq0Kupq #LiamGallagher https://t.co/PvuEPafstM https://t.co/zJ9KaQ0cOG"                                                                                                                                                                                                                                                                                                                                              
## [1598] "BREAKING: England’s Chief Medical Officer self-isolates after developing symptoms compatible with #COVID19 https://t.co/ucoRYRSHMQ"                                                                                                                                                                                                                                                                                                                                                                          
## [1599] "Reports that @SecretaryRoss found Peter Navarro off internet who is now a Trump lapdog!! Hope real journalist r now allowed in #CoronaVirusUpdate briefing.. with nasty questions! #COVID19 @cspan #AMJoy https://t.co/szcby2CQrt https://t.co/8w0JNM5coh"                                                                                                                                                                                                                                                    
## [1600] "Covid-19 could resurge in four major ways, (Julie Swann) In the first scenario, officials relax social distancing and shutdown measures and, after a few weeks, the highly contagious disease flares up again relatively quickly<U+2014>just like what happened with the Spanish flu. https://t.co/dkdeGqzvxI"                                                                                                                                                                                                
## [1601] "@mitchcarrtv @12News @dougducey What is DCS Director Mike Faust providing DCS field staff to protect them from COVID 19. They enter a lot of homes. Gloves, masks,hand sanitizer, medical daily review for staff like AZDOC."                                                                                                                                                                                                                                                                                 
## [1602] "Do businesses realize how many people are unsubscribing from their lists when they send out \"our response to Covid-19\" emails? I've unsubscribed from companies I haven't heard from since 1998! #unsubscribe"                                                                                                                                                                                                                                                                                              
## [1603] "Meanwhile #COVID2019 has also brought back memories from school days!\n\nCitizens were given \"murga punishment\" at MA road in Srinagar for flouting govt regulations during #CoronavirusLockdown\n\n#TalsaGharreyBehew\n#StayHomeSaveLives\n#Kashmir https://t.co/GTyv0GboIM"                                                                                                                                                                                                                               
## [1604] "One of the options may include adjusting the eligibility criteria for our Plus 1 emergency financial aid program and making it more accessible to customers who are experiencing financial hardship due to #COVID19. (2/3)"                                                                                                                                                                                                                                                                                   
## [1605] "LEO's on the front lines serving our community &amp; helping those in need affected by this horrible #COVID19.  Do your part to #FlattenTheCurve we are doing ours. \n\nhttps://t.co/qoZh1kqRPb"                                                                                                                                                                                                                                                                                                              
## [1606] "Is China legally liable for COVID-19 damages?  https://t.co/YGk3jhggAy"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1607] "How Soon Will COVID-19 Peak?  (And How To Tell) https://t.co/usbQ0WgaMu via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1608] "Of course, Easter eggs! What could be better for marketing Coronavirus https://t.co/UNrxtShGXq\n\n#COVID2019 #COVID19 #coronavirus #Easter #EasterSunday #eggs #Chocolate #France #WritingCommunity #writing #news #food #FreelanceHeroes #journalism"                                                                                                                                                                                                                                                        
## [1609] "Emotions act as a driving force in our decision making.\nWhat we need right now is to act logically in the process.\nMake wise investments. Stay home stay safe.\n\nVisit the website - https://t.co/6Ba9DTaa4V\n\n#fridaymotivation #covid19 #coronavirusoutbreak #londonstockexchange https://t.co/d7lbTwVazD"                                                                                                                                                                                              
## [1610] "@POTUS @VP You have to test everyone with symptoms to know what you are working with.  I was turned down in NC because my symptoms are mild yet I may have it and can spread it unknowingly because I don’t know.  #COVID2019 #FoxNews"                                                                                                                                                                                                                                                                      
## [1611] "@ITGuy1959 We should focus on excess mortality. Is COVID-19 killing more people than influenza &amp; other Corona viruses kill every year and, if so, how much more?\n\nThe EU monitors mortality. It’s not changed much. \n\nhttps://t.co/9yiWRxfcAR"                                                                                                                                                                                                                                                       
## [1612] "@Maheenkhanpk @JawadHaider @AnjumKiani @Hammad_Azhar @SHABAZGIL @murtazawahab1 @Jhagra #Pakistan’s fashion industry could definitely lead the #Masks4All movement that’s gone viral in South Korea, Japan, Czech Republic &amp; Slovakia &amp; helped their countries bend the curve in fighting #COVID2019.\n\nLet’s do it in Pakistan &amp; #SaveLives.\n\nGreat effort @Maheenkhanpk <U+0001F44F><U+0001F3FC> https://t.co/jtVQiqx3pF"                                                                  
## [1613] "The different types of \"celibraties\". While the real celebrities are making huge donations in support of the COVID-19 fight, the rest are either silent or teaching how to wash our hands. Some even want to be recruited &amp; paid as \"COVID_19 ambassadors."                                                                                                                                                                                                                                            
## [1614] "@bbcquestiontime @BBCOne Health before money? I know we need to keep the economy going but why are the government not implementing the rules on non- essential work places. They are leaving employees being forced to work in a vunerable #COVID2019 situation. #bbcqt"                                                                                                                                                                                                                                      
## [1615] "Brands: Stop with the well-meaning COVID-19 emails https://t.co/awCTSKtPaK via @MumbrellaNews #marketing #brand #communication #covid19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                         
## [1616] "@DanScavino @realDonaldTrump #COVID19 is a hoax, fake news. Do the medically relevant viruses exist? Where is the proof?"                                                                                                                                                                                                                                                                                                                                                                                     
## [1617] "'She just had a cough': Teen's COVID-19 death shakes France https://t.co/oYbDpFl9jF via @Yahoo"                                                                                                                                                                                                                                                                                                                                                                                                               
## [1618] "*50 years from now*\n\n“Grandpa, you survived Covid-19 didn’t you?”\n\n* In Color - Jamey Johnson starts playing * \n\n“Yeah... Lemme tell you about it.”"                                                                                                                                                                                                                                                                                                                                               
## [1619] "@SrBachchan COVID-19 CORONAVIRUS AWARENESS | WHO REPORT UPDATE | 5 WAYS TO STAY HEALTHY AND SAFE | HINDI https://t.co/fa5guUgPcw"                                                                                                                                                                                                                                                                                                                                                                             
## [1620] "It’s hard to have ambition when the world seems to be crashing down around you. But don’t worry <U+2014> we’ve got the perfect tips to help you out.\nhttps://t.co/SeVFLRMBGb"                                                                                                                                                                                                                                                                                                                             
## [1621] "\"I’m not sitting at home playing Netflix,” says local entrepreneur Oliver Kuttner, who has an $80 million plan to build a massive RV park to house COVID-19 victims. Lockn organizer Dave Frey has expressed interest, but so far no response from FEMA. https://t.co/m0u0yJaOW5"                                                                                                                                                                                                                          
## [1622] "Broward Health issues urgent call for donations of medical supplies. Dr. Joshua Lenchus says they have enough for staff at the moment, but will need more to handle a surge in COVID-19 patients https://t.co/lHV38Xj1Tl"                                                                                                                                                                                                                                                                                     
## [1623] "Apartments at forefront of fight against coronavirus\n\n#CoronavirusOutbreak \nhttps://t.co/sjPX77Y2VY @deccanherald @reshmatweetsat @WFRising"                                                                                                                                                                                                                                                                                                                                                               
## [1624] "State attorney general issues warning about fraudulent charities: https://t.co/X6xOH4GyDM https://t.co/TX0gHNN1Hm"                                                                                                                                                                                                                                                                                                                                                                                            
## [1625] "Please use the right service to get medical help, to reduce pressure on the #NHS and help us help you.\n\nPLEASE only call 999 in a serious emergency.\n\nNeed urgent medical help? Go to https://t.co/oWFZ4imtMH\n\n#COVID19 concerns?  Click here<U+2B07>"                                                                                                                                                                                                                                                  
## [1626] "One Pot Recipes: Prepare THESE quick and delicious dishes amid lockdown - https://t.co/gwRDYmPRxk #health #fitness #food #coronavirus #covid19 #21daylockdown"                                                                                                                                                                                                                                                                                                                                                
## [1627] "#Coronavirus: why we need to consult engineers as well as scientists for solutions \n\nhttps://t.co/8oPowidJcJ via @ConversationUK"                                                                                                                                                                                                                                                                                                                                                                           
## [1628] "@itv2 Contagion. Strange choice of 9pm movie? #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1629] "Priorities During the COVID-19 Crisis https://t.co/FYTIhDmh8w"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1630] "Marketing | Kantar’s COVID-19 Barometer Examines Impact on Consumer Behavior https://t.co/5w6Vs6o4bA"                                                                                                                                                                                                                                                                                                                                                                                                        
## [1631] "Our virtual town hall on #COVID19 and #ArmyROTC is live from our Facebook page. We’ll live tweet along with you! Tune into the livestream right here: https://t.co/vPkmKLBqTL https://t.co/ob0uxDr2Od"                                                                                                                                                                                                                                                                                                       
## [1632] "It’s been real #COVID19  https://t.co/vG80c8Are4"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1633] "Many of our students are now back home after leaving college campuses throughout the country due to the COVID-19 pandemic, and LEDA has established an emergency fund <U+27A1><U+FE0F> https://t.co/wNDrJ3Yx7e <U+2B05><U+FE0F> to provide them with direct support during this global challenge. https://t.co/JvXZh2jDHD"                                                                                                                                                                                    
## [1634] "@HRDMinistry Dear Sir, in this crisis of Covid 19, rather than waiving off fees for April to June quarter, schools have increased fees including bus fees. Is it justified?"                                                                                                                                                                                                                                                                                                                                  
## [1635] "BREAKING NEWS: Burundi is the only African country without any case of coronavirus. When the Minister Of Health was asked about the secret behind the zero case of covid-19, this is what he had to say; \"It is very simple. We don't have the testing kits.\"\n#CurfewinKenya"                                                                                                                                                                                                                              
## [1636] "In @htTweets today, COVID-19 cases across India. #news #coronavirusindia https://t.co/08YkAWlzH1"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1637] "UK 8pm tonight CH4 programme on #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1638] "This cause is close to my heart - please sign: https://t.co/Of1j4WLSAS"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1639] "@Roger2dot0 Nope, you do not have to be fired. The bill says unemployed, partially unemployed or unable to work due to COVID-19. Here is a screenshot from the article linked above. https://t.co/NEMnEBRJO0"                                                                                                                                                                                                                                                                                                 
## [1640] "@SpencerJCox @fox13 Gobert should change his number to 19 to remind everyone that he may have saved their life from COVID-19"                                                                                                                                                                                                                                                                                                                                                                                 
## [1641] "Facebook said on March 6 that it would temporarily ban commerce listings and advertisements for medical face masks, in an effort to combat price-gouging and misinformation during the COVID-19 crisis.\n\nhttps://t.co/629MulkbhH via @techcrunch"                                                                                                                                                                                                                                                           
## [1642] "Arizona confirms 13 COVID-19 deaths; total cases hit 665 https://t.co/jAQ3RSWnTh"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1643] "#Day3 : Completed <U+2714>\n\nAnother day of doing nothing but having a beer after work and sleeping <U+0001F606>\n\nNow on an empty double decker back to work.\n\nNice to see a number @syptweet vehicles roaming around<U+0001F44D>\n\n#COVID19"                                                                                                                                                                                                                                                           
## [1644] "Coronavirus: Britons who have died after contracting COVID-19 | UK News | Sky News https://t.co/5s4llHb8hq"                                                                                                                                                                                                                                                                                                                                                                                                   
## [1645] "Good woman @MiriamOCal &amp; wishing @RyanTubridyShow well, a real sense of #teamireland tonight  #COVID19 #InThisTogether #StayHomeSaveLives https://t.co/3qNERHi5ry"                                                                                                                                                                                                                                                                                                                                        
## [1646] "Heading to the ED in a Friday night to admit my first patient for #COVID19 rule out to the hematology service <U+2014> she has pneumonia. I found the scrubs. #StayHome please. https://t.co/g6FRZi7Czf"                                                                                                                                                                                                                                                                                                      
## [1647] "One positive of #COVID19 the planet is getting back to normal because of a lack of industrial activity.\n\nThe irony here is that it might prolong human existence in the long run while taking a couple million in the short term."                                                                                                                                                                                                                                                                          
## [1648] "You can be certain that you can always find support within the CFA #Franchise community. Check out CFA #COVID19 Resource page for updates, resources &amp; #webinars: https://t.co/vNMbEQkTNo\n\nWe are Better Together and United, We are Strong.\n#CFAGrowingTogether https://t.co/jhLCgU6a65"                                                                                                                                                                                                              
## [1649] "I wouldn't have been as aware and prepared today ...If it weren't: \n\n<U+2705>Andrew Yang \n\n(I saw #coronavirus hash tag trending on Twitter while following Yang.)\n\n<U+2705>The Walking Dead\n\n(Learned about infections, scarcity social behaviors, survival supply runs.. etc)"                                                                                                                                                                                                                      
## [1650] "COVID-19 Cases in Clark County Rise\nhttps://t.co/eohd143OfN\n#Coronavirus #Covid19 #ClarkCounty #CoronavirusNV"                                                                                                                                                                                                                                                                                                                                                                                              
## [1651] "It comes to something when even the UK prime minister and health secretary cannot wash their hands properly!  #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                   
## [1652] "@GanucheauAdam @tatereeves He is endangering the lives of first responders and medical personnel by his careless, prejudicial ruling.. Shame on him forever. #Covid19 does not play favorites"                                                                                                                                                                                                                                                                                                                
## [1653] "@Harvard @UniofOxford @UniversidadYale worldwide exist a Pandemia Named COVID-19, its a virus and thousand of people are Dying, why are you prestigie one in SILENCE? Why you say nothing? What are you waiting for? Where are your brilliant Students? @realDonaldTrump @ABC"                                                                                                                                                                                                                                
## [1654] "If you’ve been following and appreciating the amazing #scicomm efforts of @CT_Bergstrom on COVID-19, this thread is a must read. Kudos to him and so many others working to dispel the deluge of misinformation. https://t.co/MIAhmEEefV"                                                                                                                                                                                                                                                                    
## [1655] "At a news conference Thursday, Cuomo provided updated statistics on the virus and expressed disdain at the Senate’s $2 trillion economic stimulus bill, calling it “irresponsible” and saying it doesn’t do nearly enough to help New York.\nhttps://t.co/h8oDs0RLQJ"                                                                                                                                                                                                                                     
## [1656] "Spotted what I believe was a drive-up COVID-19 test this afternoon."                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1657] "@parto254 @dps1879 @oddtv3 @parto254 I know the channel, I'm looking for specific video links of people question police and workers during installation of #5g during the #COVID19 lockdown."                                                                                                                                                                                                                                                                                                                 
## [1658] "As a resource to our community, we are adding special coverage around COVID-19  and have set up a page to provide easy access to this information. We welcome your input with news that you would like to share or suggestions on how we can help https://t.co/161qdeGMT0\n#CPIstrong"                                                                                                                                                                                                                        
## [1659] "@chris_minor10 @ClaytonClemens1 @CityofTampa @TampaPD @GovRonDeSantis @RepJoseOliva @BillGalvano @RepJoseOliva is the one writing bogus articles on medium about COVID-19, saying “the cure can’t be worse than the virus” endangering the lives of us all like @GovRonDeSantis who has no backbone. Take your own advice."                                                                                                                                                                                
## [1660] "@chrislhayes #TrumpPressConf he keeps saying how GREAT the economy was before the #CoronaLockdown and how these Companies where making so much cash in his economy, yet they couldn't make 2 months into the #coronavirus and we have to bail them out AGAIN!! WTF? #Inners #Maddow #Lawrence #MSNBC"                                                                                                                                                                                                         
## [1661] "covid-19 but sung to the tune of come on eileen"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1662] "The US Not Looking So Good For The Covid-19 https://t.co/ToLe0J7V04"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1663] "At work we’re told we CAN’T wear any PPE such as masks etc when working with patients until we have a confirmed case of COVID-19 in our facility <U+0001F643><U+0001F643><U+0001F643>"                                                                                                                                                                                                                                                                                                                      
## [1664] "{editor} Thieves try to cash in on demand for food amid Covid-19 crisis https://t.co/KavqgrWPWP"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1665] "Well, that's it. The family has said NO MORE @realDonaldTrump RALLIES, the ones that kinda start at 5:00 where he mentions the great job he's doing on #COVID<U+30FC>19\nWe have to watch old movies on Netflix.\nTrump is playing 2nd fiddle to Costner in Tin Cup.\nI voted for Blazing Saddles"                                                                                                                                                                                                            
## [1666] "<U+0001F680>We can help our local #smallbiz by buying gift cards to provide critical $$$ support during the #COVID19 crisis. \n#Smallbiz is the backbone of our economy.\n<U+0001F4AA> #savingmainstreet <U+0001F4AA>\n.\n.\n.\nClick<U+0001F449><U+0001F449><U+0001F449> https://t.co/oeaMmsn5FN https://t.co/cF7tA923LP"                                                                                                                                                                                    
## [1667] "To think, He asked his cadre to help his biggest rival succeed in controlling the #Covid19, regardless that he will not get any credit for this.\n\nThere is still hope for India, the Spirit of Indian-ness is far stronger than self elevation. KUDOS @dpradhanbjp!\n#IndiaFightsCorona https://t.co/xbQuavLLO4"                                                                                                                                                                                            
## [1668] "#Covid-19 The sudden 21 days lock down in India may kill more people than Corona. The poorest of the poor, the daily wagers are walking thousands of Kilometers to reach their home. https://t.co/t6doqsop1z"                                                                                                                                                                                                                                                                                                 
## [1669] "Excellent piece @theintercept by @StephanieKelton explaining how the government is going to \"pay for\" the #coronavirus #StimulusPackage2020 (and I nice example of the flavor of her upcoming book \"The Deficit Myth\"\nhttps://t.co/bT2AwXaJc5"                                                                                                                                                                                                                                                           
## [1670] "@RailMinIndia I have a suggestion for indian railways for COVID-19 Why can't we convert our Trains which were anyways standing in their yards into corona isolation ward or hospital bcs with this we can save alot of cost required for such infrastructure required #CoronaOutbreak"                                                                                                                                                                                                                        
## [1671] "The #Gambia has declared a state of public emergency, as part of measures to contain #COVID19 pandemic. \n\nWe call on the public to adhere to these measures and follow the precautionary guidelines. Protect yourself and everyone around you. \n\nCall 1025 for more information. https://t.co/0qmlTLuEsH"                                                                                                                                                                                                 
## [1672] "Of all the leaders that I’ve listened to in regards to the covid-19 crisis, I find this to be the most succinct, transparent, and down to earth.\n\nSingapore PM Lee Hsien Loong: Need everyone's cooperation in fight again... https://t.co/Ecx1I3J2OG via @YouTube"                                                                                                                                                                                                                                        
## [1673] "Protecting Democrat legislators from catching COVID-19: is very considerate of him. https://t.co/ke7Vp53kK3"                                                                                                                                                                                                                                                                                                                                                                                                  
## [1674] "\"“For every ventilator we are short, a patient dies,” tweeted the congressman. “You downplayed the risk of #COVID19 &amp; now U.S. has most cases in the world. Don’t downplay risks again &amp; repeat the same mistake.”\n#TrumpKillsPeople\nhttps://t.co/nx6Elpbjfj"                                                                                                                                                                                                                                 
## [1675] "#BreakingNews: Its another leap as #CoronaVirus confirmed cases hit 81 in #Nigeria\nhttps://t.co/ShVAqUs6r8 #news #COVID19Nigeria https://t.co/FxWXR2YsH2"                                                                                                                                                                                                                                                                                                                                                    
## [1676] "Steck Medical has updated protocol due to COVID-19. Here are the details of the protocol as well as information for the patients. Thank you for your cooperation and understanding during these challenging times of change. https://t.co/o6vbnZmvwk"                                                                                                                                                                                                                                                         
## [1677] "You're not alone. \n\n#CoronavirusOutbreak #CoronaVirusSeattle #COVID2019 \n\nhttps://t.co/NReaApBTqE"                                                                                                                                                                                                                                                                                                                                                                                                        
## [1678] "Pangasinan authorities on Friday evening, March 27, confirmed 3 new cases of COVID-19, among them a man who didn’t disclose that he was under investigation for his symptoms. #COVID19PH https://t.co/q3Bzb4x8cr"                                                                                                                                                                                                                                                                                            
## [1679] "#ChinaLiedPeopleDied\n CHINA is accountable for the WUHAN VIRUS.\nThose infected Chinese people who travelled around the world to escape form a city lockdown are also accountable.\nFuck the CCP.\nAin’t no COVID-19, it is the WUHAN VIRUS.\nWUFUCKINGHAN VIRUS."                                                                                                                                                                                                                                          
## [1680] "Isobel Mackenzie reiterates Dr. Bonnie Henry: \"It's not just about you getting sick, its about bringing the infection home to your family.\" #COVID19"                                                                                                                                                                                                                                                                                                                                                       
## [1681] "Pastor dies from COVID-19 <U+2014> after claiming coronavirus was a ‘mark of the beast’ conspiracy https://t.co/UoxzygV6xv"                                                                                                                                                                                                                                                                                                                                                                                 
## [1682] "COVID-19 reports | Faculty of Medicine | Imperial College London    That makes some poor reading !  https://t.co/j5KOc899tc"                                                                                                                                                                                                                                                                                                                                                                                  
## [1683] "@chipfranklin Murdoch has spread a pathogen far more virulent than COVID 19. It totally destroys your brain and your soul."                                                                                                                                                                                                                                                                                                                                                                                   
## [1684] "Daily Crunch: Clearstep’s chatbot offers in-depth COVID-19 screening https://t.co/V94BIXi1n4"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1685] "So @RepMaxRose how is there not blood on @SpeakerPelosi hands for delaying the Bill when she came back to DC?? #Hypocrisy #coronavirus"                                                                                                                                                                                                                                                                                                                                                                       
## [1686] "Ever since I read that the loss of your sense of smell is a symptom of #COVID19 , I can’t stop smelling random things around my house, to reassure myself I haven’t got it.\n\nMy dog could use a bath."                                                                                                                                                                                                                                                                                                    
## [1687] "Family anti-corona vibes lol #coronavirus #InThisTogether https://t.co/PvoXuHzsuD"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1688] "Kodus to Medikal and Fella:.This is what some of our So called celebrities should be doing in times like these...just to help the needy..\n#SoulConcepts #COVID2019 https://t.co/9CmJo99wfL"                                                                                                                                                                                                                                                                                                                  
## [1689] "#coronavirus you can’t claim your the greatest country in the world if your health care is short of supplies... https://t.co/uHteNFBfaf"                                                                                                                                                                                                                                                                                                                                                                     
## [1690] "Flamingo Label Company is listed as “Essential Business” and will remain open during the “Stay-at-Home” order that was given today by Governor Gretchen Whitmer for the COVID-19 pandemic.\nThe safety of our customers, employees, &amp; their families are our first priority. \n#labels"                                                                                                                                                                                                               
## [1691] "The #COVID<U+30FC>19's message to the Church - begin to develop new, more effective and modified ways of doing ministry this end-time!\n\nThere is a shift this year #Year2020 - We are in the end-time!\n#Day6 #30DaysWordMinistration"                                                                                                                                                                                                                                                                      
## [1692] "#ICYMI @rcbetker Spokesperson &amp; President @canadanurses joined @benminer &amp; @bilalv87 on the #BenNBilal show to talk how Canadian Nurses are dealing with #COVID19\n\nhttps://t.co/RMBMTnIrqk\n\nCatch Ben &amp; Bilal weekdays at 5pm ET! Here on #SiriusXM Ch.167 @siriusxmcanada or on the app"                                                                                                                                                                                                     
## [1693] "Separating the Facts From the Misinformation About COVID-19 by @davetroy in @elemental https://t.co/rzzOebF67g"                                                                                                                                                                                                                                                                                                                                                                                               
## [1694] "@marcelanais @caceci786 Less than a week ago Boris Johnson, British Prime Minister said that \"people should have sick to make the diales in the ...\" for the good of the world economy \"and that it would not close any border. Well, he added positive for covid-19 <U+0001F60F> Let's see that as \"strong\" is he."                                                                                                                                                                                     
## [1695] "I HATE 2020!!!!!!!\n\n#WGI #DCI #CORONAVIRUS https://t.co/rAzFO1kOdt"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1696] "Covid-19: FG Committed to further decongest prisons <U+2013> Malami https://t.co/uYetBCqoiW"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1697] "The political climate is fragile right now and the office of #COVID<U+30FC>19 is damaging reputations in all areas, even the tech community  https://t.co/n8DXSvDGke"                                                                                                                                                                                                                                                                                                                                         
## [1698] "Note: When you shop for necessities at https://t.co/LMbTNE39Gj, a percentage of your purchase supports Thomas White Jr Foundation Inc. In this time, we are all inconvenienced by this crisis of COVID-19 and can use every bit of your help. Stay strong and Safe #Stayhome #Nonprofits"                                                                                                                                                                                                                     
## [1699] "@MimiKennedyLA @nytimes I wonder if anyone who survives COVID 19 still carriers it and for how long?"                                                                                                                                                                                                                                                                                                                                                                                                         
## [1700] "Great story that covers the effects of #COVID19 on many experimental research groups.  Thanks #NYTimes https://t.co/BjRqaXwcX7"                                                                                                                                                                                                                                                                                                                                                                               
## [1701] "Say a prayer for my country. We shall overcome. #COVID19 <U+0001F1F3><U+0001F1EC> https://t.co/d4vW3qzBbm"                                                                                                                                                                                                                                                                                                                                                                                                    
## [1702] "@BaleMeenal In view of the outbreak of Covid-19 there is nation-wide lockdown as per Govt. directive and in these challenging times with limited resources our team is working round the clock to address all customer queries &amp; requests. 1/2"                                                                                                                                                                                                                                                           
## [1703] "Hey @PGATOUR and @TheMasters\n\nLet’s get the boys back on the course w/o spectators\n\nEven decrease group size if needed\n\nHave more audio so we can hear players talk to caddies\n\nMillions would self isolate to watch\n\nIt would actually be a public service\n\n#coronavirus #pgatour #pga"                                                                                                                                                                                                         
## [1704] "Our caregivers are true healthcare heroes! Support them and Beverly and Addison Gilbert Hospital by making a gift to our  Emergency Response Fund for COVID-19. https://t.co/fnu2aX4Mqn https://t.co/hISumMed5r"                                                                                                                                                                                                                                                                                              
## [1705] "COVID-19 infections top 500,000 as US OKs USD-2-trl relief bill \nhttps://t.co/2auEN9PRCX \n#KUNA \n(I.F)"                                                                                                                                                                                                                                                                                                                                                                                                    
## [1706] "At 8pm tonight, I will proudly clap and cheer for all front line staff. This includes my colleagues and social workers around the world. Without our team spirit, I don’t know where we would be. I am proud to be Social Worker. #COVID2019 #clapforourcarers https://t.co/OikxQD479M"                                                                                                                                                                                                                      
## [1707] "#coronavirus \nKeep the emotions &amp; panic away for a moment &amp; think -\n\nWhy Dr.Fauci &amp; American MSmedia aren't excited about Chloroquine being a probable treatment but r making us believe that ONLY a Vaccine is d hope?\n(&amp; No advice on Vit supplementation!)\n<U+0001F911>\nhttps://t.co/IMmySVLRTK https://t.co/6WFThCvlQx https://t.co/DreDkBaXP6"                                                                                                                                     
## [1708] "Advertisers do the right thing: boycott @seanhannity and @IngrahamAngle by not buying ad-space for their shows! And send a message on behalf of all Americans, esp those most impacted by Covid-19, that their behavior was unacceptable and will no longer be tolerated in our country! https://t.co/mzHNLxlEx4"                                                                                                                                                                                             
## [1709] "@HeatherHabsburg Trump botched the response to #coronavirus, the stock market crashed, and the economy has screeched to a halt. This can only mean one thing: it's time for a war.\n#WagTheDog"                                                                                                                                                                                                                                                                                                               
## [1710] "Final year Computer Science thesis dissertation in video-conference at University of L'Aquila, Italy, while #COVID19 attacks the Country\n#CS @univaq #MSTeams https://t.co/YVhCST3fih"                                                                                                                                                                                                                                                                                                                       
## [1711] "@funder Totally bizarre! Every time we think he can’t go any lower, he goes even lower. Soon he will be underground. We wish!\n#TrumpVirus\n#coronavirus \n#impeached4life \n#ImpeachedTrump"                                                                                                                                                                                                                                                                                                                
## [1712] "The end. \n#usa #COVID2019 https://t.co/aGlUYnWrHU"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1713] "@davidsoho1 My clinical days are behind me (albeit, call-up papers may arrive soon?), but applauded my sister: a nurse-anaesthetist in cardiothoracic surgery. Very proud: privately worried, given PPE situation. #Covid19-2020 <U+0001F947>"                                                                                                                                                                                                                                                                
## [1714] "You guys listen up. China is still very dangerous. PLEASE DO NOT COME TO CHINA!!! DO NOT USE MEDICAL EQUIPMENTS EXPORTED FROM CHINA!!! And make sure your friends know that information. God bless you<U+0001F606>#COVID2019"                                                                                                                                                                                                                                                                                 
## [1715] "#LockdownHouseParty #LockdownForLove #LockdownIreland #lockdownuk #COVID19 \n\nA song of hope in these challenging times <U+2618><U+FE0F><U+0001F49A><U+0001F64F>\n\nhttps://t.co/nBYAUt9OWv"                                                                                                                                                                                                                                                                                                                 
## [1716] "@zayebanks 3 - Is Bill Gates “digital certificate” of COVID-19 vaccine Revelations 13 coming to life?\nhttps://t.co/ufGmuiqBNn"                                                                                                                                                                                                                                                                                                                                                                             
## [1717] "we NEED all Americans over 15 years old to have AT HOME TESTING sent to our houses and sent to the lab. A country that is worth 17.7 trillion dollars can surly afford this! #COVID19"                                                                                                                                                                                                                                                                                                                        
## [1718] "U.S. just surpassed China on overall cases today... wtf @realDonaldTrump you have screwed us all over. Your lies and lack of protection for workers, and drive for profit have put us all at risk. #CapitalismKills #COVID19 #UScovid #ImpeachNow"                                                                                                                                                                                                                                                            
## [1719] "Spent the first 39 minutes of my birthday surfing https://t.co/8l3FOmTA0U... <U+0001F389> <U+0001F389> #COVID19"                                                                                                                                                                                                                                                                                                                                                                                              
## [1720] "ATTENTION <U+2066>@dougducey<U+2069> and <U+2066>@drcarachrist<U+2069>, an analysis by the <U+2066>@nytimes<U+2069> shows Arizona dead last in #coronavirus testing in the U.S.  https://t.co/CPSNyDxE1b"                                                                                                                                                                                                                                                                                                     
## [1721] "The quote above is not unproblematic, but this is a good time to revisit Illness as Metaphor by #SusanSontag. Certain metaphors are more damaging than others. Case in point: the language of warfare in responses to COVID-19.\n\nhttps://t.co/O4b541Sllj"                                                                                                                                                                                                                                                   
## [1722] "#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 Great unsigned music Sun Ra by Between Suns @sunsbetween via @quitegreat Listen on https://t.co/CnNg5Lvd7i or on https://t.co/pyHWGqFA4R https://t.co/08vnEFwfMt"                                                                                                                                                                                                                                                                                     
## [1723] "Did you know the recall is now collecting signatures from Alaskans at HOME? Request your household's booklet today.\nhttps://t.co/bGaObP7DGj\n\n#COVID2019 #AKLeg #RecallDunleavy"                                                                                                                                                                                                                                                                                                                            
## [1724] "@Tigerlil2 10 deaths today. Got to face up to it Tadgh Im afraid. It will be a long time now before we can say nobody in Ireland died of #COVID19 today. If we get out of this with less than 2000 deaths we will have done pretty good. However I think history will say Ireland deal with it well"                                                                                                                                                                                                          
## [1725] "Coronavirus Australia: Frontline COVID-19 health workers may be protected with BCG vaccine \n#新型コロナウイルス\nhttps://t.co/Wp6qnEXZyf"                                                                                                                                                                                                                                                                                                                                                                    
## [1726] "#Refugees to the #rescue? #Germany #taps #migrant\n#medics to battle #virus [AMP] | \n\n https://t.co/zIESW0CVcA \n\n#bigdata \n#healthCare #GERMAN \n#COViD19 #Linux #COViD19USA #Covid19iNDiA #COViD19UK #CANADA #COViD19france #COViD19italy\n\n#USA #indiaLOCKDOWN #china #iran #UKLOCKDOWN"                                                                                                                                                                                                              
## [1727] "Does #coronavirus spread through animals <U+2753>\nAccording to the @cdcglobal and @who, there is no evidence to spread #COVID19 by pets.\nRead Our Blog Now<U+0001F447>\nhttps://t.co/BJanzxVyfD\nSpend Time With Your Pets<U+2764><U+FE0F>\n#maroonmartin #pets #CatsOfTwitter #dogsoftwitter #StayHome #Read #blog #USA https://t.co/tTatGMdrw2"                                                                                                                                                           
## [1728] "@salmaiorana @ByJerrySullivan The 2009 swine flu infected 1.4 Billion people around the world, and killed 575,000 people. \n\nThere was no media panic, and societies did not shut down. \n\n#Coronavirus has infected less than 468,000 people, and killed 22,000 going into April. \n\nJust a little perspective."                                                                                                                                                                                          
## [1729] "@ABSCBNNews I feel sorry for her. However what she said about the covid 19 pandemic as “nature’s way of cleansing” was very insensitive. This is a lesson for all to be careful of their words."                                                                                                                                                                                                                                                                                                           
## [1730] "When other news outlets are making #COVID19 articles free @TheAtlantic is not. Why is that? \n\nBut I was able to read it, my \"last free article\" and I agree, it's a must-read. https://t.co/6wdLDClR9X"                                                                                                                                                                                                                                                                                                   
## [1731] "It’s Always 5 o’clock Somewhere  !!!<U+0001F451><U+0001F943><U+0001F377><U+0001F942><U+0001F483><U+0001F3FD><U+0001F57A><U+0001F3FD><U+0001F37B><U+0001F379><U+0001F37E><U+0001F451><U+2728><U+0001F539><U+0001F539>#Tgif #lol #socialdistancing  #lit #bar #drinks #libation  #funny #besafe  #2020 #mood   #staywoke #covid19 #coronavirus #quarantined  #lastcall \n         #bestlife… https://t.co/7YNaiMrc05"                                                                                        
## [1732] "These are the people you put to take over at night. \nTheir minds already filled with beating normal citizens. Look at how proud they are.\n@HassanAliJoho\n#COVID2019 \n#CurfewinKenya \n#Mombasa https://t.co/bUuSn2YL0N"                                                                                                                                                                                                                                                                                   
## [1733] "BREAKING NEWS: \n\n85 new CoronaVirus cases in New Zealand. \n\n#CoronaVirus #COVID19 https://t.co/etcQIrHLFq"                                                                                                                                                                                                                                                                                                                                                                                                
## [1734] "Simple message! Stay at home! But the not rights couldn't do it. Now look! This isn't a public holiday! This isn't a time for parties and BBQs.  #winterhill #CoronaLockdown #covid19 #moorsfire https://t.co/XoCONEnrru"                                                                                                                                                                                                                                                                                     
## [1735] "#CORONAVIRUS\nThe quarantined passengers who are in 14 days of isolation in #SaudiArabia are placed in 5 star hotels. Some pictures of the gifts - chocolates and fresh fruit being distributed. @ Saudi Arabia https://t.co/CleCMmEncO"                                                                                                                                                                                                                                                                      
## [1736] "I'm a diagnosed #OCD #germaphobe with social anxiety distorter.  I was to for years to learn not to wash my hands all the time and force myself to be close to people.  Now I'm the one that is doing things right.\n#COVID19  #CoronaLockdown"                                                                                                                                                                                                                                                               
## [1737] "Estimates of the economic costs to expect in the #Covid19 crisis. Quick solutions from science, technology and innovation are needed for the recovery reboot. https://t.co/scqS2PSmah"                                                                                                                                                                                                                                                                                                                        
## [1738] "There are giant chicken and pig and beef processing plants all over the US and Canada. Small farm ones too. \nGourmet farm to table restaurants. \nLive animals get butchered, and cooked. This is not some \"Asian thing\" and that meat on your plate didn't appear by magic. #covid19"                                                                                                                                                                                                                     
## [1739] "COVID- 19: FG tracing 4,370 people, says may be forced to use ‘strong arm’ tactics - https://t.co/vxiNDb9m1w"                                                                                                                                                                                                                                                                                                                                                                                               
## [1740] "GameDay analyst @kirkherbstreit talks about how he sees #Covid19 affecting the NFL and College Football seasons. We asked him what the NFL Draft broadcast might look like for him. That and more. Listen here: https://t.co/Z97P102As9"                                                                                                                                                                                                                                                                      
## [1741] "The Fellas talk more about Covid-19 and the mind frame of some of the masses. They Dive a little deeper into how the Rona is effecting life as we know it. How is life for you the people? We love y'all all be safe and be clean!\n\nClick the link to listen: https://t.co/RySnw6zi7i https://t.co/4EqJA94N4b"                                                                                                                                                                                              
## [1742] "Germans killed millions of people, including 6 million Jews. Today, Germany is an economic giant, the biggest economy in Europe. In Africa, everyday, religion critics are telling us about the clergy. What have the catholic priests done to provoke global pandemics like  COVID-19?? https://t.co/OBD5j7rk0k"                                                                                                                                                                                             
## [1743] "Allen Crawford Thomas and Mark Ayton, two strategy specialists at @Jisc, explain why universities should adopt a 'more haste, less speed' approach to dealing with remote working during the #coronavirus crisis.\n\nRead more: https://t.co/FTeCnCb2nn https://t.co/QHsiwNIoKY"                                                                                                                                                                                                                              
## [1744] "@areyousurebruv oh boy... bruv... have you seen the new york city health department’s covid-19 update?"                                                                                                                                                                                                                                                                                                                                                                                                      
## [1745] "As our community works together to prevent further spread of COVID-19, it's amazing to see the # of people stepping up to aid essential workers, businesses &amp; neighbors in need. Today's community update focuses on a few of these local initiatives:  https://t.co/DocOJz6Ucj https://t.co/vOXq0XYLwU"                                                                                                                                                                                                  
## [1746] "Please support if you can @MrPranPatel  #coronavirus #COVID19 #SelfEmployedMatterToo https://t.co/D5gZIgm2cO"                                                                                                                                                                                                                                                                                                                                                                                                 
## [1747] "Thank you @NYUMcSilver for assisting in New York's #Coronavirus response by providing online resources and best practices for mental health professionals #COVID19KnowCare https://t.co/8dxBF33mjL"                                                                                                                                                                                                                                                                                                           
## [1748] "Covid-19 reaction review, which one is worse?\n#UltimateLoveNG \n#ClapforLagos \nTB JOSHUA\n#TakeResponsibility"                                                                                                                                                                                                                                                                                                                                                                                              
## [1749] "I just heard on #WOAI1200 that all those who were quarantined at Lackland were sent home, including those who have #COVID19 and are still recovering. Why are we sending positive cases back to their community? @Ron_Nirenberg @JoeTalkShow @treywareshow @ksatnews"                                                                                                                                                                                                                                         
## [1750] "I love this!! \n\nEveryone pull out your wonderland and CNE giant prizes!\n\n#Canada #FreeAirHug #COVID2019 https://t.co/MGC9Ud2Cg7"                                                                                                                                                                                                                                                                                                                                                                          
## [1751] "I would be watching @DisneysMulan in theaters but Covid-19 had other plans<U+0001F612>"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1752] "Apparently, COVID-19 takes away your sense of taste and smell. And allows you to eat... lemons? <U+0001F34B><U+0001F34B><U+0001F34B>https://t.co/3dct1jw8I6"                                                                                                                                                                                                                                                                                                                                                  
## [1753] "#MVSU students: as majority of the University offices has gone virtual to working remotely; the essential offices of enrollment management remains fully open. The University continues to closely monitor the pandemic of COVID-19 and the safety of its staff on campus."                                                                                                                                                                                                                                   
## [1754] "@wvllop #DECLINED. SHAME ON YOU! STOP TRYING TO SCAM PEOPLE. YOU WILL REAP 10x WHAT YOU ARE SOWING. @pulte @TeamPulte @CashApp this person is using CashApp to SCAM people! #COVID #COVID19 #ScamAlert #SCAM #ScamAware"                                                                                                                                                                                                                                                                                      
## [1755] "Because this is the video that @realDonaldTrump @POTUS doesn’t want you to see. #coronavirus #LiarInChief https://t.co/kTG9lffoBu"                                                                                                                                                                                                                                                                                                                                                                           
## [1756] "Today, we will reach over 400 deaths. The most America has lost to #COVID19 to date. When we have an incompetent bafoon like this as president, it adds to the grief that this country is already experiencing. It is torture and criminal! #CongratulationsAmerica https://t.co/W5dKFWTWAH"                                                                                                                                                                                                                  
## [1757] "New post (Cricket should be last on everyone's mind now, safety is priority: Ravi Shastri on Covid-19 crisis) has been published on ApzWeb - https://t.co/yJjOFOFt98"                                                                                                                                                                                                                                                                                                                                         
## [1758] "A4.4 Check out @fractweets’ guide to ensuring access to WIC during #COVID19: https://t.co/df6OvxcVBm #FoodFri https://t.co/J4CX2eO0cv"                                                                                                                                                                                                                                                                                                                                                                       
## [1759] "Charities That Help Millions Of Canadians Warn They Won't Survive COVID-19 https://t.co/1QGv87NSLX"                                                                                                                                                                                                                                                                                                                                                                                                           
## [1760] "@noamscheiber id like to see about maybe getting your help with uber and lyft as they refuse to pay driver's as promised for COVID-19 financial assistance."                                                                                                                                                                                                                                                                                                                                                  
## [1761] "Verizon understands the need to stay connected, especially in difficult times. Learn more about how @Verizon is responding to COVID-19. #IamVZ https://t.co/V1gZMKc0Hw"                                                                                                                                                                                                                                                                                                                                       
## [1762] "Remember: chloroquine has not been proven to work (yet). The paper showing this is clear as mud (to put it nicely).\nhttps://t.co/E2c0oe0hup"                                                                                                                                                                                                                                                                                                                                                                 
## [1763] "Testing in KP(566 cases) vs Islamabad ( 459 tests) for #COVID2019 is around 24% more\n\nIslamabad pop is 2 million \n\nKP pop is 30mn plus ( 1500% more)\n\nIslamabad is hogging testing kits ?\n\nJustice and fair play in health facilities will bode well for the war against Corona! https://t.co/2Q1lhp93jD"                                                                                                                                                                                             
## [1764] "Not All Americans Are Fighting Over Toilet Paper: 5 Good Deeds Done During The COVID-19 Pandemic https://t.co/GiPYfurMmc"                                                                                                                                                                                                                                                                                                                                                                                     
## [1765] "What are Nigerian native doctors doing about this Covid-19? Iya herbalists and Co.?"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1766] "Join our @EY_US webcast on 3/30 to hear about the eligibility, requirements &amp; conditions to receive CARES Act support. The CARES Act aims to keep workers employed and provide health care system enhancements &amp; economic stabilization. Register: https://t.co/BfaH2oJtzO  #COVID19"                                                                                                                                                                                                                 
## [1767] "Maryland Gov. Larry Hogan on 77WABC says his state is seeing rapidly escalating #COVID19 cases https://t.co/1n3tZ7fV61"                                                                                                                                                                                                                                                                                                                                                                                       
## [1768] "Be advised, @I_Corps COVID-19 update for March 27. https://t.co/VpfjUFSIxf"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1769] "@JGOOD5124 @Local4News Time for more math.  If covid-19 infects 61 million Americans at its current expected mortality rate of 2 percent then that means 1,220,000 dead Americans,  and the death rates in some countries are over 10 percent."                                                                                                                                                                                                                                                               
## [1770] "Sad to say that every crab from the crab dance video has been killed by COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1771] "Jan. 27, 2020 - @WHO said #coronavirus. NOT a global emergency. https://t.co/pWzUrNMCqt"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1772] "Femi Felix - Walking Away | Naija Songs // #Naijapals https://t.co/iBX0JcCOn2\n#SaturdayThoughts #SaturdayMood #StaySafeNigeria #SaturdayMood #SaturdayMorning #CoronaLockdown #Tacha #Quarantine #COVID #StayHome #coronaviruske #COVID2019Ghana #StaySafeNigeria #COVID19 #JesusSaves"                                                                                                                                                                                                                      
## [1773] "At least one of six RCMP employees with COVID-19 from B.C.\nhttps://t.co/8HidP6JVPu https://t.co/5cc0woVLdk"                                                                                                                                                                                                                                                                                                                                                                                                  
## [1774] "Food for thought <U+0001F914>#nycoronavirus #COVID19 https://t.co/nv5UgGNfQw"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1775] "Surrogacy: new parents stuck in US amid Covid-19 shutdown <U+2013> If you are facing issues, you can contact our team on: hello@ngalaw.co.uk.\nhttps://t.co/QMkImPSaoo"                                                                                                                                                                                                                                                                                                                                       
## [1776] "235 positive cases in Iowa and three people have died due to the virus. https://t.co/EVsUOsL2yE"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1777] "@CamillaTominey Harry and Meghan have gone so what they do matters not, however if its true that his father had Covid 19 symptoms prior to travelling to Scotland, he’s not exactly setting much of a good example risking infecting a second household and their families/community is he."                                                                                                                                                                                                                 
## [1778] "Derbyshire Police have used drones to deter people from breaking the #coronavirus lockdown rules by travelling to remote areas for their daily exercise. @AsiansUK @UKLabour https://t.co/yz5oo0k8CC"                                                                                                                                                                                                                                                                                                         
## [1779] ".@NewcastleJetsFC confirm player tests positive to COVID-19 https://t.co/Vr2eZy77B0 via @newcastleherald https://t.co/wQ47g8pXX8"                                                                                                                                                                                                                                                                                                                                                                             
## [1780] "Our CEO, @meganmotto has been quoted in \n@DigFinGroup article, 'More to ASX’s DLT extension than Covid-19 chaos'. \nRead more here: https://t.co/H97KrcGf0i #CoronavirusAu #CoronavirusOubreak #ASX https://t.co/r6EsyQ5BXU"                                                                                                                                                                                                                                                                                
## [1781] "There are at least 62 patients hospitalized at UAB Medical Center in Birmingham because of complications from COVID-19 as the number of confirmed cases has skyrocketed to 501 in Alabama.\n#alabama #COVID19\nhttps://t.co/UEHGTIAXs6"                                                                                                                                                                                                                                                                       
## [1782] "President @realDonaldTrump will travel to Norfolk, Virginia, this Saturday to bid bon voyage to the hospital ship USNS COMFORT as it leaves for New York City to the frontlines of the COVID-19 virus response."                                                                                                                                                                                                                                                                                              
## [1783] "@shattawalegh @NAkufoAddo Hi there,\n\nI'd really appreciate it if you could share or donate to this GoFundMe,\n\n*COVID-19 AFRICA ACTION*\n\nhttps://t.co/Y2a0EQjJlq"                                                                                                                                                                                                                                                                                                                                        
## [1784] "The UK government is using various tactics to suppress the number of #coronavirus deaths.\n\nAnother one is NOT including deaths in the Covid-19 tally unless relatives have given instructions that this should happen. https://t.co/pxbDX1WIYw"                                                                                                                                                                                                                                                             
## [1785] "Bored of being stuck at home? Pick up a book! Support your local bookstores and order online. <U+0001F4D6><U+0001F4DA>Support https://t.co/sBiWDscIUY for audiobooks as they support local bookstores with their proceeds. \nJoin a bookclub like @lifes_library with me! Or do all 3\n #coronavirus #bookworm"                                                                                                                                                                                               
## [1786] "Massie, and That Pesky Constitution, Hold Up COVID-19 Bailout Bill - https://t.co/bUTmzXyuUR"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1787] "\"India's response to COVID-19 has been preemptive, pro-active and graded \" Read detailed timeline and statement by the Government below on\n#CoronaUpdate\n#CoronaLockdown \n#CoronavirusOutbreak https://t.co/TrPc2kzSC2"                                                                                                                                                                                                                                                                                  
## [1788] "Oh How The Times Have Changed\n\n#Meme #Memez #Coronavirusmemes #COVID2019 #covidmemes #memer #memes #laugh #funny #future #corona #virus #pandemic #comedy #laughter #StayHome #COVID<U+30FC>19 #Quarantine #StayHomeSaveLives #instagram #instamemes https://t.co/CZRmM7Mcm6"                                                                                                                                                                                                                               
## [1789] "This is unacceptable. Release the supplies NOW! #COVID19 #WeNeedPPE #MINeedsPPE https://t.co/YpkSIR4x2Q"                                                                                                                                                                                                                                                                                                                                                                                                      
## [1790] "Jails and prisons are particularly vulnerable to the spread of COVID-19. We need action now. https://t.co/PNr7V6gWHi"                                                                                                                                                                                                                                                                                                                                                                                         
## [1791] "fuck COVID-19 i wanna hug my bro’s <U+0001F61E>"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1792] "Two COVID-19 deaths reported in Nebraska; Directed health mandates expanded https://t.co/t6DCkeACRP https://t.co/SF7dGMUZWM"                                                                                                                                                                                                                                                                                                                                                                                  
## [1793] "Some great examples of how players are using Animal Crossing to stay in touch with friends during the COVID-19 pandemic. \n\nSocial nature of gaming + Online connectivity + Gaming worlds = A great way to pass the time, stay in touch, be entertained. \n\nhttps://t.co/l0FJDt9UWU"                                                                                                                                                                                                                        
## [1794] "Let the #coronavirus keep going one more day. Fuck a mask I’m going #fullsamurai @ Wu's House Evergreen Park https://t.co/jfEGLyxBC1"                                                                                                                                                                                                                                                                                                                                                                        
## [1795] "#RalphLauren #stimulusbill #StimulusPlan #TogetherAtHome #ThankYou <U+0001F1FA><U+0001F1F2><U+0001F1FA><U+0001F1F2><U+0001F1FA><U+0001F1F2>Produce Face Masks and Isolation Gowns as Fashion Brands Respond to #COVID-19 #pandemic #Topbuzz https://t.co/1rDIDVqZ0k"                                                                                                                                                                                                                                          
## [1796] "Missing your loved ones during #COVID19? \n\nLet them know you’re thinking of them by sending a message and a picture to them through @IsFearrAnStar https://t.co/nGly1I3tJr"                                                                                                                                                                                                                                                                                                                                
## [1797] "With the #COVID19 causing an unprecedented impact on the Healthcare Marketing Industry, non-personal promotion is critical. To date, 10 of the top 20 pharmaceutical companies have grounded their HCP facing employees. Keep connected with https://t.co/MM9ZU6pWzQ #partnercontent https://t.co/3ViY2hJPut"                                                                                                                                                                                                 
## [1798] "Third day into the I'll thought out lockdown, India has seen its first starvation death.\n\nThis is entirely on @narendramodi 's cruel response to #Covid19 https://t.co/5OxBT6x3ev"                                                                                                                                                                                                                                                                                                                          
## [1799] "Covid-19 is killing me and i\nI must confess i hate quarantine, quarantine\nI miss my friend? Im losing my mind\nGive me a sign, when can i go back outside<U+0001F609>\n\nGimana? Bernada gak wkwkww"                                                                                                                                                                                                                                                                                                        
## [1800] "Would that words fail. #COVID19 https://t.co/tB0yK90vsx"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1801] "From HIV \nto \nAustralian Hendra\nto\nAll influenza menace (Spanish flu to covid 19)\nto Ebola"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1802] "House passes $2 trillion COVID-19 emergency bill  https://t.co/g64jSMIJdt"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1803] "COVID-19 be wilding everywhere fam!!!!\n\nDamn!!<U+0001F926><U+0001F3FF><U+200D>♂<U+FE0F>"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1804] "ANNAPOLIS <U+2013> Maryland had 580 confirmed COVID-19 cases, as of Thursday morning, after 157 new cases were reported in this state during a 24-hour period, according to a written statement by Gov. Larry Hogan, who further reported that it “is by far the… https://t.co/FsmPeF6z7J"                                                                                                                                                                                                                  
## [1805] "Now is the time to cling to the Divine and the intangible, for these are the greatest forms of wealth that we posses.  These are the things that will get us through times of uncertainty.\n<U+0001F64F>\n#COVID2019 \n#meditation #yoganidra #Spirituality#compassion PrayersForCoronaFreeWorld"                                                                                                                                                                                                             
## [1806] "#Coronavirus: '#Nature is sending us a #message’, says #UN #environment chief | World news | The Guardian via @soph_delorme https://t.co/0kJ8JFzw1F https://t.co/tA22ItoWqP"                                                                                                                                                                                                                                                                                                                                 
## [1807] "A protest for how the government overreacted to covid-19... apparently only 5 people showed up. Nice they’re still following the under 10 rule <U+0001F44C> way to go Omaha! https://t.co/1UDVz2CAvl"                                                                                                                                                                                                                                                                                                        
## [1808] "@JRinPueblo @SharonIsrael10 @realDonaldTrump Personally I feel that this 'Pandemic' is suspicious &amp; the  hullabaloo over COVID-19 death rate is far less than this Flu Season death rate!  Something is wrong  with this whole thing &amp; it feels more Political than anything! https://t.co/S3ogfgeJYx https://t.co/oOGG2QlpNz"                                                                                                                                                                        
## [1809] "Many Friends raise #Germany data as an issue, it is not an issue and is correct.\n\nSitRep. Pos Test &gt; nofity Local Authority &gt; notify RKI &gt; collates all the #covid19 data &gt; reports to Gov &amp; WHO\n\nLots of people no idea what they are talking about yet give an idol opinion as fact. https://t.co/VvHEiMzgiV https://t.co/goyOgbJYAB"                                                                                                                                                   
## [1810] "Breaking News !!! Accra &amp; Kumasi Locked down for two weeks. #covid19 #Gh... https://t.co/y5FFFVU7fZ via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                         
## [1811] "ER at Beaumont Wayne closes to help treat surging COVID-19 cases, officials say https://t.co/k3pg0yJUz6 via @detroitnews"                                                                                                                                                                                                                                                                                                                                                                                     
## [1812] "Also from an infection prevention response perspective, this other particular side-effect of the COVID-19 lockdown looks problematic too. #condomsupply https://t.co/nySKI4CA3q"                                                                                                                                                                                                                                                                                                                              
## [1813] "Somehow @realdonaldtrump continues to find ways to shock me w/ his stupidity. #covid19 #covidiot https://t.co/AQPCecPuTk"                                                                                                                                                                                                                                                                                                                                                                                     
## [1814] "One of the biotech industry’s up-and-coming gene therapy companies is further delaying its plans for a U.S. drug launch, citing disagreements with FDA officials and the COVID-19 pandemic. https://t.co/3VI1woW6kB"                                                                                                                                                                                                                                                                                         
## [1815] "#Coronavirus\nMy baby rules the house- she is the QUEEN https://t.co/OfaOyF2CLk"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1816] "He’s likes this stuff he really gets it!! Lol <U+0001F602> #COVID19 #ThankfulThursday that this made me laugh but I’m crying because this is the leader we have, he can careless about human life, &amp; only cares about money!! https://t.co/6tklm0FZVJ"                                                                                                                                                                                                                                                  
## [1817] ".@SpeakerPelosi's latest despicable #Coronavirus ploy.\n\n@mboyle1 on #AMERICAFirst \n\n@BreitbartNews \n@SalemMediaGrp \nhttps://t.co/qTioE6MPRN"                                                                                                                                                                                                                                                                                                                                                            
## [1818] "Abbott Labs is unveiling a coronavirus test that can tell if someone is infected in as little as 5 minutes, and is so small and portable it can be used in almost any health-care setting https://t.co/9ifez9Uu6M via @business"                                                                                                                                                                                                                                                                              
## [1819] "The word \"immunocompromised\" has been used a lot in the news recently because it is associated with a higher risk for severe COVID-19 complications. I'm guessing a lot of people don't know what this means so I'm glad the @washingtonpost\nput out this video: https://t.co/iwM796yMms"                                                                                                                                                                                                                  
## [1820] "COVID-19 puts a chill on what was otherwise a hot housing market - here's what happened over the past two weeks in the Twin Cities https://t.co/DRpE9C5LZX"                                                                                                                                                                                                                                                                                                                                                   
## [1821] "Is your nonprofit looking for funding help during this hard time? We took the time to compile a list of organizations and foundations offering COVID-19 relief funding to make things easier for you and your nonprofit. You can download it here: https://t.co/F2Rit8fMUb https://t.co/Y6p2vkcpri"                                                                                                                                                                                                           
## [1822] "Officials say the patient was in the high-risk category due to age and underlying medical conditions. https://t.co/l8MYA9QPYS"                                                                                                                                                                                                                                                                                                                                                                                
## [1823] "@ebenezer_slim COVID-19 is scary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1824] "@Alyssa_Milano Trump will ride #coronavirus  to reelection!"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1825] "Heartbreaking thread... #HealthCareWorkers on the front lines of #COVID19. When your colleague becomes your critically ill patient.... https://t.co/YPi4Khf5MT"                                                                                                                                                                                                                                                                                                                                               
## [1826] "This third phase of #COVID-19 relief legislation likely will not be the last, and #healthcare industry players and lawmakers are already beginning to lay out their priorities for what's next. #coronavirus https://t.co/TgpJkVLoFr"                                                                                                                                                                                                                                                                         
## [1827] "@faborez Hi, the unroll you asked for: Thread by @joelrwrites: Date of 10th #Coronavirus case: Spain: Feb 26th Italy: Feb 21st UK: Feb 23rd Deaths (as of 24th… https://t.co/M2MF0B4Bqq. See you soon. <U+0001F916>"                                                                                                                                                                                                                                                                                         
## [1828] "US overtakes China as country with highest number of confirmed Covid-19 cases - Johns Hopkins University. One would reckon the actual number will not be accurately determined in the near future."                                                                                                                                                                                                                                                                                                           
## [1829] "Why is the John Hopkins University Covid-19 stats site reporting 212 deaths in NSW?"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1830] "A win for #workersrights https://t.co/p9FMc14vbE"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1831] "Tonight from 7 p.m. to 8 p.m., WOOD TV8 and @GovWhitmer  will hold a virtual town hall meeting about COVID-19 in Michigan and this event will be interpreted by a sign language interpreter. @WOODTV \nhttps://t.co/Ms7m3Mkne6"                                                                                                                                                                                                                                                                               
## [1832] "For the various people I see rationalising reasons why it’s okay for them to break the movement restrictions, I hope a relative doesn’t die because someone else thought the same and the chain wasn’t broken #COVID19 #lockdownuk"                                                                                                                                                                                                                                                                        
## [1833] "Professor of the Practice @bobettebuster lays out the current and potential impacts of COVID-19 on Hollywood and the film industry: https://t.co/EcFf8FwVcC"                                                                                                                                                                                                                                                                                                                                                  
## [1834] "Henry County Has First Positive Test for COVID-19 https://t.co/ea9vMLhZje"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1835] "@thedailybeast Trump denied approved aid to Ukraine that they needed to fight Russia. This is the same thing, except now Trump is denying help to Americans that they need to fight #coronavirus. What does he want? For governors to grovel at his feet, then praise him for DOING HIS DAMN JOB."                                                                                                                                                                                                            
## [1836] "Coronavirus updates: COVID-19 cases top half a million worldwide - Mar 26 @ 2:36 PM ET https://t.co/DMRcHVSlS3"                                                                                                                                                                                                                                                                                                                                                                                               
## [1837] "@EmTumilty I did a deep dive in this literature a few months ago. Such important information for anyone working with health care workers during and in the aftermath of COVID-19."                                                                                                                                                                                                                                                                                                                            
## [1838] "<U+2764><U+FE0F> @SecNorman &amp; appreciate that he took time to answer COVID-19 questions from kids. @KDHE #allinforKansasKids https://t.co/gb9AKtqrrJ"                                                                                                                                                                                                                                                                                                                                                     
## [1839] "A little bit of #truth. #COVID19 #Covid19usa #SocialDistanacing #HomelessCantStayHome <U+0001F622> https://t.co/tGzOXeIrZV"                                                                                                                                                                                                                                                                                                                                                                                   
## [1840] "Dr. Fauci Explains The Timeline And Risks Of Creating A COVID-19 Vaccine... https://t.co/cj7YKKdHqo via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                             
## [1841] "God will take absolute control <U+0001F647><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F647><U+0001F3FB><U+200D>♀<U+FE0F> I believe. #chioma #COVID19"                                                                                                                                                                                                                                                                                                                                                              
## [1842] "Before we clock out for the day, remember to sign up for SKCP's email list for general neighborhood information, COVID-19 updates, and census-related content. https://t.co/iefESF6edE"                                                                                                                                                                                                                                                                                                                       
## [1843] "<U+0001F4F9> COVID 19 symptoms https://t.co/Oq9QuPgbpH"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1844] "@harmo_L @IamAdamLFC You can't catch Covid-19 again once you've had it!!"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1845] "#Coronavirus @realDonaldTrump your failure to be a leader and listen to experts are causing #clusterfuck"                                                                                                                                                                                                                                                                                                                                                                                                     
## [1846] "Opinion: Grant bail to unsentenced prisoners to stop the spread of coronavirus - +GENERAL PHYSICS LABORATORY (GPL)\n\nPrison is, understandably, a very closed environment. Many prisons are also overcrowded. COVID-19 has already entered the ...\n\nhttps://t.co/vKvxDMqRlg"                                                                                                                                                                                                                               
## [1847] "Available Now: Global Fund COVID-19 Situation Report\n\nThe #COVID19 Situation Report brings together essential news and updates about the @GlobalFund partnership’s response to the pandemic.\n\nRead the full report: https://t.co/pPcM5SVnU3"                                                                                                                                                                                                                                                             
## [1848] "Join me &amp; other people of faith to rebuke a #COVID-19 Easter massacre https://t.co/u9ul44PGLT"                                                                                                                                                                                                                                                                                                                                                                                                            
## [1849] "China Recommends Bear Bile to Treat COVID-19, Worrying Wildlife Advocates https://t.co/4gm7kZ7ipO"                                                                                                                                                                                                                                                                                                                                                                                                            
## [1850] "@WinnersChapelNL Please see to this @segalink @NigerianPolice @PoliceNG_lagos @EiENigeria @followlasg @jidesanwoolu   no church service #covid19"                                                                                                                                                                                                                                                                                                                                                             
## [1851] "#Paris mars 2020 #COVID2019 https://t.co/fuC8FRLCYx"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1852] "Shut the Damn Airports Down ASAP!!! @POTUS @realDonaldTrump @VP @SecPompeo @StateDept @FoxNews @CNN #coronavirus #SaveAmerica @SenateStates https://t.co/lgIPIwCs54"                                                                                                                                                                                                                                                                                                                                          
## [1853] "Here's A Coronavirus Tip\nQ: What is the most touched surface at any store?\nA: The Credit Card Keypad\nTip: Use a common pencil's eraser to push the buttons!\nShare this &amp; your tips at #coronavirustip.\n\n#coronavirus https://t.co/2QfKXNNBgm"                                                                                                                                                                                                                                                       
## [1854] "Covid-19 could never deter Doris B <U+0001F624> https://t.co/j77cBjsAfM"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1855] "2 COVID-19 deaths reported in Muskegon County https://t.co/8ceMLehIpS"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1856] "Prostitutes probably willing to bust it open for $10 fee these days <U+0001F923> \n#COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1857] "With schools closing due to #coronavirus (#COVID19), it’s important to keep kids engaged, healthy, &amp; active at home. @CATCHhealth has a free, easy-to-use set of #HealthEd &amp; #PhysEd materials that require limited space &amp; supervision. Full info: https://t.co/iqVxwiQbxp #HPEatHome"                                                                                                                                                                                                          
## [1858] "UNHCR<U+00A0>- Syrian refugees aid vulnerable Swiss amid COVID-19 outbreak https://t.co/5IBWStkIOq"                                                                                                                                                                                                                                                                                                                                                                                                           
## [1859] "@RepAndyHarrisMD Andy, just declare that you will be voting \"NO\" and be done with it. That way we can be sure that we know where you stand on attacking COVID-19 and the economy. Small businesses and the unemployed in your district will appreciate your \"NO\" vote. Hospitals too. Show us, Andy."                                                                                                                                                                                                     
## [1860] "Update on Covid-19 In The DR from the desk of Maria Abreu\n\nhttps://t.co/PZIffIHBa8"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1861] "<U+0001F449>In Support of nation. <U+0001F600>\n\n<U+0001F449>Get free immunity boosting nutrition plan.\n\n#COVID19 #nation #health #freediet #diettips #nutritionfacts #nutrition #healthyeating #healthyfood #healthydiet #foodtips #getfit #body #dietitian #pcod #dietplan #weightlosstips #wellness https://t.co/76MH3Hw3Zt"                                                                                                                                                                            
## [1862] "This is weird. Celebrities in various countries testing positive for Coronavirus but having no symptoms... Why would you take the test if you don’t have any symptoms??? \n\n#ccpvirus #coronavirus #covid_19 #chinesevirus #covid19"                                                                                                                                                                                                                                                                        
## [1863] "2 points from @RaburnForBART re: #coronavirus impacts. \n1: @SFBART should consider ultraviolet or other advanced non-chemical means for train &amp; facility cleaning. \n2: That agency must be mindful of equity impacts of further service cuts &amp; minimize disparate impacts.\n@KQEDNews"                                                                                                                                                                                                              
## [1864] "Youth group tonight... #COVID19 #NorthwayChurch https://t.co/Gutgv3H8q4"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1865] "Anyone else missing #livemusic music? I'm going to watch some of these performances tonight! https://t.co/X9Yv0v7c0m #acllive #austincitylimits"                                                                                                                                                                                                                                                                                                                                                              
## [1866] "<U+0001F98B> IN IS THE NEW OUT<U+0001F98B> \nWe want to give something back to you in any way that we can, small or big, so we will be putting our #InIsTheNewOut T-Shirts in every order over £10 <U+0001F499>  #ISEEKindness #ISEELove #inwithISAW #COVID2019 https://t.co/wk9MLwFG7o"                                                                                                                                                                                                                     
## [1867] "\"Developed in just six weeks, the rapid test can detect a SARS-CoV-2 coronavirus infection in patients in under two and a half hours.\"\nSelf-contained, no need for a lab analysis.\nhttps://t.co/H9QYfNiqjQ"                                                                                                                                                                                                                                                                                               
## [1868] "Vitamin Supplements to fight Covid 19 and boost your immune system! https://t.co/EkYJPJwPAj https://t.co/2Vw3dztlex"                                                                                                                                                                                                                                                                                                                                                                                          
## [1869] "Artists are dropping music without a thought about COVID-19 and even saying “let’s not talk about corona I don’t want it associated with my album” yet Selena using her single roll out to raise money is greedy and an issue?!?!? Ridiculous. As always. https://t.co/d7pl9O2wDQ"                                                                                                                                                                                                                        
## [1870] "Shaikh Zayed Road Now #Dubai #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1871] "When is @realDonaldTrump ‘s trial for wrongful death of Americans and human rights violations @ACLU #coronavirus #COVID2019 #nyccoronavirus"                                                                                                                                                                                                                                                                                                                                                                 
## [1872] "Trudeau announcing that Canada will cover 75% of wages for qualifying small and medium-sized businesses to avoid layoffs due to COVID-19 is a huge move. That's an increase from the 10% wage subsidy announced last week.....\n#another style of leadership #"                                                                                                                                                                                                                                               
## [1873] "Covid-19 ruined my college experiences already"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1874] "Wonder how young Sheldon is taking this covid-19 crisis"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1875] "For students in the US: @NAMSAOfficial has formed a COVID-19 Task Force to address general enquiries and to ensure the welfare of Malaysian students\n\nRead more below <U+0001F447><U+0001F447> https://t.co/4lY8utdqEz"                                                                                                                                                                                                                                                                                     
## [1876] "Trying to avoid the #coronavirus like https://t.co/g6xQHsFoB8"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1877] "#COVID19\n#Coronavirus information: What should I do? https://t.co/OAds1qQOmz"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1878] "@realDonaldTrump  what nation do you spend a lot of time in? #coronavirus #WhiteHouseBriefing #why https://t.co/9EWy392x9k"                                                                                                                                                                                                                                                                                                                                                                                   
## [1879] "Trying new drugs for COVID19 in Malaysia to find the possible cure for COVID19 infection - Remdesivir <U+0001F44D><U+0001F3FB><U+0001F4AA><U+0001F3FB>            https://t.co/emATrp8Vg5                                                #COVID19 #StayAtHomeAndStaySafe"                                                                                                                                                                                                                                     
## [1880] "“As Talent Acquisition Recruiter, we can never compare ourselves with our front line heros saving lives of the COVID 19 patients.  But we are proud to be part of NYP and proud to have hired such dedicated team of healthcare professionals - selfless, passionate and daring.” GL <U+0001F4AA><U+0001F3FB> https://t.co/tX8oqe40nJ"                                                                                                                                                                      
## [1881] "@eminemzminnie He calls anyone that calls him out names. Yet he, as the president of the US, is single handedly responsible for this shit show response to Covid 19..this will be his legacy and his curse"                                                                                                                                                                                                                                                                                                   
## [1882] "@page_eco have you seen this new data tool for Covid-19-related stats and resources? More interactive, more data than most I’ve seen. \n\nhttps://t.co/u8dpX1iFDN"                                                                                                                                                                                                                                                                                                                                           
## [1883] "The measure moves now to the City Council: https://t.co/n99fOIwKgE"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1884] "Part 2 of 2 A question about why I have the mask I do. \nN95’s need to be fitted properly. If it’s not fitted properly it’s not going to work as it should. \nSurgical masks only offer protection to others from you by preventing droplets. #COVID19 \nPlease wash your hands https://t.co/D2mltA8QaE"                                                                                                                                                                                                   
## [1885] "Living in Special Times............thank GOD for imagination and fried fish! <U+0001F420><U+0001F420><U+0001F420> #quarantine #covid_19 #staysafe #becreative"                                                                                                                                                                                                                                                                                                                                                
## [1886] "All school districts in #Kansas are closed for the remainder of the school year due to the #coronavirus outbreak. https://t.co/x1WfNFbnjO"                                                                                                                                                                                                                                                                                                                                                                    
## [1887] "Stay active from home during the COVID-19 outbreak with these free live-stream workouts https://t.co/eQiu4GCacQ via @seattlepi"                                                                                                                                                                                                                                                                                                                                                                               
## [1888] "Meals will be delivered to the COVID-19 floor at UAB Highlands and UAB Main beginning March 30. Read more from our sister paper, Iron City Ink.\nhttps://t.co/pfhb5gc4AB"                                                                                                                                                                                                                                                                                                                                     
## [1889] "Donated one day salary to PMRF for COVID-19. https://t.co/WH71QlZixh"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1890] "#turnoffthelight \nDespite #Covid_19 landmarks around the world will go dark for #EarthHour this evening.\nBy turning the lights out at home at 8.30 p.m. we send a signal for climate protection and our planet. We mustn’t lose sight of long-term challenges!\nhttps://t.co/AeVl4RVAx5"                                                                                                                                                                                                                   
## [1891] "Deep &amp; so true \n\nPLEASE STAY AT HOME GUYS <U+0001F64F>\n\n#COVID2019 #WorldFightsCorona #IndiaFightsCorona #GoCoronaCoronaGo #lockdown https://t.co/m5iNLQF2Pk"                                                                                                                                                                                                                                                                                                                                         
## [1892] "@GENmag We all gonna get a cheque if you guys win #mindyou #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1893] "Here are lessons to be learnt once we awaken from the #coronavirus policy panic:\nhttps://t.co/DYRMEl0Rlv"                                                                                                                                                                                                                                                                                                                                                                                                    
## [1894] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!!   www.DrJeff... https://t.co/Qb16aE8jBK via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                      
## [1895] "China Pursues ‘Mask Diplomacy’ With Asian Neighbors during #COVID19 Crisis: https://t.co/4F5o6zgcLS https://t.co/IKAZrQiXKN"                                                                                                                                                                                                                                                                                                                                                                                
## [1896] "Just 8% of consumers think brands should stop advertising due to the #coronavirus outbreak according to @Kantar study @MarketingWeekEd https://t.co/BWUOq7V33O"                                                                                                                                                                                                                                                                                                                                               
## [1897] "Initiative by government of India\n#IndiaFightsCorona #CoronavirusOutbreakindia #COVID #COVID2019 #lockdown https://t.co/F5Oxu6TnSf"                                                                                                                                                                                                                                                                                                                                                                          
## [1898] "Important things to know about our pandemic.\n @Kurz_Gesagt #COVID19 https://t.co/TMo3CSg0Cy"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1899] "Dear Friends ,\nCn v start a drive to share our hero pic with #Hashtag #ourheros  who is making our life normal at this moment whn v r confined to our home.He/she cn b any1 frm milkman to policeman\nKindly encourage thm.\n#21DaysChallenge\n#21daysLockdownIndia #COVID2019"                                                                                                                                                                                                                              
## [1900] "CSCD COVID-19 update as of 03/27/2020\n\nHelp Tarrant County Flatten the Curve\n\nIf you have been tested for COVID-19, regardless of the outcome of the test, please immediately notify your supervision officer or any available duty officer."                                                                                                                                                                                                                                                             
## [1901] "@abdulaziz_rha @PTAlMutairi @farispt @alisaad_su @_p22e_ @AAlbarrati @Aboddrh @PT_Yousef @JeremyLewisPT @Msaad878 @1_aamri @sarafahad_3 I am now an #MBRUCommunityImmunity Ambassador. I am responsible to protect myself and my community from #COVID-19. I challenge (tag 3 friends/family) to take the course. https://t.co/V6fZF6lZ8T  i challenge @SummerPT @Me_Monshi @Mah_Eid https://t.co/bSnSGNVf9i"                                                                                                 
## [1902] "The Health Protection Surveillance Centre has today been informed that an additional three patients diagnosed with COVID-19 in Ireland have died. One person in the north-west of the country and two females in the east.\n\nThere have now been 22 COVID-19 related deaths in Ireland."                                                                                                                                                                                                                     
## [1903] "The Aso Villa/President's Office was Fumigated yesterday in the morning. It takes 2 - 3days before you're suppose to come inside\n\nHow is the President still at work. \n\nReed here <U+0001F447><U+0001F447><U+0001F447><U+0001F447>\n https://t.co/yod7gUqNDB #WhereIsBuhari https://t.co/a35v9iswGt"                                                                                                                                                                                                      
## [1904] "@kyrstensinema @AZDHS @kyrstensinema #COVID19 #CoronaLockdown  Antibody test 1st in country free for all residents of San Miguel County, CO  https://t.co/RvTfVyDdmL"                                                                                                                                                                                                                                                                                                                                         
## [1905] "Update #1 (3:25 p.m.)<U+00A0> Town of Essex Provides COVID-19 Update https://t.co/siQMeZle46 https://t.co/CIP9Enclxv"                                                                                                                                                                                                                                                                                                                                                                                         
## [1906] "As you work from home, see it as an opportunity to re-evaluate your goals and re-strategize.\n\nRemember, comfort should not breed laxity.\n\n#RemoteWork #COVID19 @yourservice_ng https://t.co/0SVRqq9QAl"                                                                                                                                                                                                                                                                                                   
## [1907] "Garrett County Small Business Pandemic Interim Loan Program - A newly developed local small business loan program designed to assist Garrett County small businesses through the COVID-19 health crisis has been announced: https://t.co/0vSCiDHZIv"                                                                                                                                                                                                                                                          
## [1908] "To any and all of the UK’s “new-left” and the #FBPE brigade ... this <U+0001F447>\n\n#COVID19 #coronavirus https://t.co/0zY0eiDsI4"                                                                                                                                                                                                                                                                                                                                                                        
## [1909] "@MavourneenRebel Freshman 15, COVID 19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1910] "@rhylprimary Thank you @@rhylprimary. Two very happy children to have thier work on school's @Twitter feed <U+0001F60A> It has made them feel even more connected to a place they love. Thank you all for all your hardwork during #Covid19, we are so grateful  <U+0001F4DA><U+0001F58D><U+0001F4D6><U+0001F9EE>"                                                                                                                                                                                            
## [1911] "This is huge, let's get testing up. #COVID19 #TESTVIRUSNOW #coronavirus https://t.co/jjMMZjmnbC"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1912] "What's the point of having a @POTUS if it's possible 2 have such a one as this Impeached Criminal @realDonaldTrump face us &amp; the world &amp; then lie, bloat, spin, self-aggrandize while showing no empathy whatsoever 4 those actually suffering from #COVID-19?\n\nThank god for #DrFauci !"                                                                                                                                                                                                           
## [1913] "BREAKING: The first COVID-19 related death has been reported in Iron County https://t.co/ypZtAwk7SX"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1914] "@thehill So...when they all come down with Covid-19, she won't, and will become President."                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1915] "America entertains arming their border with Canada and other coronavirus updates.\n\nLearn more: \n\nApple Podcasts: https://t.co/gi3kBBwCPc\nSpotify: https://t.co/mCKxFHhfXL\nSoundcloud: https://t.co/rzjqSoVGAv\nYouTube: https://t.co/uyNynnVaoo\n\n#cdnpoli #Trump #COVID19 #coronavirus https://t.co/WWacPfd0mY"                                                                                                                                                                                       
## [1916] "Meme pages need to stop posting covid-19 news. More fake news on them than the media."                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1917] "We have teamed up with @eagle_labs , @EdinburghUni and @ucl to find ways we can support the NHS in response to #Covid19. If you have a tech solution or innovative idea how to tackle the key challenges we've identified - get in touch! <U+0001F4AA><U+2764><U+FE0F><U+0001F447> https://t.co/mOjb8UBAc9"                                                                                                                                                                                                   
## [1918] "FRANCE:\ncases-29546\ndeath-1696\nrecoverd-4948\n#cornavirusupdate #CoronaUpdates #CoronavirusOubreak #corona #21daysLockdownSA #lockdown"                                                                                                                                                                                                                                                                                                                                                                    
## [1919] "I know the reality of COVID-19 is that we have to deal with it, be responsible and do our part to flatten the curve.\n\nBut is there anyone who feels that there's something fishy behind it all?\n\n#askingforafriend"                                                                                                                                                                                                                                                                                       
## [1920] "#Trump said he \"has a feeling\" the #NY governor's calls for thousands of #ventilators are overblown as cases of the #coronavirus skyrocket in parts of the country. https://t.co/jdQDfAGCT9 via @HuffPostPol"                                                                                                                                                                                                                                                                                               
## [1921] "The Unified Government in Wyandotte has COVID-19 updates and resources listed on their site\n\nhttps://t.co/sGcMSs7O2H"                                                                                                                                                                                                                                                                                                                                                                                       
## [1922] "How TED-Ed is helping families, students and teachers navigate the COVID-19 pandemic | TED Blog https://t.co/V37QVwRmCJ"                                                                                                                                                                                                                                                                                                                                                                                      
## [1923] "BUA donates N1billion cash and also orders medical equipment to support COVID-19 response.\n\nhttps://t.co/OxY0FmplEt\n\n#BUAGroup #UnlockingOpportunities #BUACares https://t.co/3FjfplSuh1 https://t.co/TIxaZZLchd https://t.co/c3jOiUebC0"                                                                                                                                                                                                                                                                 
## [1924] "one of my friends got covid-19 \n:((((("                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1925] "If they are vulnerable by COVID-19, what chances do you have? https://t.co/jHJfl02jM8"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1926] "an innovative method to prevent Covid19 deaths: https://t.co/2HhTXwpLBH via @IndianExpress"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1927] "50 additional cases have been confirmed since Wednesday evening.  https://t.co/fy811LdWxO"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1928] "@melaku_alebel Please initiate this in issue for regional government s to address the required items to fight covid-19."                                                                                                                                                                                                                                                                                                                                                                                      
## [1929] "They are running out of fentanyl and propofol that is used to intubate patients.  Time to bring home ALL Pharma. \n\nhttps://t.co/qgg4QiBM1l"                                                                                                                                                                                                                                                                                                                                                                 
## [1930] "According to a report, Stanford University researchers say evidence shows US will recover from (COVID-19) much faster than expected. All thanks to President @realDonaldTrump!Democrats, liberals and the MSM won’t be happy about it and you won’t see this by the MSM!"                                                                                                                                                                                                                                   
## [1931] ".@LVMPD has announced that a corrections officer has tested positive for COVID-19.\nhttps://t.co/8dAdqp9wHN"                                                                                                                                                                                                                                                                                                                                                                                                  
## [1932] "We have summarized recommendations for #patients and other resources addressing concerns about #hypertension care in the midst of #COVID19 pandemic. \nhttps://t.co/brLHUJQ10J\n\nHope this is helpful to some patients in this difficult time\n\n@JHUWelchCenter @ResolveTSL @ISHBP https://t.co/XzCI7wFn6e"                                                                                                                                                                                                 
## [1933] "Covid-19 cured my Senioritis"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1934] "Towns, cities and states across the nation have issued protective orders to help slow and stop the spread of COVID-19 with “shelter-in-place” or “stay at home” measures. And Cherokee Nation citizens living in states with these actions are coping.\nhttps://t.co/fngjX83jWr https://t.co/C2Jk6wjdlQ"                                                                                                                                                                                                  
## [1935] "The @alzassociation shares #dementia #caregiver tips. #COVID19 https://t.co/YDNoDCcCHV"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1936] "Uncontrolled case series of #COVID19 patients treated with convalescent sera @MountSinaiNYC \n<U+0001F449> n=5, uncontrolled, all received antiviral too\n<U+2705> body <U+0001F321> <U+2B07><U+FE0F> in 3 days \n<U+2705> SOFA score <U+2B07><U+FE0F> \n<U+2705> PaO2 <U+2B06><U+FE0F>\n<U+2705> ARDS resolved (n=4/5)\n<U+2705> #SARS_COV_2 antibody <U+2B06><U+FE0F> and viral load <U+2B07><U+FE0F> https://t.co/LVfdLqJ2FU"                                                                              
## [1937] "PODCAST: In order to defeat this epidemic, we need to not just be testing the backlog of cases and hospitalized case - we need to get to be on the “testing frontier of new cases” as they develop. #COVID19 @Mitch_Seattle https://t.co/MEG6UM6jlx"                                                                                                                                                                                                                                                        
## [1938] "Fear is NOT false evidence appearing real. It’s very real and based on real evidence it’s just sometimes applied to an inappropriate situation. Learn the difference and Find &amp; Exercise the Appropriate Response. The solution to fear. #covid19 #stayhome #fear #courage #drally https://t.co/zHSDI1B4dR"                                                                                                                                                                                             
## [1939] "#FridayThoughts \n\n\" Despair is a great incentive to honorable death. \"\n\n#COVID<U+30FC>19 #Covid19Death \n#fallen \n#HealthCareWorkers https://t.co/kWiyxVMwNz"                                                                                                                                                                                                                                                                                                                                          
## [1940] "Mister Magoo Murphy?\n+ Is @TripleJ's &amp; reg'l radio's @DrKarl muzzled? We only get N Swan?\nAs expected, knowing he skilfully answers #medical &amp; #health questions &amp; the appalling success of gov't. in trading vital info for waffle on behalf of donors? https://t.co/XEbbJJnCHa #auspol"                                                                                                                                                                                                       
## [1941] "@AGLTILESWORLD (A) Yes\n\n#BeAware #Quiz #Contest #CoronaVirus #AGLTiles \n@AGTimFox \n\nJoin\n@GauravP26479152 \n@NikitaBobade3 \n@RiyaPorwal6 \n@pinkyk1980 \n@RIYAPORWAL9 \n@Vandana45086528"                                                                                                                                                                                                                                                                                                              
## [1942] "It only took 5 days to surpass the number of #coronavirus case in China. Sadly, we will likely be at 200k by Sunday! https://t.co/KRubjM0k5R"                                                                                                                                                                                                                                                                                                                                                                 
## [1943] "100% he is !!! China lied People lied #ChineseVirus #Covid19 https://t.co/OnHRKmSVDk"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1944] "As employers close offices to slow the spread of #COVID19, here’s advice from I/O psychologists on how both managers and employees can work more effectively during this time. via @apa https://t.co/l2aeCifpmN"                                                                                                                                                                                                                                                                                             
## [1945] "Ah Ay I'm 40 in three months, looks like I'll be in the house eating flipz salted caramel pretzels <U+0001F644> #lockdown #COVID2019 #IsolationLife"                                                                                                                                                                                                                                                                                                                                                          
## [1946] "Lynchburg now has three COVID-19 cases, according to local health district. One man in his 20s and two men in their 60s."                                                                                                                                                                                                                                                                                                                                                                                     
## [1947] "@AbbottNews @MoHFW_INDIA this is going to be great help fighting #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1948] "The Case against Bailing Out the Airline Industry https://t.co/w3ksEDLjIA"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1949] "Am yet to see anyone from Agege, Ajegunle, Tabontabon, mile 12 test positive to the COVID 19. Only our elites are testing positive. May God deliver us from greedy elites who are determined to rake in billions from donors. @segunaeroland @AdeoyeAdelaja @Imamofpeace"                                                                                                                                                                                                                                     
## [1950] "This is big! #CoronavirusOutbreak  #COVID19 https://t.co/JGxPTyh33A"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1951] "And the award for most irresponsible #clickbait of the #coronavirus #pandemic goes to #CNBC for this gem. For a rational perspective, see NY Times March 9 article \"Coronavirus Is Very Different From the Spanish Flu of 1918. Here’s How.\" #401kfixer\n\nhttps://t.co/ukdqtBJjSg"                                                                                                                                                                                                                        
## [1952] "@MalfunctionMage Still hearing stuff about how more people die from car accidents and the flu per year than covid-19. Nevermind the fact that they're comparing an annual count against a few months of covid-19, the entire argument is asinine."                                                                                                                                                                                                                                                            
## [1953] "@FeliciaAdunni Let people know. It's real #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1954] "People Quit acting like coronavirus is all Trump's fault. Republican or Democrat we are all victims here #COVID19 #FightTogether"                                                                                                                                                                                                                                                                                                                                                                             
## [1955] "@spomboy America has a national catastrophe to work through first. Don't be under any illusions, America will now add 10-20,000 Covid-19 cases per day for the next little while. At a death rate of 9%, this will be heartbreaking."                                                                                                                                                                                                                                                                         
## [1956] "My brother made this sign this evening for the 8pm #ClapForCarers\n\nHe knows how much the #NHS means to me and how much I care about my colleagues\n\nHelp me to care for them and for you... #StayHomeSaveLives \n\n#Covid19 #TeamICU https://t.co/yHAU5uTLCE"                                                                                                                                                                                                                                              
## [1957] "Doctor tweets they are: worried they may have infected patients after contracting Covid 19, upset with the government. Also states the NHS doesn't have enough PPE. \n\nBrexiteer \"this is politically motivated fake news because she hates the Tories and is a remoaner\""                                                                                                                                                                                                                                 
## [1958] "Once this crisis ends, China needs to be held accountable for this fiasco. Timely action and not with holding early information would have saved so many lives and saved the world from this disaster. And all this because of their sickly diet. \n#coronavirus #ChinaVirus #China"                                                                                                                                                                                                                          
## [1959] "<U+0001F58B> Support Lauren by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/89qH2teUxe\n\n<U+0001F4E8> Last delivered to @GovernorKayIvey, Representative Faulkner and Senator Smitherman  #ALpolitics #COVID19 https://t.co/qeF6hgrnRt"                                                                                                                                                                                                                     
## [1960] "UK Chancellor Rishi Sunak has announced measures to support self-employed workers amid the Coronavirus pandemic.\n\n#COVID19 | #selfemployed\nhttps://t.co/QMPDhlOfNC"                                                                                                                                                                                                                                                                                                                                        
## [1961] "@12NewsNow Gov. Abbott is deploying the National Guard in support of the Covid-19 response https://t.co/mSWXYKk8Pf"                                                                                                                                                                                                                                                                                                                                                                                           
## [1962] "Good to see @ScottMorrisonMP acknowledging the government's responsibilities not just at home but in the region. The question is how we will support the Pacific in the coming weeks and months. Put some initial thoughts here, but will have more to say soon. https://t.co/EizbjtxRgz https://t.co/td255R4kw9"                                                                                                                                                                                             
## [1963] "@NCDCgov Please @NCDCgov is it possible to have the specific areas in each state like ikeja,lekki etc, In lagos  of  #COVID19 cases. #CoronaVirus19 #Staysafe"                                                                                                                                                                                                                                                                                                                                                
## [1964] "Researchers in Wuhan, China, examined outcomes in children born to 33 women with COVID-19. Three of the newborns, all male, had symptomatic COVID-19. One infant who was born at 31 weeks' gestation required resuscitation. By day 7, all three were negative for SARS-CoV-2."                                                                                                                                                                                                                               
## [1965] "@larryelder The Stars are Falling.... #Coronavirus https://t.co/F6xmN00ttM"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1966] "#Coronavirus/#COVID19 Thu Mar26\nCase/County/Dead\n1416 #BayArea 32\n542 #SantaClara 19\n223 #SanFrancisco 2\n195 #SanMateo 5\n178 #Alameda 4\n131 #ContraCosta 1\n65 #Marin\n44 #Sonoma 1\n31 #Solano\n7 #Napa\n&gt;https://t.co/OxOskZ8ca6\n&gt;https://t.co/zBTjViPavj\n&gt;https://t.co/7iHFuZb5Xj\n#COVID"                                                                                                                                                                                               
## [1967] "@GarageNinja1 A distraction from #COVID19 \n<U+0001F92A>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1968] "All Politicians and Government Buorocrats To Have there Pay Slashed By Half While We Go Through These Hard Times Of \nCovid_19 Virus.<U+0001F60E> https://t.co/wWBC52Xb5K"                                                                                                                                                                                                                                                                                                                                    
## [1969] "Um @joinHandshake partner meetups featuring superstar faves @dorothyhayden and @hashtagaims? Sign me up! https://t.co/y9OFFIEYAd https://t.co/2yFcdgPX05"                                                                                                                                                                                                                                                                                                                                                     
## [1970] "We are so grateful for the sacrifices being made.  #HCWSHOUTOUT #LetsGetAfterIt #COVID19 #ThankYou https://t.co/H01pKRhH4g"                                                                                                                                                                                                                                                                                                                                                                                   
## [1971] "Lol<U+0001F600> You saw this Covid-19 before everyone. RIP my legend. https://t.co/WPdwZ0Aecn"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1972] "During the #COVID19 self-isolation, it remains extremely important for people with #MS to stay active<U+26A1>and keep moving. <U+0001F4AA>\nReplace your rehab &amp; physiotherapy sessions at home with the “Keep Moving with MS” online exercise programs <U+0001F449>  https://t.co/92RUCtyf1j\n#stayathome #staysafe https://t.co/xwbVxltnoK"                                                                                                                                                           
## [1973] "Now get in the back of the queue for a ventilator. Twat. #COVID19 https://t.co/tlQO4NMxcZ"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1974] "Good job..! #coronavirus https://t.co/Q3HvjoBDOZ"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1975] "Canadian Centre for Policy Alternatives happy with wage subsidy increase from Ottawa\n| https://t.co/UtbKQhtcCx #COVID19 #bcpoli https://t.co/XehYc1hXl5"                                                                                                                                                                                                                                                                                                                                                     
## [1976] "Since March 10th, we have received 561 price gouging reports related to #COVID19. We are reviewing each and every complaint so that we can take action on behalf of all North Carolina consumers if necessary. You can submit a complaint at https://t.co/IN3G9BJYMx or (877)-5-NO-SCAM. https://t.co/g55cNiSG7K"                                                                                                                                                                                             
## [1977] "Femi Otedola Donate 1billion to fight the Deadly Virus COVID-19 https://t.co/5neJd3SE7z https://t.co/kt8mDxjyZK"                                                                                                                                                                                                                                                                                                                                                                                              
## [1978] "To our able and benevolent doctors, nureses and health workers on the frontline of the COVID 19, our deepest heartfelt prayers go to you. May God give you the wisdom, serenity, good health, coordination and sound mind to overcome this health scourge <U+0001F64F> https://t.co/z9qjpYqCY3"                                                                                                                                                                                                               
## [1979] "[BREAKING NEWS] | Covid-19: 1170 confirmed cases in South Africa https://t.co/YElDRaRDCg https://t.co/FmwnkhIjQA"                                                                                                                                                                                                                                                                                                                                                                                             
## [1980] "People die everyday<U+0001F614>diseases with cures, diseases with no cure, murders by police, by one another, but all day We are bombarded with COVID-19 and AMERIKKKA HAS BEEN Spraying CHEMTRAILS FOR YEARS! #KARMA is occurring for those that have incurred despicable acts against Universe"                                                                                                                                                                                                             
## [1981] "Showing support for our incredible NHS staff who are working tirelessly on the frontline in the fight against #Covid19 <U+0001F44F><U+0001F499><U+0001F44F> #clapforourcarers #clapforNHS #thankyouNHS https://t.co/axPyO8Smn5"                                                                                                                                                                                                                                                                               
## [1982] "Doris got the COVID-19 virus damn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1983] "<U+0001F50A>IF YOU CAN, STAY AT HOME<U+0001F3E0> NOW ! <U+0001F64F>\n\n#CODVID19 #coronavirus \n\n#FiqueEmCasa <U+0001F1F5><U+0001F1F9><U+0001F1E7><U+0001F1F7>\n#QuedateEnCasa <U+0001F1EA><U+0001F1F8>\n#StayAtHome <U+0001F1EC><U+0001F1E7>\n#TuisBly <U+0001F1FF><U+0001F1E6>\n#rrineshtepi <U+0001F1E6><U+0001F1F1>\n#ZuhauseBleiben <U+0001F1E9><U+0001F1EA>\n#ResterChezVousbordel <U+0001F1EB><U+0001F1F7>\n#Zosta<U+0148>tedoma <U+0001F1F7><U+0001F1F8>\n#Restaacasa <U+0001F1EE><U+0001F1F9>\n#blivhjemme <U+0001F1E9><U+0001F1F0>\n#pysykotona <U+0001F1EB><U+0001F1EE>\n#оставайсядома <U+0001F1F7><U+0001F1FA>\n#EvdeKalin <U+0001F1F9><U+0001F1F7> https://t.co/LKBK0aIKVS"
## [1984] "COVID-19 Ireland Day 27: We’ve lost hugs, kisses, handshakes, pints, winning streak, parkrun, GAA, Soccer, Work, Education and anything beyond a 2km radius of our current residence. All to save people.\n#Coronavirusireland #COVID19IRELAND #CoronaLockdown #IrelandLockdown"                                                                                                                                                                                                                             
## [1985] "Need to get yo shop on? just use amazon! #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1986] "Disappointed that @ReadingCityFC's season has been voided by the @FA as a result of football being halted in response to the #COVID19 outbreak, but there's a lot of positives to take in to next season.\nWell done to @simmydembels, @Woodruff92, @GhaffarGhoddusi &amp; the players <U+0001F499> https://t.co/Kebj4q6T4N"                                                                                                                                                                                  
## [1987] "- Stay at Home to Saves Lives -\n.\n.\n.\n.\n.\n#stayhome #stayathome #staysafe #savelives #covid #covid_19 #cuarentena #quedateencasa #quarantine #coronavirus #designinspiration #flatdesign #graphicdesigner #illustration… https://t.co/edzxPkIqDD"                                                                                                                                                                                                                                                      
## [1988] "<U+0001F691> INJURY UPDATE | @hannahhampton_ \n\nBirmingham’s shot-stopper has suffered an ankle injury whilst training with the Lionesses at the #SheBelievesCup. Due to the current COVID-19 situation, Birmingham are unable to put a timescale on her expected return. https://t.co/Gx0a3rSBNB"                                                                                                                                                                                                          
## [1989] "AOP Supports Senegal's Efforts to Fight COVID-19 https://t.co/IaFWkyNV40"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1990] "More COVID-19 cases than any other country. Congratulations AMERICA!"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1991] "Coronavirus Updates: At a free Hayward #coronavirus testing site that opened Monday, 54 out of 207 people tested positive on the first day, the city said in a release Thursday. \n\nhttps://t.co/yt2LXNgalB"                                                                                                                                                                                                                                                                                                 
## [1992] "<U+0001D5D4><U+0001D5FB><U+0001D5F1> <U+0001D601><U+0001D5F5><U+0001D5F2><U+0001D600><U+0001D5F2> <U+0001D5EE><U+0001D5FF><U+0001D5F2> <U+0001D601><U+0001D5F5><U+0001D5F2> <U+0001D5EF><U+0001D5F2><U+0001D5EE><U+0001D602><U+0001D601><U+0001D5F6><U+0001D5F3><U+0001D602><U+0001D5F9> <U+0001D601><U+0001D5F5><U+0001D5F6><U+0001D5FB><U+0001D5F4><U+0001D600> <U+0001D601><U+0001D5F5><U+0001D5EE><U+0001D601> <U+0001D5F5><U+0001D5EE><U+0001D5FD><U+0001D5FD><U+0001D5F2><U+0001D5FB> <U+0001D604><U+0001D5F5><U+0001D5F2><U+0001D5FB> <U+0001D601><U+0001D5F5><U+0001D5F2> <U+0001D604><U+0001D5FC><U+0001D5FF><U+0001D5F9><U+0001D5F1> <U+0001D5F6><U+0001D600> <U+0001D5F9><U+0001D5F2><U+0001D5F3><U+0001D601> <U+0001D601><U+0001D5FC> <U+0001D5FF><U+0001D5F2><U+0001D600><U+0001D601><U+0001D5FC><U+0001D5FF><U+0001D5F2> <U+0001D5F6><U+0001D601><U+0001D600><U+0001D5F2><U+0001D5F9><U+0001D5F3>. \n\n<U+0001D5E7><U+0001D5F5><U+0001D5F2><U+0001D606> <U+0001D600><U+0001D5EE><U+0001D606> <U+0001D5EE><U+0001D5F3><U+0001D601><U+0001D5F2><U+0001D5FF> <U+0001D5EE> <U+0001D600><U+0001D601><U+0001D5FC><U+0001D5FF><U+0001D5FA> <U+0001D5F0><U+0001D5FC><U+0001D5FA><U+0001D5F2><U+0001D600> <U+0001D5EE> <U+0001D5FF><U+0001D5EE><U+0001D5F6><U+0001D5FB><U+0001D5EF><U+0001D5FC><U+0001D604> <U+0001F308><U+0001F98B>\n#COVID2019 #Isolation #life #beautiful https://t.co/QeJiyjl3Ll"
## [1993] "If you please !!! <U+0001F612><U+0001F612>\n#coronavirus https://t.co/jgnFaZh8B1"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1994] "European  politicians  testing positive  for covid  19, such  delicate  darlings  they are while ours are so strong  just saying  Corona  go Corona  and  it leaves  them  alone"                                                                                                                                                                                                                                                                                                                             
## [1995] "Exit strategy from #COVID19 #confinement by the senior adviser to the DG of #WHO :\n\n\"What should a country’s first priority after locking down be?\"\n\n\"Test the suspects, test the suspects, test the suspects. Then, effectively isolate the confirmed cases.\"\n\nhttps://t.co/Gx1jFkhwFZ"                                                                                                                                                                                                           
## [1996] "It's a good time to be a misanthrope.\n#CoronaLockdown #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1997] "@JustinRose99 Covid 19 spread  - support mercy flights and freight only https://t.co/hE7e1v0qxi"                                                                                                                                                                                                                                                                                                                                                                                                              
## [1998] "Change my mind: \nVirtual happy hours are more fun than face to face ones.  #COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                            
## [1999] "We are now at the point in #COVID2019 that I’m done with this.... so when are we moving on to the next thing"                                                                                                                                                                                                                                                                                                                                                                                                
## [2000] "Travels plans this year  maybe cancelled. \n\nThis is not funny #covid-19"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2001] "Covid-19: The history of pandemics https://t.co/f7pPNg4d7Q via @BBC_Future"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2002] "Twitter locks account that encouraged people to hold coronavirus parties\n#socialdistancing #coronavirus #covid19 #terapiaonline #skype #whatsapp #corona #besafe #protectyourself #awerness #letsfightcorona #stayhome #staysafe #Coronavirus #workfromhome #quarantine #selfisolation https://t.co/9jvWPgvVpf"                                                                                                                                                                                              
## [2003] "@Schwarzenegger @DollyParton @StephenKing @katyperry  Read my 15 year study thoughts, &amp; suggested dosage to survive covid-19 better https://t.co/FUiz6o3jvz You can buy D anywhere. Influenza's not my first interest, beating Alzheimer's is. https://t.co/aOUkYil3Ku"                                                                                                                                                                                                                                   
## [2004] "What an amazing week! With COVID-19 challenges and uncertainty, the full team at CNA really pulled through to ensure the health &amp; safety of students, faculty, &amp; staff, and worked miracles to make sure educational journeys will continue! This is true commitment!\nThanks @CNA_News"                                                                                                                                                                                                              
## [2005] "As of Friday, Ventura County has 61 confirmed #coronavirus cases, Santa Barbara County 47, and San Luis Obispo County 59. The total includes one death.\nhttps://t.co/XKSA40PZ5t"                                                                                                                                                                                                                                                                                                                             
## [2006] "RBI lines up ‘arsenal’ of liquidity measures to counter Covid-19 impact https://t.co/4cXfxvimpC https://t.co/qyUsAcIdn6"                                                                                                                                                                                                                                                                                                                                                                                    
## [2007] "@TRF_Stories @BlombergMD  #Covid19 double-victims, even triple if the #Cambodia family has mortgaged their property with an #MFI loan depending on their pay.  1 -Victims of circumstances and misrule 2 Of the virus. https://t.co/GN6pqjLSxk https://t.co/R9XsFJHQrQ"                                                                                                                                                                                                                                       
## [2008] "Is not the flu\n\"The real death toll for the wuhan is at least 4 times the official numbers, according to analysis of Italian mortality records.\n\nExtrapolated to the whole of the country, that means 32,000 have died of coronavirus until yesterday.\"\nhttps://t.co/NoO9Bk8TEm"                                                                                                                                                                                                                        
## [2009] "If you or anyone you know purchased N95 masks or any protective clothing and are hoarding them, please think about the doctors, nurses and medical care professionals who are on the front lines of this pandemic who do not have enough supplies. #COVID2019 #Hospitals"                                                                                                                                                                                                                                     
## [2010] "$2T CARES Act Moves Toward Enactment https://t.co/8en7m9d4yA @VanNessFeldman  #CARESAct #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                         
## [2011] "#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 On https://t.co/pyHWGqFA4R Listen great artists: Riverside by TolbertToz @tolbertToz Don't forget, click the link https://t.co/CnNg5Lvd7i https://t.co/djsDl8tAbm"                                                                                                                                                                                                                                                                                    
## [2012] "50% of Albertans report at least one person in their household has lost hours or has been laid off as a result of the #COVID19 crisis. That’s the highest proportion in the country. And yet, the UCP still won’t ban evictions. And they’re still proceeding with layoffs. <U+0001F621> #cdnpoli https://t.co/9ZLDyVYKRo"                                                                                                                                                                                 
## [2013] "Coronavirus: All the Shows, Movies, and Events Affected by COVID-19 https://t.co/CRcMsBuvow"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2014] "Covid-19 Chronicles <U+2013> Living in Lockdown: Our cameras recorded the moment of lockdown. We also hear from Dr Mohamed Irhuma, a clinical pharmacologist and medical specialist as he unpacks the psychological impact a lockdown might have on us: https://t.co/xE3JjGuZUH https://t.co/s72U7biPaQ"                                                                                                                                                                                                      
## [2015] "“Our current modeling is forecasting that we in sometime around 2023 should return to our passenger levels that we experienced last year,” Bennett said. @PhxSkyHarbor #Phoenix #coronavirus #COVID19\n | KJZZ https://t.co/d9ml8sC1Ar"                                                                                                                                                                                                                                                                     
## [2016] "91 new  #covid19 cases and 8 new deaths in #SouthKorea  https://t.co/on5KCYq6du"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2017] "Just received this photo. The subject said \"quarantine capers day 6 of 12\". \n\nI am so glad mine are grown adults. \n\n#coronavirus #COVID19 https://t.co/NmoW8Rzk3w"                                                                                                                                                                                                                                                                                                                                      
## [2018] "I enjoyed talking about faith communities in this #coronavirus moment on @Morning_Joe today. https://t.co/p4H7hSrtzU via @msnbc"                                                                                                                                                                                                                                                                                                                                                                              
## [2019] "Donald Trump on live tv from March 6th\n\n“Anyone who wants a test can get a test.”\n#COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2020] "The #UAE has been working abroad via its embassies to ensure the safe returns of its subjects back to their families. Not only that but helping other Arab nationals who were stranded abroad.\n\n@UAEEmbassyUS  <U+0001F1E6><U+0001F1EA><U+0001F1FA><U+0001F1F8>\n#uaegov \n#CoronaLockdown \n#COVID19 \n\nhttps://t.co/VMPq7psUEw"                                                                                                                                                                          
## [2021] "\"I really wish I had something non-#COVID19 related to read, preferably from Leviticus and about some relatively obscure passage.\" \n\nWish granted, my friend. \n\nWish. Granted. https://t.co/QVILGnLZFS"                                                                                                                                                                                                                                                                                                 
## [2022] "Tips from jyachannel on Instagram (just the tip) <U+0001F60F> #coronavirus #coronamemes #coronavirusmeme #coronavirusmemes #COVID19 #humor #darkhumor https://t.co/9lMUYPCaDp"                                                                                                                                                                                                                                                                                                                                
## [2023] "My heart goes out to all children living in difficult circumstances as we face this deadly #covid19. God have mercy on them especially those living on the street"                                                                                                                                                                                                                                                                                                                                            
## [2024] "@mmahapatra Dear sir, What steps are taken for employees having diabetes or cardiovascular disease?? As per WHO we diabetics having high blood sugar level are at high risk of getting covid -19 infection. It's a request to you please grant us special leave till the period of lockdown."                                                                                                                                                                                                                 
## [2025] "With all the money we pay into health care &amp; our medical staffs are running out of equipment <U+0001F926><U+200D>♂<U+FE0F> #covid19"                                                                                                                                                                                                                                                                                                                                                                     
## [2026] "@realestatelife6 @KTLA Take her to the nearest ER and enter yelling she’s been exposed to COVID-19 and you’ll see how fast they act"                                                                                                                                                                                                                                                                                                                                                                        
## [2027] "COVID-19 Case-Fatality Rate and Characteristics of Patients Dying in Italy https://t.co/eKEkmAdoDB"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2028] "@MMcLeodNWT  No mention of the Metis in the NWT? Indigenous Community Support Fund #NTpoli #cdnpoli #Metis #COVID19 https://t.co/Uk4tOwg1g4"                                                                                                                                                                                                                                                                                                                                                                  
## [2029] "Here he goes again asking who they're with. #WhoYouWith #pressconference #PressBriefing #COVID2019 #COVID #CoronavirusPandemic #StayHomeSaveLives #StayHome #CoronaVirusUpdate #CoronavirusUSA #QuarantineLife #Quarantine"                                                                                                                                                                                                                                                                                   
## [2030] "Pinoy singers joined forces in performing a rewritten and rearranged version of the Southeast Asian Games 2019 theme song, We Win As One. | @latest_chika\nhttps://t.co/CXSelwvF75"                                                                                                                                                                                                                                                                                                                           
## [2031] "@narendramodi Hello Sir,\nNow a day India facing with a very Harmful desise (Covid-19) In Some country the virus spread widely\nIn my hometown(BHILWARA) this virus is affects 1 person everyday.\n\n**In Rajasthan the corona case was 36 (Including 21 cases of Bhilwara)*\n  #Please help"                                                                                                                                                                                                                 
## [2032] "This is the beauty of #VA07. Thank you to the @LouisaCoSheriff for such an initiative to keep our community and seniors safe during the #COVID19 pandemic. #FlattenTheCurve https://t.co/OmZIpeOHK1"                                                                                                                                                                                                                                                                                                          
## [2033] "Lets not forget that Amelia Brand is remain #alone in #isolation at Edmund's planet to execute Plan B in the movie #Interstellar.\n#COVID19 #selfisolating #coronavirus #SocialDistanacing https://t.co/rSIOWfZW0v"                                                                                                                                                                                                                                                                                           
## [2034] "#Illini Lovie: \"As far as I know, we don't have anyone that has tested positive (for #COVID-19).\""                                                                                                                                                                                                                                                                                                                                                                                                          
## [2035] "#COVID19 Update: Medicare #telehealth coverage is being expanded “to enable beneficiaries to receive a wider range of healthcare services from their doctors without having to travel to a healthcare facility.” via @CMSGov \n\nhttps://t.co/0LLuY4wtSh\n\n#CokerWeekly"                                                                                                                                                                                                                                   
## [2036] "Dallas County leads Texas in COVID-19 cases, Texas National Guard unit to base in Dallas https://t.co/TyJNxZtSpj"                                                                                                                                                                                                                                                                                                                                                                                             
## [2037] "The Mayor reissued the Stay at Home Order. #COVID19 #ShelterInPlace #FlattenTheCurve https://t.co/1rhqOfTF5w"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2038] "Daily blog diary for #coronavirus #lockdown #homeschool and #SocialDistancinguk \n\nhttps://t.co/pAJGJIUq14"                                                                                                                                                                                                                                                                                                                                                                                                  
## [2039] "@nurdanerdemm @SKisContent @TravelGov So covid-19 came to the United States and made the American flu disappear overnight………"                                                                                                                                                                                                                                                                                                                                                                              
## [2040] "@MrsJroChicago Oh no, #COVID19???"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2041] "A nonprofit started by the billionaire co-founder of Home Depot says plants are ready to produce the drugs Trump has promoted to treat the coronavirus but for “red tape.” Experts caution it’s unproven and possibly dangerous. https://t.co/4VZA3Hi4hI"                                                                                                                                                                                                                                                  
## [2042] "The virtues of Cuban doctors on $250 pm, if that, on indentured service are extolled by the hard left while vainglorious nations such as Iran where one person is dying every ten minutes #coronavirus refuse humanitarian assistance from the USA. https://t.co/mc45lTu7zh"                                                                                                                                                                                                                                  
## [2043] "Now would be the right time to plan starting a business such that when giving the success story years later you go like \"we started out small just after the COVID 19 pandemic had hit the economy....\""                                                                                                                                                                                                                                                                                                    
## [2044] "The Senate passed a $2 trillion stimulus package to provide relief for American workers, businesses, hospitals and government.  What does it include?  Read on https://t.co/zuU6yvpmib #IRS #ReliefPackage #ReliefBill #ReliefFund #coronavirus #CoronavirusOutbreak #COVID19 #corona"                                                                                                                                                                                                                        
## [2045] "Day 9 of California’s Shelter-In-Place order: I spent the day making masks for complete randos who need them. I call this one the “MC Hammer” mask because it “You can’t you touch this!”\n<U+0001F528> <U+23F0>\n#mchammer #coronavirus #mask https://t.co/y7tILLFvsu"                                                                                                                                                                                                                                 
## [2046] "#China sends to #Pakistan 15,000 personal protective equipment (PPE) suits, 500,000 surgical masks, 50,000 N95 masks, 50,000 test kits and 20 ventilators to fight #coronavirus. #COVID2019.  https://t.co/lkf1I81W44"                                                                                                                                                                                                                                                                                        
## [2047] "@CarnegieMellon University is a ghost town. #coronavirus #CarnegieMellon #Pittsburgh #Chopper11 #wpxi https://t.co/JTh86dfzQX"                                                                                                                                                                                                                                                                                                                                                                                
## [2048] "The @NYTimes has made county-level data for every US case of #COVID_19 publicly available via @github and will continue to update in real time. #github https://t.co/4fgw8E5XtW"                                                                                                                                                                                                                                                                                                                              
## [2049] "@MBuhari @ProfOsinbajo\n@NTANewsNow\n@CoolFMNigeria @Wazobia_FM\n#convid19 Global Updates\n#Coronavirus Cases:\n597,458\nDeaths:\n27,370\nRecovered:\n133,373\nACTIVE CASES\n436,715\nCurrently Infected Patients\n413,156<U+00A0>(95%)\nin Mild Condition\n23,559<U+00A0>(5%) https://t.co/Y8WrTwhHgX"                                                                                                                                                                                                       
## [2050] "Stay at home you bastard. #CoronaLockdown #CoronaVillains #coronavirus https://t.co/q8OylnDfgF"                                                                                                                                                                                                                                                                                                                                                                                                               
## [2051] "3198 Covid19+\n714 New cases today\n46 Deaths\nAnd Florida is not doing nothing. @HillsboroughFL, the safer-at-home is not enough. Don't wait for the numbers to increase! Every life counts!\nFreedom is great, but let's sacrifice a little bit today, to enjoy the best future.\n#COVID19"                                                                                                                                                                                                                 
## [2052] "@pulte $AlexandraPittam \nHaving a tough time here in WA state due to Covid-19"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2053] "To prevent further spread of COVID-19 to jail staff and detainees, incarcerated people who participated in out-of-facility work programs may be sent home. \nhttps://t.co/TG737RGoL2"                                                                                                                                                                                                                                                                                                                         
## [2054] "Juma Kareem. Please #PrayAtHome #SaveLives.\n\nWe ALL need to do our part to ensure our families and communities are protected from #Covid19\n\nPractice the following...\n\nPhysical distancing. \n\nDo NOT shake hands.\n\nFrequent hand washing.\n\nCough &amp; sneeze into your sleeve. https://t.co/qiOMJykBRG"                                                                                                                                                                                          
## [2055] "listening to the Wind of Change with #Covid_19"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2056] "Check out my Covid 19 7Days to Die game play. live at https://t.co/O8xk746J7T"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2057] "Can't wait to hear that #COVID19 is gone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2058] "\"We're all in this together, six feet apart.\"\n\nWell, better than six feet under. \n\n#medicalpanel #coronavirus #streamthebern"                                                                                                                                                                                                                                                                                                                                                                           
## [2059] "ESMA issues guidance on accounting implications of COVID-19 https://t.co/MgZDauNilX"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2060] "Covid-19<U+00A0>: on tient un suspect<U+00A0>! https://t.co/iIYFe9ZbZ7"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2061] "Beating the #Coronavirus lockdown isn't that hard <U+0001F60A> https://t.co/hrwT2oZmQ5"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2062] "Some big city shoppers heading to small B.C. towns to stock up on COVID-19 supplies https://t.co/imtih6b24c"                                                                                                                                                                                                                                                                                                                                                                                                  
## [2063] "“Covid-19,” or as I like to call it, “Covid-Barely Legal”"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2064] "GOOD NEWS: Trump admin CUTS red tape on Hydroxychloroquine production to meet coronavirus demand <U+2013> The Right Scoop\n\n#Coronavirus #WuhanVirus  https://t.co/xnzDOov4Ws"                                                                                                                                                                                                                                                                                                                               
## [2065] "In response to the #StayAtHome order in Colorado, we will operate with reduced hours beginning today. This applies to both our Lakeside and Greenwood Village locations and will stay in effect until further notice. \n\nMore info: https://t.co/IJfjBVEq0D https://t.co/SXhFW5y5Zq"                                                                                                                                                                                                                         
## [2066] "@ENT_AudsNews We're collating advice for families of deaf children and the professionals who work with them, updated daily @NDCS_UK https://t.co/y8AQ9Oa6gK https://t.co/bx1zqEmfqS"                                                                                                                                                                                                                                                                                                                          
## [2067] "I should know. I maintain my license and practice in Canada. Our response to #COVID19 is so much more coordinated. At all levels of government and Healthcare. Not perfect. We were unprepared but we'll have less infections and less deaths PER CAPITA than the states. Way, way less."                                                                                                                                                                                                                     
## [2068] "@Surgeon_General @realDonaldTrump @FEMA_Pete @Lrihendry \n\nPeople its now time to create makeshift ventilators.  \n\nCuomo get your ass on it.  Makeshift Ventilators instead of talking about it.  I would of already be on it.\n\nhttps://t.co/BZA38pG29O"                                                                                                                                                                                                                                                 
## [2069] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/Q5qhpAJ4Tg via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                      
## [2070] "My company sent this is an email to managers instructing us to KEEP coming to work if we have been in contact with someone who tested positive for COVID-19.  \n\nWhat the fuck guys https://t.co/pRasAEAu6s"                                                                                                                                                                                                                                                                                                 
## [2071] "@mlipsitch @eladgil @StephenKissler @ctedijanto @yhgrad The same #DeborahBirx who said Singapore learnt from Trump's guidelines? Hmm... when we started fighting #COVID19, Trump still thought of it as a political hoax, unless she is referring to this Singapore: https://t.co/69wKFyVpZL"                                                                                                                                                                                                                 
## [2072] "So I’ve discovered during the lockdown that my 2 year old has a keen interest root cause analysis, though she’s struggling to keep asking “why” to only 5 instances in any conversation. #Kaizen #COVID19"                                                                                                                                                                                                                                                                                                
## [2073] "This isn’t just for being heroes through COVID-19. It’s for providing excellent care even against the odds, it’s for saving so many lives including my own. What a gift it was opening the window and hearing how many other people love you too @NHS <U+2764><U+FE0F> #ClapForOurCarers #ClapForNHS https://t.co/6MX7kBQyhV"                                                                                                                                                                              
## [2074] "@BobbyJo54648572 @chesaboudin Triple Murder \nhttps://t.co/6XI4njzvQa\n\n#COVID19 \n#sanfrancisco \n#Murder \n#WeatherUnderground \n#terrorist \n#Bernie2020"                                                                                                                                                                                                                                                                                                                                                 
## [2075] "Opinion: The rationale behind #Iran's lobbying campaign for sanctions relief raises serious questions, given the regime’s rejection of tangible offers of assistance to fight #coronavirus, writes @JasonMBrodsky.\n\nhttps://t.co/17XkUYVhJF"                                                                                                                                                                                                                                                               
## [2076] "@NHSuk what is the criteria to qualify for Covid-19 testing? Is it;\nCritically ill with under lying health conditions, Celebrity, Royal Family, Politician, Rich folk then NHS staff? @BorisJohnson @MattHancock @ClarenceHouse @CMO_England"                                                                                                                                                                                                                                                                
## [2077] "@lawdotcom Continuing to send prayers and good thoughts David Lat's way.\n\nI think many of us are learning about the horrors of COVID-19 through his harrowing experience.\n\nNobody is immune. It can impact us all."                                                                                                                                                                                                                                                                                       
## [2078] ".@natashaCJAD talks to Nomadic Nurse Agency's nurse Melanie Jade Boulerice about #COVID19 questions on @CJAD800 next."                                                                                                                                                                                                                                                                                                                                                                                        
## [2079] "@FredTJoseph  I was working for uber . Im nearly 70 years old but due to the covid-19 I haven’t gone to work. My wife doesn’t work also.We have problem paying our rent. I would appreciate if you could help us."                                                                                                                                                                                                                                                                                          
## [2080] "WE'RE #1!\nWE'RE #1!\nWE'RE #1! \n\nWait...\n\n#Covid19 #CoronaVirus https://t.co/7BFR2kllcv"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2081] "Here is what you need to know about your pet and COVID-19 https://t.co/1sf1bXgZpw https://t.co/OiEPlodAfs"                                                                                                                                                                                                                                                                                                                                                                                                    
## [2082] "* * New Article\n5 Actions Towards Dating Your Spouse During COVID-19\nhttps://t.co/OmZS8fIV8H https://t.co/TmdiwtHTDf"                                                                                                                                                                                                                                                                                                                                                                                       
## [2083] "Four people become victims of deadly #coronavirus on a cruise ship.\n\n#COVID19 #COVID2019 #Covid2019TR #Covid2019TR #coronavirusinpakistan #coronavirusinpakistan #CoronavirusOutbreakindia #Covid19SA #CoronaLockdown #UKlockdown #London #CoronavirusEspana #CoronaUpdate #COVIDCanada https://t.co/tDlWXpweM8"                                                                                                                                                                                            
## [2084] "#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 On https://t.co/crSVZCchQ6 Listen now Endless Nights by Blindberry Ghost via Concorde Music Company on https://t.co/ehXIAZJFox https://t.co/EbxdFPUZNp"                                                                                                                                                                                                                                                                                               
## [2085] "All The Countries With Nuclear Weapons Can Shove Their Nucs And Defence Budget Up Their Ass <U+0001F621><U+0001F620><U+0001F621><U+0001F620>\n#ChineseVirus19\n#COVID2019 #QuarantineLife # @mubasherlucman @SdqJaan @Globalpoliticss @siasatpk @BaaghiTV"                                                                                                                                                                                                                                                    
## [2086] "@paulapoundstone Trump finally has the freedom to go all-in with his pro-pollution agenda. #25theAmendmentNow #COVID19 #Covid19usa"                                                                                                                                                                                                                                                                                                                                                                           
## [2087] "NSW Police received 600 calls in just two days to report those not self-isolating. #COVID<U+30FC>19 #coronavirusau #CoronavirusLockdown   \nhttps://t.co/mKqS3FsIGT"                                                                                                                                                                                                                                                                                                                                          
## [2088] "#COVID2019 in a different perspective.............\n\npls read blog updated with 2 more supportive links hv been attached too.....\n\n@tanolipak\n@AdeelJavedCh\n@UmerInamPk\n@SdqJaan\n@essa1\n@AnjumKiani\n@MaleehaHashmey\n@MirMAKOfficial\n\nhttps://t.co/1juCqgeInE"                                                                                                                                                                                                                                     
## [2089] "#coronavirus shutdown https://t.co/a3GjvYj8MZ"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2090] "On the day we found out that almost 3.3 million people lost their jobs last week (not just a record but 5 times the previous record), the #Dow went up over 1350 points.\n\nAdd that to the list of things that would have been unthinkable two weeks ago.\n#coronavirus #COVID19"                                                                                                                                                                                                                            
## [2091] "Myanmar’s IDP camps inmates fear the spread of coronavirus\nRead more... https://t.co/6wWk0d9lIB #CoronaVirusUpdates #COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                  
## [2092] "Lock Down for 21 Days! Stay Home. Save Lives. \n.\n.\n#Besafe #LockDown #21Days #SaveLives #StayHome #SafetyMeasures #Coronavirus #COVID19 #Health #CoronavirusPrevention #TogetherWeCanWin #ConcreteSolutions #Machinery #ConcreteMachinery https://t.co/eAT4NiienX"                                                                                                                                                                                                                                         
## [2093] "Roku is giving away 30 days of premium video https://t.co/bkyKb8wx0d #av #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2094] "\"And the prayer of faith will save the one who is sick, and the Lord will raise him up. And if he has committed sins, he will be forgiven.\"\nJam 5:15 (ESV)\n\n#prayforboris\n#prayforthesick \n#COVID19"                                                                                                                                                                                                                                                                                                   
## [2095] "#SelfIsolation Day #2 hasn’t been a complete waste. <U+0001F60E>\nNot finished sorting ‘em all yet, mind, but not like I’m in any mad rush, huh? <U+0001F912>\n#COVID19 #cornoravirusus #lockdown https://t.co/2dv9H7eQgR"                                                                                                                                                                                                                                                                                 
## [2096] "Good informative video on #COVID2019 https://t.co/P9z6ELMCqU"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2097] "Thank you @davematthewsbnd <U+2014> Our family loved your at-home concert!! <U+0001F970><U+0001F970><U+0001F44F><U+0001F3FB> #bekindalways #COVID2019 #StayHomeSaveLives #DaveMatthewsBand #thanksverizon"                                                                                                                                                                                                                                                                                                    
## [2098] "18 people were arrested over conducting evening  prayer at a mosque and violating curfew regulations in Horowpathana today, further Police said that nearly 80 people had gathered for the prayers in spite of  curfew practice &amp; Covid19 warnings. #Curfew #StaySafeStayHome #COVID19 https://t.co/aUWYk50FPc"                                                                                                                                                                                           
## [2099] "In photos: Day one of lockdown in Cape Town : https://t.co/dOeQTGHkgd"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2100] "I hope that with all this mess going on with the politics in DC and COVID-19 that people taking voting a bit more seriously come November. If Mitch McConnell wins another election ...  <U+0001F926><U+0001F3FE><U+200D>♀<U+FE0F> https://t.co/zA55slFrWG"                                                                                                                                                                                                                                                  
## [2101] "More Sailors Test Positive for COVID-19 Aboard U.S. Navy Aircraft Carrier https://t.co/erAEYdPPN4"                                                                                                                                                                                                                                                                                                                                                                                                            
## [2102] "THIS IS A MUST WATCH!!  A CITIZEN EXPOSES THE CORONAVIRUS FRAUD!!\n\n#CoronaLockdown #coronavirus #CoronavirusOutbreak #CoronavirusPandemic #CoronaVirusUpdate \n\nhttps://t.co/HWykdgZlir"                                                                                                                                                                                                                                                                                                                   
## [2103] "The absolute beauty of social movement #thankyoukeyworkers #COVID19 https://t.co/2cNMRqNHIA"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2104] "https://t.co/6pgdIvqdVo   @JoyAnnReid @HoarseWisperer @chrislhayes @realDonaldTrump @ChrisCuomo @FoxFriendsFirst @TuckerCarlson @seanhannity  \n#NoCanadian wants to go to the U.S, we’re WAY better off during this crisis here in Canada <U+0001F1E8><U+0001F1E6> <U+0001F644>"                                                                                                                                                                                                                            
## [2105] "@bbchausa 1-The reason why covid-19 was in Ngeria is due to the negligence of the @OfficialAPCNg administration."                                                                                                                                                                                                                                                                                                                                                                                             
## [2106] "There is no such thing as weekends anymore. #coronavirus #QuarantineLife"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2107] "In Singapore, those who do not adhere to the one-meter safe distancing measures in public places could see themselves paying a hefty fine, or landed in jail. #COVID19  https://t.co/fY97SBI0rk"                                                                                                                                                                                                                                                                                                              
## [2108] "My aggressive pattern of weed smoking beginning when my own personal lockdown started has lead to a coughing injury, specifically an intercoastal muscle strain, which I earlier today mistook for COVID-19. Ladies and gents, webMD has once again confirmed I am just an idiot."                                                                                                                                                                                                                            
## [2109] "Taking out the bin, a mundane chore \"morphed into a rare treat\" \nhttps://t.co/gwRqggCOLC #coronavirus #COVID19"                                                                                                                                                                                                                                                                                                                                                                                            
## [2110] "@RawStory One of the many ways COVID-19 is like climate change. Reality does not give a flying flamingo about your believes. https://t.co/nRYktBiFt0"                                                                                                                                                                                                                                                                                                                                                         
## [2111] "United for Protection - Crown Heights Sefer Torah: <U+0001F58B>Join in the Crown Heights Community Sefer Torah being written on behalf of the members of Klal Yisroel who have fallen ill with COVID - 19. In the times of the Baal Shemtov Zt”l when a rampant disease… https://t.co/bMPGrdrmk8"                                                                                                                                                                                                           
## [2112] "Sometimes I hate to be right (worrying how wrong the government continues to be day after day): There were 181 new #COVID19 deaths in the UK, the highest one day rise so far. So much for the assertion yesterday that lockdown measures were already showing results...\n#COVID19UK https://t.co/hOg1TSFgMh"                                                                                                                                                                                                
## [2113] "Are you guys still thinking that this virus isn’t as serious?\n#coronavirus https://t.co/KZXLsoonmA"                                                                                                                                                                                                                                                                                                                                                                                                         
## [2114] "Surprise surprise, absolutely no delivery slots for the shopping <U+0001F926>\n\n#shoppingonline #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                
## [2115] "Michael Sorkin, the visionary architect, urbanist, theorist, author, and director emeritus of the Graduate Urban Design Program @CityCollegeNY, has passed away after contracting COVID-19: https://t.co/zd3lvg75Fg"                                                                                                                                                                                                                                                                                          
## [2116] "Keep your distance.\n<U+2022> <U+2022> <U+2022>\n#darthvader #starwars #starwarsdaily #lucasfilm #disney #starwarsmemes #socialdistancing #stayhome #quarantine #coronavirus https://t.co/0mQZmWwH0M"                                                                                                                                                                                                                                                                                                         
## [2117] "#COVID19 just made me cry FUCK THIS SHIT SLOWING EVERYTHING DOWN <U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D>"                                                                                                                                                                                                                                                                                                                                                                                            
## [2118] "#CoronaLockdown #coronavirus #ElSalvadorEnCuarentena \nThis is not the time to indulge yourself.  You must reduce the consumption of food. Try avoiding eating meat! I eat seeds, nuts, beans, lentils etc. Food will become contaminated as more people get infected."                                                                                                                                                                                                                                       
## [2119] "#Ruralhospitals: what information or communications materials would be helpful to you during this time? We're adding to our resources page. Reply to this tweet or send us a direct message if you have ideas. https://t.co/NM47OMrCHN"                                                                                                                                                                                                                                                                       
## [2120] "Dr. Federico Pappalardo from @SanRaffaeleMI shares \"The General ICU experience\" from the #frontlines of the #COVID19 outbreak in Italy- Upon arrival to the emergency room, patients deteriorated quickly on NIPPV. \n\nNeed to identify these patients PROMPTLY. https://t.co/loBPK2jDxV"                                                                                                                                                                                                                  
## [2121] "@SuzyQlovesWine @joukesp Hi Susan, the details of the report are limited and although this is potentially a rare case of human-to-cat transmission, there is no evidence cats can pass COVID-19 to humans. We urge cat owners to be vigilant with hygiene and follow our latest advice: https://t.co/N0lWvuUrY2"                                                                                                                                                                                              
## [2122] "Once again @POTUS has been right about outsourcing all of our manufacturing especially to China... #coronavirus https://t.co/j4UoE7YFJy"                                                                                                                                                                                                                                                                                                                                                                      
## [2123] "@Nidhi WHO failed, first it downplayed it, to the extent that it said the covid-19 is not contagious. It took time to call it a pandemic. Incompetent staff or a tilt towards rising China has proven a disaster for the world."                                                                                                                                                                                                                                                                              
## [2124] "What in the covid-19 are those?! <U+0001F92C><U+0001F922> like why ?! <U+0001F974><U+0001F974><U+0001F974> https://t.co/Y4npx4OCY3"                                                                                                                                                                                                                                                                                                                                                                           
## [2125] "How many sympotomu's do you know? \n#COVID2019 https://t.co/SGS6nkMBdk"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2126] "How to use Apple’s COVID-19 screening app and website for yourself or someone else https://t.co/welesUy0LE https://t.co/yRpGWkh4nq"                                                                                                                                                                                                                                                                                                                                                                          
## [2127] "this is a terrifying statistic. \n\nand this is why all of us in #publichealth and medicine are advising you:\n\n1. please #stayhome\n2. please maintain distance from your elderly relatives (say hi through facetime instead, send food delivery &amp; flowers, etc)\n3. #covid19 is deadly https://t.co/IpyRJ35C4x"                                                                                                                                                                                        
## [2128] "Mainly I'm hoping that the #COVID2019 pandemic doesn't delay the Season 2 premiere.\n\nI've seen a lot of movies and projects get delayed, and I hope this doesn't as well https://t.co/s4YlOl27TI https://t.co/5GtUos6IrN"                                                                                                                                                                                                                                                                                   
## [2129] "TERRITORIANS have started to call for all interstate arrivals to be put into forced hotel quarantine for 14 days as the number of #coronavirus cases in the NT continues to rise. HAVE YOUR SAY IN OUR ONLINE POLL @thentnews https://t.co/woxeWmQ8Aa"                                                                                                                                                                                                                                                        
## [2130] "All I hear from #Trump and the #FED to spend money into the capital markets. @jimcramer calls to buy the stock market. Holy Shit, talk about the people they struggle, either with this virus or the effects. Fuck this #Dowjones performance, give the money to the people ! #COVID2019"                                                                                                                                                                                                                     
## [2131] "Top: Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/6UF99JCxpF, see more https://t.co/IlHfm1kzU2"                                                                                                                                                                                                                                                                                                                                                        
## [2132] "Perhaps more elders and church leaders will have the opportunity to see how helpful this digital age can be<U+2014>not to replace the weekly worship service, but to provide additional helpful resources for discipleship and Bible study. https://t.co/50EpszPH2f"                                                                                                                                                                                                                                          
## [2133] "Why is Mass Testing Ideal for the COVID 19? https://t.co/ZQbxZAsv75 https://t.co/q2WByLJrYW"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2134] "This helps illustrate the domestic demand problem facing China.\n\nIt's like factories rushing to reopen but then overseas demand dies. Reopening is just half the battle. \n\nChina’s cinemas reopen, but see just two people a day as #coronavirus fears linger https://t.co/ozkTgBg1LN"                                                                                                                                                                                                                   
## [2135] "Davido wan dey whine our mentality how on earth is that possible your wife is positive but him and his son are negative please who dey breast feed his son? Him or chioma this Nigeria nah scam @davido needs more followers<U+0001F602>\n#COVID19\n#sydneytalker #StayAtHomeAndStaySafe"                                                                                                                                                                                                                     
## [2136] "@CharlieeRose3 Is that one of those covid 19 tests standing upright on the table, or are you just pleased to see me"                                                                                                                                                                                                                                                                                                                                                                                          
## [2137] "COVID-19--Here's an idea: Create a FaceTime Number, let's say \"999\" that would be a pre-call to 911 for folks initially worried about COVID-19 to get an initial review. Use 3rd year, either Med School or Nursing degree (BSN), volunteers. Liability exempt program, of course"                                                                                                                                                                                                                          
## [2138] "Seen on a #SocialDistancing walk in Nyack, NY.  #coronavirus https://t.co/rBIFYojejf"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2139] "Obama left office in 2016 it's 2020. You're trying to tell the public that your people couldn't order more mask if supplies were low? What are you people doing in Washington and where are our taxes dollars being used for really? #TrumpMadness #Obama #COVID<U+30FC>19 https://t.co/7JGjGXZ7rZ"                                                                                                                                                                                                           
## [2140] "More than 8000 people dead in Italy alone, only the living will be hungry\nPlease stay at home! Better to be safe than sorry. #CoronaVirusUpdate\n#Nigeria\n#COVID19 \n#CoronaVirusNigeria"                                                                                                                                                                                                                                                                                                                   
## [2141] "As the city scrambles to head off a COVID-19 outbreak at homeless shelters, frontline workers worry that it won’t be enough - https://t.co/1HLd56LM6Z https://t.co/MgnJQd6ha2"                                                                                                                                                                                                                                                                                                                               
## [2142] "Chaser: \n\nFDA guidelines now \"specifically bar the use of at-home [coronavirus] sample collection. This means startups...will have to immediately discontinue their testing programs in light of the clarified rules.\"\n\nhttps://t.co/VIKOJXwCdq"                                                                                                                                                                                                                                                        
## [2143] "@citizentvkenya This ain't the best idea for preventing Covid_19"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2144] "@realDonaldTrump So much winning that countries are urging their citizens in the U.S. to return home immediately bc it’s too dangerous here with the #CoronavirusOubreak \n\nhttps://t.co/9esY0YAyir https://t.co/eQ0VWMn4S2"                                                                                                                                                                                                                                                                                
## [2145] "Coronavirus (COVID-19) advice and updates - The Law Society https://t.co/trhWXljcNX"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2146] "Coronavirus stats and figures are everywhere we look. This post will help you understand fatality rates and the flaws behind the calculations https://t.co/jKYytZ5lZV #Statistics #FactCheck #COVID2019 #CoronavirusPandemic"                                                                                                                                                                                                                                                                                 
## [2147] "Funders are mitigating the stress grantees are dealing with during the #coronavirus crisis. Hear how @McKnightFdn, @FordFoundation, and others are being be transparent and flexible in this time of the #coronavirus crisis. https://t.co/YI5VDloN17."                                                                                                                                                                                                                                                       
## [2148] "@narendramodi Sir,China supplied faulty Corona virus test kits to spain(Spain Doctors told) please ignore this China kits, please be prefer South Korea Corona virus kits @narendramodi #covid_19 #coronaviruskits"                                                                                                                                                                                                                                                                                           
## [2149] "@NorbertElekes stay healthy and care! <U+0001F626>#coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2150] "#Coronavirus\n\nNYC Lockdown...\n\nWomen says \"this is a great opportunity to focus on and build our relationship while we are isolating\"\n\nMan thinks \"FFS... I'm going back to the shed to focus on Distillery Kit\"."                                                                                                                                                                                                                                                                                  
## [2151] "'Tip of the iceberg': is our destruction of nature responsible for Covid-19? https://t.co/PCCdyHxNqx"                                                                                                                                                                                                                                                                                                                                                                                                         
## [2152] "Coronavirus Is Turning People Into Weed Hoarders\nOne man bought enough weed to roll 3,500 joints while an Airbnb host has started a grow-op to make up for lost bookings due to COVID-19.\n\nhttps://t.co/PnzNtftlCk"                                                                                                                                                                                                                                                                                        
## [2153] "Love,  love this. The Future is Uncertain. That don’t mean that nothing’s working here and now #coronavirus https://t.co/zzCJzMhxdH"                                                                                                                                                                                                                                                                                                                                                                        
## [2154] "@chrissyfarr @ChrisCuomo trash bags as #PPE SERIOUSLY?! #covid19 #hcldr https://t.co/ffnpiaja2z"                                                                                                                                                                                                                                                                                                                                                                                                              
## [2155] "Hearing everyone on my estate clapping, cheering, whistling, beeping horns and setting fireworks off for the NHS and all the key workers was an emotionally special moment! #clapforourcarers #NHSheroes #Coronavirus #COVID19"                                                                                                                                                                                                                                                                               
## [2156] "@NikkiHaley I don’t understand how this will help small businesses, airline industry and the people who can’t work and/or lost their jobs because of Covid-19. I truly believe this just put the nail in the coffin on next election. This bill is a travesty"                                                                                                                                                                                                                                              
## [2157] "@WebhelpUK @SkyUK why have you not organised for ppl to WFH yet? The risk of spreading this virus is real. You seen this coming! #cornavirusuk #StayHomeSaveLives #COVID2019 #CovidUK"                                                                                                                                                                                                                                                                                                                        
## [2158] "@caligalin @vikkie @Eugene_Scott Is covid-19 the same thing as the Chinese virus ? I’m confused"                                                                                                                                                                                                                                                                                                                                                                                                             
## [2159] "<U+0001F9A0><U+0001FA7A><U+0001F52C><U+0001F489> as we are getting ready to empty a rehab floor to make confirmed COVID-19  section (the cases rising) in our hosp., and a Xenexing room for re-used N95s, my kids ganged up on me and made a jazz and Shell Silverstein night. We shall overcome. Love and hugs <U+2764><U+FE0F><U+0001F917><U+0001F913><U+0001F622> https://t.co/GJ2YRqPEsW"                                                                                                                
## [2160] "Marin County announced the first death related to the new coronavirus as more county residents in assisted living facilities and a mobile home park tested positive for COVID-19 https://t.co/8g1IhNGUSZ"                                                                                                                                                                                                                                                                                                     
## [2161] "They built nuclear weapons, \nbuilt missiles tower\nReal fight begun but they are loosing their power.\n#COVID2019\n#StayAwareStaySafe"                                                                                                                                                                                                                                                                                                                                                                       
## [2162] "@realDonaldTrump @WhiteHouse 345 #Coronavirus deaths, 18000 new cases in the United States in 24 hours, according to tracker: AFP news agency\nChina virus \nWuhan virus \nFuck china"                                                                                                                                                                                                                                                                                                                        
## [2163] "“Unwoke” Question: What Percent of Covid-19 Patients/Deaths Are Accounted for by Homeless? https://t.co/fxRxoorO3V"                                                                                                                                                                                                                                                                                                                                                                                         
## [2164] "Line up at the COVID-19 Assessment Centre at Brewer Arena in #Ottawa Thursday March 26, 2020. @OttawaCitizen @ottawacity @ottawahealth #COVID<U+30FC>19 #COVID #ottnews https://t.co/2P6IZpiEbw"                                                                                                                                                                                                                                                                                                              
## [2165] "Senator dumbfuck #RandPaul #COVID<U+30FC>19 \nClaims he Didn't meet the criteria for quarantine, then follows that with he traveled extensively and is in a high risk group. <U+0001F644> https://t.co/tNrOwW6cK2"                                                                                                                                                                                                                                                                                            
## [2166] "The Salt Lake County Government Center is closed due to orders implemented  by the County Mayor’s Office as a precaution to combat COVID-19."                                                                                                                                                                                                                                                                                                                                                                
## [2167] "COVID-19 Response Update - Extra Cleaning Procedures - https://t.co/RmsedATOUw"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2168] "What countries have been affected by the novel coronavirus known as COVID-19? How many cases are there in China? https://t.co/oIM94ATIpO via @ChannelNewsAsia"                                                                                                                                                                                                                                                                                                                                                
## [2169] "What else can you expect from china<U+0001F923>\n#Chinese maal <U+0001F602><U+0001F602>\nOnly things real is #ChineseVirus19 #coronavirus #COVID2019 https://t.co/N9Mx6iWs7u"                                                                                                                                                                                                                                                                                                                                 
## [2170] "@Dr_BoAbrahamsen @psychospen @BethRigby At the time, the hospital had no covid -19 patients, he was lying as usual."                                                                                                                                                                                                                                                                                                                                                                                          
## [2171] "The U.S. may end up with the worst COVID-19 outbreak in the industrialized world. @edyong209 explains how it will play out: https://t.co/UdNE3QoJHE"                                                                                                                                                                                                                                                                                                                                                          
## [2172] "@GregHuntMP and @ScottMorrisonMP were warned about #COVID19 in November by the CSIRO and did nothing! https://t.co/9zfG7hHyNt"                                                                                                                                                                                                                                                                                                                                                                                
## [2173] "(JUST IN/BREAKING): \"FIRST country to reach 100000 infections\": hashtag TWO (March 28, 2020; 6:39 HKT) #UNITEDSTATESOFAMERICA #covid19"                                                                                                                                                                                                                                                                                                                                                                     
## [2174] "Feeling uncertain about you career as a result of the COVID-19 situation? Alumni Career Services is here to help! Consider attending our VIRTUAL Drop-in Hours! These are OPEN TO ALL and will be completed online through Zoom: https://t.co/9zhVwtppFJ. #WeAreUK #AlumniCareerService https://t.co/UT7fE7YP3A"                                                                                                                                                                                              
## [2175] "The World Health Organization says a face mask is only required if you are caring for someone with COVID-19, if you are coughing or sneezing or you suspect you have it https://t.co/dusQUaA6OQ"                                                                                                                                                                                                                                                                                                              
## [2176] "\"If you follow the mainstream media/Democratic narrative, the pandemic has laid bare the weaknesses of the U.S. health care system.\"\n\n.https://t.co/yMfzD9m4vP"                                                                                                                                                                                                                                                                                                                                           
## [2177] "Lord \nThank \nYou \nfor \nAnother \nDay \n\n\"MATATAPOS DIN ANG COVID-19\"\n                IN JESUS NAME\n                        AMEN"                                                                                                                                                                                                                                                                                                                                                                     
## [2178] "<U+0001F3D6><U+FE0F>   <U+0001F3C3><U+200D>♀<U+FE0F>   <U+0001F3C3><U+200D>♂<U+FE0F>   <U+0001F6B7>Point Pleasant's boardwalk is usually packed on a sunny day but due to social distancing amid the novel coronavirus (COVID-19), some Jersey Shore mayors are closing beaches.\n\n@heatherfordham_ reports.\n\nhttps://t.co/Q6fxWkLziV"                                                                                                                                                                   
## [2179] "How amazing sharing a moment with all your neighbours doing the clapping and making noises for all the amazing nurses and doctors in the NHS at this crazy time in the world right now. We will beat this!! #respect #nhs #COVID2019 #doctors #nurses #grateful"                                                                                                                                                                                                                                              
## [2180] "TBHU Announces: https://t.co/NsO0hijnv0 https://t.co/oIvCD4Gjji"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2181] "15. It is interesting to ponder upon.. right ? \n\nWell ..Wuhan is open for business now\n\nCovid - 19 needs to be seen in the backdrop of the arm twisting of China by USA in the trade war\n\nAmerica and all the above mentioned countries are devastated financially"                                                                                                                                                                                                                                     
## [2182] "@CapitaPlc Are you satisfied with your response to #COVID2019 and do you think it`s fair to expose your staff to this level of danger?"                                                                                                                                                                                                                                                                                                                                                                       
## [2183] "Gov. McMaster will be joined with Sen. Lindsey Graham and  Tom Rice for a COVID-19 briefing at 4 p.m.\n \n@SouthStrandNews\n will stream the press conference on our Facebook page."                                                                                                                                                                                                                                                                                                                          
## [2184] "Amidst all the crap going on due to #COVID19 and #CurfewinKenya this is the comic relief I needed https://t.co/kv5iAHoCnJ"                                                                                                                                                                                                                                                                                                                                                                                    
## [2185] "@juliana_wyatt Update: she didn’t get this tattoo because of covid-19, thank you.  -her sister"                                                                                                                                                                                                                                                                                                                                                                                                              
## [2186] "@FT The plan delays student loan payments for three months.\n\nTrudeau said Canada was testing 10,000 people a day for COVID-19, the respiratory illness caused by the new coronavirus, and Canada was ramping up production of emergency medical equipment and medication."                                                                                                                                                                                                                                  
## [2187] "@HillaryClinton @ChelseaClinton Hillary you are taking advantage of covid-19 to gain political relevance."                                                                                                                                                                                                                                                                                                                                                                                                    
## [2188] "Praying for USA today #putgodfirst #coronavirus https://t.co/UM1zkaUDZa"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2189] "Please take care of yourself this weekend! <U+0001F637>\n#fridaythoughts #fridayfeeling #fridaymotivation #tgif #argus #coronavirus #covid19 #staysafe #stayhealthy https://t.co/DtX9zAH4i2"                                                                                                                                                                                                                                                                                                                  
## [2190] "This will be remembered @BDUTT. How India keeps failing its own again &amp; again. 73+ years &amp; counting.Still in search of the promised Messiah. Hopefully leaders will emerge 4m it\n\nPs: this is at par with your coverage of Kargil. Just a different kind of war.\n\n#COVID19 #coronavirus https://t.co/xXRirGXy17"                                                                                                                                                                                  
## [2191] "Thank you @AlfredSanchez58 and the entire @MiamiChamber Staff and Board for all you are doing during #COVID19, to protect #business and individuals and the #community -- to keep us safe and healthy. #TogetherForFlorida\nhttps://t.co/t3lOU0oMDy"                                                                                                                                                                                                                                                          
## [2192] "NT police officer from Central Australia tests positive for #COVID-19 https://t.co/x0XmwfCx9t"                                                                                                                                                                                                                                                                                                                                                                                                                
## [2193] "Pipeline workers putting locals at risk of COVID-19 infection: Unist’ot’en https://t.co/VPeWh0VPYX via @APTNNews #yyj #coronavirus"                                                                                                                                                                                                                                                                                                                                                                         
## [2194] "IF YOU DON'T #TEST YOU DON'T KNOW.\n\n#COVID19 NUMBERS FOR #INDIA MEAN NOTHING."                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2195] "Why many passengers grounded by COVID-19 aren't getting refunds for cancelled flights https://t.co/EIOei4jOau https://t.co/7ofZ19pqwZ"                                                                                                                                                                                                                                                                                                                                                                        
## [2196] "The Governor in Michigan has threatened Pharmacists and Physicians who allow the use of Hydroxychloroquine to be used in their #COVID19  patients.   They need to fire their medical advisors who told them to do this."                                                                                                                                                                                                                                                                                      
## [2197] "“Where do I get my news?” on COVID-19 @cameronreilly and @WW2Podcaster asked. Duh, boys, I’ve been waiting for YOU!!! https://t.co/2fKvsk5wuO #COVID19 #wereadbooks #bsfilter #FactsNotFear"                                                                                                                                                                                                                                                                                                               
## [2198] "An ‘infodemic’ is also plaguing the world, making trusted journalism more vital than ever <U+2066>@TorontoStar<U+2069> #COVID19 #journalism <U+2066>@Poynter<U+2069>  https://t.co/5GVA2vFyyt"                                                                                                                                                                                                                                                                                                              
## [2199] "Caption this greasy move in 6 words or less.\n\n#writingblock #writersnetwork #writing #writingprompt #thesix #ideas #covid19 #coronavirus #coronavirustoronto #ontario #storytelling #writechat #writer https://t.co/fTOAid6GGy"                                                                                                                                                                                                                                                                             
## [2200] "#RuralEd - \"We really need a sense of urgency from policymakers to close the #digitaldivide\"\nhttps://t.co/TGxEYYP0B0 #rplccapr #ruralissues #ruralpolicy #education #internet #broadband #communications #COVID19 #eLearning @nrea1"                                                                                                                                                                                                                                                                       
## [2201] "@mikekujawski @CDS_GC Hi there! We aren’t working on the CERB delivery but we do have a team building a tool to help people navigate federal benefits for #COVID19.  With info moving so quickly, we want to help people determine what to apply for, how much that’s worth and when that help will be coming"                                                                                                                                                                                              
## [2202] "@LouiseMensch @thetwerkinggirl Prince Charles has CoVID-19 <U+0001F926><U+0001F3FD><U+200D>♀<U+FE0F>"                                                                                                                                                                                                                                                                                                                                                                                                        
## [2203] "If you find yourself having a really hard time handling COVID-19 stress, these 7 tips can breathe new life into your spirit! <U+0001F54A><U+FE0F>\n\n<U+0001F60C> - https://t.co/ps0jTSBY8j\n\n#AdvancedTherapeuticsLLC #LiveWell #BeatCOVIDStress #ThisTooShallPass #WeWillPrevail #TakeCareOfYourself #Roselle #IL https://t.co/ynzvRpdSUt"                                                                                                                                                                 
## [2204] "@WHO We have seen that Creatures beside us are not getting the victim of #COVID19 ..so what is their special immunity property &amp; DNA composition that is ahead of this virus which has been panic of whole world..i think respectable scientists should research about it .. Atleast try"                                                                                                                                                                                                                 
## [2205] "The U.S. now leads the world in confirmed coronavirus cases.\n\nOut of nearly 530,000 cases worldwide, the USA reports 82,547 confirmed cases. China reports 81,285, Italy 80,589, Spain 57,786, and Germany 43,938.\n\n#COVID2019 #CoronavirusUSA \nhttps://t.co/4pe5Y5hzXL"                                                                                                                                                                                                                                 
## [2206] "@Tarvastu Covid-19 was the black swan this time. The main risk is the standstill it creates for everyone and that will be about time. Will C-19 impact long enough for economies to come to a complete stop and be broken (depression) is the main uncertainty. 1/x"                                                                                                                                                                                                                                          
## [2207] "#RoddyRicch #TheBox #Future #Drake #PostMalone\n#LewisCapaldi #ArizonaZervas #DanShay #JustinBieber #DuaLipa #BillieEilish\n#Mustard #DaBaby\n#TheWeeknd#Lizzo\n#quarantine #BlackBear\n#JuiceWrld #CardiB #coronavirus #LilBaby\n#covid19 #85SouthShow\nIG thebigshow67\nFB Big Show Management https://t.co/4CFpxFXFPL"                                                                                                                                                                                     
## [2208] "https://t.co/uTE9AwmQWG All job gains, at least a big chunk of it, made during Trump’s presidency is gone in a single stroke. It would be interesting to see how the world join hands to punish China for allowing the #CoronavirusOubreak to slip out of hands for the world to suffer."                                                                                                                                                                                                                    
## [2209] "@Dodgers I just can't. MLB - 0, COVID - 19. Blowout! #SAD Pray we can get right, get well and get back to live baseball. #IMissYouBaseball #Dodgers #WashYourHands https://t.co/ljHsRFsVw6"                                                                                                                                                                                                                                                                                                                   
## [2210] "While everyone Is doing what they need to do to combat or prepare for the “pandemic” to be a #Tbt…\n\nrealize what you did today! #FuckCorona #caronavirusoutbreak  \n\nEnhancing my online Presence #CaronaViralPresence\n\n#SuckAtSocialDistancing #CoronaLockdown  #COVID19  #NYCLockdown https://t.co/bGgz7xksgB"                                                                                                                                                                                      
## [2211] "@GovAndyBeshear has asked us to light up our homes green to remember those that we lose to Covid-19. I don’t have that ability but I can change my profile pic to honor their memories and the governors request. #TeamKentucky #TogetherKy #HealthyAtHome #NewProfilePic https://t.co/tAkbGSmNdT"                                                                                                                                                                                                           
## [2212] "To all of the healthcare heroes out there, thank you. <U+0001F44F> Tag your hero in the comments.\n#medTwitter #COVID19 #coronavirus #HealthcareHeroes https://t.co/GCRV0lbXic"                                                                                                                                                                                                                                                                                                                               
## [2213] "@BBCBreaking Shouldn’t they be focusing on not killing off their entire population?? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                               
## [2214] "APS Daily COVID-19 Update for March 27: https://t.co/skHG3cDGsP https://t.co/30SNtq8XD0"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2215] "@RenegadeSci @thestermeister @ashwahi @bgurley With 700 apparent recoveries vs 1 deceased, hopefully we will get more data soon.\n\nhttps://t.co/BJSCi3zkQm"                                                                                                                                                                                                                                                                                                                                                  
## [2216] "A thought struck me that we are now kinda going thru what we have made some unborn boys and girls go thru since the 8th was repealed. Now we know something of their terror. #ProLife #COVID19"                                                                                                                                                                                                                                                                                                               
## [2217] "Coronavirus updates LIVE: Boris Johnson diagnosed with COVID-19, Italy records nearly 1000 deaths in a single day https://t.co/69q1xEcsZw via @smh"                                                                                                                                                                                                                                                                                                                                                           
## [2218] "@LukeHall @mhclg letter to caravan and park home site owners to make clear that they should remain open for key workers and vulnerable groups during the COVID-19 pandemic (27 March) https://t.co/lRyUgxCpuF"                                                                                                                                                                                                                                                                                                
## [2219] "@drwai @KDHSSD @GovKaduna @elrufai But you said the governor should use the opportunity of #covid19 crisis to curtail the almajiri system. Isn't using state government buses to convey the almajirai to where they come from enough? @drwai @elrufai"                                                                                                                                                                                                                                                        
## [2220] "@laurenswartley reach our customer service during our temporary business hours of Monday - Friday 9am-5pm (CT) as we work through the impact of COVID-19. Keep in mind, you would want to check our full site for this, and not the app. ^AL"                                                                                                                                                                                                                                                                 
## [2221] "Heads-up! No matter your age, be sure you have a will, living will, power of attorney and other documents prepared. Some of us may not make it out of this alive. Help your loved ones by being prepared.\nhttps://t.co/NzHp8vb0By\n#will #powerofattorney #estateplanning #covid19 #virus"                                                                                                                                                                                                                   
## [2222] "@YouTube date night. Watching  #littlewomen with my man since we haven't seen each other since #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                    
## [2223] "@ABC May Allah prevent us from this Covid-19 that has damaged the economy and almost destroy the whole world.\n\nMay Allah safeguard from this Covid-19. Ameen\n\n\"Alhamdulillah Rabana Ashifna-l 'azaabal inalil mu'kminuun"                                                                                                                                                                                                                                                                                
## [2224] "We’re all in this together as we combat COVID-19. At Toyota, we’re working to help manufacture essential medical supplies and to support our communities and our customers. https://t.co/2jFQDViVkU https://t.co/fcLgmtmiMX"                                                                                                                                                                                                                                                                                
## [2225] "@I_PrashantTyagi Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                           
## [2226] "Amid strong protests by locals, the Pakistan army has started to move coronavirus positive patients from Punjab province to PoK &amp; Gilgit Baltistan - the 2 most marginalised areas under Pakistani occupation.\n#coronavirusinpakistan\n#pkmkb\n\nhttps://t.co/13Bc7YuzI1"                                                                                                                                                                                                                                
## [2227] "Detainees make medical face masks at the Hajdu-Bihar County Penitentiary in Debrecen, Hungary today. Protective masks are manufactured 24 hours a day. The production capacity is currently 33 thousand pieces a day. (<U+0001F4F7>: AP) #COVID19 https://t.co/FTBCxbptbS"                                                                                                                                                                                                                                    
## [2228] "@OhiaLehuaMaui @CTV_AvisFavaro Clear as mud. Heaven help us. Too many unknown factors, any one of which or in combo, could determine who may or may not benefit/suffer from NSAIDs given for #COVID19 . Thanks again."                                                                                                                                                                                                                                                                                        
## [2229] "Can mosquitoes carry COVID-19? If so, can they transmit it to humans if they land on or bite us? #CNNTownHall @CNN"                                                                                                                                                                                                                                                                                                                                                                                           
## [2230] "BRO IF YOU HAVE COME INTO CONTACT WITH SOMEONE WHO HAS TESTED POSITIVE FOR COVID-19 THEN STAY THE FUCK AWAY FROM OTHER PEOPLE\nfucking assholes"                                                                                                                                                                                                                                                                                                                                                              
## [2231] "“Draganfly is honored to work on such an important project given the current #pandemic facing the world w/ #COVID19...” said Andy Card, Director of @DraganflyInc &amp; former Secretary of Transportation &amp; White House Chief of Staff. READ:  https://t.co/lZ3fT6iry6 $DFLYF $DFLYF $3U8 https://t.co/VS2jFHPsB8"                                                                                                                                                                                     
## [2232] "@thehouseofpod @skipocytes @NurseNikki71 Related:\n\nhttps://t.co/uPy9huSRI1"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2233] "Quarantine Day 12: \nHave started oiling my armpit hair in the hopes of being able to braid it soon\n\n#COVID2019 #StayingAtHome"                                                                                                                                                                                                                                                                                                                                                                             
## [2234] "@tofatochibo @citizentvkenya Only in Kenya where covid-19 viruses don't spread during the day"                                                                                                                                                                                                                                                                                                                                                                                                                
## [2235] "As the hours counted down before Wednesday evening's shelter in place order took effect, several residents and businesses in the community stood in solidarity to share one simple message: “We can. We will. We must.” https://t.co/NKs3e9p7U7"                                                                                                                                                                                                                                                            
## [2236] "NEW: U.S President and Chinese President put aside cold war, speak on phone to chart new direction on fight against covid-19."                                                                                                                                                                                                                                                                                                                                                                                
## [2237] "@think4urself6 @sadfly46 @SenSanders @AOC The US is losing 2 dead for every recovered patient as of last check, and well on track to lose 2.2 million people directly to COVID-19 and millions of more due to indirect causes. It can't even provide proper PPE to its people while Italy has."                                                                                                                                                                                                               
## [2238] "@kakape Every single US illness, every single US death, and every single dollar of economic damage from COVID-19 will be the fault--single-handedly--of one person: \n\nDonald J. Trump"                                                                                                                                                                                                                                                                                                                      
## [2239] "@DogginTrump Household cleaner with a microfiber cloth attached <U+0001F637> #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2240] "The Spring Fling 2020 - Scheduling Update @IRTTheater #covid19 #coronavirus https://t.co/UgYxjsUjbK https://t.co/cn0lkUF2I1"                                                                                                                                                                                                                                                                                                                                                                                  
## [2241] "@Lvethelife @KatrinaPierson News flash Donald FAKE NEWS Trump is lacking in leadership skills! <U+0001F633>DT calling coronavirus covid-19 a hoax blaming the Democrats! Donnie Boy knew about the covid 19 back in January 2020 &amp; elected to do nothing!<U+0001F621>The do nothing Donald!"                                                                                                                                                                                                              
## [2242] "Atlanta Site Added to NIH Clinical Trial of a Vaccine for COVID-19 | NIH: National Institute of Allergy and Infectious Diseases $mrna @moderna_tx    https://t.co/DCpigfZBV8"                                                                                                                                                                                                                                                                                                                                 
## [2243] "World COVID-19 5:30 a.m. update: 500,000 infections globally https://t.co/4KwmpHE5C4"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2244] "@Fox_Claire I  suggest you keep to what you know about; \"Democracy\". As far as I am aware you have no scientific training whatsoever. Topics such as MMR and COVID-19 are far too important and sensitive for you to use as a topic for debate.\nPlease desist."                                                                                                                                                                                                                                            
## [2245] "I would love some lobster.  Where can I find some near Prince George? https://t.co/y0ZvcyOXI7"                                                                                                                                                                                                                                                                                                                                                                                                                
## [2246] "Police man giving food for dog #wonderful moment #keralapolice on duty #COVID19\n\nhttps://t.co/5HlqkLXCtP"                                                                                                                                                                                                                                                                                                                                                                                                   
## [2247] "If this is true,  then it's a piece of GOODNEWS https://t.co/397c6qlNWa"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2248] "In the #COVID2019 outbreak robots have the potential to be deployed for disinfection, delivering medications and food, measuring vital signs, assisting border controls, and for continuity of work and maintenance of socioeconomic functions. https://t.co/6kMSJaS8IN"                                                                                                                                                                                                                                      
## [2249] "Covid-19: Queensland reduces long-haul train and coach services https://t.co/1ogLFn9I6k #news #rail #trains https://t.co/TnYwN6ogGv"                                                                                                                                                                                                                                                                                                                                                                          
## [2250] "My name is Kristina, Registered Nurse (RN). \n\nRight Now (RN) we live in scary times. \n\nRising Numbers (RN) prove COVID-19 is real. \n\nRemember Not (RN) everyone is safe. \n\nBut one way we can save our families &amp; friends is with your assistance to social distance. #FlattenTheCurve"                                                                                                                                                                                                           
## [2251] "#FDA approval and criteria for use of investigational #convalescentplasma / #antibody Tx in #COVID19. https://t.co/U227OQLWNk"                                                                                                                                                                                                                                                                                                                                                                                
## [2252] "Ghana's recorded COVID-19 cases stands at 137 with 4 deaths and 2 recoveries. #GhanaDaily #COVID2019Ghana #COVID2019 #StayAtHomeAndStaySafe https://t.co/CHkDsvqnHj"                                                                                                                                                                                                                                                                                                                                          
## [2253] "I'll be on the Digital Mirage Online Music Festival next week. 100% of proceeds will benefit Sweet Relief Foundation for musicians affected by the COVID-19 pandemic. RSVP: https://t.co/yvLz0M7vL8 https://t.co/VNdOcoNFdH"                                                                                                                                                                                                                                                                                  
## [2254] "@journo_dale It’s an indication that people Really. Aren’t. Getting it. It’ll reduce when we all *strictly* do our part. #stayhome #isolate #inthistogether #COVID19"                                                                                                                                                                                                                                                                                                                                      
## [2255] "@smitaprakash should learn from this camera person and donate generously.\n#Lockdown21 \n#CoronavirusOubreak https://t.co/iOECkXJr6d"                                                                                                                                                                                                                                                                                                                                                                         
## [2256] "All I wanted was an example of modeling and somehow Covid 19 popped up https://t.co/oUqFd8vPOz"                                                                                                                                                                                                                                                                                                                                                                                                               
## [2257] "PARENT ORIENTATION ON A VIRTUAL PLATFORM\nAbhinav Global School organized Parent Orientation Programme for the Parents of 2020-2021 on a “Virtual Platfrom”. The programme was concluded with the Question Answer Session. The programme was very inspiring and enriching.\n#COVID19 https://t.co/VjxzoNbO8E"                                                                                                                                                                                               
## [2258] "honestly, you’ve done a SHITTY JOB!! why is USA now the global hotspot for the #coronavirus pandemic?? how could this happen if you &amp; your gang of incompetent uncaring thugs didn’t SCREW UP? HOW? https://t.co/Wcfp47njQm"                                                                                                                                                                                                                                                                            
## [2259] "COVID-19 Information Resource Page - New Jersey State Bar Foundation https://t.co/MCQoooHUi8"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2260] "@Nan_Van99 The only thing Covid-19 has resuscitated"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2261] "@tomelliottnz @EmmaVitz Might be able to see a Lufthansa plane tomorrow, that’s quite unusual in Auckland! https://t.co/wlDubVtUhX"                                                                                                                                                                                                                                                                                                                                                                          
## [2262] "EVERYONE should watch Contagion<U+2014> mirrors EXACTLY what we are going through! This was filmed in 2011!!  Planned pandemic? I’m just sayin...<U+0001F637><U+0001F47F><U+0001F630> #coronavirus #COVID19 #virus #flu #pandemic #epidemic #WHO #CDC #LockdownUSA #Seattle #veteran #military #Contagion #Event201"                                                                                                                                                                                         
## [2263] "I've been getting questions about my recent travel back to Taiwan amid the #COVID19 outbreak so wanted to share my experience.\n\nA (long) thread <U+0001F9F5>"                                                                                                                                                                                                                                                                                                                                               
## [2264] "Great news! My student’s COVID-19 test came back negative! Enjoying the little victories where I can."                                                                                                                                                                                                                                                                                                                                                                                                       
## [2265] "When you end up talking to Covid-19 in Guyana https://t.co/WvLZkDqxwp"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2266] "@BillGates just now on @CNN “There is no light at the end of the tunnel for April, as the numbers continue to go up you can not open the country” 180 degrees different opinion than @realDonaldTrump. \n#COVID2019"                                                                                                                                                                                                                                                                                        
## [2267] "Please Retweet.\nAll this Companies, Celebrities, Philanthropists, Foundations and many more that are giving African governments money in the name of donation for #COVID19 should stop. If you really wanna help, go to the streets."                                                                                                                                                                                                                                                                        
## [2268] "\"I’d like to end with something Singapore’s Minister of Health, @GANKIMYONG, said during today’s briefing.\n\nWe are only at the beginning of this fight. \n\nWe need to stay calm, stay united and work together\"-@DrTedros #COVID19 #coronavirus"                                                                                                                                                                                                                                                      
## [2269] "Domain Registrars Take Action Against Fraudulent COVID-19 Websites https://t.co/tvNxT6m38B #InfoSecMag"                                                                                                                                                                                                                                                                                                                                                                                                       
## [2270] "<U+0001F534> LIVE PODCAST: The Portugal Pillow Talk Podcast on @Spreaker #coronavirus #covid19 #mitigation #portugal https://t.co/bq4So042ny"                                                                                                                                                                                                                                                                                                                                                                 
## [2271] "No one died in Tiananmen, CoViD 19 is contained. https://t.co/XQIRnhhHMF"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2272] "Number of COVID-19 cases rises to 5 in Myanmar\nhttps://t.co/D8oMj7Es4t\n#AWANInews #AWANIpagi #EnglishNEWS #COVID19 https://t.co/whwbesjXsJ"                                                                                                                                                                                                                                                                                                                                                                 
## [2273] "11 new cases of #COVID19 have been reported in Nigeria: 8 in Lagos, 2 in Enugu &amp; 1 in Edo State\n\nAs at 11:55pm 27th March, there are 81 confirmed cases of  #COVID19 reported in Nigeria. 3 have been discharged with 1… https://t.co/zZSJZ25WjN"                                                                                                                                                                                                                                                      
## [2274] "NEW: One of Ontario's latest #COVID19 victims was a man in his 40s who worked at a Superstore in Oshawa and who tested positive just a few days ago, provincial officials have confirmed. He is likely Ontario's youngest victim of this terrible virus. #onpoli"                                                                                                                                                                                                                                             
## [2275] "US surpasses China for highest number of confirmed Covid-19 cases in the world https://t.co/8N7FJpy2vK"                                                                                                                                                                                                                                                                                                                                                                                                       
## [2276] "Best of luck all those diagnosed as of today. As you go to sleep tonight, know we're all with you. #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                
## [2277] "While the #coronavirus may be keeping us apart physically, neighbors across Utah are finding creative ways to safely uplift their communities. \n\n#TogetherUtah @HeatherKSL \nhttps://t.co/63FgfZE1sC"                                                                                                                                                                                                                                                                                                       
## [2278] "Downtown Winnipeg during covid-19. Visit <U+00A0>https://t.co/M62SC5nCr0<U+00A0>for the full album. Link in profile.\n.\n.\n.\n.\n.\n@ExploreCanada \n@globalwinnipeg \n@CBCManitoba \n@TravelManitoba \n@CanGeo \n@imagesofcanada \n@TourismWPG \n@DowntownWpgBIZ \n@weheartwpg https://t.co/kZ99OPLx1f"                                                                                                                                                                                                     
## [2279] "Damn you #coronavirus \n#COVID2019 \n#CoronaVillains \n#CoronavirusOubreak \n\nLosing my mind already \n<U+0001F926><U+200D>♀<U+FE0F> https://t.co/WBgzenyhoN"                                                                                                                                                                                                                                                                                                                                               
## [2280] "@John_Hattie addresses the #visiblelearning community during COVID-19 crisis. \"Together, we’ll brave through by doing what we do best: building a global community of educators shifting focus from teaching to learning\" #cov19edu  #teachingduringcoronavirus https://t.co/YDxIFgIUFo"                                                                                                                                                                                                                   
## [2281] "My cat practicing social distancing. #COVID2019 #SocialDistance https://t.co/qPKlEE5wki"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2282] "Somehow this is still behind a paywall...#NewsPapers #news #coronavirus #COVID19 https://t.co/2yjw92spCT"                                                                                                                                                                                                                                                                                                                                                                                                     
## [2283] "The Masters tournament has been postponed due to the COVID-19 outbreak but sportsbooks still have odds to win the 2020 Masters\n\nSportsbooks still have their odds to win the Masters tournament on the board, with Rory McIlroy as the current favorite to win:\n\nhttps://t.co/NKZUIn4GOM https://t.co/qVZPQer2KM"                                                                                                                                                                                         
## [2284] "My co-worker asking: “ Can we go out now?!” #covid19 https://t.co/taVhAlewNU"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2285] "Today I was informed that one the man responsible for almost my entire wish to be an illustrator during my childhood died because #covid-19 makes his health worse. I'm sad as fuck! #DanielAzulay thank you so much! https://t.co/Q8YWHSq0Wf"                                                                                                                                                                                                                                                                
## [2286] "I love memes #COVID2019 #memes #ChineseVirus19 #bruh #ThursdayMotivation #StayHome #Lockdown21 #<U+0641><U+0639><U+0627><U+0644><U+064A><U+0627><U+062A>_<U+0627><U+0644><U+062D><U+062C><U+0631>_<U+0627><U+0644><U+0645><U+0646><U+0632><U+0644><U+064A> https://t.co/nGD8KsDk1J"                                                                                                                                                                                                                           
## [2287] "**Grateful <U+2764><U+FE0F> Thankful <U+2764><U+FE0F> Blessed <U+2764><U+FE0F>** \n8pm tonight we appreciate all of our carers <U+0001F44F><U+0001F3FB><U+0001F970> #clapforourcarers #nhs #covıd19 #appreciation #quote #grateful #thankful #blessed #dancer #singer #actor #performer… https://t.co/iZ4rUumSV0"                                                                                                                                                                                           
## [2288] "New York sets up makeshift morgue as pandemic worsens https://t.co/9xBrJy3ULJ #National #Coronavirus https://t.co/7mEtAXjgwQ"                                                                                                                                                                                                                                                                                                                                                                                 
## [2289] "Emergency Care Packages are leaving our yard today. One of the many vans. Helping the most vulnerable people in our communities.\n#TogetherWeAreStronger #Bidfood  #Wakefield #COVID19 #WeWillBeatThis https://t.co/oasN6FhE2k"                                                                                                                                                                                                                                                                               
## [2290] "@TheSusanGeorge My name is Jennifer Rose, &amp; before the #coronavirus I was planning to work on a #Velocipastor sequel \"Velocipastor v. Manimal: Church v. State\" in the vein of #BvS4Years. Here's a little clip of what my role would've entailed. #HeyJenLookatMe https://t.co/en3oIlGubX"                                                                                                                                                                                                             
## [2291] "Actually, this resonated. Coping skills for dealing with a PhD do kind of translate to the current #COVID19 life... #phdpandemic #phdchat https://t.co/h2ibhky0XG"                                                                                                                                                                                                                                                                                                                                            
## [2292] "As a healthcare worker I urge you to please stay home too. I am so happy to finally spend the next 2 days off self isolating. It’s not fun out there. #COVID19 https://t.co/nH2wknVzHH"                                                                                                                                                                                                                                                                                                                      
## [2293] "Understanding #infection #diffusion and underlying models key for #COVID19 policies and #decisions @mlipsitch below explains well. https://t.co/1tQkeM6bJc"                                                                                                                                                                                                                                                                                                                                                   
## [2294] "@shalailah If I want to keep my job. Going to work is compulsory. Either it’s a health risk or it’s not. New Zealand has released modelling. Australia should do the same. https://t.co/O8vW8x07q8"                                                                                                                                                                                                                                                                                                         
## [2295] "On Sundays, LifeWay Kids is offering free resources for parents and caregivers to help walk children through a small group lesson. Visit their website to learn more: https://t.co/yhsAsWrEnf"                                                                                                                                                                                                                                                                                                                
## [2296] "We’ll help with your COVID-19 disaster relief through the SBA! We have the necessary forms and can guide you through the process. \n<U+0001F4F2> Call 331-998-5100\n<U+0001F310> https://t.co/9OABlXmNvt\n#CoronaLockdown #FridayThoughts #FridayMotivation #Massie #FridayFeeling #coronavirus #COVID19 https://t.co/4AVxhRubHx"                                                                                                                                                                            
## [2297] "Don’t tell me to stay in my g-damn house while pedo enabling royals Harry and Markle are flying in from the U.K./Canada after being exposed to Prince Charles COVID 19 virus.\n\n@realDonaldTrump"                                                                                                                                                                                                                                                                                                           
## [2298] "@SenatorCollins Not enough everyone should have healthcare same coverage other countries do it. Some homeless woman with Cancer charged$34,000.00 for Covid-19 care WTF"                                                                                                                                                                                                                                                                                                                                      
## [2299] "Again, @NYGovCuomo showing that motherfucker in the White House how it’s done. I feel safe with mr. Cuomo leading the city during these times <U+0001F44D> #COVID19 https://t.co/LDTt2ABj8V"                                                                                                                                                                                                                                                                                                                 
## [2300] "The amazing healthcare workers taking on COVID-19 are in need of more supplies, namely face masks. To any members of the Riveter Nation who sew <U+2014> or know others who sew <U+2014> we’re asking you to sign up now to put your skill to use <U+27A1><U+FE0F>https://t.co/f6XjRtC4LF https://t.co/qWBps0LJAj"                                                                                                                                                                                           
## [2301] "Yup, THESE three #COVIDIOTS -- @realdonaldtrump, @borisjohnson and @jairbolsonaro -- are making things so much worse than they should be! #COVID19 #WereNumberOne #MAGA #CoronaLockdown \n@mcottle https://t.co/nSA6f07CHm"                                                                                                                                                                                                                                                                                   
## [2302] "As we stay at home to survive this COVID-19 which I know we will. Let's try and learn something new shall we?\n\nThis is the rocker arm of a 4-cylinder motor vehicle engine. It's work is to open and close the inlet and exhaust valves at the correct time\n\n#ApexECompany #automobile https://t.co/VsNaR3zK7Z"                                                                                                                                                                                           
## [2303] "@lennyshots @digi_sc is giving food parcels to the less fortunate in the Philippines during #COVID2019, and is paying out of his own pocket. All funds in the wallet will be forwarded to him. https://t.co/FQPQGSIoXK"                                                                                                                                                                                                                                                                                       
## [2304] "The Community in Ainsworth never ceases to amaze me!! Max’s mum asked that, as they can’t go out on his Birthday, if people in the village would stick something to their window.\n\nAll day people have been turning up with pictures to wish him a happy birthday <U+0001F382> #Ainsworth #covid19 https://t.co/ik4n4G2aoq"                                                                                                                                                                               
## [2305] "@wilfulblindness Happy Birthday and bloody hell. <U+0001F632> I'm not done yet. I didn't lose weight to be finished off by #COVID19"                                                                                                                                                                                                                                                                                                                                                                          
## [2306] "NEW POST #CurfewinKenya #COVID19KE #COVID19 https://t.co/l2qOe6RDvC"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2307] "Calling L.A.-area small businesses: join @DrLucyJones tomorrow &amp; every Friday at 10am to gain insights and resources to managing this pandemic. Details and registration can be found at https://t.co/loV81TsvwA"                                                                                                                                                                                                                                                                                         
## [2308] "@HRC PLEASE SHARE:\n\n#TRANSSOLUTIONS RAPID Response Support!!!!!!\n\nHERE YOU GO!!!! Will start funding next week!!! \n\n$25 Amazon Gift Voucher (Survival Kits) 80 Cards \nUp to $100 (Special Needs) 10 Gifts \n$250 Micro Gifts only 4\n\nThe direct link is https://t.co/D64OjEswU1"                                                                                                                                                                                                                     
## [2309] "Now we have 2 pandemics to fight, Covid-19 and #PoliceBrutality"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2310] "COVID-19 quaratine day 11: \n\nToday was supposed to opening day. \n\nOh depression. How spiteful you are\n\n#OpeningDayAtHome \n#GoCubsGo \n#FlyTheW https://t.co/rZiwGhXFBV"                                                                                                                                                                                                                                                                                                                                
## [2311] "\"Jeff Shell, the CEO of NBCUniversal, said on Thursday that he has tested positive for COVID-19, the disease caused by the coronavirus.\"\nhttps://t.co/5v7Tp9GkLh\n#Celebs #TheStorm #CoronaVirus"                                                                                                                                                                                                                                                                                                          
## [2312] "Hey @magnolia folks: Is there a playlist version of recipes by @joannagaines where we can purchase recipes for $0.99 or $1.99 a piece? I never make all recipes in a cookbook anyway...am home way more this year than expected....so asking for a friend. @chipgaines #COVID19"                                                                                                                                                                                                                              
## [2313] "Tune into the Governor's update on COVID-19 scheduled for today at 4:30 p.m.\nhttps://t.co/b2yQX5Bm4i"                                                                                                                                                                                                                                                                                                                                                                                                        
## [2314] "My daughter is now quarantined with her wonderful boyfriend. He has a coworker with #COVID<U+30FC>19 .\nI’m not a happy mama."                                                                                                                                                                                                                                                                                                                                                                               
## [2315] "This is an incredible tale of a forward looking #retailer that prepared long before others for this pandemic. \n\n#coronavirus #COVID19 #grocery #supermarket https://t.co/W2lbe2cb6E"                                                                                                                                                                                                                                                                                                                        
## [2316] "@piersmorgan I'm a warehouse worker picking online fashion orders. M&amp;S, Next, Topshop &amp; H&amp;M rely on us for their online orders. Working hard &amp; frightened! No lockdown for us! @riverisland thanks for choosing people over profit &amp; closing your warehouse #warehouseworkers #COVID19"                                                                                                                                                                                                   
## [2317] "@spiralni @XHNews Believe it or not, Virus is there no matter which country it breaks out, same as H1N1. It's the threat for all humankind.\n\nChina fights with Covid-19 1-2months earlier than Europe the US by lockdown(maynot the best timing, but it works anyway) which wins time for the world indeed"                                                                                                                                                                                                 
## [2318] "Why 6 foot separation? We can smell people smoking from ten or twenty feet away. Why tabacco particles you exhale can travel 10 feet or more and still be noticeable but coronavirus somehow gets tethered to a six foot radius? #coronavirus #CoronaLockdown"                                                                                                                                                                                                                                                
## [2319] "@DBRodriguez5 @AnthonyMKreis The plaintiffs bar litigation involving covid-19 will be something.  (May keep me busy.)"                                                                                                                                                                                                                                                                                                                                                                                        
## [2320] "Social distancing saves lives! We can all do our part to stop the spread of COVID-19. #6feetapart #slopd https://t.co/KLA8JhrcEZ"                                                                                                                                                                                                                                                                                                                                                                             
## [2321] "Premier Annastacia Palaszczuk MP: SUSPEND QLD Local Council Elections COVID-19 - Sign the Petition! https://t.co/LZOczdoE0z via @ChangeAUS"                                                                                                                                                                                                                                                                                                                                                                   
## [2322] "Italy records 969 coronavirus deaths, dashing hopes of turnaround https://t.co/5IIxXviee9"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2323] "I've been looking for a set of maps like these! State-by-state info on #COVID19 regulations (restaurant closures, gathering bans, school closures etc.): https://t.co/1ukJA6yvmY"                                                                                                                                                                                                                                                                                                                             
## [2324] "Overwhelmed and humbled by the extraordinary generosity supporting our Crowdfunder @masksforNHS raising over £125,000 in less than 24 hours!! We are ordering #PPE to donate directly to the #NHS #frontline. Please help protect our NHS staff in the fight against #COVID19"                                                                                                                                                                                                                               
## [2325] "@realDonaldTrump I don't understand why the word testing is in quotation marks. Probably because it isn't true?<U+0001F914>...\n#COVID19 https://t.co/meEvyRt4tv"                                                                                                                                                                                                                                                                                                                                             
## [2326] "THREAD\n\n1/ The heart of Manchester used to be bustling each day, but now it lies deadly quiet as the effects of the coronavirus lockdown take hold.\n\n#coronavirus https://t.co/35okpKjxhx"                                                                                                                                                                                                                                                                                                                
## [2327] "@RorNotRed Support employees during a health pandemic (COVID-19)\nhttps://t.co/AKIrnPG8A7"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2328] "Stay in bed. Save a life #covid19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2329] "Information on feeding your baby amid this pandemic #COVID19\n#coronavirus \nhttps://t.co/4MruYNUgI0"                                                                                                                                                                                                                                                                                                                                                                                                         
## [2330] "RAFO plane returned loaded with medical equipment from China late Thursday night. Ready to fight #COVID2019 in #Oman\n.@muscat_daily https://t.co/Khn7sHQ2OJ"                                                                                                                                                                                                                                                                                                                                                 
## [2331] "PamyBot:~$#forex #fxDailyFX \"The $USD soared against the Indonesian Rupiah, with USD/IDR eyeing its best month since the 1997-98 Asia financial crisis amid the #coronavirus outbreak. Can this trend continue? Find out from ddubrovskyFX here:https://t.… https://t.co/z5SmkvKXu3\""                                                                                                                                                                                                                      
## [2332] "#COVID19 Safe-drug supplies part of package as Vancouver addresses Downtown Eastside https://t.co/oDNpG6LOKA"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2333] "DRUMPF USING FEMA BIDDING TO KEEP SUPPLIES FROM STATES IN DIRE NEED TO FIGHT COVID-19! DRUMPF COMMITTING CRIMES AGAINST AMERICA!  HE MUST THINK WE ARE SO CAUGHT UP IN THE PANDEMIC NEWS THAT WE ARE NOT PAYING ATTENTION TO HIS CRIMINAL TREASONOUS BEHAVIOR!  WE ARE WATCHING TREASON https://t.co/8iFCGEoFwf"                                                                                                                                                                                              
## [2334] "Me coming up with ways to keep people 2 meters away from me! No #coronavirus for me thank you! https://t.co/XbzMqBT7gs"                                                                                                                                                                                                                                                                                                                                                                                       
## [2335] "Sex with Batman I hope ! #COVID19  https://t.co/yIfWgBME1V"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2336] "School is out the rest of the year in AL? Here’s where you can find me <U+0001F3C3><U+200D>♀<U+FE0F> #coronavirus #homeschooling #alabama https://t.co/t62aSiXmjA"                                                                                                                                                                                                                                                                                                                                          
## [2337] "Covid-19 Daily Deaths Worldwide\n\n(Last updated: 26-03-2020)\n\n2,306\n\nhttps://t.co/E2gPbGjvUE\n\n#CoronavirusNewDeaths #NewDeaths #COVID19Stats #COVID19 #Coronavirus #CoronavirusOutbreak #CoronaVirusUpdates https://t.co/XcrYEHnWew"                                                                                                                                                                                                                                                                   
## [2338] "COVID-19: MD vs. Gold and Silver https://t.co/i7bLavrqoK via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2339] "This + people from so many strata of society go to mosques so the exponential increase in #COVID2019 cases will blast up if one of the worshippers spreads the virus to others. I've always maintained that ethics/humanity/morals come before religion. Wish others would do the same! https://t.co/Mmi3Oc0WSm"                                                                                                                                                                                              
## [2340] "ANA and JAL to revise summer schedules for international flights until late April:\nhttps://t.co/pp9d7xFUz9\n#Aviation #Airlines #Airports #COVID19 #Coronavirus https://t.co/ZCSVgOGGEk"                                                                                                                                                                                                                                                                                                                     
## [2341] "Damn straight we need it!  Use it now!  #coronavirus https://t.co/GVsI1qKB97"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2342] "Staff Book Suggestions: During this time of #COVID19 #socialdistancing, we're sharing some of our staff members' book recommendations: What are yours?\nhttps://t.co/UX2Ib8RCIq https://t.co/CeX37h3247"                                                                                                                                                                                                                                                                                                      
## [2343] "Burkina Faso's confirmed cases of COVID-19 rise to 152 https://t.co/J5k6DfnkOo h/t Shiloh #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                       
## [2344] "Industry services on the brink of collapse: the British prostitutes are asked to recognize their victims because COVID-19 https://t.co/ZGN0gb6IJw https://t.co/YccMY2XVQa"                                                                                                                                                                                                                                                                                                                                    
## [2345] "AnD the bailout begins:\n\nCMHC to take more mortgages off banks' books to free up cash for loans amid COVID-19 crisis https://t.co/gdjtT7xw0V"                                                                                                                                                                                                                                                                                                                                                               
## [2346] "When someone at the WH who is a \"medical professional\" say Trump is listening to what they are saying remember <U+0001F447>which means that person is lying through their teeth. Sad! #Covid19 (is a virus) Trump should know this by now. Geez! https://t.co/CGIooKjWBW"                                                                                                                                                                                                                                   
## [2347] "ICYMI: Watch the playback of our #COVID<U+30FC>19 resources for businesses webinar. Learn about how to keep your workplace safe, how to apply for @SBAgov\nloans, new labor law &amp; how to manage stress. https://t.co/i5sV8kC23f"                                                                                                                                                                                                                                                                          
## [2348] "Epic post by chef @dominiquecrenn <U+0001F4AF> Thank you for the laugh. Much needed <U+0001F339>#covid19 #love #socialdistancing https://t.co/Gz9U24DX9P"                                                                                                                                                                                                                                                                                                                                                     
## [2349] "Nope... We may not be immuned to #coronavirus but we are all immuned to #TrumpVirus -- It just washes over us. https://t.co/aGtD9scMVB"                                                                                                                                                                                                                                                                                                                                                                       
## [2350] "@ericmander @honeycombio or https://t.co/2U8dFW9StF - either for testing (in CA) or on protocol to run your own testing site"                                                                                                                                                                                                                                                                                                                                                                                 
## [2351] "All of my internship opportunities this summer have been cancelled due to the COVID-19 outbreak..\n\nWas really looking forward to interning at another place in Boston this summer like Hill Holliday, Genuine, or Nuance.."                                                                                                                                                                                                                                                                                 
## [2352] "I want to ask something.. What are Native Doctors doing about this Covid-19 ?"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2353] "UK Government: PROPER Support for Owners/Directors of their own Ltd Companies from UK Government COVID-19 - Sign the Petition! https://t.co/Tt9ONioHjj via @UKChange"                                                                                                                                                                                                                                                                                                                                         
## [2354] "Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief. Let’s see more billionaires step up #CoronavirusOutbreak #HelpFightCorona  https://t.co/BbFbty8j66"                                                                                                                                                                                                                                                                                                                                         
## [2355] "@globalnews @GlobalCalgary Guessing they have knowledge of terrorists who are taking advantage of this covid-19 crisis all over the world and trying to get in to the US through Canada"                                                                                                                                                                                                                                                                                                                      
## [2356] "<U+0001F6A8>ATTENTION LOCAL CUSTOMERS<U+0001F6A8>\n.\n.\nDue to new restrictions based on COVID-19 safety concerns, @spottampa is suspending their IN-STORE PICKUP service starting at 4pm today until further notice...\n.\n.\nTo make up for it,… https://t.co/hMos9zBMcU"                                                                                                                                                                                                                                 
## [2357] "Hands down 3 is the worst age for your kid to be during this Covid-19 business.  Old enough to get into all the trouble.  Young enough not to give a (bleep). “Go stand in the corner?  I don’t even know what a corner is, old man”."                                                                                                                                                                                                                                                                     
## [2358] "The MSM hasn't been trustworthy for a least two years, spinning whatever they can to make Trump and conservatives look bad.\n\nSo why is it that we believe their reporting on Covid-19? \nThe MSM is playing Chicken Little."                                                                                                                                                                                                                                                                                
## [2359] "Why is everyone surprised when a relatively healthy person dies of COVID-19? \n\nHundreds of healthy people die every year from just the regular flu."                                                                                                                                                                                                                                                                                                                                                        
## [2360] "Trump still thinks and believe COVID-19 is static. Take a snapshot of where and how many, then ignore its growth during decision making time. Just as he did w the now infamous 15. \n~Brilliant~ https://t.co/JdoJbJnZ0S"                                                                                                                                                                                                                                                                                    
## [2361] "Another 919 Italians dead. If that doesn't scare you IT ABSOLUTELY SHOULD. @LeoVaradkar @SimonHarrisTD @simoncoveney why isn't Ireland in lockdown? You are failing the people of this state and Irish people are going to die because of you. #LockdownIreland #COVID19 #coronavirus"                                                                                                                                                                                                                        
## [2362] "#ADOS @BREAKINGBROWN @TONETALKS \nFederal officials focused on Wayne County (DETROIT) as emerging coronavirus (COVID-19) hotspot https://t.co/vkxfP60N0Q"                                                                                                                                                                                                                                                                                                                                                     
## [2363] "I spoke to BBC Newsday this morning about the impact the coronavirus pandemic will have on hiring. My interview starts at 45:00 into the program. https://t.co/ZE4nj8nZ0Z\n#jobsearchtips #career #coronavirus #COVID19 #stayconnected #quarantinelife"                                                                                                                                                                                                                                                       
## [2364] "Me looking at y'all not Social Distancing during this Corona Crisis #stayhome #stayhomestaysafe #coronavirus #covid_19 https://t.co/c0Q8w4Ll3e https://t.co/O64ynf5DXZ"                                                                                                                                                                                                                                                                                                                                       
## [2365] "“FACTS Save Lives!” #COVID19 - https://t.co/CNr7K8ZWFy - #USAToday"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2366] "I’m using this anger tracker to help kids process how they are feeling with the changes and limitations with #COVID19. \n\nI have send the PDF to parents to print off for the telehealth session. \n\nhttps://t.co/DeggcIzw9l"                                                                                                                                                                                                                                                                              
## [2367] "Grievance Redressal Cell Set Up To Resolve Problems Of #FoodProcessing Industry During #COVID-19 Lockdown #Coronavirus https://t.co/Wcz2sIF1Wt https://t.co/p2sEiftI8V"                                                                                                                                                                                                                                                                                                                                       
## [2368] "@kpmaurya1 Respected Sir,\nI m posted in Directorate of Medical and health Services Lucknow as Environment expert. I m also a team member of state survilance team for COVID-19 i m not getting my salary from last six months. So please do the needful.\n\nThanking you \nMayank Dubey\nmob.8858009154"                                                                                                                                                                                                     
## [2369] "Chances are you have an idiot friend or relative who refuses to social distance and sit their asses at home. That’s why we have the most cases in the world. Congratulations y’all, we did it. #COVID2019 #COVID19Updates #CoVid2019usa"                                                                                                                                                                                                                                                                    
## [2370] "@TheRickyDavila Me too, but Agent45 is now keeping #DrFauci in a closet near  the Oval Office - hope he’s not being RE-educated. #coronavirus"                                                                                                                                                                                                                                                                                                                                                               
## [2371] "Can’t wait until COVID-19 is just a “remember when” story"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2372] "I can’t bend  to Tyranny #COVID19 #CoronaLockdown #coronavirus #CoronavirusOutbreak"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2373] "N. Y. Hospital closes all departments to concentrate on #COVID2019 !! Bad luck for all those other conditions! #auspol https://t.co/fFvKmXUjsQ"                                                                                                                                                                                                                                                                                                                                                               
## [2374] "#coronavirusindia \n#Kerala #COVID19 #Death\nThe 69-year-old man had returned from Dubai on March 16 and admitted to hospital on March 22. His wife and an online taxi driver who came in contact with them are also under treatment for #COVID19. \n@xpresskerala \n@NewIndianXpress"                                                                                                                                                                                                                        
## [2375] "This article summarizes the US debacle with #Coronavirus #TestAndTrace: One case lays bare America's testing failure https://t.co/kQsVUac6o7"                                                                                                                                                                                                                                                                                                                                                                 
## [2376] "Fellow Nigerians are you seeing what am seeing?\nMouth-watering palliatives being rolled out by Lagos State Governor @jidesanwoolu to cushion the effect of #Covid-19 and further make the #StayatHome order very effective in Lagos State.\n\n#GoodLeadership"                                                                                                                                                                                                                                               
## [2377] "@RudyGiuliani @RealCandaceO Maths :3x3x3x3x.. is 57,000 persons in a few days. 1 million in a small number of weeks. Even with a limited death rate the number of 15-20,000 deaths is almost certain.\n1 infected contagious person with covid-19 transmits the virus to 3.\n\n“3” is what makes this virus so deadly."                                                                                                                                                                                     
## [2378] "Published lit:\n2006: Convalescent Blood Products for Spanish #Influenza: Future #H5N1 Treatment? \nhttps://t.co/XfLFhnNkvZ\n\n2017: IVIG Protects Against Severe Pandemic Influenza: https://t.co/2gwvElx9UW\n\n2020: #COVID19 treatment: old tricks, new challenges https://t.co/SlYtsOUjCt"                                                                                                                                                                                                                
## [2379] "Coronavirus (COVID-19) - Apple and CDC <U+0001F923> Cops will come get you and throw your ass in a real quarantine if you “pass this test” <U+26A0><U+FE0F><U+26A0><U+FE0F><U+0001F6A9><U+0001F92E><U+0001F608> https://t.co/dPd5rUqcAu"                                                                                                                                                                                                                                                                    
## [2380] "@TRAPTOFFICIAL with all this Covid-19 shit going on, nothing has changed for y'all. Still can't sell out a show. Maybe just keep having those locals sell your tickets."                                                                                                                                                                                                                                                                                                                                      
## [2381] "Xerox has set up a special landing page on its website dedicated to its COVID-19 response: https://t.co/jj8skt9ttg. https://t.co/dwvPplJcr4"                                                                                                                                                                                                                                                                                                                                                                  
## [2382] "#URGENT #CallToAction email ICE Chicago Director and demand #FreeThemALL to flatten the curve #COVID19 https://t.co/bkpvNnUQKF"                                                                                                                                                                                                                                                                                                                                                                               
## [2383] "CABS is helping in the fight against COVID-19. Seats have been taped off to indicate six feet of space between riders for social distancing. @OSUWexMed https://t.co/OLpLryt0Lc"                                                                                                                                                                                                                                                                                                                              
## [2384] "Ezra Klein’s thoughtful interview re #Covid19 with economist Jason Furman and bioethicist Ruth Faden is well worth a listen. #PhysicalDistancing  https://t.co/BEQLadLBvE"                                                                                                                                                                                                                                                                                                                                   
## [2385] "The Yemeni people are in solidarity with communities affected by #Coronavirus in the world. #Yemen wants peace and wants an end to the US-Saudi aggression and blockade on Yemeni people #5YearsOfWarOnYemen https://t.co/Ow7iDYAiYi"                                                                                                                                                                                                                                                                         
## [2386] "#COVID19: Govt has to provide more testing centers as increased testing will reveal more cases and help manage the spread <U+2013> Dr Shola Dele-Olowu https://t.co/fv5JjIenu7"                                                                                                                                                                                                                                                                                                                               
## [2387] "Covik one nine is like a bitch on her period #COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2388] "Funny T-Shirt | Just Social Distancing With My Dog T-Shirt | H by BellaVitaConcepts https://t.co/m2Eiciam0c via @Etsy #socialdistancing #socialdistance #doglover #DogMom #dogdad #coronavirus #quarantine #quarantinewithdog"                                                                                                                                                                                                                                                                                
## [2389] "#COVID19 is dangerous! (As the others) i am just so sick of people caring about this (Virus) way less than people getting killed not by a mysterious Virus, no but by other people.."                                                                                                                                                                                                                                                                                                                         
## [2390] "@eBay says it removed over a half million listings in violation of policies aimed to curb #ebaysellers abusing the #COVID19 emergency.\n\n#ecommerce #smallbusiness #coronavirus https://t.co/sSmc2hbooN"                                                                                                                                                                                                                                                                                                     
## [2391] "@BaltimoreHub Teaching our employees on how to stay safe with the COVID-19. Employees got to use the sanitation station and felt appreciated by their safety committee. #TeamWork #WeAreOneUPS https://t.co/XoGVk9hbOa"                                                                                                                                                                                                                                                                                       
## [2392] "India: COVID-19 positive cases surge to 873, death toll stands at 19 | C... https://t.co/qUddBhOc3C via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                             
## [2393] "Gov. Tony Evers, joined by state health officials, will provide a live update on the Wisconsin response to the COVID-19 coronavirus pandemic. https://t.co/iO1l46FAlC"                                                                                                                                                                                                                                                                                                                                        
## [2394] "Thank you for all your efforts and we need more persons like @DjokerNole @novakfoundation proud to be Serbian...<U+0001F1F7><U+0001F1F8><U+0001F1F7><U+0001F1F8><U+0001F1F7><U+0001F1F8>#Covid_19 #serbia #novak We are all in this together with the aim to contain this fast spreading pandemic. #OstaniKu<U+0107>i #SRB https://t.co/J3cD7V4X1S"                                                                                                                                                           
## [2395] "“Democrats clearly prefer to impose stricter restrictions on citizens than Republicans. David Horowitz is known for saying,  ‘Inside Every Progressive Is A Totalitarian Screaming To Get Out.’” #COVID19 #KAG #NancyPelosiMustGo #ampFW  https://t.co/EiAhhIx9rJ"                                                                                                                                                                                                                                        
## [2396] "Hear me out, replicate the Live Aid fundraiser concert, except virtually for #COVID19 and with the new queen, @Beyonce"                                                                                                                                                                                                                                                                                                                                                                                       
## [2397] "Jr NBA Cameroon : Yes to my Health .. All against Covid-19\n@JrNBACmr : Oui a ma sante.. je respecte les mesures contre le Coronavirus @DrManaouda @CameroonPm237 @CabinetCivilPRC @BasketzoomN @NBA_Africa @BrendaAnge @OMS_Afrique @RFI @OliviaEpoupa @theBAL @camerbe @fasuafrica https://t.co/e3dwqbxwPX"                                                                                                                                                                                                 
## [2398] "Dear UK TV, please consider the following 2 help us get thru isolation:\nMon - @bbcapprentice \nTues - @greatbbakeoff \nWeds - @PlebsComedy\nThurs - #24HoursInPoliceCustody\nFri - #FridayNightDinner\nSat - #SaturdayNightTakeaway \nSun - @Hunted_HQ \n@BBCOne @Channel4 @ITV #COVID2019"                                                                                                                                                                                                                  
## [2399] "Forecasting COVID-19 impact on hospital bed-days, ICU-days, ventilator days and deaths by US state in the next 4 months https://t.co/toGwXEB3Go via @IHME_UW"                                                                                                                                                                                                                                                                                                                                                 
## [2400] "I hope you are following 21 days lockdown...Retweet if you are following....#gocorona #21daysLockdown #COVID2019  #CoronaUpdate #CoronavirusOutbreak \n#StayHome \n#coronavirus \n#CoronaLockdown"                                                                                                                                                                                                                                                                                                            
## [2401] "People have managed to defeat #Covid19 using a simple solution: testing. Now we need these vital tests available worldwide! Sign the petition to world leaders to call for mass test production immediately: https://t.co/wUdrL5ml30"                                                                                                                                                                                                                                                                         
## [2402] "Davido in self isolation as chioma tests positive of Corona Virus https://t.co/zhnGaeIl0L\n\nFiancee and wife to be of Popular Nigerian musician Davido (Chioma) has tested positive to the worldwide pandemic COVID-19 This comes as a shock as the news comes unexpectedly below is a … https://t.co/JyPEIUuEnn"                                                                                                                                                                                           
## [2403] "Canada has done 52,000 more #COVID19 tests than the United States with a population 1/10 the size. More can be done but on the right track. #COVIDCanada #CoronaLockdown"                                                                                                                                                                                                                                                                                                                                     
## [2404] "Quarantine is a full time job. Between baking bread, mastering Spanish, perfecting handstands, becoming a Coursera Yale student, Insta-live workout classes, and refreshing that damn JHU COVID-19 map, I barely have time to watch Tiger King."                                                                                                                                                                                                                                                              
## [2405] "NIGERIA: Chioma (Davido) Tests Positive with COVID-19 https://t.co/Prt6P8k2F5 https://t.co/l7CzZdeRex"                                                                                                                                                                                                                                                                                                                                                                                                        
## [2406] "COVID-19: US announces $174 mn aid to 64 countries including $2.9 mn to India https://t.co/ts4unuZf4X via @economictimes"                                                                                                                                                                                                                                                                                                                                                                                     
## [2407] "Indiana, in response to the COVID-19 crisis, has provided immediate and longer-term relief options from property tax for hotels, restaurants, shopping malls, commercial offices and retail businesses, to name just a few. Our partner David Suess explains. https://t.co/U33KkYfmSa https://t.co/5I1FlgxNf3"                                                                                                                                                                                                
## [2408] "B.C. COVID-19 contact restrictions working, Dr. Bonnie Henry says https://t.co/Kn7CF2GBMn"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2409] "Working remotely? Pyrus can help with task management, communication, and workflows. To relieve the burden of companies suffering from #COVID19, we are now offering the full Pyrus service, completely free, for 3 months. https://t.co/LEroR7YuLX https://t.co/nYRBpKkAdz"                                                                                                                                                                                                                                  
## [2410] "@VickiLynn47 @vincerevoo @real_defender S. Korea 1 in 170 citizens tested\nU.S.A 1 in 1,090 citizens tested\n\nCovid-19 discovered in both countries on same day.\n\nRaw numbers don't mean anything.\nPercentages of citizens tested is what matters"                                                                                                                                                                                                                                                        
## [2411] "Now Playing on 234Radio, Tolu Brownie (@Tolubrownie) - Numba One. \n\nTogether, we can defeat coronavirus disease (COVID-19) #LetsFightCovid19 #CovidNGR"                                                                                                                                                                                                                                                                                                                                                     
## [2412] "At the end of another #coronavirus day. https://t.co/GOI4f4NTXf"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2413] "Fire service gives reassurance during Covid-19 crisis\nhttps://t.co/gG0Zw1PmUk https://t.co/Kek5gFinsE"                                                                                                                                                                                                                                                                                                                                                                                                       
## [2414] "Monroe's budget workshop will be remote tonight. https://t.co/b5ZhyQAccK"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2415] "@mh4oh Good to have the option to mail your ballot!\n#COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2416] "COVID-19: Lagos projects 39,000 cases https://t.co/MC5Mdq0rYB https://t.co/QSmFB0L3EK"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2417] "@JJFromTheBronx rally chipwich to defeat COVID-19 https://t.co/zs081mQFXt"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2418] "@phlexyl I like him ohhhh, he is about to be disgraced, God take those Covid-19 away so they don’t laugh at him oh<U+0001F629><U+0001F629><U+0001F629><U+0001F629><U+0001F629><U+0001F629><U+0001F629>"                                                                                                                                                                                                                                                                                                      
## [2419] "So @realDonaldTrump you claim your government is handling the #CoronavirusOubreak and testing is better than elsewhere in the world. What a complete bunch of lies. Currently infection levels are almost about to take over Italy."                                                                                                                                                                                                                                                                          
## [2420] "Nine cases of COVID-19, the respiratory illness caused by the new coronavirus, have now been reported in the Gaza Strip https://t.co/MDQtz7Sro3"                                                                                                                                                                                                                                                                                                                                                              
## [2421] "Did you see @StewLeonards on @Nightline with @JujuChangABC @ABC #FoodSupply #COVID19 #FamilyBusiness See daily updates from me at https://t.co/S4s2SNpgLL https://t.co/IgCdi7GHlA"                                                                                                                                                                                                                                                                                                                            
## [2422] "Once we’re through this #COVID19 situation... \n\nIf you could change one thing about the world, what would it be?\n\nCan be big or small... go"                                                                                                                                                                                                                                                                                                                                                             
## [2423] "It’s scaring me people are saying they’re getting covid 19 without going outside like whatttt <U+0001F974>"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2424] "Global Shutdown: Visualizing Commuter Activity in the World's Cities https://t.co/IBWqtE1dU7"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2425] "Anti-COVID-madness #7\n1) Food bank deliveries: my list went up from 4 to 11  in 1 week. \n\n2) @UCDAggieCompass: still open but the Pantry is closed. Weekly Thurs bag drop- but registration FULL.\nMore info here: https://t.co/OA112nOhRr\n\nWe are just at the beginning."                                                                                                                                                                                                                               
## [2426] "Tax, trade, and other authorities are responding to the COVID-19 pandemic with regulatory change, relief measures, and extensions. @KPMG_US Phil Jacobs moderates a #webinar on the wide-ranging economic, business, and social impacts. https://t.co/Rij4yQDLOT https://t.co/66tabgTcGh"                                                                                                                                                                                                                     
## [2427] "6. Here is an Forbes article on social distancing https://t.co/juAIqbqtdm @rajuparulekar"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2428] "Daily reminder: @realDonaldTrump’s failure to take #COVID19 seriously is killing people everyday. \n\nThe president of the United States is responsible for killing his citizens. \n\nThe leader of the free world’s incompetence is killing Americans everyday. \n\nIs it Nov 3 yet?"                                                                                                                                                                                                                      
## [2429] "@WHO completely failed in finding the patient zero of #COVID19. One side of this story is failure and another side is conspiracy! As we all know #Tedros is #XiJingping’s puppet, #China’s stake in WHO. what to expect here!!!\n\nGod Bless #WHO \nVive la #WHO\n#WuhanVirus"                                                                                                                                                                                                                              
## [2430] "@Cieran999 Maybe. We’re all learning. Important for primary care - not all (7 day isolation) fever is #COVID19"                                                                                                                                                                                                                                                                                                                                                                                              
## [2431] "UPDATE <U+203C><U+FE0F>: Minister of Health Dr Zwelini Mkhize clarified that the 28 year old female patient who passed away is no longer considered a COVID- 19 case."                                                                                                                                                                                                                                                                                                                                        
## [2432] "#Brexit &gt; breathing. \n\n#VentilatorGate \n#coronavirus https://t.co/oTKcCRWE4D"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2433] "@BBCBreaking Anyone know the death toll comparing the Flu and Covid-19? Curious is all"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2434] "Na covid-19 Jam dem<U+0001F602> https://t.co/8ZKOeN7GsG"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2435] "https://t.co/y8eLbozoDI\n\nJust posting this here. Stockpiles are back up, not solutions, nor a static entity that remains, forever. Kinetic. Holding energy. This is part of being a president, and having people in place to take charge. Amazing what I learn on my morning commute."                                                                                                                                                                                                                      
## [2436] "Great reads during stressful times. Like now<U+2014>hint, hint. <U+0001F609> \n#socialdistancing #covid_19 #stressrelief #stressmanagement #greatreads #reading #readtime #survival https://t.co/H4NYPOqPYV"                                                                                                                                                                                                                                                                                                  
## [2437] "I’m glad Pelosi wasn’t there, she needs to be protected.  Along with RBG #FlattenTheCurve Do as they say, not as they do - at least for #COVID19 https://t.co/VbKFc4ua7d"                                                                                                                                                                                                                                                                                                                                   
## [2438] "We’ve compiled all of @AsaHutchinson’s guidance and directives regarding #COVID19 into a single document. Check out all the updates by going here: https://t.co/WJ1izxO8CC\n\n#GreatCitiesGreatState #COVID19 https://t.co/UtNgpGw0KO"                                                                                                                                                                                                                                                                      
## [2439] "I criticised Ed Balls for praising the Govt when my wife, a nurse is doing a 14-hour shift tonight with little PPE.\n\nAnd now she's a scab.\n\nWhat have we become?\n\n#clapforourcarers #NHS  #COVID2019 https://t.co/rnpktrcbvZ"                                                                                                                                                                                                                                                                           
## [2440] "“Trump touts [cancelling flights from China] as the smartest, greatest thing he’s ever done, but how does he explain why we're in the shit show that we’re in right now?” @AmbassadorRice joins to talk about Trump’s COVID-19 response (or lack thereof). https://t.co/ktqqieQXES"                                                                                                                                                                                                                      
## [2441] "Maryland Delegation Helps Secure Major Disaster Declaration, Unlocking Additional Federal Resources to Fight COVID-19 (March 27, 2020 at 03:33PM): https://t.co/fwpuDskXv7"                                                                                                                                                                                                                                                                                                                                   
## [2442] "Yemen is experiencing the impact of war, a famine, and other humanitarian disasters.\n\nIt experienced a cholera outbreak between 2016-2020, and now its dealing with the COVID-19.\n\nYemen needs the resources for post-conflict reconstruction, not tools to enable conflict. https://t.co/I7ojYok9Pu"                                                                                                                                                                                                     
## [2443] "If y’all think people reporting on the COVID-19 rates and the action/inaction of our gov’t are “horrible people” please check yourselves. We should be thankful there’s someone holding federal agencies accountable to do the job they were elected to do. #LivesAreNotPolitics"                                                                                                                                                                                                                        
## [2444] "Can a face mask protect me from coronavirus? Covid-19 myths busted https://t.co/kWvyno3u3g"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2445] "Amid the #COVID19 pandemic, more people than ever are working remotely from their homes<U+2014>raising new cyber risks for businesses. Here are 6 ways that you can protect your employees and your organization https://t.co/QKIMncfcnb https://t.co/1EkBP9Wb7X"                                                                                                                                                                                                                                             
## [2446] "@Chronic_FLKeys I think people got confused at the beginning between #Norovirus  and #Coronavirus \nThen they got \"if-they're-buying-it-I-need-it\" syndrome.\n#TPWarof2020 #Covid19 #toiletpaper #ToiletPaperPanic https://t.co/0LCw3q2CnJ"                                                                                                                                                                                                                                                                 
## [2447] "@ANI Amazed that allopathic medicine still only able to treat the effects of of covid-19. Leaving Ayush to remedy the cause blessings for your perfect health wealth and happiness"                                                                                                                                                                                                                                                                                                                           
## [2448] "@DailyCaller So @SpeakerPelosi who is writing and directing the soon to be released #coronavirus musical at the Kennedy Center?"                                                                                                                                                                                                                                                                                                                                                                              
## [2449] "If there were ever a time for bold leadership not bound by the old ways of doing things, this is it. @RepAOC understands this. @AOC is fighting for paid sick leave, expansion of Medicaid, a moratorium on evictions, and the forgiveness of student debt. #StimulusPlan #COVID19 #AOC https://t.co/n0mqvWMJSI"                                                                                                                                                                                              
## [2450] "Looking for ways to #help? Checkout @LS_Cares. They have a #COVID19 response directory with wishlists from community nonprofits, a hospital volunteer database, and remote volunteering opportunities.\nhttps://t.co/b15wDnquG2"                                                                                                                                                                                                                                                                              
## [2451] "Ziggy cannot say Queen Elizabeth hospital but he gave it a go! #nhs #COVID2019 #queenelizabethhospitalwoolwich #queenelizabethhospital @LG_NHS #appreciation https://t.co/Ufzbp2KK3t"                                                                                                                                                                                                                                                                                                                         
## [2452] "Bosch has developed a rapid test for Covid-19,  that can detect a SARS-Cov-2 corona virus infection in a patient in under 2.5 hours. #medical #science #technews https://t.co/vWcJTLGtfr"                                                                                                                                                                                                                                                                                                                     
## [2453] "Frequently Asked Questions on the #StimulusPackage #coronavirus https://t.co/ezMQBGj9Bx"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2454] "There’s no place he’d rather be than home quarantined with than Ginny <U+0001F495> #harrypotter #quarantineandchill #covid19 #ginny https://t.co/XFsYNpTgnD"                                                                                                                                                                                                                                                                                                                                                
## [2455] ".@SenTinaSmith Thank you for passing the latest COVID-19 stimulus package, which allocates $130 billion to hospitals and health systems. Your leadership on this issue has moved our nation one step closer to an end to this global pandemic."                                                                                                                                                                                                                                                               
## [2456] "Find out what scams are currently circulating during the outbreak of #COVID19 here: https://t.co/1WAa0qGlgT\n\nPlease watch out for them and help raise awareness. https://t.co/9oMlhJUG59"                                                                                                                                                                                                                                                                                                                   
## [2457] "@sydney_talker @EWAWUNMIII Bros.....if na covid 19 u get......u go don spread am oooo.....no nose mask no nothing.....you enter car come out like that and people dey follow you around.......you dey spread the virus my guy"                                                                                                                                                                                                                                                                                
## [2458] "Covid-19 can suck a fat one"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2459] "Yele Sowore: FG planning to rearrest and infect me with #Coronavirus.\n\n@SecPompeo @StateDept"                                                                                                                                                                                                                                                                                                                                                                                                               
## [2460] "LOL there are ton of gifts from fuck LDP to face #COVID19, meat, fish, travel.. etc. they dare not provide cache, despite many more countries provide to keep safe.. Really wondering why LDP do such things.. https://t.co/BnRwmmMRYd"                                                                                                                                                                                                                                                                       
## [2461] "@MOH_Kenya help the many anigmatic Kenyans draw a persuasive relation between #COVID19 and these brutalizing, uncouth, diabolical, villainous night curfews. Help us comprehend!  @OleItumbi\n@Asmali77 @HEBabuOwino \n#CurfewKE #uhurumustgo"                                                                                                                                                                                                                                                                
## [2462] "@_tutsy Yhuuu. #COVID19 is working extra hours to keep me in panic. Let me indulge. Thank you Twin<U+0001F618>"                                                                                                                                                                                                                                                                                                                                                                                               
## [2463] "11 new cases of COVID-19 have been reported in Nigeria; total now 81. https://t.co/q212Cr7xMv https://t.co/Vm36XV2oqF"                                                                                                                                                                                                                                                                                                                                                                                        
## [2464] "@realDonaldTrump Soon More Americans will die from the #TrumpVirus #Covid19 than who died in the Vietnam War. And it’s all Donald Trump’s fault."                                                                                                                                                                                                                                                                                                                                                           
## [2465] "COVID 19 claims its first Idaho victims https://t.co/0CLYD5GQla"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2466] "We hope these ideas can keep ya going through these days. Visit our https://t.co/JG8gaYzNuU page for more resources (for you &amp; your kiddos). Feel free to share. Stay safe, all! #covıd19 #kidsactivities https://t.co/m5hvEIeg7E"                                                                                                                                                                                                                                                                       
## [2467] "@ZimBollar How is this going to aid our fight against Covid-19 ? Most of us don't have USD. Those that do have cash. Why not suspend  2% transaction tax on all online transactions and ecocash<U+0001F644>"                                                                                                                                                                                                                                                                                                  
## [2468] "Thank you @ChrisMurphyCT for leading a letter to  #EndCOVIDSanctions.  US sanctions make it harder for countries like Iran and Venezuela to get basic supplies like medical equipment. Stopping #COVID19 anywhere will make everyone safer. #SanctionsKill\n\nhttps://t.co/QAyYt5suPQ https://t.co/JOv1z9Spnt"                                                                                                                                                                                                
## [2469] "Updates on the Covid-19 situation in Indonesia #coronavirus https://t.co/CF09VtVpDz"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2470] "If the human race are able to overcome #COVID2019 I suspect the world will move more towards communist regimes, n those few surviving democracies would be more authoritarian?"                                                                                                                                                                                                                                                                                                                               
## [2471] "Confusion within the CDC, and its limited use of testing, gave COVID-19 a head start in the U. S. https://t.co/BKLjH1F27Q"                                                                                                                                                                                                                                                                                                                                                                                    
## [2472] "Americans To get $1,200 Each As @realDonaldTrump Signs Historic $2.2tri #FinancialStimulus Bill\nhttps://t.co/FjCol3B3f5\n#CityBusinessNews #CityNews #LatestNews #BusinessNews #NewsUpdate  #WorldNews #News #Update #DailyNews #DailyPost #AllAfrica #Covid19 #CoronavirusPandemic https://t.co/t1tbOrapfs"                                                                                                                                                                                                 
## [2473] "I ONLY have steak @texasroadhouse #KindnessMatters #coronavirus \nTexas Roadhouse CEO gives up salary for year to pay workers during pandemic https://t.co/H8KP8Eoz3Q via @tucsonstar"                                                                                                                                                                                                                                                                                                                        
## [2474] "@Katpa73 What I have been thinking but not saying. #COVID19 is our doom...\n\n#DieForTheDow is for Republicans.\n#DumpTrump"                                                                                                                                                                                                                                                                                                                                                                                  
## [2475] "@pulte Please pay my Kids @netflix . I just lost my job and cable tv is discounted 3 months ago. I can pay you back when i get back to work. #Pulte #CoronaLockdown #coronavirus #Netflix @FoxNews"                                                                                                                                                                                                                                                                                                           
## [2476] "Ive never heard of viruses disappearing. Science says viruses are not even alive, they’re activated by a living host! Trump says that the #COVID19 virus will disappear by summer! He’s lying, he’s trying to kill us, he needs to go away!"                                                                                                                                                                                                                                                               
## [2477] "WHO Director-General calls on G20 to Fight, Unite, and Ignite against COVID-19 https://t.co/RTD6ClLoCH"                                                                                                                                                                                                                                                                                                                                                                                                       
## [2478] "@Stop_Trump20 Not until they start dying from COVID -19"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2479] "Q, also a woman: Will you give us notification when the DPA is used?\n\nA: We'll tell you.\n\n#Coronavirus #TrumpShitShow"                                                                                                                                                                                                                                                                                                                                                                                    
## [2480] "Is one of the #Coronavirius symptoms laughing at jokes that aren't funny?\n\n#COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2481] "@covid2019_info Forecasting COVID-19 impact on hospital bed-days, ICU-days, ventilatordays and deaths by US state in the next 4 months \nhttps://t.co/buyzZnHHbf"                                                                                                                                                                                                                                                                                                                                             
## [2482] "This guy is an idiotic asshole. COVID-19 isn’t Chicken Pox for the neighborhood kids and cousins. #flattenthecurve not blow it up! https://t.co/pfdAHFWTtl"                                                                                                                                                                                                                                                                                                                                                  
## [2483] "Twitter please share this article. If you have a child in the KC area I urge you to stay away from Children’s Mercy Hospitals. They are endangering their employees and will not allow them to wear medical grade masks during an airborne pandemic. #COVID19 https://t.co/rbZ5uZbKJg"                                                                                                                                                                                                                       
## [2484] "LIVE UPDATES: Disney World to remain closed ‘until further notice’ due to COVID-19, officials say \n https://t.co/gZx2JI2oek"                                                                                                                                                                                                                                                                                                                                                                               
## [2485] "@realDonaldTrump TRUMPS SAYS \"GOOD THINGS ARE HAPPENING\"\nI WONDER WHAT HE CONSIDERS BAD THINGS? \n#COVID2019 #CongratulationsAmerica #CoronavirusOubreak #TrumpNotFitForOffice #ResignNow https://t.co/rBHCOjLc6r"                                                                                                                                                                                                                                                                                         
## [2486] "@pukeonyourdad My biggest foe so far in the quarantine is a mild case of boredom.\nI refuse to give in to panic unless the world population goes down by 1%. Yes, I know what that means in the unlikely event it actually happens, but I'm rapidly approaching my #Coronavirus news \"ad nauseam\" point."                                                                                                                                                                                                   
## [2487] "Ireland, we’ve just been set a new, tougher challenge - just like @HamillHimself / Luke Skywalker himself.\nIt’s now very much in OUR hands.\nUse The Force.\nKill #COVID19. https://t.co/275HOgnhqB"                                                                                                                                                                                                                                                                                                       
## [2488] "We don't know clearly the deaths/infection ratio of Covid 19. But the point here is: the number of infections will always be in the millions. That number really doesn't matter. What matters is the recovery rate, hospitalization rate, critical care rate."                                                                                                                                                                                                                                                
## [2489] "@chiefcraig85 I've been meaning to message you to tell you that N95 masks and single use gloves are the white sunglasses of the COVID-19 crisis."                                                                                                                                                                                                                                                                                                                                                             
## [2490] "#RKelly Update: #RKelly has asked the Judge in Chicago to release him on bond due to the #Coronavirus Outbreak. View evidence below<U+0001F447> https://t.co/sZTCiwFvEX"                                                                                                                                                                                                                                                                                                                                      
## [2491] "@GabeUKSaintsFan @whodatholly9 @lizardpmiller @DatNolaBabe @MaryHPiper @DPLegendary24 @bballmomma4 @DustyDatGirl @AGalvezStJoint @LouisianaKaren @vcbarbie @SnoopyKriss Thanks Gabe. Hey WhoDatNation follow the #COVID19 prevention guidelines &amp; be safe guys        <U+0001F5A4><U+269C><U+FE0F><U+0001F49B>"                                                                                                                                                                                           
## [2492] "#TwitterKurds a must read article<U+2935>\n\n- outbreaks have a beginning, middle and end and the end always comes due to the community....\n\n#COVID2019\n\nhttps://t.co/qEptTkezFI"                                                                                                                                                                                                                                                                                                                         
## [2493] "Cesaro, Xavier Woods Participating in Charity Stream Tomorrow To Benefit COVID-19 Fund https://t.co/SBk9TDc8pl"                                                                                                                                                                                                                                                                                                                                                                                               
## [2494] "With the constantly developing issues surrounding the #COVID19 pandemic, Greyhound Racing NSW believes it is crucial to keep all participants up to date on all news involving the industry.\n\nRead the latest update.\n\nREAD // https://t.co/Wqba1KILda \n\n#GreyhoundRacingNSW https://t.co/sUQVPCJugW"                                                                                                                                                                                                   
## [2495] "What type of thanks this is ? What u people want to prove ? Stop being so shameless always <U+0001F926><U+0001F3FB><U+200D>♂<U+FE0F>. We are fighting with Global Epidemic like #Covid19 and you want us to promote our PM for this <U+0001F44F><U+0001F44F><U+0001F44F>. Stop looking for PR, atleast in this <U+0001F64F><U+0001F3FB>. https://t.co/hzB6Ajd7YF"                                                                                                                                            
## [2496] "LIVE AT NOON: Governor Ivey announces closures of more businesses to reduce the spread of COVID-19.  https://t.co/Z7Z3z6v40I"                                                                                                                                                                                                                                                                                                                                                                                 
## [2497] "@jimfannon Damn! Why would they go there? Hey Jim! Listening to you web thing. Do another one and send me the link. This one was...well you know what it was. Your lungs need to be in intensive care and I want to see your F-bomb license. #coronavirus"                                                                                                                                                                                                                                                    
## [2498] "Call to arms in NYC...can you help or know someone who can help? https://t.co/NDVKxscFku"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2499] "Starting off with great stuff on #COVID19, here is a very illuminating article from @cenmag, that looks at #Remdesivir as a potential strategy to tackle the disease: https://t.co/FVHH3ZJrGZ"                                                                                                                                                                                                                                                                                                                
## [2500] "@Aaron86074700 Chal na COVID-19 is on. Please take care baba don’t roam out and play cards. #StayHomeStaySafe"                                                                                                                                                                                                                                                                                                                                                                                               
## [2501] "Startups might be excluded from the COVID-19 stimulus plan https://t.co/VyxgnO3uz3"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2502] "The #Democrats would have a great deal more time if they didn't have to spend every second of every day babysitting you.\n\n#LiarInChief #CoronavirusOutbreak #COVID19 #COVIDIOTS @SpeakerPelosi @RepAdamSchiff @RepJerryNadler @HouseDemocrats #StayAtHomeAndStaySafe #ImpeachTrumpAgain https://t.co/xT4QSJBwJf"                                                                                                                                                                                            
## [2503] "Are D.C. Hospitals Prepared For More COVID-19 Infections? https://t.co/GhlOCUhx0M"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2504] "Yesterday 468,577 cases\n\nToday 525,297 cases = about 57,000 cases more\n\nDeaths yesterday: 21,185\n\nDeaths today: 23700 = about 2500 more deaths \n\nStay inside, retweet and like this \n\nto spread the message \n\n#COVID2019 #CoronavirusLockdown https://t.co/k1wEwAUQFG"                                                                                                                                                                                                                            
## [2505] "@MSNBC My understanding is the hospital ship is not for Covid-19 treatment, rather, it will allow hospitals to transition treatment of non corona patients outside of the hospital. As grand as it looks, and helpful it will be, it’s not nearly enough."                                                                                                                                                                                                                                                   
## [2506] "In UK: Boris Johnson, Prince Charles, &amp; Matt Hancock (Health Secretary) All Have COVID-19 &amp; Dr Whitty Has Symptoms https://t.co/iXkPruXfS4"                                                                                                                                                                                                                                                                                                                                                           
## [2507] "The lengths we go to... nonetheless, it my covid-19 morning. https://t.co/TCHueFOjsJ"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2508] "There have been seven confirmed cases of COVID-19 on the base. https://t.co/bgPn973rW6"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2509] "Governor Newsom has issued an executive order that if you lost your job thanks to contracting COVID-19 or because of the state of emergency, your landlord cannot evict you if you notify them IN WRITING that you need to delay paying rent. https://t.co/HULg22wLBf"                                                                                                                                                                                                                                        
## [2510] "3 ways hackers can exploit everyone working from home during the #Coronavirus outbreak. #cybersecurity #cybercrime #cyberaware #databreach #breach #malware #workfromhome #hackernews https://t.co/luiv4flmhO"                                                                                                                                                                                                                                                                                                
## [2511] "Evanston Art in the time of Corona: View artwork created by  Evanston Art Center students, faculty during COVID-19. Art by David Moskow#evanstonmade https://t.co/gZr3PHuqV5 https://t.co/Pi3BZLEMGW"                                                                                                                                                                                                                                                                                                         
## [2512] "#COVID #COVID19 \n\nIf I were Donald Trump. I would line up his entire Cabinet and all advisors to publicly kick them in the groin before firing them....!!!! https://t.co/a03pMem4nc"                                                                                                                                                                                                                                                                                                                        
## [2513] "Daycare closing after possible COVID-19 exposure https://t.co/WvGfRHoPp4"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2514] "#Coronavirus outbreak: Big trouble brewing in Mumbai's #Vasai #Virar belt https://t.co/ldqxA4UqdN via @mid_day"                                                                                                                                                                                                                                                                                                                                                                                               
## [2515] "\"The #coronavirus and the real threats to American safety and freedom.\" https://t.co/27QkhUgNRS"                                                                                                                                                                                                                                                                                                                                                                                                            
## [2516] "Hiding in plain site! #COVID2019 #BillGates #coronavirus https://t.co/mByVhfxF4I"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2517] "https://t.co/TRndAHjxJK UPDATE;Nigeria now have 81 confirmed cases https://t.co/4FVzGkYtST"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2518] "A thread on the corresponding author of the #Hydroxychloroquine and #Azithromycin trial, Didier Raoult. It is....... not flattering. #COVID19 https://t.co/2vyILQ0Qck"                                                                                                                                                                                                                                                                                                                                        
## [2519] "@NWalesDragons My daughter in law is front line Covid 19 triage. I’m thinking she was too busy to mention it! I’d have yelled like a demon for sure.\n."                                                                                                                                                                                                                                                                                                                                                    
## [2520] "The $2 trillion dollar aid packages have been approved through the senate to help unemployment cases due to the outbreak of the Corona virus... #COVID2019 #TwitterNewsChat"                                                                                                                                                                                                                                                                                                                                  
## [2521] "Interestingly Nemani and Lynda had one post that was very similar - one saying Sodelpa brought #Covid19 and another saying Fiji First <U+0001F644><U+0001F928>"                                                                                                                                                                                                                                                                                                                                               
## [2522] "Foolhardy to conclude that pandemics are good. Perhaps COVID-19, will make us find less polluting ways to do our jobs. Our normal way of doing things might need disrupting! Lets hope we overcome this calamity soon <U+0001F91E><U+0001F3FC>"                                                                                                                                                                                                                                                               
## [2523] "EthicalGEO Pod Episode 1: Location Tracking during COVID-19 by AmericanGeoSociety via #soundcloud https://t.co/CqTXJ4ngJg"                                                                                                                                                                                                                                                                                                                                                                                    
## [2524] "Help me keep my animals! Things have gone from bad to worse with this Covid-19 pandemic! I was unable to stock up on enough dog food and hoese hay for my critters. PLEASE PLEASE PLEASE Please support my GoFundMe campaign: https://t.co/gCoPoiRZ5L @gofundme https://t.co/R55wRW6BwC"                                                                                                                                                                                                                      
## [2525] "@TB_Times Problems? So far, 46 people in FL have died due to #COVID19. How many of FL elderly die every year during same time frame? Media using @GovRonDeSantis as proxy to attack @realDonaldTrump. We know what you're doing, and we will not forget.\n#CoronavirusOutbreak  #FakeNews"                                                                                                                                                                                                                    
## [2526] "How is the COVID-19 pandemic impacting workers in the United States? @LoumayAlesali took a closer look\nhttps://t.co/oDNE5DsTIg @McClatchy @thestate #coronavirus"                                                                                                                                                                                                                                                                                                                                            
## [2527] "...wfh day#7 #wfh #dirumahaja #covid19 #COVID19indonesia https://t.co/hJ9NQ1O5xi"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2528] "COVID-19: Protect yourself, family while fighting for others, PDP scribe tells journalists - https://t.co/RWk0fm4AIS https://t.co/vJTg0BOccT"                                                                                                                                                                                                                                                                                                                                                                 
## [2529] "Now on https://t.co/0J2UdYHyh5\n\nCovid-19: NSCDC deploys 300 personnel in Ondo"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2530] "\"Don’t go out. Don’t go to the grocery store. Don’t go through the drive-thru. Don’t do anything that could put you at risk to have to see me at the end of the tunnel. I'm telling you it’s not worth it &amp; I don't know what I can do to save people anymore.\" https://t.co/gxqpVLK9lO"                                                                                                                                                                                                           
## [2531] "@SidneyPowell1 @WHO @realDonaldTrump @NIH @docdhj @DrMartyFox @CDCemergency @RepMarkMeadows UK took Covid 19 OFF High Consequence Infectious Disease List\n\nHigh consequence infectious diseases (HCID) - https://t.co/2XP3OOVYQz\n\nhttps://t.co/KKd2EWBJD2"                                                                                                                                                                                                                                                
## [2532] "Wow. COVID-19 is outrageous."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2533] "States that have allowed #marijuana businesses to remain open during #coronavirus pandemic https://t.co/Sik9YjVRXp #cannabis #cannabisindustry"                                                                                                                                                                                                                                                                                                                                                               
## [2534] "@APompliano I agree. Hedge funds are pumping this and will be dumping hard on retail investors. We haven’t even started seeing the economic impact of COVID-19 yet...those earning calls in April will start the real dump. Let’s not ignore the fact that already 3.2M applied for unemployment."                                                                                                                                                                                                          
## [2535] "Q10: Going forward, how might #COVID19 change #SocialMedia technology? #PeerFriday"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2536] "Is The Fed’s Cure Worse Than the Covid-19 Virus? Apparently, The Federal Reserve and US Treasury think they need a bigger boat!\n\n(Bloomberg) <U+2014> The economic debate of the day centers on whether<U+00A0>the cure of an https://t.co/YjxTvkoopc"                                                                                                                                                                                                                                                     
## [2537] "One hopes that this will be circulated as widely as the original story in order to reduce public alarm.  But of course it wont be. Chloe Middleton: tragic death of 21-year-old not recorded as Covid-19 https://t.co/P0I07W09Kg"                                                                                                                                                                                                                                                                             
## [2538] "Practical Parenting during a Pandemic https://t.co/qZDGhPwDRi via @colbypearce #parenting #parent #parents #fostercare #fostercarer #fostercarers #kinshipcare #kinshipcarer #kinshipcarers #socialwork #youthwork #educator #teacher #wellbeing #resilience #Covid_19 #coronavirusau"                                                                                                                                                                                                                        
## [2539] "@realDonaldTrump  You Orange Asshole! You just beat China to be no 1 in Covid-19 cases in the world. TOTAL LOSER!!!"                                                                                                                                                                                                                                                                                                                                                                                          
## [2540] "If USA is COVID-19 epicenter, huge boxing events may have to move https://t.co/SXSVhQ4SSd #FuryWilder3 #canelosaunders https://t.co/m1qY8EIb89"                                                                                                                                                                                                                                                                                                                                                               
## [2541] "Thank you. To all @NHSuk staff, doctors, nurses, GP’s, healthcare workers and pharmacists who are working so hard and so bravely to help those affected by the Coronavirus.  We respect you, we salute you, we <U+0001F64F> thank you <U+0001F499> #clapforourcarers #COVID2019 #ThankYouNHS https://t.co/k8XV69eb1k"                                                                                                                                                                                        
## [2542] "\"The problem has not been solved. Even after today's announcement, a great many face financial destitution.\" @MoyerLee. Our response to the government's support package falling short for the #selfemployed\n\n#COVID2019 #covid19UK #CoronaCrisis #CoronaVillains #lockdown #keyworkers https://t.co/JNEYxggQm2"                                                                                                                                                                                          
## [2543] "Well, well, well.\n“But his timing was near perfect…” \nfrom\n“Jeff #Bezos sold $3.4bn of #Amazon stock just before Covid-19 collapse”\nhttps://t.co/sfsgRv1UZ4\n#Covid19 #Capitalism"                                                                                                                                                                                                                                                                                                                   
## [2544] "Safe Guidelines for Kids and Socializing During COVID-19 https://t.co/0dhB7MGXnL"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2545] "Covid-19 is exposing yet another weakness is American infrastructure: high-speed rail https://t.co/UsJjiFI1RL"                                                                                                                                                                                                                                                                                                                                                                                                
## [2546] "I'd like to wish the Prime Minister and the others in the Cabinet affected by #Covid19 a speedy recovery! https://t.co/42tPFhGUBf"                                                                                                                                                                                                                                                                                                                                                                            
## [2547] "@WhitneyM02 @AceAnbender Just so you know Mount Sinai medical students are not allowed to participate in any patient care for any patients currently. All rotations and clinical experiences have been suspended due to COVID-19."                                                                                                                                                                                                                                                                            
## [2548] "Join me in telling our officials: COVID-19 cannot be fought without the help of all manufacturers in my state: https://t.co/MU4kOVmgS6 #CreatorsRespond #palletsmovetheworld"                                                                                                                                                                                                                                                                                                                                 
## [2549] "We Plan Group : Inbound call support during Covid-19 pandemic - WCCF https://t.co/hCP4qPO27R\n\n#Wales #contactcentre #CustomerService #Covid19 #business #callcentre"                                                                                                                                                                                                                                                                                                                                        
## [2550] "@BernieSanders has proven himself a true leader in this time of crisis. What will you do @realDonaldTrump ?\n#BernieIsOurFDR #COVID19 #DemExit https://t.co/aXcOj2Re3d"                                                                                                                                                                                                                                                                                                                                       
## [2551] "Hey @GovHerbert\n\nYou may want to look at this. \n\nYou are doing NOTHING! \n\nDo. Your. Job. #COVID19 #ShelterInPlace NOW\n\nThis is the point of no return for intervention to prevent Utah's hospital system from being overloaded by Coronavirus:  https://t.co/rhn1hQG3j6 #COVIDActNow"                                                                                                                                                                                                                 
## [2552] "Thank you for your service! #COVID19 #coronavirus #Caregivers https://t.co/pX4TfVa9JM"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2553] "@joeldanger_ @FallonTonight sick-but it's not covid 19 cuz i can't find a thermometer in a store to check for fever and can't get tested cuz i don't have the 3 prereq's- 1.fever, 2, traveled, 3, known contact with s/o diagnosed with covid19 - chicken broth aka sick chicken broth"                                                                                                                                                                                                                      
## [2554] "Thank you to Kerry Kennelly and his  team at @Kerrys_Eye for shining a special spotlight and an apt caption on the response of #Kerry #volunteers in relation to #COVID19 and highlight the supports available to local groups from our team at the Kerry Volunteer Centre #community https://t.co/fInaytZkgo"                                                                                                                                                                                                
## [2555] "67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/BttntWJlQc"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2556] "WE ARE HIRING! \nWe are still actively hiring through the #COVID19 crisis. Now more than ever, we need dedicated, service-oriented people who want to be part of something bigger than themselves and are committed to the #Sheriff office mission Apply now! https://t.co/hPGtsidvZc"                                                                                                                                                                                                                        
## [2557] "Open https://t.co/k54kJA8thZ which is a one-stop tracker for the number of confirmed COVID-19 cases in India. Made by @amitbhawani Bhai."                                                                                                                                                                                                                                                                                                                                                                     
## [2558] "@mcdon_s @JudicialWatch Do you think your President is protecting you? if so think again \n..the world is at war with a virus spreading, regardless of politics   People are dying, it can happen to you and to your loved one \nKnowledge is power, learn about the enemy called Covid-19 and protect yourself."                                                                                                                                                                                             
## [2559] "Currently speaking to another fellow maker in SG who runs a small manufacturing firm. We'll be pulling our resources &amp; brainpower <U+0001F9E0> together to design new ideas <U+0001F4A1> &amp; build solutions to help battle the #COVID19 situation. | #makers #electronics #iot #arduino @arduino"                                                                                                                                                                                                      
## [2560] "Mark Zuckerberg, Priscilla Chan and Bill Gates to fund $25M #coronavirus research group - via <U+2066>@CBSNews<U+2069> <U+2066>@czbiohub<U+2069> #COVID2019 #serology <U+2066>@ChanZuckerberg<U+2069> <U+2066>@BillGates<U+2069>  https://t.co/i8heM9598U"                                                                                                                                                                                                                                                    
## [2561] "Very much looking forward to our discussion this coming Wednesday! Thank you very much Nana Kay @SmartestNk and Swiss Cognitive @SwissCognitive for the opportunity! @Nanoappsm @tantriclens @HeinzVHoenen @TopCyberNews #coronavirus #CoronavirusOutbreak  #CoronavirusPandemic https://t.co/vDbYPwVTV2"                                                                                                                                                                                                     
## [2562] "Overhearing my 8yr old playing Harry Potter with a best buddy over video. They invented some spells that would help them sneak past Nagini the snake into Hogwarts. The two of them seem to have conjured protective shields to protect wizards such as themselves from #Covid19. <U+0001F625>"                                                                                                                                                                                                               
## [2563] "MEDC | Application Process Now Live for Michigan Small Business Relief Program Funding - Up to $20 million in grants and loans now available to Michigan’s small businesses impacted by COVID-19 outbreak\nhttps://t.co/c5l4bin2qs"                                                                                                                                                                                                                                                                          
## [2564] "Numbers of Corona cases keeps on increasing in USA, every minute.\n It has now crossed 83,000. Just few hours back it was over 75,000.\n\nIt’s devastating. Extremely devastating. <U+0001F628><U+0001F628>\n\n #CoronavirusOubreak https://t.co/x995v3Dnmy"                                                                                                                                                                                                                                                 
## [2565] "@DPrasanthNair Reliance is doing something with the money it has\n https://t.co/G9yHh93XHK"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2566] "Cuba is helping Spain and countless other countries deal with #COVID19 pandemic. \n\nUS can get help from Cuba instead of causing brain drain in developing countries. \n\nUnfortunately they keep Cuba under sanctions. \n@BrezhMalaba @Sizzle76 @TimoOlkkonen @hwendec @ShingiMunyeza https://t.co/8ZRCBEUWLZ"                                                                                                                                                                                              
## [2567] "Covid-19: PM Jacinda Ardern provides latest update https://t.co/zltDQ5rnP7 https://t.co/Ud8k6Lv6eR"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2568] "An informative PSA from Dr. Jeffery VanWingen on safe grocery shopping during COVID-19. This is the most current video for New CDC data, safe takeout food practices, and an updated practice for safe grocery shopping/handling. https://t.co/wUT987safR"                                                                                                                                                                                                                                                    
## [2569] "Ripple Labs Donates $200k to Combat COVID-19 Pandemic https://t.co/9xPN3VXRT3 https://t.co/Fw5qaCgJiP"                                                                                                                                                                                                                                                                                                                                                                                                        
## [2570] "For our complete analysis of #coronavirus scenarios for #jobs, #GDP, #oilprices, #humancapital, and more, visit https://t.co/qdh5D8rl6g. https://t.co/Z5cCuNOMBn"                                                                                                                                                                                                                                                                                                                                             
## [2571] "Watching #trump kiss his own ass daily in the #Coronavirus press briefing is like watching the contortionist in the circus sideshow. We’re all paying dearly to see it but it is doing us absolutely no good."                                                                                                                                                                                                                                                                                               
## [2572] "The latest The Lilach Bullock Daily! https://t.co/zpXrI805et Thanks to @artgirl2 @weareallbeggars #usnsmercy #covid19"                                                                                                                                                                                                                                                                                                                                                                                        
## [2573] "By far the worst day for new cases of #COVID19 in the state. Unfortunatley, Gov Inslee was duped into suggesting a deceleration was occurring due to case reporting issues at Washington State Department of Health. \n\ncc: @komonews @KING5Seattle @KIRO7Seattle @Q13FOX"                                                                                                                                                                                                                                   
## [2574] "Every effort is being made to support the front lines, let’s hope this catches on quickly enough to save lives.  #COVID19 #PPEshortage https://t.co/aWTYgmBaFc"                                                                                                                                                                                                                                                                                                                                              
## [2575] "If you don’t have to go out into the community for business, please stay home. This is the only way that we are going to be successful in eliminating the spread of COVID-19. Please and thank you!"                                                                                                                                                                                                                                                                                                         
## [2576] "In the news: Colorado Coronavirus Updates: What You Need To Know Today https://t.co/CyLXlaVHKJ #coronavirus #COVID19 #2019ncov"                                                                                                                                                                                                                                                                                                                                                                               
## [2577] "One of the most difficult, yet important, aspects of a #remoteworkforce is ensuring your employees are still secure at home. Check out our tips. \n\n#covid19 #workfromhome #cybersecurity #networksecurity #cloudsecurity\nhttps://t.co/xL0BBL0C50"                                                                                                                                                                                                                                                          
## [2578] "Now Africa must ban all people from these sh*t countries from entering it shores and spreading #COVID2019 #CoronaVillains <U+0001F92A> https://t.co/5NZ6KwtPk4"                                                                                                                                                                                                                                                                                                                                               
## [2579] "Summer 2020 is about to be WILD once the heat ends this COVID-19 quarantine mess. But then when fall comes it’s gonna mutate and we’re gonna be under house arrest again."                                                                                                                                                                                                                                                                                                                                  
## [2580] "#LockDownRadio @stream_times The latest Covid-19 cases across the world as the virus surpass half a million infections. https://t.co/nWqNOwVplb"                                                                                                                                                                                                                                                                                                                                                              
## [2581] "At this point, I don't give a flying f*ck who the Blue Candidate is, I'll vote Blue, to stop T from killing us. Being alive after the election will enable us to deal with whoever we got into office, if they are really That Awful. They can't possibly be This Awful. #coronavirus"                                                                                                                                                                                                                        
## [2582] "@CNN @OhioNursesAssoc  I saw the interview about masks. Thinking about options for anyone that has a homemade mask. I could put them on our https://t.co/5hLmABptNl site for free to broaden the effort. I am seeing duplication, but this can be streamlined to save time. #COVID19"                                                                                                                                                                                                                         
## [2583] "Aehr Comments on COVID-19 and Measures to Operate at Near Full Capacity as Global Supplier to Critical Infrastructure Customers https://t.co/3TODl6GH2u"                                                                                                                                                                                                                                                                                                                                                      
## [2584] "Gov. Cuomo is doing a great job keeping the citizens of NY updated on the COVID-19 outbreak! #nycovid19"                                                                                                                                                                                                                                                                                                                                                                                                      
## [2585] "According to the \"Novel Coronavirus Pneumonia Prevention and Control Plan(Sixth Edition)\", asymptomatic infection refers to infected people that does not show symptoms of the Covid-19(such as fever, cough, sore throat, respiratory tract infections etc.)but the IgM antibody test +"                                                                                                                                                                                                                   
## [2586] "tinder not putting out any offer in this trying times...\n\naw<U+1ECD>n ahun o<U+1E63>i #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2587] "G2G Webinar on \"Govn't Funding - Coronavirus Response\" will be held tomorrow at 12PM &amp; again at 3PM. Learn about legislation responding to the coronavirus/COVID-19 and additional programs. Register online: 12PM-1PM - https://t.co/sndW7Xwh6n ; 3PM-4PM - https://t.co/g6zoG4PoEe https://t.co/MJShNYnYfX"                                                                                                                                                                                           
## [2588] "Rookie mistake \n\n1 bottle of wine in the house....\n\n*Heads online to rectify mistake \n\n#CoronaLockdown #Covid_19 #IrelandLockdown #TorisCocoon #compromisedimmunesystem https://t.co/PP0gdlWIY1"                                                                                                                                                                                                                                                                                                        
## [2589] "I hope everyone stays safe #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2590] "@moreki_mo covid 19 will go but stupidity is permanent<U+0001F922>"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2591] "@TraceAdkins @ViacomCBS It is so sad that it wasn't seen by many people staying inside because of covid-19."                                                                                                                                                                                                                                                                                                                                                                                                  
## [2592] "Wish to have one in this moment! #designinspiration #Innovation #COVID2019 https://t.co/57jhYfBeIQ"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2593] "The health and safety of Ontarians is our top priority. Important updates on COVID19 as of Thursday, March 26, 2020 at 730PM. #FlattenTheCurve #COVID19 https://t.co/qfRz0eNSti"                                                                                                                                                                                                                                                                                                                              
## [2594] "Are you using the right tools for secure work from home? #COVID19 https://t.co/jQ7WvGIbid"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2595] "@KeishaBottoms <U+0001F31F> IS A SUPER STAR<U+0001F31F>\n\nShe took up the plight of making sure the homeless is provided for during this COVID-19 pandemic &amp; Governor Kemp commended her and said he's leaning on her for this."                                                                                                                                                                                                                                                                         
## [2596] "Here’s to #trackingnotslacking while #socialdistancing! We are open for business and following social distancing practices to protect our teams, customers, and community https://t.co/hQpUGbvqSW. We will continue to track the situation and do our part to help #flattenthecurve."                                                                                                                                                                                                                        
## [2597] "COVID-19 Just-in-Time ECHO for Primary Care is a drop-in series starting on 3/27. Experts will be on hand to answer questions &amp; to share information about the spread of the virus in Colorado, Go to https://t.co/jkIoFR7pff for more information and to register."                                                                                                                                                                                                                                      
## [2598] "We are going to clap daily to reinvigorate our superhuman @NHSuk workers in a show of support for their herculean efforts and bravery in the battle against #COVID<U+30FC>19  and in defiance against the disease. We will continue clapping until we get rid of it.  #clapforNHS #NHS https://t.co/u3gCddJY3a"                                                                                                                                                                                               
## [2599] "Gather round and crowd in, everybody! We’re here to tell you some methods for preventing coronavirus. #nicaragua #COVID #coronavirus #salud https://t.co/wCkj9FFWCA"                                                                                                                                                                                                                                                                                                                                         
## [2600] "Oh no....I just heard a rumour that COVID 19 can possibly cause sterility in middle aged males. \nWith our PM in mind, what about a whip round for urgent research people?? ... On second thoughts, FUCK THAT"                                                                                                                                                                                                                                                                                                
## [2601] "“We are preparing for the most serious scenario” on #COVID19, stresses @adriandix. @cbcnewsbc"                                                                                                                                                                                                                                                                                                                                                                                                              
## [2602] "Now it's really starting to feel real. This is horrifying and so sad. #COVID19\n\nhttps://t.co/8Bih1oeDsk"                                                                                                                                                                                                                                                                                                                                                                                                    
## [2603] "Patriots fans on the @NFL discussing canceling the entire season. #NFL #COVID19 https://t.co/ReGpVPfx7Z"                                                                                                                                                                                                                                                                                                                                                                                                      
## [2604] "70 new cases and 8 new deaths in #India \n431 new cases and 18 new deaths in #Brazil\n138 new cases and 1 new death in #Pakistan\n1 new case in #Guatemala\n634 new cases and 3 new deaths in #Canada\n50 new cases and 5 new deaths in #Morocco\n\n#CoronavirusOubreak #CoronaVillains https://t.co/ccuKBrNXE9"                                                                                                                                                                                              
## [2605] "@jimmyfallon @chrissyteigen #RETWEEETME Forgive student loan debt for all healthcare professionals! #HealthcareHeroes #COVID19"                                                                                                                                                                                                                                                                                                                                                                               
## [2606] "Working from home or just isolating, when you run into issues with your #computer, #remote support can help resolve many issues #coronavirus #covid-19 #selfisolate #windows #apple GreyFusion IT Support is a #Oxfordshire #UK Based small business. https://t.co/EPA6UkREcn https://t.co/W1EPVOfXv8"                                                                                                                                                                                                        
## [2607] "SNMMI has developed a COVID-19 Resource Center to consolidate information and resources for the nuclear medicine community. Access via the SNMMI home page or at https://t.co/2qNtbU5J0a. https://t.co/njs9CuOYUD"                                                                                                                                                                                                                                                                                            
## [2608] "Apple launches COVID-19 screening app and website - The Verge https://t.co/IRfiMTWZKW"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2609] "@allinwithchris @chrislhayes @11thHour @maddow @AC360 @andersoncooper @ChrisCuomo @donlemon @GovPritzker Someone talk about the fact that less than 16,000 people have been tested for Covid-19 in IL, a state with 12 million. @GovPritzker is doing his best but we need more TESTS"                                                                                                                                                                                                                        
## [2610] "<U+0001F1E8><U+0001F1F3><U+0001F1F5><U+0001F1F0> Eight Chinese doctors who are specialists in coronavirus are coming today on special flight in Pakistan https://t.co/640yjnHIlH #StopTheSpreadOfCorona \n#Covid_19"                                                                                                                                                                                                                                                                                          
## [2611] "Mark Zuckerberg Commits $25 Million to Bill Gates' Research on COVID-19 Therapeutics https://t.co/Knvyc9mIcT - #engineering, #technology and #science from @IntEngineering"                                                                                                                                                                                                                                                                                                                                   
## [2612] "We’re offering support for our customers impacted by these challenging times. For current Genesis owners financing through Genesis Finance, you can defer your payments for up to three months if you’ve lost your job or suffer a medically-related hardship due to COVID-19. https://t.co/1bTszaAYx4"                                                                                                                                                                                                     
## [2613] "Wild. Check this out! #covid19 https://t.co/GRlBpa6KxQ"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2614] "The U.S. Environmental Protection Agency no longer requires petrochemical and other companies in the U.S. to follow most of its laws. Learn what this means for #fenceline communities in the time of #coronavirus.  https://t.co/bqlMTfpp9P https://t.co/PnaIBdU1KC"                                                                                                                                                                                                                                         
## [2615] "#NEW Monmouth County accounts for two of the 19 new deaths. Ocean County had one new death related to #COVID19. https://t.co/yXLOaUQwpG"                                                                                                                                                                                                                                                                                                                                                                      
## [2616] "Morning <U+0001F601>\nToday I will be tidying &amp; repairing my shed... <U+0001F600>\nWhat are your plans?\n#lockdown #coronacrisis #coronavirus #COVID19"                                                                                                                                                                                                                                                                                                                                                   
## [2617] "Apple Launches COVID-19 Screening Website and App (Slashdot) https://t.co/0GKv1zodRb"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2618] "Thank you #NHSheroes for all you are doing  #clapforourcarers #StayHomeSaveLives #COVID2019 #NHS #NHSThankYou #NHSCovidHeroes <U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F> https://t.co/DRpQlGApD4"                                                                                                                                                                                                                                                                       
## [2619] "Playin this board like a BOSS! <U+0001F4AA> \n\n#coronavirus #SocialDistanacing #Radio #Nirvana #FITZHAPPENS \n\nWhat’s your favorite NIRVANA Jam? https://t.co/CEsBrumSW3"                                                                                                                                                                                                                                                                                                                                  
## [2620] "@cornell_kate @BradLepp @MacLeodLisa @TAPA_TO 3/ Also a concern for small NFP arts orgs who have very little funding  and support to begin with: how do we make sure monetary help that may come down the line is not disproportionately allocated so that the small NFP arts orgs also have a fighting chance post-COVID-19?"                                                                                                                                                                                
## [2621] "FIFA and WHO have teamed up to combat the coronavirus (COVID-19) by launching a new awareness campaign led by world-renowned footballers, who are calling on all people around the world to follow five key steps to stop the spread of the disease. Link: https://t.co/tnaS5qTcg5"                                                                                                                                                                                                                           
## [2622] "This is just a part of the queue for a local Sainsbury to do some grocery shopping... There are at least 30 sth people in the queue in a Friday evening, one hour before closing... #coronavirus #CoronaLockdown #coronauk https://t.co/ZhlHgWULS4"                                                                                                                                                                                                                                                           
## [2623] "#IndiaUnited\n#COVID2019 \n\nAs a physician I can understand that medicines are usually bitter but needed for treatment.\nSame is true of is this lockdown; but we shall come out safer and stronger.\n#IndiaFightsCorona"                                                                                                                                                                                                                                                                                    
## [2624] "I'm on a different plane of social distancing, I'm not even talking to real people. I talk to Animal Crossing villagers and Otome characters. #covid19 #QuarantineLife #AnimalCrossingNewHorizons #acnh #otome #mysticmessenger #SocialDistanacing"                                                                                                                                                                                                                                                           
## [2625] "Stop the spread of COVID-19 in immigration detention centres #SaferAtHome - Sign the Petition! https://t.co/esG71n7agn via @ChangeAUS"                                                                                                                                                                                                                                                                                                                                                                        
## [2626] "\"Many apparel, footwear and accessories retailers, already weakened by limited discretionary spending, may not survive this challenging period\".\n@qut @QUT_AMPR #RetailWorkers\n#retail #COVID19\nhttps://t.co/vuVGAY1iiI"                                                                                                                                                                                                                                                                                 
## [2627] "It's only a matter of time before the MLM recruiters start using COVID-19 as a marketing ploy."                                                                                                                                                                                                                                                                                                                                                                                                               
## [2628] "@hypnodebi how sweet Debi!  Thank you very much :)  Stay strong &amp; healthy.  #coronavirus #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                      
## [2629] "Conor McGregor’s coach: COVID-19 restrictions won’t hamper Khabib, Ferguson <U+2013> if fight happens https://t.co/QfyocuTYJM"                                                                                                                                                                                                                                                                                                                                                                              
## [2630] "Immediate response by our honourable minister @SucharitaYSRCP \nRegarding the cop who misused his power was suspended .\n\n#CoronaLockdown #APFightsCorona #COVID2019 #StayHomeSaveLives https://t.co/UC9JlzjNjV https://t.co/Grjo9ol8yz"                                                                                                                                                                                                                                                                     
## [2631] "Another COVID-19-related closure for Canyon Lake-area parks.\nhttps://t.co/55JkfRyfHH"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2632] "WHO is asking 18 months for preparation of vaccine of #Chinesevirus19, by the time it would be ready, China would launch advance version of virus #Pro Covid 19."                                                                                                                                                                                                                                                                                                                                             
## [2633] ".@realDonaldTrump really is a record setter. 1. He let #COVID<U+30FC>19 spread unabated 2. He crashed the mkt. w/no response 3. He crashes economy w/his late state of emergency 4. He breaks the Fed bank w/a “bail-out” 5. Now he’s pulling it all back &amp; he’s gonna kill more people!"                                                                                                                                                                                                             
## [2634] "#COVID2019 \n#PelosiPork is to find political promises that the DEMOCRATS made. It's reverse fundraising. \"I give you money than your organization gives DONATIONS to the DNC\"\n#Trump2020NowMoreThanEver \n#WakeUpAmerica https://t.co/1NqIl7pAMC"                                                                                                                                                                                                                                                         
## [2635] "As communicators, we have the power to help. Read more on how PR professionals can help inform during COVID-19 from PRSA's blog: https://t.co/nSElXzXHA6 #PRsay #PRSA https://t.co/Qbb38zTVa8"                                                                                                                                                                                                                                                                                                                
## [2636] "@aimim_national @asadowaisi\nAIMIM MLA Mufti Mohammad.\nFUCK you asshole, bastard get him injected with COVID-19....no doctors should treat him....."                                                                                                                                                                                                                                                                                                                                                         
## [2637] "The latest #sask numbers of confirmed #covid19 cases. #thelatestbuzz #covid19Canada #COVID19SK #COVID19Sask https://t.co/GlolE88qwA"                                                                                                                                                                                                                                                                                                                                                                          
## [2638] "Great to hear everyone clapping on the balconies atm ..... the least we can do! Remember  #StayHomeSaveLives #COVID2019 <U+0001F44F><U+0001F44F><U+0001F44F><U+0001F64F>"                                                                                                                                                                                                                                                                                                                                     
## [2639] "@realDonaldTrump How many? #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2640] "We know y’all bored #coronavirus #StayHomeDallas  https://t.co/nkkNLk2dmQ"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2641] "First time I’ve seen emergency alerts used for public health purposes #COVID19 https://t.co/cdwhHvinQm"                                                                                                                                                                                                                                                                                                                                                                                                      
## [2642] "@SafaricomPLC At this age and time i expected safaricom to be out offering solutions to this thing covid 19\nStop kutunyanganya tu yet you don't give back to the community"                                                                                                                                                                                                                                                                                                                                  
## [2643] "@BethRigby Beth, I have desperately tried to get government/NHS leadership to look at a new test for Covid-19, proven in Lab 10 years research. Simple swab results in 5 mins. Please help connect me with right person. Another day lost, more deaths. Thank you. Paul Evans."                                                                                                                                                                                                                               
## [2644] "To continue to build and engage community, the Riversdale House Museum has transformed its preservation garden into a “Victory” Garden where our gardener, Amy Winkler, leaves bits of herbs for patrons to pick up and enjoy. \n\nHistory meets Health and Wellness and beats Covid 19! https://t.co/3cIIQ0mHH6"                                                                                                                                                                                           
## [2645] "NY hospital nurse: “Patients stream in with non-stop coughing, sweaty, fever &amp; fear in their eyes.\" I haven't slept because my mind won't shut off. I cried as I peeled off the PPE, sweaty w/ mask indentations. I cried the entire ride home.” #coronavirus  https://t.co/OMYpiRFi05"                                                                                                                                                                                                                
## [2646] "In the very same @nytimes article saying that the US is now number one in confirmed #coronavirus cases, this is a direct quote:\n\n\"the American medical system is unsurpassed and its public health system has a reputation as one of the finest in the world\". What?! <U+0001F914><U+0001F615><U+0001F926>"                                                                                                                                                                                               
## [2647] "#FromTheRight: 'Who's the sh*thole country now?': Journalist mocks US as COVID-19 infections rise | Reporting by @theblaze \n\n#MediaBias #MediaWatch #Coronavirus\n\nhttps://t.co/GvLQdbHXqj"                                                                                                                                                                                                                                                                                                                
## [2648] "@paulkrugman What's really strange is that neither climate change or COVID-19 have anything at all to do with politics. Politicizing them is an artificial overlay by people who are afraid that either or both of those things could cost them money. Which is inhumane, criminal and short-sighted."                                                                                                                                                                                                        
## [2649] "What if #indyref had gone differently... would Scotland be dealing with #coronavirus better as an independent country? \n\nNo agenda here, just interested in what people think..."                                                                                                                                                                                                                                                                                                                           
## [2650] "This is a fantastic resource created by fellow @bowdoinalumni #polarbear @deray <U+2764><U+FE0F> Thank you for all that you do!! #COVID2019 #FlattenTheCurve #WhileAtHome https://t.co/xgb5YPviuW"                                                                                                                                                                                                                                                                                                            
## [2651] "From everyone at IDS, a sincere thank you to first responders, medical workers, and all those working to fight COVID-19. We commend you for your tireless care and commitment during these difficult times.  \n#healthcareappreciation #covid19 https://t.co/A8N3x8kCTv"                                                                                                                                                                                                                                      
## [2652] "So what happens once isolated due to Covid19 in #Zambia? Do you get access to TV, Radio  or Phone to keep yourself preoccupied with something while adhering to the #COVID19 terms???  #ZedTwitter"                                                                                                                                                                                                                                                                                                           
## [2653] "Breaking #coronavirus\nItaly coronavirus deaths rise by 919, highest daily tally since... https://t.co/2PkQXNGy7P via @MailOnline"                                                                                                                                                                                                                                                                                                                                                                            
## [2654] "@anyway223 @LeeHolly81 @realDonaldTrump @WhiteHouse But people who didn’t know they had Covid-19 would have spread it anyways while they were at work, at the gym, and/or shopping. Doesn’t that lead to the media informing the American public about the virus as legitimate?"                                                                                                                                                                                                                            
## [2655] "Despite this covid-19 I still have to take the written test for my license tmrrw. The audacity <U+0001F612><U+0001F644>"                                                                                                                                                                                                                                                                                                                                                                                      
## [2656] "@KhalidHabash Let’s hope that we’ll see our country invests in such an important industry. Just imagine how much money Gilead will get if it manages to come up with a medicine or vaccine for covid-19."                                                                                                                                                                                                                                                                                                   
## [2657] "$XERS - Xeris Pharma cuts Gvoke copay amid Covid-19 https://t.co/Zfd448J1qn"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2658] "@drewgel_ @tribelaw Exactly what’s going on in Arizona. We’re not testing cause governor wants to keep numbers down to keep economy moving. \n\n#DollarsOverLives\n\nhttps://t.co/v198qVxZpV"                                                                                                                                                                                                                                                                                                               
## [2659] "WOW just sickening for profit healthcare at work. Ppl dying unnecessarily is BY DESIGN not an unfortunate by-product of our heartless #Epic fail healthcare system #facepalm #COVID19 #coronavirus it’s not #SocialismKills it’s #CapitalismKills https://t.co/XkgFZstT5g"                                                                                                                                                                                                                                  
## [2660] "@NTarnopolsky \n@moutet \nJust in case you missed Theo's call.\nIncredibly powerful\n#coronavirus https://t.co/7K4F3xXnOg"                                                                                                                                                                                                                                                                                                                                                                                    
## [2661] "Oh NDC COVID 19 team,is dis all you can do..... https://t.co/gQpbuOL4jf"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2662] "Remember when Trump said COVID-19 was under control? In what way is the most positive cases in the world under control?"                                                                                                                                                                                                                                                                                                                                                                                      
## [2663] "Number of Alachua County COVID-19 cases rises to 49; UF cases at 20 https://t.co/7u2gVocKUY via @TheAlligator"                                                                                                                                                                                                                                                                                                                                                                                                
## [2664] "I think the new most searched word on @Google will be #coronavirus” this year!"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2665] "*All Governors,*\n*Senators,*\n*Reps or*\n*Ministers etc who have contacted covid-19 should be treated in his or her State Hospitals, in order to enjoy the benefits of their GOOD GOVERNANCE.*"                                                                                                                                                                                                                                                                                                              
## [2666] "@kazweida I’m starting to believe common sense was the 1st casualty of #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2667] "Lawyer friends and others who have been looking for advice from the Employments Standards Branch on whether employers can temporarily lay off workers in British Columbia due to COVID-19, your search is over. https://t.co/CHLSdKSUmN @fortelawyer @Kirsten_Hume"                                                                                                                                                                                                                                           
## [2668] "I think #Covid_19 has shown us that congested urban living reliant on public transportation is not America’s future. Oh, and straws will be making a come back, just watch. #coronavirus #CoronavirusLockdown #CoronaVirusChallenge #COVID19 #COVIDIDIOTS"                                                                                                                                                                                                                                                   
## [2669] "I can’t wait for the day when no one ever has to hear the word #COVID19 AGAIN"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2670] "Just a reminder, we're still operating business as usual, just not face-to-face. We are still keeping Social Distance and Working Remotely, For Now | Hettler Insurance Agency... https://t.co/2IWbADTZRJ #getbettertogether #factsnotfear #covid19 #coronavirus #hettlerinsurancedotcom"                                                                                                                                                                                                                     
## [2671] "Join us on March 31st to learn how you can do your business as usual during #COVID19. We have a complete survival guide for this challenging time. https://t.co/jjasjfVCHm"                                                                                                                                                                                                                                                                                                                                   
## [2672] "Thank You <U+0001F49A> to all the frontline workers around the country <U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB> \n\nLets all play our part by #SocialDistanacing \n\n#ClapForOurCarers \n#FrontLineHeroes\n#ApplaudTheFrontLineWorkers \n#COVID2019\n@roinnslainte @DttasIrl https://t.co/60pAgyLGho"
## [2673] "The #childcare issue during the #COVID19NC pandemic is very tricky, especially for first responders and medical personnel. \n\n#ncpol #nchealth #nced #CoronavirusNC \nhttps://t.co/IFoom0KAj8"                                                                                                                                                                                                                                                                                                               
## [2674] "Thanks to @TheIABM for a great virtual conference this evening <U+0001F44F> lots of great speakers “How Coronavirus is impacting the media industry\" #Covid19 #mediaindustry #MediaTech #Media #OTT #SvOD #Content"                                                                                                                                                                                                                                                                                         
## [2675] ".@RepKenMarchant Please vote YES current COVID-19 package <U+2013> it extends the #MFP program, reimburses the time of community support staff during individuals' hospital stays &amp; allows disability providers to receive emergency small business loans!"                                                                                                                                                                                                                                               
## [2676] "Just in:\n\nHealth minister Zweli Mkhize reveals that the tests of the 28-year old woman who died this morning came back negative for coronavirus, meaning there is one fatality due to Covid-19 in SA. https://t.co/7RLkl39eOQ"                                                                                                                                                                                                                                                                              
## [2677] "And what about @DMcIntyreWWE, @Akam_WWE, @Rezar_WWE, @WWE_MandyRose, @Erik_WWE, @Ivar_WWE, etc.? It seems that #postponewrestlemania is most likely to avoid the #coronavirus. They decided to #StayHomeSaveLives. https://t.co/52qwYBXajB"                                                                                                                                                                                                                                                                   
## [2678] "My boyfriend's great aunt (in Italy) just passed away due to COVID-19. Although he didn't talk to her regularly, he says he'll always remember how she made the best panzerotti. If you can, please spare a thought for his family."                                                                                                                                                                                                                                                                          
## [2679] "<U+2066>@ClevelandMag<U+2069> asked me about how I’m transitioning into e-learning. Fellow teachers, can you relate? Article by: <U+2066>@DillStew<U+2069> #edchat #teachertoteacher @teacher2teacher #COVID19 #coronateacher  https://t.co/M39uq8BTPx"                                                                                                                                                                                                                                                      
## [2680] "So we had our GCSE group chat... anyone up for a lockdown group chat? Send me your snaps I’m hella bored #covid19 #coronavirus #lockdown"                                                                                                                                                                                                                                                                                                                                                                    
## [2681] "#IndiaFightsCorona Will we be able to break the Chain???  Enemy of the Nation, anyone defying #Lockdown21 . #COVID19 https://t.co/Rxf2H4GvmX"                                                                                                                                                                                                                                                                                                                                                                 
## [2682] "@TerrySerio Mentioning ad agencies from the 80s made me think of Siimon Reynolds and his 80s Grim Reaper AIDS ad.\n\nSo, I googled him &amp; turns out he thinks #ScottyFomMarketing's ad campaigns for coronavirus are pretty lame\n\nHas anyone failed upwards as hard as ScoMo?\nhttps://t.co/cEUdOKwEA0"                                                                                                                                                                                                  
## [2683] "The ‘Limerick COVID-19 Community Response’ will see a coordinated centre in place at the Limerick GAA headquarters at Castletroy. @LimerickCLG @LimerickCouncil @gardainfo\n@GardaTraffic\nhttps://t.co/ClftlLiWj3"                                                                                                                                                                                                                                                                                         
## [2684] "Sometimes I go over the tweets from very smart and well-recognized specialists in the field and I recall early in March some mocking and thinking that people are over reacting to #COVID19 and calling it “flu-like” with lower mortality than influenza."                                                                                                                                                                                                                                                 
## [2685] "What’s up, #Lebanon?  Well, there’s one-of-a-kind perfect storm <U+2014> A triple threat:\nCorruption is #endemic <U+0001F62B>; the financial crisis is now an #epidemic <U+0001F616>; and #coronavirus is #pandemic <U+0001F637>  #COVID19. We endure and we pray. @AUB_Lebanon @AUBMC_Official @AUBAlumni #social_distancing https://t.co/azLk7YezL2"                                                                                                                                                     
## [2686] "End of Jan, @realDonaldTrump closed all flights coming from China to slow the #COVID19 spread in the US.\n\nFeb 2nd, NYC Health Comm, Dr. Barbot says chances of people getting virus is low &amp; encourages NYers to go out &amp; ride bus/subway &amp; go to parade.\n\n#DemocratsLiePeopleDie https://t.co/G9WT5lWCWB"                                                                                                                                                                                    
## [2687] "To everyone pointing out how many USians die from other things to downplay the #COVID19 threat:\n\n1. Yes, we should do more to limit deaths from cars, guns, smoking, junk food, seasonal flu, etc.\n\n2. Those deaths don't grow *exponentially* from inaction. It's not the same. At all."                                                                                                                                                                                                                 
## [2688] "@ikaveri No matter how many of them have shook hands with @BorisJohnson, their is absolutely no panic. On the other hand, Indian authorities in Punjab quarantine around 40,000 residents from 20 villages following Covid-19 outbreak linked to just one man ‘Giani Jagdev Singh’. Fools"                                                                                                                                                                                                                  
## [2689] "Countless Americans will die because of @realDonaldTrump’s incompetence.\n\nTrump wants to erase the memory of him downplaying the #coronavirus. \n\nDon’t let him.\n\n#25theAmendmentNow https://t.co/nRQPvcnNno"                                                                                                                                                                                                                                                                                          
## [2690] "@greatbong https://t.co/MAVZYJGKHn\n\nPublished in TOI, different strokes for diff folks."                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2691] "Don't be a #COVIDIDIOT\n(Tho I've read it's probably thanks to our own covididiot, #rudygobert that US didn't have a sports crowd-related explosive #coronavirus outbreak the way the unfortunate #Italians did, so there's that<U+0001F644>) https://t.co/5ycbagI90t"                                                                                                                                                                                                                                        
## [2692] "@wikileaks #JulianAssange must be released NOW! COVID-19 targets people with weaker immune systems or preexisting medical conditions! Assange's immune system is already on the verge of collapse &amp; he has a CHRONIC LUNG CONDITION! \n#COVID2019\nhttps://t.co/ihcVZYvPs8"                                                                                                                                                                                                                               
## [2693] "And within this systemic deficiencies in #SDG-mandated #healthcare quality, lies the vast opportunity for #entrepreneurs to create impactful solutions against #COVID19 ...especially under #CoronaLockdown &amp; #Quarantine \n\nClick to read more: https://t.co/E5jzDD4M32"                                                                                                                                                                                                                                
## [2694] "Spain records 769 deaths in 24 hours to take their toll of fatalities to 4,858 #Coronavirus https://t.co/oSHfleMmiu https://t.co/Q1zqJQDBQq"                                                                                                                                                                                                                                                                                                                                                                  
## [2695] "WARZONE TOP 1 (FEAT RICKY - THE ONE) #MW @Activision @InfinityWard #coronavirus #TOP1 #COD #Warzone #Walkthrough\nhttps://t.co/UKj6n2MtOl"                                                                                                                                                                                                                                                                                                                                                                    
## [2696] "@laurenTarshis Your future book on COVID-19 is writing itself.  #historyunfolding"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2697] "Thank you #COVID19 \n#LockdownHouseParty https://t.co/LfeDQLAGlp"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2698] "#COVID19 shouldn't stop our children from learning. So, here's the chance to continue learning from your radio... https://t.co/hpk37erD5v"                                                                                                                                                                                                                                                                                                                                                                    
## [2699] "UK people just put the Great back into Great Britain. Quite incredile support for our AMAZING NHS STAFF. Proud to be British and thankful for all those who continue to risk their own lives to help us beat COVID-19. <U+0001F1EC><U+0001F1E7><U+0001F44F><U+0001F64F><U+0001F4AA> #stayhome #doyourbit #Noneofusareasstrongasallofus https://t.co/QuN7UdtCXo"                                                                                                                                               
## [2700] "I know a symptom of COVID-19 is shortness of breath, but I got big ass yitties that already make it difficult for me to breath and my anxiety telling me that I have COVID-19 isn’t helping with the whole breathing thing either."                                                                                                                                                                                                                                                                          
## [2701] "The #CoronaPandemic has shown the serious problems inherent in our economy. It’s hard to make ends meet normally and this situation is just making it worse.\n\nDemand that companies take action to protect workers from #COVID19! https://t.co/a12E7tJCMq"                                                                                                                                                                                                                                                 
## [2702] "Under-reporting #COVID<U+30FC>19 deaths is irresponsible and dangerous. Not testing people for the #coronavirus is also irresponsible/dangerous. This administration is lying to us! \n\nDoctors And Nurses Say We're Under Reporting COVID-19 Deaths In The US  https://t.co/HJsZUtUCzx"                                                                                                                                                                                                                     
## [2703] "@NotKennyRogers Chuck was exposed to COVID-19. The virus is now self -quarantined for 14 days."                                                                                                                                                                                                                                                                                                                                                                                                               
## [2704] "Talking to children about COVID 19 #edchat https://t.co/eHlWZXIN6z"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2705] "Bethesda Rehab Hospital in St. Paul is converted into the metro’s first COVID-19 crisis hospital. https://t.co/IMkRin5bqU"                                                                                                                                                                                                                                                                                                                                                                                   
## [2706] "@CDCgov  are there any safety measures for essential infrastructure workers who have gain access to home and  businesses of all kind in order to curve the spread or contraction of COVID-19?"                                                                                                                                                                                                                                                                                                                
## [2707] "damn sylvia has covid-19 everyone say goodbye :( https://t.co/VccAUYBLDD"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2708] "UPDATE: 92 confirmed cases on the Navajo reservation.\n\nWebpage updated interactive graph and map:\n\n(1) https://t.co/QzcGjJzPtX\n \n(2) https://t.co/A4HNnTTuSA https://t.co/ONBYY4QOmy"                                                                                                                                                                                                                                                                                                                   
## [2709] "Day 8 of being off work due to #COVID19..... \n\nThinking about doing a TikTok dance <U+0001F926><U+0001F3FC><U+200D>♀<U+FE0F>"                                                                                                                                                                                                                                                                                                                                                                              
## [2710] "So many teams playing their part to protect us all @newcastlehosps thanks @carolinedocNHS &amp; comms team, so much progress &amp; more ideas in progress <U+0001F44D><U+0001F3FD> #COVID19 https://t.co/xmj4mELsvl"                                                                                                                                                                                                                                                                                          
## [2711] "Whole @AlderHey family pitching in to join the battle against #COVID2019. #NHSheroes https://t.co/gTBfc20O08"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2712] "\"I believe it was a reckless decision to bring students back on campus at this time. It is unfortunate that President Falwell chose to not keep his word to us,\" Lynchburg Mayor Treney Tweedy says. https://t.co/64G99b9NPd @smartin_write #Coronavirus #JerryFalwellJr"                                                                                                                                                                                                                                   
## [2713] "I keep seeing gays posting heartfealt messages about the people affected by the COVID-19 then right after posting some humorous shit about the virus and saying they cant wait for this quarantine to be over so they can get fucked up. How is that even right?"                                                                                                                                                                                                                                             
## [2714] "@Michael_Corlee Please show managers my tweet - and tell them we think some companies are acting like ambulance chasers or vultures. The #COVID19 situation in schools is demanding a lot from leadership. Want to really help? Go volunteer at a local district to hand out meals."                                                                                                                                                                                                                          
## [2715] "All international passenger aircrafts to/from #India are suspended till 1830 hrs GMT April 14, 2020. Please DO NOT make any bookings for travel before checking for updates on travel restrictions to India. \n\n#coronavirus #COVID19 #coronavirusindia #CoronaVirusDE #CoronaVirusUpdate https://t.co/SRDieG3L5v"                                                                                                                                                                                           
## [2716] "You, a pleb: coronavirus\n\nMe, an intellectual: COVID-19 https://t.co/9kqiaX7UlQ"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2717] "Proud to work for Google. Google is committing $800M+ in new #COVID19 response efforts https://t.co/KMbN0X7eP5"                                                                                                                                                                                                                                                                                                                                                                                               
## [2718] "Latest updates on COVID-19 (Coronavirus) https://t.co/HlFrcxFOeL"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2719] "“The @Ravens and The Stephen and Renee Bisciotti Foundation have combined to donate $1 million to support four non-profit organizations in their efforts to combat the #COVID19 public health crisis.” https://t.co/6UU1oqBcWW #NFL https://t.co/P4JBUHIgl9"                                                                                                                                                                                                                                                
## [2720] "@The_PraveenArya Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                           
## [2721] "How does the Israeli-Egyptian siege of Gaza affect the fight against coronavirus. #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/0lNZN3d4m2"                                                                                                                                                                                                                                                                                                                                                       
## [2722] "Ah yeah, this random homosexual telling me to shut up because I am literally trying to encourage gay men not to hook up with random people off Grindr in the hopes of preventing the further spread of COVID-19. I am truly the worst!!!! https://t.co/QRHgbzJxWc"                                                                                                                                                                                                                                            
## [2723] "Someone please tell me #coronavirus was a just an #AprilFools prank."                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2724] "\"It is important that banks and supervisors are able to commit their full resources to respond to the impact of COVID-19,\" said the chair of the GHOS and governor of the Bank of France\n\n#baseliii #deferred #COVID19 \n\nhttps://t.co/c3itvdm9Fv"                                                                                                                                                                                                                                                       
## [2725] "@DigitalFawad \"How hackers are using #Coronavirus fears\"\nAny news on governments an bigpharma on this topic?"                                                                                                                                                                                                                                                                                                                                                                                              
## [2726] "Do not pay tithes and offerings to any pastor who cannot heal a #COVID-19 patient."                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2727] "Last year... around this time...we were so much hyped about #Endgame... This year...we are looking for #Avengers \nNever knew that #Thanos will come in form of #Coronavirus\n#CoronavirusOutbreak #AvengersEndgame  #FightAgainstCoronavirus"                                                                                                                                                                                                                                                                
## [2728] "It also takes into account the current trend in the spread of COVID-19 in Ghana since the suspension of the mass registration exercise on Saturday, 21st March 2020, following the service on the NIA of an interlocutory injunction application."                                                                                                                                                                                                                                                            
## [2729] "Check out these top 5 tips for securely working from home. #remotework #COVID19 https://t.co/KO5D2NTN2w"                                                                                                                                                                                                                                                                                                                                                                                                      
## [2730] "We are fighting two pandemics \nCovid 19 and Stupidity....... https://t.co/0cQscAJmVd"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2731] "@RudyGiuliani @RealCandaceO Do you need to get #COVID19 mayor in order to have a smidgen of empathy? Terrible comment on ur character if so. \n2nd point.. this is about curbing a domino effect that will impact every American directly if not taken deadly serious - so please rethink ur callousness \n#COVID2019"                                                                                                                                                                                        
## [2732] "Welp... My shorty’s mom and grandma have been hospitalized for pneumonia and covid-19..."                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2733] "re-testing the lows or even slightly lower.\n\nhttps://t.co/IV1eVllDfi\n\n#covid19 #health #coronavirusimpact\n#capitalpreservation #tradingplan #marketcorrection #paultudorjones #PTJ #marketwizard #marketopportunity"                                                                                                                                                                                                                                                                                     
## [2734] "@disclosetv What do you expect when the liberal MSM US media has lied and created false narratives about nearly EVERYTHING.  When they suddenly went hysteric about #COVID19, many didn't believe them because they had lost ALL credibility.  Terribly sad. https://t.co/RDGw7mt92j"                                                                                                                                                                                                                         
## [2735] "Where is The Great America? U.S. BANK MORTGAGE IS OFFERING FORBEARANCE TO THIER CUSTOMERS AS IF THATS HELPING, HOW WOULD A FAMILY COME UP WITH 6K in 90 DAYS ALL AT ONCE IF THEY BEEN OUT OF WORK. #USBANK #COVID19 #TRUMP"                                                                                                                                                                                                                                                                                   
## [2736] "Stay safe and healthy everyone #COVID19 #handwashing #SocialDistanacing"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2737] "I appriciate the measures taken by the government in this covid-19 crisis but when entire country is lockdown the street animals aren't, what if they are infected like street dogs, they sneeze out in surrounding. Can The measures be taken to take care of this thing? \n@mygovindia"                                                                                                                                                                                                                     
## [2738] "The 1.6 million migrant workers in the United States employed through temporary work visa programs form part of our communities and are at the front lines of the U.S. Covid-19 response.  They also lack many protections. @MigrationthtWks https://t.co/znDsxXTGlW"                                                                                                                                                                                                                                         
## [2739] "Appalled that the Ed dept hadn’t done something about teachers at higher risk of Covid-19, and yes, I really shouldn’t be finishing out the term.  Leaving work this afternoon, knowing I was (hopefully) going to greatly lower my chances of getting sick was *such* a weight"                                                                                                                                                                                                                            
## [2740] "This advocacy tries to enlighten the public about how to stay safe as the #covid19 pandemic continues to spread across the World.Nigeria is not left out...be safe, #stopthespread \n\nhttps://t.co/GNAuMvMMz6"                                                                                                                                                                                                                                                                                               
## [2741] "This is what #COVID19 has done to us...<U+0001F494> https://t.co/xIaqyacpRX"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2742] "Trump demonized China over COVID-19. This stoked concern that China would cut off hospital supply exports.\n\nEU has its own China worries, and applied export restrictions.\n\nNew customs data: Chinese PPE exports did not fall as much as feared.\n\nMy latest 1/\nhttps://t.co/hAR7h3w3rf"                                                                                                                                                                                                               
## [2743] "#LIVE : #Texas governor <U+2066>@GregAbbott_TX<U+2069> gives #coronavirus #update -- March 26, 2020\nhttps://t.co/GiyOZgli3q"                                                                                                                                                                                                                                                                                                                                                                                 
## [2744] "7 Scientifically Proven Benefits Of Gratitude That Will Motivate You To Give Thanks Year-Round https://t.co/zKSPaKNbHj\n\n#sales #salesleadership #salespeople #salesmotivation #salescoach #salestraining #positive #leadership #newnormal #podcast #motivation #covid19 #coronavirus https://t.co/zSR4enHGKn"                                                                                                                                                                                               
## [2745] "Here's what this dude said about R. Kelly: \n\n\"It’s covid -19, he ain’t gone catch it.. Let that jawn been covid -14 then he got a argument\""                                                                                                                                                                                                                                                                                                                                                            
## [2746] "Coronavirus: Disabled woman fears benefits could be stripped while she fights COVID-19 <U+2013> Well, they sanctioned my daughter for not attending a face-to-face appointment at the jobcentre AFTER her doc had told her to self-iso...Felixstowe JCP was open when  https://t.co/GaPPOxXYOq"                                                                                                                                                                                                               
## [2747] "@Klockitdown @kathygriffin @latimes @TheCDZ As an ICU nurse, I find your comment despicable but considering you voted for Trump I would expect nothing less.  I'd be very careful with your pronouncements COVID-19 is an equal opportunity it will come for you no matter who you are or who you voted for. GOD doesn't like ugly!!"                                                                                                                                                                         
## [2748] "To show how things change in the blink of an eye, Hong Kong and Italy had the highest life expectancies on Earth. #CoronaVirus sadly changed that in an instant. Life is fragile. We are learning that God still reigns supreme in the affairs of man!\n\n#FreeLeahSharibu #RenosNuggets"                                                                                                                                                                                                                     
## [2749] "EVERYBODY MATTERS #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2750] "Taiwan, Hong Kong, and Singapore: Success Stories in Fight Against COVID-19 https://t.co/9EtXe0Al9Y"                                                                                                                                                                                                                                                                                                                                                                                                          
## [2751] "Some #foreignmissions encourage their #citizens to leave #Bangladesh https://t.co/7sbye09KMq\n#Coronavirus #BritishHighCommission #UnitedStates #Britain #UnitedKingdom"                                                                                                                                                                                                                                                                                                                                      
## [2752] "Important reminder on #FundamentalRights and #borders amidst #COVID-19 border closures in #Europe by @coe and @EURightsAgency https://t.co/sfbSdSbCqm"                                                                                                                                                                                                                                                                                                                                                        
## [2753] "Can a Landlord Make You Disclose Coronavirus Status? https://t.co/9KSmDefnaS"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2754] "What a year this week has been. The KILI Carrier team loves medical professionals, and this week we want to bring attention to the incredible individuals working in hospitals every day amidst a global pandemic. Thank you. You're saving the world #COVID19 https://t.co/xhwskZsp5T"                                                                                                                                                                                                                       
## [2755] "Really interesting article on the @SkySportsNews app tonight. \n'Atalanta-Valencia clash a 'biological bomb'' The most #COVID2019 outbreak areas in Italy and Spain all connected to one football match. #StayHomeSaveLives #Social_Distancing #ProtectTheNHS\nhttps://t.co/9RUWrH1ZW0"                                                                                                                                                                                                                       
## [2756] "Coronavirus Tweets from UK authorities #COVID19 https://t.co/MV6C87mmbk"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2757] "I do not want to downplay any deaths from the covid-19 but someone needs to step up and look at the actual numbers.  The death rate in the US is currently at 1.5% of the known cases.  At this rate why are we driving the country crazy.  The flu did more and no one had a stay home"                                                                                                                                                                                                                      
## [2758] "A South Korean Covid-19 Czar Has Some Advice for Trump https://t.co/tTGtdJCwpB"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2759] "This Friday’s COVID-19 quarantine survival pack:\n- Game of Thrones <U+2705>\n- @beerdbrewing’s Dogs &amp; Boats<U+2705>\n- Bottle cap coaster <U+2705>\n<U+2022>\n<U+2022>\n<U+2022>\n\n#craftbeer #beer #beerstagram #instabeer #beerlover #beergeek #drinklocal #ipa… https://t.co/JhGTH2VaA2"                                                                                                                                                                                                          
## [2760] "How not to feel like a lousy parent during COVID-19 <U+0001F44F><U+0001F3FD><U+0001F44F><U+0001F3FD>  from @alysonschafer on @healthing_ca  https://t.co/tQja0OxQ5X"                                                                                                                                                                                                                                                                                                                                          
## [2761] "I applauded our @NHSuk Thankyou to all of you. You are the real heroes. \n@piersmorgan @itvnews @BBCNews #Applaudingnhs #NHS #COVID2019 #Spidermanapplaudsnhs https://t.co/Fw9xE4RXkK"                                                                                                                                                                                                                                                                                                                        
## [2762] "One of a huge series of tweets sharing clips of Movies you might enjoy whilst we’re all self-isolating.\n\nBEN HUR (1959)\n\n#staypositive #film #COVID_19uk #coronaUK #staypositive #coronavirus #coronavirus #Covid_19 #selfisolation <U+0001F3AC>\n\n https://t.co/07c6M1U1Mb"                                                                                                                                                                                                                            
## [2763] "Via hopGram: from BeerBusGuide \"Day two of lockdown and we've decided to up the strength of medication #covid19\" #hopGram @hop_gram https://t.co/O7e12Jt8Zf"                                                                                                                                                                                                                                                                                                                                                
## [2764] "Medscape: BREAKING: UK health secretary MattHancock also tests positive for #coronavirus along with Prime Minister BorisJohnson.  https://t.co/OQokWAyMcm https://t.co/k6cl9C8itP"                                                                                                                                                                                                                                                                                                                            
## [2765] "A sexual assault allegation against Joe Biden has ignited a firestorm of controversy https://t.co/RcHookxHMS #COVID19 #timstwitterlisteningparty #CoronaLockdown #AnimalCrossingNewHorizons #ImAwakeThisLateBecause #FridayMotivation #Qanon"                                                                                                                                                                                                                                                                 
## [2766] "#Coronavirus Update - #Plaquenil Shortages, #IVIG and #ibuprofen\n#Myositis #autoimmune #rheumatology #dermatology #Neurology \n\nhttps://t.co/jgKHLh9FzP https://t.co/P2cuqeJFmP"                                                                                                                                                                                                                                                                                                                            
## [2767] "Tesla Donates 500+ sets of PPE Masks &amp; Gowns To Denver Hospital.  Thank you <U+2066>@elonmusk<U+2069>!  https://t.co/4yNxEk8WOS"                                                                                                                                                                                                                                                                                                                                                                          
## [2768] "@bosswala Covid-19\n\nhttps://t.co/yDAQQpy6YG"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2769] "@NCDCgov @EpidAlert @drasatrust @nighealthwatch @FMICNigeria @Fmohnigeria @LSMOH @NOA_Nigeria @sydney_talker said he has shown some of the symptoms of #COVID19 and wants to be tested. Don't deny him please.\n\nTest him!"                                                                                                                                                                                                                                                                                  
## [2770] "Hey @CNN @MSNBC @FoxNews any of you care to even mention this ? The UK has DOWNGRADED COVID-19 and just not a peep in the American news media. Guess just blindly pushing the apocalypse narrative is better for ratings/clicks. https://t.co/b9LoeIe7qq"                                                                                                                                                                                                                                                     
## [2771] "Silver lining... #chicago #COVID19 https://t.co/X1WwwvVIe6"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2772] "#bbcnews #C4News Sir James Dyson offering to make ventilators to help with ICU treatment for #coronavirusuk #covid19UK in the NHS is like Elon Musk offering to design a submarine to help the NHS deal with #coronavirus"                                                                                                                                                                                                                                                                                    
## [2773] "PAUSE FOR APPLAUSE <U+0001F44F>Show you care TONIGHT at 8pm &amp; give a big round of applause for the amazing work of our Frontline workers https://t.co/YDCAgkT5RO\n#Covid19 #CoronavirusIreland #ApplauseForMedicalWorkers #ClapForOurCarers"                                                                                                                                                                                                                                                              
## [2774] "The next calamity <U+2013> Covid-19 could devastate poor countries https://t.co/DKdl6z7cVC"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2775] "A letter to the UK from Italy: this is what we know about your future\n#coronavirus\n#CoronaLockdown\n#COVID19\nhttps://t.co/u58k3ExzkJ"                                                                                                                                                                                                                                                                                                                                                                      
## [2776] "COVID-19: Enugu govt closes all borders, markets as 2 cases confirmed - https://t.co/hFtBKMw6sH"                                                                                                                                                                                                                                                                                                                                                                                                              
## [2777] "AILA Asylum Committee vice chair  Lindsay Harris’ new post on Think Immigration describes the recent actions by the administration which will further harm asylum seekers amid the COVID-19 crisis, and urges action now https://t.co/eKLmlGx0oI\n\n@AILANational @Prof_LMHarris #COVID19"                                                                                                                                                                                                                   
## [2778] "Davido's fiancee chioma tested positive for  #COVID19  #StayAtHomeAndStaySafe https://t.co/4H2ze4qVAf"                                                                                                                                                                                                                                                                                                                                                                                                        
## [2779] "The #wellbeing of our students and staff is still the number one priority for all of us @DLDcollege during this #coronavirus crisis. Please continue to #BeKindAndStaySafe <U+2764><U+FE0F>@GoodSchoolsUK @BSAboarding @Alpha_PlusGroup @isaschools https://t.co/hD3vOJnVyJ"                                                                                                                                                                                                                                  
## [2780] "Today @GovEvers signed an Emergency Order that, among other things, laxes scope of practice regulations on physician assistants in the state. \n\nRead why PAs were calling for the emergency action to help respond to COVID-19: https://t.co/lGGu1rQhSe"                                                                                                                                                                                                                                                    
## [2781] "Respiratory therapists go to school for this. A nurse can’t go face to face with a covid-19 patient and stick a tube down their throat. Unless they hire more RTs, more risks will arise by not having proper care for the employees."                                                                                                                                                                                                                                                                       
## [2782] "Change out of scrubs at work. Change shoes before I get in the car. When I get home, scrubs and shoes go in garage. Scrubs go into a tub with disinfectant where pre-soak prior to washing machine. Coffee mug and food containers go in dishwasher immediately. #COVID19 #NurseTwitter https://t.co/Q9DfEfHvzm"                                                                                                                                                                                              
## [2783] "Iowa announces 56 new COVID-19 cases https://t.co/X6zUAeqlwH"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2784] "Xencor, Vir partner on #COVID19 antibodies research https://t.co/nupL1XdfAZ"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2785] "#UAlberta is here for Edmonton and Alberta. The U of A provided housing for Fort McMurray when they needed it, and is providing help during the #COVID19 pandemic. #abpse https://t.co/DAb4n5enT3"                                                                                                                                                                                                                                                                                                            
## [2786] "We remain unwavering in our mission to improve the lives of individuals living with epilepsy. We want to assure the epilepsy community that NeuroPace will continue to work diligently to support health care providers and those living with the RNS System. https://t.co/qBVaFasfxP"                                                                                                                                                                                                                        
## [2787] "Covit 19 is really starting to piss me off! Not the music, man...\n#coronavirus #COVID19 #Rammstein #TillLindemann https://t.co/jQLOSMoLlG"                                                                                                                                                                                                                                                                                                                                                                   
## [2788] "Rumour &amp; speculation can fuel anxiety.<U+00A0>Having access to quality, reliable information about the virus can help you<U+00A0>feel<U+00A0>more in control.<U+00A0>Websites like NHS https://t.co/vWnT6FIZuZ &amp; https://t.co/ZQSwnWicak https://t.co/lbFsklt3r4 are the most accurate and updated daily #covid_19uk https://t.co/8rFAo1JeHn"                                                                                                                                                         
## [2789] "Haha<U+0001F602> what<U+0001F647> if we<U+0001F46B>... violated<U+0001F6AB>  COVID-19<U+0001F489><U+0001F9EC> social distancing<U+0001F46F>, lockdown<U+0001F512>, and quarantine<U+0001F517> procedures?  <U+0001F920><U+0001F60E>Haha just kidding... <U+0001F60B><U+0001F60B><U+0001F92A>\n\nUnless? <U+0001F633><U+0001F633><U+0001F495><U+2763><U+FE0F><U+0001F498>"                                                                                                                                     
## [2790] "Assalamualaikum. So due to covid 19, my team is doing 1F1H campaign to collect the donations to buy the handcream for the fronliners. Those who want to donate, only RM41/tube. Let's help the frontliners! https://t.co/y2S9kfeHTb"                                                                                                                                                                                                                                                                          
## [2791] "@bigricanman I've heard rumors people are putting down their animals because they can get covid-19, could you help me get the word out for people to stop it. If dogs and cats have had their shots, feline corona virus is one of them, for both dogs and cats. I have few followers. https://t.co/lOCDQnkC2F"                                                                                                                                                                                               
## [2792] "@WAPFLondon @cabinetofficeuk @MattHancock @CabinetOffice Clearly based solely on mortality rates, but also note re-classification means \"cases of COVID-19 are no longer managed by HCID treatment centres only.\" Because there aren't enough of those... If you get sick do make sure you let the doc you'll be fine without a ventilator."                                                                                                                                                                
## [2793] "Team Cohesio is here to help and support you and your team during this challenging time.\n\n#CohesioGroup #COVID19 https://t.co/AIIkxDa96Y"                                                                                                                                                                                                                                                                                                                                                                   
## [2794] "Amid #COVID<U+30FC>19 #lockdown, people face hurdle crossing #AndhraPradesh-#Telangana border https://www.aninews.inundefined https://t.co/cGATq0YS8P"                                                                                                                                                                                                                                                                                                                                                        
## [2795] "A recent @TheEconomist / @YouGov poll shows that 46% of U.S. voters expect the current situation with the #coronavirus #outbreak will go on for several months. See what other voters thoughts are on the #pandemic in today's @lunchtimepol: https://t.co/hzDn0bubI7 https://t.co/h1mMrHQP2E"                                                                                                                                                                                                                
## [2796] "it provides to small business owners- https://t.co/6r9UfFKkMY"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2797] "COVID-19: Licensing: Frequently Asked Questions https://t.co/BWpwhochXG"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2798] "#StopCoronaVirus\nBe informed\n\nPrevention is better than cure. Stay clean and healthy.\n#Burundi\n#Covid_19 \n#COVID19 https://t.co/Cj3akSpOnw"                                                                                                                                                                                                                                                                                                                                                             
## [2799] "@ngkhalela Please what is the latest from the rivers state governor on COVID 19 as we rely 92.3 for information"                                                                                                                                                                                                                                                                                                                                                                                              
## [2800] "Governor Ige announces new developments in how the state is trying to limit COVID-19 from spreading\nhttps://t.co/dzYNzmyDdn Want The Answers To Stop Corona,Many Who Carry Corona Are Eviharette smokers Blowing their smoke n germs in the Air n You don’t wanna Confront n You gotta."                                                                                                                                                                                                                    
## [2801] "@mdubowitz Criminal regime has been looting Iran for forty-one years!\n#COVIDSanctionsLie #IslamicRepublicVirus #KhameneiVirus #COVID2019"                                                                                                                                                                                                                                                                                                                                                                    
## [2802] "@chrissyfarr Read this article @ https://t.co/Df1jeNKnEl I think it will help you. #StayHome #stuckathome #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                         
## [2803] "@gabrieloguda Seems to me like the Police are actually seeing the spread of Corona instead of ensuring a curfew to curb Covid-19"                                                                                                                                                                                                                                                                                                                                                                             
## [2804] "Morning world :) this video (https://t.co/C5TpLGBNcR) is just brilliant :) **Note** Don't listen round kids! lol #CoronaLockdown #COVID19 #CoronaVirus"                                                                                                                                                                                                                                                                                                                                                       
## [2805] "On a day when the number of cases crossed 500,000 Italy's tally increased past the 80,000 mark\n\nItaly progression\nMarch 26: 80,539 cases\nMarch 20:  47,021 cases\nMarch 14:  21,157 cases\nMarch 8:     7,375 cases\nMarch 2:   2,036 cases\nFebruary 25: 323 cases\n\n#CoronaVirus #Italy"                                                                                                                                                                                                               
## [2806] "@w_terrence OK. Listen here MR. WILLIAMS. First, the reason why china came to eat bats, is because they didn't have enough food to eat back in the days. So it's a culture now. And i'm fine with covid-19 being called the chinese virus because you're right. It did come from china"                                                                                                                                                                                                                       
## [2807] "To all members of @BAPS1953 Start a conversation about your experience of #COVID19 here https://t.co/T9PT3fhHbR #WereInThisTogether #SharedFacts #datacollection"                                                                                                                                                                                                                                                                                                                                             
## [2808] "Everyone moaning that the football season is over.  Just remember this you have a chance to play again in the new season others that have lost their lives to Coronavirus don’t #coronavirus #football #anotherchance"                                                                                                                                                                                                                                                                                       
## [2809] "8 crew members on Air New Zealand test COVID-19 positive https://t.co/SsMezRvfMm https://t.co/HrFUDjZ2N2"                                                                                                                                                                                                                                                                                                                                                                                                     
## [2810] "@nistula @OlgaTellis I grew up watching my uncle giving turmeric water to chicks during bird flu attack. Only thing which saved his lot. Till more scientific solutions emerge for #Coronavirus , a good habit to continue &amp; share."                                                                                                                                                                                                                                                                      
## [2811] "PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! - YouTube https://t.co/qD7TJ2DCbV"                                                                                                                                                                                                                                                                                                                                                                                                         
## [2812] "If 2020 was a tats \n\n#COVID19 \n#lockdown \n#21daysLockdownSA https://t.co/gmdX5X1Yac"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2813] "Really strange times we are living right now. It tends to shed the bullshit in our lives and leave the truth of who we are and what we feel. Take care of each other.\n#covid_19 #2020 #humanity @ Louisville, Kentucky https://t.co/s6H9lcA6Of"                                                                                                                                                                                                                                                              
## [2814] "NHS clap <U+0001F44F> so lovely. So proud to be part of such a phenomenal organisation. #nhs #nhsheroes #covid_19 #thankyou @ Bristol, United Kingdom https://t.co/ARrlK4gyCo"                                                                                                                                                                                                                                                                                                                                
## [2815] "A message from Mobile, Alabama about #COVID19 and #ADOS https://t.co/ADDzkMF1R3"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2816] "Lost all respect for #DrBirx now #Trump partisan.She just 1)ragged on NY #healthcare workers begging for supplies &amp; 2)said since NY hasn't used all its ventilators yet all is good. Maybe out silk dresses/scarves go see #Elmhurst &amp; #mtsinai (nurses in Hefty bags) NYC  #coronavirus"                                                                                                                                                                                                             
## [2817] "The Barn Theatre (@theBarnTheatre) is at risk of closure but is doing some amazing work in light of the COVID-19 crisis, including currently livestreaming a performance of Henry V online! Donate to the organisation here: https://t.co/rOJ1ZNu8wN #WorldTheatreDay #cirencester"                                                                                                                                                                                                                           
## [2818] "Every day. Every day until this is over...#hunkerdown. #StayHome #Coronavirus https://t.co/jcOQJbQw2i"                                                                                                                                                                                                                                                                                                                                                                                                        
## [2819] "My COVID-19 journey so far  https://t.co/PtOlyMRDs0"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2820] "China seems to have won its war against the #coronavirus . Amazingly, the total number of known active cases has already collapsed by 94% from a peak of ~58,000 recorded on Feb 17. Yesterday there were just 3460 cases left. https://t.co/IRngUBDmGS"                                                                                                                                                                                                                                                      
## [2821] "I wish people were shouting USA USA USA not because the US tops the #coronavirus list or the #MassIncarceration list but because we finally joined the rest of the world and adopted #MedicareForAll https://t.co/PWPH9HV7Mn"                                                                                                                                                                                                                                                                                 
## [2822] "Texas Roadhouse CEO and founder Kent Taylor will give up his pay for the rest of the year so that the money can go to “front-line workers” amid an industry crunch due to restrictions aimed at slowing the spread of COVID-19 #smallbu…https://t.co/j4HbjvmBWW https://t.co/JzUKWiDoHO"                                                                                                                                                                                                                   
## [2823] "\"I know my health conditions make contracting #COVID19 extremely dangerous for me, but I must work to pay the bills...Our country has forgotten about people like me. Or worse, they know we exist and choose to ignore us.\" -Christine Reynolds, @MissouriPPC #PoorPeoplesCampaign"                                                                                                                                                                                                                        
## [2824] "@CFRAOttawa what a weird picture to use for your article in 2020. Showcasing the #blackberry Z10 &amp; Q10 from 2013 featuring the defunct BB10? Will a story about computers feature a commodore 64? It did catch my attention so maybe it was successful!\n\nhttps://t.co/ZODXdCIdzq"                                                                                                                                                                                                                       
## [2825] "Complex Event Analysis on latest NEWS: \n20200327 0901 PST \nTop News Focus : \n(coronavirus,covid-19,virus), (china,coronavirus,trump), (coronavirus,post-abc,trump)\nhttps://t.co/zZJa98cAj3"                                                                                                                                                                                                                                                                                                               
## [2826] "I don't fully understand @Amazon's #Coronavirus shipping prioritization. An ammo box (waterproof storage for junk in my jeep) will be here in two days, but my floss won't arrive for over a month... #merikuh"                                                                                                                                                                                                                                                                                               
## [2827] "@tanamongeau freshly self employed mostly out of work bc of COVID-19 here so I get nothing from the British government during this time. No holiday pay and still awaiting my universal credit :(\n£AndraLeijon\nily"                                                                                                                                                                                                                                                                                        
## [2828] "@KTHopkins OmG you stupid women you are just trying to incite trouble and undermine the gov police Joe public  next ot will be fore service then you will turn on the NHS  just shut it you should promote #StayHomeSaveLives #StayAtHomeAndStaySafe #COVID19 or so you just think there no need"                                                                                                                                                                                                             
## [2829] "#USA #LosAngeles #Coronavirus\n\nA US Navy hospital ship has arrived in the metropolis of Los Angeles.  The floating hospital \"USNS Mercy\" with its 1000 sick beds moored at the port of Los Angeles on Friday.  Coronavirus patients should not be treated on the 272 meter long ship."                                                                                                                                                                                                                    
## [2830] "Invited Commentary: Neurologist on the frontline feels solidarity from Barcelonians - Neurology Blogs https://t.co/dxw2yQmSiv"                                                                                                                                                                                                                                                                                                                                                                                
## [2831] ".@DrRoyHerbstYale will co-moderate a #LungCancer town hall to support oncologists during the current #COVID19 pandemic. @Annechiangmd and Dr. KurtSchalper will join as panelists. @SmilowCancer @YaleMed @YNHH For more info: https://t.co/Y6UWhx4hqc https://t.co/1A2v7V3wTz"                                                                                                                                                                                                                               
## [2832] "@KTRTRS\nGood Morning Sir,\nThis year almost all ULBs Property Tax collection is effected due to Elections, Pattana Pragathi and now Covid-19.\nTo pay salaries, cc charges from general fund becomes difficult fo the upcoming months. 1/n.."                                                                                                                                                                                                                                                                
## [2833] "This is bad as #coronavirus. animal behaves better than this. https://t.co/FRoOu80EML"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2834] "Is there any other party in Jamaica to vote for ??? #COVID2019 #jlp https://t.co/axnDZlzPws"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2835] "Buhari Commends Nigerians For ‘Unity In Fighting COVID-19’ https://t.co/6GViVLp2xT https://t.co/PA5ikFgQwj"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2836] "Many older people are waking up today to #COVID19 'cocooning'\nWe have some information and advice here https://t.co/HcH2PMmHNx\n\nIf you know an older person who is not online please call them - numbers for helplines here <U+0001F447> https://t.co/K2JcsVzLJc"                                                                                                                                                                                                                                          
## [2837] "The Rich staying rich. Our fault for buying his products. The billionaire (worth $4.5 billion) Houston Rockets owner Tilman Fertitta has put 40,000 people out of work. Fertitta’s Landry Inc. restaurants aand he also owns a casino.  @RapSheet @espn @NBA #coronavirus #BreakingNews"                                                                                                                                                                                                                     
## [2838] "How will the #coronavirus crisis shape the food system if we do nothing? https://t.co/7RPZAqj1TE"                                                                                                                                                                                                                                                                                                                                                                                                             
## [2839] "Blowing bubbles to help pass the time and yes my head almost hits this roof<U+0001F633> #blowingbubbles #childhoodactivity #passingthetime #tallpeopleproblems #coronavirus #home https://t.co/CnaWg0WIbK"                                                                                                                                                                                                                                                                                                    
## [2840] "This past Sunday, Kyle channeled his inner-Jim Bakker and became a televangelist. We talk about that on this episode...\n\niTunes: https://t.co/eYotFxzV06\nSpotify: https://t.co/bM6x5l1wvG\n@podomatic: https://t.co/1YAoZLfUM1\n#PODCASTINGCOVID  #Coronavirus #onlinechurch https://t.co/UlxkkllCVU"                                                                                                                                                                                                      
## [2841] "We've three hours to get the cans in!  #CoronaLockdown #IsolationLife #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2842] "NYC nurse died from the Covid-19 and he looked young.  <U+0001F625>"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2843] "@cspan @RepThomasMassie That pork filled bill is an affront. Congress could craft a simple bill dealing solely with COVID-19 relief, but are choosing not to. The House gave itself a raise &amp; millions to NPR, &amp;  Kennedy Center for the Performing Arts. The money should be for survival essentials not bling"                                                                                                                                                                                      
## [2844] "Trump orders GM to start ventilator production for COVID-19 amid contract dispute https://t.co/hbse45yCn2 #TechNews"                                                                                                                                                                                                                                                                                                                                                                                          
## [2845] "The state income tax filing and payment deadline was extended to July 15 due to #COVID19. Please contact \n@MassRevenue for questions and read more here: https://t.co/rOS9NEYsmy https://t.co/gARnQ3vxys"                                                                                                                                                                                                                                                                                                    
## [2846] "Ethiopia gov't in western and southern Oromiya!To prevent the spread of corona virus information very crucial .\nBlocking information at these time. It's violation of human right .\n# Reconnect the West &amp; southern \n# COVID 19\n# ETHIOPIA"                                                                                                                                                                                                                                                           
## [2847] "COVID-19 Update on Road Defect Repairs (potholes) https://t.co/D2QDiiPWqE"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2848] "This is the first useful video I have seen about COVID-19. Help yourself, protect your family, educate yourself, and avoid the mass hysteria and hyperbole: https://t.co/Qc0QgADzdA"                                                                                                                                                                                                                                                                                                                          
## [2849] "@GabrielMacht @realDonaldTrump Believe me, covid-19 isn't a joke. In my town in Lombardy, Italy, we have been closed in our houses for one month and things aren't getting better. Streets are empty, no noises, only the sirens of the ambulance day and night. Hundreds people are dying every day. It's a nightmare."                                                                                                                                                                                      
## [2850] "Onbehalf of my self  and family I’m donating an undisclose amount collectible via FG for the fight against COVID -19... Thank you..<U+0001F601><U+0001F601><U+0001F601>..."                                                                                                                                                                                                                                                                                                                                  
## [2851] "With the order that all bars and restaurants close in-house service to combat the coronavirus outbreak, we’ve gathered a list of restaurants offering various takeout and delivery options so you can continue to support your favorite restaurants.\n\nhttps://t.co/8DQPsxv4hv https://t.co/aCSf0B8NyZ"                                                                                                                                                                                                     
## [2852] "Germany Closes Border to Europeans, But Migrants Still Allowed  In.  #Covid19 #coronavirus https://t.co/1YLGEBpn2r"                                                                                                                                                                                                                                                                                                                                                                                           
## [2853] "This Covid 19 shit got me soooo paranoid <U+0001F62B><U+0001F62B><U+0001F62B> every time I cough I feel like praying <U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE> God pls let them find a cure pls <U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE> y’all be safe and careful!"                                                                                                                                                                                                  
## [2854] "@GavinNewsom \nIt would be nice to give us a specific area of people who are infected with Covid-19 and not just the county."                                                                                                                                                                                                                                                                                                                                                                                 
## [2855] "I'm trying to make lemonade out of the big fat bitter lemon that is COVID-19. Here, I share my strategies, and a suggestion for you if you find yourself with time on your hands during the coronavirus quarantine. How to Make Lemonade  https://t.co/9XTDCJYCFE"                                                                                                                                                                                                                                            
## [2856] "US now has the world's most confirmed #COVID-19 cases with 82,404 https://t.co/yEGIGiwC4S https://t.co/s2m4pmbw1J"                                                                                                                                                                                                                                                                                                                                                                                            
## [2857] "https://t.co/lCSnzfu7oz \nGood Night World <U+0001F30D>\nBaby with a good Attitude &amp; Energy <U+2795><U+2795><U+2795> we will go out and fight the Coronavirus (COVID-19) <U+0001F621>\nSweet Dreams Baby <U+0001F634><U+0001F634><U+0001F634>\nSTAYIN' ALIVE\n(Bee Gees)\n#music <U+0001F3B5><U+0001F3B6><U+0001F3B6>\nSending  LOVE <U+0001F496><U+0001F496><U+0001F496> from Tenerife Canary <U+0001F618><U+0001F618><U+0001F618>"                                                                      
## [2858] "Atypical Illness Levels\nhttps://t.co/9qN1iova8e\n#StayAtHome #COVID19 #Coronavirus #Virus #FlattenTheCurve #VirusSpread #Epidemic #SocialDistancing #Pandemic @Kinsa"                                                                                                                                                                                                                                                                                                                                        
## [2859] "Chancellor announces support scheme for self-employed \n#COVID2019 #selfemployed #isolation #Government\nhttps://t.co/wAzSCOHeqQ"                                                                                                                                                                                                                                                                                                                                                                             
## [2860] "Our generation.\n8th class me: #earthquake\n10th class me: #war_threads\nCollege me: #flood\nUniversity me:: #Dubble_sawari_bnd\nJob: #coronavirus \nSalary shadi k waqat dajal ajaega<U+0001F637><U+0001F611><U+0001F621>\n\n@umairbhatti301 \n\n#CoronaLockdown \n#StayHomeSaveLives \n#coronavirusinpakistan"                                                                                                                                                                                              
## [2861] "Live update #COVID19 Zimbabwe on lock down for 21 days from 30 March 2020. #Covid19zimlockdown #COVID19zimbabwe #COVID19 #Zimbabwe #Covid19Zim https://t.co/f9NNJMi0CO"                                                                                                                                                                                                                                                                                                                                       
## [2862] "Idle thought, what if Trumps campaign understand that if they reopen things it will cause a resurgence in #COVID19 cases and they actually calculate that because they see his approval numbers going up now and they think it's an October surprise they control @PodSaveAmerica <U+0001F440><U+0001F914>"                                                                                                                                                                                                   
## [2863] "@Razvan05280230 You'll need to contact our live support team <U+2013> due to the recent global health crisis related to COVID-19, we're operating with limited assistance."                                                                                                                                                                                                                                                                                                                                   
## [2864] "So with the 600 a week on unemployment plus the 1200, a family of 4 is getting a lil over 10,000 in 4 months.\n#ThankYouTrump #trumpbucks @POTUS #COVID2019 #StimulusPlan #stimulusbill #Trump2020 #MAGA"                                                                                                                                                                                                                                                                                                     
## [2865] "#Actors, #Creative #Talent in #Europe #Brace for New #Rules on Set Post-#Coronavirus\nhttps://t.co/HweCaSfEKB https://t.co/YvnAFn26Cz"                                                                                                                                                                                                                                                                                                                                                                        
## [2866] "@ToolstationUK our local hospital (Hairmyres East Kilbride) in desperate need of the following. Could you donate them? #COVID19 @NHSuk https://t.co/MCi5WfJhxK"                                                                                                                                                                                                                                                                                                                                               
## [2867] "Countries with stability &amp; prosperity were unable to fight #Coronavirus, how would it be with #Yemen? The country exhausted by a 5-year siege &amp; aggression?\nThe intl community should take its responsibility!! #5YearsOfWarOnYemen https://t.co/Jtg0ZGDv06"                                                                                                                                                                                                                                         
## [2868] "#Breaking COVID 19 brings back USD - Public can now pay for goods and services in USD says RBZ.\n@bbmhlanga \n@therealprincea \n@NewsDayZimbabwe https://t.co/IVqcDvI7Gs"                                                                                                                                                                                                                                                                                                                                     
## [2869] "Major heart sink. Prayers .@realDonaldTrump are you doing the #Best you can? #COVID2019 #NewYork #America #GodMorningFriday #Italy https://t.co/4oXKy1qwIg"                                                                                                                                                                                                                                                                                                                                                   
## [2870] "STAFF MORALE @ACOSVO is hosting a FREE Zoom call TOMORROW at 10am facilitated by Joette from @AnimateConsults to help you keep staff morale high throughout this difficult period. Reserve your place on here: https://t.co/wGu5jSwnM8\n#COVID-19 #mentalhealthmatters"                                                                                                                                                                                                                                       
## [2871] "A special message of thanks to all those working in the NHS from former doctor @amateuradam <U+0001F3E5><U+0001F44F>\n\n#clapforourcarers #clapforNHS #coronavirus #Covid19 @BBCWorldatOne https://t.co/fCNk5YJwQT"                                                                                                                                                                                                                                                                                           
## [2872] "We are now entering week 3 where Europe is the epicentre of the Coronavirus. These front pages will certainly be remembered: \n\nhttps://t.co/3VFX43Wj59"                                                                                                                                                                                                                                                                                                                                                     
## [2873] "The reality is @realDonaldTrump is a whiny little bitch who has no authority in this situation. He has to do what the virus dictates to him. It doesn’t matter how he spins it. People will see the dead piled up. You can’t spin a plague on your house. #coronavirus https://t.co/pKRn9ex1WD"                                                                                                                                                                                                             
## [2874] "What does it mean for someone to stay home when their lives are at greater risk being at home vs exposing themselves to a virus? \n\nCreate safe spaces for victims of domestic abuse. \n\nhttps://t.co/j2zwVhGUzS\n\n#violenceagainstwomen #DomesticViolence #COVIDActNow #COVID19 https://t.co/D5MdFbFfcR"                                                                                                                                                                                                  
## [2875] "Hello, my dear friends.\n\nAt this critical moment when Uganda is facing the COVID-19 epidemic, I sincerely appeal to you to respond to the Ugandan government's call to stay at home, wash your hands frequently, avoid going to crowded places, and do a good job of self-protection."                                                                                                                                                                                                                      
## [2876] "Its easier to test positive for Covid-19 dissapear in South Africa than in China. The Chinese government knows who you are, where you are and what you are saying  to your friends. #CoronavirusSouthAfrica"                                                                                                                                                                                                                                                                                                  
## [2877] "Bill and Hillary Clinton Send Pizza to Hospital Staffs in New York https://t.co/x1syOhbj5r"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [2878] "How much this Covid-19 has made me appreciate the things that I had taken for granted all my life! Going out, or even  just meeting up with a couple of friends for a drink, seem like luxuries now. Actually, having a drink alone seems like a bit of a luxury now because... (contd)"                                                                                                                                                                                                                      
## [2879] "@MeghanMcCain Hey @MeghanMcCain, could you include the #EverydayHeros who pick up the trash &amp; recycling in your list next time? They are handling waste from homes with #coronavirus. Thx! #CoronavirusOutbreak @RepublicService @RumpkeNews @BetteMidler @TonyDanza @RichardShermanF @cindymccain"                                                                                                                                                                                                       
## [2880] "2020 is like an old Computer:\nFull of old fashioned thoughts and a virus. We don’t want both <U+0001F44D><U+0001F3FB>#COVID19 #SayNoToRacism @DiePARTEI  #StayHome"                                                                                                                                                                                                                                                                                                                                         
## [2881] "BCHL COVID-19 Update (March 27) <U+2013> Now What ???    https://t.co/rR9gCGmKF4 https://t.co/1l005sJIyX"                                                                                                                                                                                                                                                                                                                                                                                                     
## [2882] "For the sake of humanity can you eat regular foods only.\n\n#ChineseVirus19\n#COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2883] "Extremely important. \nHow to distinguish between Covid-19, flu and cold. \nPlease share widely. https://t.co/c7MZT6Fh7u"                                                                                                                                                                                                                                                                                                                                                                                     
## [2884] "Yeah sex is cool but have u ever jumped into ur significant others arms at max speed after not seeing them for 6 weeks? Yeah me neither thank u COVID-19 me and @KratzSean72 really appreciate you atm"                                                                                                                                                                                                                                                                                                       
## [2885] "25 million for the arts when Americans are losing jobs right &amp; left. Businesses are closing!!!!  #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                            
## [2886] "Nurses are not getting the protections they desperately need to fight #COVID19. @NationalNurses is demanding Congress act now. Add your name:  https://t.co/JZMxXs1bBB"                                                                                                                                                                                                                                                                                                                                       
## [2887] "Boy goes to urgent care clinic with covid-19, is turned away because of no insurance and told to go to a public hospital.  He died.  https://t.co/41FWvFWGIP"                                                                                                                                                                                                                                                                                                                                                 
## [2888] "COVID 19 Wireless Emergency Alert https://t.co/Mw8X3PyR59"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2889] "My mom literally texted me checking in just to warn me about a lockdown and say that trump is going to explain why covid-19 is happening. “changes are coming”"                                                                                                                                                                                                                                                                                                                                             
## [2890] "Thanks to @realDonaldTrump's dismantling of government infrastructure and dismissal of science, I am gravely worried about my ER doc sister: #coronavirus Doctors Are Writing Their Wills https://t.co/lqAM1jalXU"                                                                                                                                                                                                                                                                                            
## [2891] "While all of you out there are worried about #COVID19 , I have rolled my ankle once again and now I wait patiently for death"                                                                                                                                                                                                                                                                                                                                                                                 
## [2892] "When you need to get back to the herd to get some of that sweet sweet immunity #COVID19 https://t.co/o4IBlZv11O"                                                                                                                                                                                                                                                                                                                                                                                              
## [2893] "My mum and her neighbors out clapping for #HealthCareWorkers because im a nurse makes me all emosh <U+0001F49E><U+0001F970> #nurselife #covid19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                 
## [2894] "Instacart says they’ll give you 2 weeks pay in case of a COVID-19 diagnosis, but offers no protection against it and no hazard pay. They just made it so if people wanna be jerks and hit our ratings because TP is out, that won’t affect our access to “the good batches.”"                                                                                                                                                                                                                             
## [2895] "Things to do inside with your kids #COVID19 https://t.co/aymp91JTBh"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2896] "Indianapolis 500 postponed until August because of COVID-19\nhttps://t.co/4XDDFNsww6"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2897] "Noone:\nLiterally noone:\n12 yr olds:I have the corona virus mom I can’t clean my room ima contaminate everything<U+0001F605>\n#coronavirus #nevadastrong #COVID19 #StayHome #StaySafeStayHome #StayTheFHome #cleanhouse #CleanHands"                                                                                                                                                                                                                                                                        
## [2898] "COVID-19 modelling shows BC's experience could be more like South Korea's than Italy's https://t.co/u8BuS5DT5m"                                                                                                                                                                                                                                                                                                                                                                                               
## [2899] "@wsfa12news This is a graph put out by NPR...pretty dang frightening, but hoping the \"stay at home\" advice is being followed to flatten the COVID-19 graph. https://t.co/KDJYQHscxg"                                                                                                                                                                                                                                                                                                                        
## [2900] "Important message from @mayorgimenez about #COVID19 today, March 26. #coronavirus https://t.co/d4CsL0uAIA"                                                                                                                                                                                                                                                                                                                                                                                                    
## [2901] "Coronavirus rising: #JamesCityCounty positive cases go up; state now has 604. Half of the deaths were in the Peninsula\nhttps://t.co/PqtnCkeUSU\n\n#coronavirus #COVID19 #COVID19Impact #WilliamsburgVA #YorkCountyVA #HamptonVA #NewportNews https://t.co/v6evUa4H0Z"                                                                                                                                                                                                                                        
## [2902] "<U+0001F44F><U+0001F3FB> CLOSE <U+0001F44F><U+0001F3FB> DOWN <U+0001F44F><U+0001F3FB> THE <U+0001F44F><U+0001F3FB> CHINESE <U+0001F44F><U+0001F3FB> MARKET <U+0001F44F><U+0001F3FB>#CoronaLockdown #COVID19 #PrayForBoris #COVID2019"                                                                                                                                                                                                                                                                         
## [2903] "CIoJ sends  professional journalist and Prime Minister @BorisJohnson very best wishes for speedy recovery from COVID-19. @Number10press @10DowningStreet"                                                                                                                                                                                                                                                                                                                                                     
## [2904] "Mobile Phone Location Data of Florida Beachgoers During Spring Break Tracked to Show Potential Coronavirus Spread https://t.co/vjvlgZxbGC"                                                                                                                                                                                                                                                                                                                                                                    
## [2905] "People who work for big employers get sick too.  California needs to fill in the gaps left behind by the federal government to support all workers facing #COVID19. https://t.co/cQs1CF6NpW"                                                                                                                                                                                                                                                                                                                  
## [2906] "Love seeing people’s art. This looks like a Covid-19 keep fit class. @Channel4News https://t.co/h05yFdTrbV"                                                                                                                                                                                                                                                                                                                                                                                                  
## [2907] "As the world responds to the implications of COVID-19, NTEA will provide you with the latest information on the impacts to the work truck industry. https://t.co/HfH4cmKIRq https://t.co/uBgvhVEBiN"                                                                                                                                                                                                                                                                                                          
## [2908] "It is very interesting to see how the mainstream media has blacked out this insidious news of a man named Mujeeb Mohammad being arrested because he wanted to spread the #Coronavirus by sneezing in open. He is an @Infosys employee! Aperfect embodiment for #CoronavirusOutbreak!"                                                                                                                                                                                                                         
## [2909] "Andrew Butters, assistant professor of business economics and public policy at the IU @KelleySchool of Business, offered a national perspective on COVID-19 to @BhamWatch and its public radio partner @WBHM. https://t.co/PGIkwtX9qJ"                                                                                                                                                                                                                                                                        
## [2910] "Good news as Cross River State procures 5 ventilators in preparation for any case of COVID-19 in the state. Cross River is one of the many states in Nigeria yet to report any case of the dreaded virus. \n\nClick the WhatsApp link below and say \"hi\"\nhttps://t.co/h5RofYx1ax. #NMTeam https://t.co/FL6NcrxvjY"                                                                                                                                                                                         
## [2911] "@PhillipSmyth Didn't China omit ~ 35,000 asymptomatic COVID-19 cases? The actual total should be closer to 115,000 cases in China. Russia has also downplayed COVID-19 cases by coding them as \"pneumonia\". https://t.co/2Ov3wQyUoD"                                                                                                                                                                                                                                                                        
## [2912] "Another company is joining the war against #COVID19:  @TheOrbFactory, parent company of @ORBToys, is shifting production to help meet the need for hand sanitizer and other anti-bacterial products around the world <U+2014>&gt; https://t.co/5OO8ZRMKCK #weknowplay"                                                                                                                                                                                                                                        
## [2913] "The RetroBeat: Games Done Quick will hold a special marathon to help with COVID-19 relief https://t.co/ipVXdSXKOP #work #future https://t.co/TbHtucuNXl"                                                                                                                                                                                                                                                                                                                                                      
## [2914] "Here’s how to redesign your home for spring during COVID-19\n https://t.co/PE4EqN9JWQ #Home #PaintingIdeas @DutkoRagen"                                                                                                                                                                                                                                                                                                                                                                                      
## [2915] "#Huawei’s #Honor, #Xiaomi’s #Redmi and #Oppo’s #Realme gives extended warranty for their products in India due to #Covid19. But big giants like #Apple’s #iPhone, #Samsung, #OnePlus, #LG, #Motorola and other players not yet announced. Royal salutes to Honor, Redmi and Realme."                                                                                                                                                                                                                      
## [2916] "NHS: Protect the right to have a birth partner during COVID-19 - Sign the Petition! https://t.co/FBMKjTkW6B via @UKChange"                                                                                                                                                                                                                                                                                                                                                                                    
## [2917] "@dwhitleysmith @business This one ? #COVID19 #TrumpVirus #trump #CoronavirusUSA #TrumpVirusCoverup https://t.co/E0Cr2JugpK"                                                                                                                                                                                                                                                                                                                                                                                   
## [2918] "Many small businesses are struggling with COVID-19-related challenges. $2 trillion bill passed by Congress  provides significant relief for businesses under 500 employees. \n\nIf you are the owner, CEO or CFO of a small business, you should check this out.\n\nhttps://t.co/n87WCtDNBY"                                                                                                                                                                                                                  
## [2919] "It's my honor to give congratulation to all your American that you are the No. 1 in the whole world for the confirmed #coronavirus , with the great/beautiful/excellent leadership of @realDonaldTrump . America will always first."                                                                                                                                                                                                                                                                          
## [2920] "all this holding my breath past people on my run is gonna make me pass out #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2921] "Some of them are sick, some are getting very sick and they don't even recover. They're wonderful people. Can someone translate this bullshit for me? WTF!!!.#COVID2019"                                                                                                                                                                                                                                                                                                                                       
## [2922] "Homeless New Yorkers are already dying from #COVID19 &amp; cases are increasing in the city’s shelters. @NYGovCuomo @NYCMayor MUST ACT NOW to stem crisis and protect the most vulnerable. #HomelessCantStayHome https://t.co/u4D6vg41a4 https://t.co/qLie23B53t"                                                                                                                                                                                                                                            
## [2923] "Johns Hopkins #COVID19 map faulted for erasing Palestinians https://t.co/tzR0dbIcXo https://t.co/sMVfQcBcDj"                                                                                                                                                                                                                                                                                                                                                                                                  
## [2924] "these companies. jfc\nhttps://t.co/oyov3kLttn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2925] "@HealthyHousing is hosting a webinar tomorrow (3/27) from 12-1:30 on \"Responding to Coronavirus &amp; COVID-19 in Healthy Housing Interventions\". Register at: \nhttps://t.co/IZfr6BIk5S\n#leadfreekidsOH #OHLeadAction2030\n@OHleadfreekids @OhioHealthyHome"                                                                                                                                                                                                                                              
## [2926] "It is important you answer children and young people's questions about COVID-19 in a way they can understand, without causing alarm. We've collected resources to help you to have have conversations with kids: https://t.co/xlHxxD6c68 https://t.co/ivN388tnNx"                                                                                                                                                                                                                                             
## [2927] "When this pandemic is over I think we should sue China, they are Covid 19 free and the rest country is still in shambles\n\n#COVID19 \n#CovidNGR \n#StaySafeNigeria \n#StayHome"                                                                                                                                                                                                                                                                                                                              
## [2928] "@StevieStacks84 @amazon My income has decreased due to COVID-19 so this would be very helpful!"                                                                                                                                                                                                                                                                                                                                                                                                               
## [2929] "@bgtennisnation Crazy &amp; spooky. VERY BEST TIME 2 be buying the stock market. Before COVID-19, market was overpriced. Still is in some places. 5th greatest buying opp in history of entire stock mkt. WTF is buying $320/share for nasty @dominos &amp; $660/share for sketchy, unauthentic @ChipotleTweets?"                                                                                                                                                                                             
## [2930] "My baby brother (20 but a baby to me) has pneumonia and possibly COVID-19. \nI hate today"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2931] "Absolutely loved the feature on dog walking etiquette in #covid19 pandemic on yesterday's #bbcinsidescience @BBCRadio4 @jenwhyntie What about cat stroking etiquette? Or are cat owners are wondering, where has my cat been? https://t.co/oZdCp42NAo"                                                                                                                                                                                                                                                        
## [2932] "@hokeisit @TedBrownJanSan @BernieSanders Scary how smoothly you MAGA animals disregard truth and facts. Please d8e from #Coronavirus. We need you morons gone. Your kind represents an existential threat to the rest of us."                                                                                                                                                                                                                                                                                 
## [2933] "@FlyersBlueFlame Yup, Seems you are right! \nhttps://t.co/vnwPGw4scP"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [2934] "#BreakingNews\n\nMedia reports suggest a #COVID19 patient under treatment in #Kochi dies, becomes first casualty in the state of #Kerala , where the deadly virus was first reported in India."                                                                                                                                                                                                                                                                                                               
## [2935] "\"Any customer who identifies as a frontline responder to the COVID-19 outbreak will receive a tall brewed coffee (hot or iced) at no charge until May 3.” https://t.co/8Urqd9TCoi"                                                                                                                                                                                                                                                                                                                          
## [2936] "Adopt and adapt strategies to get through #Covid19:\nhttps://t.co/E7IGnnvX7C"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2937] "Luvs and Lovers the House has a bill that is for the people.  #TakeResponsibility   2K/mth for as long as #COVID19 keeps us inside.  Plus real oversight of loans to corps.  Demand it.  Demand it."                                                                                                                                                                                                                                                                                                          
## [2938] "As case numbers approach 3000, #Miami’s #coronavirus #TestingForCovid19 data suggest we still don’t know how many are infected https://t.co/Ry0ShIyTNS"                                                                                                                                                                                                                                                                                                                                                     
## [2939] "#Colombia and Spain have much in common. We all exercise 'social behavior' - we're very touchy-feely down here. It's been hard to put the brakes on that... #Coronavirus: 'Why are deaths rising so quickly in Spain?' https://t.co/8NwjIdpM17"                                                                                                                                                                                                                                                               
## [2940] "Check this link for accurate worldwide #COVID2019 updates \nhttps://t.co/IbbKq9GOTG"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2941] "The Covid-19 Tales <U+2013> Episode 3 https://t.co/GxtKaOX1fj"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2942] "B.C. measures appear to have slowed the increase in COVID-19: health officer | National Newswatch https://t.co/cJNaZOSvef"                                                                                                                                                                                                                                                                                                                                                                                    
## [2943] "Hachi, the most famous Akita dog, also wears a mask! #COVID19 #StaySafe https://t.co/vm3LGskG2t"                                                                                                                                                                                                                                                                                                                                                                                                              
## [2944] "Anger over Prince Charles's Covid-19 test is a warning sign of divisions to come | Gaby Hinsliff https://t.co/qlviPeEFkp"                                                                                                                                                                                                                                                                                                                                                                                     
## [2945] "@KatiePhang And what does it prove if HE gets COVID-19?"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2946] "@IrPsych @Twitter @TwitterSupport @SimonHarrisTD @GardaTraffic 'Sedition' ~ conduct/speech inciting people to rebel against the authority of a state or monarch.\nHey @MaryLouMcDonald, @LeoVaradkar even, Please ensure Gemma O'Doherty is not deemed as 'essential' in the capacity as 'journalist'...sadly, that ship's long since sailed.\n#COVID19 https://t.co/LViDThz6LS"                                                                                                                              
## [2947] "Stay Safe &amp; fight Covid-19 !\n\n#Covid19 #Coronavirus #StayAtHome #CoronaOutbreak #Covid19India #Screwexpert https://t.co/DWweoyLIE0"                                                                                                                                                                                                                                                                                                                                                                     
## [2948] "@ninjabaseballs @GAMBLETAYLOR1 @ARLnowDOTcom @CDCgov @ABC7News @shomaristone Yes I have as well. There are so many videos showing this. Look up cytokine storm from covid-19. It is very rapid, seemingly no warning. This comes in the second wave of sickness from it."                                                                                                                                                                                                                                     
## [2949] "@Jrwriter1523 @GovLarryHogan @Change James, the federal government has addressed the cost of living issue with a $2.2 Trillion Dollar Bill that addresses a wide range of Americans financial  stresses due to COVID-19. In my option before Hogan or the Federal Government look at any additional measures,"                                                                                                                                                                                                
## [2950] "Good 60-second read for marketers:\nMind your tone; Assess which campaigns should be paused/changed; Show your customers you have their backs; Support other businesses. https://t.co/y76Tp6ofiF"                                                                                                                                                                                                                                                                                                             
## [2951] "Can you recover completely from Coronavirus? Can you prevent COVID-19 by wearing a mask? Is there a vaccine? Should you cancel your travel plans? Can you order packages online without being worried? Did it all start from a bat soup?! Read on our latest blog! https://t.co/7BZDNCrHoa"                                                                                                                                                                                                                   
## [2952] "I will not listen to any recommendations from @realDonaldTrump.  He spreads nothing but misinformation for his own personal gain. I will follow the recommendations of the CDC, Dr. Anthony Fauci, and the recommendations of my local and state government officials.   #COVID19"                                                                                                                                                                                                                            
## [2953] "Rupee Rises 84 Paise Against US Dollars After Govt Announces Welfare Measures to Fight COVID-19 https://t.co/Uuc7GZWDrJ https://t.co/6mFsTE2ORm"                                                                                                                                                                                                                                                                                                                                                              
## [2954] "Thank you NHS well done #NHSThankYou #clapforNHS #COVID2019 https://t.co/aQAXayL8kC"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2955] "Check out my blog and resource page on #COVID19 for friends and family to find reliable information. https://t.co/mmz3eDsnFv"                                                                                                                                                                                                                                                                                                                                                                                 
## [2956] "Never knew how bad I was at spelling quarantine until COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2957] "Amount of coronavirus tests done in France is 36747 as of 15 Mar 2020\n\n#coronavirus #COVID19 #CoronaVirusUpdates #Covid_19"                                                                                                                                                                                                                                                                                                                                                                                 
## [2958] "In English here https://t.co/mEItmVTNQG"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2959] "Might be a good time to buy some beef...\n\nHarmony Beef shut down due to COVID-19 https://t.co/gPkERgV0x6"                                                                                                                                                                                                                                                                                                                                                                                                   
## [2960] "Watch All Trump's false promises regarding the tests for COVID-19.\n\nTHEN READ MY OP-ED: THE #CORONAVIRUS TESTS ARE IN THE MAIL. THIS IS THE REAL REASON FOR TESTING DELAYS: https://t.co/K3cFfYF2LW \nhttps://t.co/fWngXmfPDZ 08\n#VoteBlueNoMatterWho"                                                                                                                                                                                                                                                     
## [2961] "COVID-19 and skin hunger: Vancouver sex therapist Diana Sadat talks about feeding need for intimacy #COVID19Vancouver #Vancouver \nhttps://t.co/wz9MqLO13a"                                                                                                                                                                                                                                                                                                                                                   
## [2962] "Join us in thanking our nation's physicians and health care teams on the front lines of the #COVID19 pandemic. Leave your words of encouragement in this open letter, and we'll share on Mar. 30, a.k.a.  #DoctorsDay! Shout it loud with us: #WeStandWithDocs. https://t.co/tAR4jVLsSN https://t.co/Qm1WsKnEwF"                                                                                                                                                                                              
## [2963] "Coronavirus - South Africa: President Cyril Ramaphosa has tested negative for Novel Coronavirus (COVID-19) @GovernmentZA @PresidencyZA @CyrilRamaphosa #Africa #SouthAfrica #Health #Coronavirus #COVID19 https://t.co/md7lI8Bx2f"                                                                                                                                                                                                                                                                            
## [2964] "20 years from now I’ll probably still look at this like <U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD> you COVID-19."                                                                                                                                                                                                                                                                                                              
## [2965] "As a responsible Opposition <U+2066>@JamaicaPNP<U+2069> have been asking penetrating questions about Ja’s preparedness for #COVID19 as in this extract from Standing Finance  C’mtee held on March 4 https://t.co/eZz6vekMa7"                                                                                                                                                                                                                                                                               
## [2966] "@TWDWorldBeyond @JunkyJanker If u mute ur volume, it looks like junky is speaking facts (but fr covid-19 is ruining everything)"                                                                                                                                                                                                                                                                                                                                                                              
## [2967] "Just watched another #coronavirus press conference from the real President of the United States @NYGovCuomo ... #POTUS sorry @realDonaldTrump but this is the person your country needs right now.  NY should be proud to have this individual is leading the charge. https://t.co/FlWZLpz2Ix"                                                                                                                                                                                                                
## [2968] "COVID-19: Makinde sacks aide clamming Sanwo-Olu’s projects for Oyo Governor [PHOTOS] https://t.co/DV5Sbd2k1n"                                                                                                                                                                                                                                                                                                                                                                                                
## [2969] "Can’t tell whether I am have breathless anxiety from #coronavirus or from watching spiders on @C4Gogglebox #Gogglebox"                                                                                                                                                                                                                                                                                                                                                                                       
## [2970] "Changing Times: ‘We are all in this together', says ABPCO https://t.co/Bc9NBQK9B5 @ABPCO #EventProfs #MICE #events #meetings #venues #conference #CoronaVirus #covid19"                                                                                                                                                                                                                                                                                                                                      
## [2971] "There is no virus, what we are seeing right now is a massive psychological warfare operation. It's drill for the 2nd event that is planned,#COVID19  is a just a test, the global elite are busy mobilizing  everyone who will BE involved in the Major coming crisis. https://t.co/DHcMErzy2w"                                                                                                                                                                                                               
## [2972] "Are you kidding me?  Delaying cancer surgery because you need space in hospitals for COVID-19 patients.  Doug Ford you need to shutdown those construction sights and flatten the curve. #DougFord #JohnTory #JustinTrudeau #SocialDistancingNow #covidontario #FlattenTheCurve"                                                                                                                                                                                                                              
## [2973] "@Jeremy35299439 @ddwiese @PaulChavaux Well, that’s because they would be DEAD or their families in mouring. \n\nMy gosh....#COVID19\n\nThis isn’t hard or difficult, medical supplies are greatly lacking!"                                                                                                                                                                                                                                                                                                 
## [2974] "Im sure he sold it so he could donate it to a sick pay find for his employees. It could not possibly been out of greed.  https://t.co/CSTmplamSF"                                                                                                                                                                                                                                                                                                                                                             
## [2975] "Like yesterday, we were all excited about 2020. #COVID19 had other plans. Here's to #NoWastedTime and focus on my business grind. And most all, here's to all the leave I'm saving and credit hours earned, as I look forward to roaming the earth again. #BlackGirlsWrite"                                                                                                                                                                                                                                   
## [2976] "@joe_cressy @JohnTory I'm greatful that the city is getting hotels for our homeless.This particular would be ideal,where will our homeless go?Please take this hotel into consideration,thank you.#COVID19"                                                                                                                                                                                                                                                                                                   
## [2977] "This is a Slam Dunk 01-MAR-2020 :: <U+00A0>The Origin of the #CoronaVirus #COVID19 https://t.co/Eryn419SZA “A paranoid is someone who knows a little of what's going on. ”― William S. Burroughs https://t.co/ekTrqkAI62"                                                                                                                                                                                                                                                                                  
## [2978] "@solid1009 @Princesskachy @betapikin042 @iamNaniboi Wow thanks so much guys <U+0001F450>yes in this trial time we should not forget that he is with us and if he is with us no one can be against us not even the epidemic disease #COVID19 ones again thanks so much my people of solid FM God bless"                                                                                                                                                                                                        
## [2979] "This is interesting. Why did they lie and say a man had died from #coronavirus when he had not? @BorisJohnson #Coronaconspiracy https://t.co/rzskd8VUKj"                                                                                                                                                                                                                                                                                                                                                      
## [2980] "@Victoria59L @stocat1 @globalnews Damn, if only the virus waited until the 1st of next month to become a pandemic...\n... actually May would be better because of Easter and Chinese new year... hmm <U+0001F914> Can we pen #coronavirus down for May 3rd, the world has things to be doing right now.\nAh too late, damn!\nSeriosuly: https://t.co/lOn3Uvol1M"                                                                                                                                              
## [2981] "Trump doing such a great job, that US has overtaken Italy and is just behind China.  Not a set of numbers to be proud of. #COVID<U+30FC>19 https://t.co/gncThEZN38"                                                                                                                                                                                                                                                                                                                                           
## [2982] "COVID-19: How to be a good citizen? https://t.co/Tgorvab4Iy https://t.co/SKs5PROBXV"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2983] "great, tragic story on crazily shortsighted underfunding. \n#cuttinglegsfromunderpublic\nPublic health workers are on the front lines of the fight against coronavirus. But they’ve bled resources for years. https://t.co/WNwS3snZyv via @NCHealthNews"                                                                                                                                                                                                                                                     
## [2984] "@MillicentOmanga @IG_NPS @InteriorKE @kipmurkomen @susankihika Please remind the government to protect even those enforcing the law, they need masks too. Or else, we will aid the spread of Covid-19 rather than slow it. Also let them understand citizens need help not punishment."                                                                                                                                                                                                                       
## [2985] "Why does this Covid-19 make me think that someone is playing a game Plague Inc. with our world? <U+0001F602>"                                                                                                                                                                                                                                                                                                                                                                                                 
## [2986] "House lawmakers leave chamber empty amid COVID-19 pandemic  https://t.co/G96uGWqQSm"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2987] "Prabhas &amp; Pawan heartful ga donate chesaru..<U+0001F44D>\n#Covid_19India\n#COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2988] "@SpeakerPelosi @TeamPelosi YOU... and @SenSchumer are America’s virus <U+0001F9A0> \nSTOP USING #COVID19 AS LEVERAGE <U+203C><U+FE0F>\n#WalkAway from the @DNC<U+203C><U+FE0F>\n#Democrats are poisonous.\n@TheDemocrats must STOP.\n#Democrat games w/#coronavirus are despicable<U+203C><U+FE0F> https://t.co/aA39s3pVuE"                                                                                                                                                                                  
## [2989] "@tanamongeau I am in desperate need of money. Lost my job due to covid-19. I have no rent money and down to my last few dollars.\n$elmosaidrawr"                                                                                                                                                                                                                                                                                                                                                              
## [2990] "The fear and anxiety that follows #COVID19's spread, paired with the disruptive but necessary social distancing measures, can negatively impact our mental health. Even during these trying times, help is available. https://t.co/EXH4wd4j53"                                                                                                                                                                                                                                                                
## [2991] "I created some data visualizations about Covid-19 in the USA.  \nRemember, \"Data Doesn't Lie, but It Doesn't Tell The Whole Story\"!! \nFeel free to share.\n#COVID19 #coronavirus #DataViz \nhttps://t.co/Hm4ajksGeM \n(Works best on desktop)"                                                                                                                                                                                                                                                             
## [2992] "Thank SUPERBUNGLER #Trump: #America now has the ONE #world record it did NOT want: NUMBER ONE in #coronavirus CASES!!!!\nhttps://t.co/G9JDAjMN2K"                                                                                                                                                                                                                                                                                                                                                             
## [2993] "United States pledges US$470,000 to combat COVID-19 in Zimbabwe."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2994] "#amazonfunnies Whoever this guy's son is, is probably very thankful for his dad \"@djswingingdiq\" for not willing too spend $21 to ship back the best mask fr daily use.... @ResproUK You should reach out to him and remind him to give it to his son. #CoronavirusUSA #COVID19 https://t.co/w3xW0h6qeF"                                                                                                                                                                                                    
## [2995] "Amazing infographic from @statista showing the projected impact the COVID-19 outbreak will have on U.S. ad revenue. https://t.co/izykcUERtS"                                                                                                                                                                                                                                                                                                                                                                  
## [2996] "Despite his false claims, Republicans trust Trump for accurate information on COVID-19 over the CDC https://t.co/NH3DlbuHIz"                                                                                                                                                                                                                                                                                                                                                                                  
## [2997] "Why not get your kids involved in #NationalWorkoutsAndWellbeingWeek ?! <U+0001F468><U+200D><U+0001F469><U+200D><U+0001F467><U+200D><U+0001F467>\n\n#StayAtHomeSaveLives #COVID19 #HappierAtCitation https://t.co/ckAUexfGex"                                                                                                                                                                                                                                                                                  
## [2998] "Our Immigration Community Faces Unemployment: Check out Our Responses to Common Questions. \n\nPlease share!\n\n#PublicCharge #Unemployment #Covid19usa #coronavirus \n\nhttps://t.co/nsoejrrLW3"                                                                                                                                                                                                                                                                                                             
## [2999] "\"What we need in a pandemic is not social distancing, but physical distancing with social connectedness.\" - Kurt Stange, David Bergman et al. From our #COVID19 collection, including in-press work from the global frontlines of #PrimaryCare containment https://t.co/JCHCJUTfrw https://t.co/90QteWRXlG"                                                                                                                                                                                                 
## [3000] "#Selfdistancing till further notice\n#coronavirus #COVID19 #Quarantine #QuarantineAndChill https://t.co/prTCUNHwue"                                                                                                                                                                                                                                                                                                                                                                                           
## [3001] "@NCDCgov @Fmohnigeria @FMICNigeria @NOA_Nigeria @EpidAlert @DrEOEhanire @nighealthwatch @nmanigeria @WHONigeria @USCDCNIGERIA @LSMOH Covid-19 Tomatos <U+0001F345> sauce. From chef <U+0001F468><U+0001F3FB><U+200D><U+0001F373> Tetes.  CoronaVirus most go. https://t.co/SKCuzBTxKD"                                                                                                                                                                                                                        
## [3002] "To the cruise lines who are asking for gov assistance in the relief bill... thanks but NO THANKS. If you don’t pay taxes here in US then you can’t be bailed out by US tax dollars. #cruises #CoronavirusPandemic #COVID2019 #getyourmoneyelsewhere @ClayTravis https://t.co/e3FQXdfCu2"                                                                                                                                                                                                                    
## [3003] "Another rapid-fire #Fathom ep. in response to the ongoing Covid-19 crisis. Paul &amp; Chris dive into: \n\n<U+0001F41F>Current market &amp; prices \n<U+0001F41F>The success of #FishToYourDoor including an interview w/ @CelticFishGame\n<U+0001F41F>An update on Gov. support for fishermen \n\nListen: https://t.co/dSxfYg1Ks5"                                                                                                                                                                           
## [3004] "My father decided to give rashan to 7 families.I'm sharing it so that u all should also convince yourselves and ur parents to take a step in this difficult situation for the needy. YOU DON'T NEED TO BE RICH TO DO SO, taking care of atleast 1family won't be a burden.\n#Covid_19"                                                                                                                                                                                                                        
## [3005] "I commend all effort that is geared toward #COVID<U+30FC>19 in Lagos State...\n\nLet's endeavor to stay safe and also abide by the health tips as given by @NCDCgov, @WHO, @CDCgov\nhttps://t.co/rcCZgyqyq5\n\n#DeCatalyst #optimistic #CoronavirusPandemic #Covid19Out"                                                                                                                                                                                                                                      
## [3006] "At least one member of the Sixers' ownership group is not having a disastrous week https://t.co/8cD9JoEIsX"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3007] "Tonight at 7 p.m.: This hyper-local event will include medical and health officials, along with other local leaders to provide clear and concise information as central Illinois and the nation at large face the COVID-19 pandemic. https://t.co/CYtWp9ixqY"                                                                                                                                                                                                                                                 
## [3008] "The #covid_19 isn’t stopping this #block from practicing #socialdistancing and working out <U+0001F3CB><U+FE0F> #workout #pushupchallenge #pushyourself #covıd19 #healthylifestyle #workoutmotivation #workoutroutine #workouts #palmettobay #hustle #bodypositive #CoronavirusPandemic #ThursdayThoughts https://t.co/grbyf0WYKa"                                                                                                                                                                          
## [3009] "France’s national railroad has all but shut down, like much of the rest of the country. But yesterday a high-speed TGV train was used to transport Covid-19 patients to hospitals with resources to spare. 8/8\n\nhttps://t.co/M2mjppt9af"                                                                                                                                                                                                                                                                   
## [3010] "Some good information here!\n\nhttps://t.co/XxZ4hxhPuy https://t.co/Vz44xjafCt"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3011] "The French doctor promoting #chloroquine has a history of manipulating data\nEurope \n\n#Factcheck \nhttps://t.co/bd908Nuhcc"                                                                                                                                                                                                                                                                                                                                                                                 
## [3012] "At present, the cost of testing for Covid-19 is Rs 4,500 per examination and the results are available within 24 hours\n\n#coronavirus \n#COVID19 \n#CoronavirusTest \n\nhttps://t.co/baDOkSJoXX"                                                                                                                                                                                                                                                                                                             
## [3013] "Can China’s COVID-19 Statistics Be Trusted? <U+2013> Scott N. Romaniuk and Tobias Burgers give an appraisal of the system https://t.co/2f9MzeePAv"                                                                                                                                                                                                                                                                                                                                                           
## [3014] "Is 5G the CAUSE of CORONAVIRUS? (COVID-19) https://t.co/GukjK4ayod via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3015] "@JezebelKat Also perpetually lol'ing at increasing border measures without addressing the fact that COVID-19 has been community spread for weeks. Not to mention the fact that they're not even quarantining people properly - US guy I spoke to today was left to his own devices, free to travel."                                                                                                                                                                                                          
## [3016] "A publication in JMIR showcasing the work of FETPs in COVID-19 response in the EMRO region authored by Maj Gen Aamer Ikram and Dr Mirza Amir Baig from Pakistan #COVID19 @DrNausheenPTI\n@SaniaNishtar  @ImranKhanPTI @Sarfraz5678 @PTIofficial @pticmdofficial\nhttps://t.co/7UNTOy0LcB"                                                                                                                                                                                                                     
## [3017] "THREAD: Everything you need to know about how #coronavirus is impacting #retail and #food trends \n\nOnline shopping has been a mixed bag as different consumer segments respond differently. New online shoppers entered the category early, while others cut back. https://t.co/zkEXyb1Axz"                                                                                                                                                                                                                 
## [3018] "Thank you so much for all the online orders this week. We hugely appreciate the support from you lovely lot. The Crumbs car has broken down twice. A bit concerned it may have #COVID19 so please bear with local deliveries!!\nhttps://t.co/T5usVIO7b0\n#supportlocal #StayHomeSaveLives https://t.co/KsI0rNaAQN"                                                                                                                                                                                            
## [3019] "We are working on #COVID19 in Italy, France, Greece, Hong Kong, Iraq, Belgium and others. A key priority is to keep our regular medical programmes running for the hundreds of thousands of patients we care for and for the extremely vulnerable communities we help around the world https://t.co/bWTrg4GYWH"                                                                                                                                                                                               
## [3020] "@ImRight08 Let’s think bigger. 30M tests in 30 days, virus and antibodies. More data! Go, go, go! Let's beat Iceland! We can do it.\n\nhttps://t.co/d142lKQTgG\n\nYou inspired me to put together a petition. Thanks! Now pls go sign it and spread the word!"                                                                                                                                                                                                                                               
## [3021] "Looking back on my sickness posts from December and wondering now if we were actually dealing with the #coronavirus It was definitely the worst thing we'd had as a family and the worst I'd felt for a long time... Anyone else get abnormally sick in the Dec-Jan time frame? https://t.co/cmnRCmqBTz"                                                                                                                                                                                                      
## [3022] "@MarciaMathog @davidfrum The US Govt isn't buying up the ventilatord. Listen to #Trump's Hannity interview. The orange #COVIDIOT is complaining about how much they cost and how many @NYGovCuomo wants (30K).\nHe also nixed the order with GM to make them. \nHe's punishing NYS again.\n#COVID19"                                                                                                                                                                                                          
## [3023] "@JasonSCampbell I Just hope the @SEC_Enforcement will take a deep dive on unusual volumes in Novartis, Mylan and Teva after the ongoing promotions from @realDonaldTrump of chloroquine tablets to fight COVID-19? The USA Patients want to know who bought when? @TheDemCoalition"                                                                                                                                                                                                                           
## [3024] "Native American(s) COVID-19 <U+0001F602><U+0001F937><U+0001F3FB><U+200D>♂<U+FE0F> https://t.co/jgi0guOQ4l"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3025] "Due to the COVID-19 pandemic and fluidity of the current situation, Loma Linda University Health leadership, clinical experts and frontline providers are maintaining a constant focus on managing the organization’s response. https://t.co/a3Jn4sWM5i"                                                                                                                                                                                                                                                     
## [3026] "Hey, ladies:<U+2063><U+2063>\n<U+2063><U+2063>\nA lot of you are #goinggray against your wishes right now because of Covid-19 salon closures.  <U+2063><U+2063>\n<U+2063><U+2063>\nSome of you see the salon closures and home confinement as an opportunity to finally ditch the… https://t.co/8j8X5xqym7"                                                                                                                                                                                                  
## [3027] "New Coronavirus Scam Exposed (Fake Cure) https://t.co/TerHVdCS9O via @YouTube\n\n#Covid19 #Scambait"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3028] "I tried  Covid 19 Web testing,, turns out ndine stress<U+0001F602><U+0001F602><U+0001F602><U+0001F602> https://t.co/WbqskIfMpG"                                                                                                                                                                                                                                                                                                                                                                               
## [3029] "#COVID19 cases in New Jersey are now 8,825. \nTwo weeks ago it was 50. \nThat's a 17,550% increase.\nhttps://t.co/3TcjfDP8fy"                                                                                                                                                                                                                                                                                                                                                                                 
## [3030] "And we thought Trump was the most stupid world leader. Sorry America, Johnson wins hands down What did Boris Johnson say before testing positive for Covid-19? https://t.co/8mS3sjLV4I via @YouTube"                                                                                                                                                                                                                                                                                                          
## [3031] "Rs1.7tn stimulus plan to help poor unveiled\n#Covid-19  https://t.co/eX2byg7M9I"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3032] "Make no mistake! This was an engineered \"Pandemic!\"\nhttps://t.co/l35uvFRWW3"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3033] "We're about helping our local community thrive <U+0001F338>. Find a business to support or list your business on https://t.co/edoBAedebI <U+0001F448>\n\n#micovidcare #washtenawcounty #supportlocal #supportsmallbusiness #stayhome #community #restaurants #mentalhealth  #covid19 #coronavirus #mobilize https://t.co/S4mAnENgC2"                                                                                                                                                                          
## [3034] "Big Sport struggles to pivot to its new position of immense irrelevance | Marina Hyde. A woman who is not a sports reporter writing about football being irrelevant, feeds into every prejudice you can muster. #Sad https://t.co/oxpm7RQ85y"                                                                                                                                                                                                                                                                 
## [3035] "BBC News - Covid-19: The ways viruses can spread in offices\nhttps://t.co/beJmTUYd4O"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3036] "I love reading @APSForg and their input on #COVID19. Always on point!"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3037] "\"Last updated March 26 at 4:45 p.m. ET.\n\nOklahoma is reporting 248 confirmed cases of COVID-19 and 7 deaths, according to the Oklahoma State Department of Health. Community spread has been confirmed in the state.\"\nhttps://t.co/YcoCucZkOP"                                                                                                                                                                                                                                                           
## [3038] "Is the worst is still to come as #Coronavirus makes its way to #American shores?\n\nThis article explains the health risks and offers tips on how seniors can stay safe. \n\nhttps://t.co/CwmV4vtEX0 via @SeniorLifeAdv\n\n#seniorhealth https://t.co/BqmBCDCmXn"                                                                                                                                                                                                                                             
## [3039] "I wish everyone tested positive for #COVID19 speedy recovery <U+0001F64F><U+0001F64F><U+0001F64F>\nMay God be with us all <U+0001F64F><U+0001F64F><U+0001F64F>\n#StayAtHomeAndStaySafe \n#staysafe"                                                                                                                                                                                                                                                                                                           
## [3040] "The U.S. is facing a severe blood shortage due to an unprecedented number of blood drive cancellations. @RedCross urges healthy individuals to schedule an appointment to donate blood at https://t.co/nxltsx9AkS. #COVID19"                                                                                                                                                                                                                                                                                  
## [3041] "@RoryHaczewski @BBCNews Been happening since the year 2000 after the Montreal Protocol signed in 1987.  Nothing to do with COVID-19.\n\nhttps://t.co/IY9WDtC0sN"                                                                                                                                                                                                                                                                                                                                              
## [3042] "Frank Newport: Six Emerging Conclusions: Public Opinion and COVID-19 https://t.co/CB6XfuVBuD via @Gallup #COVID19"                                                                                                                                                                                                                                                                                                                                                                                            
## [3043] "@SethAMandel @scottlincicome Well said! \"In reality, the COVID-19 crisis is a once-in-a-lifetime “black swan” event that requires everyone to put aside much of their ideology for a moment, accept the unfortunate reality we’re given, and just get stuff  done.\" This is what made America great to begin with."                                                                                                                                                                                      
## [3044] "When your leader cares more about oil than you #DieForTheDow #COVID2019 #DonaldTrump #trump #trumpasauras https://t.co/NAiPNMlktp"                                                                                                                                                                                                                                                                                                                                                                            
## [3045] "The best thing about this whole situation. Now bring me my booze\n\n#booze #coronavirus @ The Death Star https://t.co/54q7I3QeBV"                                                                                                                                                                                                                                                                                                                                                                             
## [3046] "The Analogy Between Covid-19 and Climate Change Is Eerily Precise | WIRED https://t.co/fKuPSv18Ek"                                                                                                                                                                                                                                                                                                                                                                                                            
## [3047] "If #COVID19 has taught us anything, it's that grocery store clerks, transit workers, nurses, and delivery drivers are essential. Wall street is not. \n\n#NDLB2020 #MasksNow"                                                                                                                                                                                                                                                                                                                                 
## [3048] "Of course. Why haven't we gotten A Rod's take on all of this? When it comes to #coronavirus response there's no greater authority on the planet than, A Rod. https://t.co/th7xVE6ytL"                                                                                                                                                                                                                                                                                                                         
## [3049] "The people of North East are amazing lovers, singers, artists, travellers and honestly alive.\nIt's sad that the Pandemic has showcased the internal dirt of some morons who don't understand the beauty of diversity.\n\nYou all are the best my buddies.\n\n#COVID2019\n#stopracism"                                                                                                                                                                                                                        
## [3050] "Just asking... Shouldn’t all hipsters be shaving off their beards? Surely a beard is risky .... so many germs?  Health hazard!!!! <U+0001F62D> #COVID19 https://t.co/JmUarcjSol"                                                                                                                                                                                                                                                                                                                             
## [3051] "Okay, looks like we're getting started. Let's do this thing! #COVID19 #Briefing https://t.co/d5u8v4iuhX"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3052] "I forgot I had a car payment <U+0001F61E>#coronavirus #CoronaLockdown"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3053] "Update BlueDragon650 - Hey Everyone Is Me BlueDragon650 (@Blue_Platinum In Twitter) I Not Going To Post A Video In My YouTube Channel So I Am Going To Write This In Tumblr So Here I Go I Want To Talk This Difficult Time About COVID-19 Is To... https://t.co/Tti43dQj6y"                                                                                                                                                                                                                                  
## [3054] "British Prime Minister Boris Johnson tests positive for COVID-19 https://t.co/ssx7hu88O4"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3055] "Will COVID-19 be Known as “the Chinese Virus” or “the Trump Virus”? https://t.co/qOpYRw9Qs8 via @grtvnews"                                                                                                                                                                                                                                                                                                                                                                                                
## [3056] "#Covid-19 Update posted by State Representative Renitta Shannon - #Dekalb CEO Thurmond, updated the county’s state of emergency with a shelter-in-place order for DeKalb in response to COVID-19. The order is effective Saturday, March 28, 2020, at 9 p.m. until further notice. https://t.co/ekUqRwwgiN"                                                                                                                                                                                                  
## [3057] "<U+0001F58B> Support Susan by signing “Where are the tests!” and I’ll deliver a copy to your officials too: https://t.co/7zOhbPhV3n\n\n<U+0001F4E8> Last delivered to @tony4wi, Representative Kerkman and Senator Wanggaard  #WIpolitics #COVID19 https://t.co/1A6MQqherv"                                                                                                                                                                                                                                
## [3058] "Day 3: Houstonians are losing income &amp; jobs during a lockdown.  \n\n68 COVID-19 cases.  \n\nWill @HarrisCoJudge  ($176k/yr) / @SylvesterTurner ($236k/yr) lead? Give up their pay in shutdown? \n\n@realDonaldTrump has. \n\n#CoronaLockdown \n#HypocriteLina #HoustonMayorHypocrite https://t.co/1T99ZsCMOT"                                                                                                                                                                                             
## [3059] "Brilliant idea and no doubt the fastest way to a COVID-19 solution. https://t.co/bXFARCrahY"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3060] "FB live @bloodyearlyhour EST Beastmode <U+0001F525>\nSmile, laugh, ♥<U+FE0F> health\n#Togetherwearestrong #teamkentucky #togetherky #healthyathome #teamkentucky\n#governor  #teamworld\n#covid19 #coronavirus\n#socialdistancing… https://t.co/7SbqevPdI5"                                                                                                                                                                                                                                                 
## [3061] "Very accurate thread about being a marketer. I’ve actually been thinking about wanting to pivot back into sales because of some of the factors @attackofthetext outlines below. (I was affected by a lay-off last month and consulting clients hit pause because of #COVID19 .) https://t.co/WIjNoMBVZd"                                                                                                                                                                                                     
## [3062] "Nigeria Will Go Into Recession If COVID-19 Continues Beyond Six Months <U+2013> Finance Minister https://t.co/i5wqEROLGa https://t.co/volXF1pVYB"                                                                                                                                                                                                                                                                                                                                                             
## [3063] "Bill Gates: \"Poor countries the difficulty doing the isolation.\"\n\nBill Gates makes a prediction about when coronavirus cases will peak #COVID19 \n\n\"The light is not at the end of the tunnel in terms of a mid April reopening.\"\n\nhttps://t.co/kEOr5sldef"                                                                                                                                                                                                                                          
## [3064] "@citizentvkenya This is unacceptable...\nI thought kenya Police was there to serve the people??\nWhy treat human beings this way??\nIs this guy Covid 19 ama?\nIf he has broken the law can't he be charged?\nWhat an evil system backed by evil leadership.\nGod sees and they shall all pay eventually."                                                                                                                                                                                                    
## [3065] "Latin America’s COVID-19 cases rise rapidly https://t.co/fnHIC2cyLB"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3066] "SEC Further Extends Filing Deadlines for Companies Impacted by COVID-19 https://t.co/lmdS5L7Bde @KattenLaw"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3067] "Time to being warrior ,\nBy being Quarantine.\n\nMy poetry on ...this Test of #21dayLockdown #COVID2019 https://t.co/cJNMK1EURX"                                                                                                                                                                                                                                                                                                                                                                              
## [3068] "... have gotten COVID-19?\n\nCorbyn on a bike man.\n\nThe only difference between these donkeys leading our lions during the 1918 Flu Epedemic is the bleeding war that preceded it.\n\nCor bloimey gav'na!!!\n\n#ProudToBeBritish"                                                                                                                                                                                                                                                                           
## [3069] "Trump wants incidence of #coronavirus positives to be charted by COUNTY. One has to ask why. \n1st: the data is too minimal &amp; useless, considering how sporadic testing is; we're more sure of deaths than positives. \n2nd: land-based accounting is useless; this is behavioral-driven."                                                                                                                                                                                                                
## [3070] "This is hilarious, whoever Photoshop this did really well lol\n.\n.\n.\n#doctorwho #bbcdoctorwho #jodiewhittaker #mydoctor #teamtardis #sonicscrewdriver #ohbrilliant #bbcamerica #coronavirus #covid_19 #toiletpapermayhem… https://t.co/kQxfS9EYCN"                                                                                                                                                                                                                                                        
## [3071] "The @alzassociation shares #dementia #caregiver tips. #COVID19 https://t.co/70PO8PhIoV"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3072] "Technical Difficulties: Courts Face COVID-19 Learning Curve https://t.co/7Is7bCz0B7 #lawfirms #legal #attorneys #lawtwitter"                                                                                                                                                                                                                                                                                                                                                                                  
## [3073] "In response to the #coronavirus pandemic, the Cuomo administration announced that NY will reopen its Affordable Care Act exchange for a month, for people who want to purchase health insurance. Learn more @NYSDOH https://t.co/vBlwKmeDG6"                                                                                                                                                                                                                                                                  
## [3074] "East End ACORN leader Elizabeth has a message for @fordnation! We need a #RentBreak now in Ontario! Elizabeth is a PSW and has been laid off due to #COVID19. With April 1st around the corner, Elizabeth will have to choose between paying rent and buying food. #HamOnt https://t.co/8WXhUMCXK2"                                                                                                                                                                                                           
## [3075] "ICYMI: #UAlberta chemists creating hand sanitizer on campus, as scientists use @WHO recipe to prepare more than 200 litres in 3 hours to meet the needs of the community. Learn more: https://t.co/zshrG8Wcu7 #Science #Health @UAlberta https://t.co/pq8IFr6Qps"                                                                                                                                                                                                                                             
## [3076] "Whatever you're doing in the US, it's not working...\n#COVID19 https://t.co/3TDNRmfr0f"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3077] "COVID-19: Tackling the Novel Coronavirus | LSHTM https://t.co/GNYIyn40Jd"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3078] "@FoxNews If I read your screen correctly, NY has 57% of all COVID-19 cases."                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3079] "#Xbox clean up is so much fun #StayHome #COVID2019 https://t.co/9lyidiIkYt"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3080] "@realDonaldTrump do you live in America? Do you really think Counties can take on the honor system and not abuse the “social distancing”? Or are you willing to sacrifice a few more dead bodies for the economy? You said “Zero deaths were acceptable”. Act like it #COVID2019 #CNN"                                                                                                                                                                                                                    
## [3081] "AZCentral is reporting that gun stores in the Phoenix area have been cleared out in response to COVID-19. https://t.co/vGq65jj0S8"                                                                                                                                                                                                                                                                                                                                                                            
## [3082] "#COVID19 being defeated https://t.co/vUNDcaRk16"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3083] "The Palestinian Ministry of Health illustrate how dire the situation is in Gaza: at least 45 percent of resources qualify as “scarce.” #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/dn3cg5m84S"                                                                                                                                                                                                                                                                                                
## [3084] "@realFemiOtedola @iamlepso Nigerian Businessman pledges 1 Billion Naira to fight COVID-19 https://t.co/AVOJzZhitA"                                                                                                                                                                                                                                                                                                                                                                                            
## [3085] "is it just me who feels asif nobody is talking about America when it comes to the coronavirus or am i just going insane lol #coronavirus https://t.co/NiV6SljHs4"                                                                                                                                                                                                                                                                                                                                             
## [3086] "Self-care in a trying time is not easy or in the front of our minds. If you’re on service, writing, Zooming, etc., take a break from #COVID19 to soothe yourself, even if only briefly, in your own way. For me, it’s music. @nprmusic https://t.co/xC2cMqNxS2"                                                                                                                                                                                                                                             
## [3087] "Hey, Denver! Tell me something. Who are you protecting by staying home and practicing  physical distancing? <U+0001F3E0><U+2764><U+FE0F><U+0001F44D><U+0001F3FE>Let’s see how many replies/retweets we can get<U+203C><U+FE0F>@CityofDenver #DoingMyPartCO #COVID19 https://t.co/jJIFvV3wWi"                                                                                                                                                                                                                 
## [3088] "#cdnpoli\n#uspoli\n#coronavirus\n#CoronavirusPandemic\n\nDonald Trump, the first person elected president on an unrevealed platform of \"what does it matter, we're all going to die\".\n\nOpinion: The plague of Donald Trump /via @globeandmail https://t.co/7RVHT7lDgY"                                                                                                                                                                                                                                    
## [3089] "Want to get all the facts about COVID-19? Be sure to tune in to watch @Lilly interview Dr. Fauci in ONE hour! We’re premiering right now so go and grab a spot in the chat! #TeamSuper you can also donate to @UNICEF to help children and families <U+2764><U+FE0F>\nhttps://t.co/BxASltvNDB"                                                                                                                                                                                                               
## [3090] "#supplyteachers need help now #COVID19 #CoronaLockdown #CoronaUpdate #PrayForBoris #<U+0627><U+0628><U+0648>_<U+0646><U+0648><U+0631><U+0647> #hometasking #ImAwakeThisLateBecause https://t.co/5rbZh2JPVq"                                                                                                                                                                                                                                                                                                   
## [3091] "Keylingo’s Response To COVID-19\n#covid19 #covidresponse #aroundtheworld #heretohelp #heretoserve #translationservices #translation https://t.co/niLh1aGD5v"                                                                                                                                                                                                                                                                                                                                                 
## [3092] "Addressing leaders of 96 cities around the world @ArvindKejriwal shared how Delhi aggressively pursued policy of identifying contacts of COVID-19 patients &amp; isolating them. He added, We cannot afford to lose a single life to Corona or starvation.\n\n#KejriwalAtC40 https://t.co/DlmzmUJaaj"                                                                                                                                                                                                         
## [3093] "Also known as, my anxiety showing all the symptoms of covid-19. https://t.co/8RPqiBqwzi"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3094] "Well this is not good. Now someone I know now has #COVID19. Thankfully I haven’t been in contact with her in the 14 day window."                                                                                                                                                                                                                                                                                                                                                                             
## [3095] "#IndiaFightsCorona: #NarendraModi Modi Shares A Young Girl’s Message\n#coronavirusindia\n\nhttps://t.co/UumB6HMPZu"                                                                                                                                                                                                                                                                                                                                                                                          
## [3096] "All hospitals in Ghana should be treating every patient as a covid-19 case until proven negative. Patients should be asked some basic questions at the door before being let in. Ambulance services should also ask these questions before they see or pick up a patient."                                                                                                                                                                                                                                    
## [3097] "In order to support residents who are ‘shopping local’ for their essential food and medicine supplies, we’re ceasing all car parking charges in #Knowsley town centres with immediate effect. \nRead all the latest updates about #Coronavirus in #Knowsley at: \nhttps://t.co/HetwH2LVhy https://t.co/L1P1SKjwBB"                                                                                                                                                                                         
## [3098] "The one good thing about #COVID<U+30FC>19: we are arresting youtube pranksters\nhttps://t.co/CfEVMIb53v"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3099] "As we are unlikely to get tested if we don't fit into the category of travel or contact with a confirmed case, make sure if you get these symptoms to get medical help ASAP. Just fever, aches, a cough could be the flu. Still self isolate until well again. #covid19 https://t.co/GpSo1IJdaE"                                                                                                                                                                                                              
## [3100] "UNITED STATES COMPARED TO ALL OTHER COUNTRIES #CORONAVIRUS CASES.\n\nThis is terrifying and no end appears to be in sight. https://t.co/QsnGbv4Sy5"                                                                                                                                                                                                                                                                                                                                                           
## [3101] "Covid-19: Governor Inuwa Yahaya’s multi-pronged measures and battle against coronavirus pandemic in Gombe https://t.co/iUGS9aQwgt https://t.co/3HPjm184di"                                                                                                                                                                                                                                                                                                                                                   
## [3102] "EmployBridge Chief Workforce Analyst, Joanie Courtney, discusses where the jobs are while coronavirus shuts down the job market: https://t.co/jhOVIlFoC7 #COVID19 #Coronavirus #JobMarket #Economy"                                                                                                                                                                                                                                                                                                           
## [3103] "My #poem about the #coronavirus 'I feel a little stranger' https://t.co/IqjrIuQ9Xy #CONVID19  #wemustallgetbetter #poetry #Poetry_Planet"                                                                                                                                                                                                                                                                                                                                                                     
## [3104] "Hope everyone is staying safe! #COVID19 https://t.co/N2FyoC0OmC"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3105] "@tribelaw Lack of Testing, Lack of Testing, Lack of Testing!\n\nWe aren't testing enough people\nWe aren't testing many who have come into contact with possible COVID-19 peeps (Easter is coming)\nAnd we aren't necessarily testing those who were not tested before death to confirm cause"                                                                                                                                                                                                                
## [3106] "A Lawrence County Courthouse worker has tested positive for COVID-19, leading to the building being shut down entirely except for critical staff.\n\n https://t.co/E8eikVOOHU"                                                                                                                                                                                                                                                                                                                                
## [3107] "That was a really interesting thread.  Did you see there's an @SlackHQ channel for doctors now: https://t.co/ycONMrvbtc #HITsm https://t.co/VBc10Bvynp"                                                                                                                                                                                                                                                                                                                                                       
## [3108] "Wed (11) our team talked about #Covid_19 &amp; how to avoid being racist while talking about origin stories. We were all in the office (by choice). \n\nThe WHO declared the outbreak pandemic.\n\nThurs (12) the dev team worked from home, as they do every Thurs. I went into the office."                                                                                                                                                                                                                 
## [3109] "New post on my blog: COVID-19: Nigeria Police vows to punish officers destroying properties in viral video (Watch) https://t.co/EAHS49PQUd"                                                                                                                                                                                                                                                                                                                                                                   
## [3110] "One of my friends has COVID-19 :("                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3111] "U.S has more Covid-19 cases than China and Italy. That’s crazy."                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3112] "@realDonaldTrump @WhiteHouse World super powerful man Shri. @realDonaldTrump Sir.Can U not able to kill #COVID2019 .\nIt Means Human can Kill Human easily but not Virus. \nMy Suggestion to u all World Leaders:-please try to make hospitals Ventilators instead of atombomb\n@narendramodi @BorisJohnson @KingSalman"                                                                                                                                                                                      
## [3113] "Ooo my former tv station got called out by our city manager for a misleading story. They made it sound like COVID-19 was present in the jail system. Idiots."                                                                                                                                                                                                                                                                                                                                                 
## [3114] "Larry Kudlow should be in jail for reckless endangerment of American lives. #COVID2019 #Covid19usa https://t.co/TQ7dv3A9Vr"                                                                                                                                                                                                                                                                                                                                                                                   
## [3115] "https://t.co/G4uAqAp3rL f*cking #china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3116] "Lord, please help our scientists to find the right medicines for COVID-19."                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3117] "<U+0001F9E1> We have distributed Food Packs and Hygiene Kits to vulnerable families who have fled from danger in #Syria.\n\nNot only are we distributing sanitary products, but we're raising awareness of how people can protect themselves from #Covid19.\n\n<U+27A1><U+FE0F> Donate: https://t.co/Q5A1H3Gdid https://t.co/UJXcfOAUKv"                                                                                                                                                                      
## [3118] "@MKactor77 @georgegalloway I've been told they are testing for the Corona virus but not specifically the covid-19 strain."                                                                                                                                                                                                                                                                                                                                                                                    
## [3119] "Today the US surpassed China and Italy in confirmed COVID-19 cases.\n\nhttps://t.co/OmrfjY15xo https://t.co/2j1K25rP9N"                                                                                                                                                                                                                                                                                                                                                                                       
## [3120] "#COVID19outbreak: 18 people home quarantined in Davanagere. 2 test positive for COVID-19 in #Davanagere.\n\n#COVID19India #COVID19 #Coronavirus https://t.co/3tMLE4T6tT"                                                                                                                                                                                                                                                                                                                                      
## [3121] "Gov Cuomo says NY State Legislative Session might end after April 1st following Passage of State Budget. \n#NYState #Nassau #NewYork #NY #Albany #NYC #COVID19 #budget https://t.co/Pxi95gnZSw"                                                                                                                                                                                                                                                                                                               
## [3122] "@NayakRamkrishna @noconversion @sachin_karkera Will this cure patients of COVID 19? You would have saved human lives in Italy and could convert many of them to Hindu religion. Too late. @jimmymathew21"                                                                                                                                                                                                                                                                                                     
## [3123] "Bill Gates suggests a nationwide shut-down from 6-10 weeks for better and quick results.\n\nAny person with common sense would agree. This is not dramatic. This is absolutely necessary for efficient results in response to rising cases of covid-19."                                                                                                                                                                                                                                                      
## [3124] "@funder I get all my #coronavirus briefings from America’s Governor, @andrewcuomo \n\nI will not listen to a word out of the mouth of @realDonaldTrump \n\nBecause he is a lying madman."                                                                                                                                                                                                                                                                                                                    
## [3125] "This should have been put in motion last month. I’m appalled by how slow our country (1st world) is moving in regards to #COVID19 <U+0001F926><U+0001F3FB><U+200D>♂<U+FE0F> https://t.co/d8OTMHx2Aw"                                                                                                                                                                                                                                                                                                        
## [3126] "China Shuts Down All Cinemas, Again\n#COVID_19 #Coronavid19 #CoronaVirusUpdates #CoronaOutbreak #CoronaVirusitaly #Iorestoincasa  #covid_19italia #epidemia\n\nhttps://t.co/CowW0BFF6t"                                                                                                                                                                                                                                                                                                                       
## [3127] "So according to the douchebag Governor of my state of MS, he said they are coming to my county of Desoto tomorrow with the national guard to administer #COVID19 testing to residents who “have symptoms”\nMy county has the highest number of cases. MS don’t care about it’s people!"                                                                                                                                                                                                                   
## [3128] "Animals left alone in their natural homes don’t spread disease to humans. But when we encroach on and destroy their homes and poach them for wildlife markets, viruses and diseases such as #COVID19 can be unleashed. #TWGI                       https://t.co/UTlHeQmycx"                                                                                                                                                                                                                                  
## [3129] "After all this COVID-19 outbreak I pray I don’t develop an OCD disease <U+0001F615> (obsessive-compulsive disorder)::::meaning someone suffering repeatedly from washing hands and cleaning everywhere every minute <U+0001F61E><U+0001F61E><U+0001F61E> #WashYourHands #StayAtHomeAndStaySafe"                                                                                                                                                                                                              
## [3130] "Following increased pressure on the Government to intensify support to businesses affected by the economic fall-out from the COVID-19 crisis, a new scheme has been announced https://t.co/zGDGjIuB65 https://t.co/t0BkGriJCC"                                                                                                                                                                                                                                                                                
## [3131] "Watch our live-stream on Friday of #PopeFrancis in prayer for the end of #coronavirus in the world, through Eucharistic Adoration and an extraordinary Urbi et Orbi Blessing. A plenary indulgence has been offered.\n\nWatch here:\nhttps://t.co/5Gqmumowq1 https://t.co/eBEz4l5g6N"                                                                                                                                                                                                                         
## [3132] "@thehill @kayleighmcenany Shameful is POTUS @realDonaldTrump withholding critical information about seriousness of COVID 19 that could have saved thousands of lives. Shameful is defending someone who is heartless, remorseless, cares only about himself and his money."                                                                                                                                                                                                                                   
## [3133] "@Vijayabaskarofl @MoHFW_INDIA @CMOTamilNadu @Vijayabaskarofl Dear sir, hatsoff for your efforts to curtail Covid 19. The new CRRI's who has to report for their duties from their home town needs vehicle arrangements.  Kindly ensure arrangements for their travel from home town to their rrspective medical hospital."                                                                                                                                                                                    
## [3134] "Climbing the Deadly Curves of COVID-19 and Capitalism - https://t.co/xH5lHI3B2V https://t.co/qSKe2uaDiw by @NatCounterPunch"                                                                                                                                                                                                                                                                                                                                                                                  
## [3135] "New post: \"An ER Doctor Describes What It's Like to Treat Covid-19\" https://t.co/n6YRP42iq4"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3136] "@health_z_wealth Not really!! \nhttps://t.co/d1jfm0fxu0"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3137] "The events industry is stepping up in the fight against COVID-19 <U+2014> here's how\n\nhttps://t.co/GfKpd2SV0x https://t.co/QX9twEr0zE"                                                                                                                                                                                                                                                                                                                                                                      
## [3138] "<U+0001F4F9> | Police in the French capital Paris applauds the medical staff at Clamart Hospital for their work against the #coronavirus in the country \n\nhttps://t.co/WoSNqDy667"                                                                                                                                                                                                                                                                                                                          
## [3139] "Guneev Bhinder and Brad Hanna examine implications of the Province's order that temporarily suspends the operation of any limitation provisions of a statute, regulation, rule, by-law or provincial order. #Ontario #McMillan #covid19 https://t.co/USX0xxHIoM https://t.co/mB4dhb0nXp"                                                                                                                                                                                                                      
## [3140] "Thank you to all the nhs staff and also the key workers too.\n\n#COVID2019 #clapforourcarers https://t.co/2GeKHXvDeh"                                                                                                                                                                                                                                                                                                                                                                                         
## [3141] "Saving Seafood’s Fisheries Coalition will work to ensure federal #coronavirus aid “will flow fairly &amp; equitably across regions &amp; fisheries,” says executive director Bob Vanasse. https://t.co/t31chMjxjg"                                                                                                                                                                                                                                                                                         
## [3142] "I’m on leave from work due to #COVID19 and literally have been contacted every day of the 7 I’ve been out about troubleshooting silly problems. How do I go about reclaiming my PTO hours, since I’ve easily spent several doing work of some sort..."                                                                                                                                                                                                                                                     
## [3143] "Rep. Massie defending his expected decision to force lawmakers back to Washington for a vote on the #covid19 stimulus bill, which is expected to pass by a wide margin anyways https://t.co/ADizkHiGLu"                                                                                                                                                                                                                                                                                                       
## [3144] "Indianapolis 500 postponed until August because of COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3145] "#Iran making progress in search of new funds to fight #coronavirus: Chief banker https://t.co/HVs58wr9te https://t.co/ZPh3RzWU5o"                                                                                                                                                                                                                                                                                                                                                                             
## [3146] "NIGHT RECAP: Sheltered in their homes, the team behind the @RollingStone Music Now Podcast improvises to keep the content coming. \nhttps://t.co/pTiLUnrJmS \n\n#Podcasting #proaudio #covid_19 #coronavirus @SIRIUSXM #podcastpro https://t.co/GUrOQ35lCC"                                                                                                                                                                                                                                                   
## [3147] "Why does @CNN have a commercial for an over the counter medicine for dry cough at this moment while Anderson Cooper has been interviewing Dr. Fauci and Bill Gates, among others, about #coronavirus"                                                                                                                                                                                                                                                                                                         
## [3148] "In the news: What's Inside The Senate's $2 Trillion Coronavirus Aid Package https://t.co/eKUAQSMZ74 #coronavirus #COVID19 #2019ncov"                                                                                                                                                                                                                                                                                                                                                                          
## [3149] "Wise words from our city...from over 100 years ago! #coronavirus #coronapocolypse #globalpandemic #Louisville #Covid19usa #CoronaLockdown https://t.co/PfWLgqOHUk"                                                                                                                                                                                                                                                                                                                                            
## [3150] "A woman talking to her loved one in a care center through a window here in central Nebraska. Pray for those confined and unable to see loved ones in the hospital/care facilities. \n\n#COVID<U+30FC>19 #coronavirus https://t.co/PUkGDpimCk"                                                                                                                                                                                                                                                                 
## [3151] "@WallStCynic Why indeed.    \n\n#CoronaLockdown #COVID19 #MAGA"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3152] "Take a look\n#coronavirus #Covid19usa #COVID19 https://t.co/rfeQKTbaOO"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3153] "New stickers spotted around town https://t.co/Po2rtIjHeK #covid #coronavirus #lifeundercoronavirus #Austin #AustinSolidarity #austincovid #austintx #austintexas #ATX @ North Loop, Austin https://t.co/Ke9SJwYyz7"                                                                                                                                                                                                                                                                                           
## [3154] "67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/IbFwHnl1tR"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3155] "Maharashtra: COVID-19 count shoots from 125 to 156 in 24 hours https://t.co/6nyuisEgkt"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3156] "The number of positive cases of COVID-19 reported in Washington has grown to 3,207. That’s a 24% increase from yesterday.\n\nhttps://t.co/wkuyngRe8N"                                                                                                                                                                                                                                                                                                                                                        
## [3157] "All health field workers: thank you!!!\nTradespeople: thank you!\n“Essential business”: far too many on this list aren’t “essential” at all.\nKeep washing your hands <U+0001F64F> #COVID19"                                                                                                                                                                                                                                                                                                             
## [3158] "Prevent the Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/yEkRa0HUOr"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3159] "Global #travel may become more challenging. Don't be left behind. Contact us for your #free consultation. Email info@wisiagent.com\n\n#immigration #WISI #secondpassport #visafree #COVID19 #Dominica #ThankfulThursday https://t.co/iYODjoQkbg"                                                                                                                                                                                                                                                              
## [3160] "#CoVID 19: Continental contagion_ Africa woefully ill-equipped to cope with  https://t.co/cIk79bXNVK"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3161] "Video: Coronavirus News: The latest on the covid-19 outbreak - 3/27 (FULL LIVE STREAM)\nhttps://t.co/Xhz7ZRA244"                                                                                                                                                                                                                                                                                                                                                                                              
## [3162] "NAEMT issues call to action, demands federal COVID-19 support for EMS https://t.co/sC8EXO94GI"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3163] "Watch @outlaw_renegade's broadcast: covid_19  is being used against you. https://t.co/jP0E0LBfqQ"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3164] "So proud! Even in times of such uncertainty. Acorns Children's Hospice have remained committed to support some of the most vulnerable members of our community whilst also supporting our amazing #NHS #proud #covid19 https://t.co/qRSIPReu4v"                                                                                                                                                                                                                                                               
## [3165] "#BuildBorderWall #ksleg\n\nAt least 502 people in Missouri have tested positive for COVID-19, a 41% jump in one day https://t.co/e9Avjw2BmU"                                                                                                                                                                                                                                                                                                                                                                  
## [3166] "Investment Scheme Advertising Covid-19 ‘Cure’ Leads to Arrest https://t.co/uYpsoEKjNw #fraud \"#patent\""                                                                                                                                                                                                                                                                                                                                                                                                   
## [3167] "@realDonaldTrump @generalmotors @Ford Stress of Covid 19 getting to you? Governor Cuomo has your back. Call 1-844-863-9314 for emotional support. It’s the least New York can do for you."                                                                                                                                                                                                                                                                                                                   
## [3168] "The USA just climbed to the #1 spot of the country with the most COVID-19 cases. Even with limited testing.\n\n13,732 new cases just today.\nWe could have prevented this with widespread testing at the start.\n\nTrump’s incompetence is killing people (and jobs). https://t.co/dVG09s0aOM"                                                                                                                                                                                                               
## [3169] "Bahrain, Belgium report coronavirus treatment touted by Trump is working for patients | Just The News https://t.co/VKC7iH8IWp"                                                                                                                                                                                                                                                                                                                                                                                
## [3170] "@TempletonWorld Shout-out to my rockstar twin sister, @Blargsky, who is researching COVID-19 antibodies at @WUSTLmed."                                                                                                                                                                                                                                                                                                                                                                                        
## [3171] "A Distance Learning Resource Repository for continuing grade school education during the COVID-19 shutdown is now available!  Should more resource links be added?  Please retweet &amp; leave suggestions as comments!  https://t.co/2CqdjZqSEK\n#HCPSS #HoCoMD #COVID19 #DistanceLearning"                                                                                                                                                                                                                  
## [3172] "#Coronavirus: Italy reports 919 virus deaths in one day <U+0001F637>\n\nPray for Egypt\nPray for Italy \nPray for Spain\nPray for US\nPray for UK\nPray for Germany\nPray for KSA\nPray for Jordan\nPray for Iraq\nPray for Turkey\nPray for Iran\nPray for Pakistan\nPray for India\nPray for the world <U+0001F64F>"                                                                                                                                                                                        
## [3173] "@Inevitable_ET @dee_sojournal @shawn_mcadoo @Lilpoo404 @OCDrises @Covid_19_UK Israeli Secret Intelligence Service"                                                                                                                                                                                                                                                                                                                                                                                            
## [3174] "Best thing about #Contagion being screened during the current climate? It dis-spells the notion of Corona being brought about by a tin of bat soup being consumed... #SpoilerAlert #COVID2019 #staywoke"                                                                                                                                                                                                                                                                                                      
## [3175] "Who needs #masks in bulk? \n30M #3m 1860 in the UK 5$ \n10M  3M 1860 in #Singapore 5$ \n10M  3M 1860 in #Japan 5.60$\n20M 3M 1860 in Singapore 5.50$ \n30M 3M 1860 in #Malaysia 5.37\n #n95masks #n95 #coronavirus #covid19 \n\nNeed loi and pof\nContact me via WhatsApp or cell\n+19024497613"                                                                                                                                                                                                              
## [3176] "Keep #DoingMyPartCO to stop the spread of COVID-19! Per @GovofCO, https://t.co/bU7N3LOgie has raised $7.7M from nearly 4K individuals/foundations/companies. 9K+ volunteers, including 2K health care, have signed up. Apply for relief funds up to $25K at https://t.co/J8h2uKfuUl https://t.co/KIc4CEdw81"                                                                                                                                                                                                  
## [3177] "Coronavirus: US House passes $2 trillion economic relief bill as American cases spread #Coronavirus https://t.co/Se5FPPSs0m"                                                                                                                                                                                                                                                                                                                                                                                  
## [3178] "'Chaos and panic': Lancet editor says NHS was left unprepared for Covid-19 https://t.co/Lx5a7GsNCI"                                                                                                                                                                                                                                                                                                                                                                                                           
## [3179] "NCDC Confirms 5 New Cases Of Covid-19 In Oyo, Abuja https://t.co/JYW6dKARLn https://t.co/aiZXn4enTj"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3180] "@HarvardBiz explains how you can still manage your team during this time of social distancing https://t.co/glfisE1rpt #SocialDistancinguk #coronavirus #teamwork https://t.co/4kjxipMz71"                                                                                                                                                                                                                                                                                                                     
## [3181] "Current status of #coronavirus in India <U+0001F1EE><U+0001F1F3>\nTo get more updates please do follow our page.#mediflic\n#staysafe #stayhome #COVIDIDIOTS #CoronaUpdate https://t.co/1CF49CTnrn"                                                                                                                                                                                                                                                                                                            
## [3182] "Councils and Health Professionals urge smokers to #QuitForCovid  https://t.co/TRajkRbjzI"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3183] "@curexcomplex If you’re gonna help with #COVID19 you need your sleep. This is your last abode for your most valuable asset: your mind. Do not encroach on it."                                                                                                                                                                                                                                                                                                                                               
## [3184] "China, have mercy on us. https://t.co/YEZDPiGOc4 by @kvh0117"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3185] "@samarasiri Like SGTi-flex COVID-19 (kit)? Is it available for research use only? Isn't for use in diagnostic procedures"                                                                                                                                                                                                                                                                                                                                                                                     
## [3186] "A catalyst for change: The impact of COVID-19 on Chinese consumers https://t.co/hTz62lEgI7 via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3187] "COVID-19 exposes gaps in cybersecurity safety net as millions work from home https://t.co/lAykdsgGmk   \n#COVID2019 #CyberSecurity #WorkFromHome #hacking2020"                                                                                                                                                                                                                                                                                                                                                
## [3188] "Changing your #TravelPlans because of #COVID19? Check out our list of links to the latest policies from #airlines, #cruise lines, #hotels &amp; other #travel operators | https://t.co/6r9Ji5PoOv | https://t.co/5JStsglIQi"                                                                                                                                                                                                                                                                                  
## [3189] "Watch a doctor demonstrate how to safely bring groceries home during the #CoronavirusPandemic #CoronavirusOubreak https://t.co/3ptklGGdLQ - Be smart, be safe, my fellow humans. We can still be AMAZING #TogetherAtHome #TogetherApart #ThisTooShallPass - Really! ;0"                                                                                                                                                                                                                                       
## [3190] "Charles Owino this kind of reasoning belongs to colonial chiefs, When humanity is threatened by a strange disease all U could think will make pple fear are police Cells....boss what are Police Cells compared to COVID-19?\n#coronaviruske #CurfewinKenya https://t.co/cWCXsKJQjx"                                                                                                                                                                                                                          
## [3191] "Our researchers and our staff are working from home, but we continue to work diligently on behalf of our partners and projects. Our community-focused research projects have an impact around the state in helping people during times of disaster.  #NUforNE #NUPPC #COVID<U+30FC>19 https://t.co/zJJCEbvxnC"                                                                                                                                                                                                
## [3192] "Let’s face it, we are all having to find our way during the COVID-19 health crisis. Here are a few tips for handling work and kids during COVID-19 isolation from Stephanie Pappas a Contributor to Live Science. https://t.co/RYlm2wvD2Z #covid19us https://t.co/R3a3H9nR8O"                                                                                                                                                                                                                                
## [3193] "COVID-19 related phishing attacks record massive 667% spike: Report https://t.co/yTK3RVfhe2"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3194] "When you cannot write the word COVID-19 in a story without inserting a hashtag before it. #Twitteroverload #COVID19 https://t.co/tx99CH4I81"                                                                                                                                                                                                                                                                                                                                                                  
## [3195] "@mayorcantrell LOL imagine being so stupid you couldnt make your own decision. BTW, any one who got #covid19 at mardi gras would have shown symptoms a month and a half before now. You are gross and should be removed from office. #femaleraynagin"                                                                                                                                                                                                                                                         
## [3196] "As we pass the 100k mark of covid-19 cases here in the US it’s worth taking note of a few things: \n\n 1/11"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3197] "#Classof2020 For an Associated Press story, I'd love to hear from #College seniors going thru unusual hardships, loss, uncertain futures, etc, in the wake of #COVID19. Tell me your story: mdale@ap.org."                                                                                                                                                                                                                                                                                                    
## [3198] "Physical distance from others but stay socially connected.\nGet fresh air. \nWash your hands frequently.\nSupport your local, independent restaurants.\nShop for the vulnerable.\nKeep working toward your dreams.\n\n#covid_19 \n#transformyourlife \n#beyourbestself\n\nhttps://t.co/CiAQiosPlp https://t.co/EvqH342Kl6"                                                                                                                                                                                    
## [3199] ".@adriandix BC's addition minister @DarcyJudy will be out with detailed info on safe supply here in BC.\n#bcpoli #covid19 @news1130"                                                                                                                                                                                                                                                                                                                                                                          
## [3200] "B.C. man returns to isolation in China nearly two months after fleeing COVID-19 scare https://t.co/ufHwD46uAE"                                                                                                                                                                                                                                                                                                                                                                                                
## [3201] "Oops.\nhttps://t.co/FVWroKbBi1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3202] "A Lord Of the Rings podcast with @Gene_Lyons_  @Dick_Ebert  @Roger_Roeper  from @ShatOnTV  could cure COVID-19.... maybe not but it could fix my Quarantine insanity."                                                                                                                                                                                                                                                                                                                                        
## [3203] "Warning on the use of unproven treatments (including Hydroxychloroquine, Azithromycin, and Colchine) for #COVID19 by @cpsbc_ca @BCPharmacists @BCnurses https://t.co/Lkz1DmPi7O"                                                                                                                                                                                                                                                                                                                              
## [3204] "Down cycles make #entrepreneur take deeper roots.\n\n#startup #COVID2019 #CoronaLockdown #business #FridayMotivation"                                                                                                                                                                                                                                                                                                                                                                                         
## [3205] "16 years old girl died in Paris\n#CORONAVIRUS https://t.co/fDnx1LovAs"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3206] "QBS is actively monitoring Coronavirus (COVID-19) developments. We have compiled valuable resources for you to utilize as the Coronavirus situation continues to evolve. \n\nLearn more about our #COVID19 List of Resources here: https://t.co/se5expHm8s"                                                                                                                                                                                                                                                   
## [3207] "After all this quarantine and COVID-19 sh*t is over, I think it's about time for you to realize that you deserve me."                                                                                                                                                                                                                                                                                                                                                                                         
## [3208] "Stay Safe and Stay Healthy!\n\n#EMWorks is fully committed to helping the engineering community during COVID-19 crisis and is vigilant to the changing circumstances. \n\nFor more details visit https://t.co/G9PM2XqjrN\n\n#coronavirus"                                                                                                                                                                                                                                                                     
## [3209] "Kashmir's #Blocked Internet Could be #Deadly During #Coronavirus Pandemic: RSF https://t.co/yA0AGLVdNh https://t.co/ojFUDZmMVP"                                                                                                                                                                                                                                                                                                                                                                               
## [3210] "In the actual Covid-19 crisis, sharing information is of extreme importance to learn and improve for now and the future. EUSEM wants to stimulate this by using its network and facilitate the transference of experiences between participating members from all over Europe."                                                                                                                                                                                                                               
## [3211] "Our live Webinar tomorrow for Egyptian physicians on COVID 19 , we hope to host 700 attendees interactively , registration link https://t.co/9K5e9AnIiN"                                                                                                                                                                                                                                                                                                                                                      
## [3212] "@GregAbbott_TX what do you mean everybody should get back to work and spread more covid-19. We just past china and Italy with the most cases in the world. We need to shut everything down and we need to do it now. This is already so out of  hand because yall worry more about the"                                                                                                                                                                                                                       
## [3213] "Since Trump is just randomly calling up sports media people who know nothing about virology or pandemic containment about their Covid-19 hot takes, should I wait for a phone call or nah?"                                                                                                                                                                                                                                                                                                                   
## [3214] "Uncertainty can create stress and anxiety, especially when we don't generally feel safe. Many people are worried about COVID-19, and mental health can suffer.\n\nWays to cope include:\no   limiting exposure of news\no   sharing concerns with friends or family…https://t.co/ukLN1GAg9R"                                                                                                                                                                                                                 
## [3215] "Good to know. I was wondering about that<U+0001F914> #COVID2019 https://t.co/hTZsfwJlbm"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3216] "Wow this whole COVID-19 situation had me kind of...yearning <U+0001F60F>"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3217] "Who the hell can watch TV shot in the Old World?  No masks, no distancing, no hand washing.\n\n#coronavirus #COVID19 #tFv https://t.co/zqYTKylPbk"                                                                                                                                                                                                                                                                                                                                                            
## [3218] "EDITORIAL:\nCOVID-19 Is Killing The Case For Socialized Medicine \n.\nhttps://t.co/wm8FthdLqX"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3219] "The press was decimated by @Facebook, @Google with their DIY ad platform that small and local advertisers began using instead of local papers.\n\nTo claim that COVID-19 or this President have anything to do with that is hard to stomach.\n\nBe mad at the anti-humanist tech douches. https://t.co/0yrxO8Y2rd"                                                                                                                                                                                            
## [3220] "I heard people are already moving oh .. #lockdown #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3221] "Okay I am tired of this shit. Just because #COVID<U+30FC>19 came from china don’t mean y’all call it “cHiNeSe ViRuS”. Y’all know it’s called “#CORONA” but y’all racist ass wanna be like that #ChineseVirus19 and y’all know it has so many names other than that"                                                                                                                                                                                                                                 
## [3222] "Calm down. You don’t need a #COVID19 test if it’s just sniffles. https://t.co/3jrRf6lFZs"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3223] "$GM NEW ARTICLE : Trump orders GM to start ventilator production for COVID-19 amid contract dispute https://t.co/rvTGGVmwNg Get all the latest $GM related news here : https://t.co/ikNISAP6Zp https://t.co/XfQX0UEFpo"                                                                                                                                                                                                                                                                                       
## [3224] "WFH got me tryna find my good side for all the Zoom conferences <U+0001F4F8>  #covid_19 #covid #wfh #workfromhome #workfromhomelife #dubstep @ Austin, Texas https://t.co/LOEzvP5akl"                                                                                                                                                                                                                                                                                                                         
## [3225] "WTF , this is my screen on a Thursday night <U+0001F62D><U+0001F62D>\nFuck you #CoronaVirus https://t.co/zArQTOhekK"                                                                                                                                                                                                                                                                                                                                                                                          
## [3226] "Police departments across the U.S. are taking a lead role in enforcing social distancing rules that health officials say are critical to containing COVID-19. https://t.co/sa8stF3izV https://t.co/j0VK5KzReu"                                                                                                                                                                                                                                                                                                
## [3227] "Elanco supports organizations and #foodbanks in communities including the European Food Banks Federation #WeAreElanco #coronavirus <U+2066>@EuroFoodBanks<U+2069>  https://t.co/sRB3YzWaTC"                                                                                                                                                                                                                                                                                                                   
## [3228] "His congressional salary should be cut for this stunt #COVID19 https://t.co/bWu3UayjVi"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3229] "@X22Report 666-19 aka COVID-19 is going down.  . https://t.co/qczqf3wi28"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3230] "example \"O2 saturation is 90% on room&amp; 95% on 8 litres of oxygen via non-rebreather mask.\" a case on 23/3 https://t.co/YHt7E6mE8x after 8 liters on 95% via non rebreather mask #nl #rutte3 #who https://t.co/NBBFHKD2ue cant that be done at homes? that would save spreading&amp; space"                                                                                                                                                                                                              
## [3231] "“The UK death toll rose by 181 to 759, the highest day-on-day increase so far, and the rate of infection has been doubling every three to four days. Michael Gove announced that 113,777 people have now been tested for Covid-19; of those 14,543 have test…” https://t.co/N9JWp9hTeY"                                                                                                                                                                                                                    
## [3232] "@RobinVe97767932 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs."                                                                                                                                                                                                          
## [3233] "@maddow just wondering, no news channels are talking about how trump had those hats made in China. He refused to give that business to an American co. How is that okay. And try and call covid 19 the Chinese virus. This man is crazy."                                                                                                                                                                                                                                                                     
## [3234] "@WHO how should we, as citizens, act if the \"official\" data is not to be trusted?\n\n#COVID2019 #CoronavirusMx #BREAKING https://t.co/UwtbNG6U3e"                                                                                                                                                                                                                                                                                                                                                           
## [3235] "#coronavirus family highlight - the boys swimming in the Rivanna River, ample social distancing aided by totally freezing water. https://t.co/U9wBr3kryU"                                                                                                                                                                                                                                                                                                                                                     
## [3236] "#coronavirus | #scams | coronavirusscams | Scams spreading along with COVID-19 https://t.co/qidtlzY9yy https://t.co/qAfzRqnGtq"                                                                                                                                                                                                                                                                                                                                                                               
## [3237] "who is coming with the limited edition Covid-19 flavor first, Oreo or Lays?"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3238] "Definitely didn’t want to be #1 in this \n\n#COVID19 https://t.co/qYgfJYzTtI"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3239] "An important read from @Adlers1 and @HIVIreland https://t.co/MhKWa4i6tM #mpower"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3240] "I’ma start a petition about how cable should be free or refunded during this #COVID19 nothing is on"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3241] "Major players in the pickup and delivery segment, like Amazon, are facing big changes amid the COVID-19 outbreak, including shifts in delivery volume as millions of people across the U.S. shelter in place and avoid going out into public to work or shop. https://t.co/g1A13IwcdK"                                                                                                                                                                                                                        
## [3242] "Governors need federal help fighting coronavirus, and the cost is stroking Trump's ego https://t.co/svSRsYbrfF"                                                                                                                                                                                                                                                                                                                                                                                               
## [3243] "South Heartland District Health Department announces two additional COVID-19 cases: https://t.co/CKyzDtgO2A https://t.co/oIOXkHYZMo"                                                                                                                                                                                                                                                                                                                                                                          
## [3244] "@NCDCgov  should not forget some people are  asymptomatic carriers\nI don't think anything should stop people from getting tested \nThere are billions of donations already\nEvery life count...#covid-19#"                                                                                                                                                                                                                                                                                                   
## [3245] "No resident doctor should be posted at any #COVID19 facility without undergoing the \"essential\" training module being conducted by hospital infection control teams, said the Union Health Ministry.\nhttps://t.co/wu3mLaAQii"                                                                                                                                                                                                                                                                              
## [3246] "Asses. Respond. Mitigate. Recover. https://t.co/7lKWTUQoI3"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3247] "@ToscaAusten @SusanCTurlingt1 @IngrahamAngle Since America has the third largest Chinese population in the world and since those heavy populations are in Elmhurst Nassau Suffolk NY and #Florida Broward Miami West Palm Orlando #Seattle #coronavirus #ChineseVirus seems related #COVID19"                                                                                                                                                                                                                 
## [3248] "Thinking about #onlinedating ? We want you to stay safe! https://t.co/IhgIgpt67y #SocialDistanacing #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3249] "Here is a sad poem by our GI fellow #DaneCook on #COVID19 affecting training. #GItwitter #MedTwitter\nA thread..."                                                                                                                                                                                                                                                                                                                                                                                            
## [3250] "@Beccamurr @pfc_joker In #Libya, evidently, they figured out how to make #Covid19 (heat resistant) ammo"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3251] "Must Read for all political geeks. The Liberal world is crumbling before our eyes! #OneNation #coronavirus https://t.co/9WYEUzEtUd"                                                                                                                                                                                                                                                                                                                                                                           
## [3252] "Edinburgh (Royal Mile, Princes Street) On Covid-19 Lockdown (2020) https://t.co/REeauZ997V via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3253] "Is #russia trending because everyone is calling BS on theirs and China’s #covid-19 numbers by any chance?"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3254] "CuriousAngel: Tell Congress: Don’t let Trump arrest people indefinitely during the COVID-19 pandemic! https://t.co/GZ7Cs9kV0O"                                                                                                                                                                                                                                                                                                                                                                               
## [3255] "@DrTomFrieden #blowhard. @DrOz don't have Thomas Frieden on again. Full of hot air critical of @POTUS but few  solid suggestions. Less talk, more action. He's another biased #BarackObama appointee looking to slam @realDonaldTrump Stop playing politics with #coronavirus   #DrOz"                                                                                                                                                                                                                        
## [3256] "STANCOVID19 Message https://t.co/F32yw3tKgy Stanislaus County reports 17 have tested positive for #COVID19 No Deaths Reported #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                   
## [3257] "@luigi_warren @Barnes_Law @CFieldofDreams @ClayTravis We have a flu vaccine. And the CFR for flu is 1/10 Covid 19. Pretty easy to justify actually."                                                                                                                                                                                                                                                                                                                                                          
## [3258] "@matthew_d_green @mattblaze You mean every single person that attended the last #Ethereum conference came down with #COVID2019? Is that correct?"                                                                                                                                                                                                                                                                                                                                                             
## [3259] "It's very emotional and heart touching to see all the people saying Ameen in one voice when Imam Sahib prayed against the Corona virus and to see people calling aazan in night.. Pray that we will always be together even after this calamity is gone.\n#COVID2019\n#unity\n#Muslims"                                                                                                                                                                                                                       
## [3260] "Davido’s fiancee, Chioma, now on COVID-19 victims’ list https://t.co/OWweXRWzBi"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3261] "@DeltaCargoATL hello,please I have just been over charged by $55 by your personal at PTI airport office in GSO,NC,I need help getting my money back ASAP ,cause it gonna go a long way in this time of covid-19. Hope someone will reach out to me thanks"                                                                                                                                                                                                                                                    
## [3262] "As on March 27, India can spare just a little over 14000 ventilators with Tamilnadu (4177) &amp; Mah, AP over 1000 each, other states have less than 1000 for #COVID2019 isolation @businessline @srinivasanravi @sharmasupriya\n@RemaNagarajan\nhttps://t.co/urCsFKM7NV"                                                                                                                                                                                                                                     
## [3263] "\"How to distinguish COVID-19 symptoms from allergies and the common cold\"  https://t.co/gig1Me4pWC"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3264] "Kind attention @CMOTamilNadu\n&amp; @Vijayabaskarofl wake up n act \n#CoronaUpdate #StayHome\n#lockdown #COVID\nhttps://t.co/mGkuBEK0gF"                                                                                                                                                                                                                                                                                                                                                                      
## [3265] "indonesia is the only southeast asia country here and its absolutely terrifying, but do you have any good news abt our updates on fighting covid-19? https://t.co/Dr18I5SXzM"                                                                                                                                                                                                                                                                                                                                 
## [3266] ".@michaelgove @UKgovcomms and most of Westminster/London/English political and health spokespeople still peddling misleading messages about #coronavirus. There is no 'country', 'nation'. You are deliberately excluding #Cymru #Wales #Scotland and north of #Eire #Ireland"                                                                                                                                                                                                                                
## [3267] "A quick update from Mayor Tom Brady about Covid-19. https://t.co/vm2t5vRclh"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3268] "@HathwayBrdband we are all working from home. Pls don't let us down. Speed must be good enough. Thank you!\n#work #WorkFromHome #coronavirus #COVID2019 #StayAtHomeSaveLives"                                                                                                                                                                                                                                                                                                                                 
## [3269] "The moment I realized that I'll be a year older by the time they let me outta this MF'n house...thanks #COVID19 ! Working from home SUCKS! https://t.co/fJ0YJleAq6"                                                                                                                                                                                                                                                                                                                                           
## [3270] "1- Airborne \n2- hemorrhagic fever \n3- hysteria \n4- psychosis\n5- anxiety\n\nHuman extinction in 5 mutations... still want to go out and party? #CoronaLockdown #COVID19 #CoronaUpdate #Quarantine #CoronaCrisis"                                                                                                                                                                                                                                                                                           
## [3271] "Ventilator vs. respirator, quarantine vs. isolation: Covid-19 pandemic terms, defined https://t.co/48OmKl3gko via @voxdotcom"                                                                                                                                                                                                                                                                                                                                                                                 
## [3272] "COVID-19: Lagos Assembly passes law to jail lockdown offenders https://t.co/JssAbKzuDs https://t.co/jpryuxDMXx"                                                                                                                                                                                                                                                                                                                                                                                               
## [3273] "Our partners never stop working! @WDNArgentina held a virtual meeting today to discuss how the #COVID19 crisis is affecting women in the country, as well as ideas and strategies to overcome those challenges. https://t.co/tL9kkxRez9"                                                                                                                                                                                                                                                                      
## [3274] "So glad I’m able to take two weeks paid time off to help my folks and watch my daughter. But FFS I’m gonna gain 50 lbs by the end of it. I cannot stop eating. #CoronaLockdown #SelfIsolation #COVID19 #Covid19PigOut #NonStopEating #CoronaFoodBinge #QuarantineWithGirlScoutCookies"                                                                                                                                                                                                                      
## [3275] "5 Ways To Rethink #CustomerExperience In The Face Of The #COVID19 via @kerrybodine \nQUI TAKEAWAY: Just do the right thing. Spotlighting @zoom_us.\nhttps://t.co/KCfnjcAM2r #CX"                                                                                                                                                                                                                                                                                                                              
## [3276] "As antibiotic resistance becomes a global challenge, developments such as these, which could lead to potential treatments for infections, are welcomed.\n\n#cannabis #marijuana #antimicrobial #COVID19 #Coronavirus https://t.co/ZYDSyR54B7 https://t.co/sTBvAq7i01"                                                                                                                                                                                                                                         
## [3277] "BC announced a list of essential services. These #bcbiz are encouraged to remain open to preserve life, health, public safety and basic societal functioning while following PHO guidelines to ensure safe ops and reduce the risk of transmission of #COVID-19. https://t.co/ve7H1WVYd1 https://t.co/2vCiOD2qgM"                                                                                                                                                                                             
## [3278] "Coronavirus (COVID-19) Resources for Photographers (UPDATED 3/26/20) https://t.co/Co6sGoOVsU"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3279] "Looking for a podcast to answer your questions about #COVID19? Decided our Petri Dish Minisodes on #SARSCoV2 are too stupid or profane or NSFW? Check out this much more intelligent and acceptable alternative! https://t.co/24qYDgpmCA"                                                                                                                                                                                                                                                                     
## [3280] "@SethAbramson Cases in WA are doubling approx. every week. We are at nearly 4K cases.<U+0001F9A0>s are not political! trump is heinous! <U+0001F92F><U+0001F92C>#WashingtonStrong #COVID19 #CoronavirusOutbreak #COVID #TrumpMadness #COVID2019 #TrumpVirus2020 #WeGotThisWA @GovInslee @PattyMurray @MariaCantwell @RepDennyHeck https://t.co/YDjl20k33P"                                                                                                                                                    
## [3281] "Apple releases COVID-19 app, website based on CDC guidance - https://t.co/18FY5eQ1Mm\n#technews #techison https://t.co/EqqtJfBbQs"                                                                                                                                                                                                                                                                                                                                                                            
## [3282] "Saw this in a FB group today - a woman offered if u need groceries, I will park my car right beside yours. You leave your kiddos in your car with snacks and I will guard them with my life. #PhysicalDistancing. If needed, I would fly out of my car ♡ #caremongering #COVID19"                                                                                                                                                                                                                            
## [3283] "COVID-19 or Master-Kit?\n\nAmong more than 150,000 users of MasterKit, there are no infected Corona-Virus!!! \nMaster Kit will help you achieve results in a more efficient way.\nLearn more here https://t.co/YKh0udyNwP\n\n#masterkit #covid19 #coronavirs #virus #psichology https://t.co/bmIDtwEK0t"                                                                                                                                                                                                      
## [3284] "Ireland heading for recession this year as Covid-19 hits economy, ESRI warns https://t.co/qQWYmfzPY6"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3285] "In an alternate universe where Covid-19 wasn’t a pandemic, Aaliyah just announced she was dropping her 14th studio album<U+0001F49E>"                                                                                                                                                                                                                                                                                                                                                                        
## [3286] "If I keep eating all the carbs at home and gain the #COVID19, then I am going to need to see what all the fuss is all about with these SPANX leggings. \n\naffiliate link: https://t.co/KCEhKe8IQA https://t.co/25CoZ1J1CU"                                                                                                                                                                                                                                                                                   
## [3287] "It’s hard to believe you’re saying that as well. Looking at your track record, you’re not going know who you’re talking to.  #SadButTrue #COVID19 #coronavirus https://t.co/uIaxHqqPWM"                                                                                                                                                                                                                                                                                                                   
## [3288] "1/ As most of us #StayHome to help slow #COVID-19, we're fighting boredom too! And despite our best efforts to focus on something productive (like learning Chinese), it can be hard to concentrate."                                                                                                                                                                                                                                                                                                         
## [3289] "this is the maps on Indonesian COVID-19 https://t.co/4LvEqkDWCG"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3290] "It's 80° in Tennessee today,  nobody is staying home.  When are you going to do something, Governor @GovBillLee? \n\nYour prayers aren't working,  and these #COVID19 Covidiots are gonna keep this thing going until they cost us football."                                                                                                                                                                                                                                                                
## [3291] "#NeeraTandenisaLiar\n\nThe Sanders campaign wanted the primaries postponed due to COVID-19, told voters the truth about the risks, and asked people to follow their consciences. @neeratanden knows this, but she doesn't care about the truth. She only cares about smearing Bernie. https://t.co/5g1Zae5pu4"                                                                                                                                                                                                
## [3292] "#NSTsports Dybala says #Covid19 left him struggling for breath https://t.co/8Uze4N4Ios"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3293] "There are now 8,825 confirmed #COVID19 positives statewide, with 108 deaths... Backlog for testing is about seven days... 1,872 people are awaiting results https://t.co/yyCiF4yQf2"                                                                                                                                                                                                                                                                                                                          
## [3294] "There are now 7 confirmed cases of #COVID-19. It important that we adhere to the 21 day lockdown as announced by @edmnangagwa, as we continue to fight against the virus.\nRemember to practice good personal hygiene &amp; wash hands frequent with soap &amp; water. Unity of purpose is key https://t.co/wKQFNWJdo1"                                                                                                                                                                                       
## [3295] "Great webinar from the #CDC on underlying medical conditions in patients with #COVID19: some take-home points are 1) do not discontinue ACEI and ARB in pts with HTN 2) no evidence to recommend against taking ibuprofen 3) obese young people are at higher risk 4) smoking is a risk. https://t.co/KGwLMHD62L"                                                                                                                                                                                             
## [3296] "#Coronavirus death rates in the U.S. are lower in our Country now because our hospitals aren’t as over-stressed as other places and we still have supplies and equipment. Things could change rapidly if we don’t infection growth rates. #AllIn #ChrisHayes"                                                                                                                                                                                                                                               
## [3297] "The world is on lockdown because of fake numbers!\nHow can anyone with a brain not see what's going on???\n#Plandemic #plannedemic #COVID19 #Coronavirusireland #coronavirus\nhttps://t.co/aXKLSUQNT4"                                                                                                                                                                                                                                                                                                        
## [3298] "Join us at 10 tonight @RTERadio1 for the Leap of Faith with the voices of different faiths and belief, sharing their insight into their comprehension of #coronavirus @dunne_op @frpaddybyrne @IrishHospice @churchofireland @DrUmarAlQadri @rogerchilds2u @FionaEnglish1 @iankilroy https://t.co/1qg4Xs4bn2"                                                                                                                                                                                                 
## [3299] "The hospital where I was born is now being called the epicenter of New Jersey Covid-19. https://t.co/G4vWvF8FJG"                                                                                                                                                                                                                                                                                                                                                                                              
## [3300] "#Coronavirus death toll crosses 4,000 in #Spain as country's health system collapses under overwhelming pressure on emergency services https://t.co/ErP0B5x1cH"                                                                                                                                                                                                                                                                                                                                               
## [3301] "COVID-19 needs a Manhattan Project https://t.co/dRovk7kth9 \n\n#NationalActionEssential\n@maddow"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3302] "Need breakfast brought in to your office during this difficult times? Contact us for more details.\nAssorted pastries and specialty coffee options. \n.\n.\n.\n.\n.\n.\nmitteracreative #specialtycoffee #pastries #covid_19… https://t.co/KLJOw4OUEG"                                                                                                                                                                                                                                                       
## [3303] "Don’t blame it on... #China\n\n#Covid19usa #COVID19 #COVID2019 #coronavirus #CoronaLockdown #CoronaVillains #CoronaUpdate #TrumpPressConf #TrumpPlague #TrumpVirus #MichaelJackson https://t.co/l98XpTpc7K"                                                                                                                                                                                                                                                                                                  
## [3304] "@tribelaw It’s now &gt;100,00. \n\nThe impact to the US from covid-19 will shock and change the world"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3305] "Sign the petition to make sure that any #COVID19 vaccine developed with public money is made affordable to all #Coronavirus https://t.co/OgPV4WXWTr"                                                                                                                                                                                                                                                                                                                                                          
## [3306] "Police personnel from #TeamDurga unit of Hospet #police crackdown on those defying the #LockDown orders unnecessarily in #Hospet, #Ballari. @DeccanHerald @CMofKarnataka @BSBommai @DgpKarnataka @D_Roopa_IPS #Covid19 #CoronaVirus #Lockdown #Karnataka. https://t.co/pTLy2NhlPN"                                                                                                                                                                                                                            
## [3307] "Thing one and thing two helping make figures. #covid19 #newpi @AcademicChatter https://t.co/pzA0o3AHJY"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3308] "Name of District and state of India effected by Coronavirus \n#CoronaLockdown #COVID2019india #covid19 #CoronavirusOutbreak \nSource <U+0001F447>\nhttps://t.co/5y8DuXuuGf https://t.co/IjK0wHPnR2"                                                                                                                                                                                                                                                                                                           
## [3309] "Global doctors on COVID-19 and nuclear war https://t.co/eR0KITn47d"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3310] "If they actually delay this bill and the relief it will be bring to Americans they are lower then scum. #cortez #massie #amash #attentionseeker \n\nThere is no need to require a recorded vote for the #CARESAct passed unanimously by the #Senate #COVID2019 #CoronavirusPandemic https://t.co/GT7tF4sdxi"                                                                                                                                                                                                  
## [3311] "At Blue Yonder, we are committed to helping our customers throughout the supply chain derive insights into the #COVID-19 pandemic and how to adapt quickly. Check out this blog series to learn more: #coronavirus  https://t.co/1WvOiy51El"                                                                                                                                                                                                                                                                  
## [3312] "From 15 March, there has been 23k new benefit claims - up tenfold in NI. There has been on average 4k phonecalls a day. Huge demand on @CommunitiesNI staff #UC #COVID19"                                                                                                                                                                                                                                                                                                                                     
## [3313] "@WHO @CDCgov @VDHgov @ahahospitals would it be best, in a relatively low hit area, to try to get #COVID2019 while #ventilators and beds are still available? https://t.co/naWLz2dTAI"                                                                                                                                                                                                                                                                                                                         
## [3314] "\"The Cult of the Shining City Embraces the Plague\"\n\nhttps://t.co/pESdYpC6oe\n\n#COVID #COVID19 #coronavirus #coronavirusoutbreak #CoronaVirusUpdate #pandemic #stayhome"                                                                                                                                                                                                                                                                                                                                  
## [3315] "@nikkimwalls I've been, if anything, Tweeting more than usual regards poetry/poems/rhymes: I don't think I have any to add regards Covid-19 discourse, and agree that writing does not all the sudden go void of importance.."                                                                                                                                                                                                                                                                                
## [3316] "Frontline #essential workers working over 20-hours a week should have access to #healthbenefits ! Time for #CVS to provide them to #parttime #pharmacist and #tech in the fight again #COVID19 #APhA https://t.co/xJrVfnv3Xi"                                                                                                                                                                                                                                                                                 
## [3317] "To cut your risk of contracting the corona virus, avoid touching your eyes, nose or mouth with unwashed hands.\nEducate your children about the importance of sanitization at this point.\n#Vignan4Nation #VignanSchools #coronavirus #corona #preventcorona #socialdistancing https://t.co/CLIWGtYByz"                                                                                                                                                                                                       
## [3318] "COVID-19 https://t.co/YiTrwJ5RBK"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3319] "FBI issues warning about COVID-19 stimulus-package scams #blockchain #tech #technology https://t.co/gomQ14XdX7 https://t.co/d5sDz00GEK"                                                                                                                                                                                                                                                                                                                                                                       
## [3320] "@AirbnbHelp I am aware of that page, thank you, I check it daily. If you would extent the covid-19 policy then more people will cancel their April and May bookings (bookings that were made before March 14!) then hosts will be at liberty to help the frontline workers if the can."                                                                                                                                                                                                                       
## [3321] "Impact of cardiac injury <U+27A1><U+FE0F>outcome of #COVID19 #epeeps #cardiotwitter <U+2066>@DavidDuncker<U+2069> <U+2066>@Dominik_Linz<U+2069> <U+2066>@DrJohSteinfurt<U+2069> <U+2066><U+2066>@DhirajGuptaBHRS<U+2069> <U+2066>@SchakrabartiEP<U+2069> <U+2066>@drjwdietrich<U+2069> @MDTolgaAksu<U+2069> <U+2066>@ALFIEEP1<U+2069> https://t.co/fSeCob8aW6"                                                                                                                                                
## [3322] "Can everyone stfu about politics wether u like Boris or not the country and world is dealing with a pandemic that due to the popularity of travel is difficult to stop. Instead of criticising the nhs and the government maybe be greatful that their trying to fight this. #COVID2019 https://t.co/B2Zyg94CWf"                                                                                                                                                                                              
## [3323] "@BorisJohnson Buying ventilators saves lives. Why are you not doing so? Are blue passports that important? No 10 accused of putting 'Brexit over breathing' in Covid-19 ventilator row\n\nhttps://t.co/ZXLx1MTttO"                                                                                                                                                                                                                                                                                            
## [3324] "Emerging data suggest that SARS-CoV-2 could infect the nervous system and may possibly be responsible for some of the acute respiratory failure found in patients with COVID<U+2010>19.\n\nhttps://t.co/coMhB7OM4k \n\n#covid19 #covid #coronavirus #Wuhan #virology #News #SARSCoV2"                                                                                                                                                                                                                         
## [3325] ".@CMSGov announces #Medicare telehealth expansion: enabling beneficiaries to receive a wider range of health care services during #COVID19 pandemic. No traveling required. https://t.co/AHx7bVQXIh https://t.co/DGDgwqARWu"                                                                                                                                                                                                                                                                                  
## [3326] "And now they award the ventilator contract to a rat who deserted the sinking ship &amp; legged it to Singapore causing 100s job losses. They ignored ventilator manufacturers in UK, who employ our citizens &amp; pay their taxes. They don't give a damn. #ventilators #COVID19 https://t.co/48ibCyImEK"                                                                                                                                                                                                    
## [3327] "If you want to help me for #free please get this app https://t.co/ZSnPY2Qqzg #coronavirus #CoronaLockdown"                                                                                                                                                                                                                                                                                                                                                                                                    
## [3328] "Coronavirus: Campaigners call for HS2 works to be halted immediately | inews https://t.co/Wf8tJWxaam"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3329] "Samples are prepared for #COVID19 testing at MHS Labs in Monroeville on Friday, March 27, 2020. https://t.co/Hh6jtHAqfx"                                                                                                                                                                                                                                                                                                                                                                                      
## [3330] "RECAP Susquehanna Valley EMS says the calls happened on 3/21 &amp; 3/24. Says the calls were not for COVID-19 cases at the time so workers were not wearing protective gear...."                                                                                                                                                                                                                                                                                                                              
## [3331] "‘Stay at home’: Further Covid-19 restrictions announced https://t.co/fZNLIoUoXc https://t.co/BKuODv2kKg"                                                                                                                                                                                                                                                                                                                                                                                                    
## [3332] "@ConsumerSOS @MercedesGlobal @BootsUK Cool.  I don't have COVID 19.  I'm just post menopausal."                                                                                                                                                                                                                                                                                                                                                                                                               
## [3333] "<U+0001F4EC> I delivered this <U+2709><U+FE0F> from Eben, a <U+0001F5F3> verified voter in Pittsburgh, Pa., to @SenBobCasey, @USRepMikeDoyle and @SenToomey #PA18 #PApol #COVID19\n\n<U+0001F4DD> Write your own: https://t.co/z5540KFSKD https://t.co/p8QER1ETh6"                                                                                                                                                                                                                                            
## [3334] "@tribelaw Over exhausted healthcare system is the mortality rate is so different. We’re relatively early in the stages and we still have beds and manpower to care for the infected. Check the mortality rate again in 3-5 weeks. Also, wait until Florida cases really skyrocket. <U+0001F622> #coronavirus"                                                                                                                                                                                                
## [3335] "This is for all #NHS workers and all others on the front line. Well done haverhill. You have made us proud #COVID2019 https://t.co/Mv6ZnsgO8I"                                                                                                                                                                                                                                                                                                                                                                
## [3336] "@aajtak Jiska COVID-19 attack kr liya h to chahe jitna v test karwa lo result positive hi ayega unless proper treatment is not given...."                                                                                                                                                                                                                                                                                                                                                                     
## [3337] "Lolz remember when JANUARY seemed  like such a long month?\n\nMarch comes along all, \"Winter Has Arrived\".\n\n#COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                                                                             
## [3338] "“There is something powerful about naming this as grief. It helps us feel what’s inside of us...When you name it, you feel it and it moves through you.”\n\nBest and most useful read of the week <U+0001F447> @HarvardBiz #COVID19 https://t.co/DrqEIvPkPU"                                                                                                                                                                                                                                               
## [3339] "It's pub quiz Friday. #COVID19 https://t.co/DWqzuDmTQC"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3340] "We made a CORONAVIRUS!  // UK DOCTOR // Covid-19 Vlog #7 https://t.co/ZtYqqinRjN via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3341] "@ReginaA1981 At the system. Now all of those people who voted for Trump or third party are killing people. It’s sad. And like him they refuse to accept responsibility.  I’m praying for your doctors, my husband, my niece and all of them on the frontline in this fight against #coronavirus."                                                                                                                                                                                                           
## [3342] "@MBJMemphis Bravo! @DwellsyRents is calling for nationwide ban on residential evictions, long term repayment schedules &amp; moratorium on reporting failure to pay rent due to #COVID2019 https://t.co/KqJXvlFbfX"                                                                                                                                                                                                                                                                                           
## [3343] "Because “war” gaming is what we do. \n\nSome interesting thoughts in this article. Worth the read.  https://t.co/FXEAOvnoH7"                                                                                                                                                                                                                                                                                                                                                                                
## [3344] "My wife runs @NowBoardingMed from home. We’ve set the lights on the pet hotel to shine blue tonight in support of the @NHSuk #NHSheroes. Thank you for all of your hard work, bravery, and selflessness. #StayHomeSaveLives #COVID2019 #NHS #clapforourcarers https://t.co/w4GcaacUyj"                                                                                                                                                                                                                       
## [3345] "satgas covid-19 @sigwyn_KRJ @infomitigasi https://t.co/qVC8mWkJZu https://t.co/W8rJg9ZADi"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3346] "While a majority of the world's students learn from home Singapore's K-12 and tertiary institutions are only now beginning to implement remote learning incrementally.\n\n#edtechasia #edtech #covidedtech #futureoflearning #futureofwork \n\nhttps://t.co/0OTc2p5r7R https://t.co/a2bpt1w4B0"                                                                                                                                                                                                               
## [3347] "@Polysomzzz Hopefully we won't have to feel sorry for people dying due to TDS. The FDA is testing it <U+0001F601><U+0001F44D>\nhttps://t.co/TZm0sZJlAP"                                                                                                                                                                                                                                                                                                                                                       
## [3348] "Equally, we want to know we have a President,( not a General) who is thinking about the seriousness of the COVID- 19 Pandemic, and is committed to creating measures that protects all #Nigerians, so #WhereIsBuhari https://t.co/AdtLgqVYqd"                                                                                                                                                                                                                                                                 
## [3349] "@TMobileHelp They probably will have the #covid19 vaccine out before I get my issue resolved. #tmobilesucks #saynotobadcustomerservice #badcustomerservice"                                                                                                                                                                                                                                                                                                                                                   
## [3350] "@KTRTRS @TelanganaCMO Sir please address one of the most imp pt, all schools have charged us for academic year..But due to this Covid 19 schools are closed till June. Request Govt can recommend to move the first term fee to second ,it would be of great financial help. <U+0001F64F><U+0001F64F><U+0001F64F><U+0001F64F><U+0001F64F>"                                                                                                                                                                    
## [3351] "#Germany deploys 15K soldiers to combat #COVID-19 crisis \n\nhttps://t.co/5nEzFJDG3c https://t.co/6VGpivg16k"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3352] "What Could be the Possible Economic Fallout For The Bahamas with COVID-19.\n\n1. Increased Debt to GDP\n2. Increased Expenditure and Low Revenue \n3. Depletion of Foreign Reserves \n4. Increase Poverty among Vulnerable Communities\n5.  Economic Contraction\n6. Increase Debt Levels"                                                                                                                                                                                                                    
## [3353] "No Treatment &amp; No Way to Return Home: Patients at Delhi Hospitals Say Hunger, Not Covid-19, May Kill Them https://t.co/WDdGhXVntL https://t.co/2UzFDtsRFB"                                                                                                                                                                                                                                                                                                                                                
## [3354] "Our company continues to help combat COVID-19 with the launch of a new, rapid test that delivers results in minutes.\n\n#ProudToBeAbbott @AbbottNews https://t.co/RpAjnc5M5g"                                                                                                                                                                                                                                                                                                                                 
## [3355] "The Turner Report: Seven dead from COVID-19 in Oklahoma, 248 cases reported... https://t.co/RsshO4nz2j"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3356] "@livecnn , how are the homeless managing this covid 19?"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3357] "How is it for you? #COVID19\n#workingfromhome https://t.co/mq6NNI3zkA"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3358] "#Coronavirus Response Volunteers ready for action https://t.co/dK5LXPZFeA via @rgneighbours #rdguk"                                                                                                                                                                                                                                                                                                                                                                                                           
## [3359] "\"We are in a crisis! A pandemic! The coronavirus is spreading. The uncertainty of the unknown is probably the most unsettling of the whole situation. Especially for someone with an underlying health condition.\"\n\n#COVID19 #millionsmissing #pwme #myalgicE\n\nhttps://t.co/1yQgU4O3bg"                                                                                                                                                                                                                 
## [3360] "Here's the key coronavirus COVID-19 symptom nobody is talking about\nOne nurse in Kirkland has noticed a common symptom throughout every patient she has treated with COVID-19. Patient who has tested for positive for COVID-19 has had red eyes."                                                                                                                                                                                                                                                           
## [3361] "Covid-19: Davido’s Baby Mama, Chioma Tests Positive https://t.co/1QJi6KlTK8 https://t.co/1XVLGftrVo"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3362] "you know, the under 40 crowd---Bernie's base---is the least likely to die from COVID-19\n\nit's the over 40s that can't afford to be out and about\n\nand with the #CorporateCoup in Washington, seems like a good time for the youth to revolt\n\n#CoronavirusCapitalism"                                                                                                                                                                                                                                    
## [3363] "Christian VIRUS denier calling it &amp;quot;mass hysteria&amp;quot; dies of COVID 19 in VA https://t.co/eOfz1lICIk  #JustPlainPolitics"                                                                                                                                                                                                                                                                                                                                                                       
## [3364] "#CoronavirusOubreak\n#ChineseVirus \n#21daylockdown #Lockdown21 \nUpto 5th april time is very crucial now actually people are coming out who are finding symptoms ,if people follow it seriously we will definitely beat corona"                                                                                                                                                                                                                                                                              
## [3365] "I just signed up for the free Adobe Summit. 5 ways to learn new career skills for free during the COVID-19 crisishttps://www.fastcompany.com/90482602/5-ways-to-learn-new-career-skills-for-free-during-the-covid-19-crisis"                                                                                                                                                                                                                                                                                  
## [3366] "I told my own self that I had bigger goals. <U+0001F30D>\n.\n.\n#tbt #model #fitness #ucf #blessed #astronomical #entrepreneur #goals #models #miamimodel #thinkingbig #entrepreneurmindset #coronavirus #quarantine @ Miami Beach,… https://t.co/vvbtAEYmIe"                                                                                                                                                                                                                                                
## [3367] "Wearing a crop top to keep yourself accountable #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3368] "@adeife_01 @KemiAsekun @MBuhari Maybe her thought process has been distorted by COVID-19."                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3369] ".@CMOIreland tells @rtenews in 1% of cases in Western world #COVID19 results in mortality."                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3370] "Hospital suppliers take to the skies to combat dire shortages of COVID-19 gear https://t.co/bnpnxZeOwn"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3371] "@chrislhayes Not to mention the littering of 100’s of used masks and gloves all over places like Walmart parking lots potentially carrying #COVID19 #CoronaVirus \nIt’s a worldwide issue. We the citizens of earth as a COLLECTIVE need to wake up and unite\nIn Love\nWishing you safety <U+0001F64F>"                                                                                                                                                                                                    
## [3372] "NEW! \"Wing Whiskers &amp; The K-9 Grapevine\" - Imagine if somebody handed you the armpit\n\n<U+0001F3A7> https://t.co/zt0Vyn2hTp\n<U+0001F310> https://t.co/TgUrRaJYFC\n\n#thetragedyacademy #podernfamily #podcast #podcasts #memes #covid19 #covid-19 #coronavirus #stayathome #socialdistancing #quarantinelife https://t.co/1JsxPIl4kG"                                                                                                                                                                 
## [3373] "@Alex_Stafford Hello Alex, can you help me obtain daily Covid-19 cases data by date by nhs region for past dates? Only totals are provided and are overwritten. https://t.co/JEvJ0NHhcq"                                                                                                                                                                                                                                                                                                                      
## [3374] "@_alexforrest @COdendahl @BorisJohnson And I think I heard a poll on the radio saying that 94% of labour voters approved of his approach to Covid-19!!"                                                                                                                                                                                                                                                                                                                                                       
## [3375] "OK #selfemployed here’s the criteria\n\nhttps://t.co/mJYouvm4aq"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3376] "Financial advisor talks about the #economiccrisis during the #coronavirus pandemic. https://t.co/jPVQcbSxwY"                                                                                                                                                                                                                                                                                                                                                                                                  
## [3377] "I am a women of my word. The postman at the Hinsdale post office appreciated that I brought him lotion for his dry hands #COVID19 #WeAreInThisTogether https://t.co/awk9N6H4CX"                                                                                                                                                                                                                                                                                                                               
## [3378] "Woohoo! Thanks to @realDonaldTrump we’re #1 again! USA! USA! #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3379] "We've added #FAQs to our website about #COVID19, #schoolclosures and more https://t.co/xGfYjoMMiA https://t.co/ik4kM2iDM6"                                                                                                                                                                                                                                                                                                                                                                                    
## [3380] "Playing with #snapchatfilters tonight...probably gon catch some heat for this one...<U+0001F602>\n#COVID19 #QuarantineLife #coronavirus #SocialDistanacing #CoronaLockdown https://t.co/bK5FTHKKJi"                                                                                                                                                                                                                                                                                                           
## [3381] "How does this government plan to keep the healthcare sector alive when health workers are at risk without proper safety equipment? \n\nHow does this government plan to keep the economy alive post-COVID-19 when labourers are at risk of death and starvation?"                                                                                                                                                                                                                                             
## [3382] "We are a local #essex #southend #cbd company who have supplied #cbdproducts to over 32 countries.\n\n#cbd #essentialoil #cbdoil #natural #remedy #healthandwellness #healthy #health #organic #natural #cure #CBDoil #coronavirus #infusions #coffee #cosmetics #petcbd..... https://t.co/3MbI3p0jum"                                                                                                                                                                                                         
## [3383] "<U+0001F4F7> Chloroquine Death Lies; Dr. Robert Epstein; Official Covid-19 Numbers; US Prepared 3.26.20 https://t.co/Ql4Ygvn4n7 America Can We Talk? Chloroquine Death Lies Interview with Dr. Robert Epstein HOW Big Media Contorts... https://t.co/2ZTQWsQ49z"                                                                                                                                                                                                                                              
## [3384] "#coronavirus #Covid19usa #COVID<U+30FC>19  \nNYC COVID19 cases report https://t.co/ScFsxNxOV7"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3385] "India’s use of chloroquine to prevent Covid-19 based on data from Chinese studies\n\n@ChandnaHimani reports \n\n#ThePrintExclusive\n\nhttps://t.co/ihNmU9idut"                                                                                                                                                                                                                                                                                                                                               
## [3386] "netflix and chill with my girls\n#quarantine #coronavirus #bishwat https://t.co/VGHt2ELexA"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3387] "Do we really want to go back to how it was. Remember the greed, wars, suffering &amp; unhappiness. The #coronavirus has given us the opportunity to start again. #saveourlives #saveourplanet"                                                                                                                                                                                                                                                                                                                
## [3388] "Oooops; #NYC administrators thought they were prepared?! Now #NY having some of the largest numbers of infections <U+0001F615><U+0001F637> #covid19 https://t.co/iy8aI1XHHZ"                                                                                                                                                                                                                                                                                                                                  
## [3389] "Review with your crews universal precautions and do not let anyone on your crew take these exposures lightly.  Decon after each contact. Take this serious because you are the designated adult. [3 of 3]\n#firefighters #firstresponders #fireservice #coronavirus #covid19 #staysafe"                                                                                                                                                                                                                       
## [3390] "In response to COVID-19, motor carriers hauling vaccines, antivirals, prescription drugs, protective equipment, or other medical assets are temporarily waived from following hours of service requirements. https://t.co/uOOi2JDa2s"                                                                                                                                                                                                                                                                         
## [3391] "Farming in Michigan Durning the Epidemic. Check it out!\n#farming #johndeere #COVID2019 #coronavirus #Michigan #Quarantine  \n\nhttps://t.co/BDdSBtLoeA"                                                                                                                                                                                                                                                                                                                                                      
## [3392] "Philippine DOH is making major strategic errors and the Filipinos are paying the price #COVID19 @teddyboylocsin @cnnphilippines"                                                                                                                                                                                                                                                                                                                                                                              
## [3393] ".@Education_AIR Plain Language Fact Sheet on #COVID19  https://t.co/iUbhtK7RB8 https://t.co/DX92vZqhmI"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3394] "@deb_schell Take care of yourself. A friend of mine lost his uncle yesterday to COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3395] "Public Health Director Linda DeNorcey says 7 Guam residents who contracted COVID-19 have now recovered from the disease. https://t.co/vZ04dV6GkC"                                                                                                                                                                                                                                                                                                                                                             
## [3396] "Aynı KKTC Onlem Paketi:  \n\nUK government says self-employed will get coronavirus grants worth 80% of their average earnings #COVID19 https://t.co/3SK6m8zYGU"                                                                                                                                                                                                                                                                                                                                              
## [3397] "Province says Oshawa Superstore employee with COVID-19 has died. This is why we need to do more to protect workers &amp; close non essential businesses. https://t.co/DPH5aM3alk"                                                                                                                                                                                                                                                                                                                             
## [3398] "@danapond42 Coronavirus is just a name given to the type of infection covid-19 is the infection https://t.co/9r2idhwHz1"                                                                                                                                                                                                                                                                                                                                                                                      
## [3399] "The next calamity <U+2013> Covid-19 could devastate poor countries.   https://t.co/aIolavfomC"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3400] "@FriedrickJane So much WINNING!!!! The USA now leads the world COVID-19 infections!  Trump is awesome. NOT!!!"                                                                                                                                                                                                                                                                                                                                                                                                
## [3401] "Brilliant speech @neasa_neasa !!! #Dail #COVID2019 https://t.co/MuGoEE49kB"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3402] "A message from one of our Directors:\n\nMy 2 year old niece knows \"Stay inside\". Why can't you?\n\nThe government are not \"trying to control you\" they are trying to save you! #coronavirus"                                                                                                                                                                                                                                                                                                              
## [3403] "<U+0001F4E3> New Podcast! \"Empire-Episode55-EllenBrown\" on @Spreaker #covid_19_help #economics #stipend #ubi #universalbasicincome https://t.co/FP7nnBn98B"                                                                                                                                                                                                                                                                                                                                                 
## [3404] "How we think about control, what we can and can’t control, is an important component of mental health. Telehealth calls can help. Good mental health is more important than ever when self-isolating. Good ideas from #coronavirus Town Hall  @CNN @AC360"                                                                                                                                                                                                                                                   
## [3405] "And let us not forget our collaborator @GloriusGroup @GloriusFrank who thoughtfully “loaned” us Marco- who btw had to race to return home thanks to Covid-19. https://t.co/MHTcioj3uV"                                                                                                                                                                                                                                                                                                                      
## [3406] "Thank you for this leadership, @SpeakerPelosi. You're right that these essential supports for families shouldn't even be up for debate - families need economic stability to get through #coronavirus and every major health crisis they face throughout their lives https://t.co/vL2pJSOPA2"                                                                                                                                                                                                                 
## [3407] "@realDonaldTrump @CDCgov \nTime to put drive through testing on the I95 Highway \nBefore the epidemic explodes down south. #coronavirus https://t.co/0f1VeX40cY"                                                                                                                                                                                                                                                                                                                                              
## [3408] "Vital Tips For Construction Contractors Amid COVID-19 Economic Downturn https://t.co/TNaaIBJ8jc https://t.co/mY99Okrxfp"                                                                                                                                                                                                                                                                                                                                                                                      
## [3409] "Latest information about #COVID<U+30FC>19 in Kurdistan, visit @Kurdistan website: https://t.co/xADzIqtxL4\n\nFor information on what the coronavirus is and how to protect yourself against it, see https://t.co/5f85SE70hg\n\nKRG Health Ministry is closely monitoring for any cases of COVID19. https://t.co/sRXwlqieUX"                                                                                                                                                                                   
## [3410] "Massive shoutout to @waitrose #Ponteland for ‘Care Boxes’ filled w/essential items for the most vulnerable people in our community. Every ‘box’ I delivered this pm was met with a wide smile, friendly greeting &amp; big thank you. Well done people of #Northumberland #lockdown #COVID19 https://t.co/2C5loh3bot"                                                                                                                                                                                     
## [3411] "Just going to leave this here for you all that think covid 19 is a hoax.\n#Covid19usa \n#COVIDIDIOT\n\nhttps://t.co/Ze7TzM5vAJ"                                                                                                                                                                                                                                                                                                                                                                               
## [3412] "Stars&gt;People&gt;Country Singer Joe Diffie Tests Positive For COVID-19..https://t.co/njjhAmZ8dJ #people https://t.co/fhL62FePVd"                                                                                                                                                                                                                                                                                                                                                                            
## [3413] "Never liked \n#SwachchhBharat \n#AADHAR \n#JanDhan\n#DigitalIndia\n#DBT\n#Ujjawala \n#AyushmanBharat \nWasn't that wrong or else living in #COVID2019 would be much more difficult thank you #NarendraModi to lead our country"                                                                                                                                                                                                                                                                               
## [3414] "JUST IN: Prince William County resident dies after testing positive for the virus that causes COVID-19, health officials confirm https://t.co/sySqZTmCq9 https://t.co/ZRMWTaDPZI"                                                                                                                                                                                                                                                                                                                             
## [3415] "if coronavirus was cereal, covid-19 would be corn flakes<U+0001F922>"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3416] "#coronavirus Top mortality rate changes from yesterday:- \nItaly 10.19%-&gt;10.03%\nIndonesia NoEntry-&gt;8.32%\nIran 7.60%-&gt;7.35%\nSpain 7.34%-&gt;7.70%\nNetherlands 5.83%-&gt;6.33%\nFrance 5.82%-&gt;6.05%\nUK 4.96%-&gt;=\nChina 4.04%-&gt;4.05%\nBelgium 3.53%-&gt;3.97%\nGlobal 4.53%-&gt;4.58%"                                                                                                                                                                                                    
## [3417] "#Creators of #XRP #token and #leading #American #exchange #firm #Ripple has said it would donate $100k to fighting #novel #coronavirus.\n\nhttps://t.co/t02FwBUFco\n\n#Rakamoto #ThursdayThoughts #Blockchain #Crypto #Bitcoin #Digital #Money #Coins #Dollar #Banks"                                                                                                                                                                                                                                         
## [3418] "During these massive shifts from COVID-19, I've heard lots of educators discussing taking this opportunity to envision new systems and spaces for education built on equity and freedom. If this is you, make time to watch #CripCamp on Netflix."                                                                                                                                                                                                                                                            
## [3419] "so the police officers are immune to Covid 19<U+0001F607><U+0001F607>?? how do they enforce social distance yet they are crowded in lorries without masks surely...Police will suffer alot in this pandemic\n#CurfewKenya https://t.co/62u4NlYlIt"                                                                                                                                                                                                                                                            
## [3420] "#Hayekianknowledgeproblem: spare a thought for those locked in their rooms at backpackers hotels and camping grounds #COVID19 https://t.co/UM4yXdeoqx"                                                                                                                                                                                                                                                                                                                                                        
## [3421] "Fact or fiction: How much do you know about the coronavirus disease (COVID-19)? @unicef https://t.co/zMzQPnGRGU"                                                                                                                                                                                                                                                                                                                                                                                              
## [3422] "@kgeremolla @Clint_Mentality COVID-19 is the designated name"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3423] "@Pikoyio this just in, covid-19 has blocked the sun"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3424] "@Dyane357 Now is the best time to learn, grab your 20% discount on my machine learning course https://t.co/JmxyXmL83I #learnmltoday"                                                                                                                                                                                                                                                                                                                                                                          
## [3425] "\"When you have 15 people, and the 15 within a couple of days is going to be down to close to zero, that's a pretty good job we've done.\" -- Trump on the number of #COVID2019 cases in the U.S., Feb 26th\n\nMarch 26th: 81k cases of #coronavirus with 1,178 deaths. #CoronavirusPandemic"                                                                                                                                                                                                                 
## [3426] "#Mohamed_bin_Zayed, India PM review global fight against #COVID_19 https://t.co/BFEFEQvjyt\n#Sharjah24 https://t.co/BYfGvCZqOC"                                                                                                                                                                                                                                                                                                                                                                               
## [3427] "ICYMI:  Chauncy Glover tests positive for COVID-19 https://t.co/ZkV1rGoyxn #abc13 #KTRK"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3428] "Don't forget that covid-19 is everywhere,so always wash your hands,use sanitizers and social distancing is very important...."                                                                                                                                                                                                                                                                                                                                                                                
## [3429] "Save the bailout money for farmers and food industry workers and #foodsecurity https://t.co/OzEyFFgwnR"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3430] "Lots of craft distilleries are helping the fight against #coronavirus by making #handsanitizer such as @OneEightD and @cottonandreed (here): https://t.co/d0FZILBanU"                                                                                                                                                                                                                                                                                                                                         
## [3431] "US President Donald Trump on Thursday signed the Taiwan Allies International Protection and Enhancement Initiative (TAIPEI) Act of 2019 into law, before he talked with Chinese President Xi Jinping (習近平) by telephone about the COVID-19 pandemic."                                                                                                                                                                                                                                                      
## [3432] "Such an amazing atmosphere to be a part of! \n\nStay strong everybody! We will get through this! <U+0001F49E><U+0001F49E>\n\n#BritainGetTalking #COVID2019 #clapforNHS https://t.co/OTliaWv5vH"                                                                                                                                                                                                                                                                                                               
## [3433] "Stop Press : #SelfEmployed Support during #Coronavirus as announced today \nGrant available for 80% of average monthly profit over last 3 years capped at £2500 per month. Traded profit up to £50 000.. Extra 4 weeks to file tax return. If  #eligible HMRC will contact you direct."                                                                                                                                                                                                                     
## [3434] "\"Ireland and so many other countries failed to halt foreign travel, or at least quarantine incoming travelers, quickly enough. And why we failed to implement testing quickly enough.\" #COVID19ireland  \n\nhttps://t.co/F34akFqmn4"                                                                                                                                                                                                                                                                        
## [3435] "We have low numbers because people are not getting tested at the rate it is done in other countries. #coronavirus is highly communicable, check d numbers in Italy, USA &amp; UK. \n\n#PresidentCovik #StaySafeNigeria #chioma"                                                                                                                                                                                                                                                                               
## [3436] "Apparently Cardi B has some good takes on COVID 19 stuff but she still has shit takes on transgender people and the concept of not drugging/stealing from people right?\n\nI’m not the most informed but last I heard that hadn’t changed."                                                                                                                                                                                                                                                                 
## [3437] "Mayor Francis Suarez is convinced thousands in #Miami have the #coronavirus, thinks the governor should lock down Florida, and says its impact 'can become apocalyptic' https://t.co/dDi5MRY94U via @businessinsider"                                                                                                                                                                                                                                                                                         
## [3438] "Because of COVID-19, friends of mine in Newy have had to Livestream their wedding...which means I'll actually get to see it!"                                                                                                                                                                                                                                                                                                                                                                                 
## [3439] "COVID-19 pick up lines, a thread:\n\n“You can’t spell quarantine without U R A Q T” <U+0001F609>"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3440] "@drgregkelly    https://t.co/S8E1QOKyP1     Can’t see any education department doing this..."                                                                                                                                                                                                                                                                                                                                                                                                                
## [3441] "COVID-19: 365 People Die in France in One Day\nhttps://t.co/YxAz2eJA5K"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3442] "#SEOs talk #pivoting and #planning for a #future after COVID-19 https://t.co/RJfJ7AgKoA by @geochingu https://t.co/8saSa4KJWk"                                                                                                                                                                                                                                                                                                                                                                                
## [3443] "Thank you everyone for all your hard work...thank you again .. remember stay safe and stay strong.  #thankyou #together #strongertogether #strong #healthy #veteran #family #covıd19 https://t.co/enCzTfAGU5"                                                                                                                                                                                                                                                                                                
## [3444] "Obour should be labeled \"number one local causative agent of Covid 19 agent in Ghana. We go drain in stomach by midday tomorrow."                                                                                                                                                                                                                                                                                                                                                                            
## [3445] "@DavidDobrik yo David, my first car payment is coming up and I lost both of my jobs due to COVID-19 :'( help a brother out! \n$squintsfresh"                                                                                                                                                                                                                                                                                                                                                                  
## [3446] "Self quarantine effect. \nCan bring out good humour at time \n#COVID19 #humour #kashmir https://t.co/cer9F1OX86"                                                                                                                                                                                                                                                                                                                                                                                              
## [3447] "Everyone is feeling the impact of social isolation these days, including America's older adults. \"COVID-19 isn’t just a danger to older people’s physical health\" https://t.co/GPupzocISi via @APA"                                                                                                                                                                                                                                                                                                       
## [3448] "Perfect <U+0001F602> #COVID2019 #coronavirusinpakistan #CoronavirusOutbreak https://t.co/CsPPofcZlo"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3449] "Covid-19: 15L who flew back to India between Jan 18-Mar 23 under lens https://t.co/JcuwrK88HK"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3450] "Great to be first and leading the world eh?\n\nDiscrimination in any form is never an actual defence. \n\n @realDonaldTrump\n#COVID2019\nBBC News - US now nation with most coronavirus cases\nhttps://t.co/jIQ9EBU34I"                                                                                                                                                                                                                                                                                       
## [3451] "@IngrahamAngle @realDonaldTrump Life is not a ratings game. \n\nTrump’s slow response to COVID-19, allowed it spread thorough the whole nation before it was taken seriously. \n\nThis crisis would not have happened if he  had pushed for early testing and isolation in January. \n\nAnyone should be able to see that. https://t.co/wF1WabmfcM"                                                                                                                                                          
## [3452] "Covid-19 death reported in West Papua | Loop Tonga https://t.co/nRHApUZNR2 via @skinnergj - CRNews"                                                                                                                                                                                                                                                                                                                                                                                                           
## [3453] "Jeff Bezos sold $3.4bn of Amazon stock just before Covid-19 collapse https://t.co/uUbwJjoBWD"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3454] "The severity of covid-19 is not in the virus itself it's in its impacts on the infrastructures and economy. That concept has been understood at a middle class and ^ level but has not been shared to lower class communities or properly communicated"                                                                                                                                                                                                                                                       
## [3455] "House members angry at being forced to return to Washington amid COVID-19: Sources There is anger from Democratic members about the mixed messages being sent from Democ https://t.co/Kg53UocgI4"                                                                                                                                                                                                                                                                                                             
## [3456] "USA First. Now you can lockdown. #COVID2019 , #usalockdown , #LockdownNow , #Coronavirus https://t.co/Ay950d2PBL"                                                                                                                                                                                                                                                                                                                                                                                             
## [3457] "UPDATE: City of Wetaskiwin amends plastic bag bylaw amidst COVID-19 pandemic https://t.co/kaoYrpcP5b"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3458] "DISGRACED mom Kate #mccann tells people to stay home... during #COVID19 \n\nThe hypocrite who traded staying home to GET DRUNK at dinner  at the TAPAS BAR https://t.co/wcVgpX3AsZ"                                                                                                                                                                                                                                                                                                                           
## [3459] "Buhari lauds COVID-19 donations https://t.co/u8cjxoDXzh https://t.co/D30XTkOzap"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3460] "British Columbia is testing for Covid-19 faster than South Korea did https://t.co/ITHiwsgQqn via @scmpnews"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3461] "@looknorthBBC Can are local representatives support the employees at Wren with this petition\n\nhttps://t.co/s5LKof9Jxf"                                                                                                                                                                                                                                                                                                                                                                                      
## [3462] "@oswaldtheson Listen to SLiMM-Stay_Safe_Covid-19_Freestyle.mp3 by ALEX the Friend on #SoundCloud\nhttps://t.co/Ize4iEytxE"                                                                                                                                                                                                                                                                                                                                                                                    
## [3463] "Coronavirus pandemic:\nFrom 0 to 250,000 cases: 4 months\nFrom 250,000 to 500,000 cases: 1 week\n\n#COVID<U+30FC>19 #COVID #CoronavirusPandemic #coronavirus #USA #Italy #China #India #Spain #Canada #Australia #UK"                                                                                                                                                                                                                                                                                         
## [3464] "<U+0001F6A8>#Italy becomes second country after the #US to surpass #China in confirmed #Coronavirus cases after reporting 5959 new cases. https://t.co/fW2cqSPmXW"                                                                                                                                                                                                                                                                                                                                            
## [3465] "California reports 29 new cases and 1 new death bringing total confirmed cases there to 4,044 and 83 total deaths.\n\n#CoronaVirus #Covid19 #CoronaVirusOutbreak"                                                                                                                                                                                                                                                                                                                                             
## [3466] "You'll have seen the permanent #COVID19 page at the top of your timeline. It includes news and information on the global situation. \n\nNow there's one specifically for Ireland, with content from @HSELive, @SimonHarrisTD, @CMOIreland and others: https://t.co/oN7g7R2Hfi https://t.co/xiPtP3t0jc"                                                                                                                                                                                                        
## [3467] "@POTUS @realDonaldTrump did you healthcare checked if the #Coronavirus can spread by moscito’s and what if they spread it too cows and sheep, pigs  is the flesh or milk contaminated. Because here we have it already in our sewage.  Good luck with the fight against COVID19"                                                                                                                                                                                                                             
## [3468] "Has the COVID-19 pandemic influenced how you plan to manage your finances after this is all over?"                                                                                                                                                                                                                                                                                                                                                                                                            
## [3469] "You are one of the people who should lose their job once this pandemic is over.  Howard is a COVID-19 treatment hospital. That’s why they received the funds. https://t.co/d48tA5QKAd"                                                                                                                                                                                                                                                                                                                       
## [3470] "Car-free Kingsland Point Park is AMAZING. Kids can be independent. No worrying about cars zooming around the bend from the bridge.\n\n#SilverLining of #COVID19/#SocialDistancing in #SleepyHollowNY. https://t.co/G6f7TxvpWn"                                                                                                                                                                                                                                                                                
## [3471] "Do you know the signs of stress in children? How to talk to them about #COVID-19? We have tips in our family guide to help parents and children during this uncertain and difficult time. https://t.co/XdZ3CQaz6O"                                                                                                                                                                                                                                                                                            
## [3472] "@tomarankit92 Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                              
## [3473] "Good interview. Gen. Semonite explains the process &amp; teamwork involved. #COVID19 https://t.co/RTOrwt0oi6"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3474] "FedEx stood up a special operation with The White House, U.S. Dept of Health and Human Services, FEMA Federal Emergency Management Agency, major retailers and healthcare companies to help move COVID-19 tests: https://t.co/H8zueIhgWU #TeamFedEx https://t.co/tHYMwzTMa5"                                                                                                                                                                                                                                  
## [3475] "Plasma from recovered patients can help treat other cases of covid19.\n\nhttps://t.co/E5yugbsqf6"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3476] "The COVID-19 crisis continues and it’s vital that we continue to limit social contact and practice good hygiene. Most of all we can come together by staying apart <U+2013> at least six feet apart when walking, shopping, or spending time outdoors. \n\n<U+27A1><U+FE0F> https://t.co/PHPoELv5zR https://t.co/s8KFtQG04b"                                                                                                                                                                                 
## [3477] "Please note that Metro Care &amp; Share Society has decided to temporarily close its retail store due to the COVID-19 pandemic until further notice. We will update you here once things settle down. Stay safe everyone!"                                                                                                                                                                                                                                                                                    
## [3478] "Tim Kennedy - Founding Fathers: “Give me liberty or give me death.”\nGreatest Generation: “Give me victory or give me death.”\nCurrent Generation: “Give me $1500 I don’t care the cost.” \n\n#corona #coronavirus #CoronavirusOutbreak #COVID19 #COVID2019 #stimulusbill"                                                                                                                                                                                                                             
## [3479] "Of course Trump calls in the experts. Wtf #TrumpVirus #COVID19 https://t.co/QU446ORs0b"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3480] "How? Surely we should be obtaining tips here<U+0001F481><U+200D>♂<U+FE0F>#COVID19 #Covid19SA #LockdownSA https://t.co/oREgpXiXz8"                                                                                                                                                                                                                                                                                                                                                                            
## [3481] "wondering if covid-19 coochie taste different"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3482] "Atmos Energy donates $1.5 million to feed students, families amid COVID-19 pandemic https://t.co/pghAPKIolH"                                                                                                                                                                                                                                                                                                                                                                                                  
## [3483] "Next holiday destination? Is it Las Kitchenas? Los Lounges? St Bedwa? Porto Gardenas? Costa del Balconia? #lockdown #COVID2019  #coronavirusuk"                                                                                                                                                                                                                                                                                                                                                               
## [3484] "Interest and penalty free extension on corporate taxes, personal taxes and instalments until August 31, 2020. #smallbusiness #tax #CRA #personaltax #askaCPA #COVID19 https://t.co/xIsZoEAO39"                                                                                                                                                                                                                                                                                                                
## [3485] "RIWI Signs New $1 Million Contract and Strikes Data Partnership with ThinkData for Public Health Response to COVID-19 in 16 Countries\n\nFull Story: https://t.co/3cjt965Xfi\n\n @RIWIdata $RWCRF $RIW.CA #OTC #OTCMarkets #OTCStocks #CSEStocks #SmallCaps #RIWIdata #RIWI #Internet"                                                                                                                                                                                                                        
## [3486] "'Multiple' new cases of COVID-19 confirmed in Boerne, Kendall County https://t.co/yII2CLzwlD https://t.co/hdTdn0kqEq"                                                                                                                                                                                                                                                                                                                                                                                         
## [3487] "Thanks to all the doctors, nurses, technicians and other health workers who are giving their 200% to save all of us #hcwshoutout #coronavirus #together #CoronavirusLockdown"                                                                                                                                                                                                                                                                                                                                 
## [3488] "@ivanmq47_ivan @HDSandtoes @PaulVCataldo @GovMurphy If not controlled, one flu patient gets 14 person affected. If uncontrolled COVID 19 affects 5500. So ten people having flu can affect, 140 people and ten having CORONA can affect 55000. This virus spreads faster in exponential terms. Stay home. Read about case 31 South Korea."                                                                                                                                                                    
## [3489] "With #COVID19 spreading worldwide, experts have been urging people to practice voluntary Social Distancing. Small negligence at this moment can be very much harmful to your health &amp; that of those around you.\n\n#lockdown21 #21daylockdown #21dayschallenge #JantaCurfewChallenge https://t.co/slIG39cL52"                                                                                                                                                                                             
## [3490] "Salesforce Care Free Rapid Response Solutions to Help Companies Navigate COVID-19 https://t.co/6OLCq24vBd via @salesforce"                                                                                                                                                                                                                                                                                                                                                                                    
## [3491] "As #COVID19 cases multiply, @YaleMed, @YaleNursing and @YaleSPH are working swiftly w/ local hospital to adapt and prepare.\n\nHundreds have volunteered, and to ease the strain on @YNHH, a field hospital is constructed inside Payne Whitney gym.\n\n #Yale #NHV https://t.co/thv5GgARI7"                                                                                                                                                                                                                  
## [3492] "Release Julian Assange from Belmarsh Prison before COVID-19 spreads - Sign the Petition! https://t.co/zrY9N7y9Dm via @Change"                                                                                                                                                                                                                                                                                                                                                                                 
## [3493] "Rex Murphy: The financial impact of COVID-19 is enough to make Canadians sick with worry, via @NationalPost https://t.co/Q7c1oqgc7T"                                                                                                                                                                                                                                                                                                                                                                          
## [3494] "Man travels 5 km to buy safety pin during lockdown; Vehicle in police station https://t.co/cr8KuHkPpr #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                           
## [3495] "File under “not happening” - Coronavirus: Los Angeles to shelter in place for months, mayor tells us - Business Insider https://t.co/knRt8N6sin"                                                                                                                                                                                                                                                                                                                                                            
## [3496] "South Korea reveals how to win Covid-19 war - Asia Times https://t.co/YnBfyIKYmJ"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3497] "Touch of class that <U+0001F44F><U+0001F3FB><U+0001F60D> so proud of our NHS and what they do, not only during Covid-19 but every day <U+0001F64C><U+0001F3FB> filled up seeing the old lady over the road come out her front door to clap <U+0001F622> #clapforNHS"                                                                                                                                                                                                                                          
## [3498] "@thaispicytravel @muno0103 So our wedding has been postponed for obvious reasons and we had 115 chocolate Lindt bunnies as wedding favours - time for a bunny wedding of course! #CoronavirusLockdown #lindt #COVID19 #wedding https://t.co/C9bll18TB5"                                                                                                                                                                                                                                                       
## [3499] "Is it just me, or allowing only 3 people into Tesco/Sainsbury’s in jesmond just gonna make people panic buy more??? #COVID19 #CoronaLockdown #UKlockdown"                                                                                                                                                                                                                                                                                                                                                    
## [3500] "Almighty God where are you?\nPlz forgive us.\n#coronavirus \n#ItalyCoronavirus \n#IndiaFightsCorona https://t.co/FsJxQ2VYg9"                                                                                                                                                                                                                                                                                                                                                                                  
## [3501] "Canada's Six Biggest Banks Take Steps to Help Canadians Impacted by COVID-19 https://t.co/j30XM4G6A9"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3502] "Even as this pandemic is killing our country before our eyes, Trump still manages to call his competition nicknames. #shameful #COVID<U+30FC>19 #ResignNow #DontKillGrandma"                                                                                                                                                                                                                                                                                                                                  
## [3503] "@mtracey Hello there Mr. Tracey, the only reason that Trump didn’t take full(and very much neded)advantage of the DPA is because it puts full and absolute responsibility on Trump, no squirming or blaming can change that. Trump avoids responsibility like, well, COVID-19.\n\n#TrumpPandemic"                                                                                                                                                                                                            
## [3504] "Ministry of Technology and Innovation could help in different ways by providing practical solutions in the preparation for combating #COVID19. \n\nFor instance, developing accessories to make the few respiratory machines Ethiopia has to support multiple patients, etc."                                                                                                                                                                                                                                 
## [3505] "Salute to all healthcare professionals, Doctors and Nurses across the globe, who are our there risking their lives and working tirelessly in a fight against #coronavirus through these highly difficult time. https://t.co/fjGdnSneBU"                                                                                                                                                                                                                                                                       
## [3506] "The socioeconomic consequences of #COVID19 could be disastrous, especially in terms of #foodsecurity for many communities and countries https://t.co/IHcB0JrUJC"                                                                                                                                                                                                                                                                                                                                              
## [3507] "Lockdown with this one. Playing Mario (badly) and enjoying a nice glass of red. #covid_19 #makingthemostofquarantine https://t.co/cqRggr17vT"                                                                                                                                                                                                                                                                                                                                                                 
## [3508] "Yes we need the US Army in Vancouver BC to investigate the Chinese criminals who spread the covid19 COVID-19 in Canada: Canada 'strongly opposes' U.S. suggestion to put troops at border https://t.co/GapbbYs3nN"                                                                                                                                                                                                                                                                                            
## [3509] "“Space missions around the world are on hold<U+2014>a poignant reminder of how COVID-19 has upended civilization.” https://t.co/88cAm5YKxu"                                                                                                                                                                                                                                                                                                                                                                 
## [3510] "Dear Mr @realDonaldTrump \n\nAmerica needs you to grab the Covid-19 by the pussy!! \n\nSincerely, \nThe American People"                                                                                                                                                                                                                                                                                                                                                                                      
## [3511] "@DTRecruitment @10DowningStreet @RishiSunak Hi David, for the latest guidance please visit https://t.co/m6viGM49hA Thanks"                                                                                                                                                                                                                                                                                                                                                                                    
## [3512] "While many people are staying home and social distancing, cleaning companies are on the front lines trying to keep the germs away. Management at Jani-King in Lafayette say they’ve been busy. https://t.co/3Igq1jksUS"                                                                                                                                                                                                                                                                                      
## [3513] "@ezralevant Not yet in the UK, but there is already talk of the huge debt this will create which will ultimately be paid for in taxes.\n#CoronaHoax #COVID19"                                                                                                                                                                                                                                                                                                                                                 
## [3514] "I wanna see after the crisis people being like \"I led a totally normal life, didn't have to self quarantine, the virus was a scam\"\n\nYea because we all stayed in bro, you're welcome we saved your life lmao\n\n#coronavirus #COVID19 #StayAtHome #Quarantine"                                                                                                                                                                                                                                            
## [3515] "@news18dotcom All the effected countries should come together and take China to International Court to pay dearly for its criminal activity of creating covid-19 like monsters killing the innocents with no fault of their ....."                                                                                                                                                                                                                                                                            
## [3516] "#covid-19 #coronavirus #pandemic -- UK Column News - 27th March 2020 https://t.co/YEbk5JPV0t via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                    
## [3517] "So I wanted to make something inspired by the panic-buying going on. \nFor everyone in Australia and abroad facing lockdown: Stay safe, stay clean and stay sane. \n#coronavirus #covid_19 #virus #toiletpaper  #staysafe #art https://t.co/eD7Mjyz7EQ"                                                                                                                                                                                                                                                       
## [3518] "Masha #Kano is leading on the fight for #COVID19 https://t.co/G6ntnGQgaW"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3519] "President Trump talks about #COVID19 almost everyday for 30 days......\nHow then did they top the list?\nI thought Presidential DAILY SPEECH is what will settle this plague.... https://t.co/rtSBQrkbm5"                                                                                                                                                                                                                                                                                                     
## [3520] "Be careful with the Home Office #HomeOffice #COVID2019 https://t.co/lWFwILpC1H"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3521] "When Bollywood Actors &amp; Actresses will Donate Money <U+0001F4B5> to India in #coronavirus \n#CoronaLockdown"                                                                                                                                                                                                                                                                                                                                                                                              
## [3522] "I HAVE BEEN UNEMPLOYED FOR A WHOLE FUCKING MONTH NOW. GIMME MY MONEY. FUCK #COVID19 https://t.co/lXJ0F157yP"                                                                                                                                                                                                                                                                                                                                                                                                  
## [3523] "Food Take<U+2014>Out Advice from @barfblogben during COVID<U+2014>19 https://t.co/4xutGjHat0 https://t.co/urxyRHveL1"                                                                                                                                                                                                                                                                                                                                                                                         
## [3524] "@jackblack @GassLeak As the last man standing in my office whilst everyone else is self-isolating, my lunch breaks are far more enjoyable... #tribute #SelfIsolation #COVID2019 https://t.co/g1dfDO1PgY"                                                                                                                                                                                                                                                                                                      
## [3525] "@realDonaldTrumpput @VP in charge of #CoronavirusOubreak \nTwo morons. . .Heck of a job by #FuckfaceVonClownstick and #OrangeAssKisser \n #TrumpPressConf"                                                                                                                                                                                                                                                                                                                                                    
## [3526] "@KTRTRS @KTRoffice @CommissionrGHMC @Director_EVDM @GHMCOnline @Eatala_Rajender  We are panic by such videos in viral where ppl spread that a covid 19 suspect being taken from Karwan area. Is it true? We have to take preventive measures seriously in the area if its true."                                                                                                                                                                                                                              
## [3527] "Covid-19 patients recovering is the only content I want to see"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3528] "3 More COVID-19 Deaths Reported in Region | News | San Diego County News Center https://t.co/bYNmVY57od"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3529] "#Coronavirus cases confirmed at #BC seniors’ homes. North #Vancouver’s Lynn Valley Care Centre, 46 residents and 24 staff have tested positive. At Vancouver’s Haro Park Centre, 30 residents and 28 staff have contracted the virus. https://t.co/pykNKf02Ex https://t.co/H8N84uQ8s5"                                                                                                                                                                                                                     
## [3530] "#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 discover great artists now on https://t.co/PZqZAxv5zf Hell If I Know by Travis Dolter @travisdolter via @oddball_music listen here https://t.co/tmYHgdAL43 https://t.co/JdkRQqevEL"                                                                                                                                                                                                                                                                   
## [3531] "\"The reality is that probably the majority of school districts, and there are more than 13,000 of them, don’t have the ability to provide continuous virtual online instruction,\" @AASADan tells @BloombergNews3.  https://t.co/C6FeiIMSuy @AASAHQ https://t.co/wjkgrL9hto"                                                                                                                                                                                                                                
## [3532] "The whole world is calm and I can still hear noise inside my head !! \n\n#Covid_19 #Quarantine"                                                                                                                                                                                                                                                                                                                                                                                                               
## [3533] "#Cuba's Foreign Minister @BrunoRguezP stated that Washington's hostility towards his country cannot affect Cuban solidarity with nations in need.\n#UnitedStates #COVID19 #Coronavirus\nhttps://t.co/0IWOpBFtqG"                                                                                                                                                                                                                                                                                              
## [3534] "Check out this story which provides further explanation on why U of T made the very difficult decision to cancel this year's spring convocation ceremonies: https://t.co/Tp6gDdwVjg"                                                                                                                                                                                                                                                                                                                          
## [3535] "We must work together to defeat human enemy COVID 19 basis on HUMANITY around the \nGLOBE .\n\nBECAUSE ,\n\nUnity is a remedy https://t.co/DnHWZIqhGS"                                                                                                                                                                                                                                                                                                                                                        
## [3536] "Italy had close to a thousand corona virus related deaths in the last 24 hours. HOLY F@$K!!! #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                        
## [3537] "We've added a list of resources for residents to our #COVID19 page: https://t.co/xobEyOoAzZ #SATX https://t.co/XAlrJvygSu"                                                                                                                                                                                                                                                                                                                                                                                    
## [3538] "COVID-19 Consumer Warnings and Safety Tips https://t.co/h5ebW47cgV Free resources from the FCC!\n\n#stayhappy #accountspayable #covid19 https://t.co/qifa1huIzU"                                                                                                                                                                                                                                                                                                                                              
## [3539] "This infuriated me! All the recent stockpiling of food and people are beginning to realise they can’t store/eat it before runs out of date! Think of how many people could have actually eaten this if not for your selfishness #covid19 #foodwaste #appalling https://t.co/Fi4RHMchWq"                                                                                                                                                                                                                      
## [3540] "Last night I listened to @djdnice &amp; party with a purpose on @instagram   Registered over 400K to #vote .  Rockin the #oldschool jams and joints.  I see you @MichelleObama @TherealTaraji I see you @terrycrews . I was partying with @kings and @queens #CouchParty during #COVID2019"                                                                                                                                                                                                                   
## [3541] "Curious to know how COVID - 19 will affect the Indian Economy. Hear from Dr. Ajit Ranade, President and Chief Economist at Aditya Birla Group and Head Academic Board of Meghnad Desai Academy in a live webinar on 2nd April at 5:00pm. To register https://t.co/qD6DFEaPjf https://t.co/uCwhhEzQLW"                                                                                                                                                                                                         
## [3542] "Funny thing is that alot of people have Covid-19 and have recovered before realizing.\n#COVID19 #CoronavirusOutbreak #StayAtHomeAndStaySafe #COVID"                                                                                                                                                                                                                                                                                                                                                           
## [3543] "#WATCHVIDEO Meghalaya CM @SangmaConrad visited a locality in Shillong and requested the citizens to maintain #SocialDistancing to contain the spread of coronavirus\n\n#Time8News #Meghalaya #Coronavirus #COVID19 https://t.co/FRXZJHnkOx"                                                                                                                                                                                                                                                                   
## [3544] "Hey @Mike_Pence @VP I asked you yesterday about being a Christian. Seriously. HOW THE HELL CAN YOU STAND WITH THIS MANIAC? As a “Christian” you must believe in hell. Newsflash: that’s where you’re going. #COVID19"                                                                                                                                                                                                                                                                                     
## [3545] "More than the regular announcements of the number of positive cases of COVID-19, I bliv the @NCDCgov should share the statistics of the number of people that has been tested. Let us know info on the 'case to test' ratio."                                                                                                                                                                                                                                                                                 
## [3546] "@INnationalist @sp56632410 @srjawed @Reuters I’d be totally okay with it if you don’t relate it to ANY ethnic group, it’s pure racism (not rapist) if you do. The virus has its name COVID-19."                                                                                                                                                                                                                                                                                                            
## [3547] "Luxury Swiss apartment-style hotel launches Covid-19 guest package https://t.co/bKQbum7v4f"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3548] "YES WE BELIEVE IT WAS ENTIRELY POSSIBLE TO **ELIMINATE** #COVID19 FROM AUS. OVER THE COURSE OF A MONTH OR TWO. YES, WE DO. THAT IS NEITHER DELUSIONAL NOR IRRESPONSIBLE TO SAY. WHAT *IS* IRRESPONSIBLE IS TO DEFEND THIS GOVT. BY SAYING THAT WAS NOT POSSIBLE. CUT IT THE FUCK OUT."                                                                                                                                                                                                                        
## [3549] "Liberal media, Hillary Clinton mock President Trump over rise in COVID-19 cases in US\n\nhttps://t.co/NBKKrnBO6v"                                                                                                                                                                                                                                                                                                                                                                                             
## [3550] "Today Pizza from our local restaurant around the corner. Support your local restaurants and help them get through the crisis. #CoronaVirusDE #COVID19de #COVID2019 #StayHome https://t.co/mFxzLMzRmG"                                                                                                                                                                                                                                                                                                         
## [3551] "Working on some #DigitalArt during #CoronaLockdown - very blessed to have some work! Check out my #Photoshop process <U+0001F58C><U+0001F3A8>#BigHeadCartoon #COVID19 #WatchMeDraw #watchparty #coronavirus #QuarantineLife https://t.co/n95i0KPtaR"                                                                                                                                                                                                                                                          
## [3552] "#China promotes #CoronaPandemie #coronavirus with #wildlife food #again. #Animalabusers #VirusChina https://t.co/2GQSV0ZFeG"                                                                                                                                                                                                                                                                                                                                                                                  
## [3553] "Today I’m suppose to be waking up in a villa with my hun drinking espresso’s and having breakfast with some wild animals...but noooooooo Covid-19"                                                                                                                                                                                                                                                                                                                                                          
## [3554] "You can fill in your own comment.\nhttps://t.co/wvqK6EXUyT"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3555] "I'm afraid people are not really aware how long covid-19 could take. Even if the lockdowns are to end before/during summer there's a very high risk that we'll have to do this all over again come winter.\n\nSo, indefinite hiatus sounds ominous to me. Donate if you can. https://t.co/rQMrvmbKVq"                                                                                                                                                                                                         
## [3556] "Report: Digital Songs sales chart shows record low numbers within the top 10, specifically with the #2 song “Sweet Night” as it logs ~11,000 downloads in its debut week (down 35% from previous record-low).\n\nMusic analyst suggest the decline in sales are due to COVID-19 pandemic."                                                                                                                                                                                                                  
## [3557] "Ponoka resident’s negative COVID-19 test not ‘all that reassuring’ https://t.co/BFmqlT8lVp"                                                                                                                                                                                                                                                                                                                                                                                                                
## [3558] "Crying <U+0001F923> #pressconference #COVID2019 \n\nWe've all been there... just not live on TV at a government broadcast haha https://t.co/uCnMPEPTbX"                                                                                                                                                                                                                                                                                                                                                       
## [3559] "The City of Vancouver has set up a referral system to link essential workers with licensed childcare providers during the COVID-19 crisis. https://t.co/QRUVTkLAsj"                                                                                                                                                                                                                                                                                                                                           
## [3560] "@amandavanstone Items posted like this brighten up the days with this COVID-19 #StayHomeAustralia"                                                                                                                                                                                                                                                                                                                                                                                                            
## [3561] "#Coronavirus\n\nWe are in a fallen world.  \nRead Genesis 3\n\nIt started off as a Paridise but then man rebelled against God.\n\nTurn back to God and seek Him daily and watch Him change your life for the better!\n\nMake this your plan from now on. Ask Him to guide your ways.\n\nPsalm 91\n<U+0001F447> https://t.co/PuFrM81n2L"                                                                                                                                                                       
## [3562] "#Coronavirus It's cool tho, coz now the US is actually number one in the world for something other than money spent on military power lmao"                                                                                                                                                                                                                                                                                                                                                                   
## [3563] "If anyone wants to follow along with the workouts I’ve been kindly given by my Pt for the next 30 days I’m happy to share as I go.  Don’t be deceived they are harder than they look <U+0001F61D>#homeworkouts #coronavirus @suziekennedy and I are on day two <U+0001F64C><U+2764><U+FE0F>#xrp"                                                                                                                                                                                                           
## [3564] "Can we trust the Oxford study on Covid-19 infections? | Coronavirus outbreak | The Guardian https://t.co/dYxfq0qDxb"                                                                                                                                                                                                                                                                                                                                                                                          
## [3565] "@Aaroncheruiyot @IG_NPS There is a reality we can't run away from. Our law enforcement officers are a joke to democracy then there is the #Covid_19; we can't manage it if we have such police officers."                                                                                                                                                                                                                                                                                                     
## [3566] "Keep fighting. Stay strong <U+0001F4AA><U+0001F4AA><U+0001F4AA>\n\n#YNWA #YNWAlawancorona #COVID19 #StayAtHome \n\n@LFCIndonesia https://t.co/wwMNTU2W3J"                                                                                                                                                                                                                                                                                                                                                     
## [3567] "He tested positive for #coronavirus . Please don't listen to people who have no sense. https://t.co/hOgIMTXJMm"                                                                                                                                                                                                                                                                                                                                                                                               
## [3568] "Everyone, this is very serious. we have officially passed 101,000 #COVOD19 cases. #Quarantine #coronavirus #WashingtonPost https://t.co/DZME5EqWgc"                                                                                                                                                                                                                                                                                                                                                           
## [3569] "@MobilePunch @Mobilepunch why indicating a Christ cross behind the death. Mind you not only Christians are affect by the covid 19. @MobilePunch  @NCDCgov"                                                                                                                                                                                                                                                                                                                                                    
## [3570] "Visit St. Louis Children’s Hospital’s Sproutlight Sponsor page for resources to keep your family healthy during #COVID19: https://t.co/oPeAVwT0sV @STLChildrens"                                                                                                                                                                                                                                                                                                                                            
## [3571] "How can the richest country in the world not have enough ventilators? Why didn't we start the process of emergency hospitals before it got to this point? did we think the virus was gonna stay in China? How can we do better next time? #coronavirus #WhiteHouseBriefing"                                                                                                                                                                                                                                   
## [3572] "#coronavirus #USA just today USA has 13685 new cases, and its still going on. #staysafe #StayHome"                                                                                                                                                                                                                                                                                                                                                                                                            
## [3573] "Luxury after Covid-19: Changed for (the) Good? - Bain &amp; Company https://t.co/fXAr6v1Joo"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3574] "@realDonaldTrump Washington State, New York and California please remember that your President said, \"FUCK YOU\" when you asked for help during the Covid 19 crisis.  Vote 2020."                                                                                                                                                                                                                                                                                                                            
## [3575] "Really bad news out of Italy (919), Spain (569), UK (181), Netherlands (112). No letup from #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3576] "21st birthday party guests infected with COVID-19 after case linked to Aspen ski trip https://t.co/uG5gCODurc via @theage"                                                                                                                                                                                                                                                                                                                                                                                    
## [3577] "Covid-19 will not end until this pussyhole catch it <U+0001F937><U+0001F3FE><U+200D>♂<U+FE0F><U+0001F928><U+0001F602> https://t.co/H3WNurFPin"                                                                                                                                                                                                                                                                                                                                                               
## [3578] "As IRC in Palabek refugee settlement, Lamwo district, we visited the border points at Madi-Opei &amp; Apiriti..supported officers with PPE and IPC supplies, offered health education on Covid-19 and taught them good hand hygiene for their protection and safety#StopCovid19 @RESCUEorg https://t.co/sQyF7OKl13"                                                                                                                                                                                           
## [3579] "Belly full . Showered . Glass of wine . What a Friday night #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3580] "Read about the impacts of the COVID-19 pandemic on the public charge rule, border closings, and other immigration policies in the BBA's latest Issue Spot blog post: https://t.co/jlpkOE0co6"                                                                                                                                                                                                                                                                                                                 
## [3581] "@lookner They are reporting better numbers because they are cooking the books, not reporting the true numbers. Lots of people dead from \"pneumonia\" but due to lack of tests can't be classified as Covid 19"                                                                                                                                                                                                                                                                                               
## [3582] "American Airlines flight attendant dies of COVID-19, highlighting risks that airline workers have faced while helping get passengers home (AAL) https://t.co/upusjxfgWS #work https://t.co/7AedgNa9cn"                                                                                                                                                                                                                                                                                                        
## [3583] "Could blood type affect your risk of COVID19? https://t.co/jL47qxaMtb"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3584] "Even though the govt is denying #CommunityTransmission of #coronavirus, the states are preparing themselves to address such cases, reports @TheNaveena. \n\n@Eatala_Rajender \n@WHO \n#IndiaVsCorona\n#IndiaFightsCOVID19 \n#CoronavirusOubreak https://t.co/xdosHl46on"                                                                                                                                                                                                                                      
## [3585] "Thread from a science journalist about the #COVID19 pandemic. Scroll up. https://t.co/LFJ9v8GqvX"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3586] "Day 5 of complete #anosmia &amp; #ageusia (loss of smell/taste) &amp; other niggly symptoms. Is this #COVID19? #NHS staff testing would be helpful ... working from home as I self-isolate. For now, I'll continue a daily \"tastebud test\" in form of a tabasco shot https://t.co/YmgSKSDx0I"                                                                                                                                                                                                               
## [3587] "We want to keep our parks open so you can use them for daily exercise. It's important though, that you follow the Government's guidance on social distancing, so please be safe and follow the rules - https://t.co/Oks59pyF4u https://t.co/x358oj0hFt"                                                                                                                                                                                                                                                       
## [3588] "Shots of crowds gathering on Grand Strand beaches Friday amidst the #COVID19 #coronavirus pandemic. On Mar. 23 #SouthCarolina Gov. @henrymcmaster announced that he issued an Executive Order directing state &amp; local law-enforcement officers to disperse groups of three or more. https://t.co/Dw48zqW11i"                                                                                                                                                                                              
## [3589] "@fasha_miss With the Covid-19 measures in place, we highly recommend you to avoid visit our branches if you don't have something important.\n\nPrioritize your health and safety!"                                                                                                                                                                                                                                                                                                                            
## [3590] "Watch me make a number of dumb tik toks during unemployment due to #covid19"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3591] "What happens to all the Coronavirus / COVID 19 protective gear( gloves, masks, suits) Whats the modus of disposal? Which country are they being dumped into?"                                                                                                                                                                                                                                                                                                                                                 
## [3592] "The best thing I think I have ever spent money on was my @DeskCycle, and I have never fully appreciated until #COVID19"                                                                                                                                                                                                                                                                                                                                                                                       
## [3593] "@add_shogun @MarkDice @Acosta Actually out of 340 million people, it's a very small number..especially compared to the massive number of flu deaths that we've become accustomed to.  \nThe good news is that many more who were ill with COVID-19 are surviving..many more are asymptomatic or have mild symptoms."                                                                                                                                                                                          
## [3594] "\"DeKalb city council unanimously approves tax suspensions for hotels, restaurants amid COVID-19\nHotel tax suspended through end of year, restaurant tax suspended through June 30\" #MoreWithUs"                                                                                                                                                                                                                                                                                                            
## [3595] "Checkout this bullshit:\n\nhttps://t.co/PJSfBltOmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3596] "\"Covidguilt\"...the guilt you feel sticking your child infront of the tv/iPad/iPhone to be able to get some work done when you're on lockdown. #COVID2019 #covid19UK #COVID19"                                                                                                                                                                                                                                                                                                                               
## [3597] "@MarkLevineNYC Why, in the name of God, would you not get tested? If it is Covid 19 people need to know. First of all to get an accurate accounting of the spread of the virus, and second so anyone that you came in contact with can take precautions around their own families."                                                                                                                                                                                                                           
## [3598] "#ICE Uses Its Power to Mitigate #Coronavirus Threat to #America https://t.co/AeobsRybHu via @AmActionNews"                                                                                                                                                                                                                                                                                                                                                                                                    
## [3599] "@SAMKLEF Remember me too ooo 5k na money ooo. And u even better than FG that only keep up for house with fear of covid-19 https://t.co/0h4wjy82ru"                                                                                                                                                                                                                                                                                                                                                            
## [3600] "Is POTUS correct about the Chinese Virus? Truth in the video #NarendraModi @POTUS  @WHO @BBCWorld @TOIIndiaNews #COVID2019 #ChineseVirus19 @PMOIndia @ArnabGoswamiRtv @ndtv @RahulGandhi @ https://t.co/3UC4xkgh0F"                                                                                                                                                                                                                                                                                           
## [3601] "New COVID-19 numbers for the state are out.. https://t.co/GaWnwNgtkh"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3602] "This is not a playing matter': Perdue plant employees walk out over COVID-19 concerns\n\nClose to 50 employees who walked out Monday morning say some workers on the production line were in contact with people who tested positive for COVID-19 https://t.co/mSwDtm10Om"                                                                                                                                                                                                                                    
## [3603] "I got 4.75 hearts <U+0001F602><U+0001F602> I did the #MiraSwatchesChallenge to support \n@mirabeautyapp COVID-19 relief fund for makeup artists and beauty professionals out of work. Send love and hearts to who need help. Please donate if you can: https://t.co/K1h0AAyy5X https://t.co/oVx3Ww93Gd"                                                                                                                                                                                                       
## [3604] "Wow Chioma is positive while the baby she breastfeeds is negative. Something about this COVID-19 the world is yet to know <U+2639><U+FE0F>"                                                                                                                                                                                                                                                                                                                                                                   
## [3605] "An employee at Wahiawa General Hospital tests positive for COVID-19\nhttps://t.co/ySZvjeDmRL"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3606] "@PrakashJavdekar @DD_Bharati @narendramodi @PIB_India @DDNewslive @BJP4India @BJP4Maharashtra Thank you sir,\nWe really very happy to watch our popular show on TV again. \nAssure that we will be winners against covid 19."                                                                                                                                                                                                                                                                                 
## [3607] "The fact that the USA overtook China in number of Covid-19 cases yet Trump still wants to “open the country for business by easter” says a fucking lot about what they think is important."                                                                                                                                                                                                                                                                                                                 
## [3608] "32 million Americans last week filed for unemployment   #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3609] "For their tireless effort towards curbing Covid 19. https://t.co/1BpzyyMNSP"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3610] "@963ReachFM But one of the three #coronavirus cases is in the ICU in #Grandeprairie.  Not exactly good statistics!"                                                                                                                                                                                                                                                                                                                                                                                           
## [3611] "So, working the numbers… ~330M people in the USA. 7.8B worldwide. The COVID-19 has twice the infection rate as the flu, and 10x the mortality rate. Flu infects about 5-20% of the population. So, reasonable estimate: 500k to 1M fatalities in the US, 31M worldwide. <U+0001F61F>"                                                                                                                                                                                                                        
## [3612] "Worried about infection from take-out or groceries? Watch these 3 tips. - CNN Video https://t.co/e4Ml37cy5m"                                                                                                                                                                                                                                                                                                                                                                                                  
## [3613] "Looking for #COVIDconfessions: what’s the most bizarre thing you’ve done to protect yourself from the #COVID19 virus? \n\nMe: I’ve left this package in my foyer since Tuesday. Figured I’ll give it a few days for the germs to die off before changing my printer cartridges. <U+0001F601> \n\nYou? https://t.co/612V94zAbJ"                                                                                                                                                                            
## [3614] "Important piece in @JAMAPediatrics on neonatal outcomes of mothers infected with #COVID19. Most infants not infected.\n\nFever seems to be an important differentiator here ... like most viral syndromes in neonates. \n\nhttps://t.co/wFMUrWmU8n"                                                                                                                                                                                                                                                           
## [3615] "The 58 new cases of #COVID19 in #MontcoPa included people from 30 municipalities, including 3 areas that reported their first cases <U+2013> #Hatboro Borough and #Salford and #WestPottsgrove townships"                                                                                                                                                                                                                                                                                                     
## [3616] "@HillaryClinton #HillaryClinton #COVID19 #Coronavirus #CoronaLockdown Hillary the state where you live is #1"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3617] "@AdrianM94325697 It says they shut down.\nhttps://t.co/LElAGIR3gu"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3618] "I stayed at home ,You stay with me? #<U+0E42><U+0E04><U+0E27><U+0E34><U+0E14>19<U+0E40><U+0E23><U+0E32><U+0E15><U+0E49><U+0E2D><U+0E07><U+0E23><U+0E2D><U+0E14> #<U+0E42><U+0E04><U+0E27><U+0E34><U+0E14>19 #COVID19 #<U+0E2D><U+0E22><U+0E39><U+0E48><U+0E1A><U+0E49><U+0E32><U+0E19><U+0E2B><U+0E22><U+0E38><U+0E14><U+0E40><U+0E0A><U+0E37><U+0E49><U+0E2D><U+0E40><U+0E1E><U+0E37><U+0E48><U+0E2D><U+0E0A><U+0E32><U+0E15><U+0E34> #<U+0E2D><U+0E22><U+0E39><U+0E48><U+0E1A><U+0E49><U+0E32><U+0E19> #spiderman2099 https://t.co/xuhjUgHkbL"
## [3619] "@Giants Hopefully not #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3620] "Join @IMA_Today for the webinar “How Employers Can Respond to COVID-19 and Frequently Asked Questions” on Tuesday, March 31, at 11 AM. For more info + to register: https://t.co/Ciix2XRGzF"                                                                                                                                                                                                                                                                                                                
## [3621] "If POTUS really wanted to throw a date out there, he should have gone with Memorial Day. Everyone would have thought it doable, and he’d still get to pander to his base. #Coronavirus"                                                                                                                                                                                                                                                                                                                      
## [3622] "Pretty sure 6 trillion is an accurate measurement of how badly @realDonaldTrump 's sorry excuse for an administration has fucked up the response to #coronavirus https://t.co/tBYgCHi0qe"                                                                                                                                                                                                                                                                                                                     
## [3623] "BBC Sport - #Coronavirus: All football below National League to end https://t.co/bIl0JXJTNL Hope it is a warming shot to what is going to be announced as regards to the 4 professional leagues Come on FA, shows guts not <U+0001F4B0> face"                                                                                                                                                                                                                                                                 
## [3624] "Is The Apple Store Down ?: Apple published a new Press Release https://t.co/Ri0N8WjKeJ"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3625] "Daily numbers update in WA: 516 cases &amp; 28 more deaths from COVID-19. That makes it 3,723 total positives &amp; 175 fatalities. #StayHome #FlattenTheCurve #coronavirusWA"                                                                                                                                                                                                                                                                                                                                
## [3626] "i’m gonna break the trend of COVID-19 tweets n just say that playing for @UD_WBB is the best decision i’ve ever made. wish i could be on campus playin ball w my girls right now. love &amp; miss you guys<U+0001F499> https://t.co/pnZlOROFxs"                                                                                                                                                                                                                                                             
## [3627] "might sell my nudes for extra income during the apocalypse <U+2623><U+FE0F><U+0001F9DF><U+200D>♀<U+FE0F> #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                       
## [3628] "@arabbitorduck @Zigmanfreud @PopC_Theology Good news is end of flu season around the corner, will definitely help hospitals tackle COVID-19."                                                                                                                                                                                                                                                                                                                                                                 
## [3629] "WATCH: Everyday life continues to change for people across the country as COVID-19 spreads. #MTPDaily\n\n@chucktodd: “For many of us, it's hard to fully grasp how suddenly, and dramatically, our daily lives have changed as we've climbed this curve.” https://t.co/Og2cgl1vJ6"                                                                                                                                                                                                                          
## [3630] "Whatbis the matter with these politicians?? They are smiling and back slapping like they just landed a man in the moon.! \n\nYesterday they were crying about people dying!!??\n\n#OutOfTouch #Democrats #COVID2019 #PelosiHatesAmericans \n@SusanLiTV \n@BullsBearsFBN"                                                                                                                                                                                                                                      
## [3631] "Also, disinfecting your phone won’t matter much if you’re not practicing good hygiene. So remember to wash your hands regularly, don’t touch your face, and other many surfaces. https://t.co/GpfzQ3J05J #OppoCares @Oppo_Kenya @jumaf3 https://t.co/E9sA1c2Agv"                                                                                                                                                                                                                                           
## [3632] "#COVID19 shows people’s true colours... #CoronavirusOutbreak #coronavirus #StayHome https://t.co/x1jxp2qrne"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3633] "@DrHilaryJones Why is the UK's Corvid-19 recovery rate not increasing? It has been at 135 for a number of days now. @piersmorgan #corvid19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                      
## [3634] "Is he withholding supplies and equipment from the citizens of Michigan and Washington? Did he tell vpotus not to call their governors? #HellIsHot #UnfitToLead\n#failure #loser #coronavirus"                                                                                                                                                                                                                                                                                                                 
## [3635] "Spanish minister laughs talking about #covid19 situation. He met illegally #venezuela vice-president.\n\n@sanchezcastejon is not going to fire him up.\n\nAny country is going to denounce them?\n\n@abc @cbs @cnn @thetimes @nytimes @BBCWorld https://t.co/ZluGexvkmc"                                                                                                                                                                                                                                      
## [3636] "@SpeakerPelosi U shoved in $300 million for National Endowment for the Arts, $300 million for National Endowment for Humanities in the COVID-19 bill. $600 million would purchase 42, 857,142 disposable hazmat suits at $14 each. What a piece of slime you are."                                                                                                                                                                                                                                            
## [3637] "#StayHomeRw @WHO @kanangire. The best way for fighting #COVID-19. #StayHome https://t.co/FLwOWCawFh"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3638] "Canada would not be Canada without its charities. The COVID-19 crisis is threatening to destroy them. \nEverybody is struggling at this time but if charities are allowed to fail, it will be the most vulnerable of us who suffers.  #HelpTheHelpers https://t.co/4nU1CzILTq"                                                                                                                                                                                                                                
## [3639] "#HCWshoutout to all the people working on the front lines trying to save lives while putting themselves at risk during this pandemic, special #HCWshoutout to my Aunt working in the ICU in NYC. #stayinside #COVID2019 #StaySafeStayHome"                                                                                                                                                                                                                                                                    
## [3640] "Citizen Scientists Are Helping Researchers Design New Drugs to Combat COVID-19 https://t.co/ey21v8Kdmh https://t.co/V8lEIlxOlS"                                                                                                                                                                                                                                                                                                                                                                               
## [3641] "@fordnation Virus stays on metal for 3hrs. Workers stations are not being cleaned during shift change. These workers come home to vulnerable family members. More needs to be done to protect these workers! I’m counting on you Mr. Ford! Thank you and stay safe! #COVID2019"                                                                                                                                                                                                                              
## [3642] "You are not here: The numbers that the U.S. is reporting for COVID-19 aren't what they seem to be https://t.co/GzYK4yUWHN"                                                                                                                                                                                                                                                                                                                                                                                    
## [3643] "Sadly, there is not a clip of this \"medicine experiment\" online. It was a really emotional episode where he (@DrPhil)  guest-starred on @Oprah. I wondered why they were crying. I get it now.\n\n#coronavirus #COVID19 #ventilators #VentilatorShortage"                                                                                                                                                                                                                                                   
## [3644] "#Covid 19 save world https://t.co/unfKlVzJeF"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3645] "@seanrestes hit the jackpot @GiantEagle on 117th in CLE but could only buy one tub. <U+0001F637><U+0001F9A0>#coronavirus #WereInThisTogether  #StayHomeOhio https://t.co/b3b7y3z1Dh"                                                                                                                                                                                                                                                                                                                          
## [3646] "NHS Aberdeenshire COVID-19 Testing Guidelines https://t.co/iZpSPPvPHh"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3647] "@DDNational @PrakashJavdekar thank you for the ramayan....hope lord Ram will help us to get away from Covid 19\nJai shree ram https://t.co/mRG6pGULHP"                                                                                                                                                                                                                                                                                                                                                        
## [3648] "Important safety info. #coronavirus #COVID<U+30FC>19  https://t.co/BdiCtqLk3q"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3649] "Raymond J. de Souza: When the going got tough due to COVID-19, Justin Trudeau showed his true authoritarian colours https://t.co/h4wsrrRthC via @nationalpost"                                                                                                                                                                                                                                                                                                                                                
## [3650] "Things to do during lockdown... \n\n#LifeintimeofCorona\n#CoronaLockdown\n#coronavirus https://t.co/dhjHcx6D0K"                                                                                                                                                                                                                                                                                                                                                                                               
## [3651] "We're number 1!  In Covid-19 cases.<U+0001F631> #TrumpVirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3652] "This #coronavirus is like the TV show #FallingSkies"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3653] "St. John's funeral home a COVID-19 'mini-epicentre' after more than 60 cases traced to two wakes https://t.co/GjWhvj0m8L via @nationalpost"                                                                                                                                                                                                                                                                                                                                                                   
## [3654] "Biotechnology Innovation Organization summit outlines what #industry needs for #COVID-19 response. I am Biotech @IAmBiotech https://t.co/gKEO12AZjX https://t.co/SAQfyOdnlA"                                                                                                                                                                                                                                                                                                                                  
## [3655] "United in this fight: Nadal, Djokovic extend generous COVID-19 pledges https://t.co/0bxmMnghSX @TwitterNews @nytimes @CNN @NickRiccardi @USATODAY @politico @AP @WSJ @MSNBC @Newsweek @MariaTeresa1 @Salon"                                                                                                                                                                                                                                                                                                   
## [3656] "@ceesmcd women cont to be at the forefront of COVID-19 recovery"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3657] "This is my profound daily tweet about #COVID19.  Please like it. Also, #StayHomeSaveLives"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3658] "@GOPChairwoman @senatemajldr @realDonaldTrump I hope someone in your immediate family gets covid 19   We know you value money more than life GREED!"                                                                                                                                                                                                                                                                                                                                                          
## [3659] "@hackingdata @COVID19Tracking @propublica You inspired me to put together a petition. Thanks!\n\nNow go sign it and spread the word! https://t.co/d142lKQTgG\n\nLet’s think bigger. 30M tests in 30 days. Go, go, go! Let's beat Iceland! We can do it."                                                                                                                                                                                                                                                     
## [3660] "Coronavirus Australia: Chinese owned property developer Risland flies more than 82 tonnes of medical supplies to Wuhan. \nHow and why was this allowed, right under our border security noses during one of the world’s worst times! What a disgrace! #COVID2019  https://t.co/17CWohaBFT"                                                                                                                                                                                                                   
## [3661] "31 states are currently reporting 10 or fewer deaths from #Coronavirus. But I actually think the numbers are much higher, because I think it's been here most of the winter and contributed mightily to CDC labeling several \"epidemic\" spikes for pneumonia in January &amp; February."                                                                                                                                                                                                                    
## [3662] "Finally, a sliver of hope and smart move ... “Additionally, the self-employed, sole proprietors, and freelance and gig economy workers are also eligible to apply.” #stimulus #smb #smallbiz #COVID19  https://t.co/JBMnHoaLjy"                                                                                                                                                                                                                                                                             
## [3663] "BREAKING: Michigan reports 801 new cases and 3,657 total cases\n\nTOTAL DEATHS: 92\n#michigan #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3664] "COVID-19 cannabis shortages, grow your own by @TheYoungJurks https://t.co/3QrHMTvy60 #mapoli #magov"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3665] "#Covid19 has infected more people in the US than in any other country worldwide - including China, where coronavirus first emerged back in December."                                                                                                                                                                                                                                                                                                                                                         
## [3666] "A green reboot: In addition to threatening millions of lives and the global economy, COVID-19 has demonstrated that societies are capable of transforming themselves... there's no better time than now to usher in systemic economic change. https://t.co/ICdKWbIZJd https://t.co/AArgPjszgs"                                                                                                                                                                                                                
## [3667] "@MauricioRojasmr #COVID19 New Cases\n\n+11,533 <U+0001F1FA><U+0001F1F8> USA\n\n+6,273<U+0001F1EA><U+0001F1F8> Spain\n+6,240<U+0001F1E9><U+0001F1EA> Germany\n+5,909<U+0001F1EE><U+0001F1F9> Italy\n+3,809<U+0001F1EB><U+0001F1F7> France\n+2,926<U+0001F1EE><U+0001F1F7> Iran\n+2,885<U+0001F1EC><U+0001F1E7> UK\n+2,069<U+0001F1F9><U+0001F1F7> Turkey\n+1,172<U+0001F1F3><U+0001F1F1> Netherlands\n+1,117<U+0001F1E8><U+0001F1ED> Switzerland\n+1,049<U+0001F1E7><U+0001F1EA> Belgium\n\n+733<U+0001F1E6><U+0001F1F9> Austria\n+724<U+0001F1F5><U+0001F1F9> Portugal\n+567<U+0001F1E8><U+0001F1E6> Canada\n\nSource: Worldometer"
## [3668] "@Swamy39 Sir you have very good diplomatic<U+0001F91D>r’ship with china, as per your sources how worst #ChinaVirus19 has effected <U+0001F1E8><U+0001F1F3>&amp; there denial mode to own the #COVID2019 origin when #WuhanOutbreak has given birth to it #ChinaLiedPeopleDied &amp; #ChineseBioterrorism impact on <U+0001F1EE><U+0001F1F3>future<U+0001F468><U+200D><U+0001F468><U+200D><U+0001F466><U+200D><U+0001F466><U+0001F64F>"                                                                       
## [3669] "I’ve noticed this many times, or rather the lack thereof, in N American hospital videos of their staff. They don’t have suits, they only have one mask, their heads are about 30% exposed, etc. China showed the world how to fight #coronavirus  We need to learn now #cdnpoli https://t.co/VVDOAZVBri"                                                                                                                                                                                                    
## [3670] "Answer the question the man asked, who is making these testing kits?? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3671] "UK government will begin coronavirus tests for health workers on the frontlines #COVID19 https://t.co/6Izyor5wDC"                                                                                                                                                                                                                                                                                                                                                                                             
## [3672] "LODGED #RobertFrost\n\nThe rain to the wind said,\n“You push and I'll pelt.”\nThey so smote the garden bed\nThat the flowers actually knelt,\nAnd lay down--though not dead.\nI know how the flowers felt.\n\n(Right now, everyone, with the #COVID19 crisis)"                                                                                                                                                                                                                                              
## [3673] "“There is strong evidence that exposure to air pollution increases susceptibility to respiratory viral infections by decreasing immune function.”\nCheers for BC, the ONE Canadian province telling the public not to burn biomass because of #COVID19.\nhttps://t.co/RIAVObtDQy https://t.co/fjyJ8JdLcH"                                                                                                                                                                                                   
## [3674] "Today, Hubbard Street announces the immediate and indefinite closure of the Lou Conte Dance Studio. Faculty will continue be paid for a few weeks. HS predicts the financial impact of the covid-19 health crisis on the org will exceed $1M."                                                                                                                                                                                                                                                                
## [3675] "@NicolaSturgeon I am a carer to my husband who is dietetic and has asthma and also he is disabled as well and I am with him for more than 35hours a week but my question is with me being a carer can I get tested to see if I have the covid-19 or not"                                                                                                                                                                                                                                                      
## [3676] "The critical role of laboratory medicine during coronavirus disease 2019 (COVID-19) and other viral outbreaks : Clinical Chemistry and Laboratory Medicine (CCLM) | @scoopit https://t.co/EvDdsneP6r"                                                                                                                                                                                                                                                                                                         
## [3677] "with private hospitals with acute capabilities in the city so that Covid-19 patients can be isolated and treated appropriately.\n\nThey would like acute hospitals to also be on standby to care for very acute patients on a referral basis.\n\nInterested healthcare workers should reach"                                                                                                                                                                                                                  
## [3678] "#Covid19: Irresponsible nation filled with greed should be stripped of veto power and UNSC seat for hiding facts knowingly or unknowingly."                                                                                                                                                                                                                                                                                                                                                                   
## [3679] "Just like the Economy of this Cow-N-Tree called South Africa, you are not included and the plans to deal with Covid-19 absolutely do not include you,it businesses, businesses and businesses.\nAnd we all know the owners of businesses in this Cow-N-Tree <U+0001F98D><U+0001F98D><U+0001F98D>\n<U+270C><U+0001F3FF><U+0001F1FF><U+0001F1E6><U+0001F1FF><U+0001F1E6><U+0001F1FF><U+0001F1E6><U+0001F1FF><U+0001F1E6>"                                                                                       
## [3680] "Immensely proud of my colleagues at UCL who are part of the incredible global fight against COVID - 19 https://t.co/v1AjsDCeS3"                                                                                                                                                                                                                                                                                                                                                                               
## [3681] "Teenage boy whose death was linked to coronavirus turned away from urgent care for not having insurance https://t.co/uxnE60TYwz"                                                                                                                                                                                                                                                                                                                                                                              
## [3682] "@TVMohandasPai @BDUTT @ShekharGupta @sardesairajdeep @ndtv Sir, these Lutyens are either hiding in their burrows or looking for something new to defame Modiji and RSS on Covid-19 . Such a shame #KabulGurdwaraAttack"                                                                                                                                                                                                                                                                                       
## [3683] "Oh @Ocado thank you! Just had a lovely chat with one of your fabulous drivers (2 metres apart obvs) - life is great again! #COVID2019 #delivery #2weekwaitworthit #smallthings https://t.co/BsSFwm3kCM"                                                                                                                                                                                                                                                                                                       
## [3684] "Good evening Gila County! As many of us have heard or seen earlier today, we posted that we now have one (1) confirmed case in Gila County. \nJust a reminder: To prevent the spread of  COVID-19.  Stay home if sick; Wash hands; Cover cough; Clean/disinfect; use social distancing https://t.co/97PREIQpc2"                                                                                                                                                                                               
## [3685] "On March 20, SCU told students that they had just days to move out. The decision to close the residence halls, neighboring housing and graduate and law residences was made after a law student living in the law residences tested positive for COVID-19.\nhttps://t.co/KWtwVll2T5"                                                                                                                                                                                                                          
## [3686] "Exactly zero people believe that China has or is accurately reporting Covid-19 data. https://t.co/7Idm0chSd1"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3687] "@JoeBuscaino because 6 month re-payment plan is not enough! How many properties do you own sir!? #CancelRent #COVID19"                                                                                                                                                                                                                                                                                                                                                                                        
## [3688] "Support Students with Disabilities: Get resources and tips to help students with disabilities during the #COVID19 pandemic https://t.co/2AoxsZMFDv #specialneeds @AFTunion https://t.co/W6PmHjvsvX"                                                                                                                                                                                                                                                                                                           
## [3689] "@GregAbbott_TX Governor, I’m TDY to New York for military training for several months. When I return are you saying I can’t be at home with my wife and kids for another 14 days? Where am I supposed to go? #COVID19"                                                                                                                                                                                                                                                                                      
## [3690] "<U+0001F481><U+200D>♀<U+FE0F>Social Distancing is the key to prevent the spread of <U+0001F9A0>Corona Virus.\n\nPractice Safe Social Distancing!\n\nCovid-19 - Be Aware, Stay Alert!\n\n#HDOR #COVID19 #CoronaVirus #FlattenTheCurve #StopTheSpread #IndiaFightsCorona #StayHomeStayHealthy #CoronaStopKarona #CoronavirusOutbreak https://t.co/9cEcU3b79E"                                                                                                                                                  
## [3691] "Almost 120000 people have recovered from #COVID19 across the world ...We are winning the war <U+0001F4AA> #CovidNGR"                                                                                                                                                                                                                                                                                                                                                                                          
## [3692] "This is my HUGE concern - you would be shocked to hear how many people don't know how to use a computer, let alone have access to one - sad but true... it's is ludicrous to insist on #MeansTesting, in a #pandemic \n#NoMeansTesting #MoneyToThePeople \n#EmergencyUBI #COVID19 <U+0001F64F><U+2695><U+FE0F><U+0001F911><U+0001F64F> https://t.co/gOzpigLmvA"                                                                                                                                               
## [3693] "Dr. Fauci Answers Trevor’s Questions About Coronavirus | The Daily Socia... https://t.co/qAMBJTi1rz via @YouTube\nMUST WATCH! If only because he has same charming Brooklyn accent &amp; humour as my Dad, who was also from that neck of the woods. More seriously, best info on #covid19."                                                                                                                                                                                                                 
## [3694] "<U+0001F4D6> So, Lockdown starts Today March 26, 2020 and what does Isaiah 26 vs 20 say?Check your #Bibles God's WORD is #TRUTH <U+0001F64C>Continue reading after...Amen! \nJESUS is coming soon!<U+0001F54A><U+23F3><U+0001F64C>\n#COVID2019 #Lockdown21 #DaysofNoah  #ABORTIONisMurder #GODSWrath #Repent #ChineseVirus19 #WordofGod https://t.co/wvkUfAZ4pB"                                                                                                                                              
## [3695] "\"Economic stress on families resulting from the #COVID19 outbreak &amp; its secondary impacts may increase the potential for #childlabor; #childmarriage, #earlymarriage &amp; #forcedmarriage of girls &amp; other negative coping strategies.\" @PlanCanada @ChildLaborCLC https://t.co/zKR5gPNCfz"                                                                                                                                                                                                        
## [3696] "@realDonaldTrump \n\nI hope you investigate this H1b foreign worker program and at the very least suspend it until after the #economy is back to where it was b4 #COVID19 \n\n #Americans need #jobs before foreign workers #AmericaFirst #maga #KAG2020 #Trump #Leadership #2020Elections"                                                                                                                                                                                                                   
## [3697] "Sir @narendramodi @realDonaldTrump After we are out of this forced bad phase in our lifes What should World Community do with #China,who forced almost whole world into recession by infected with \nChina Virus-19 #ChineseVirus19 #coronavirus #COVID #COVID19 #coronavirusinindia"                                                                                                                                                                                                                         
## [3698] "Talking to a child psychologist tonight about children's #coronavirus worries, do you have any questions we can put to him on #TheNine tonight? with @BBCLauraMiller"                                                                                                                                                                                                                                                                                                                                         
## [3699] "Hi @EUHomeAffairs @Place_Beauvau @BMI_Bund @foreignoffice @Justitiedep @ministerieJenV thousands of refugees are at risk of #COVID19 on Greek islands due to crowded unsanitary conditions. Will you act now to #LeaveNoOneBehind and save lives? <U+0001F449> https://t.co/uD5M3BBPtp"                                                                                                                                                                                                                       
## [3700] "COVID-19: Infection spread appears to be slowing in B.C., figures suggest https://t.co/C8CEzBWjaU"                                                                                                                                                                                                                                                                                                                                                                                                            
## [3701] "Without my HCQ I cannot get out of bed most days. #lupuswarriors #coronavirus #WithoutMyHCQ #Hydroxychloroquine #Plaquenil https://t.co/aXayZnOkhV"                                                                                                                                                                                                                                                                                                                                                           
## [3702] "THANK YOU to all the health and social care staff on the frontline who are working tirelessly in the fight against #coronavirus #NHSThankYou #clapforthenhs #clapforourcarers #staysafestayhome https://t.co/Z1HFEVoC84"                                                                                                                                                                                                                                                                                      
## [3703] "My mom is a vendor. I can’t tell her not to go to work because we’ll starve. She can’t not take any cash payments because she needs the cash to buy forex to buy more stock. She can’t do anything with ecocash and swipe<U+0001F494> #coronavirus"                                                                                                                                                                                                                                                       
## [3704] "@richieSF2016 Too bad the people you dad shot and killed never got the chance to see covid 19 , H1N1, Zika etc"                                                                                                                                                                                                                                                                                                                                                                                               
## [3705] "Didn’t get to hear the claps personally tonight as I was still in work but loving the videos being sent in by friends and family!<U+2764><U+FE0F><U+0001F64C><U+0001F3FB>#NHS #clapforourcarers #thankyou #Covid19 #workingtogether https://t.co/ErdD4Yy4Dl"                                                                                                                                                                                                                                                 
## [3706] "Spoke to a customer for work today and she almost started crying because she got diagnosed with Covid-19 today! Don't take it lightly man, if you can stay home! Only go out if you absolutely cannot make it another without that item"                                                                                                                                                                                                                                                                      
## [3707] "@Mariam_Bhadmus One house of representatives was busy defending the purchase of car on a fireworks program in Tvc ,that it's basic need for them. They can be using their personal car for govt work .\nWell got to know the car had being planned ahead way b4 this Covid 19 issue"                                                                                                                                                                                                                          
## [3708] "CHESTERTOWN<U+00A0><U+2014> The Kent County Health Department on Friday morning, in conjunction with the Kent County Commissioners, reported a second confirmed case of COVID-19 in Kent County. The individual was identified as a man in his 70s who lives in Kent an… https://t.co/hY5fqIp1Lb"                                                                                                                                                                                                            
## [3709] "@Dimyan please sign and share https://t.co/axRIoVzp87 @OregonGovBrown"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3710] "Hospital ship Mercy arrives at Port of Los Angeles https://t.co/o3Pcz0ROLt via @YouTube #Covid19 #CoronaVirus"                                                                                                                                                                                                                                                                                                                                                                                                
## [3711] "@guyverhofstadt So, Guy,maybe you could advise just how many ventilators have been supplied to Italy, Spain and other countries currently overwhelmed by #coronavirus. It's a simple question."                                                                                                                                                                                                                                                                                                               
## [3712] "A new group for #IndependentShops in #Sheffield to connect with customers online during the #Coronavirus crisis over on #Facebook\n\nBusiness owners, please use this group to share your links, offers and updates with customers through these difficult times.\n\nhttps://t.co/AsLHFnU2GB"                                                                                                                                                                                                                 
## [3713] "#TBJoshua #CoronavirusOutbreak will end today. \nJust in: @NCDCgov 81 cases confirmed. \nIs okay motor jam us last last<U+0001F683><U+0001F683><U+0001F683><U+0001F683><U+0001F683><U+0001F683><U+0001F683> #ChineseVirus19 #COVID19"                                                                                                                                                                                                                                                                         
## [3714] "@xwilkinson92 @NicolaCairnX @RishiSunak @BorisJohnson @MattHancock Alex, I've been looking at it for some SME colleagues of mine, and I'm a bit confused about the eligibility info on the BBB site. It seems to be saying the only eligible proposals are those which would be acceptable to the lender minus the circumstances of the Covid-19 pandemic?"                                                                                                                                                   
## [3715] "in case you needed a reminder that holy shit this [COVID-19] is bad, https://t.co/oRGmbD26wc"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3716] "‘Are you on glue?’: Twitter scoffs at WSJ op-ed claiming #coronavirus crisis is Trump’s ‘path to greatness’ https://t.co/BsSXsWybgN"                                                                                                                                                                                                                                                                                                                                                                     
## [3717] "‘People Are Dying’: Battling #Coronavirus Inside a N.Y.C.\nhttps://t.co/mDJUK0k5Qg"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3718] "Why is pandemic preparedness planning important?\n\nThis was the European advice that the UK disregarded for eleven years.\n\nWe simply weren’t prepared.\n\n#coronavirus \n#COVID19 \n https://t.co/dTuiOjpnnk"                                                                                                                                                                                                                                                                                             
## [3719] "Featured this in my round-up for a reason - @sirjohnhargrave \n#CoCo #COVID19 #journalism https://t.co/bTOmJRaH8H"                                                                                                                                                                                                                                                                                                                                                                                            
## [3720] "McDonald‘s Shuts Down All but Five Israel Restaurants to Service Medical Staff for Free https://t.co/3C3IsmoDvt via  @BreitbartNews #Coronavirus https://t.co/oXC9nybUWq"                                                                                                                                                                                                                                                                                                                                    
## [3721] "Media Release: SA racing industry introduces further COVID-19 measures.\n\n\"Our aim is to keep racing going, just as it has been able to in Hong Kong and Japan during this pandemic.\" - Nick Redin TRSA CEO\n\nRead more: https://t.co/3uqpIrW5YW\n\n@tabcomaumedia  @Racing https://t.co/tiUXoT5FFb"                                                                                                                                                                                                      
## [3722] "CORONAVIRUS UPDATE: The federal REAL ID deadline has been pushed back a year to October 2021 amid the ongoing response to the coronavirus pandemic. https://t.co/8sTORIOB8x"                                                                                                                                                                                                                                                                                                                                  
## [3723] "OMG<U+0001F630>\n#新型コロナウイルス #新型肺炎 \nVideo reveals lung damage in US coronavirus patient: 'People need to take this seriously' - CNN https://t.co/80Q4xpvtKe"                                                                                                                                                                                                                                                                                                                                     
## [3724] "Why are grown men STILL wearing flip flops in public? That’s how #COVID19 started."                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3725] "A War Sans Cavalry: Horse Ownership in the Age of COVID-19 https://t.co/7oRsxqag0l"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3726] "Nickelodeon, Disney Airing Content to Address Kids' COVID-19 Concerns \n#WAITT #KidsTogether \nhttps://t.co/3RuelPC31K https://t.co/Bud4ZAfstT"                                                                                                                                                                                                                                                                                                                                                               
## [3727] "#CoronaVirus #COVID<U+30FC>19 \n#TrumpLiesAmericansDie \nDay 67 of the #Trumpdemic https://t.co/LsgAdeIES6"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3728] "NEWS FLASH: Davido’s Chioma has tested positive for #COVID19.    <U+0001F494>"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3729] "Is this not escalating the chances for infections even more,the police have turned out to the 1st danger ahead of #COVID19 #CurfewinKenya @ntvkenya https://t.co/tIYHtEzd9D"                                                                                                                                                                                                                                                                                                                                  
## [3730] "Poignant and important article about the doctors' first hand experience with COVID-19 in Bergamo's modern hospital.\nhttps://t.co/Q2u6G28EmP"                                                                                                                                                                                                                                                                                                                                                                 
## [3731] "@SweetKat111 @realDonaldTrump @NYCHealthCommr You are correct on one point. He halted travel from China on 1/31. He's literally done nothing else, the extreme measures required, to stem the flow of Covid-19 in the US. As of today you ahve the highest number of cases in the world, outpacing China, who has 3X your population."                                                                                                                                                                        
## [3732] "Lacombe Police providing tips for local business owners during the COVID-19 pandemic https://t.co/nS9ZWfKneV"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3733] "Should I become a pandemic influencer? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3734] "@PattyHajdu @SenateCA RED Carpet = how fitting since the #corrupt incompetent #CANADAGovernment has blood on its hands #Agenda21 #BIOWeapon #CHINA #CHINAVIRUS #CCPVIRUS #CoronaVIRUS #COVID19 @JustinTrudeau https://t.co/2TRjWWMpQ4"                                                                                                                                                                                                                                                                        
## [3735] "Does this mean CDC will have record low flu cases and deaths since they are all being counted as COVID-19?\nWE ARE WATCHING!\n@CDCgov \n@realDonaldTrump @VP"                                                                                                                                                                                                                                                                                                                                                 
## [3736] "#PuertoRico digs in their heels deeper to restrict movement on the island. Only even numbered vehicle license plates M-W-F and odd numbered for Tu-Th-Sa \n\n#Covid19 #measures https://t.co/CAThy9HMCE"                                                                                                                                                                                                                                                                                                      
## [3737] "Some good news: @NYGovCuomo set to release 1,100 people incarcerated for technical violations of parole. #COVID19 \n\nThank you to all the advocates &amp; organizers who kept the pressure on! This will save lives. Now it’s time to #FreeOurElders and grant clemencies across the state."                                                                                                                                                                                                                
## [3738] "https://t.co/ZG20w3LF4V Donations to The Jockey Club Safety Net Foundation to go to COVID-19 Relief"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3739] "@imVkohli pls step up <U+0001F64F>\n\nhttps://t.co/EZDYWBnVuh"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3740] "#Coronavirus with so much information out there, lets ensure we make the right decisions when it comes to the virus and follow the professional advice from our department heads.\n\nPlease all, lets take this seriously. Support one another at distance.\nhttps://t.co/l1ebFMUeLn https://t.co/jLdlLBCfxb"                                                                                                                                                                                                 
## [3741] "@kathygriffin @lookner I just heard the news that her mother passed away. My prayers go out to you and and your family. I lost my mother three years ago and still have not gotten over it. Also heard you’re in the hospital trying to find out if you’ve got that COVID-19. Hopefully you do not have it."                                                                                                                                                                                                
## [3742] "Poland reports 58 new cases and 2 new deaths bringing total confirmed cases there to 1,221 and 16 total deaths, with 170 new cases reported today.\n\n#CoronaVirus #Covid19 #CoronaVirusOutbreak"                                                                                                                                                                                                                                                                                                             
## [3743] "@SkeltonSophie @SamHeughan Sorry, I’m a nurse who works in ICU and this information is not accurate. This is not information that is passed along to healthcare workers. The CDC and WHO are reliable sources for COVID-19 facts."                                                                                                                                                                                                                                                                           
## [3744] "Seems @AirCanada isn’t very keen on responding to questions either. #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3745] "Stay at home. Do not travel if it can be avoided. Covid-19 travels by plane. If you are \"stuck\" in quarantine, please wait until you can travel without spreading the disease further. Stay where you are. Healthy \"shedders\" exist too."                                                                                                                                                                                                                                                                 
## [3746] "I didn't hear any clap because I was inside the isolation room with suspected Covid19 tracheostomy patient. My patient's needs is the utmost importance.  #PleaseStayAtHome #clapforourcarers #clapforNHS #clapforthenhs #clapforournhs #ThankYouNHS #covid19 #COVID2019"                                                                                                                                                                                                                                     
## [3747] "my friends and I reuniting after this covid-19 stuff is over https://t.co/1vh4ENdtYU"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3748] "WHERE are ALL these Covid-19 TESTS<U+2049><U+FE0F>\n\nTo Control Outbreaks &amp; Property MAP Hotspots WE MUST TEST anyone with Symptoms &amp; who has been EXPOSED &amp; What’s with this LAG in getting RESULTS<U+2049><U+FE0F>\nA WEEK<U+2049><U+FE0F>Really<U+2049><U+FE0F>\n\nTESTING is the KEY to CONTROL<U+203C><U+FE0F>\n\nTRUMP is CLUELESS<U+203C><U+FE0F><U+0001F644>\n\nTEST TEST TEST TEST<U+203C><U+FE0F> https://t.co/oM9WQcNwzd"                                                            
## [3749] "[BREAKING NEWS] | Covid-19: 1170 confirmed cases in South Africa https://t.co/a9BNq4l66p https://t.co/UYADhE9sko"                                                                                                                                                                                                                                                                                                                                                                                             
## [3750] "Internal @USArmy memo says measures to halt COVID-19 'have proven hugely insufficient’.\n\nhttps://t.co/YFZTTej3Kf"                                                                                                                                                                                                                                                                                                                                                                                          
## [3751] "Stuck at Home? It might be your time to shine in the kitchen! Stay Safe &amp; Stay Home. \n\n#CoronavirusPandemic #Coronavirus #COVID19 #USA #CoronavirusLockdown https://t.co/TOwsXu8Rzp"                                                                                                                                                                                                                                                                                                                    
## [3752] "How I prep myself to leave my home to get things (groceries etc).\n\nIt was nice to see the majority of ppl w gloves &amp; masks <U+0001F637>while staying 6 ft away from eachother<U+0001F44D><U+0001F3FC>\n\nI hope this helps encourage you to practice the same habits<U+2764><U+FE0F>\n#AllInThisTogether #CoronaVirus #californialockdown https://t.co/FzU2STPmpf"                                                                                                                                      
## [3753] "Resident at Kirkhaven tests positive for COVID-19\nhttps://t.co/bKVttNecDz"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3754] "The US has more ACTIVE cases of COVID19 than China’s total cumulative cases. <U+0001F633> #COVID19 https://t.co/buPA9CpAwd"                                                                                                                                                                                                                                                                                                                                                                                  
## [3755] "@nbstv You keep making buffoonery apologies in the face of a pandemic. #COVID19 knows no skin color. When People start dying, you will regret why didn't beat them off the streets. Always remember you can only admit 55 Patients into ICU. Let People #StaySafeStayHome #STAYSAFEUG"                                                                                                                                                                                                                        
## [3756] "@DonaldJTrumpJr @thebradfordfile Sick, sick, sick people. Not talking #coronavirus either."                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3757] "@1Naasty @kikaltz Thank you for the thread. I needed this. Known about this since the Clintons wore purple after @POTUS won.\nFollow all politicians World Wide wearing purple ties and being all submissive. Such 'roaches.\nSo funny and pathetic at this point in time #WeKnow #Covid19 #UsHouse #WWG1WGA https://t.co/sdEzbHdBEk"                                                                                                                                                                         
## [3758] "#Coronavirus and conspiracy theories - an impartial analysis https://t.co/3PQZchYE3i #BitChute"                                                                                                                                                                                                                                                                                                                                                                                                               
## [3759] "I feel like I’m deadass failing at parenting with covid-19 ... how exactly does a person who has been diagnosed with ocd, has several chronic conditions, and people pretend is a community organizer actually parent in the most compassionate and trauma free way?"                                                                                                                                                                                                                                        
## [3760] "Hi @KristaKiuru @elenabonetti @GEOgovuk @CharlieFlanagan @BMFSFJ domestic violence has been increasing at an alarming rate during #COVID19 lockdowns. Please take immediate emergency action to prevent and combat violence against women and domestic violence. https://t.co/Hx8Qe34j3m"                                                                                                                                                                                                                     
## [3761] "Sam Neil helping us through this all #COVID19  https://t.co/iHuW13jH2O"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3762] "the only reason the united states surpassed italy and china for the most confirmed cases of covid-19 is simply because more people in the us are being tested for it"                                                                                                                                                                                                                                                                                                                                         
## [3763] "So...there is a stay-at home order out.  I get an email from my mortgage company still wanting their money on time, tells us we can pay on line but will charge us $95 convince fee.  ARE YOU F****ing serious???? Shame on you! #COVID2019 #QuarantineLife #GTFOH"                                                                                                                                                                                                                                           
## [3764] "Found out earlier this week one of my best friends has #COVID19 <U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE>"                                                                                                                                                                                                                                                                                                                                                                                             
## [3765] "A 37 minute voice note explaining how COVID-19 is linked to 5G. https://t.co/Y7aRBIweQB"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3766] "@jayvanbavel Governments have had that ability for ages. It’s almost common knowledge now - so much so that Israel openly announced that they would track locations of ppl w/ #coronavirus to identify who they contacted. But afaik, only governments and cell phone operators have these data."                                                                                                                                                                                                            
## [3767] "COVID-19 gives this song an entirely new meaning        https://t.co/h10JZs9U6b"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3768] "What if we all put our stimulus checks together. We could do some real financial damage. Like buy land and build on it or buy stocks. #StimulusPlan #COVID2019"                                                                                                                                                                                                                                                                                                                                               
## [3769] ".@Anomaly joins the fight against #Coronavirus. https://t.co/pump4Qcv6m https://t.co/X8N0Rmys5Y"                                                                                                                                                                                                                                                                                                                                                                                                              
## [3770] "#CoronavirusOubreak\n#GodMorningFriday\nNo medicine no expense\nCancer patients who have been cured by the devotion given by Sant Rampal Ji Maharaj have become popular among all.\nLord kabir\nMust watch ishwar tv 8:3 https://t.co/x7d9r3EWru"                                                                                                                                                                                                                                                             
## [3771] "the hospital i go to for my eye got an abundance of covid-19 cases and some people are saying appointments are gettinh cancelled because of it"                                                                                                                                                                                                                                                                                                                                                               
## [3772] "#ICE statement on COVID-19: Enforcement and Removal Operations\nhttps://t.co/f1dEAZ6mns\n18 Mar 2020\n\n#QUOTE to delay enforcement actions until after the crisis or utilize alternatives to detention, as appropriate.\n\n#CoronaVirus #WuhanVirus\n\nqt-covid19-news-094 by #BorderObserver"                                                                                                                                                                                                               
## [3773] "@renoomokri @Imamofpeace @MBuhari Here from buhari himself...#ImamOfPeace he is speechless #StayAtHomeAndStaySafe #COVID19 https://t.co/mRUzBTufGX"                                                                                                                                                                                                                                                                                                                                                           
## [3774] "@singhvirat2010 @palkisu No. Mention of COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3775] "Healthcare workers exposure risk assessment &amp; management-The tool used by healthcare facilities cared for or admitted #COVID2019 patients determine the risk of virus infection of all who have expose and then provides recommendations for management #healthcare\n#HealthCareWorkers https://t.co/wmsWN7Y3Rm"                                                                                                                                                                                          
## [3776] "Self employed since June 2019. Tough times ahead....\nReceived this text from a client <U+0001F49B> #selfemployed #coronavirus #stayathome #Ayrshire #Scotland https://t.co/3iq1Wk64Up"                                                                                                                                                                                                                                                                                                                       
## [3777] "How about, instead of Celebrity Love Island, we have \"Celebrity Fruit Pickers\", \"Celebrity Delivery Drivers\", \"Celebrity 111 operators\"?\n\n#COVID2019 \n#essentialwork"                                                                                                                                                                                                                                                                                                                                
## [3778] "Video:  In Gibson County, deputies do grocery shopping for those most vulnerable to COVID-19 https://t.co/1O8TVmGmzM"                                                                                                                                                                                                                                                                                                                                                                                         
## [3779] "What does it take for people to understand the horror ahead? It’s been another terrible day in Italy with 919 deaths. <U+0001F5A4> <U+0001F1EE><U+0001F1F9>  Total #COVID19 deaths is now 9,134. And 6,000 new infections today. Hospitals &amp; medical staff overwhelmed. And a young COVID29 nurse has taken her life. https://t.co/jb1U2L5P9b"                                                                                                                                                           
## [3780] "#NewtGingrich : #Coronavirus spread because of #Chinese government mismanagement, corruption and dishonesty\n\nhttps://t.co/Fl30NsN7jj"                                                                                                                                                                                                                                                                                                                                                                       
## [3781] "PIIE: Four areas cry out for collective action from #G20 countries, TrumanTed writes: \n1<U+FE0F><U+20E3> Financial support for poorer countries\n2<U+FE0F><U+20E3> Curbing destructive trade practices\n3<U+FE0F><U+20E3> Macroeconomic support\n4<U+FE0F><U+20E3> Prudent, responsible financial supervision\nhttps://t.co/WS1xUntn8D #finance #m…"                                                                                                                                                        
## [3782] "Innovation and collaboration at work @MassChallengeHT to help urgently solve the massive #COVID19 challenge- https://t.co/AQUnToIBD1"                                                                                                                                                                                                                                                                                                                                                                         
## [3783] "Calling it. Births are gonna jump up around 9 months from now. #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3784] "This mofo’s brain is a “holding cell” for dumb shit. #coronavirus #TrumpVirus #TrumpPressConf #TrumpPressConference #25thAmendmentNow #TrumpLiesAboutCoronavirus"                                                                                                                                                                                                                                                                                                                                          
## [3785] "Johnson’s #coronavirus campaign got off to stuttering start (Dominic Cummings must pay price for that), but the UK is here now, more or less doing the right thing, privileging life over all else. But the US? God save you from that murderous maniac. #NewYork"                                                                                                                                                                                                                                           
## [3786] "Fair play @VodafoneIreland! It would be good to see more multi national corporations step up to support our charities at this time of need for so many. #coronavirus https://t.co/RyuONqNQhh"                                                                                                                                                                                                                                                                                                                 
## [3787] "Yea.  You want to mentally wrap your mind around scarey at a biblical level of scary?  In about 4 weeks the infection rates in @GOP+30 districts will exceed the Blue #Covid19 hotspots where all the people, medicine and skills are.  People will be fleeing into those Blue Hotspots."                                                                                                                                                                                                                     
## [3788] "Nesting.\n\nFamily style.\n\nThese kids will have the best memories ever because of #COVID19 \n\nLemons to lemonade. https://t.co/r6HP3W3awE"                                                                                                                                                                                                                                                                                                                                                                 
## [3789] "@QCGov We need more space to isolate our PUIs, PUMs and covid-19 patients at only one big place. Please open the Philippine Arena as our isolation area. There are 300 small villas that can accomodate 5 individuals each."                                                                                                                                                                                                                                                                                  
## [3790] "#Violations_Documentation_Center in #Syria issues a press statement regarding the measures taken by UNHCR and the Lebanese government to prevent the spread of the COVID-19 virus in Syrian refugee camps\n\nhttps://t.co/P4xWi0TQab"                                                                                                                                                                                                                                                                         
## [3791] "Staten Island Corona Virus Community Map Description List of emergency services on Staten Island NYC #helpsi #covid19 https://t.co/awwHS8VuyE"                                                                                                                                                                                                                                                                                                                                                                
## [3792] "New York State Sikh temple preparing food to be delivered free of cost to 28,000 residents of New York who need a hot vegetarian indian meal. All is well. #NewYork #WuFlu #ChineseVirus #KungFlu #CoronaVirus #Sikh"                                                                                                                                                                                                                                                                                         
## [3793] "@mashoto_ Anyway not having you next to me won't stop COVID 19"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3794] "I hope when this #COVID2019 is over, #Canadians choose to #travel within our great country <U+0001F1E8><U+0001F1E6> and support Our economy first and foremost"                                                                                                                                                                                                                                                                                                                                               
## [3795] "6/7 Humans have suffered pandemics every 100 years or so. We are not the only living things fighting to survive on this planet. Viruses and bacteria are here too. We don't need to spread hate towards others. We need kindness and empathy. #coronavirus #China #covid19"                                                                                                                                                                                                                                   
## [3796] "@freetalkerr @BukkyAjayi15 *won ma di eni ike ni lagbara olohun.( How far with the equipment brought in from China by Jack Maa. If this was a govt that wants good things for the wellbeing of her citizens, they wouldn't high jack all to Abuja. I pray non of your families get this Covid-19 cos then u'll kn"                                                                                                                                                                                            
## [3797] "CORONA virus to whole world:\n#coronavirustruth #coronavirus https://t.co/wJ5AXsTl9n"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3798] "Now on https://t.co/0J2UdYHyh5\n\nCovid 19: Hunger will kill more than coronavirus <U+2013> Activist, Ikimi cautions governors"                                                                                                                                                                                                                                                                                                                                                                               
## [3799] "MSD COVID-19 Update, March 26, 2020 https://t.co/Arb0H2Joeg https://t.co/V2xxhZhr2S"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3800] "It’s time for @GovAndyBeshear 5 pm update on #COVID<U+30FC>19 https://t.co/vigTYQFqA2"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3801] "Our heroes:\nNurses &amp; Doctors\nPolice &amp; defence personnel\nVolunteers \nTeachers\n\n#auspol\n#COVID19 \n#lockusdown \n#Australia"                                                                                                                                                                                                                                                                                                                                                                     
## [3802] "Nets' Kyrie Irving Donates 200K 'Beyond Burgers' to NYC Food Bank amid COVID-19 https://t.co/v0lTAkG1NB https://t.co/lVeMS1j2lG"                                                                                                                                                                                                                                                                                                                                                                              
## [3803] "Hey everyone! I am helping Folding at Home (https://t.co/l2N1qugHj2) to crunch some numbers ... They have some projects related to COVID-19... You are welcome to join Team GCM with the team code: 253794 #coronavirus #CoronavirusOutbreak #COVID19"                                                                                                                                                                                                                                                        
## [3804] "Shit hit the fan thanks COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3805] "#CNNTownHall does ibuprofen really make covid 19 worse?"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3806] "Trump Cabinet's Bible teacher says gays cause 'God's wrath' in COVID-19 blog post\nhttps://t.co/Ws4c8ZtQj1"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3807] "Boris Johnson and Matt Hancock may have mild symptoms at the moment but the #Coronavirus doesn't always show it's hand early on...\n\n#CoronaUpdate\nhttps://t.co/qwxe8IKokr"                                                                                                                                                                                                                                                                                                                                 
## [3808] "West London clapping for NHS...#coronavirus https://t.co/G6DbZdjBFT"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3809] "@realDonaldTrump @generalmotors @Ford Oh, are we giving up on the miracle that magically the #COVID19 will disappear?"                                                                                                                                                                                                                                                                                                                                                                                        
## [3810] "The Economic Impact of COVID-19\n\n<U+0001F449> Economic data from the first two months of 2020 reveals the damage done to the China’s economy.\n\n@enricomolinari @Dahl_Consult @dmonett @sallyeaves @Droit_IA @antgrasso @ShiCooks @postoff25 @kashthefuturist @theomitsa\n\nhttps://t.co/I3I3kyyDHX"                                                                                                                                                                                                      
## [3811] "@Asmali77 Law abiding citizens. #COVID19 is no joke."                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3812] "the International Monetary Fund (IMF) has said the world is facing a recession which is worse than 2009\n\nhttps://t.co/pzlJf58JAW"                                                                                                                                                                                                                                                                                                                                                                           
## [3813] "We have a new internet star in Chicago, and the 75-year-old woman is a maven for social distancing. @NatalieBomke reports: https://t.co/AM9tg73zL7"                                                                                                                                                                                                                                                                                                                                                           
## [3814] "Coronavirus: Air New Zealand cuts domestic flights as travel ban deadline looms:\nhttps://t.co/T23iADF0yz\n#Aviation #Airline #Aircraft #Airports #COVID19 #Coronavirus https://t.co/e1U8L4j0Ru"                                                                                                                                                                                                                                                                                                              
## [3815] "V ve to admit PM @ImranKhanPTI &amp; his whole team involved in Corona National Security r doing professional work<U+0001F44D><U+0001F44F>\nThey r keep updating public abt situation.\nThey ve made thousand ICUs, Quarantine Buildings, Public awareness etc. WHO &amp; Washington Post also admitted it.\n#COVID19"                                                                                                                                                                                        
## [3816] "This is what #MAGA is dying for!\n\nWINNING Trump style. USA No.1\n\nAnd in record time.\n\n29 days ago, \"We are going substantially down not up.\"\n\nCongratulations @realDonaldTrump,   you really are the BEST! \n\nHistorically inept!\n\n#COVID19 #KAG2020 #trump2020  #ETTD https://t.co/Sb7t973LlN"                                                                                                                                                                                                  
## [3817] "Lets support existing projects. Please refer to this list instead of mine: https://t.co/3auAwmCdo4"                                                                                                                                                                                                                                                                                                                                                                                                           
## [3818] "every headline about the damage of containment is wrong. every contained case, every prevented case, is a win, is a diamond salvaged out of the dark. #coronavirus #covid19 #quarantine #isolation #economy"                                                                                                                                                                                                                                                                                                  
## [3819] "Tenants in #Parkdale raising banners along Jameson this afternoon.\n\nAmid the #COVID<U+30FC>19 crisis, and seeing no sign of support from the government, working class renters are organizing in across #Toronto, making the decision to keep their rent.\n\nNo of us are alone. #KeepYourRent https://t.co/W55YtiQuI8"                                                                                                                                                                                     
## [3820] "League news and appeal update. https://t.co/urljhOJBXb"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3821] "If you’re job hunting after all this is over and they ask, “do you have any questions for us?”, ask how they treated their employees during COVID-19"                                                                                                                                                                                                                                                                                                                                                      
## [3822] "Blockable offense #COVID19 #covid19UK https://t.co/PMlarlBHrw"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3823] "Venture Church has an official COVID-19 case.  Here is our statement - https://t.co/oL9jYc01rL"                                                                                                                                                                                                                                                                                                                                                                                                               
## [3824] "@HerbJWesson Who probably pay rent every month and would immeasurably helped by a rent freeze during the #COVID19 outbreak"                                                                                                                                                                                                                                                                                                                                                                                   
## [3825] "Tennessee National Guard response to the COVID-19 pandemic, March 26, 20... https://t.co/hTySvbQmTS via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                             
## [3826] "True. #COVID2019 #coronavirus #macron #confinement https://t.co/6wHHO58Ry5"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3827] "When this Covid-19 crisis is over, can we keep the 'new' way to shop for groceries? Orderly, calm - it was bliss.\n\n@Tesco @asda @sainsburys @LidlGB @AldiUK"                                                                                                                                                                                                                                                                                                                                                
## [3828] "Coronaphobia: Covid-19 warriors live in torment https://t.co/yRTX0TuO03"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3829] "Let’s quarantine the president. #fucktrump #covid19"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3830] "@EvieLancaster I think she’s got more problems than Covid-19"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3831] "Is this enough proof he needs to be removed from office?!!\n\nSomeone with the authority, please chime in here...\n#COVID19 \n#COVID2019 https://t.co/uyzvvd7HZb"                                                                                                                                                                                                                                                                                                                                             
## [3832] "So many small businesses and companies we partner with have been extremely hard hit because of COVID-19 and con cancellations, and we can't in good conscience ask for donations for prizes.\n\nWe hope to bring it back in 2021, &amp; in the meantime please stay healthy!"                                                                                                                                                                                                                                 
## [3833] "@realDonaldTrump We will die if you try to undermine #COVID19 #Quarantine"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3834] "#NewGameJustInvented\nAmerica’s Got COVID-19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3835] "It seems that #5g is being installed at this time in many schools during the quarantine process. This original post is from FB: IJ Hribal if you are on FB share from her. I am posting so more people are informed. #covert5g #coronavirus https://t.co/D5Vo2Weuie"                                                                                                                                                                                                                                          
## [3836] "Mumbai man who went out during lockdown hit by pan by brother, dies: Police\n\n#Coronavirus \n\n(reports @jaynaidu87) \n\nhttps://t.co/FXuzS6xema https://t.co/qjqPAvieBi"                                                                                                                                                                                                                                                                                                                                    
## [3837] "Experts: N. Korea Must Admit to COVID-19 Cases, Request Help Before Sanctions Lifted  https://t.co/LhMh87WwNG @voanews"                                                                                                                                                                                                                                                                                                                                                                                       
## [3838] "@A_Rosie_Life He may get the #DieForJezus virus, but he's still gonna infect everyone he touches with the #Coronavirus. Willful ignorance and irresponsible risky behavior is no excuse for this criminal act."                                                                                                                                                                                                                                                                                               
## [3839] "@mcuban Agree #coronavirus #employers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3840] "Just became aware of the fact that if I get taken out by the virus at least I’ll be in the 27’s club #covid19"                                                                                                                                                                                                                                                                                                                                                                                              
## [3841] "The COVID-19 nightmares have started <U+0001F974>"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3842] "Remember what Tedros Adhanom Ghebreyesus, W.H.O.’s director general said? “You cannot fight a fire blindfolded...And we cannot stop this pandemic<U+200B> i<U+200B>f we don’t know who is infected.” At this point the chances of getting tested for #COVID19 are extremely low. @mallorymoench https://t.co/kXr2vvVTx9"                                                                                                                                                                                  
## [3843] "The family members of Kashmiri prisoners who have been lodged in different jails across India since Article 370 was scrapped, have expressed concern in the wake of the coronavirus (COVID-19) outbreak that has gripped the entire world.\n#CoronisedWorld_Media_IOK https://t.co/jaiBF2igXz"                                                                                                                                                                                                                
## [3844] "COVID-19: IPOB leader, Nnamdi Kanu, announces N50m to fight coronavirus https://t.co/mzrrgDxvx1 https://t.co/2VAR1jJoNJ"                                                                                                                                                                                                                                                                                                                                                                                      
## [3845] "@NCDCgov @DrEOEhanire @Fmohnigeria @LSMOH @ProfAkinAbayomi Now you see,place ban since and some people were waiting for their daughter to enter 9ja first,risking the life of millions...this is how bad our leadership is!!!#COVID19"                                                                                                                                                                                                                                                                        
## [3846] "A Frontline Guide for Local Decision-Makers- for COVID-19 pandemic response\n@AfricaCDC\n@MOH_Kenya @CSMutahi_Kagwe\n@CDCKenya\n@NEPAD_AMRH\n@NEPAD_Agency @Amref_Kenya\n@USAmbKenya @USAID\n@UNICEFKenya @WHOKenya\n@WHOAFRO\n\nhttps://t.co/qywTHZfPPm\n\nhttps://t.co/AdnwD5snsz"                                                                                                                                                                                                                          
## [3847] "Below is a link to a listing of institutional and programmatic accrediting organizations recognized by CHEA or USDE that are providing information about any changes that these accrediting organizations are making to their standards or practices. https://t.co/Tw5bEOgTc5 #COVID19 https://t.co/YG5ZtnfzHV"                                                                                                                                                                                               
## [3848] "We are faced with two opposing challenges in bringing the power of science to bear on the COVID-19 epidemic:\n\nOn the one hand, we need to accelerate the pace of dissemination, getting useful clinical data out as fast and as widely as possible.\n\n1/5"                                                                                                                                                                                                                                                 
## [3849] "my parents are taking my little sister to the ER cause she has severe shortness of breath rn. my parents, sisters, &amp; i were tested for covid-19 this afternoon but my little sister is by far the worst off &amp; my parents are super concerned &amp; none of us knows what's gonna happen next"                                                                                                                                                                                                         
## [3850] "Premiere Online Doctor, https://t.co/mhZvdfseeq Waives Primary Care Fees for COVID-19-Quarantined Patients https://t.co/Z3MolGU0A7"                                                                                                                                                                                                                                                                                                                                                                           
## [3851] "Brock is currently experiencing an increase in Phishing scams related to the COVID-19 virus. Please be cautious on opening any emails related to the COVID-19 virus. If unsure, please call the Help Desk and forward the email to itsecurity@brocku.ca #BrockU"                                                                                                                                                                                                                                              
## [3852] "Nearly 1 in 5 Canadians behind on financial payments: survey https://t.co/3GdKNuZAat #humanresources #HR #workplace #payroll #covid19 #pandemic #financiawellness https://t.co/36m3y0Uoty"                                                                                                                                                                                                                                                                                                                    
## [3853] "“Coronavirus introduced us to a whole new mental health concern, and a very different answer to the question, ‘How do we meet people where they’re at?’,” says founder Ariela Safira. “So just about a week ago, we decided to create a digital offering.” https://t.co/SQd96TlQpb"                                                                                                                                                                                                                    
## [3854] "Updated graph of confirmed #coronavirus #COVID_19 #COVID19 cases in the US over the last ten weeks as more and more tests are completed https://t.co/FYvN7JRHim"                                                                                                                                                                                                                                                                                                                                              
## [3855] "Yesterday's #coronavirus haiku &amp; a link to my letter to @SenatorBurr, ICYMI. Motivation to\nwrite is hard to find. / But Burr’s / con job inspired me. Cardinal &amp; Pine https://t.co/AEsStP29i3"                                                                                                                                                                                                                                                                                                      
## [3856] "Descriptive study COVID19 maternal and neonatal outcomes #newborn #COVID2019 #pregnancy #neonatal #obstetric_and_gynacology #pediatrics  https://t.co/wUMiqJUZKy"                                                                                                                                                                                                                                                                                                                                             
## [3857] "Welcome relief for many #thriftythursday #hmrc #accountants #smallbusinesssupport #askaspreys #aspreys #coronavirus #COVID2019 https://t.co/u2FV19EoDr"                                                                                                                                                                                                                                                                                                                                                       
## [3858] "Hear it ...\n#Covid--19 #CoronaVirus\nNumbers Game: How long is a lockdown? https://t.co/U6aTC6uRf9"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3859] "@jajaimeso is a virologist at @Cornell who is featured in a new podcast! Check out what he has to say about the #COVID19 and what he knows about it. #CoronaLockdown. @CornellCFI @CVirology\n\nhttps://t.co/NHsEJ88t0V https://t.co/hyxSMvGECs"                                                                                                                                                                                                                                                              
## [3860] "\"Your marketing efforts in the wake of the coronavirus will give you an advantage towards your competitors and will enable you to continue running your business by strengthening your online presence.\"\n\n#ContentIsKing #Coronavirus #DigitalMarketing\n\nhttps://t.co/IAVk4xHljz"                                                                                                                                                                                                                       
## [3861] "@globalnews It will be a public nuisance charge at best. #COVIDIDIOT #COVID2019 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3862] "@RealMichaelGuy @BilldeBlasio @FilmLinc Give it time. When Marines were sailing to Omaha beach, they weren't saying \"this is no Antietam.\" Maybe it won't be that bad but there's a chance more Americans are killed by COVID-19 than in the entire second world war."                                                                                                                                                                                                                                      
## [3863] "#Breaking| #Iran's health infrastructure strong, ready for possible peak in #coronavirus outbreak, President Rouhani says on state TV"                                                                                                                                                                                                                                                                                                                                                                        
## [3864] "@NikkiHaley Let's make a public call for these organizations to donate these monies towards COVID-19 life saving efforts."                                                                                                                                                                                                                                                                                                                                                                                    
## [3865] "#COVID19 Update: MI-08 <U+2066>@RepSlotkin<U+2069> speaking moments ago in favor of House passing the CARES ACT relief bill <U+2066>@1320WILS<U+2069> https://t.co/gDlj9pY1VP"                                                                                                                                                                                                                                                                                                                                
## [3866] "@tspadventure I also made a last minute decision to move home (to florida) from NYC because of COVID-19. Not as drastic as your move, but it was a whirlwind for sure!"                                                                                                                                                                                                                                                                                                                                       
## [3867] "Read about the experience of final year medical student @DanielHuddart during COVID - 19 and how he is helping bring together students during the #COVID19 crisis #MedStudentCovid #BecomingaDr \nhttps://t.co/5qbTHm09Zp"                                                                                                                                                                                                                                                                                    
## [3868] "@RomfordRecorder @BBCNews @itvnews   - This is a brilliant idea !!   #nhs #COVID19 https://t.co/iTB9swTJlq"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3869] "[denverpost] Trump signs $2.2 trillion  #Coronavirus stimulus after swift congressional votes https://t.co/KBh2XwAUzR"                                                                                                                                                                                                                                                                                                                                                                                        
## [3870] "Coronavirus: US becomes first country to surpass 100,000 cases #COVID19 #Coronavirus https://t.co/yqGzTHonZy"                                                                                                                                                                                                                                                                                                                                                                                                 
## [3871] "BREAKING: Washington State announces 493 new cases of #COVID19 (3,700 Total). Death toll now stands at 175 (+28). \n\nApproximately 7% of the +53K tests conducted in the state have come back positive. \n\ncc: @Lookner @BNODesk https://t.co/juwkFgMhWW"                                                                                                                                                                                                                                                   
## [3872] "@COVID_Australia @TammyJolle Artania cruise ship looks to be a well infected.\nMost were supposed to be flown out to Germany tomorrow...\nhttps://t.co/kwnWScqutW"                                                                                                                                                                                                                                                                                                                                            
## [3873] "CBSL new governor <U+0001F602> @chaturaalwis #COVID2019 #COVID19LK https://t.co/WxU2szRNhv"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3874] ".@GovNedLamont refuses to take action to save lives by releasing as many people as possible to reduce the spread of #COVID19 inside CT jails &amp; prisons. In response, groups, faith leaders, &amp; lawmakers convened a digital press conference to demand action.\n\nhttps://t.co/fnYdNP2D7h https://t.co/805CFabPnE"                                                                                                                                                                                     
## [3875] "@PersuramBhakt Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure the safety of our staff. We encourage you to use #AirtelThanks app for service requests."                                                                                                                                                                                                                                                                                             
## [3876] "Prime Income Trust Provides an Update on Operations in Light of the Covid-19 Pandemic https://t.co/1SSaLrEF2w"                                                                                                                                                                                                                                                                                                                                                                                                
## [3877] "The ingredients in this recipe for stress seem to apply perfectly to living in an age of #COVID19 (e.g. unpredictability, novelty, loss of control etc) https://t.co/fTcrZ4IG1N"                                                                                                                                                                                                                                                                                                                              
## [3878] "Quiet on the N11 this morning. #CoronaLockdown #coronavirus https://t.co/Y1yaScXnBu"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3879] "My beds been hella squeaky since I moved in November, thanks to COVID-19 I finally had the time to fix it"                                                                                                                                                                                                                                                                                                                                                                                                    
## [3880] "The Legal Aid Society hopes to secure release for 22 teens held inside facilities they call \"breeding grounds\" for COVID-19. https://t.co/a0GJiwM3Aw"                                                                                                                                                                                                                                                                                                                                                       
## [3881] "Does it really matter whether Donald Trump called COVID-19 a hoax or called Democrats’ timely warnings about it and criticisms of him a hoax? Are not both assertions criminally irresponsible? 1/2"                                                                                                                                                                                                                                                                                                         
## [3882] "Follow @EmbHNSuiza (Embassy of Honduras in Switzerland) to get news and exchange on #Honduras diaspora in #Switzerland and alerts on #COVID19 #FF #FollowFriday"                                                                                                                                                                                                                                                                                                                                              
## [3883] "UNACCEPTABLE: In the midst of the #COVID19 public health crisis, the Trump admin is rolling back #CleanerCars standards put in place to protect our health and wallets. @realDonaldTrump and @EPAAWheeler are #StuckInReverse. https://t.co/8dmeOyRFxk"                                                                                                                                                                                                                                                       
## [3884] "Updated content.\n\nUseful websites for COVID-19 information.\n\nhttps://t.co/0C09ByabTc"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3885] "The evidence on Covid-19 is not as clear as we think\n\nThere is room for different interpretations of the data\n https://t.co/Wx5pPJeS7H"                                                                                                                                                                                                                                                                                                                                                                    
## [3886] "“I’m very reassured at this point at the foresight and proactive thinking and actions of the health care community,” said Dr. Chris Spitters, the health district’s interim health officer. \n\nHospitals Preparing for COVID-19&gt;&gt; https://t.co/phltjl28cn\n\n#COVID19"                                                                                                                                                                                                                             
## [3887] "Why are you OUT of masks for your #Ohio workers @amazon when they're busting their asses and risking themselves to make sure people are getting what THEY need.\n\n &gt; #MoreMasksNeeded &lt;\n\n#CoronavirusOubreak #COVID2019 #COVID<U+30FC>19 #StayHome #lockdown #CoronavirusPandemic #AmazonPrime"                                                                                                                                                                                                      
## [3888] "COVID-19 Respone https://t.co/vHqHWsan8T https://t.co/0pxQK4HSFS"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3889] "SAVE THE DATE on March 30 @ 5pm!\n\nAs covid-19 is set to change the economic landscape, yours truly will share career tips on how employees can manage potential career risks. \n\nView the webinar on\nhttps://t.co/ozxdZNdvhC or https://t.co/JFfevACqRP https://t.co/0uipSVMXfO"                                                                                                                                                                                                                          
## [3890] "The housing sector is pulling together during the COVID-19 crisis https://t.co/1DmoPIHvWN"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3891] "My students in Families and Crime are doing a survey project, but #COVID19 threw a wrench in their recruiting efforts. Help them out, please? We need respondents aged 18-35. #soctwitter #AcademicTwitter https://t.co/zDjVMyv23H"                                                                                                                                                                                                                                                                           
## [3892] "PLEASE STAY IN THE HOUSE...\n\nCoronavirus: US leads the world in number of confirmed cases #Coronavirus https://t.co/HKffxU10cK"                                                                                                                                                                                                                                                                                                                                                                             
## [3893] "The states with the worst #Coronavirus problems are all run by Democrats."                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3894] "Have You Heard? <U+0001F4F0> <U+0001F495>Dr. Kizzmekia Corbett, a doctor with the National Institute of Allergy and Infectious Diseases (NIAID), is leading efforts to develop a vaccine for the #coronavirus.<U+2800>\n<U+2800>\nCorbett’s work started in January when researchers first learn… https://t.co/pUQuVMTU0w https://t.co/XsOZ6lu1IM"                                                                                                                                                          
## [3895] "Convalescent Plasma to Treat #COVID-19: Will it become the standard treatment till a definite treatment  is found?  https://t.co/txILaavSr4"                                                                                                                                                                                                                                                                                                                                                                  
## [3896] "A thought just occurred to me: @AEricksonAU may have covered the biggest off-field story in #Crew96 history but @_jcmyers now has the 2nd biggest off-field story ever. #COVID19 #CoronavirusOutbreak #SaveTheCrew #SavedTheCrew"                                                                                                                                                                                                                                                                             
## [3897] "@ShelSosa their answer for COVID-19 and people wanting to go back home is: we understand but rent is still due and your lease goes til July :) if you don’t want to pay it now they’ll add it on monthly next semester"                                                                                                                                                                                                                                                                                     
## [3898] ". Due to COVID-19 Our nation is in great loss and everyone is facing problem.Pls help Modiji,Grace period after due date of atleast 60 days should be given for payment of credit cards of all the banks. Also interest and penalty should be waived off without impacting credit score"                                                                                                                                                                                                                      
## [3899] "Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief\nhttps://t.co/EBZDX7sTNx"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3900] "Kentucky strong!<U+0001F499>Thanks <U+2066>@AndyBeshearKY<U+2069>  https://t.co/H9IDwojrGM"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3901] "#COVID2019 it's a big worldwide trouble! But it can be destroyed by discipline and the science discoveries. The virus can't be the end of the human life, but the human life must fight as well as the brave soldiers. I don't wanna miss a thing: \nhttps://t.co/yDgpacaliB"                                                                                                                                                                                                                                 
## [3902] "Does Americans not know that if our population isn't tested, you cannot get adequate data on rate of infection of Covid-19 or efficacy of social distancing? Dr Birx surely knows this but choses to lie in order to make leader go back to work to shut up 45.Another MAGA rally FFS.<U+0001F925>"                                                                                                                                                                                                           
## [3903] "@SmithsonianMag Japan has the highest debt to GDP ratio in the world, its national debt is 226% of GDP. The United States may surpass Japan's world record after COVID-19. https://t.co/Q3JKbxgQbO"                                                                                                                                                                                                                                                                                                           
## [3904] "Government is pressing ahead with A https://t.co/zWR75M0o9T"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3905] "Dr. Fauci tells Steph Curry that testing in America is \"going in the right direction.\"\n\nSays, \"if you have only aches, pains and a fever, stay where you are and contact your physician.\"\n\nSays don't overload hospitals. \n\n#SCASKSFAUCI \n#Coronavirus"                                                                                                                                                                                                                                            
## [3906] "The Colorado Symphony Orchestra shows what you should be capable of when working from home https://t.co/WwzYXWj544 #WorkFromHome #Workathome #WAHA #Coronavirus #Covid19"                                                                                                                                                                                                                                                                                                                                     
## [3907] "India Deploys Defence Units to Help Civilian Authorities in the Fight Against COVID-19: https://t.co/pz1fFlVKtQ via @SputnikInt"                                                                                                                                                                                                                                                                                                                                                                              
## [3908] "Aileen's 1 Yr Anniversary Update &amp; How we are responding to COVID-19 pandemic https://t.co/tVtSLlWN3R As we collectively face social and economic impacts of the ongoing pandemic, we wanted to update our friends and family about where Aileen’s is on its first anniversary."                                                                                                                                                                                                                         
## [3909] "@MedeaCulpa Wait. Are you reporting this as a symptom or are you saying you don't like the smell of Bustelo? Not to freak you out, but loss of sense of smell is a symptom of Covid-19."                                                                                                                                                                                                                                                                                                                      
## [3910] "Officials speak about the coronavirus in Madison County.\n\n https://t.co/WLg5Pmg5yp"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3911] "Hi! I’ll be streaming for charity LIVE tomorrow on @Twitch for the #TwitchStreamAid. We’re raising money to help @WHO fight COVID-19. Keep following along for more updates and when I’ll be live! Tune in to https://t.co/4nZFKeWlwv https://t.co/M8tcAwr2tD"                                                                                                                                                                                                                                             
## [3912] "The hard data from #China's bout with COVID-19 shows even a late and lumpy control response may save the U.S. economy - RIABiz https://t.co/iwZAG5Rd3B"                                                                                                                                                                                                                                                                                                                                                       
## [3913] "Share it. Spread it faster than #Covid19 https://t.co/3epgBUqLza"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3914] "Brilliant Infographic!\nThere are plenty of them like that. Some world leaders looks like Admin Head of #WhatsApp\nGroups.\n@DrTedros @HassanRouhani @Pontifex @sanchezcastejon \nLast but not the least @POTUS\n\nAll of them are hit badly by #COVID19 https://t.co/mdLlpRb1s9"                                                                                                                                                                                                                             
## [3915] "...and friends, however possible. We have a long fight ahead of us, but I feel confident that we will continue the fight to build a healthcare system that places equity, inclusion, and well-being above the bottom line . #COVID2019 #UCSFMaskDrive #FlattenTheCurve #UCSFProud"                                                                                                                                                                                                                            
## [3916] "Does anyone know if there is a special unemployment form for 1099 workers in CA? Or are gig-workers and self employed just supposed to file on the regular website? @LongBeachMayor @CAgovernor #coronavirus #unemployment"                                                                                                                                                                                                                                                                                   
## [3917] ".@Maryam_Rajavi\nDeaths of 6 prisoners in the Greater Tehran Penitentiary (Fashafouyeh)will start a serial of deaths in #Iran'ian prisons due to the rgm’s failure to release the inmates despite the #coronavirus emergency, a #crimeagainsthumanity w/ regards to prisoners in #Iran"                                                                                                                                                                                                                      
## [3918] "@CashApp Please help me out @CashApp $tfortk this #COVID19 really hurting my wallet T_T"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3919] "Please watch this pleasantly weird educational clip.\n\nAlso checkout her #Masks4All page: https://t.co/oiZRbSoCit\n\n#MaskUp\n#WearAMask\n#WearAFuckingMask\n#diymask\n#UniversalMasking\n#StayHome\n#WashYourHands \n#SocialDistancing \n#coronavirus\n#COVID19 \n#FlattenTheCurve \n#SlowTheSpread https://t.co/5NeMSXPOsU"                                                                                                                                                                                
## [3920] "'Tip of the iceberg': is our destruction of nature responsible for Covid-19? https://t.co/iWk91s6A9R"                                                                                                                                                                                                                                                                                                                                                                                                         
## [3921] "#Supportyourlocals Corona-Courage Halle https://t.co/p3WUKYX4dQ via @startnext #COVID2019 #StayHome #CoronaHilfe"                                                                                                                                                                                                                                                                                                                                                                                             
## [3922] "<U+0001F44F> Clap For Our Carers <U+0001F44F> \n\nAt 8pm tonight, let’s put our hands together to show our appreciation for our heroes of the NHS &amp; other vital public services for their inspiring Covid-19 work. \n\nFrom your garden/yard, listen for a local tribute too. \n\n#ClapForOurCarers #ClapForNHS https://t.co/jDIkOgc1Yv"                                                                                                                                                                 
## [3923] "@iainmartin1 #Trump needs to be removed from office immediately for the safety of the American peolpe. This isn't just bad optics, as you state Iain, this is madness! #COVID19"                                                                                                                                                                                                                                                                                                                              
## [3924] "\"Massachusetts Gov. Charlie Baker said he filed for federal disaster assistance that, if granted, would help communities recover from the impact of the coronavirus pandemic.\" https://t.co/zuN8bIwWOE #GovBaker #Massachusetts #coronavirus #federalassistance"                                                                                                                                                                                                                                            
## [3925] "@JoeSilverman7 I hope it comes back. I'm very optimistic on Covid 19."                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3926] "@SenSchumer The labor movement will continue to work with @SenSchumer and the New York City Congressional delegation to make sure that New York City’s workers and their families’ interests continue to be represented in the negotiations to come.” https://t.co/8xCSxkNupW #1u #covid19"                                                                                                                                                                                                                
## [3927] "Mossa Fight home workout session to keep the blood flowin!\n#mossa #fight #homeworkout #homewithkids #singledad #exercise #fitness #keepmoving #getmoving #letsmove #move #athome #workout #StayHome #isolation #quarantine #funathome #tech #keepbusy #COVID<U+30FC>19 #COVID #COVID19 #corona https://t.co/1lGcG1zpLN"                                                                                                                                                                                      
## [3928] "Agreed, @MassAGO. Thank you for working to keep equity at the heart of our #COVID19 response. @MassGovernor @RepPressley @PavlosCarlene @CherylABartlett @BUSPH https://t.co/FtSgforovc"                                                                                                                                                                                                                                                                                                                      
## [3929] "suddenly have this thought. if someone wakes up from coma in 2020, the person must be baffled about the whole covid-19 situation like super confused. would the person rather be back in comatose or not?"                                                                                                                                                                                                                                                                                                    
## [3930] "I'm into generator rentals.\n Book your generator before 12am.\n\nTB Joshua is not sleeping today.<U+0001F602><U+0001F602> #StaySafeNigeria #COVID19 https://t.co/cyKZWBd1BH"                                                                                                                                                                                                                                                                                                                                 
## [3931] "Los Angeles County Emergency Operations Center COVID-19 Update - March 27, 2020 https://t.co/7YWJlNceQX via @Granicus"                                                                                                                                                                                                                                                                                                                                                                                        
## [3932] "When ObiWan had enough of who didn’t quarantine themselves at home\n#COVID19 #StayAtHomeAndStaySafe original pic : @thestandardth https://t.co/uHNadZe72h"                                                                                                                                                                                                                                                                                                                                                   
## [3933] "@ScottAdamsSays did you know that American Samoa has no incidents of COVID-19? Mini-Mike for president"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3934] "@catmemesonly @pgcornwell @abouddandachi You’re citing a tweet from 2/28.  But of course healthcare is A+ in the US.  That’s why the death rate for COVID-19 is tracking to less than 1% here as opposed to places like Italy and Spain where they have single payer systems."                                                                                                                                                                                                                              
## [3935] "The SIEGE crowd loves Covid-19: except when they’re in a crowded jail awaiting federal charges and terrified of catching it. To wit: John Cameron Denton, Atomwaffen’s erstwhile leader, asked for a pandemic-related release recently (h/t @DdesimoneDaniel) https://t.co/NVEHiDy9aK"                                                                                                                                                                                                                      
## [3936] "UPDATE: The West Virginia Department of Health says the patient earlier reported as the state's 1st COVID-19 death is actually alive.\nhttps://t.co/V11QPA44Hf"                                                                                                                                                                                                                                                                                                                                               
## [3937] "My host-dad has really good english. But medical english. And he always speaks about the COVID-19... so my brain gets all mushy and all i can say to him is just “wow” or “uhm” or “god, when will it end”"                                                                                                                                                                                                                                                                                             
## [3938] "not sure what gyujeong was trying to say but i guess he said “stay strong fuck covid-19, wear mask, wash your hands” fjdjddj king with his message oof stan groovyroom gyujeong https://t.co/0aWqg3cEVz"                                                                                                                                                                                                                                                                                                    
## [3939] "#songoftheday = BAD MARRIAGE: \"MOURNING HOPE\" (#songsforourtimes #9) - Boston's premium hard rock band flips their sound upside down for a haunting, acoustic song that seems to be about losing someone to the #coronavirus. https://t.co/LUUcKvxs2J https://t.co/Z0DPpzVpG9"                                                                                                                                                                                                                              
## [3940] "@mewes_jan @alexandreafonso Not quite. In contrast to Sweden, secondary schools are closed in #Iceland, thus lowering exposure rates, and preprimary schools are open but exercise particular #covid19 measures: \nhttps://t.co/6hYXAprEGO"                                                                                                                                                                                                                                                                   
## [3941] "@joshtpm Where are the lawyers? Maybe the 1% will think twice if they think they will be liable to the families of those who succumb because they got COVID 19 at work."                                                                                                                                                                                                                                                                                                                                      
## [3942] "I feel like we have a chemistry until further notice!\nhttps://t.co/30F7EIyEc0"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3943] "#Australia To date, state and territory health authorities have reported 3,359 confirmed cases of #COVID19 in Australia, including 14 deaths.\n\n#CoronaVirusAustralia \n#COVID19 #CoronaVirus https://t.co/noOqHBV3GP"                                                                                                                                                                                                                                                                                       
## [3944] "@tatereeves why are you trying to kill the citizens of the great state of Mississippi? When this ends, and the bodies are piled up, you will be held accountable. #ignorant #COVID<U+30FC>19"                                                                                                                                                                                                                                                                                                                 
## [3945] "COVID-19 doesn’t affect rats and snakes so most of y’all will be fine<U+0001F922><U+0001F922>"                                                                                                                                                                                                                                                                                                                                                                                                              
## [3946] "I’m sorry I don’t give the world new musik. \n\nbeen going thro it &amp; covid-19 &amp; having to be isolated in one space made it harder to get my mind functioning."                                                                                                                                                                                                                                                                                                                                      
## [3947] "LIVE: Downing Street briefing after Boris Johnson tests positive for covid-19. / Twitter https://t.co/JBbqfZG32U"                                                                                                                                                                                                                                                                                                                                                                                             
## [3948] "Trying to stay healthy and sane. Quarantine day 11. \n#quarantine #corona #covıd19 #stayhome #healthylifestyle #sanity #healthy #healthyliving #losangeles @ Oak Park, California https://t.co/33w7rCFNCt"                                                                                                                                                                                                                                                                                                   
## [3949] "What is the best way to allocate precious PPE resources for #COVID19  Keeping the Coronavirus from Infecting Health-Care Workers https://t.co/eK6rSL0lh1 via @NewYorker"                                                                                                                                                                                                                                                                                                                                      
## [3950] "Half an hour until today's #DrinksWithDeena brought to you by #DontTouchYourFace: Not touching your face is, like, way better than being poked in the eye. So don't touch your face. #COVID19AB #AlbertaCares @CMOH_Alberta #COVID19 #StayHomeSaveLives #StayHomeAlberta"                                                                                                                                                                                                                                     
## [3951] "Chaos and dissipative structures...? #TheGuardian #ManuelAlmendro #Coronavirus https://t.co/o1G5yHGTep"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3952] "@Imamofpeace Buhari share the COVID-19 relief donations to the poor masses or #BuhariResign <U+0001F644>"                                                                                                                                                                                                                                                                                                                                                                                                     
## [3953] "So the douchebag in the White House decided to rage on Governor Inslee about his failed Presidential campaign instead of sticking to the point of Covid-19 during the press conference. What a tool. <U+0001F595>45, <U+0001F595>45 <U+0001F595>45"                                                                                                                                                                                                                                                           
## [3954] "COVID-19: Border traffic down and fewer Canadians in U.S. shop parking lots https://t.co/fZ0u62g0kw"                                                                                                                                                                                                                                                                                                                                                                                                          
## [3955] "Am I the only one feeling like education/e-learning should be an escape from #coronavirus? We're constantly told how students are traumatized, let's not add to it. #TeachFromHome"                                                                                                                                                                                                                                                                                                                           
## [3956] "While other major cable news network are interviewing doctors, scientists and patients, Hannity and Trump complain about Obama and the Swine Flu...tonight.  On the same night that US broke the world record of having the most confirmed cases of COVID-19. https://t.co/faCClLegA5"                                                                                                                                                                                                                        
## [3957] "The Covid-19 culprit is us, not pangolins (Opinion) - https://t.co/3B9lXxHVvl"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3958] "Seems I may need to start weening myself off from watching anything on @msbnc if they continue showing these rally #covid19 briefings which are useless. \n\nMissing @maddow, @TheLastWord @allinwithchris &amp; @DeadlineWH will be hard but I've done harder things."                                                                                                                                                                                                                                       
## [3959] "These #NYC KILLER bastards DO IT again, also in crisis of #COVID<U+30FC>19 #CoronavirusPandemic KILLING is the bloody #Agenda of .@BilldeBlasio .@JustinBrannan .@NYGovCuomo .@DonnaLupardo .@nycgov .@NYCACC .@THECITYN .@c_kimNYC .@NYSenat .@HarveyforNY https://t.co/bS8yBmy4ZX"                                                                                                                                                                                                                          
## [3960] "he is telling the truth..\nagar itna khauf hey to #Contagion movie dekh lo jis main pehlay sy #Covid19 ki prediction hen https://t.co/gzhKpYhp4b"                                                                                                                                                                                                                                                                                                                                                             
## [3961] "A mural in Atlanta Georgia that represents unity our leaders had should be reflected today doing this COVID-19 crisis! https://t.co/S1C0hYQLEZ"                                                                                                                                                                                                                                                                                                                                                               
## [3962] "Mr. President!!  Who attacked the U.S. in 1917??  #coronavirus #CoronaLockdown #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3963] "White House photo of Trump in the signing ceremony right now. \n\nTrump and his Cabinet members &amp; GOP leaders in Congress are all crowded into a tiny space behind his desk. #coronavirus https://t.co/PBPIAVI8TQ"                                                                                                                                                                                                                                                                                        
## [3964] "16 in precautionary isolation at Columbus assisted-living facility after contact with COVID-19 positive person. https://t.co/n0b1qapuzz"                                                                                                                                                                                                                                                                                                                                                                      
## [3965] "Some people are not serious talking about “I need fresh air” this virus is REAL  stay home or else you will really need AIR God forbid you get #COVID19"                                                                                                                                                                                                                                                                                                                                                    
## [3966] "@Linecookingchri @this_aggression @VV101isPresent @kyledcheney @heatherscope You don't need a revolution, just one person with COVID-19 to get close enough to sneeze on him."                                                                                                                                                                                                                                                                                                                                
## [3967] "Daily Cuomo: New York governor tells federal government to 'do your job' https://t.co/FsYXaK9hZc"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3968] "@afshinrattansi combat spread of COVID -19.And I am not talking about neighbours with large private front or back gardens who regularly interact close together over garden fences via talking etc during long Spring/ Summer months of daylight sunny hours where idle hands to cause"                                                                                                                                                                                                                       
## [3969] "It is hard to understand why anyone would choose this approach when the little that we know points in the exact opposite direction #SwedenInDenial\n\nSwedish PM warned over 'Russian roulette-style' Covid-19 strategy https://t.co/f39X1CGxTd"                                                                                                                                                                                                                                                              
## [3970] "never participating in online class again. just asked a guest lecturer from the state department abt mike pompeo calling COVID-19 the “wuhan virus” and she skrrted out. i will be dropping out now"                                                                                                                                                                                                                                                                                                        
## [3971] "Coming soon to an urban area near you : homeless and uninsured COVID-19-stricken zombies dying in the streets.<U+0001F9DF><U+0001F9DF><U+200D>♂<U+FE0F> https://t.co/LN2xE1WRDK"                                                                                                                                                                                                                                                                                                                             
## [3972] "We are proud to support the @NHLBlackhawks  and Chicago Community COVID-19 Response Fund during the pandemic. More information on the donation-matching initiative at https://t.co/U47ZUvsBRI"                                                                                                                                                                                                                                                                                                                
## [3973] "I’m a Doctor on the Frontlines of COVID-19. Ask Me Anything. https://t.co/tegTnKXSRd via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                           
## [3974] "Sure, I'm biased but #canyonsteachersrock! All across CSD, educators are pivoting to a new way of teaching, learning, connecting. We just ask for patience as @canyonsdistrict moves to this new normal. https://t.co/s8s6yNtIgi"                                                                                                                                                                                                                                                                             
## [3975] "We will see you all soon. Until then, #StayHomeSaveLives and #ComeBackLater <U+0001F499>\n\nFor answers to your most frequently asked questions, please see https://t.co/s91f1hdNRG https://t.co/TlosAcnjqs"                                                                                                                                                                                                                                                                                                  
## [3976] "Threw together a couple of quick graphs. So far, it appears that Cambridge (thankfully) does not have a disproportionately high amount of COVID-19 cases. The orange line represents the fact that Cambridge contains 7.4% of Middlesex County's population. #cambma https://t.co/YtJWlDK8nN"                                                                                                                                                                                                                 
## [3977] "@nashtnmom1 @DavetasticVoyge @MCmuckraker Of course, this link doesn't exist.\nhttps://t.co/5PV4y9gCcb"                                                                                                                                                                                                                                                                                                                                                                                                       
## [3978] "A lot of us are having bad dreams right now. Here's to peaceful sleep <U+0001F634><U+0001F4A4>.\n\n#rest #dreams #covid_19 #coronavirus #sleep @ Toluca Lake, California https://t.co/qJqSlHXouu"                                                                                                                                                                                                                                                                                                             
## [3979] "@piersmorgan Our little village HADDENHAM In Cambridgeshire came out and clapped in appreciation for all the hard work the NHS is doing x #COVID2019 #NHS"                                                                                                                                                                                                                                                                                                                                                    
## [3980] "Put this alongside those ALS / resuscitation guidelines\nhttps://t.co/erjictaSgc https://t.co/muVqCySxru"                                                                                                                                                                                                                                                                                                                                                                                                     
## [3981] "We need to work together to help #PlankTheCurve. <U+0001F1E6><U+0001F1FA> in <U+0001F1E8><U+0001F1E6>, please continue to monitor @GovCanHealth, @CPHO_Canada, &amp; local health authorities for reliable updates on the situation in your area, as well as for tips on combatting the spread of #COVID19 https://t.co/n9EKrmmUIh (1/2)"                                                                                                                                                                     
## [3982] "The @CityOfNOLA health &amp; safety officials, with support from @LouisianaGov Office of Homeland Security &amp; Preparedness, conducted cleanup &amp; securing of homeless encampments along with the temporary transfer of homeless residents into an alternative location.  #COVID19. https://t.co/R4wv0n9Eoh"                                                                                                                                                                                             
## [3983] "Potential Game Changer! FDA approves 5 minute #COVID19 test for release as early as next week.  https://t.co/XXXOZ4pthK"                                                                                                                                                                                                                                                                                                                                                                                      
## [3984] "Providers and parents can find the latest child care data, news, policies, and documents related to COVID-19 from @GADeptEarlyCare at https://t.co/CWcPfuqRht. https://t.co/cdVVubHzdh"                                                                                                                                                                                                                                                                                                                       
## [3985] "Actually touched and proud to be #British standing on my door cheering for the brave @NHSuk @NHS workers. #COVID2019 #clapforourcarers #ThursdayThoughts #solidarity"                                                                                                                                                                                                                                                                                                                                         
## [3986] "Teenage boy whose death was linked to coronavirus turned away from urgent care for not having insurance https://t.co/PUiGl9vfAt a9429946.html And I can guarantee you that this sort of thing will be taking place over and over and over again in the coming months..."                                                                                                                                                                                                                                      
## [3987] "It CAN be done!!! <U+0001F9FB> I just have one question...how long will it take to grow into the size tool I need??? <U+0001F923><U+0001F389> #tpShortageOf2020 #gardening #covid19  #LOL #WashYourHands #WipeYourButt <U+0001F9A0><U+0001F631><U+0001F923> https://t.co/IEPx5xMFej"                                                                                                                                                                                                                          
## [3988] "NSW and Victoria are expected to push for tougher lockdown measures today, with one infectious disease expert warning “every day matters now”. @newscomauHQ #coronavirus #coronavirusaustralia #covid19australia #COVID19Aus #Covid_19australia \nhttps://t.co/lE2YAY4C24"                                                                                                                                                                                                                                  
## [3989] "#COVID19 #CoronavirusPandemic Govt. must conduct Aadhar linked testing of these migrant labourers on move back home. #ChineseWohanVirus carriers among them can prove disastrous. Aadhar linked testing will ensure tracing &amp; Isolation\nThink over it https://t.co/d1koXax39R"                                                                                                                                                                                                                           
## [3990] "Gov. Andrew Cuomo Admits Stockpile of Thousands of Unused Ventilators https://t.co/poCK1kkmX1 Shocked Face #Covid19 @cnnbrk #Cuomo"                                                                                                                                                                                                                                                                                                                                                                           
## [3991] "Please retweet. The truth will set us free.\n#COVID19 #TrumpVirusCoverup #themasterofdisaster #accountability #SaveLives https://t.co/7WZlm3FypV"                                                                                                                                                                                                                                                                                                                                                             
## [3992] "Mostly younger males, notice.... Too clever to obey the rules about social distancing &amp; too tough to catch #Covid19 apparently... Thought restaurants were only takeaway food now &amp; pubs all shut????   Qld. Beautiful one day, stupid the next. #auspol https://t.co/TlBoUayr9u"                                                                                                                                                                                                                     
## [3993] "@RehamKhan1 Covid-19 therapy will be invented soon in shaa Allaah, but your jealousy will never be cured because it is on the last stage, then you are to burn. <U+0001F923><U+0001F602><U+0001F923>"                                                                                                                                                                                                                                                                                                         
## [3994] "@K24Tv Owino has always been defending these apes stuck in stone age! There's a difference between enforcing law and police brutality. \nBrutality meted on fellow citizens will not stop COVID 19 spread! Nonsense"                                                                                                                                                                                                                                                                                          
## [3995] "@Rounding3rdSB @msmithsb16 @NCAA Only the NCAA can do something worse than COVID-19!"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3996] "*Kasheer gass'e ne kehen.\n Meanwhile toll reaches: 27\nMay Allah protect us all. \n#coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3997] "The floor is lava ... confinement <U+0001F644> #confinement #RestezChezVous #COVID19france #coronavirus #COVID19 #couch #thefloorislava https://t.co/SWV51VyuMn"                                                                                                                                                                                                                                                                                                                                              
## [3998] "Boris should have just washed his hands!!!! #CoronaLockdown #BorisJohnson #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3999] "The World Health Organization has a whole page of guidance and advice for pregnant women! If you’re expecting, please check it out! https://t.co/jAVENlZQzo #Coronavirus #Covid19 #NikkiBella"                                                                                                                                                                                                                                                                                                               
## [4000] "Two more cases of covid-19 declared in sudan. You, the emotional people don press the authority to operate the airport as you did before .your fake arguments will cost the country much"                                                                                                                                                                                                                                                                                                                     
## [4001] "60% of the health facilities in #Yemen went out of service due to direct targeting by US-Saudi airstrikes, which killed many patients. You can imagine the catastrophe if Saudi was able to enter #Coronavirus to #Yemen! #5YearsOfWarOnYemen https://t.co/ysA4uhPGTa"                                                                                                                                                                                                                                        
## [4002] "Senate’s Pro-Corporate COVID-19 Bailout EXPLAINED https://t.co/ZpFwB5Qb5o via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4003] "COVID-19: Coping with the shortage of ventilators https://t.co/IlfCsg9e0u"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4004] "@arisescaflowne Wish it was an option. Greatly reduced income due to COVID-19. No refi."                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4005] "Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among the first in Virginia to die from virus https://t.co/cb7M7z8CpP"                                                                                                                                                                                                                                                                                                                                                                     
## [4006] "It was a pleasure working with the inestimable @lynellgeorge on this beautiful essay for @highcountrynews, an ode to #LosAngeles as it settles into #COVID19 restrictions. https://t.co/d0uvPeqXfF"                                                                                                                                                                                                                                                                                                           
## [4007] "Women's mean level of haemoglobin is 12% less than men. #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [4008] "Inspired by applause for healthcare workers in the UK from COVID19 #clapforcarers, #clapfornhs, I ask for everyone to pray daily for:\n+ All suffering by COVID-19, \n+ All scientists, doctors &amp; public officials, \n+ All willing to serve in harm's way daily &amp;\n+ Those who passed away."                                                                                                                                                                                                         
## [4009] "#CoronaLockdown #PrayForBoris I'm sure all the NHS staff wish Boris Johnson all the best with his private healthcare now that he's got Covid-19."                                                                                                                                                                                                                                                                                                                                                             
## [4010] "Covid 19 is really hitting us hard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4011] "@Lee_in_Iowa @RockyMountViews @AnnieHall58 Got bloodwork done on Mar 17. I go out to get the mail every day or two. Have a Dr. appointment in April and not sure if I will go or not.\n#COVID19 #WashYourHands"                                                                                                                                                                                                                                                                                               
## [4012] "In the midst of  #coronavirus pandemic, how is it useful for the media to get politicians and physicians to publicly spar with @realDonaldTrump on your television programs? This is a legitimate question. At this moment,  how is tearing down Trump helping the world? @cnn @msnbc"                                                                                                                                                                                                                        
## [4013] "#HealthCanada asks #cannabis industry for help with #COVID19 testing\n\nhttps://t.co/ZTMNmMyxq1"                                                                                                                                                                                                                                                                                                                                                                                                              
## [4014] "The quarantinee in Hubei, China was lifted two days ago and civil unrest has broken out and turned violent as desperate people beging turning on their neighbors. #coronavirus https://t.co/tFoLBvDf26"                                                                                                                                                                                                                                                                                                       
## [4015] "Eiffel Tower pays tribute to 'heroes' fighting COVID-19 -- https://t.co/EYrl6TcOiz"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4016] "How Other Countries COVID-19 Are Successful Treating COVID-19 - YouTube https://t.co/UnRqSkWk5y"                                                                                                                                                                                                                                                                                                                                                                                                              
## [4017] "And just like that… we are all on welfare! #Coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4018] "Joseph Wu and his colleagues wrote in The Lancet on Jan 31, 2020: “On the present trajectory, 2019-nCoV could be about to become a global epidemic RESIGN NOW!  #coronavirus https://t.co/LJJPkhb9eA"                                                                                                                                                                                                                                                                                                        
## [4019] "Team MVT is watching our Patron @frankturner in the first gig of his #IndependentVenueLove online tour helping support different grassroots music venues and their staff. For advice for music venues during this crisis head to our website here: https://t.co/Vz19FfYlha https://t.co/mLBIBT6SRp"                                                                                                                                                                                                           
## [4020] "@RepThomasMassie, you just can’t avoid your party’s theme of trying to kill the elderly, can you? Just over 1/3 of House Members (147 to be precise) are over the age of 65 and you want all 435 of them in one room? Knock it off.\n#COVID<U+30FC>19 #Coronavirus https://t.co/x4pBZCPaRY"                                                                                                                                                                                                                 
## [4021] "Stay home, stay safe. To effectively combat the spread of #COVID19 we are asking our residents to comply with the newly-issued Stay at Home Order. Learn more at https://t.co/ynorsIlnKm."                                                                                                                                                                                                                                                                                                                    
## [4022] "So, we know getting CT's incarcerated youth out of the path of COVID-19 is possible.  @GovNedLamont please call on @CTCorrections to do the same for the children in it's care (and the adults too)"                                                                                                                                                                                                                                                                                                          
## [4023] "Tragic to see patients die this way <U+0001F64F><U+0001F3FD><U+0001F614>. #COVID2019 #coronavirus #nurselife  https://t.co/8wlHMQ2R1N"                                                                                                                                                                                                                                                                                                                                                                        
## [4024] "Police to intensify roadblocks across the country to curb COVID-19 spread https://t.co/NiGLTQ1gN2 https://t.co/pfgLLYCqck"                                                                                                                                                                                                                                                                                                                                                                                    
## [4025] "#hbaimpact hosting a global webinar on #COVID19   Women making a difference in healthcare. https://t.co/gYixkQ1Cox"                                                                                                                                                                                                                                                                                                                                                                                           
## [4026] "Asda Portrack. Queuing already. #Coronavirus #ASDA #CoronaUpdate #Northeast #StocktonStrong #staysafe #staystrong https://t.co/9sUpRmRonC"                                                                                                                                                                                                                                                                                                                                                                    
## [4027] "Words matter\nWords convey a message\nAnd if you're among those pushing to call it \"Wuhan virus\", you probably know that\nCovid-19, the disease caused by the coronavirus Sars CoV-2? No\nYou don't care about factual descriptions of what it is\nYou just wanna convey your little message"                                                                                                                                                                                                               
## [4028] "With no offence to brothers of  Punjab &amp; Sindh ;That hopefully they had realised what Kp &amp; Kashmir have been through all these tough times. \n#Curfew #coronavirusinpakistan #CoronavirusOubreak\n#lockdown"                                                                                                                                                                                                                                                                                          
## [4029] "BREAKING: Uganda records five new coronavirus cases raising the total number to 23. President @KagutaMuseveni says 227 returnees from Dubai &amp; other places were tested. #COVID19 #COVID19UG https://t.co/g3aImw05fi"                                                                                                                                                                                                                                                                                      
## [4030] "Now they are just statistics.\n\nThey were people with dreams, plans, families.\nThey were not animals or trees. \nThey were not cast&amp;crew in a movie that will end.\nPeople have died. People are dying. \nThe world is sick.\n\nFeels very surreal and just like a staged play.\n#coronavirus"                                                                                                                                                                                                          
## [4031] "It’s the least we can do!! #COVID19 https://t.co/nfBG54wqJ1"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4032] "For @theprogressive, @sarahljaffe wrote about the ways that specific workers' labor is undervalued, and how we can build a better world post-coronavirus. https://t.co/Y7uu5Mt2hI"                                                                                                                                                                                                                                                                                                                            
## [4033] "These are African Countries without #Coronavirus cases;\n\n<U+0001F1F2><U+0001F1FC> Malawi\n<U+0001F1E7><U+0001F1EE> Burundi\n<U+0001F1F8><U+0001F1F1> Sierra Leone\n<U+0001F1E7><U+0001F1FC> Botswana\n<U+0001F1F1><U+0001F1F8> Lesotho\n<U+0001F1F8><U+0001F1F9> Sao Tome and Principe\n<U+0001F1F0><U+0001F1F2> Comoros\n<U+0001F1F8><U+0001F1F8> South Sudan.\n\n@kubatana @kwirirayi\n@LynneStactia @begottensun @263Chat @newswireZW @NewsDayZimbabwe"                                                  
## [4034] "Hard in pratice. 1. No time to think as social media is talking nonstop about #COVID19 2. Those w the ‘great’ lives are also just hiding at home from #COVID19. And as the weirdness of celebs during #COVID19 has confirmed nobody’s life is ever really worth envying anyway. https://t.co/GvtewFsOh3"                                                                                                                                                                                                   
## [4035] "@Covid_19_UK @poodlesthiks We have to make this one Viral! Q 23 666 33"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4036] "Governor Cuomo slams ‘reckless’ COVID-19 bill: ‘It does nothing in terms of lost revenue’ https://t.co/tBBGoTHiPz"                                                                                                                                                                                                                                                                                                                                                                                        
## [4037] "\"UK government will begin coronavirus tests for health workers on the frontlines\" #COVID19 https://t.co/4EZaCkqnZ3"                                                                                                                                                                                                                                                                                                                                                                                         
## [4038] "@drharshvardhan Sir, private lab will charge 4500 for covid-19 test we can't afford that much if i want to do a test for my family if we have 8 members in a family then we need 36000 rs that is huge amount for us. People will die more if we get hit badly by this virus"                                                                                                                                                                                                                                 
## [4039] "@ericuman Why pay $130 to catch #COVID2019 when I can get VD for $50 at the local parlor"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4040] "Health officials in New York will allow hospitals to split ventilators between two patients as they try to deal with the influx of patients who have been diagnosed with COVID-19 https://t.co/okaVfR9fZP"                                                                                                                                                                                                                                                                                                    
## [4041] "That's exactly  why Dr. Fauci is NO LONGER UP FRONT<U+0001F64B><U+200D>♀<U+FE0F><U+0001F64F><U+0001F1FA><U+0001F1F8>\n#Trump&amp;BirxsLIE\n#TrumpPressConf \n#TrumpVirus \n#TrumpVirusCoverup \n#TrumpLiedPeopleDied \n#COVID19 <U+0001F64F> https://t.co/wsdCrhucBE"                                                                                                                                                                                                                                        
## [4042] "Waitse our government and ma Comrade. They love finding and using \"word/phrase of the day\" ne. The other day it was CIC for Cyril. Then yesterday is was \"the invisible enemy.\" Wonder what will be today's word. #CoronavirusSouthAfrica #Covid_19 #LockdownSA"                                                                                                                                                                                                                                          
## [4043] "GEORGIANS my legislators have decided NOT do everything they can to SAVE LIVES!!! We must remember they could have prevented more deaths by PUSHING @GovKemp to SHUT #GEORGIA DOWN! #ATL #COVID19 #CarrollCo #DouglasGA #leadership #Incompetant\n\nhttps://t.co/dEhP0VFsIT"                                                                                                                                                                                                                                  
## [4044] "Calm before the storm I feel! Nice weather, money announcements etc but if people carry on not listening to the government then we are in for a troubling few months! #COVID19 #coronavirus #StayHomeSaveLives"                                                                                                                                                                                                                                                                                               
## [4045] "66 research programs on COVID-19. https://t.co/RxYij6dW1j"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4046] "@DavidDobrik DAVID!NATALIE!I couldn’t do anything for my bffs bday this year, or even get her a present because of COVID-19.lockdown &amp; laid off :/ she’s been working her ass off 40+ hrs a week at the grocery store! PLEASE HELP ME MAKE HER BDAY SPECIAL! She deserves the world! <U+2764><U+FE0F>love you guys! https://t.co/vbI4nREiKL"                                                                                                                                                            
## [4047] "‘Are we really offering to buy computers?’ Cambridge faculty on hardship fund in wake of COVID-19 https://t.co/jHYO7VclP1 https://t.co/DhcynxASYW"                                                                                                                                                                                                                                                                                                                                                          
## [4048] ".@CNN, really enjoying the conversation between\n@andersoncooper, @drsanjaygupta\nand @BillGates on the #coronavirus #COVID19.\n\nThank you guys for the #CNNTownHall; it's very informative."                                                                                                                                                                                                                                                                                                                
## [4049] "Let us help you create your new business design!\n.\n.\n.\n#OnlineBusiness  #successmindset #transformation #AI #businessopportunity #Qurantine #Covid_19 #WFH #logoin30minutes\n\nhttps://t.co/lRy2FlsNCt https://t.co/ZObWSgfRIW"                                                                                                                                                                                                                                                                           
## [4050] "Total confirmed deaths due to COVID-19 per million people https://t.co/HOZl0WYHBU"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4051] "Wonder how #BorisJohnson is feeling about his early ‘herd immunity’ approach now... Latest from @BevanShields in #London where the mighty have fallen ill. https://t.co/i4S5dx2NN7 #CoronaLockdown #coronavirus"                                                                                                                                                                                                                                                                                            
## [4052] "@NSSF Serious question: The local gun shops are experiencing an incredible uptick in business during this COVID 19 pandemic . Why? What is relationship between a public health emergency and sudden need for increased personal firearms?"                                                                                                                                                                                                                                                                   
## [4053] "FDA says patients can self-administer Covid-19 tests, but not at home https://t.co/2ZJjlMcSbM"                                                                                                                                                                                                                                                                                                                                                                                                                
## [4054] "@bobbidog @lucysaunderspr Everything is disrupted by #COVID19 even #TheArchers are being rationed"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4055] "In a bid to curb the rise in the number of novel corona virus disease (COVID-19) cases in Muntinlupa City, the local government is set to purchase testing kits through its Quick Response Fund and eyes to conduct mass testing of its city residents. Read: https://t.co/yM4XRSwhXQ https://t.co/G6TAPzclAX"                                                                                                                                                                                                
## [4056] "@realDonaldTrump Your moral &amp; financial bankruptcies was your legacy before your minority-rule administration took office. \n\nNow you’re killing Americans needlessly. Now your costing the nation trillions through your pathetic response to #coronavirus\n\nYour end comes 11.03.2020 https://t.co/894FBKnlOF"                                                                                                                                                                                       
## [4057] "@LaurieKrebsbac1 @421karl @ddale8 trust me you don't want incompetent yes people like CDC chief Robert Redfield or Deb Birx replace Fauci as \"the expert\" on the task force; they will say anything to curry favor w/ his orangeness (read excerpt from interview) SMDH #COVID19 \nhttps://t.co/kjHtG9FcwO"                                                                                                                                                                                                 
## [4058] "FERC Announces Policies and Procedures to Continue Work During COVID-19 Emergency https://t.co/GvmIIvmSpA | by @shearmanlaw"                                                                                                                                                                                                                                                                                                                                                                                  
## [4059] "Many Floridians will die bc of gov: \"DeSantis’ approach to-COVID-19 crisis-earned him a nat. reputation as-real-life version of-doofy-yet-dangerous Amity Island mayor from Jaws-“They’re playing golf-but they’re social distancing-taking their own cart.” FL-hot spot for the spread. https://t.co/f6Zf1T9gAV"                                                                                                                                                                                       
## [4060] "This should provide some clarity in the challenge of safely managing the long term tracheostomy patients #COVID2019 @jnthnplmr @janesmi12241049 @SiLVaH_UK @UHP_NHS https://t.co/YxV9xDhCZA"                                                                                                                                                                                                                                                                                                                  
## [4061] "Our neighbours measures in addressing the Covid-19 pandemic which can be a good reference too! @MuhyiddinYassin @AzminAli @Mustapa_Mohamed @fromKMR @Kudsia_Kahar https://t.co/a3xLxBQWju"                                                                                                                                                                                                                                                                                                                    
## [4062] "England’s chief medical officer down with covid-19 of all people."                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4063] "The #Utah Economic Response Task Force will host a follow-up Facts &amp; FAQs live conference call TODAY, March 26 at 4:00 p.m. with an overview of the federal stimulus package and highlight innovative business solutions. Join us at: https://t.co/9qprX5hNJp\n#stimuluspackage #covid19"                                                                                                                                                                                                                 
## [4064] "The health department says the cases have not presented any new symptoms, but that fever, cough, and muscle aches continue to be among the most common symptoms. https://t.co/9q6UFBJqS4"                                                                                                                                                                                                                                                                                                                     
## [4065] "@runcaralisarun #COVID2019 affected"                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [4066] "@alluarjun Annaya<U+0001F64F>\nThe COVID-19 Kosam Annaya donate 1 Crore 25 lakhs to the People of Andhra Pradesh , Telangana &amp; Kerala... \n@AAYuvathaHyd\n@AlluSirish\n@Arjun_KumarAA\n@HellkingSai\n@SaiCharan_AADhf\n@MusicThaman\n#StayHome #staysafe Please <U+0001F64F> https://t.co/lrP0NRssfv"                                                                                                                                                                                                     
## [4067] "From free lunches to business loans to pet assistance, we’ve put together a list of resources to help you during the COVID-19 pandemic. Are we missing something? Email editor@eugeneweekly.com. https://t.co/u1YduFvALy https://t.co/quNDXyfjEz"                                                                                                                                                                                                                                                            
## [4068] "Update: GTBank Isoltion Centre Almost completed. To be handed over tomorrow @gtbank @gtbank #StaySafeNigeria #COVID19 https://t.co/r8n3ovXuFo"                                                                                                                                                                                                                                                                                                                                                                
## [4069] "Blue Cross changes policy to encourage use of #telehealth during #coronavirus pandemic https://t.co/XuJrWKO5gp https://t.co/OZXhrF3YeJ"                                                                                                                                                                                                                                                                                                                                                                       
## [4070] "Coronavirus in Africa: How prepared is the continent? | Covid-19 Special https://t.co/1wNuBB7kvj via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                
## [4071] "Every organisation in the world has a role to play in countering the devastating effects of this global crisis. That of @savechildrenuk @save_children is, and has always been, to uphold #ChildRights everywhere. \"Protecting a Generation from #COVID19\" <U+2935><U+FE0F> https://t.co/wY9WclLiYB"                                                                                                                                                                                                        
## [4072] "Free on-street parking is now available for social care and NHS workers in West Sussex during the #coronavirus outbreak <U+0001F17F><U+FE0F><U+0001F697>\n\nRead the full story: <U+27A1><U+FE0F> https://t.co/IPV0I2ge4Q https://t.co/B0UhfnVCxo"                                                                                                                                                                                                                                                            
## [4073] ".#IndigenousPeoples are the among populations at disproportionate risk in public health emergencies. To read the report #COVID<U+30FC>19: How to include marginalized and vulnerable people in risk communication and community engagement <U+0001F449> https://t.co/KlD7SLMo7g #WeAreIndigenous https://t.co/BVqVOK5Ho3"                                                                                                                                                                                     
## [4074] "Amidst Covid-19, on hold for 37 mins with the insurance company to get a life saving drug. Told to call another number and wait. Next time I will just hospitalize a patient with the same condition. Trying not to do this due to covid19. No good deed goes unpunished. <U+0001F621>"                                                                                                                                                                                                                       
## [4075] "@GovSisolak #GovernorPhotoOp could act RE #Rent &amp; #Mortgages or call a virtual Special Session, but won’t. He &amp; @AaronDFordNV have ignored this #WheelchairUser FOR 14 MONTHS!!!!  #COVID19\nUNREAD SISOLAK EMAIL:https://t.co/z28sEfv2Uc.\nGoFundMe/Video:https://t.co/Egn35Gzyye. https://t.co/ksucj1KleR"                                                                                                                                                                                         
## [4076] "This covid-19 is effect on global economy https://t.co/2CBxJrZU1L"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4077] "@maya206 Bravo. That is why stories like the one of @washingtonpost are  so scary. https://t.co/3m24tvHec9 #Covid19usa #COVID2019"                                                                                                                                                                                                                                                                                                                                                                            
## [4078] "#COVID19 has and is likely to affect people from many countries.\nDo not attach it to any ethnicity or nationality.\nBe empathetic to all those who are affected, in and from any country <U+2013> they deserve our support, compassion and kindness. https://t.co/XuifPSW7eY"                                                                                                                                                                                                                                
## [4079] "@TELE_TOTA Please acquaint yourself with the new twitter guidelines and stop spreading misinformation.\n\nhttps://t.co/AIPCNtaI7H"                                                                                                                                                                                                                                                                                                                                                                            
## [4080] "Seen on the street around the corner from our house on a little bike ride with our kids yesterday.\n#COVID19 https://t.co/XQWziZe4fn"                                                                                                                                                                                                                                                                                                                                                                         
## [4081] "@terencecorcoran @nationalpost Bullshit. Twenty- and thirty-somethings are also getting sick and dying. Even healthy young people. \nWhy don't you shove your 'business-before-humanity' stance where the sun don't shine... We are ALL at risk. #coronavirus #FlattenTheCurve"                                                                                                                                                                                                                               
## [4082] "I doubt @Number10cat will endorse this method of #covid19 social distancing. https://t.co/JwYYYM4FF1"                                                                                                                                                                                                                                                                                                                                                                                                         
## [4083] "I went out thinking nobody would be outside, living on a main road and all that. There was fireworks, people clapping, horns beeping. It’s affecting fucking everyone. #ClapForOurCarers #ClapForOurNHS #Coronavirus"                                                                                                                                                                                                                                                                                        
## [4084] "@pramod_dhayal @drharshvardhan @RaghusharmaINC @BJP4Rajasthan Really so hard job dr pramod, but these people don't  understand  the situation  of covid 19 .if people  will do like this it will  be not easy  to control the spreads of  after that  conditions  would be more worse. Oh GOD please give  the strength  from overcome  the situation"                                                                                                                                                        
## [4085] "@StrathcoCounty What can we do with the additional waste accumulated during the COVID 19 isolation?"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4086] "How far should you physically distance yourself from others? <U+0001F3D2> That far. #COVID19 #Toronto #Canada https://t.co/3nCE3LTsFJ"                                                                                                                                                                                                                                                                                                                                                                        
## [4087] "Prominent Nigerian businesses and individuals have come to the aid of Nigerians in this difficult time. \n\nIt is now the turn of MTN. \nLet’s feel you at this time. In a BIG way.\nThe end\nAlkanchi Nasiru Ahmad\n#StaySafeNigeria #COVID19"                                                                                                                                                                                                                                                              
## [4088] "COVID-19 UPDATE | The Ministry of Health has confirmed an eighth case of COVID-19 was recorded in Namibia. Dr Kalumbi Shangula was speaking on a panel discussion on the lockdown of Khomas and Erongo regions. https://t.co/5Dm29MoYG4"                                                                                                                                                                                                                                                                      
## [4089] "In one day, Massachusetts reported 10 new deaths attributable to COVID-19. https://t.co/nYSWZk1t5K https://t.co/bYeE3eIMMM"                                                                                                                                                                                                                                                                                                                                                                                   
## [4090] "@MysterySolvent Fauci's face says it all with Lincoln's somber look behind him. \n\nCovid-19 circle jerk."                                                                                                                                                                                                                                                                                                                                                                                                    
## [4091] "COVID-19 vs. H1N1-09: What a difference a decade can make - American Thinker https://t.co/sCIyrWBAEw"                                                                                                                                                                                                                                                                                                                                                                                                         
## [4092] "ABMS-Developed Tech Could Help Military Telecommute During COVID-19 https://t.co/LOscwcZjg1"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4093] "COVID-19 AND NIGERIA POLITICAL ELITE \n\nEven though a part of me really wants COVID-19 to wipe out(just like most Nigerians want) our so called Political Elite because of the mess they put Nigeria and Nigerians in. \n\nI also Firmly..."                                                                                                                                                                                                                                                                 
## [4094] "#COVID19 Screening Tool: This tool will help you determine next steps to take from your computer or device. #Coronavirus https://t.co/7REMA7FIoh"                                                                                                                                                                                                                                                                                                                                                             
## [4095] "2500 American Troop Will Be In Darwin Next Week \nSome possibly Infected With The Covid+19 Virus<U+0001F60E>\nDidn't Scotty Close Our Boarders.? https://t.co/30lymh9v0U"                                                                                                                                                                                                                                                                                                                                     
## [4096] "The US response, unfortunately, has been very different.  We blew the testing, didn't produce masks, didn't build respirators, didn't practice social distancing until too late.\n\nAs of today, we're #1 in the world in #COVID19 cases, and rising fast.  We're not on a good track."                                                                                                                                                                                                                       
## [4097] "A 16-year-old girl from #Paris dies of #COVID19 after 2 tests initially showed up negative. Let this be a reminder to us that this virus doesn’t know age or health. It can get anyone. Please listen to the doctors and stay home until this is under control.  https://t.co/5cCjtrksFn"                                                                                                                                                                                                                    
## [4098] "#DoYourPart to help #StoptheSpread of #COVID19. Please avoid large groups, going to city parks/playgrounds, and maintain social distancing to help contain the spread of the virus. @CvilleCityHall @TJHealthy https://t.co/MZwjc9T3lK"                                                                                                                                                                                                                                                                       
## [4099] "While having to deal with the #COVID19 pandemic, area health authorities also worry about an increase in #overdoses in #Brockville.\n\n#fentanyl #addiction #drugs #opioids\n\nhttps://t.co/QArQymOdQZ"                                                                                                                                                                                                                                                                                                       
## [4100] "Costco in Brookfield, CT is doing their part to combat #COVID19 #COVIDCT . They cheerfully wipe down your shopping cart handle with disinfectant when you enter the store. https://t.co/ho6xrlfFkh"                                                                                                                                                                                                                                                                                                           
## [4101] "the US done passed China in #Covid19 cases ... wtf really going on out here ??????"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4102] "We aren’t allowed out of our rooms until we:\n-Are kinder to all humans no matter their race, religion, OG country, whom they love\n-Treat animals with respect \n-Treat the earth with respect, and stop denying the climate is in fact changing\n-Stop ghosting women \n#COVID19 #corona"                                                                                                                                                                                                                  
## [4103] "@kathygriffin Unless you are a member of the corrupt Trump crime family (his hideous spawn), his despicable minions or wealthy billionaire friends, you don't qualify for COVID-19 testing.  Sorry @kathygriffin. Love you<U+0001F495>"                                                                                                                                                                                                                                                                       
## [4104] "@HassanAliJoho @ODPP_KE @NPSOfficial_KE @MOH_Kenya @StateHouseKenya The disturbing brutally witnessed in likoni,  Mombasa is a clear indicator of a failed law enforcement and even more worrying,  a leadership that is not in control \nIs it a coup or a curfew??\n#CurfewinKenya \n#COVID19 \n#stopbrutality"                                                                                                                                                                                             
## [4105] "You are making the biggest mistake of your life!.  No matter how intelligent and educated we are,  we can't underestimate the power of #ALLAH ..ALLAH please save us from covid 19.only allah can save us from corona vairus.\n#Covid19usa #CoronaLockdown #massie #FridayMotivation"                                                                                                                                                                                                                         
## [4106] "Friend asks: where are the Adrian Dix and Bonnie Henry action figures\nhttps://t.co/fsf9QUmNPT"                                                                                                                                                                                                                                                                                                                                                                                                               
## [4107] "What was the keyword in the the message from the President of @AmerMedicalAssn in the midst of #COVID19? @PatriceHarrisMD says 'TRUST'! Her main message? Need #PPEshortage #PPE. Currently LIVE at #AMWALEADS2020 #AMWA105 from @AMWADoctors @DrRGebhard @ChinEliza @ptkirchgraber https://t.co/VaSxCXxDly"                                                                                                                                                                                                  
## [4108] "As if we need another reminder of exactly why he’s so dangerous, but FYI, here you go.  #COVID19 #TrumpCrimeFamily  https://t.co/oYknBnBRhU"                                                                                                                                                                                                                                                                                                                                                                 
## [4109] "@Stogger2001 @MoustafaZeidy @OG_MaraJade There is a luxury, contactless hotel in Switzerland capitalizing on this in style.  Luxury covid-19 packages at Le Bijou.  A hustler mind set will ALWAYS make cash and jump on opportunities."                                                                                                                                                                                                                                                                      
## [4110] "Present updates about #COVID2019 \n#CoronavirusOutbreak #Covid19usa #COVID #CoronaLockdown https://t.co/U59lj2j80G"                                                                                                                                                                                                                                                                                                                                                                                           
## [4111] "The @LWV_WI filed a federal lawsuit seeking to \"protect self-quarantining voters who cannot safely obtain a witness signature on their mail-in ballot during the COVID-19 pandemic.\"  \n\nThe complaint is here: https://t.co/3tmEiVCLTb https://t.co/L484pdEL06"                                                                                                                                                                                                                                           
## [4112] "Who is joining us in 10 minutes to #clapforNHS? Let’s show our appreciation #ThankYouNHS #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                         
## [4113] "Mets Could Be Heavily Affected By COVID-19 Agreement https://t.co/RQ44FaroF4 #Mets #LGM"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4114] "COVID-19: NMA seeks Executive Order on total lockdown - https://t.co/oOnCatdeEr https://t.co/yYWyhy1r8B"                                                                                                                                                                                                                                                                                                                                                                                                      
## [4115] "A white man just saw me walking towards him and walked across the street. I thought it was bc I’m black... but remembered #COVID19 was still a thing... you get a pass sir. https://t.co/YYsUa74dwT"                                                                                                                                                                                                                                                                                                         
## [4116] "COVID-19 Crash: How China's Economy May Offer a Glimpse of the Future https://t.co/Dpi45Q5c5g"                                                                                                                                                                                                                                                                                                                                                                                                                
## [4117] "There is cause to believe that the youth was denied care for COVID-19 because he did not have health insurance.\n\nhttps://t.co/i4lKUlelr4"                                                                                                                                                                                                                                                                                                                                                                   
## [4118] "Everyday more #research is becoming available &amp; our understanding of #Coronavirus is getting better\n\nWe are #learning new ways to fight it\n\nThe existing guidelines will #improve accordingly\n\nSalutes to our #Doctors &amp; #scientists who are fighting at the forefront\n\n#Doctor_Bashing https://t.co/5F44NEqman"                                                                                                                                                                              
## [4119] "@shannonrwatts I just ordered something online and they said they will accept returns after 30 days as long as I notify them I need a return because they understand covid-19 will make returns difficult"                                                                                                                                                                                                                                                                                                    
## [4120] "<U+0001F1E8><U+0001F1F3> #Wuhan resumed the outbound and inbound transportation on Saturday after its 65-day lockdown due to the outbreak of COVID-19. \n\nThe first passenger train arrived its Wuchang Station, and metro line-2 also restarted to operation on Saturday morning. #COVID19 \n#coronaviruschina https://t.co/nPkGV9kPVW"                                                                                                                                                                     
## [4121] "if my lungs dont fail bc of covid-19 it’ll be because my partners dad insists on spraying the entire house with fly spray over a single fly"                                                                                                                                                                                                                                                                                                                                                                 
## [4122] "Filed on September 5, 2013, about 7 years before the world is hit by the COVID-19 pandemic, Senate Bill no. 1573 known as the Pandemic and All-Hazards Preparedness Act aims to help prepare the Philippines against a pandemic or a deadly virus.\n\n#COVID19PH\n#MiriamSantiago https://t.co/2dviBH9lRs"                                                                                                                                                                                                    
## [4123] "<U+0001F3E2> 'They're winning praise all over the city' https://t.co/QuCM9vmdZ8"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [4124] "#drewbrees donating $5 million to #covid_19 relief in Louisiana https://t.co/EwllSaA3Rx"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4125] "A 25-year-old woman from #Ariyalur, who was working at a #Chennai mall tested positive for #COVID-19. https://t.co/9vwWIcyooJ"                                                                                                                                                                                                                                                                                                                                                                                
## [4126] "Bimbang” #Covid19 <U+0001F1EE><U+0001F1F9><U+0001F1F2><U+0001F1FE> Everything will be back soon. https://t.co/jDdU15G6ej"                                                                                                                                                                                                                                                                                                                                                                                    
## [4127] "@j_mcelroy @cbcnewsbc Can you ask them why Vancouver is not in lockdown? Also these numbers are of those showing serious #Covid19 symptoms who are tested not mild (not tested). For the mild cases are they tracking sources? They are equally contagious. https://t.co/wiEPDVzOpr"                                                                                                                                                                                                                          
## [4128] "@bbclaurak Why didn't you challenge her on reports of govt manipulation of #coronavirus deaths figures?"                                                                                                                                                                                                                                                                                                                                                                                                      
## [4129] "Ontario has 993 confirmed cases of COVID-19, 135 confirmed in the past day, an increase of 16%. There have been 18 deaths. A record 3,375 test results were completed in the past 24 hours, but there is a 3-day backlog on average, based on the current testing rate."                                                                                                                                                                                                                                      
## [4130] "How to act during the COVID-19 outbreak, by @SpanishLuvSongs https://t.co/veS2WvNnCC"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4131] "I’m like 95% sure I’m unemployed cause of this #COVID19 thing but we’ll see"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4132] "#confinementtotal On https://t.co/4zZsRPZYwX Listen now Devil In Me by RumRunners @rumrunnersuk via @infinitehive on https://t.co/C2Tndcnl74 #QuarantineLife #StayHome #covid19 https://t.co/6GyxLt72WL"                                                                                                                                                                                                                                                                                                      
## [4133] "#StayHomeSaveLives  seems to mean less to your staff, then it does to other councils. @carolinenokes now would be a good opportunity to add clarity from a government’s pov. Speak up before COVID-19 destroys lives, when clearly can be avoided."                                                                                                                                                                                                                                                          
## [4134] "Now, everyone in my city use face mask. Maybe because of #COVID19 so people aware that healthy lifestyle is important. People afraid to infected by Corona"                                                                                                                                                                                                                                                                                                                                                   
## [4135] "Oliver Wyman's data and healthcare experts developed the #OWCovid19 Scenario Generator to forecast the number of confirmed COVID-19 cases in a region and scenarios for hospital capacity in US geographies. Access through link below. https://t.co/KDw6qJp3TV"                                                                                                                                                                                                                                              
## [4136] "If there's a proven treatment that prevents Covid-19 infection that's available in limited amounts &amp; you can only get it if you kiss Trump's ass, that would explain why no one's worried. Wouldn't it be crazy if that conspiracy theory got started? #Trumpdemic #LiarInChief https://t.co/VYIcLesg6y"                                                                                                                                                                                                  
## [4137] "@CutthroatShop @lana_manson @smithlocke11 @gjhghg16 @YoungJyoung6350 @ChrisEvans_USA @ChrisEvans @KimKardashian Omg go put on a Trump rally, go celebrate your poor leader and remember that covid-19 is just a hoax, you Trumpist will come out just fine. Trump promises. PLEASE!"                                                                                                                                                                                                                          
## [4138] "@maschanyet_ imagine her being the one discovering the cure for covid 19 then the whole nation fell for this pretty scientist"                                                                                                                                                                                                                                                                                                                                                                                
## [4139] "The Music Industry's First Coronavirus Survivor Describes the Ordeal https://t.co/rqGaA8ewAz #Hollywood #Music #coronavirus\n#chinavirus"                                                                                                                                                                                                                                                                                                                                                                     
## [4140] "Go Smart, Go digital In this Covid19 work from home era.             \n.\n.\n.\n.\n.\n.\n.\n #COVID19 #coronavirusinlagos #Curfew #SouthAfricaLockdown #ABetterNigeria #lagoslockdown #LetsFightCovid19  #StayHome #thursdaymorning #CoronavirusPandemic #vaka3629 #clapforNHS #clapforourcarers https://t.co/wXCaQ4G8eE"                                                                                                                                                                                     
## [4141] "Two guards at Saskatoon Correction Centre test positive for COVID-19 https://t.co/cdYgsMFojP"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4142] "#COVID19 got this emergency alert on phone now.. that’s a good one."                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4143] "@FrielSfriel @jeremyscahill No evidence it jumped from pangolins... \n\nhttps://t.co/z2qvU83EB7"                                                                                                                                                                                                                                                                                                                                                                                                              
## [4144] "Now available, our COVID-19 exclusive Tee<U+2622><U+FE0F>They’re made to order..and will be available until 4/1<U+2601><U+FE0F>\nCop now at https://t.co/mx67SMWGDn <U+0001F919><U+0001F3FC> https://t.co/ttKDyfjEFS"                                                                                                                                                                                                                                                                                        
## [4145] "@russdiemon Riding this out alone. Scared but hopefully. #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4146] "#HrithikRoshan's latest post is a hit, but for a change it is not the superstar but his pet dog that is drawing a lot of attention. #coronavirus #covid19india\nhttps://t.co/bXm9CLTw1X"                                                                                                                                                                                                                                                                                                                      
## [4147] "@MinofHealthUG @rkabushenga Thank you Abacus for for standing with @MinofHealthUG  demonstrating action in the fight against COVID-19"                                                                                                                                                                                                                                                                                                                                                                        
## [4148] "Coronavirus Tips and Supplies Guide: What to Buy (and Avoid) in Case of Quarantine <U+2013> Don't: hoard toilet paper and medical masks. Do: make sure you have plenty of food, water, and indoor activities. https://t.co/MdhWI8aqGu https://t.co/yOCnBNHE7U"                                                                                                                                                                                                                                                
## [4149] "If Covid 19 is gotten under control and MLB has a season, they should play every game of the entire post season this year at Hiram Bithorn Stadium in Puerto Rico. It would mean they could play in warm weather into Nov and Dec and be a boost to PR’s economy."                                                                                                                                                                                                                                           
## [4150] "Could Robots Be Deployed to Front Line in Fighting COVID-19?: Title: Could Robots Be Deployed to Front Line in Fighting COVID-19? Category: Health News Created: 3/25/2020 12:00:00 AM Last Editorial Review: 3/26/2020 12:00:00 AM https://t.co/9IrMybtlfz"                                                                                                                                                                                                                                                  
## [4151] "As a #paramadic Chief, my #COVID19 quick take:\n\n1) @BC_EHS &amp; my @APBC873 brothers/sister are amazing.\n\n2) Please don't go out in groups. At all.\n\n3) #Coffee only from home, as a strange (yet kind) hand &gt; lid &gt; face isn't going to work for a while.\n\n#wegotthis"                                                                                                                                                                                                                        
## [4152] "@marklopeztkd It is NOT Wuhan virus - it is covid-19 !! please use accurate terminology! Funny video though <U+0001F923>"                                                                                                                                                                                                                                                                                                                                                                                     
## [4153] "Coronavirus explained: Where it came from and how to stop it | DW News | Virus Information News  Full article -&gt; https://t.co/kOgpPOD3mi #covid19 #coronavirus #virus #pandemic #coronavirusoutbreak #coronavirusepidemic #quarantine #selfquarantine #outbreak #COVID<U+30FC>19 https://t.co/TdBgy0HrlA"                                                                                                                                                                                                  
## [4154] "When Football (Soccer) returns from the long extended break #COVID2019 https://t.co/YkZ4A6mHn5"                                                                                                                                                                                                                                                                                                                                                                                                               
## [4155] "@GeriSoc statement on corvid-19\nhttps://t.co/COVcMDvN4k"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4156] "@prof_carrington very early findings...HCQ (not the same as CQ) basical is likely to attenuate severe progression of COVID-19 through inhibiting the cytokine storm by reducing CD154 expression in T cells..."                                                                                                                                                                                                                                                                                               
## [4157] "<U+0001D5E3><U+0001D5E5><U+0001D5D8><U+0001D5E6><U+0001D5E6> <U+0001D5E5><U+0001D5E2><U+0001D5E2><U+0001D5E0>\n<U+0001F1ED><U+0001F1F3> #Honduras: The National Risk System (SINAGER) communicated the following measures for the entry of Hondurans to the country: https://t.co/PtlHn0gvow\n\n#SomosArias #crisismanagement #riskmanagment #quedateencasa #stayhome #covid19 #lawfirms #coronavirus"                                                                                                        
## [4158] "These 3 pre-existing conditions make #COVID19 harder to treat. https://t.co/WcU5R17EXG"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4159] "We may have experienced slight surge in confirmed cases of #COVID19. You and I have a patriotic duty at this trying moment.\n\nPractice self isolation if you have just returned from a country with high risk.\n\nPractice personal hygiene, and follow safety guidelines from @NCDCgov. https://t.co/vQGqfOUZpL"                                                                                                                                                                                            
## [4160] "May God protect us all from the Corona virus and bring back Peace in our lives, Ameen. \n\nMay God grant Paradise to the martyrs during this Pandemic and bless the affected with Shifaa, Ameen.\n\n#COVID19 #Ireland #Prayer #Humanity #WeAreFightingCorona https://t.co/ZUmcuRO3Vq"                                                                                                                                                                                                                         
## [4161] "Check out Jonathan Valdez's video! #TikTok #CoronavirusOubreak  https://t.co/XRRhQRqYAT"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4162] "PUBLIC HEALTH MTL #COVID19: We've seen in acceleration of the number of cases in the last week."                                                                                                                                                                                                                                                                                                                                                                                                              
## [4163] "Did you have coronavirus earlier this year? The 8 signs Covid-19 may have already struck https://t.co/takkQQ6DnF"                                                                                                                                                                                                                                                                                                                                                                                             
## [4164] "Being at home does not mean you are alone. I am offering discounted consultations to help others. Contact me now to schedule an appointment &amp; share to help others \n#foodallergy #COVID19 #consultant #Advocate #support https://t.co/BWjqxMFFLO"                                                                                                                                                                                                                                                        
## [4165] "Ganesh Naik appeals to doctors to keep clinics &amp; hospitals open during Coronavirus lockdown\n#LiveUptoNobleProfession #Coronavirus #navimumbai \nhttps://t.co/lA42OQtyyv\n@NaikSpeaks @isandeepgnaik"                                                                                                                                                                                                                                                                                                     
## [4166] "Little social distancing cookout this evening. #coronavirus #MyHuntington https://t.co/htsyRBxxow"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4167] "My poor mom, y’all. She’s at high risk with COVID-19 because of her heart &amp; lung diseases and compromised immune system. My grandma is in the hospital not doing well and I went over to talk with my mom, while practicing social distancing.. 6 feet apart, and she’s just crying and"                                                                                                                                                                                                               
## [4168] "Governors Tell Outsiders From ‘Hot Zone’ to Stay Away as Virus Divides States https://t.co/EWipqyohZS #coronavirus #CoronaVtj https://t.co/wKS6bRGv4U"                                                                                                                                                                                                                                                                                                                                                      
## [4169] "@RepThomasMassie What kind of person are you?!  To unnecessarily expose House members to COVID-19 to vote in person when they can easily vote remotely or by unanimous consent?  We aren't living in 1776!!  Get with the times."                                                                                                                                                                                                                                                                             
## [4170] "All City of Sacramento public counters are temporarily closed in response to COVID-19. The Department of Utilities is not shutting off services for non-payment and will waive late fees. Visit our online resources and tools available. https://t.co/KraHOel1me"                                                                                                                                                                                                                                            
## [4171] "Teams are stronger than heroes <U+0001F60E>\nhttps://t.co/1Zpo20qzDE"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4172] "#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 On https://t.co/4zZsRPZYwX Listen now She Moved Through The Fair by Hats Off Gentlemen It's Adequate @itsadequate on https://t.co/C2Tndcnl74 https://t.co/blbD5rxkvJ"                                                                                                                                                                                                                                                                                 
## [4173] "Looking for something to watch while being quarantined? Check out my son’s latest short films! \n#proudmom #QuarantineLife #QuarantineWatchParty #coronavirus #filmmakers #shortfilms #SupportTheArts https://t.co/2PpcOwEDbH"                                                                                                                                                                                                                                                                               
## [4174] "@Comcast Why won’t you come fix internet? Our entire neighborhood is w/o service (less than 1Mbps).\n\nHow can we do remote school for our college kids or work from home?\n\nRep said you would fix it after #COVID19 - what!?!\n\nHELP!\n\n@GovTimWalz @WCCO @KSTP @kare11 @FOX9 @amyklobuchar"                                                                                                                                                                                                            
## [4175] "So apparently one of the side affects of Covid-19 that nobody is talking about is it makes people REALLY FUCKING STUPID! Go home idiots!"                                                                                                                                                                                                                                                                                                                                                                     
## [4176] "Antron Security will be supporting #clapforNHS and #clapforourcarers to recognise and applaud the great work everyone in the #NHS is doing everyday. They take risks to keep us all safe. #covid19."                                                                                                                                                                                                                                                                                                          
## [4177] "Was just outside and birds don't give a fuck about #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4178] "Decatur doctor shares COVID-19 experience https://t.co/hoizaFpGjp via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4179] "@SarahLudford  https://t.co/WgF1By8K1M\nA professor on Covid 19"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [4180] "Congress provided $25 billion for transit service in the #COVID-19 economic stabilization. Learn more, and tell your representatives thanks. https://t.co/BCaphY7RTw #TransitIsEssential"                                                                                                                                                                                                                                                                                                                     
## [4181] "@VWGroup CEO says factory shutdowns cost 2 billion euros per week, urges discipline in following medical advice. Story on @TheTerminal #FlattenTheCurve  #COVID2019 #coronavirus"                                                                                                                                                                                                                                                                                                                             
## [4182] "We at @CdnFeedChildren stand with 150 Canadian charities asking the federal government for urgent financial aid and action to help sustain the important work we all do as we navigate #COVID19 #FeedChildren https://t.co/RCGqNrgOP4 https://t.co/Mi8zEyNvru"                                                                                                                                                                                                                                                
## [4183] "@MarthaKarua Surely from the images coming from Kenya. It seems the govt has declared war on its on citizens instead of war on the virus. The people of Kenya are fighting two fronts one is the covid-19. And 2nd is stupidity from the govt."                                                                                                                                                                                                                                                               
## [4184] "UPDATE: iBIO’s COVID-19 PPE Response Fund just ordered 62,500 #PPE<U+00A0>items valued at more than $400,000<U+00A0>thanks to @HorizonNews Seed Donation. Join the fight. Help save lives. Donate: https://t.co/jFwa6xt4d6 @HorizonCEOTW #iBIOCOVID19PPEResponseFund #COVID19 #IL https://t.co/qiIJZivQNa"                                                                                                                                                                                                   
## [4185] "Malaysia's vegetable supply to be disrupted in coming months due to<U+00A0>movement control order, say farmers https://t.co/Tm1wbW8J9I https://t.co/L3lDuip0iW"                                                                                                                                                                                                                                                                                                                                               
## [4186] "@lopakanungo @eartherian @HathwayBrdband @ACTFibernet Can you share the procedure of mailing to nodal officers directly. Bcz when i mailed to delhi nodal officer on her  mail id provided on hathway website. It send me back computer generated mail only regarding COVID-19 or shortage staff...blaah blaah...<U+0001F611><U+0001F611><U+0001F97A>"                                                                                                                                                        
## [4187] "You should limit your contact with people as much as possible.\n\nPractice Self-Isolation.\n\nStay home and avoid attending activities or gatherings where you may come in close contact with other people.\n\n#TeamFiji #Fiji #LegalAidFiji #COVID19 https://t.co/bSruMggEQn"                                                                                                                                                                                                                                
## [4188] "Need a change from the doom &amp; gloom around #COVID2019 <U+2753>\nONLINE this Friday 10.15 at @FriendsofEurope is @vestager on Europe’s digital future. \n#womenintech #leadership  https://t.co/GhYtYZdwfD"                                                                                                                                                                                                                                                                                               
## [4189] "With everyone at home, home accidents are on the rise. Use this helpful resource to help keep your family safe in these times, and always! https://t.co/SJMSTXCrvF\n\n#homesafety #COVID19 #home #safety #kids #parents #StayAtHomeAndStaySafe #StayHome"                                                                                                                                                                                                                                                     
## [4190] "@BillyWarpinjur Spreading some COVID-19 Love among his sycophants."                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4191] "How about words of encouragement by giving them a refund for their meal plans, room and board fees and any other resources they no longer have access to due to covid-19 many of these students had to take out loans and y’all want to take everything away and not reimburse them! https://t.co/ZecjilcaBc"                                                                                                                                                                                                
## [4192] "Nets' Kyrie Irving Donates 200K 'Beyond Burgers' to NYC Food Bank amid COVID-19 | Bleacher Report https://t.co/QeAIGKRe4N"                                                                                                                                                                                                                                                                                                                                                                                    
## [4193] "Is the Covid-19 test free from MOH? Anyone know?"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [4194] "Stop fake solidarity, messages and clapping for heros. #Switzerland can put their money where their mouth is. Buy ventilators.\nMountain light show sends message to #Swiss\n#Covid_19 https://t.co/N8EebbDEI6"                                                                                                                                                                                                                                                                                               
## [4195] "#Singapore has tapped into its reserves for only the 2nd time in history &amp; announced a S$48bn (US$33.7bn) stimulus plan to combat the economic impact of #COVID2019. Combined with the measures announced in the budget it brings the total fiscal boost to S$55bn, or 11% of GDP. \n7/12"                                                                                                                                                                                                                
## [4196] "@TwitterSupport @Twitter @FudBankNg for there poor during this #COVID19Nigeria lockdown time in Nigeria. I will be glad if this is done. Thank you 2/2\nPicture of past food distributions #StaySafeNigeria #COVID19 # https://t.co/mepMTfIqRv"                                                                                                                                                                                                                                                               
## [4197] "@drkellyhenning @ParentsvsVape #Fake #News.  Using a real pandemic (#coronavirus ) to spread their hatred of personal freedom and tobacco.  If people want to smoke, let them!"                                                                                                                                                                                                                                                                                                                               
## [4198] "Sign and Share our petition below to #StopTheRent and protect University staff and students during this crisis \n#Students8Demands #COVID19\nhttps://t.co/9bBGWOmV3o"                                                                                                                                                                                                                                                                                                                                         
## [4199] "May I please ask for prayers for my boyfriend's daughter Jenn? She tested positive for #coronavirus &amp; had been ok at home but her breathing has gotten worse &amp; so she's had to be hospitalized today! <U+0001F631><U+0001F494> Thanks in advance!! Take good care everyone! #MaskUp #Masks #coronavirus <U+0001F64F><U+0001F494>"                                                                                                                                                                     
## [4200] "My whole road just clapped. Big up the NHS #NHSheroes #NHSThankYou #COVID2019"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4201] "Dear @realDonaldTrump, I know you’ve been really busy with Covid-19, but would you please take a moment of your time to consider a full pardon for #JoeExotic #TigerKing #CaroleKilledHerHusband https://t.co/u6MBFkJJIy"                                                                                                                                                                                                                                                                                    
## [4202] "@humkakare coronavirus is a type of virus that has been known about for centuries. covid 19 is just a form of it. stop spreading false information and panic"                                                                                                                                                                                                                                                                                                                                                 
## [4203] "#SouthIndia actors are helping poor &amp; Governments fight #Coronavirus by donating huge despite earning less than #Bollywood. But @iamsrk @BeingSalmanKhan @akshaykumar @aamir_khan @karanjohar @yrf @SrBachchan @KapilSharmaK9 @sonamakapoor wouldn’t care a bit and will never donate."                                                                                                                                                                                                                  
## [4204] "As we navigate uncharted territory in these unprecedented times, it’s important to look for glimmers of hope amongst the chaos. It isn’t difficult to find several examples of brands/businesses engaging in social good during the COVID-19 crisis. https://t.co/RzsOp24dxb"                                                                                                                                                                                                                               
## [4205] "Idk what will get to me first...\n\nThis being an “essential worker” and learning everything yourself at home with strict due dates \n\nOr covid-19\n\n<U+0001F61E>"                                                                                                                                                                                                                                                                                                                                        
## [4206] "Confirmed Cases and Deaths by Country, Territory, or Conveyance\nThe coronavirus COVID-19 is affecting 198 countries and territories around the world and 1 international conveyance (the Diamond Princess cruise ship harbored in Yokohama, Japan). https://t.co/o9JbG27nT0"                                                                                                                                                                                                                                 
## [4207] "Just one more reason us #Texans love #heb! #coronavirus \n\nhttps://t.co/izYX2mCJpz"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [4208] "Don’t be thick !!!  #coronavirus #CoronaVillains https://t.co/unyw7rTz0p"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4209] "The irony is Toorak and Armadale have the highest number of positive #Covid_19 cases. I live in Armadale, I don’t want it - why do others think this is okay? Stay inside your glorious mansions, surely you have enough things to keep you occupied. https://t.co/jk8b6rpD3j"                                                                                                                                                                                                                               
## [4210] "World, i am loving the true selfless acts all around the world. @snmrrw is giving up his salary to help low-level employees all over the country during this horrible #COVID19 pandemic. *starts slow clap* Kudos, Sean! Amazing act of kindness, love and selflessness! https://t.co/lmZEYhQU5X"                                                                                                                                                                                                             
## [4211] "@mattgaetz @RepMattGaetz It's a COVID-19 treatment center dipshit"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4212] "TRUMP ISN’T AT WAR HE NEEDS TO JOIN THE WAR AND NOT DODGE THIS ONE! OUR DOCTORS AND NURSES ARE FIGHTING TO SAVE LIVES WITHOUT THE WEAPONS TO DEFEND. THE UNITED STATES OF AMERICA HAS TO DO BETTER TO HELP DOCTORS AND NURSES SURVIVE TO CONTINUE FIGHTING THE COVID-19 WAR."                                                                                                                                                                                                                                
## [4213] ".. “As long as this continues, it’s going to have a significant impact on people’s everyday lives.” @txcomptroller @Glenn_Hegar tells me TX’s jobless rate may hit 1980s “oil bust” levels + the turnaround could take time. More later on @KHOU #khou11 #COVID19"                                                                                                                                                                                                                                     
## [4214] "The end of another challenging week as we all readjust to fully remote working dealing with a range of issues to maintain community safety &amp; ensure our service continuity. Proud of the team for their resilience, adaptability, team work &amp; commitment #StayHomeSaveLives #COVID19"                                                                                                                                                                                                                 
## [4215] "COVID 19 and your pets: March 25th update https://t.co/fkgx2OjEGY via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4216] "Committed to providing reliable supply in uncertain times. #patientsafety #COVID19 #FlattenTheCurve https://t.co/9o5dQUIeG6"                                                                                                                                                                                                                                                                                                                                                                                  
## [4217] "@tescotringarea so impressed with your covid 19 precautions for shoppers today. Well done and thank you!"                                                                                                                                                                                                                                                                                                                                                                                                     
## [4218] "On to the Senate for the Minnesota COVID-19 aid bill, which passed the House 99-4. #mnleg"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4219] "Does anyone have malaria?\n\nIf you have malaria, you could sell your infection for $2,000 per person you infect in states with treatment bans for COVID-19."                                                                                                                                                                                                                                                                                                                                                 
## [4220] "Is dereliction of duty an impeachable offense? #COVID19 #TrumpPandemic https://t.co/TV6wbrgnCd"                                                                                                                                                                                                                                                                                                                                                                                                               
## [4221] "@sudhirchaudhary    Door to door test should be done to check corona positive patient as some people are hiding this problem so that it becomes more dangerous for other people also. I think this door to door test will help to recover from corona <U+0001F64F><U+0001F3FB>jai hind <U+0001F1EE><U+0001F1F3>#covid19"                                                                                                                                                                                      
## [4222] "#coronavirusindia #Covid_19india I see many people is making congregation infront of grocery shop, vegetable shop (in TV), which have potential to spread #COVID2019. Please go out only if necessary during this lockdown, so government does not have  to implement another lockdown."                                                                                                                                                                                                                      
## [4223] "<U+0001F44F>\"Until about the third week of January, only a few pharmaceutical executives, drug-safety inspectors and dogged China hawks cared that a large share of the world’s supply of antibiotics depends on a handful of Chinese factories.\" https://t.co/J7JS3qkkPY"                                                                                                                                                                                                                                 
## [4224] "Tough times don't last, tough people do!!! #TogetherApart #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4225] "My niece Melissa, an RN, prepared for work in the world of COVID-19. https://t.co/n1ULsOD3Bq"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4226] "Keeping BC safe &amp; healthy: Please watch @JJHorgan and @MikeFarnworthBC announce new measures to help protect supply chains and ensure compliance with @DrBonnieHenry orders. #TogetherApart #COVID19 #bcpoli [full release here: https://t.co/uHt4TgliWb] #bcpoli #COVID19BC"                                                                                                                                                                                                                             
## [4227] "\"Royal Pains\" If I Were a Sick Man (TV Episode 2009) - IMDb - 11 years ago #Covid19 #WuhanVirus  https://t.co/D3ZbmBoU2M"                                                                                                                                                                                                                                                                                                                                                                                   
## [4228] "#Egypt reports 41 new #coronavirus cases and 6 new deaths, bringing the country’s total to 536 and 30 deaths. Whilst, 116 cases have recovered and discharged from hospitals: @mohpegypt https://t.co/37InX06vRC"                                                                                                                                                                                                                                                                                            
## [4229] "Is this pandemic a sign that we should start embracing the virtual world <U+0001F914>?\n#virtualworld #COVID19 #virusoutbreak"                                                                                                                                                                                                                                                                                                                                                                                
## [4230] "Google Chrome 81 to be released next month, on April 7. Google to resume Chrome updates it paused last week due to COVID-19... via @zdnet #infosec #tech #ThursdayThoughts https://t.co/rNQW5h2Q15"                                                                                                                                                                                                                                                                                                           
## [4231] "This is me any time I’m at the grocery store and someone coughs or sneezes. <U+0001F631><U+0001F637> #coronavirus https://t.co/ZoHZslmvk2"                                                                                                                                                                                                                                                                                                                                                                   
## [4232] "Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among the first in Virginia to die from virus https://t.co/1ndUUQURf3"                                                                                                                                                                                                                                                                                                                                                                     
## [4233] "I hope everyone is taking notes during this #coronavirus epidemic, because some people don't deserve a welcome back to civil society when this is all over....... #DieForTheDow #True Colors https://t.co/yhC89Dl5AB"                                                                                                                                                                                                                                                                                         
## [4234] "stay home and stay safe. Clsspsdrugs #COVID<U+30FC>19#covidnyc #SundayThoughts #COVID19 #StayHome."                                                                                                                                                                                                                                                                                                                                                                                                           
## [4235] "You can guarantee that all the vile lefties &amp; liberals gloating over @BorisJohnson &amp; @MattHancock contacting #coronavirus, there won't be a single patriot amongst them.\n\nIt's not just Boris, Matt &amp; the @Conservatives they hate, they hate Britain too.\n\nAbhorrent sick TRAITORS."                                                                                                                                                                                                         
## [4236] "We are about to open our Mashauri #COVID-19 Idea Challenge for university students. Please share the link to anyone who you believe may be interested\nhttps://t.co/xe0IP1N8Cu https://t.co/X8xqJL7zFu"                                                                                                                                                                                                                                                                                                       
## [4237] "I’m sick right now not with covid-19 but all I do is stay home and getting paid for it <U+0001F602>. https://t.co/k7Z1ucGaPK"                                                                                                                                                                                                                                                                                                                                                                                
## [4238] "BREAKING: The CARES Act $2.2 trillion stimulus was signed into law today to help small and medium size businesses access loans to cover #payroll. \n\nRead all about it in the #TriNetblog: https://t.co/rXTAalUC2q\n\n#YourPeopleMatter #COVID19 #breakingnews #stimulus #payroll #SMBloan https://t.co/wBlm5y7zeO"                                                                                                                                                                                          
## [4239] "Better a thousand times careful than once dead.\n#CoronaUpdate #Covid_19 #Motivation"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4240] "@realDonaldTrump @generalmotors @Ford Maybe if you got your shit together and give coherent speeches everyone wouldn't be confused.\nhttps://t.co/kb9E5lD21W\n#TrumpLiesPeopleDie #TrumpIsTheWORSTPresidentEVER #TrumpRecession #coronavirus #Trumpdemic #TrumpPlague #TrumpVirus"                                                                                                                                                                                                                            
## [4241] "Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/nyCKhWIN2b"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4242] "Survey : have you been able to get tested for Covid -19."                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4243] "Been thinking about what the #COVID19 crisis would be like without the internet.  Ability to work from home, get key information, order groceries online.  Social distancing would be much harder without it.  Probably saving likes."                                                                                                                                                                                                                                                                        
## [4244] "@GraemeStraughn a lot of the MTA workers have tested positive for COVID-19, between safety concerns for workers and riders, they've slashed operations by over 25% and rising due to a steep drop in ridership. They can't afford to run efficiently. You're gonna have to walk, friend :/"                                                                                                                                                                                                                   
## [4245] "We created the ABM COVID-19 Resource Hub, w/ advice from our team &amp; trusted industry leaders to provide support and insights on how to best adjust to the new challenges posed by COVID-19. \nhttps://t.co/zeWEw1KUvd #abm #accountbasedmarketing #community #stayhome  @madisonlogic"                                                                                                                                                                                                                    
## [4246] "Even while practicing social distancing, community is important! Make sure to check in with those you know.  #COVID19 https://t.co/C3GyNsm3Mt"                                                                                                                                                                                                                                                                                                                                                                
## [4247] "@RealBrandonDonk @realjuliasong @ericgarcetti  \n\nA magnum opus in the catalog of bad ideas. #Covid19 \n\nHow about you stop sipping whiskey while the world falls apart and govern?"                                                                                                                                                                                                                                                                                                                        
## [4248] "I cannot believe ANY of the numbers from either China or the US to be accurate. Both countries (+many others) that are reporting numbers of citizens that THEY KNOW OF. \nThere are MANY \"undocumented\" that are quietly mourning their own, burying their own. There's more. #COVID<U+30FC>19"                                                                                                                                                                                                             
## [4249] "@realDonaldTrump Can we just focus on taking care of Covid-19 first? Oil and gas aren’t going to matter at all if people are dead - and they Are Dying. We just passed China with most cases of the virus - winning???"                                                                                                                                                                                                                                                                                      
## [4250] "#COVID19 has introduced me to telemedicine and I love it."                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4251] "Students, if you have questions about COVID-19, OUSD is doing a live web chat at 11am today. Go to https://t.co/CfLwx6kAoy to join the video conference! We’ll post the link to the recording if you can’t attend. https://t.co/xGXOESk913"                                                                                                                                                                                                                                                                 
## [4252] "A nurse in America resigned cause her supervisor wanted to take advantage of her. . .  Despite knowing her medical history, she still insisted on sending her to the #COVID19 Patients are. \n\nThat is so cruel to these great people working their ass of so others might live. https://t.co/jDbPCT4t0a"                                                                                                                                                                                                    
## [4253] "Just because you wear gloves to the grocery store to prevent the spread of #coronavirus , DOESNT mean your preventing it-you touch the cart, you touch the product, you touch your wallet, you touch everything- so you are spreading it-"                                                                                                                                                                                                                                                                    
## [4254] "<U+0001F48A> #LALATE <U+0001F48A> #BREAKINGNEWS \n#LA #Coronavirus Cases: #Hollywood and #Melrose Surge, 20 Deaths in County\nLIVE ▶<U+FE0F>▶<U+FE0F> https://t.co/JkzHNrUZXf\n\"LA\" \"Coronavirus\"\n\"Exponential Threat\"\n#CoronaVillains\n#CoronavirusOubreak 1"                                                                                                                                                                                                                                      
## [4255] "“Relatively young people <U+2014> age 30 through 50 <U+2014> often male, with little to no known past medical history are getting sick from this virus, getting intubated, [and] dying.\"\n\n“Social distancing is not solely for protecting your grandparents.” https://t.co/HIulwS53pB"                                                                                                                                                                                                                  
## [4256] "Hopefully an accurate \"Are you immune to #Covid19\" test will be confirmed soon. #HerdImmunity #Covid19UK #Covid19 https://t.co/vm9pETk0HI"                                                                                                                                                                                                                                                                                                                                                                  
## [4257] "The quintessential dilemma - in terms of style, should it be \"coronavirus\", \"COVID-19\", \"Covid\" or something else? I know that semantic consistency in external comms isn't exactly a priority at the moment but still"                                                                                                                                                                                                                                                                                 
## [4258] "@Dyson is making 15,000 #ventilators to help fight #COVID19 in the #UK and elsewhere\n\nhttps://t.co/R2L1syxHc6"                                                                                                                                                                                                                                                                                                                                                                                              
## [4259] "Our #CharityOfTheYear needs your support! \nMost of the funds generated from the @EmmausBurnley store goes to keeping the companions in a safe home. COVID-19 poses a significant risk as stores have had to close. Find out more: https://t.co/cdFMBXX8U8 #burnley #homelessness"                                                                                                                                                                                                                            
## [4260] "@firozyehya @hussain_imtiyaz @JmuKmrPolice Decades of conflct hv made us to nt trust each othr bt ths is d time wen v shd wok hand in hand.#COVID19 hs taught us mny thngs,let it teach us to trust each othr.times r scary, presure is mounting, bt v each othr hv 2 shw compasion  empathy n as public v have to folow fr own gud"                                                                                                                                                                          
## [4261] "Looking for ideas for ministry during the #coronavirus crisis? Look no further:-) Click and find our 23 #church tested ideas from @tnbaptist churches! CLICK&gt; https://t.co/Jsrocmmg21"                                                                                                                                                                                                                                                                                                                     
## [4262] "#covid19 #coronavirus #WuFlu per JHopkins', current cases US: https://t.co/e3fCKUrM28"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4263] "Does @MOH_Kenya plan to release #COVID19 cases broken down by age and gender @KRabera"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4264] "'Don't waste your time': Trump urges Pence not to bother calling Washington or Michigan governors https://t.co/6XA4NSI5Lw #News #Coronavirus via @dcexaminer https://t.co/fSOKbQit1G"                                                                                                                                                                                                                                                                                                                         
## [4265] "The cross-agency collaborative called the Economic Rapid Response Taskforce has created a clearinghouse for businesses to better answer your COVID-19 related questions. #NMEcon https://t.co/5NnE1Avcjn"                                                                                                                                                                                                                                                                                                     
## [4266] "Keep Fresno Beautiful is committed to the safety and well-being of its staff and volunteers. We are closely monitoring the COVID-19 pandemic. In the interest of public safety and out of an abundance of caution, we have decided to suspend all KFB events until further notice. https://t.co/DaAkDVmNuN"                                                                                                                                                                                                   
## [4267] "Another great thread to read on COVID-19: https://t.co/0nX7DZDddB"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4268] "My answer to How happy now is President Trump to make the USA number 1 in the world in the number of Corona virus COVID-19 infected 85,000 cases and rising? https://t.co/i5MsoQ5h4L"                                                                                                                                                                                                                                                                                                                         
## [4269] "@JustDnoes Have you been tested?  The real question, in that ANY of us could have COVID-19 and be asymptomatic at present, should be \"Is getting her stuff to Florida worth putting yourself and others at risk?\""                                                                                                                                                                                                                                                                                          
## [4270] "The @EPA is telling Corporate America there’s no sheriff in town. Using COVID-19 as an excuse to not enforce pollution regulations will increase the health risks of all Americans, especially vulnerable communities. \n\nAmplify this message! #EPADoYourJob https://t.co/QKsK73ko7H https://t.co/qKWdg4L0NN"                                                                                                                                                                                              
## [4271] "Great webinar last night with @jselingo @dianecamp6 @clark2college on College Search and COVID-19 - you can access the archive here #collegeadmissions https://t.co/hXTlDSl8G2"                                                                                                                                                                                                                                                                                                                               
## [4272] "sejournal : Pinterest Introduces ‘Today’ Tab With Focus on COVID-19 Related Content via MattGSouthern: https://t.co/GfvAIhEQcr \n\n#SMM #SocialMediaMarketing #DigitalMarketing https://t.co/Zy7VPMOS7U (via Twitter https://t.co/WMZqQtYZAF) https://t.co/7HBfMtWFYY"                                                                                                                                                                                                                                      
## [4273] "'Insurance Companies Provide Covid-19 focused plans' a story by our PG students Hita Prakash and Prafula Grace for Deccan Herald\n\nhttps://t.co/kTvXxkVElp"                                                                                                                                                                                                                                                                                                                                                  
## [4274] "Via @rockoftalk “Updated worksheet for the #CoronaVirus Daily Tracker as of 4pm of 3/26/20\nThe 3 Tabs are for the Following:\n-United States #Covid19 Stats Tracker\n-New Mexico Daily Tracker\n-State by State Comparison ranked by % of Tested Positive”    https://t.co/k7oN4GESwg"                                                                                                                                                                                                                     
## [4275] "For all my single followers:  #coronavirus https://t.co/UhWU4SXLhR"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4276] "WATCH: The women and men who may never become mums and dads due to #coronavirus.\n\nTonight on @itvnews at 10 I’ve been speaking to them about the devastation of having IVF cancelled, meaning some will miss their moment to conceive.\n\nThanks to all of them.\n\n https://t.co/X9kfnQkClO"                                                                                                                                                                                                              
## [4277] "Thank you @KarenAnnSantill and @CrossroadsRI for being on the front lines and ensuring that all Rhode Islanders have a safe place to stay during the COVID-19 pandemic. https://t.co/aookYYRqBB"                                                                                                                                                                                                                                                                                                              
## [4278] "Why is Georgia succeeding with the #Coronavirus where many Western countries are failing? https://t.co/Cq0DkHTQQj https://t.co/ZRFZEVIyuB"                                                                                                                                                                                                                                                                                                                                                                    
## [4279] "Sometimes in business it is not good to be sincere as long as you appear sincere. \n#COVID19 #business #startup"                                                                                                                                                                                                                                                                                                                                                                                              
## [4280] "https://t.co/oEq1EiL0NR Use Donor-Advised Funds to Support Community-Based Organizations During the COVID-19 Pandemic"                                                                                                                                                                                                                                                                                                                                                                                        
## [4281] "GitHub Trending Archive, 25 Mar 2020, Python. J535D165/CoronaWatchNL, COVID19Tracking/covid-tracking-data, coronasafe/care, hexway/r00kie-kr00kie, crinny/b0mb3r, turicas/covid19-br, KalleHallden/BookOmatic, datasets/covid-19, xuannianz/EfficientDet https://t.co/S4keH86sKo"                                                                                                                                                                                                                             
## [4282] "I wish the cops can use such force to fight corruption. What is role of @PoliceKE ? Protect &amp; serve or reign  terror. Is force meted out necessary @FredMatiangi @NPSC_KE . @MOH_Kenya will have more injury related case than covid 19"                                                                                                                                                                                                                                                                  
## [4283] "#LastingEffects of #SARSCoV2 #coronavirus \n2.  Less hand shakes means reduced likely hood of transmitting other diseases, less visits to the hospital and reduced healthcare costs. Will the elbow shake catch on? Cultural shifts in the works."                                                                                                                                                                                                                                                            
## [4284] "Don’t panic. This is almost certainly not reinfection. DNA amplification (PCR) tests could be falsely positive for #COVID19 if there’s lingering viral genetic material after the disease has subsided or from cross contamination in the lab. I’m not concerned. #CoronaUpdate https://t.co/jD6qEXBgM5"                                                                                                                                                                                                   
## [4285] "@GovCanHealth @CPHO_Canada This may be helpful to better screen people: https://t.co/PQlnkaBOxU"                                                                                                                                                                                                                                                                                                                                                                                                              
## [4286] "Bird lays off about 30% of workforce amid COVID-19 pandemic https://t.co/Epk7rinBRf"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [4287] "@heisyouknow_ @sportingintel Exactly. Fucking smug virtue signalling from a short sighted selfish UK electorate, already spreading their memes backing Boris despite his criminal negligence in dealing with COVID 19"                                                                                                                                                                                                                                                                                        
## [4288] "#coronavirus Tip\nNo \"Chop-chop\" in your written-during-the-pandemic script dialogue. Utterly f***ed-out. Also detectives named Jack.\n\n\"But 'Chop-chop' reveals character,\" you say. Well figure out a more interesting way.\n\nALSO - interviewees - quit saying \"That's a good question.\""                                                                                                                                                                                                          
## [4289] "I don’t drive &amp; if this was a campaign about environmental impact I might have some sympathy. However this is #CoronaVirus &amp; I can’t see any people risking higher transmission of #CoronaVirus.  \nThis looks like dangerous over reach. #PoliceState #Authoritarian. https://t.co/zMQL8epQdY"                                                                                                                                                                                                     
## [4290] "\"Coronavirus: US leads the world in number of confirmed cases\" #Coronavirus @Haquesahebppji https://t.co/cDVKCqYJ05"                                                                                                                                                                                                                                                                                                                                                                                        
## [4291] "COVID-19 and medical cannabis patients: What you need to know https://t.co/b5YVxTRLzz via @Leafly"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4292] "@netflix bigmouthnetflix #covıd19 #quarantine #bigmouth #bubblebath #hormonemonster #hormonemonstress #netflix #quarantineandchill #conniethehormonemonstress @ Fort Wayne, Indiana https://t.co/A9XiP13a5G"                                                                                                                                                                                                                                                                                                 
## [4293] "Unhinged D-List Actor @MichaelRapaport Michael Rapaport (<U+26A0><U+FE0F> graphic language) rant about https://t.co/WmDk1AWCKQ President Trump including his young son Barron in unthinkable foul tirad #Quarantine this lame #coronavirus #COVID2019 #michaelrappaport #BREAKING your ears #Unhinged https://t.co/ixgMBxm5P3"                                                                                                                                                                                
## [4294] "This is the most important article I've read thus far regarding COVID-19. Essential insight into the past, present and future of the pandemic. https://t.co/6DjNBtJyFP"                                                                                                                                                                                                                                                                                                                                       
## [4295] "Look at these hypocrites clapping their hands when all along u wanted to sell the NHS off. All along u voted for NHS multicultural staff to go back where we came from NOW YOU WANNA CLAP FOR US???? BITCH PLEASE!!!! \n#coronavirus"                                                                                                                                                                                                                                                                         
## [4296] "#USA #WashingtonDC #Coronavirus\n\nA rapid test has been approved in the United States, which is intended to detect infection with coronavirus within a few minutes.  The test kits were evaluated by a mobile laboratory that was only about the size of a toaster and"                                                                                                                                                                                                                                      
## [4297] "Are grocery stores and pharmacies vectors for the coronavirus? https://t.co/YMiIPWlX0Z"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4298] "Covid-19: Omar shares meme seeking essential services status for barbers https://t.co/9fRhUhk2Z1"                                                                                                                                                                                                                                                                                                                                                                                                             
## [4299] "How is everyone feeling about #POTUS #TRUMP #EO calling up 1M Military Reserves <U+0001F633> FOR USA \nMy fam is Military, something is up<U+0001F633>\nI don’t think it is JUST about #COVID19 #DeepStateCabal \n#StayAtHome #coronavirus \n#pray #PrayTogether <U+0001F64F><U+0001F3FC><U+0001F1FA><U+0001F1F8> https://t.co/KK9LpKMuz5"                                                                                                                                                                   
## [4300] "05-06) thoughts on the #clapforourcarers #SaglikcilariniAlkisla and the #coronavirus these days. may be a little #black yet #offensive https://t.co/sLZCcdgFmT"                                                                                                                                                                                                                                                                                                                                               
## [4301] "#breakingnews #remove #fake #nails #salon non #essentialbusinesses #nailtips #covid #coronavirus How to remove fake nails at home and more nail tips for coronavirus quarantine https://t.co/o2eZef3SYN via @nypost"                                                                                                                                                                                                                                                                                          
## [4302] "Some people aren't committing to social distancing. Top worldwide brands are supporting the campaign.\n\n#SocialDistancing #Corona #COVID2019 https://t.co/cij0n0EmKg"                                                                                                                                                                                                                                                                                                                                        
## [4303] "Turns out we don’t need to quarantine at all. COVID-19 can be stopped with essential oils and crystals! A girl on Instagram said so!"                                                                                                                                                                                                                                                                                                                                                                        
## [4304] "#Coronavirus #FightCOVID19 #India\nHow the World is Drawing inspiration from India. Must Watch<U+0001F447> \nhttps://t.co/v0rGgR13HJ"                                                                                                                                                                                                                                                                                                                                                                         
## [4305] "Expert in Cuba points home as a barrier to fight Covid-19 https://t.co/3qXo6L0chV"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4306] "Please @NYGovCuomo make sure any early release prisoners are either quarantined for 2 weeks or tested for #COVID<U+30FC>19  ! We have to stop the spread ! Thank you ! #testcovid19 #manditoryquarantine"                                                                                                                                                                                                                                                                                                     
## [4307] "<U+2066>@sidneychoccy<U+2069>\nCoronavirus (COVID-19): advice for people with animals - https://t.co/vlsOFm4uBz https://t.co/T8wA5PkOAr"                                                                                                                                                                                                                                                                                                                                                                      
## [4308] "@channelstv Why dem close market? \nAre they sending groceries to residents? \n#Covid_19 #COVIDIDIOT"                                                                                                                                                                                                                                                                                                                                                                                                         
## [4309] "Stocks fall as US Covid-19 cases overtake China https://t.co/1BRC84MD1d https://t.co/inezyVRtTv"                                                                                                                                                                                                                                                                                                                                                                                                              
## [4310] "Covid-19 teaches us that we are all global citizens connected by a single virus that recognises none of our natural or man-made diversity: not the colour of our skin, nor our passports, or the gods we worship. For the virus, what matters is the fact of our common humanity.#mathia"                                                                                                                                                                                                                     
## [4311] "Here is some happy thoughts about COVID-19 for Friday amid all the depressing news. https://t.co/6R1AgATrw3 #covid19 sort of #funfriday https://t.co/DuXMYTthad"                                                                                                                                                                                                                                                                                                                                              
## [4312] "There always has to be that one guy who ruins it for everyone. #COVID19 #coronavirus https://t.co/xVRpVGX220"                                                                                                                                                                                                                                                                                                                                                                                                 
## [4313] "#NHSCovidHeroes why on earth has #PrinceCharles been given a covid 19 test and yet there’s working heroes frontline who can’t access tests?!"                                                                                                                                                                                                                                                                                                                                                               
## [4314] "@erniehardeman Please explain how you are going to prevent the spread of #COVID19 when you are allowing 50K migrant workers into the country.They won’t quarantine and they won’t social distance.Where will the oversight and enforcement come from? Farmers are in it for the money,they won’t comply"                                                                                                                                                                                                   
## [4315] "All things being equal, I should be getting ready to rub the legs and crack the backs of some hairy footballer’s in Galway around about now but COVID-19 has put paid to that. I miss football  #DeTown"                                                                                                                                                                                                                                                                                                     
## [4316] "Today’s lunch time. I thought about working out lol. #stayhome #covid19 #fortworth #texas #817 #homegym #lift @ Fort Worth, Texas https://t.co/EiXLaw22Hh"                                                                                                                                                                                                                                                                                                                                                   
## [4317] "'This isn't something you want to get': Saskatoon man details what it's like to get sick from COVID-19\nhttps://t.co/6KE843bbHx https://t.co/eS47psjvIc"                                                                                                                                                                                                                                                                                                                                                      
## [4318] "COVID-19 (Coronavirus) PTA Resources - Family Resources | National PTA: https://t.co/HfKqohJPc1"                                                                                                                                                                                                                                                                                                                                                                                                              
## [4319] "Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/bjg7xRv3Fk"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4320] "Google is offering up its own stimulus package to advertisers https://t.co/KT8dPwXxqB"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4321] "How has your medical team been using #telehealth in the wake of #COVID19?  \nLearn more about modmed Telehealth at https://t.co/4foJirsaY4\n\n*modmed Telehealth is a feature of Modernizing Medicine's #EHR software, EMA."                                                                                                                                                                                                                                                                                  
## [4322] "#Trump could be heading for genocide of his own people because they failed to act. Even now they’re dithering.\nHe &amp; his government could have prevented this!\nWhy didn’t they? It all boils down to <U+0001F4B0><U+0001F4B0><U+0001F4B0>above lives. <U+0001F621><U+0001F621><U+0001F621>\n\nI’m aghast. <U+0001F62A>\n\n#iCOVID19 #COVID19usa #POTUS #Coronavirus https://t.co/4YbngKr7dx"                                                                                                          
## [4323] "If Covid-19 didnt fuck things up, i would be drunk at MMP right now"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [4324] "Dark clouds emerges #Covid__19 k9 scanning........central fusage ejected.....Thunder, lightning....... https://t.co/EJM0GpFZow"                                                                                                                                                                                                                                                                                                                                                                               
## [4325] "I'm having a rave with my #kittys #meow Charlie says <U+0001F37B><U+0001F923><U+0001F923><U+0001F923><U+0001F923>#bored #COVID19 #COVID_19uk #funny #rave #cats https://t.co/SZUdrgjVmL"                                                                                                                                                                                                                                                                                                                      
## [4326] "Israeli siege imposed on Gaza increases the suffering every day. Is there who hears their suffering? #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/p8DUQ5EHqA"                                                                                                                                                                                                                                                                                                                                    
## [4327] "We hope the Susan B. Anthony list uses their nifty new Lancet access to read all the papers that say ABORTION IS SAFE. #ChooseHope #coronavirus"                                                                                                                                                                                                                                                                                                                                                              
## [4328] "@louanity Well sneezing isnt reely a covid 19 thing its just normal your fine"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4329] "Probably not doing my #COVID19 pneumonia and other health problems any good, but am VERY angry looking up how many 1000s of people in the UK die each year from: car crashes, smoking, alcohol abuse, domestic violence etc and this Tory government has slashed the #NHS for TEN YEARS."                                                                                                                                                                                                                     
## [4330] "Because @realDonaldTrump didn't prepare he's now suggesting doing drug testing on  Americans who are 'dying' from #COVID19 &amp; use them as Guinea pigs! \n#TrumpKnewDidNothing"                                                                                                                                                                                                                                                                                                                             
## [4331] "Even cats can do it.\n\n#coronavirus #COVID2019 #SocialDistance https://t.co/CWDBrulFFB"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4332] "“We need to stay connected, even though we are social distancing,” says Dr. Bonnie Henry. #bcpoli #COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                    
## [4333] "Friends I realised why economic, Political &amp; centers of China is not effected from COVID-19\n#BoycottChineseGoods #IndiaVsCorona #India @PMOIndia @narendramodi @AmitShah @News18UP @ANI @timesofindia @PTI_News"                                                                                                                                                                                                                                                                                         
## [4334] "If this is so recent... well, 1) Rihanna still hasn't forgot how to sing somehow 2) it's disaster cuz it means only covid-19 quarantine made Rihanna go back to studio... we doomed lol"                                                                                                                                                                                                                                                                                                                      
## [4335] "Plz join with @WHO #SafeHands<U+00A0>challenge! Hand washing is one of the vital precautions to stay safe from  #COVID19. My humble request @KChiruTweets  @pragyanojha @pranabpdas @awasthis @dr_maheshsharma to join the #SafeHands<U+00A0>challenge &amp; plz share a video. #StayHomeSaveLives https://t.co/HUxC46V0Om"                                                                                                                                                                                   
## [4336] "This week, designers created objects and structures to help fight coronavirus \"\n\nThis week on Dezeen, Carlo Ratti designed an intensive care unit for Covid-19 patients from shipping containers and Dyson prepared to provide 15,000 ventilators for the NHS.… https://t.co/LNTxzBaFtJ https://t.co/zKBM2OKYKN"                                                                                                                                                                                          
## [4337] "I really wish I hadn’t skipped my hair appointment when I had it a few weeks ago. \n #coronavirus #CoronaLockdown https://t.co/dHJ7onTdK9"                                                                                                                                                                                                                                                                                                                                                                   
## [4338] "[New blog] The role of #HR #technology in light of COVID-19: A letter from Leoforce https://t.co/haKINOBpHx https://t.co/eRLpjSrfq8"                                                                                                                                                                                                                                                                                                                                                                          
## [4339] "COVID-19: Sound Sultan Gets Creative, Holds Album Listening Party On Instagram Live - https://t.co/2YxqQ4R1Df https://t.co/grJR0QLoJV"                                                                                                                                                                                                                                                                                                                                                                        
## [4340] "Capitalism Has its Limits:\n\nJudith Butler discuss the COVID-19 pandemic, and its escalating political and social<U+00A0>effects in America.\nhttps://t.co/svjeD6h3Fh"                                                                                                                                                                                                                                                                                                                                       
## [4341] "I fought boko haram while naked so am scared of #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4342] "An awful lot of people have little understanding of:\nA/ risk and what it means to minimise it\nB/ how minimising #COVID2019 requires us *all* to accept we have our part to play\nC/ The guidance is so simple yet not to be followed. #StayHomeSaveLives https://t.co/pyQgBV5O9Q"                                                                                                                                                                                                                           
## [4343] "#Joke by Anders1984. This is a well thought out joke. #coronavirus https://t.co/sVOTyeIhcF"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [4344] "i cant get his d word inside my a word cause of this quarantine and covid-19. i literally hate it here sm"                                                                                                                                                                                                                                                                                                                                                                                                    
## [4345] "Glad to see this leadership from @bcbcgreg , @jockfinlayson , and everyone at the @BizCouncilBC.\n\nhttps://t.co/zI4Jhm83fM https://t.co/zXdme0jSKJ"                                                                                                                                                                                                                                                                                                                                                          
## [4346] "60% of the health facilities in #Yemen went out of service due to direct targeting by US-Saudi airstrikes, which killed many patients. You can imagine the catastrophe if Saudi was able to enter #Coronavirus to #Yemen! #5YearsOfWarOnYemen https://t.co/jNhBuwoKA9"                                                                                                                                                                                                                                        
## [4347] "Some of you still think this a a joke or just a flu <U+0001F912>? People are dying everyday, why can’t y’all stay at home, forget about going to the beach etc. Look at Italy <U+0001F1EE><U+0001F1F9> <U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D> 919 people died. This sh*t is real. Stay at home please #COVID19 #StayAtHomeAndStaySafe #Italy https://t.co/1dIqTMPv4U"                                                                                                                             
## [4348] "Heartened today by @UnitedWay of Illinois &amp; the Alliance of Illinois Community Foundations coming together to launch the Illinois COVID-19 Response Fund, a statewide fundraising effort to uplift nonprofits that support Illinoisans who have been impacted by this pandemic. https://t.co/82CyRHbvM2"                                                                                                                                                                                                  
## [4349] "CA Bridge Report: Supporting Hospitals and MAT in the time of COVID-19 - https://t.co/n3YEKULIz5 https://t.co/4yRFBqrEc2"                                                                                                                                                                                                                                                                                                                                                                                     
## [4350] "@mekus102 @Amakaokolidd @denniso_igbin Oga.\n\nEes like you want me to send COVID-19 commandos to your house ba? <U+0001F928>"                                                                                                                                                                                                                                                                                                                                                                                
## [4351] "@Junichi_Masuda Hope you like it. I have 100+ medallions. https://t.co/SVPRdt3lRI #starmie #staryu #rainbow #mandala #logo #patterns #love #COVID19 #pokemon https://t.co/G8YEmgLxgf"                                                                                                                                                                                                                                                                                                                         
## [4352] "I am hosting a virtual Town Hall on #COVID19 this Saturday at noon. Visit the Facebook event page for details on how to participate and submit questions: https://t.co/4S7XKYqt6Z"                                                                                                                                                                                                                                                                                                                            
## [4353] "BREAKING: 3rd person dies of virus in state; gov announces $116M plan to support health care providers. Full story: https://t.co/335P6nWzRg https://t.co/DKYloiGivg"                                                                                                                                                                                                                                                                                                                                          
## [4354] "Boxing gyms have been hit hard by COVID-19 shutdowns - The Ring https://t.co/0YZgtVRieG #Boxing @oysterbaybomber"                                                                                                                                                                                                                                                                                                                                                                                             
## [4355] "Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/ZHe8wTcVm9"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4356] "@ashokpathak1604\nSir, today's guidelines regarding COVID-19 pandemic are much appreciable, I have no words to thank u for ur compassion towards our BOI Staff.\n@mkg_boi @amandilwar \n#IndiaFightsCorona \n#Proudpublicservant \n#StayHomeStaySafe"                                                                                                                                                                                                                                                         
## [4357] "B.C. egg, chicken farms facing down challenge of COVID-19 https://t.co/IjglljN44w"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4358] "The Infowars app sold products like supplements and protein powder, broadcast The Alex Jones Show live, and posted videos and articles from Jones and others.”\n#COVID<U+30FC>19\n#MurderForProfit\n#WealthOverHealth"                                                                                                                                                                                                                                                                                       
## [4359] "Look guys it's not ideal for everyone the shutdown but if it saves lives and slows the growth of this f#@%ing disease #COVID19. 2 weeks is not a lot to ask and will be 100% worth it let's all do this together #proudtobeirish <U+0001F1EE><U+0001F1EA><U+0001F4AA><U+0001F4AA>  #LetsDoThisTogether"                                                                                                                                                                                                       
## [4360] "Top story: Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/NA0iq36xBZ, see more https://t.co/aIHishjAHg"                                                                                                                                                                                                                                                                                                                                                  
## [4361] "Selling in COVID-19: How to Talk to Prospects in the Bleakest of Times https://t.co/6kAJzCsRXW https://t.co/IJPJYaJ6zz"                                                                                                                                                                                                                                                                                                                                                                                       
## [4362] "These are real people imprisoned for cannabis that are at risk during this #COVID19 pandemic  #cannabisjournalism https://t.co/vMcMfdHjtf"                                                                                                                                                                                                                                                                                                                                                                    
## [4363] "How can you support the travel industry?\n\n1. Postpone your trip but NOT cancel it\n2. Buy a travel certificate for your future travel plans\n3. Support them on social media\n4. Refer business to them\n5. Send your love &amp; thank you notes!\n\n#covid-19 #covid19 #coronavirus https://t.co/FY1Ms41Sqr"                                                                                                                                                                                               
## [4364] "Provide feedback on problems faced by people due to COVID-19 outbreak: PM tells RJ \nhttps://t.co/NLn9JfDBvJ\n\nvia NaMo App https://t.co/4sAvgveGuk"                                                                                                                                                                                                                                                                                                                                                         
## [4365] "If there is a baby boom in 9 months...it'll consist entirely of first born kids! <U+0001F62C>\n\n#coronavirus #CoronaLockdown #WorkFromHome"                                                                                                                                                                                                                                                                                                                                                                  
## [4366] "Manufacturing #virus as #bioweopon is 10000 time more difficult than making vaccine. US and EU are struggling to make #vaccine for #COVID19. As time passes hope is bcming dimming &amp; economic collapse bcm inevitable. China will rise leader if not as superpower\n@Praecursator007"                                                                                                                                                                                                                     
## [4367] "Our nation Clapped for our @NHSuk to thank them for everything that they are doing for us and everything they always do for us! #thankthenhs #nhs #thankyounhs #covid19 this will be the hardest time for our planet, we need to appreciate those who help us https://t.co/A9bL1QeVB0"                                                                                                                                                                                                                        
## [4368] "@anyaparampil Me trying to figure out what #Venezuela has the United Atates May need/want to pull a  #Noriega in the middle of a damn #pandemic \n\n#TrumpMadness #TrumpVirus #TrumpRecession #TrumpVirusCoverup #TrumpIsTheVirus #TrumptheWorstPresidentEVER #coronavirus #COVID19 https://t.co/tHetp8mDAx"                                                                                                                                                                                                  
## [4369] "If your employer says you’re being ‘#Furloughed’, this means they’re using @GOVuk's new '#CoronaVirus Job Retention scheme' <U+0001F4BC>\nYou can read more about the scheme on the @CitizensAdvice website\nhttps://t.co/9ltojYG3KW https://t.co/hCrAF0bUu9"                                                                                                                                                                                                                                             
## [4370] "@paanagam @Thiraivimarsaga That’s going to be after #COVID19 Chaos... for that people have started money now..."                                                                                                                                                                                                                                                                                                                                                                                             
## [4371] "Epidemiologist Behind Highly-Cited #Coronavirus Model Drastically Downgrades Original 2.2 Million US &amp; 500,000 UK Death Toll Projection | Oxford professor suggests fewer than 1 out of 1000 infected become ill enough to require hospitalization. #COVID19 https://t.co/6hkffMl2IS"                                                                                                                                                                                                                     
## [4372] "#BREAKING: Governor Andrew Cuomo says deaths from the #Coronavirus are up from 385 to 519 in New York State, that’s 134 new deaths. #BreakingNews"                                                                                                                                                                                                                                                                                                                                                           
## [4373] "@kumar856 That's why china influenced #WHO to change its name from Chinese #WuhanVirus to #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                           
## [4374] "Am commending the #NEWS @tvcnewsng @channelstv @CNN and a few others for given we the people an update on this deadly #COVID19. I pray may God help us all. #StayAtHomeAndStaySafe #StaySafeNigeria"                                                                                                                                                                                                                                                                                                          
## [4375] "Today #NYC #COVID19 https://t.co/7OmIGhiwD8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4376] "BARDA: Athersys' Cell Therapy “Highly Relevant” for COVID-19 https://t.co/bosApC3MSU https://t.co/GaIMOxQDgp"                                                                                                                                                                                                                                                                                                                                                                                               
## [4377] "Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/xnpyhdJpW2"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4378] "Robert E. Kelly <U+2014> and his rambunctious kiddos <U+2014> returned to TV to offer some much needed comedic relief during the COVID-19 pandemic. https://t.co/SPM0QgHroP"                                                                                                                                                                                                                                                                                                                                  
## [4379] "#BREAKING #COVID19 Just passed the 100K Mark in the US https://t.co/Wc6BUARx17"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4380] "I hate quarantine. I have no structure in my day to day life without going to school. I cant focus myself enough to get this shit done. Fuck COVID-19!"                                                                                                                                                                                                                                                                                                                                                       
## [4381] "North Carolina now has more than 760 cases of COVID-19, including one staffer at the federal prison complex in Butner. Two more Granville citizens have tested positive. \nhttps://t.co/fD2OMTiGqd"                                                                                                                                                                                                                                                                                                           
## [4382] "Bill Gates: Trump's plan to reopen the country 'will not work' https://t.co/S4CoggyW19"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4383] "The multiplier effect of the Chioma case will definitely increase the #Covid19 in Nigeria. Days ago, she was at a party."                                                                                                                                                                                                                                                                                                                                                                                     
## [4384] "What we're all doing in isolation. #COVID19 #AnimalCrossing #ACNH #NintendoSwitch #isolation #lockdown https://t.co/nr3UyaNt11"                                                                                                                                                                                                                                                                                                                                                                               
## [4385] "“Everything that happens only once can never happen twice. But everything that happens twice will surely happen a third time.” (Paul Coehlo). 2008 crisis and Covid-19. Prepare for the next disruption!\n#Galaxies #AgileManagement #Management #Leadership https://t.co/I2m1kvTcq5"                                                                                                                                                                                                                       
## [4386] "Rihanna Donates Personal Protective Equipment to New York for COVID-19 Outbreak https://t.co/Fg7IjXOc7d"                                                                                                                                                                                                                                                                                                                                                                                                      
## [4387] "Global community/government already did have a chance: WHO\n\nWHO =World Health Organization \n\nIt said on January 14th that #coronavirus wasn't a problem.  \n\n#COVID2019 #COVID<U+30FC>19 #coronavirus #COVID19 #WuhanVirus #WuhanFlu https://t.co/s6UxgrlcX8"                                                                                                                                                                                                                                            
## [4388] "The provincial government announced some big changes Friday as the number of confirmed COVID-19 cases rose to 542 in Alberta. https://t.co/x8goSxZRnU"                                                                                                                                                                                                                                                                                                                                                        
## [4389] "...not everything.\n\n#Lockdown21 #COVID2019 #ChineseVirus19 #IndiaBattlesCoronavirus #QuarantineLife #StayHomeSaveLives https://t.co/N3HYQyC1oJ"                                                                                                                                                                                                                                                                                                                                                             
## [4390] "House erupts after lawmaker’s COVID-19 speech goes totally off the rails (We will not be silenced!) https://t.co/Hwon4V1gLL"                                                                                                                                                                                                                                                                                                                                                                                 
## [4391] "What the f***?!\n#COVID19\n#CoronaLockdown https://t.co/CQtmISBj7N"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4392] "@abcnews One day of marginally lower number this early is hardly pointless\nThe infectious nature of #COVID2019 = the #Contagion will spread far &amp; wide while population mobility happens.\n#StayHomeAustralia #StayHomeSaveLives"                                                                                                                                                                                                                                                                        
## [4393] "My life is nothing but a monster set of nested if-then-else statements and it boggles my mine when people don’t approach things in the same way. The development of the skills to apply a simple deductive reasoning in any situation is sorely missing in our curriculums. #COVID19"                                                                                                                                                                                                                        
## [4394] "Covering the Blue needs you. So many officers &amp; K9s wounded/injured lately, not to mention the #coronavirus. If you can help, please contact us. #CoveringtheBlue #liftinguplawenforcement"                                                                                                                                                                                                                                                                                                               
## [4395] "ICYMI: We had a fantastic Grand Rounds this morning with Pulmonary/Critical Care experts from #MGH, @BIDMChealth, and @BrighamWomens discussing the respiratory aspects of #COVID19. You can watch it here: https://t.co/M6XoXDexWF"                                                                                                                                                                                                                                                                          
## [4396] "Ford Strikes Back At Coronavirus By Restarting Production. These are the plants COVID-19 won't stop. #covid19 #industrynews #trucks Read: https://t.co/iCRL8DA0ay https://t.co/R0wQ9O4zrx"                                                                                                                                                                                                                                                                                                                    
## [4397] "When you hit the blunt too hard and dont want to cough because of COVID-19 https://t.co/0gOU2Vkzvd"                                                                                                                                                                                                                                                                                                                                                                                                           
## [4398] "Video: Santa Monica Pier sits completely empty amid COVID-19 pandemic | ABC News\nhttps://t.co/ukhBo9PRLF"                                                                                                                                                                                                                                                                                                                                                                                                    
## [4399] "@BorisJohnson What now? Statutory sick pay? 94.25£ per week? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4400] "We’ve welcomed the ‘positive intent’ of the #selfemployment #coronavirus package announced by the Government. It will provide reassurance to many. But the detail is key for those in London that account for around 20% of the UK’s self-employed. Our CEO @RichardDABurge has (1/2) https://t.co/hGLGMK8Teq"                                                                                                                                                                                            
## [4401] "@AirCanada  @AirCanadaRouge #acft parked at #yyz @TorontoPearson on taxiway waiting for #COVID19 to be beaten. #stayhome #avgeek https://t.co/w8366aW1iJ"                                                                                                                                                                                                                                                                                                                                                     
## [4402] "#CISO's must consider #COVID19-related ramifications on a large scale and not lose sight of #cybersecurity roadmaps, which actually simplify #WFH choices. https://t.co/j5wT6mDjZH https://t.co/AXiH3uVmtV"                                                                                                                                                                                                                                                                                                   
## [4403] "No evidence against #Ibuprofen in #COVID-19 infection https://t.co/zzqmY0q0AQ"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4404] "If Baudrillard is correct then Covid-19 is actually a computer virus ;)"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4405] "The past few weeks have been tough for a lot of people, but it's also been a time of kindness, where people are donating their time, money and resources to others without hesitation.\n#kindness #reno #biggestlitlecity \nhttps://t.co/4M1oR1a6Md"                                                                                                                                                                                                                                                          
## [4406] "@cincykids Just like everything else we won't take it seriously until it hits us personally. The lagged response time allowed us to witness how fast a pandemic can spread concealed within the everyday flow of our globalised ecosystem. \n\n#Covid19\n\nhttps://t.co/mVrYjtEJu1"                                                                                                                                                                                                                           
## [4407] "@AskAnshul Muslims are more threat to our country. majority of infected and effected Covid-19 cases are from Muslim community. https://t.co/NYdF0dU2To"                                                                                                                                                                                                                                                                                                                                                       
## [4408] "Community transmission in Pakistan. \n'10pc of Covid-19 cases in Sindh are locally transmitted': CM Shah sounds alarm https://t.co/TsbGYrI4oC"                                                                                                                                                                                                                                                                                                                                                                
## [4409] "President Nana Akufo-Addo gives his fourth update to Ghanaians on the country's fight against COVID-19. Watch on Citi TV's Facebook page here: https://t.co/PlcZTsSQwi"                                                                                                                                                                                                                                                                                                                                       
## [4410] "It’s devastating we need this because the #TrumpVirusCoverup wouldn’t acquire testing in time for the prevention of this crisis. Thanks to our Nationa Guard for their tireless work. Terrified for our healthcare workers who are fighting #coronavirus w/out proper protection https://t.co/UITbrb3XL9"                                                                                                                                                                                                   
## [4411] "Live look at my house until #coronavirus is gone https://t.co/ao5bYGKpue"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4412] "And if I were Bill Gates here's how much I would spend to combat COVID19: $50 billion https://t.co/xIgtMaL7wC"                                                                                                                                                                                                                                                                                                                                                                                                
## [4413] "@ZiyanJunaideen @TheGrumpyLankan @DulithHerath It's not China virus <U+0001F611> it's coronavirus or Covid-19"                                                                                                                                                                                                                                                                                                                                                                                                
## [4414] "Even amid #Coronavirus pandemic outbreak &amp; the increasing death toll, the US continues its full blockade on #Yemen and its sanctions on #Iran!!\nIsn't this inhumanity enough to prove whose the real criminal behind developing #COVID19? #5YearsOfWarOnYemen https://t.co/g7TZjynB1p"                                                                                                                                                                                                                   
## [4415] "@Cajunwealth @JoeBiden He’s really saying if you don’t bow down to me and praise me, then you and your state will suffer. People with #COVID19 will lose their lives with this attitude. National embarrassment and very sad."                                                                                                                                                                                                                                                                              
## [4416] "Pinterest provides some tips on how brands should approach promotions amid the COVID-19 pandemic https://t.co/sA6YT8KAPs"                                                                                                                                                                                                                                                                                                                                                                                     
## [4417] "13 years from now gonna be a ton of #Quaranteens running around.\n\n#CoronaLockdown #COVID19\n#dadjoke\n\nhttps://t.co/K1KpsQCTr3"                                                                                                                                                                                                                                                                                                                                                                            
## [4418] "@BaneleRadebe7 Stay safe from this Covid-19 my angle. God bless.<U+0001F493>"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4419] "Where is Nigel? #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4420] "Something to get ur mind off #Covid19. No matter how much u Rewatch this, u still get the same reaction <U+0001F923><U+0001F602><U+0001F92A> Goodluck! https://t.co/LE9grJqc5I"                                                                                                                                                                                                                                                                                                                               
## [4421] "COVID-19: City of Vancouver to provide update on coronavirus impacts https://t.co/FkqDtlqdnm"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4422] "If you are feeling hopeless about the Covid-19 situation right now, my header will surely brighten your mood. Check it.\n#CurfewKenya"                                                                                                                                                                                                                                                                                                                                                                        
## [4423] "David Walsh creator of MONA always a unique perspective -here’s his statement about COVID-19  #closingMONA #CultureinQuarantine   https://t.co/YVNxCjQgyG  @monamuseum"                                                                                                                                                                                                                                                                                                                                      
## [4424] "How hackers are using COVID-19 fears to push new scams and malware https://t.co/aGa3kT3DjO https://t.co/SCjmgFNqTj"                                                                                                                                                                                                                                                                                                                                                                                           
## [4425] "Public gyms are being asked to either scale down or cease their operations, as the gov't continues to implement restrictions in a bid to contain the spread of COVID-19 across the island  \nhttps://t.co/KwawLvsOgo"                                                                                                                                                                                                                                                                                         
## [4426] "@Poundland I am self-isolating and my manager wants to give me a week paid holiday while I'm not on holiday! I don't want to waste my holiday!\nWhat should I do? I am sick with the symptoms of #coronavirus"                                                                                                                                                                                                                                                                                                
## [4427] "Washington Gas is proud to announce our new campaign #PositiveEnergy! We want to thank YOU<U+2014>the unsung heroes who are working on the front lines during the #COVID19 crisis. From educators to delivery workers, join us to say thank you and help send some #PositiveEnergy to others. https://t.co/9chmKhQp5R"                                                                                                                                                                                        
## [4428] "@LizRNC @nytimes This is true only if you believe the liying communist Chinese government. #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4429] "How many tests for COVID-19 are being performed around the world? https://t.co/22wyCi7Tb1 https://t.co/PpHEQtX9Mi"                                                                                                                                                                                                                                                                                                                                                                                            
## [4430] "Oliphant said Global Affairs has gone from an average of 6,000 consular cases per year to hundreds of thousands during the #COVID19 response. He credits DM Marta Morgan for making the department more nimble and public facing than ever. #cdnpoli #cdnfp"                                                                                                                                                                                                                                                  
## [4431] "@LHSummers This is how to recognize the people for whom it is safe to go back to work. https://t.co/GLFqClAkIV"                                                                                                                                                                                                                                                                                                                                                                                               
## [4432] "Scomo just announced that the 10 second rule doesn’t apply unless you’re at K-mart on a Tuesday arvo. Or you’re observing the new 6 second rule. #scomo #auspol #covid19 #coronavirusaustralia #corona"                                                                                                                                                                                                                                                                                                    
## [4433] "Does #coronavirus know about this march 29th 7:02 pm deadline? https://t.co/9xMpmYTrzP"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4434] "At least everyone’s weekends suck now, not only #entrepreneurs. We never had any. Happy Friday! \n\n#COVID19 #TGIF #CoronaLockdown #startup #founder #CovidBroke"                                                                                                                                                                                                                                                                                                                                            
## [4435] "@harrisonlowman @TheAgenda Thanks for the shout-out, @harrisonlowman. You guys @TheAgenda are doing a great job keeping Ontarians up-to-date with accurate and concrete information about #COVID2019. Please remind everyone to #StayHome if they can and stay safe."                                                                                                                                                                                                                                         
## [4436] "First Vancouver community centre opens to protect homeless from COVID-19 https://t.co/NlSv63oB0W"                                                                                                                                                                                                                                                                                                                                                                                                             
## [4437] "@MikeTaylorShow Hey Mike!  Don't forget, according to Clay, more people die every year on the road ways than Covid 19. So stop your bitching.  (sigh)"                                                                                                                                                                                                                                                                                                                                                        
## [4438] "@WHOPakistan @UNICEF this is true #Pakistan\n#Peace #loving #caring and #fighter\n#COVID2019 #Covid_19 https://t.co/zBAcpYemLq"                                                                                                                                                                                                                                                                                                                                                                               
## [4439] "@KatyTurNBC It looks like a cure for #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4440] "Local Twitter: For 10 years, I've been working with the Ardmore Food Pantry to help deal with food insecurity on the Main Line -- COVID-19 is making our job harder and putting more in need.  Please support us if you can.  https://t.co/P7S7gfM3dV"                                                                                                                                                                                                                                                        
## [4441] "Latest figures for #coronavirusitalla dispiriting. Surge in new positives in Lombardy lifts the national increase to 6153: the highest rise since Saturday. Numbers in hospital up 6.6% in a day. #COVID19 #italy #Italia"                                                                                                                                                                                                                                                                                    
## [4442] "‘Times are tough’: Residents flock to pop-up food bank in Santa Rosa amid COVID-19 crisis https://t.co/R9QNUk2bLJ"                                                                                                                                                                                                                                                                                                                                                                                          
## [4443] "Vogue Arabia pays tribute to all the medical staff and healthcare workers in Lebanon fighting the battle against Covid-19, with an exclusive portfolio. These are their stories. #StayHome https://t.co/54f4vTOQic"                                                                                                                                                                                                                                                                                           
## [4444] "NC House Select Committee on #COVID19 will not hold in-person public comment due to current health conditions. Committee instead invites remote participation by sending suggestions &amp; concerns through comment portal: \nhttps://t.co/t37Y3qezQ0\n\n@ncIMPACTsog @uncsog"                                                                                                                                                                                                                                
## [4445] "Larry Rasky, long time Biden aide, died of coronavirus- see his recent  Twitter feed #COVID19 https://t.co/Ahsg34BDja"                                                                                                                                                                                                                                                                                                                                                                                        
## [4446] "Great for you @brikeilarcnn !!! I wish the rest of the media would not accept the bullshit coming out of the White House. Keep up the great work!!  #couldahadyang #YangWasRight #COVID2019 https://t.co/sSVDCJqfln"                                                                                                                                                                                                                                                                                          
## [4447] "Two Saskatoon correction officers test positive for COVID-19 #yxe https://t.co/3QdT2iGqOD"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4448] "@Wavinya_Ndeti @Asamoh_ Yes madame Governor, What measures have you put in place to safe your Machakos people from #COVID19, as their Governor? And are working hand in hand with MOH to reinforce your efforts ?"                                                                                                                                                                                                                                                                                            
## [4449] "Dr. Birx Claims Trump Is ‘Attentive to the Scientific Literature and the Details’ of Covid-19 https://t.co/8fWrOKKUOd https://t.co/DkJf0bInBx"                                                                                                                                                                                                                                                                                                                                                              
## [4450] "'Vaccines won't work': US virologist breaks down COVID-19, how to curb s... https://t.co/FlcwDu5XGM via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                             
## [4451] "Any nose <U+0001F443> or mouth <U+0001F444> here<U+0001F637>??\nLadies your overgoing your flexibility limits\nLess fight Covid-19..cover your nose and mouth...leave breasts alone we shall see them later<U+0001F602> https://t.co/CWucdtBbXt"                                                                                                                                                                                                                                                              
## [4452] "\"Coronavirus: US leads the world in number of confirmed cases\" #Coronavirus https://t.co/ne5UHsaQ6t"                                                                                                                                                                                                                                                                                                                                                                                                        
## [4453] "Hear @GovAndyBeshear's daily #COVID19 update for Kentucky today at 5 on @840WHAS &amp; https://t.co/PsGI0GRrPj. https://t.co/sjX9O78wg1"                                                                                                                                                                                                                                                                                                                                                                      
## [4454] "Updated COVID-19 area briefs:\n\nhttps://t.co/wEVeoVsL7s"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4455] "Head of TSA workers union  in Knoxville, is ill and had contact w/ man who tested positive for COVID-19. \n\nHowever, he still cant tested - @tatecurtis has the story https://t.co/84AYUgEc5o"                                                                                                                                                                                                                                                                                                               
## [4456] "I am now an #MBRUCommunityImmunity Ambassador. I am responsible to protect myself and my community from #COVID-19. https://t.co/2e5qNPEhbL"                                                                                                                                                                                                                                                                                                                                                                   
## [4457] "@MENnewsdesk One thing #COVID19 has taught me is that there really are selfish c###$ out there <U+0001F92C>"                                                                                                                                                                                                                                                                                                                                                                                                  
## [4458] "Stupid kenyan police teargas citizens unprovoked,shoot in the air and clobber them carelessly,people run over each other,hold and touch one another and falling over,coughing and yelling,is that not aiding in the spread of corona #COVID19 while enforcing #CurfewinKenya"                                                                                                                                                                                                                                 
## [4459] "Covid-19 isn't a joke guys<U+0001F62D><U+0001F62D><U+0001F62D>"                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4460] "The county’s total is now at 93 cases of COVID-19. https://t.co/oQGwwjPzSI"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4461] "Times like this is when I don’t understand why we don’t pay our scientists and healthcare workers like professional athletes #pandemia #COVID2019"                                                                                                                                                                                                                                                                                                                                                          
## [4462] "Is it just me or does anyone else hear Waylon Jennings singing the Dukes of Hazard theme whenever they talk about flattening the curve? #COVID19"                                                                                                                                                                                                                                                                                                                                                             
## [4463] "@profplum99 @mattwridley Per usual, beat the curve. Viruses aren't. Those potentially crafting them are. #COVID19\n#coronavirus\n\nhttps://t.co/qBRM6EjdiS"                                                                                                                                                                                                                                                                                                                                                   
## [4464] "The worst part about having a profile that celebrates actively contracting a potentially deadly disease is that I can't say shit to people acting unnecessarily recklessly during a pandemic.\n\n#hypocrite #covid19"                                                                                                                                                                                                                                                                                         
## [4465] "#ICYMI: Sencorp modifies thermoforming machines for face masks during #COVID<U+30FC>19.  Learn more: https://t.co/1o72ttEvym https://t.co/4muDYJDy3X"                                                                                                                                                                                                                                                                                                                                                         
## [4466] "Someone I know thinks it’s no big deal to “have a few friends over” during the Washington State “stay at home” order.\n\nPlease, tell me what your thoughts are, and be blunt.  #COVID #Covid19usa #coronavirus"                                                                                                                                                                                                                                                                                         
## [4467] "How do you \"Stay Home, Stay Healthy\" without a home? Here's how @LIHIhousing is keeping the homeless healthy in #Seattle via @theappeal https://t.co/pVODrRne2x by @jaywillis"                                                                                                                                                                                                                                                                                                                              
## [4468] "These grants will address the anticipated food and essential supply needs -- and they're also helping kids with childhood cancer. https://t.co/QaI2ZrqUG0"                                                                                                                                                                                                                                                                                                                                                    
## [4469] "To prevent infection and to slow transmission of COVID-19, do the following:\n\nWash your hands regularly with soap and water, or clean them with alcohol-based hand rub.\nMaintain at least 1 metre distance between you and people coughing or sneezing.\nAvoid touching your face. https://t.co/p2JDCsu55b"                                                                                                                                                                                                
## [4470] "Can we get this put on the t-shirt! “At some point a library is going to save your ass,” Brixey says. “As long as you keep a library central to your life, you will always see how relevant it can be.” HT @ALALibrary  https://t.co/TthhqfRtiv"                                                                                                                                                                                                                                                          
## [4471] "I just miss my mom like yeah we FaceTime and text but like I want to give her a big hug so please #COVID19 go away come back another day"                                                                                                                                                                                                                                                                                                                                                                     
## [4472] "@MBuhari I believe Nigeria Govt can do better if we can make effective use of the relief funds and do away from corruption in any forms\n#covid-19\n@NCDCgov \n@NGRPresident \n@NGRSenate \n@HouseNGR \n@kwaragovt \n@IlorinInfo"                                                                                                                                                                                                                                                                             
## [4473] "Global confirmed COVID-19 cases top 500,000: Johns Hopkins University - People's Daily Online https://t.co/DdLO2qKXCQ"                                                                                                                                                                                                                                                                                                                                                                                        
## [4474] "“We know that when emergencies hit, women and girls come last.” @CARE releases recommendations for health services delivery actors, NGOs, national governments, and international donors on how to mitigate the disproportionate #gender impact of #COVID19. https://t.co/z79msUhQO8"                                                                                                                                                                                                                       
## [4475] "Coronavirus: NSW reports 212 new cases of COVID-19 in 24 hours https://t.co/OBDvdKuEYI via @skinnergj - CRNews"                                                                                                                                                                                                                                                                                                                                                                                               
## [4476] "I’ve not refreshed this tab for a couple of days or so. Frightening. #covid19 https://t.co/FpKNtjJJop"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4477] "Coronavirus: India 'super spreader' quarantines 40,000 people   - all down to ONE preacher #COVID19  https://t.co/wWaVPVZMHN"                                                                                                                                                                                                                                                                                                                                                                                 
## [4478] "5G’s potential shines amidst COVID-19 pandemic - https://t.co/XWbWRmPXlf #5G"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4479] "@NicolaSturgeon Can I ask why you are allowing Covid-19 to be recorded as a cause of death without any tests? Why also are the NHS unwilling to test the staff and vulnerable high-risk patients of a rehabilitation home after a recorded Covid-19 death?"                                                                                                                                                                                                                                                   
## [4480] "there are roughly 7.7 billion of us\nthere should be 0\n#govegan #antinatalism #animallovers #AnimalCruelty #ClimateChange #extinction #coronavirus"                                                                                                                                                                                                                                                                                                                                                          
## [4481] "These people are fake Christians, and dangerous. #StopTheMadness #COVID2019 https://t.co/LDS0ohlYR7"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4482] "And we now lead the world in number of confirmed cases. I thought everything was under control? @realDonaldTrump and it seems many Americans STILL don’t have access to testing even with COVID-19 symptoms!! https://t.co/c81mJTvfTu"                                                                                                                                                                                                                                                                       
## [4483] "Greek island refugee camps face #coronavirus ‘disaster’, aid groups warn - ‘We have not seen a credible emergency plan to protect and treat people living there.’ https://t.co/AVRcSzb1yx #asylumseekers #refugees #health #pandemic #greece https://t.co/NkH17SAXb7"                                                                                                                                                                                                                                     
## [4484] "I just want to go wine tasting and eat bread. #IsolationLife #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4485] "Plz speak for yourself\nI was not scammed\nRecognized the farce right from the start\nStats from the common flu convinced me of the BS of this Sham-Dem-ick <U+0001F637><U+0001F927><U+0001F922><U+0001F92E>\n@realDonaldTrump \n#coronavirus \n#QAnon \n#WWGIWGA https://t.co/1OknoFfrJy"                                                                                                                                                                                                                    
## [4486] "For peace of mind on fears over birthing alone during #Covid19 - this from @MidwivesRCM &amp; @RCObsGyn \n\nIf your birth partner is well and showing no symptoms, they should be allowed to be in the maternity suite. https://t.co/lt8x5O96RX"                                                                                                                                                                                                                                                              
## [4487] "Italy records 969 coronavirus deaths, dashing hopes of turnaround | World news | The Guardian https://t.co/SeVTsBGLNv"                                                                                                                                                                                                                                                                                                                                                                                        
## [4488] "<U+0001F628><U+0001F628> Seriously, it adviserable you don't use @GloWorld Service during this isolation period <U+0001F630>. I swear you go run mad, how can some stay safe with you guys bayi ?  I hope we can count on you guys @AirtelNigeria @MTNNG #stayathome #covid-19"                                                                                                                                                                                                                               
## [4489] "1/ @OneWeb's bankruptcy is official. CEO Adrian Steckel said in a statement that the \"current situation is a consequence of the economic impact of the COVID-19 crisis.\"\nSoftbank reportedly passed on giving the company more financing this week."                                                                                                                                                                                                                                                       
## [4490] "I am terrified I’ll get this virus and my lungs will be uncooperative and I’ll end up on a ventilator (if there are any). And, I swear, if anyone tries to play that Hawaiian version of “Over the Rainbow” as I slip away, I will fucking HAUNT you! #COVID19"                                                                                                                                                                                                                                           
## [4491] "CHINA U SCREW ME OVER I HATE ALL U, HOW DARE U SHESHE MY FUCKN COUNTRY\n\n#china #onetwofucku #newzealand #nz #us #CoronaLockdown #coronavirus #COVID19nz #help #safe\n\nalso spread positivity in this bad time people, much love to my brothers and sisters around the world, stay safe"                                                                                                                                                                                                                    
## [4492] "Tune in to @ThisisRiverside RN, #RiversideReports presented by me &amp; featuring an interview with @DrRosena Tooting MP and much more... #riversideradio #southwestlondon #windrush\n#coronavirus"                                                                                                                                                                                                                                                                                                           
## [4493] "Are you getting one of the Coronavirus stimulus checks? Find out here. #coronovirus #covid19 #stimulus https://t.co/6IgxXCHqZP"                                                                                                                                                                                                                                                                                                                                                                               
## [4494] "Take a look at this compilation from the @usccfoundation detailing the drug industry’s ongoing work to develop #vaccine and treatment options for the #COVID19 pandemic, and the business community’s larger philanthropic and relief efforts as well: https://t.co/VhHVVdGlqZ"                                                                                                                                                                                                                             
## [4495] "Someone that worked with my brother had covid 19 and they worked together for a week and just found out today and is still hanging out around the house and being around his gf and kids bc he isn’t feeling symptoms right now.. i knewthis would happen"                                                                                                                                                                                                                                                   
## [4496] "Locsin: March 27 last day to take foreign tourists to airports for outbound 'sweeper flights' #COVID19 #LuzonLockdown https://t.co/PTaRzZPdis"                                                                                                                                                                                                                                                                                                                                                                
## [4497] "Oh those snacks were supposed to last the whole time?? <U+0001F609><U+0001F60A><U+0001F602><U+0001F36A><U+0001F369><U+0001F37F><U+0001F9C1><U+0001F366>\n\n#Snacks #StayHome #ShelterInPlace  #Covid_19 #Quarantine #WashYourHands #VanillaFringeBoutique https://t.co/WkupeINodL"                                                                                                                                                                                                                            
## [4498] "Sir ,\nThe way you explain and make the layman understand about the COVID-19 situation of the state is absolutely fantastic.\nIn such situations having a press conference daily to address the people is so important and you are doing a fabulous job Sir  <U+0001F64F> https://t.co/vScnquawXb"                                                                                                                                                                                                            
## [4499] "If you want a kitten, ask for a pony. #coronavirus https://t.co/AJuaCQJyEq"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [4500] "@realDonaldTrump It’s too late. Youve failed. Where are the #CovidTests #wherearethetests #WhereAreTheTestskits #Covid19 #Noeaster #Weneedtestkits #Trumpresign #GOPRESIGN #TrumpVirus #Resign"                                                                                                                                                                                                                                                                                                              
## [4501] "@segalink Mine auto correct all harsh tag #COVID19Lagos #COVID19Nigeria #CoronarVirus #Covid19 #CovidNGR"                                                                                                                                                                                                                                                                                                                                                                                                     
## [4502] "Covid-19, Coronavirus Day 6 <U+0001F915>\n\na video update in 3 parts because inexplicably I cannot upload longer videos here \n\nPart 1\n\n#COVID2019 #coronavirus #Covid_19 #nyc https://t.co/WZKvgJS0LW"                                                                                                                                                                                                                                                                                                   
## [4503] "There are 240 people on this @awayhomeamerica Zoom meeting centering racial equity in #COVID19 response to #EndYouthHomelessness led by our Founding 8 board who are young adults with lived expertise. This is what justice &amp; liberation look like!"                                                                                                                                                                                                                                                     
## [4504] "The #coronavirus ISN’T a flu<U+2014>it‘s a respiratory virus that‘s much more serious. Deaths are up to 1090, with a mortality rate is 1.45% (4.4% worldwide), which could translate into 3,349,000 DEATHS based on 70% of 231,000,000 of 330,000,000 Americans contracting the virus. https://t.co/n1BpVgqZBy"                                                                                                                                                                                            
## [4505] "Just spitballing here but can we implement a 6 foot rule for cars on the road, too? It would be great if Brenda in her silver accord wasn’t always up my ass <U+0001F937><U+0001F3FC><U+200D>♀<U+FE0F> #coronavirus #SocialDistanacing #SocialDistance"                                                                                                                                                                                                                                                     
## [4506] "@MayorOfLA &amp; @GavinNewsom with some sobering stats on Los Angeles. At the current rate LA County will be where NYC is in terms of cases per capita by next week. #coronavirus."                                                                                                                                                                                                                                                                                                                           
## [4507] "Congratulations niggas landed their first diss track #COVID19 https://t.co/el6ACBITeC"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4508] "@StephenCurry30 Much respect <U+0001F44A><U+0001F3FD> from a seasoned educator! #eachoneteachone #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                
## [4509] "A nice overview of options for researches in the time of #COVID19 by @FKondylis and @markus_gold. Many of us are thinking about field enumerators who are daily wage earners &amp; as a research community its time to have some tough conversations about how we treat our foot soldiers... https://t.co/rOXD7MWhU5"                                                                                                                                                                                         
## [4510] "No Treatment &amp; No Way to Return Home: Patients at Delhi Hospitals Say Hunger, Not Covid-19, May Kill Them https://t.co/AvKdSVGTEG via @rightrelevance thanks @rahuleaswar"                                                                                                                                                                                                                                                                                                                                
## [4511] "So the United States just exceeded 100,000 confirmed cases of COVID-19, eclipsing the Chinese.  Finally, the Criminal-in-Chief has achieved world-class status in his core competence - failure."                                                                                                                                                                                                                                                                                                             
## [4512] "ISTE Convenes Sector-Wide Response to Supporting Educators in Responding to COVID-19 https://t.co/Ta6njK8fCW #npt"                                                                                                                                                                                                                                                                                                                                                                                            
## [4513] "COVID-19 IS RUINING MY LIFE"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4514] "God is angry with the Earth,He shut down the church, mosque, school and even the government parastatas let's pray and ask God for Mercy...#COVID19 #StayAtHomeAndStaySafe #CoronavirusOutbreak #coronaupdatesindia #CoronaUpdates  @realDonaldTrump"                                                                                                                                                                                                                                                          
## [4515] "Thank you to the NHS! <U+0001F44F><U+0001F3FC><U+2764><U+FE0F>\n#COVID2019 #NHSThankYou #ClapForCarers #StayHomeSaveLives https://t.co/0SyFKPjGBC"                                                                                                                                                                                                                                                                                                                                                            
## [4516] "Warnings Ignored: A Timeline of Trump’s COVID-19 Response https://t.co/dBARZsvBlh via @BulwarkOnline"                                                                                                                                                                                                                                                                                                                                                                                                        
## [4517] "@technocrat_arun Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs."                                                                                                                                                                                                          
## [4518] "The USA is number one again. We have the most confirmed COVID-19 cases, worldwide. Given how little we've actually tested, we're probably astronomically undercounting."                                                                                                                                                                                                                                                                                                                                      
## [4519] "Final Fantasy XV, FFX-2, Donkey Kong Country 1-3, Mega Man Legends, Animal Crossing New Horizons, original RE 1-3, RE Code: Veronica &amp; 80s/90s movies\n\nMy time away from the world is being well spent. #videogames #Dreamcast #PS4 #PS1 #SNES #ACNH #ResidentEvil #COVID19 #coronavirus"                                                                                                                                                                                                               
## [4520] "London Woman Dies Of Suspected Covid-19 After Being Told She Was ‘Not Priority’ https://t.co/h8Vav7Qd5X"                                                                                                                                                                                                                                                                                                                                                                                                    
## [4521] "COVID-19 continues to impact different areas of our service delivery.  For the latest updates, click here:  https://t.co/2Vr3iohFdD.  For a full list of service updates, visit: https://t.co/vas3e83Csc https://t.co/Sb28VrV9ut"                                                                                                                                                                                                                                                                             
## [4522] "The ACR is here to support radiology residency programs with newly curated, FREE online Residency Training Resources https://t.co/hY9dKMxTVZ\n<U+2714><U+FE0F> #ACRCPI e-books\n<U+2714><U+FE0F> New #COVID19 #ACRCaseinPoint cases added weekly\n<U+2714><U+FE0F> #Radiology Well-Being Curriculum \nand more! https://t.co/vKFqekf6YQ"                                                                                                                                                                      
## [4523] "My spouse has been put in charge of the #COVID19 floor of the hospital.  I am so proud and in such despare at the same time..."                                                                                                                                                                                                                                                                                                                                                                               
## [4524] "@KevinScarbinsky Just like a <U+0001F3C8> or <U+0001F3C0> game, COVID-19 has all the momentum and somehow we the public have to slow it down and get back in the game <U+0001F937><U+0001F3FB><U+200D>♂<U+FE0F>"                                                                                                                                                                                                                                                                                             
## [4525] "BREAKING: Health officials say that the COVID-19 test for a 61-year-old woman who passed away yesterday, Mar. 25, came back positive today. https://t.co/LtLPUZuMQC"                                                                                                                                                                                                                                                                                                                                          
## [4526] "103 year old #Iran woman survives #Coronavirus...\n\nThere is #HOPE!!!\n\n#COVID19US\n#COV19US\n#CoronavirusUSA\n#COVID19\n#COV19 https://t.co/awwMulcEoi"                                                                                                                                                                                                                                                                                                                                                    
## [4527] "The fallout of spring break in Florida. #COVID19 #COVID #SocialDistancing #Florida #pandemic #pandemicpanic #Epidemic @kevinmd @ZDoggMD @kennethafisher https://t.co/kcXUJqu7bS"                                                                                                                                                                                                                                                                                                                              
## [4528] "i cant listen to this tory government , its too fucking dangerous \nill listen to my NHS \n\n#coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                    
## [4529] ". @KPMG Global Head of Telecoms and Media @alexholttweets, looks at how companies are responding to the demand on consumer networks to now be the backbone for business as well. #telecoms #media #COVID19 https://t.co/HUgEszjvLG"                                                                                                                                                                                                                                                                           
## [4530] "Hillsborough County has unanimously passed a 24-Hour \"Safer at Home\" directive. #coronavirus https://t.co/zt2GtlaQ8Y"                                                                                                                                                                                                                                                                                                                                                                                       
## [4531] "Mad and sad because I can’t afford @JeffreeStar bloodlust pallet due to not having work rn. Fuck this #coronavirus. It’s preventing me to experience true happiness, that is @JeffreeStar cosmetics<U+0001F625><U+0001F613>"                                                                                                                                                                                                                                                                                
## [4532] "@DrRosena Why only seven days? #coronavirus #covid19"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4533] "HOW TO SUPPORT BUSINESSES WITHOUT PUTTING PEOPLE AT RISK DURING COVID 19 LOCKDOWN https://t.co/IvMMNbIzKI https://t.co/J8u4tMlU7m"                                                                                                                                                                                                                                                                                                                                                                            
## [4534] "Share your #coronavirus #quarantine stories. We want to amplify them: https://t.co/PKDjHv8gl5 https://t.co/ZQvhQFDvP4"                                                                                                                                                                                                                                                                                                                                                                                        
## [4535] "#StayAtHome isn’t just a personal commitment during #COVID19, it has to be a commitment by the govt to enable people to stay in their homes, through moratoria on foreclosures, evictions, utility cutoffs, and adequate unemployment compensation. And, it shouldn’t be temporary. https://t.co/4wGkHy4ZMH"                                                                                                                                                                                                
## [4536] "I assume \"automatic\" still means a case by case basis. In an emergency, or in cases of govt use, WTO TRIPS Art. 31(b) negotiation is not required. But decision still has to be case by case under 31(a). #IP &amp; #coronavirus @WCL_PIJIP @IP_policy https://t.co/1Cm7iCMqj0"                                                                                                                                                                                                                             
## [4537] "Met in the end after 68th day of \n#COVID19 #Korea. \n\nRed: Quarantined \nBlue : Free / Cured\nGray : Total test confirmation \n\nhttps://t.co/feXdR7YfQM https://t.co/QYlb2ORfSU"                                                                                                                                                                                                                                                                                                                           
## [4538] "Call @ato_gov_au if you are having difficulties meeting your tax and super obligations because of COVID-19 (novel coronavirus). Phone the Emergency Support Infoline on 1800 806 218 for help tailored to your circumstances"                                                                                                                                                                                                                                                                                 
## [4539] "It's a well known fact that #COVID19 #coronavirus is heavier than air so that when expelled with a cough or sneeze it will be propelled forward up to a couple of metres before falling to the ground\nThey employ teams of people in London licking it up before it can harm the public https://t.co/blHArhZkvA"                                                                                                                                                                                             
## [4540] "HAPPENING NOW: We're bringing you 'The State of Michigan: A Virtual Town Hall on COVID-19' airing live now on @WOODTV \nListen to it live on NEWSRADIO WOOD 106.9 FM/1300 AM:\nhttps://t.co/FeNWepziUP https://t.co/kq1eoK2LdI"                                                                                                                                                                                                                                                                               
## [4541] "Day off today spending some quality time with the boys. Lovely daffs out today <U+0001F60D><U+0001F60D> #covid_19 #lockdown #dayoff #daffodils #thejoysofnature https://t.co/YVrT2C7THb"                                                                                                                                                                                                                                                                                                                      
## [4542] "The President’s Coronavirus Guidelines for America -- 15 Days to Slow the Spread of #coronavirus (#COVID19 )\n More at : https://t.co/lkadsalNOR\n\n#CoronaLockdown #COVID #Covid_19 #COVID2019 #Covid19usa https://t.co/WtZnK3d7Oo"                                                                                                                                                                                                                                                                         
## [4543] "Our real heroes <U+0001F9B8><U+200D>♂<U+FE0F> <U+0001F9B8><U+200D>♀<U+FE0F> \n#COVID19 \n#StayAtHomeAndStaySafe \n#StaySafeNigeria https://t.co/ulH7agd95Q"                                                                                                                                                                                                                                                                                                                                                 
## [4544] "Reminder that the money being sent out as Covid-19 stimulus may need to be paid back, at least partially, by people on their 2020 taxes.\nhttps://t.co/xAimrkOLTU https://t.co/h6Ff3V70sh"                                                                                                                                                                                                                                                                                                                    
## [4545] "Hoping Sweden’s downward trend in new ICU admissions continues https://t.co/2bzyg1z3O4 #COVID19 https://t.co/zolGhBms7T"                                                                                                                                                                                                                                                                                                                                                                                     
## [4546] "Lana Condor Called Trump Out for His Racist 'Chinese Virus' COVID-19 Rhetoric https://t.co/J0ssFNlDZR"                                                                                                                                                                                                                                                                                                                                                                                                        
## [4547] "Army truck going west on PA RT322 in Centre County with 2 field tent pods heading somewhere, just now. #COVID19 #sarscovid2 #coronavirus\n\n<U+0001F632><U+0001F622>"                                                                                                                                                                                                                                                                                                                                         
## [4548] "#Coronavirus is fuelling conflict between the old and the young.\n\nWe must put in measures to protect not just the old, but the young as well.\n\nExplainer by two researchers. https://t.co/WHX6h7Rhed"                                                                                                                                                                                                                                                                                                     
## [4549] "Accu#WEATHERs free COVID-19 warning service extended to new states as severe weather looms https://t.co/4OrSpt7HVs #Tweet4Mee"                                                                                                                                                                                                                                                                                                                                                                                
## [4550] "Please help our fellow Americans in Michigan if you can!\n#COVID19 #TrumptheWorstPresidentEVER #TrumpLiesAmericansDie #GOPDeathPanels https://t.co/ApZiN22cRq"                                                                                                                                                                                                                                                                                                                                                
## [4551] "@HinduHaiHum5 @Uppolice @hardoipolice @dgpup @TheAtul_IND @112UttarPradesh @UpdeshRana07 <U+0001F437>ke aulaad\nSend jail for lifetime  Only solution for this people #CoronavirusOutbreak #CoronaLockdown #coronavirusindia #coronavirus"                                                                                                                                                                                                                                                                    
## [4552] "Please help! @MQmentalhealth - a charity I’m a proud ambassador for - is conducting a survey about #mentalhealth and #COVID2019. Please fill it out if you have time, it’s a vital subject we need to get up to speed on working on. \n\nhttps://t.co/PsKsifnEgv"                                                                                                                                                                                                                                           
## [4553] "Great article by @ayeshatulloch &amp; co on the benefits of citizen science in the times of #COVID<U+30FC>19 https://t.co/3oxOkfxdzt"                                                                                                                                                                                                                                                                                                                                                                         
## [4554] "This man is inspiring. Americans need to stick together and realize no one will care for #Us except each other. They jobs depend on exploiting us as much as they can get away with. #Coronavirus is just making it more obvious. #NotMeUs #solidaritycovid19 \n https://t.co/UyK8NqWGSL"                                                                                                                                                                                                                     
## [4555] "Social distancing alone will not mitigate COVID-19's impact. We must also make testing free and readily available and guarantee paid leave for all sick and quarantined workers, among other actions. During such an uncertain time, we must also prioritize mental health."                                                                                                                                                                                                                                  
## [4556] "Have weighted blanket companies come out with a new “Global Pandemic” range yet or are we just supposed to layer the ones we have?\n#coronavirus #StopTheSpread"                                                                                                                                                                                                                                                                                                                                            
## [4557] "Report #Fitch: #Moroccan Economy Can Overcome the #Covid_19- Crisis https://t.co/2MIJl4JZbT"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4558] "Is the COVID-19 pandemic a good time to buy a car? - Marketplace https://t.co/VXg03r3hxk"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4559] "Never seen them together, hmm? #CoronaLockdown #COVID19 #chriswhitty #mrburns #thesimpsons #gmtv https://t.co/VmYbAzhuaK"                                                                                                                                                                                                                                                                                                                                                                                     
## [4560] "Kiddos at home during COVID-19 school closure for students are probably using their devices to play online games. Our FOOF (Find out on Fridays) segment this week is about FORTNITE- which is a popular choice for many children. https://t.co/YdnUwZxo3n"                                                                                                                                                                                                                                                   
## [4561] "If you would like to donate to Foodlink's COVID-19 Response Fund, and help us nourish our neighbors and navigate this public health crisis, please visit: https://t.co/0YLX0K4wGk https://t.co/1doz2PbjWU"                                                                                                                                                                                                                                                                                                    
## [4562] "No change in numbers for the next 2-3 weeks concerning the spread of #Coronavirus. #PressConference #UKlockdown"                                                                                                                                                                                                                                                                                                                                                                                              
## [4563] "African Development Bank launches record breaking $3 billion “Fight COVID-19” Social Bond https://t.co/YfqGeDdXSy"                                                                                                                                                                                                                                                                                                                                                                                          
## [4564] "COVID-19 puts women in New Zealand’s sex trade in more danger than ever; why isn’t the decrim lobby helping? https://t.co/hDWSXRZQ9Q via @FeministCurrent"                                                                                                                                                                                                                                                                                                                                                  
## [4565] "I am addicted to the NYT Spelling Bee. Every day for a year, I start and do not stop until I reach the top level. I have noticed a correlation between COVID-19 progression and how close to the 3 AM EDT release time of the puzzle I start it. We all have our comforts..."                                                                                                                                                                                                                                 
## [4566] "DHS says they will release new data points for positive #COVID19 cases - like age and gender, \"in an effort to be transparent.\" Then why not tell us the locations of these positive cases? @DHSWI"                                                                                                                                                                                                                                                                                                         
## [4567] "\"India's response to COVID-19 has been preemptive, pro-active and graded \" Read detailed timeline and statement by the Government below on\n#CoronaUpdate\n#CoronaLockdown \n#CoronavirusOutbreak https://t.co/hblXdOlwD8"                                                                                                                                                                                                                                                                                  
## [4568] "An important thing during the virus lockdown is to stay positive and use your time as an opportunity to learn! \n.<U+2060>\n.<U+2060>\n.<U+2060>\n#annaskydancer #skydancer #pilotlife #pilot #piloteyes #airshowlife #covid-19 #coronavirus #hopeforthebest https://t.co/vplN4J7JsC"                                                                                                                                                                                                                         
## [4569] "Has it been determined whether or not a patient who has recovered from Covid-19 will be immune to future illness by the same virus? #nprconversation"                                                                                                                                                                                                                                                                                                                                                         
## [4570] "Stay home. A simple message but 2 people living in difficult relationships its much more complicated, specially women/kids. Stress &amp; isolation could bring out dark sides, make abusive situations worse. Call for help. Report abuse. Call 9-1-1 #DomesticAbuse #SexualAbuse #Covid_19"                                                                                                                                                                                                                  
## [4571] "@ewarren Omg death rate of 3% thats bad but a black man has a better chance of being murdered in chicago than getting covid -19 you RACIST"                                                                                                                                                                                                                                                                                                                                                                   
## [4572] "@_sabanaqvi when the entire world is at a crisis the likes of which is not seen recently, she wants communal rift. wah! some morals you have. u r really more dangerous than COVID-19!! you should be quarantined permanently!! u r not human, for sure!!"                                                                                                                                                                                                                                                    
## [4573] "Even though my fam and I were put under quarantine by 111 #COVID19 line this Mon, I haven’t actually left the house since last Fri. My first mild symptoms showed week ago today. So, I’ve been self isolating for over 7 days now but nowhere near ready to come out of self isolation."                                                                                                                                                                                                                   
## [4574] "Our amazing libraries team <U+0001F44F> has set up an exciting virtual library to help people keep their love of literature going while libraries are closed during the #Coronavirus pandemic - log on and enjoy from Monday 30 March!\n@BathnesL\n\nhttps://t.co/PTlSdN2Kn6 https://t.co/usfWfMZSDo"                                                                                                                                                                                                         
## [4575] "for any who who planned on taking the July bar exam https://t.co/WIYWrUDwpp"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4576] "We need to provide our underprivileged kids with smart phones URGENTLY so that they can resume online classes and utilise their time more constructively.\nAnyone in Bhilai having old phone lying in working condition it’s time to Gift it to the needy. Small gift big help #COVID19 https://t.co/JGbf8eiot3"                                                                                                                                                                                             
## [4577] "#coronavirus love you all https://t.co/FaXQNQrN3D"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [4578] "@A57102266 @chad_rummer @BethLynch2020 @davidaxelrod ... just aren't going the way they feel it should. #RealityCheck for Dems is that some Bernie supporters will never be anything other than just Bernie supporters. They've no greater vision/hope for <U+0001F1FA><U+0001F1F8> outside of the Bernie sphere. #BinaryChoice #HCWShoutout to the Covid_19 heros."                                                                                                                                          
## [4579] "@RNCResearch @IvankaTrump USA is Number 1 in Covid-19 cases in the world.  Bill is only needed because they failed to heed Pandemic Plan."                                                                                                                                                                                                                                                                                                                                                                    
## [4580] "A little bit of good news to start the weekend, a team at @uofigrainger has been hard at work to develop a ventilator to help during the #Covid19 pandemic. It's truly amazing what we can accomplish when we all work together.\n\nhttps://t.co/WmMZWn0Xqa"                                                                                                                                                                                                                                                  
## [4581] "Ministers representing the #COVID19 #NationalCommandCouncil updating the nation on the status of Day One: #LockdownSA in Pretoria. #StayAtHome for the next 21 Days to prevent #CoronaVirus spread. https://t.co/mLOT3SZYXk"                                                                                                                                                                                                                                                                                  
## [4582] "If your #nanny is working for you during the #COVID-19 and is not sick, should you terminate them and have them collect unemployment? Here's everything you need to consider. https://t.co/FL62hqDFHV #coronavirus"                                                                                                                                                                                                                                                                                           
## [4583] "Just wondering what kind of problems we will face if we decide to scrap these 2-3 months and start the calendar again from February? <U+0001F914><U+0001F914><U+0001F914><U+0001F914><U+0001F914>\n\n#QuarantineLife  #Quarantine #COVID2019"                                                                                                                                                                                                                                                                 
## [4584] "@Acosta I wonder which of those rich white men and token rich woman is going to come down with #COVID19 ?"                                                                                                                                                                                                                                                                                                                                                                                                    
## [4585] "New Mexico now up to 191 COVID-19 cases, a breakdown\n\n@rulljoe reports\n\nhttps://t.co/3ooewVRjjq"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4586] "Validation of #COVID2019 serology hard\nNo gold standard in most patients only 80% pos-times to IgM &amp;G uncertain. Many coronavirus serotypes"                                                                                                                                                                                                                                                                                                                                                             
## [4587] "The eNASCAR @iRacing Pro Invitational Series scratches @NASCAR drivers' competitive itch as the #coronavirus continues to disrupt the 2020 sports calendar.\n\n@ClintBowyer: \"When all odds are against them, racers figure it out.\"\n\n<U+0001F517> STORY: https://t.co/uNtWuch0KS"                                                                                                                                                                                                                        
## [4588] "The #COVID19 lockdown lead to me getting creative and making a completely different #Funko video for my channel! \n\nLink’s Funko Pop Idol 2020 Ep1 Disney Semi Final! https://t.co/eXTXHSjLAn https://t.co/T8OsiINCG8"                                                                                                                                                                                                                                                                                      
## [4589] "@BorisJohnson PM Boris Johnson\nChief Medical Officer Chris Whitty\nHealth Secretary Matt Hancock\n\nObviously not practising what they preach\n#oneruleforus #COVID19 #SocialDistancing"                                                                                                                                                                                                                                                                                                                     
## [4590] "Join us Fri March 27 at 3 pm EDT for a Facebook Live broadcast with pulmonologist Adam Smith, MD. He'll be answering your top questions about #Coronavirus / #COVID<U+30FC>19 &amp; lung health. https://t.co/oB4PogSeve https://t.co/SiZZDRqic4"                                                                                                                                                                                                                                                             
## [4591] "@ladydayisings Namaste, you can read it here: Thread by @MicrobiomDigest: There is a great need for accelerated publication of papers on #COVID19 studies. But if a… https://t.co/whwTAE9RGV. Enjoy :) <U+0001F916>"                                                                                                                                                                                                                                                                                         
## [4592] "@wellandjackfish Covid 19 Blue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4593] "How is the COVID-19 crisis impacting minds? We asked a former monk how to deal with the stress. @EntrepreneurOrg  https://t.co/0uSVrmQDf0 via @Inc"                                                                                                                                                                                                                                                                                                                                                           
## [4594] "Businesses looking for information or to apply for business grants as a result of the covid-19 outbreak can visit https://t.co/QpRxbAtNpo https://t.co/4FqwyInBNm"                                                                                                                                                                                                                                                                                                                                            
## [4595] "5 Reasons Why Police Should Reduce Custodial Arrests in Light of COVID-19 via @Arnold_Ventures:  https://t.co/GspSgkW4RC"                                                                                                                                                                                                                                                                                                                                                                                     
## [4596] "More thoughts on #COVID19 - Had a phone appt with my family doc today. I was calling to get my inhalers reordered in case I get sick and can’t get into a doctor...Flovent is on backorder because all kinds of people got the Rx in a panic. Ventolin is in stock."                                                                                                                                                                                                                                         
## [4597] "No bank bailouts? No deferred mortgage payments? This bill will further assist the wealthy and serve their interest only. We need assistance! @USATODAY @DenverChannel @GovofCO #Banks #StimulusPlan #Government #coronavirus #help"                                                                                                                                                                                                                                                                          
## [4598] "STATEMENT: Lance McCarthy, CEO, Princess Alexandra Hospital NHS Trust said: “We can confirm sadly, three patients, two in their 70s and one in their 90s, who had underlying conditions have passed away at The Princess Alexandra Hospital. They had tested positive for COVID-19.\""                                                                                                                                                                                                                       
## [4599] ".@JoeBiden All healthcare workers who are putting their lives on the line every day bc of #COVID2019 should have their education debt forgiven. It’s the least we can do. #hcwshoutout https://t.co/u60cgWuB41"                                                                                                                                                                                                                                                                                              
## [4600] "This is great news for growers! Thank you @SecPompeo and @SecretarySonny! #covid19 #h2a https://t.co/410mWcih8E"                                                                                                                                                                                                                                                                                                                                                                                              
## [4601] "Quarantined and Adding weight. Most importantly Staying Safe. Have anyone heard from #PresidentCovik #StayAtHomeAndStaySafe #COVID19 #StaySafeNigeria https://t.co/XKmbi3Qbyy"                                                                                                                                                                                                                                                                                                                                
## [4602] "L @xBrightLightsx_\nC @The__COVID__19 dear god\nE @FatalTease\nS @ChoosenGuard probably not\nF @WolfWitchVyxen oof\nO @MzHottieD <U+0001F937><U+200D>♀<U+FE0F>\nB @BabyNPie\nA @BadAoifeBad <U+0001F60F>\nP @PorkRindParker Um haha okay then https://t.co/a7pIW4m48S"                                                                                                                                                                                                                                       
## [4603] "To support the overall #COVID-19 response, @AllianceRxWP has committed to donating $25,000 to the @CDCFound Emergency Response Fund. Together, we can stop the spread of #coronavirus. https://t.co/O4pfSA2IGf\n#allofus #stayathome https://t.co/MnRA0ldQ9a"                                                                                                                                                                                                                                                 
## [4604] "Help slow the spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download the app     It is simple to use and will help https://t.co/Oj0GWN8pe0"                                                                                                                                                                                                                                                                    
## [4605] "@Cumbrian_Carer @alun_curliss @afneil No and it won’t be included in the figures - covid-19 would have to be a contributing factor to the death"                                                                                                                                                                                                                                                                                                                                                             
## [4606] "Thank you to those Minnesota distilleries who have produced hand sanitizer for those on the frontlines of this fight against #COVID19"                                                                                                                                                                                                                                                                                                                                                                        
## [4607] "Getting this as a tat with the caption: “COVID-19? Completed it mate.” https://t.co/eIy3TTBlLD"                                                                                                                                                                                                                                                                                                                                                                                                             
## [4608] "@vargoe21 @InfoMinZW @nickmangwana and company at times choose the hard way... We told them way back in time to have the handle verified.\nRight now, twitter might be flagging them for constant #Covid19 reports... they are filtering news feeds to people"                                                                                                                                                                                                                                                
## [4609] "Even before #COVID19 closures, schools across the country were striving to keep kids in school to keep them fed. Filmed in 2016, this is a glimpse at what rural districts like @OwsleySchools do *every week* to support children who are food-insecure. #DPLIS https://t.co/TaheLpWwfZ"                                                                                                                                                                                                                     
## [4610] "I feel like if I can't keep my sense of humour through this horror, I may lose my mind. My heart goes out to all people throughout the world struggling to stay alive. Their cries are deafening. Please help each other any way you can. #COVID19 https://t.co/6RH2B1xsot"                                                                                                                                                                                                                                   
## [4611] "Update 2020-03-27 - COVID-19 New Measures and a Recap - https://t.co/gbJN3WHe9w #CdnTax #cdnpoli #COVIDCanada #COVID19Canada #incometax #smallbusiness https://t.co/lVeuKryDSQ"                                                                                                                                                                                                                                                                                                                               
## [4612] "As we learn more about #COVID19, epidemiologists can provide daily forecast updates because the @WHO understands a dynamic dataset requires a dynamic model. Committing to open source international registries and (artificially) intelligent schema should be the new standard. https://t.co/VLj23bO93f"                                                                                                                                                                                                    
## [4613] "#MSM is asking @CDCgov /Dr. FAUCCI to take over all communication from @POTUS /@WhiteHouse /@realDonaldTrump, I request all media to do the same for absolute truth and nothing but.\n\n#coronavirus #COVID19 #SocialDistanacing"                                                                                                                                                                                                                                                                             
## [4614] "Pre-virus, homes were getting more affordable. https://t.co/RwaYdMZ1lF #PhoenixAZ #AZ #housingmarket #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                
## [4615] "COVID-19 case confimed at Save-On in Kamloops https://t.co/ZaYFjxvgp0"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4616] "I wish I had more $ coming in rn. I’m grateful for what I do have coming in, but it’d be nice if I had a side hustle I could do from home so I’d have a little extra to throw at debt <U+0001F62D><U+0001F623><U+0001F926><U+0001F3FC><U+200D>♀<U+FE0F> Going from 4 jobs to none in a matter of days sucks #COVID19 #unemployed #SelfIsolation"                                                                                                                                                          
## [4617] "@BorisJohnson @MattHancock @CMO_England... Get well soon. Thank you for all your hard work to get this country through this most difficult of times. <U+0001F1EC><U+0001F1E7> #coronavirus #nhs #wewillbeatthis"                                                                                                                                                                                                                                                                                              
## [4618] "let's sunbathe in the morning\n#COVID19 \n#Covid19Out https://t.co/n4OV875sd5"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4619] "CL Students!!! We miss you! The weather is gorgeous! Take a walk outside- maybe you will see Ms. Moran out taking her dog Echo and her toilet paper for a walk<U+0001F602>. #ThursdayMotivation #COVID<U+30FC>19 https://t.co/aOckT8ov8r"                                                                                                                                                                                                                                                                     
## [4620] "In a series of advisories, @Mintz_Law's Anne Bruno and Dan Kajunski review new &amp; updated #SEC guidance for public companies affected by #COVID19  https://t.co/FOAUltyAhb https://t.co/w8VcMEZUVY"                                                                                                                                                                                                                                                                                                        
## [4621] "@CMOMaharashtra @AUThackeray @AjitPawarSpeaks @PMOIndia Sir, if possible plz set up temporary camps across Maharashtra 4 people who are stuck in #COVID19 crisis away from their homes. It will help ease the tension on the Police dept and would stop the disease. #IndiaFightsCorona"                                                                                                                                                                                                                      
## [4622] "@bryer @CEaston66 I understand what you are saying but they are testing for the virus when patients enter hospital to ensure the safety of NHS staff. Are you saying that the death toll announced each day could be anything &amp; therefore the figures for COVID-19 deaths are not correct."                                                                                                                                                                                                               
## [4623] "I'm old enough to remember when @realDonaldTrump said it was 1 person from China w/ #coronavirus19 &amp; soon the U.S. would be down to 0 cases of \n\n#CongratulationsAmerica we're No#1 with 83,113 #COVID19 cases &amp; counting. Yep more than those shithole countries \n\nTHIS is #KAG @GOP<U+0001F914>? https://t.co/ZbB7eCcxBf"                                                                                                                                                                       
## [4624] "More than 3 million have Americans filed for unemployment due to the #coronavirus. If there has ever been a time to buck some capitalistic tendencies, I’d say now is a good time. #helpothers https://t.co/Fqy2aJbs47"                                                                                                                                                                                                                                                                                      
## [4625] "@baileylbbh NO COVID-19 HACKED HER"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4626] "I am now an #MBRUCommunityImmunity Ambassador. I am responsible to protect myself and my community from #COVID-19. I challenge @originalissac @vinuevarghese to take the course.<U+00A0>https://t.co/si2w76nH7j https://t.co/y8VzLqfjtO"                                                                                                                                                                                                                                                                      
## [4627] "@ITGuy_JR @karaisshort @_LoveTarajah I'm lucky that my parents are boomers and had canned goods and then stood in line to get toilet paper, but I'm still worried that I might have exposed them to COVID-19. But they also don't seem to give a fuck, so https://t.co/SDw1GdljkC"                                                                                                                                                                                                                            
## [4628] "Heartfelt Appreciation to the Amir of Kuwait and his Government for the commendable efforts in curbing the deadly COVID-19  #ThankYou_AmirOfKuwait"                                                                                                                                                                                                                                                                                                                                                           
## [4629] "Part 3 \n@narendramodi @PMOIndia @myogiadityanath @mygovindia @AdminLKO \n#CoronavirusOubreak \n#BeSafeEveryone https://t.co/NDVDYwj7IG"                                                                                                                                                                                                                                                                                                                                                                      
## [4630] "Read our FAQs about the IRS code allowing #employers to make tax-free payments or reimbursements to employees as “qualified disaster payments” to help employees cope with #COVID19: https://t.co/XHebZaBhKT"                                                                                                                                                                                                                                                                                               
## [4631] "I’m listening to these people asking for a raise <U+0001F633> shit you lucky your ass still has a job! \n\n#blessed \n#workingfromhome\n#BeatCoronaVirus \n#coronavirus"                                                                                                                                                                                                                                                                                                                                     
## [4632] "Urgent!!!! call on .@GavinNewsom .@NYGovCuomo RELEASE thousands of incarcerated humans N California &amp;  NY's  vulnerable 2 #COVID19 Slavery.Prisons.jails. Slavery.detention centers have NO place 2 quarantine/ protect people 4m pandemic #RELEASE #LetThemGo #ClemencyCoastToCoast https://t.co/vgF6Z2FzTW"                                                                                                                                                                                             
## [4633] "@liuna183 Looks like the union hasn’t been listening to our countries health officials, the people in the union are from the field they know this isn’t safe! #COVID19Ontario #COVID2019 https://t.co/7h7fmXQTZa"                                                                                                                                                                                                                                                                                           
## [4634] "Take this seriously! Sign the pledge to help stop COVID-19 while also defending our basic rights. https://t.co/h46e2oDfot"                                                                                                                                                                                                                                                                                                                                                                                    
## [4635] "Are you watching. @NYGovCuomo giving daily briefing rn (it’s Q&amp;A going on right now). Watch it on @CNN @cnni @Reuters or whatever.\nHe’s giving the numbers, facts, forecast, spirit, basically everything you need to keep yourself educated &amp; rational + Tokyo can learn from. #COVID19 https://t.co/P7HeJH9Mbt"                                                                                                                                                                                  
## [4636] "Gonna tell us that 'cure' or what?<U+0001F64F> #coronavirus #COVID19\n\n#NBA #WeTheNorth #RTZ #NBATwitter https://t.co/IjAudsvNNC"                                                                                                                                                                                                                                                                                                                                                                            
## [4637] "While #COVID19 is the health concern on most people’s minds right now, please remember the mental health of college kids who are home for this extended break. \n\nA lot of us had our first taste of freedom, and may be feeling isolated or lost during this unprecedented event."                                                                                                                                                                                                                         
## [4638] "@AndyOstroy @realDonaldTrump Calling it the Chinese Virus when speaking directly with the head of China might undermine negotiations.  Negotiating for Chinese cooperation re: addressing COVID-19 is more beneficial to the US citizens than  \"standing up\" to Xi over a name would be."                                                                                                                                                                                                                   
## [4639] "Ms Kanika Tekriwal, Co-Founder &amp; CEO, @JetSetGo2 shares how their top management conducts virtual meetings thrice a day to evaluate their work &amp; ensure high productivity across teams. Visit: https://t.co/VlbfWYav8n to learn more. #COVID19 #coronavirusIndia @PMOIndia @jetsetgoin https://t.co/g0wYVF5ZYk"                                                                                                                                                                                       
## [4640] "Listening now! Thanks for the break from all the #Covid19 news/politics that I’ve been listening to. https://t.co/SnULEDKyYC"                                                                                                                                                                                                                                                                                                                                                                                
## [4641] "Amazing day on booley bay <U+0001F49B> real social distancing! Beach to myself <U+0001F60A> #SocialDistanacing #coronavirus https://t.co/deWMOATBsM"                                                                                                                                                                                                                                                                                                                                                          
## [4642] "Breaking: Ohio becomes the 16th State to surpass 1,000 cases\n\n#Ohio #COVID2019 #CoronaVirusUpdate #CoronavirusOutbreak #USA"                                                                                                                                                                                                                                                                                                                                                                                
## [4643] "4 dead, 138 sick and 2 with COVID-19 aboard cruise ship https://t.co/A4WLINp67h"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [4644] "For now, it is @BBhuttoZardari and @MuradAliShahPPP who are leading the charge against the #coronavirus pandemic in Pakistan.  \n#coronavirusinpakistan\nhttps://t.co/qME10ITmnz"                                                                                                                                                                                                                                                                                                                             
## [4645] "If you’re a proud American, please tell me how proud THIS makes you. A teenager died because he was denied treatment for coronavirus because he didn’t have health insurance. Do u understand now why healthcare is a right &amp; why we need universal healthcare?? https://t.co/1cphJntWcC"                                                                                                                                                                                                               
## [4646] "Watch \"A Praying City - Chicago Responding to the COVID-19 Crisis in United Prayer\" on YouTube https://t.co/jzg6DZd89w"                                                                                                                                                                                                                                                                                                                                                                                     
## [4647] "@KeithMcLean3 @Scribulatora Bureaucracy can only move so fast. Documentation requires input time. Printing cheque’s takes time. Transferring digitally takes time. Handing out debit cards takes time. \n\nWe are in an emergency. Some of the bureaucrats are surely COVid-19 patients. Replacing them takes time."                                                                                                                                                                                         
## [4648] "Why should @Boeing benefit from a bailout for a problem they have been having since before the #coronavirus outbreak? @SenSchumer @SenGillibrand \n\nIf anyone needs to benefit from it, its boeing employees."                                                                                                                                                                                                                                                                                               
## [4649] "@BBCBusiness Please put us in touch with Terry to see if we can help?\nThank you. #helpindarktimes #coronavirus BBC News - ‘I’m devastated there’s no support for me’ https://t.co/5RrFCIfeKu"                                                                                                                                                                                                                                                                                                            
## [4650] "There have now been 9 deaths connected to the COVID-19 pandemic in Wisconsin. And there are now confirmed cases in 37 counties\nhttps://t.co/ivTjvAhph9"                                                                                                                                                                                                                                                                                                                                                      
## [4651] "@shatrughan100 Banned chinese product. Spain. Purchased of covid-19 test toolkit which is fail to detect proper only 30% is been detectable. So, we the people of India need to charge 200% tax on chinese product. Which will remain international rule and  will be safer."                                                                                                                                                                                                                                 
## [4652] "@294thMPCo @POTUS @USCongress You are clearly not aware of how infectious disease works. #COVID19  is likely to kill 1 million to 50 million Americans in the next year.\n\nSometimes, you shut down to save lives."                                                                                                                                                                                                                                                                                          
## [4653] "Feeling down in the dumps? Change your name to NHS and go for a walk at 8pm. #clapforourcarers #NHS #nhsvolunteers #COVID2019 #cornoravirusuk #StayHomeSaveLives https://t.co/aYVuYMlTsu"                                                                                                                                                                                                                                                                                                                     
## [4654] "I just published New Laughter Research and COVID-19: Laugh for Longevity? https://t.co/du8KTvTqWL"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4655] "India did kill #Sikhs  in 1984 and now again in #kabulattack it is shame Ashraf ghani and india is bussy in terrorisem when whole world is fighting #coronavirus @Ayesha0789 @Abrar9255 #KhalistanIN2020 https://t.co/KklgdkqsBF"                                                                                                                                                                                                                                                                             
## [4656] "Metro Weekly Digital Edition: District of Coronavirus. #coronavirus #lgbtq #washingtondc #magazine - https://t.co/QgMz5ASYf3 https://t.co/ctA9k8V9OX"                                                                                                                                                                                                                                                                                                                                                         
## [4657] "For the latest resources on COVID-19, go here: https://t.co/9nBcU9Tx00 https://t.co/xTUVAPDaIR"                                                                                                                                                                                                                                                                                                                                                                                                               
## [4658] "11. Thou shalt not post any group picture without a pre-Covid-19 disclaimer or thou wilst be dragged on the internet. https://t.co/DY1t74dE81"                                                                                                                                                                                                                                                                                                                                                                
## [4659] "@DeborahMahmoud1 Hmm.. there must be a reason the WHO has declared this a global pandemic. Firstly it’s far more virulent than flu. This article from the spectator may backs up your reality. https://t.co/Hv4OQXltks 1/2"                                                                                                                                                                                                                                                                                  
## [4660] "Received email from my doctors office, they are no longer accepting patients as they have been temporarily been converted to a respiratory clinic for patients with COVID-19 , they do have some things that they can see you for but strict guidelines"                                                                                                                                                                                                                                                      
## [4661] "Leave your message of support for the NHS <U+0001F499>\n#NHSheroes #COVID19 #NHS #Retweet  https://t.co/cgXmlG99uh"                                                                                                                                                                                                                                                                                                                                                                                           
## [4662] "‘To understand the emergence of viruses such as #COVID19 you have to understand the forces putting them in our path. \n\nThey have to do with the rise of industrial scale farming and the marginalisation of millions of smallholder farmers.’\n\nhttps://t.co/7bZ5opZdMz"                                                                                                                                                                                                                                 
## [4663] "@itsjadasworllld let me find it. Someone in China had it recovered and got it again \n\nhttps://t.co/ATIq5EYt7u"                                                                                                                                                                                                                                                                                                                                                                                              
## [4664] "Cuomo never stops trying to kill parties like Green, WFP, Libertarian, even during a crisis. He's been showing great leadership lately on the #COVID19\nfront, but he's still an asshole. https://t.co/bbleAS8eol"                                                                                                                                                                                                                                                                                            
## [4665] "50 new COVID-19 cases, no deaths reported in Kentucky\nhttps://t.co/tvCx8lZ0Wu https://t.co/5Ln88A3pwS"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4666] "Humans have switch of molecular control. Must have developed transmission control protocol also....\n\nIs it a kind of internet of covid 19 molecules....\n\nSomewhere 1 mbps, somewhere 100mbps....\n\nhttps://t.co/ZCFwVjtVr3"                                                                                                                                                                                                                                                                              
## [4667] "Updated periodically, a Covid-19 treatment and vaccine development progress tracker from the Milken Institute. #infectiousdisease  #covid19 #fda https://t.co/IQ3ChM3tnD"                                                                                                                                                                                                                                                                                                                                     
## [4668] "@briantylercohen Trump can’t handle reality or truth.\nThe truth is COVID-19 is real.\nTrump and enablers need alternative reality.\nAlternative reality permits trump truth narcissism.\nTrump's truth narcissism spins his whims.\nHis enablers feast on these whims."                                                                                                                                                                                                                                     
## [4669] "The good news is,the choice is yours.<U+2764>#PresidentCovik #COVID19  #StaySafeNigeria https://t.co/Opbns3ivRg"                                                                                                                                                                                                                                                                                                                                                                                              
## [4670] "#StayAtHomeSaveLives  tune to radio. Make social distancing. #Covid_19\n@sasmitpatra @gyana_r_das @tarique_koshish @IPR_Odisha @CMO_Odisha https://t.co/qkyDv1acU5"                                                                                                                                                                                                                                                                                                                                           
## [4671] "@obiage_li They are trying to encourage social distancing in this era of COVID-19 so that customers won’t have any reason to come to their office."                                                                                                                                                                                                                                                                                                                                                          
## [4672] "@NorbertElekes How are they confirming these cases? Covid-19 is still in the researching phase. All the information on its affects are not definitive. From what we know, the symptoms are comparable to pneumonia, or influzena. How do we determine it's not one of those two from Covid-19?"                                                                                                                                                                                                               
## [4673] "For some reason, I'm thinking of Jim Jones in Jamestown.\n\nToday, US #covid19 confirmed cases are rising at 25%/day, deaths at 30%/day, and testing only at 18%/day.\n\nIt's all going to get 5 times worse in the next week. https://t.co/B3FdB3XLuO"                                                                                                                                                                                                                                                       
## [4674] "Genomic Study Points to Natural Origin of COVID-19 https://t.co/iRqRxXqsxY"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [4675] "#Coronavirus Help &amp; Support from Sunderland City Council https://t.co/hngTTR4ADt"                                                                                                                                                                                                                                                                                                                                                                                                                         
## [4676] "@GavinNewsom @MayorOfLA tRump does not care - his eye is only on his almighty dollar and how it affects his own personal interests. He’s in denial that people are suffering physically and financially. COVID-19 is here for a long time.  https://t.co/KXHbARd4id"                                                                                                                                                                                                                                         
## [4677] "BREAKING at 1:30 (ET): US House just passed the 3rd #COVID19 relief bill which contains emergency funding for state and local governments and school districts. https://t.co/KLJ8wB7oJz"                                                                                                                                                                                                                                                                                                                      
## [4678] "Covid-19: Obasanjo Donates Former Ogun Residence As Isolation Centre NewsBreak - https://t.co/XsyHUXgV5w https://t.co/pgaYCyKaEl"                                                                                                                                                                                                                                                                                                                                                                             
## [4679] "Lodge Locked Down After French Tourist Tests Positive For COVID-19: https://t.co/K0qT62lm88 #Namibia https://t.co/bWidTwVlo6"                                                                                                                                                                                                                                                                                                                                                                                 
## [4680] "@mrdutchempire Food ,\nI am locked down with my husband , my daughter and son, my domestic and her 3 year old.\nHelp would be so appreciated .\nWe are supporting each other and being emotional supports for each other\nIt is tough <U+2764><U+0001F9E1><U+0001F49B><U+0001F49A><U+0001F499><U+0001F49C><U+0001F90E>\n\n #COVID19  #SouthAfrica #Nigeria  #MrDutch"                                                                                                                                         
## [4681] "The latest The Option Strategist newsletter places the recent recovery rally into context with where our technical measures are. #breadth #options #volatility #putcallratio #index #ideas #covid_19 #technicals #oversold #promoTOS29 #newsletter #theoptionstrategist $spy $vxx https://t.co/zZZRzPeQZW"                                                                                                                                                                                                    
## [4682] "Has anybody thought of using Cruise Ships to manage overflow of patients during COVID-19 outbreak?"                                                                                                                                                                                                                                                                                                                                                                                                           
## [4683] "Facebook Page Keeping your Children busy at home- COVID-19 developed by Kayla @ Stonehaven and many of our educators adding ideas- please check it out"                                                                                                                                                                                                                                                                                                                                                       
## [4684] "Still not scared of the #coronavirus. but I will go out of my way to avoid getting it. I hate getting sick...\n#Tucker #TuckerCarlsonTonight"                                                                                                                                                                                                                                                                                                                                                                 
## [4685] "Watch \"COVID-19: What Older Adults Need to Know\" on YouTube https://t.co/ECs9LGhUWB"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4686] "Coronavirus: school closures mean an increased risk of hunger for families around the world.\n\n@LanaWhittaker6 shares her insights. #childhunger #childhoodpoverty #COVID19 https://t.co/aEow5URVcv"                                                                                                                                                                                                                                                                                                         
## [4687] "Has anyone checked on this girl? It’s been 13 days since this interview. #CoronaLockdown #COVID2019 https://t.co/p6YYcRQWq7"                                                                                                                                                                                                                                                                                                                                                                                 
## [4688] "so... at this signing ceremony, where are the Democrats who were involved in crafting and passing this legislation? #coronavirus"                                                                                                                                                                                                                                                                                                                                                                             
## [4689] "ASM COVID-19 International Summit Sets Research Priorities<U+00A0> | https://t.co/4ek4k6aSMx https://t.co/VO8QYHj4jz"                                                                                                                                                                                                                                                                                                                                                                                         
## [4690] "May God have mercy on your heartless soul! #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4691] "Today, this man, my dad, lost his fight to #coronavirus after being diagnosed with lymphoma. My heart <U+0001F494> breaks as we come to terms with his sudden death. Keep your loved ones close and hold them tightly, and appreciate the time you have together before it’s too late. https://t.co/I84ae8zBdC"                                                                                                                                                                                              
## [4692] "@aintnotnever @truemagic68 As if you know her. I guess all the celebs donating to the #COVID19 effort should just stop doing that to appease your hate?"                                                                                                                                                                                                                                                                                                                                                      
## [4693] "The time I want a damn twinkie. Ima go zombieland on #Covid19 https://t.co/GB39tQNMoM"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4694] "WOW at tomorrow's @nytimes front page.\n\n#unemployed #Jobless #COVID19 #COVID #DieForTheDow #coronavirus #TrumpVirus #COVID19US #CoronavirusUSA #news #TrumpMadness #media https://t.co/SF2h42SZsb"                                                                                                                                                                                                                                                                                                          
## [4695] "aye this covid-19 needs to chill sis is about to take wrestling from me after she took therapy and freedom"                                                                                                                                                                                                                                                                                                                                                                                                   
## [4696] "Pelosi wasn’t going to be accused of letting a crisis go to waste.  My latest:\nhttps://t.co/EEPHwxnNC0"                                                                                                                                                                                                                                                                                                                                                                                                     
## [4697] "Contagious Divides by Nayan Shah demonstrates how Chinese Americans have ALWAYS been portrayed as a medical menace.  There is nothing new with this #COVID2019 anti-Asian #racism.  #evangelicals4justice  https://t.co/sIuFVfn3Qj https://t.co/HUD51LnQ3g"                                                                                                                                                                                                                                                   
## [4698] "As cool as this type of data is, the context of COVID-19 is not.  \n\nTo those who are paranoid about being tracked, this is the price of convenience.  Nothing is free in this world. https://t.co/R3qKfSAUsf"                                                                                                                                                                                                                                                                                               
## [4699] "COVID-19 CoronaVirus Correlation of Seasonal Temperature to Virus Spread https://t.co/4VSYEYTbKj #SmartenAnalytics #COVID19Updates #FightCoronavirus #fightCOVID19 #stayathome #coronavirusindia #PredictiveAnalytics #Datascience https://t.co/Nip3VAGyCf"                                                                                                                                                                                                                                                   
## [4700] "@scottlynn46 @AntWBA434 @DJames1731 @piersmorgan COVID-19 patients average time on ventilator: 11 - 21 days (vs. 3 - 4 days for non-COVID-19 patients). \"We have patients that have been 20 days 30 days on a ventilator. The longer you are on a ventilator, the more likely you are not going get off a ventilator\"\nWHO quote"                                                                                                                                                                           
## [4701] "Bedford Superstore closes after employee tests positive for COVID-19 | CBC News https://t.co/2XSA2j11PT https://t.co/Xx4DbXZYGd"                                                                                                                                                                                                                                                                                                                                                                              
## [4702] "Health centre records high family planning requests amid COVID-19 lockdown\nhttps://t.co/XGuAXJJ3ZX"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4703] "So what happens once you recover from COVID-19? While a lot remains to be learned, here are some questions answered. via @wef \nhttps://t.co/dUMwpf5QDf"                                                                                                                                                                                                                                                                                                                                                      
## [4704] "Congressman from Butler, PA tests positive for  #COVID19 \nhttps://t.co/Mf2PInHzDX"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4705] "To help mitigate the spread of COVID-19 and protect the health and safety of our campus community, the Ed Lumley Centre for Engineering Innovation @UWindsor is closed until further notice.\n\nVisit #UWindsorENG's COVID-19 webpage for more details: https://t.co/0qqhI3QA6g https://t.co/FKe490fHIk"                                                                                                                                                                                                      
## [4706] "@NYGovCuomo Trump should learn from that #TrumpIsTheWORSTPresidentEVER #COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [4707] "#coronavirus\n I'm Dr K.Samiuddin. Vice President, IIHP. Homeo medicines are effective for viral diseases. In past we controlled japanese encephalitis, Dengue, Swine flu, other viral diseases. I request you to kindly take the services of Homeopathic Doctors in this critical time."                                                                                                                                                                                                                     
## [4708] "Washington reports 195 new cases bringing total confirmed cases there to 3,207 and 147 total deaths, with 619 new cases and 15 new deaths reported today.\n\n#CoronaVirus #Covid19 #CoronaVirusOutbreak"                                                                                                                                                                                                                                                                                                      
## [4709] "USPS issues statement on mail service during COVID-19 outbreak https://t.co/aEbnUX5dnW"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4710] "Subhanallah Adzan Memanggil Di saat Virus Corona, https://t.co/kCfPO6scLR via @YouTube please sub to this manhe is indonesian and islam and if your english use a translator or this is a discussion of covid 19"                                                                                                                                                                                                                                                                                             
## [4711] "Excellent info from Dr Fauci on #coronavirus misinformation. Really worth the watch! @LethalWC_USA @passionforhomes @civale10 @CCforeverRiggs @Tillylawson6 @LeGrandeWee @StarLord_1979 \nhttps://t.co/Alr69VC24o"                                                                                                                                                                                                                                                                                            
## [4712] "Tackle climate crisis and poverty with zeal of Covid-19 fight, scientists urge. <U+2066>@fionaharvey<U+2069> <U+2066>@guardian<U+2069> #ClimateEmergency #TellTheTruth #ActNow #RebelForLife https://t.co/cHYZMubO1z"                                                                                                                                                                                                                                                                                         
## [4713] "@Stat079 If COVID-19 doesn’t finish me off, this will!"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4714] "Its essential sonographers follow precautions &amp; protocols for #COVID19 Important simple steps - increased room &amp; equipment cleaning, ongoing hand washing &amp; hygiene, limiting additional room attendees, &amp; shortening examinations Would a targeted scan work for the clinical symptoms?"                                                                                                                                                                                                     
## [4715] "@WolfgangBaber3 @washingtonpost Super. China did a better job than the US at controlling COVID-19."                                                                                                                                                                                                                                                                                                                                                                                                           
## [4716] "Best healthcare system in the world world, right @GOP? https://t.co/YlINfh0Ifo"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4717] "\"I will die single\" nature took it seriously.\n#COVID19"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [4718] "my little sister: when’s the next time you’re coming over?!?\n\nme: not for at least two weeks sis! because of covid-19\n\nsis: well TELL COVID-19 TO SUCK YOUR LEFT TOE!!!"                                                                                                                                                                                                                                                                                                                                
## [4719] "This is terrifying. #CoronaLockdown #coronavirus #COVID19 #StayAtHomeAndStaySafe \n https://t.co/tTHOixWDGZ"                                                                                                                                                                                                                                                                                                                                                                                                  
## [4720] "If you were laid off this week, here's a tip to see what industries are still hiring right now. \n\nPlease retweet, this can help. #coronavirus #Hiring #jobs https://t.co/Ty1Yw3WCV7"                                                                                                                                                                                                                                                                                                                        
## [4721] "Seven tips to manage your mental health and well-being during the COVID-19 outbreak https://t.co/RotVVxEkgr"                                                                                                                                                                                                                                                                                                                                                                                                  
## [4722] "@MetropolisatMet @aninhaceleste How dare you contribute to this outbreak.  There is no way to justify keeping a mall open at this time.  All of the malls on the east coast owned by Ivanhoe Cambridge have been shutdown, but for some reason they just don’t care about BC. #ShutItDownNow #COVID19 #Metropolis"                                                                                                                                                                                           
## [4723] ".@united I work with @AVCcons and the should not be treated so poorly regarding flights for their shows. I expect someone to reach out and make this situation work the #COVID19 situation"                                                                                                                                                                                                                                                                                                                   
## [4724] "Enjoy a feature on APA's ad contest \"Best in Show\" award winner David Hancock of the Northwest Arkansas Democrat-Gazette. Plus, find timely COVID-19 resources, updates on the APA convention, and much more, in this week's APW:  \n\nhttps://t.co/ZOooUW3Jik https://t.co/D58bjhzeRt"                                                                                                                                                                                                                     
## [4725] "There would’ve been a #coronavirus pandemic if #Trump wasn’t President. \nI’m thinking it’d look a whole lot different though."                                                                                                                                                                                                                                                                                                                                                                           
## [4726] "Ensuring Data Security and Privacy During Coronavirus/COVID-19 https://t.co/NIh6Z1IJa2"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4727] "Watching Midway in 4K and drinking Czech Beer. \n#CoronaLockdown \n#COVID19 https://t.co/T0edAuRVmc"                                                                                                                                                                                                                                                                                                                                                                                                          
## [4728] "@DisabledResist This is the beginning of the “first wave”. we’re at least a year+ away from having a cure globally distributed <U+0001F489><U+0001F9A0> even once we finally flatten the curb, it will be short lived until the next spike. It’s estimated at least 80% of Americans will get #COVID19 by 2021 https://t.co/PP3JI7a8mb"                                                                                                                                                                   
## [4729] "Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/tZRuFarTAr #SmartNews"                                                                                                                                                                                                                                                                                                                                                                                    
## [4730] "I still have many n95 masks for sale. DM for info. \n\n#yvr #RichmondBC #COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                
## [4731] "Don't #Break The #Rules\n#StayHome \n#alter #alterdubai #alterpinoy\nhttps://t.co/oxcRysHRcY"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4732] "The @NewYorker has been doing a fantastic job of covering the coronavirus. This explainer makes it easy even for ME to understand why COVID-19 is so deadly.\n\nhttps://t.co/q4YvSXiyyF"                                                                                                                                                                                                                                                                                                                      
## [4733] "What is one thing you can smile about even amidst #covid_19 ?! \n\nShare it below <U+0001F447><U+0001F3FC>\n\nEven though it may be negative on the outside, I encourage you to stay in faith and be positive on the inside. https://t.co/pHz9K5wXLe"                                                                                                                                                                                                                                                         
## [4734] "Here's the thread for the #coronavirus task force briefing that is expected to begin momentarily from the #WhiteHouse. https://t.co/Sjc3U2ZZWY"                                                                                                                                                                                                                                                                                                                                                               
## [4735] "A local memory care facility is getting creative to bring families together. Check out the \"Family Connect Window\" complete with chairs &amp; pillows @ Marjorie House Memory Care in McMinnville \n\n#InThisTogether #Oregon #StopTheSpread #GoodNews #covid19 #Coronavirus #pnw #news #fox12 https://t.co/wNthUjGweJ"                                                                                                                                                                                     
## [4736] "@UzorDave @KLeagueUnited We've yet to get confirmation on that. A lot depends on how well the #COVID19 situation is contained."                                                                                                                                                                                                                                                                                                                                                                               
## [4737] "What's the name of this fruit? I had eaten in yercuad.. #coronavirus looks like <U+0001F914> https://t.co/wevwcHETMg"                                                                                                                                                                                                                                                                                                                                                                                         
## [4738] "We're so proud to be an @AIPFoundation partner, which is switching its factory from producing lifesaving motorcycle helmets to facemasks in response to the current #Covid19 crisis - with @GreigCraft \nhttps://t.co/SS19gdlhmD"                                                                                                                                                                                                                                                                             
## [4739] "BEST FOOD FOR STRONG HAIR\nStay Home. Stay Safe.\n\n#Staysafe #Coronavirus #HelpFightCorona #IndiaFightsCorona #ElixirSupportsLockDown\n#ElixirSalon #Elixified #ElixirUnisexsalon #ElixirBegumpet #ElixirSalonBegumpet #ElixirSalonKPHBColony #BeautySalon https://t.co/xv9MxGUtBl"                                                                                                                                                                                                                          
## [4740] "URGENT CALL TO ACTION- SIGN LANGUAGE INTERPRETERS/TRANSLATORS/ SELF EMPLOYED. MAKE SURE YOUR VOICE IS HEARD.Thus far, two congressional efforts related to emergency economic relief from the effects of COVID-19 have been signed into law:"                                                                                                                                                                                                                                                                 
## [4741] "@CoruscaKhaya @tito_mboweni @Delphine_DG @thabileoka @Richards_Karin @rationalhill @redgenkosi @SAReserveBank An admission that National Treasury is seriously concerned about the consequences of this downgrade. WIGBI exit only end of April, delayed by COVID-19 delay of rebalancing. Those outside Treasury that said ratings don’t matter will see why it matters. Uncharted territory!"                                                                                                              
## [4742] "I’m so over COVID-19! This is affecting my job and the line of work I do! I truly miss working with my clients."                                                                                                                                                                                                                                                                                                                                                                                             
## [4743] "Oh please tell us more!!\n#COVID19 #hope https://t.co/XJF4Lj5Pua"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [4744] "Due to Covid-19, I will be adopting a slightly different approach to the car buying experience. I am now offering at home test-drives anywhere in Winnipeg and surrounding areas. This will… https://t.co/pOFFuYq1H9"                                                                                                                                                                                                                                                                                        
## [4745] "@seanhannity Your entire network told the world #coronavirus was a hoax 3 weeks ago. You own this. All of you own these 1500+ deaths."                                                                                                                                                                                                                                                                                                                                                                        
## [4746] "So Paul Adom Otchere of all people sat down and thought to himself that a satire programme about the political  party in Ghana that will gain most from the  covid-19 will be funny and interesting. Smh."                                                                                                                                                                                                                                                                                                    
## [4747] "My medical advice is to avoid groups (and therefore #coronavirus) like @DeionNBCMT was trying to avoid these bison! #COVID2019 https://t.co/gyblAKUFE2"                                                                                                                                                                                                                                                                                                                                                       
## [4748] "Just gonna put this out there, but seeing some of the posts from healthcare workers in New York talking about how bad things are getting is making something clear.\nThey really need ventilators and no one is going to order enough for them.\n\n#COVID19"                                                                                                                                                                                                                                                  
## [4749] "It seems we all agree that the action was uncalled for, unnecessary, inhuman and wrong. Should we leave the matter without investigating where the orders came from, the intention and hold someone responsible? #COVID2019 #RugabaQuotes"                                                                                                                                                                                                                                                                    
## [4750] "The blood of Jesus Christ is cleansing the Earth, COVID-19 is dying off from now; in the mighty name of Jesus, Amen!!! https://t.co/zggorjMs6N"                                                                                                                                                                                                                                                                                                                                                               
## [4751] "Twitter is becoming as bad as Facebook. Can we focus on positive things for a day? I promise there’s still a lot of great things in life and the world if you look for them. COVID-19 isn’t going anywhere anytime soon. Constantly focusing on it isn’t good for mental health."                                                                                                                                                                                                                          
## [4752] "Novel coronavirus(COVID-19)outbreak-Fighting new coronaviruses(Wuhan  pn... https://t.co/B6XGk46aBy <U+6765>自 @YouTube"                                                                                                                                                                                                                                                                                                                                                                                      
## [4753] "When you need a quick meal idea! https://t.co/y30AJue9jD\n\n#recipes #recipe #food #foodie #Foodies #RecipeOfTheDay #allyoucaneat #chicken #bacon #thursday #stayhomechallenge #StayHomeSA #coronavirus #CoronavirusPandemic #CoronavirusUSA"                                                                                                                                                                                                                                                                 
## [4754] "Fucking Twitter battles #COVID19 #trump #lockdown #economy #justice #trusttheplan #SocialDistanacing #pedowood #"                                                                                                                                                                                                                                                                                                                                                                                             
## [4755] "Nigeria: Addition of information on local measures to tackle the spread of coronavirus (COVID-19). Information on possible return flights to the UK following the closure of all international commercial flights into Nigeria until 23 April .. #TravelAdvice https://t.co/nhit2wbR23"                                                                                                                                                                                                                       
## [4756] "Warriors' Stephen Curry interviews nation's top infectious disease expert on Covid-19 - National Basketball Association News - https://t.co/mDMlHHh8Pn"                                                                                                                                                                                                                                                                                                                                                       
## [4757] "Today, despite these strange times, I submitted my final assignment for a @CIPR_UK Diploma in #InternalComms delivered by the @pracademy. The last couple of weeks have been a struggle, but now it's over, I wonder if I will miss working on non #COVID19 #comms  for a while?.... https://t.co/9y7wsCpBIY"                                                                                                                                                                                                 
## [4758] "10 potential ballot measures have been suspended including:\nIn AZ to reveal the source of political media funding\nIn MI to limit lobbying \nIn AK to create a citizen redistricting panel\n\n#coronavirus #Michigan #Arkansas #Arizona #election2020 #election \n\nhttps://t.co/DkXcMZVPwy"                                                                                                                                                                                                                 
## [4759] "#CNNTownHall Could I get CoVid-19 from a restaurant delivery?"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4760] "@GovMikeDeWine please make sure to wear an @Indians tie and hat at tomorrow's #COVID2019 briefing.  #GoTribe #OHIO"                                                                                                                                                                                                                                                                                                                                                                                           
## [4761] "Man, fuck COVID-19. This fucking asshole of a virus prevented me from getting myself some fuckin' spaghetti. I am very fucking hungry for spaghetti, but because of the quarantine and panic shopping I was not allowed to get them. I fucking hate Coronavirus more than my country."                                                                                                                                                                                                                        
## [4762] "I love this game #FM20 #Covid_19 https://t.co/qfE4OZS4lh"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4763] "Bhilwara's Tale of Negligence: Infected Doctors, Latest COVID-19 Case Hint at Possible Community Spread - News18..."                                                                                                                                                                                                                                                                                                                                                                                          
## [4764] "A group of lawyers are suing the Chinese government over coronavirus  https://t.co/ko8Tb1cD0I <U+2022><U+2022><U+2022> \n#CoronavirusOutbreak  #COVID19\n#coronavirus"                                                                                                                                                                                                                                                                                                                                        
## [4765] "United States reaches 100k+ covid-19 cases till today."                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4766] "@cpiranio @cpiranio we’re going to be providing different forms of assistance throughout the community going forward in light of the #coronavirus, including delivery service. Would you like to sign up?"                                                                                                                                                                                                                                                                                                   
## [4767] "Those who recover from #COVID19 shouldn't think they have lifelong immunity against any future COVIDxx. It will mutate. Different strains will emerge over time. (Remember *annual* flu jabs? Each one different from the year before, even different jab needed for different regions.)"                                                                                                                                                                                                                     
## [4768] "Goosebumps... #COVID19 https://t.co/TGnegl3fE1"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4769] "Prevent the Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/CzOYeNRZEU"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4770] "Coronavirus updates LIVE: Rising NSW COVID-19 cases may force state lockdown, Australian cases surpass 3000 https://t.co/UfCUnpVgq5 #Southendairport #sport https://t.co/vf3SlaWbtB"                                                                                                                                                                                                                                                                                                                          
## [4771] "Spice industry faces huge crisis after suspension of exports in wake of COVID-19 https://t.co/97eKtUGRxl https://t.co/QJgRKUAwIm"                                                                                                                                                                                                                                                                                                                                                                             
## [4772] "1,353 Deaths in The U.S. at the Time of This Post <U+2014>- COVID-19 is a Serious Crisis - This Virus must be taken Seriously if we want to stop the spread. Protect Yourself and Your Family. Fight The Spread! https://t.co/OuGLWwFmoV"                                                                                                                                                                                                                                                                     
## [4773] "@Serwaa_Amihere If Ghana has been exposed by COVID_19, what will you say about the almighty US, China, Italy and others where even the blind can feel the effects of the pandemic. Even our individual homes, have we acquired everything?"                                                                                                                                                                                                                                                                   
## [4774] "It’s heart-wrenching to watch people infected with covid-19 lie down helpless on the floor in the big economies like Spain.Kenya should prepare for the worse #COVID19KE #CurfewinKenya #Kenyans https://t.co/ltvCWOkNBG"                                                                                                                                                                                                                                                                                    
## [4775] "@MDHealthDept Your #COVID19 site now includes new stats, including \"ever hospitalized\" &amp; \"released from isolation.\" What exactly does the second one mean? Are these considered \"hospitalized and recovered/discharged\"? Does the delta indicate how many people are still hospitalized?"                                                                                                                                                                                                           
## [4776] "@GavinNewsom @CAgovernor @Fremont_CA @FremontPD @LilyMei4Fremont @ACSOSheriffs @AlamedaCountyDA @AlamedaCounty @AGBecerra @CDCgov @ScottHaggerty1 @BobWieckowskiCA @RepSwalwell Telsa had 2 known cases of COVID and still got to keep the factory open?\n\nhttps://t.co/4lCLKLH6nG\n\n$tsla"                                                                                                                                                                                                                 
## [4777] "In my new investigation for @BylineTimes I reveal how the speculative Oxford model which said Britons might already be developing herd immunity to #COVID19, making national headlines, was promoted by a PR agency tied to the govt's Nudge Unit and Ministry of Defence https://t.co/mB3hj05coD"                                                                                                                                                                                                            
## [4778] "Bruno's followed by homemade cookies (thanks for the <U+0001F36A> delivery, mom)  \n\n#CoronavirusOutbreak #CoronavirusPandemic #coronavirus #COVID19 \n#StayAtHome #StayAtHomeOrder https://t.co/Y8SvIkeVjY"                                                                                                                                                                                                                                                                                                 
## [4779] "@OgbeniDipo Buhari can never address Nigerians on covid-19.(coz he doesn't know about it).. Correct your hash tag to covik1-9 virus... Maybe then we go reason am."                                                                                                                                                                                                                                                                                                                                           
## [4780] "Offline: COVID-19 and the NHS<U+2014>“a national scandal” \n\nhttps://t.co/f1dgG65Vmz"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4781] "#TexasStateUniversity loaned four ventilators to Ascension Seton Williamson in Round Rock and is planning on donating two to Dell Seton Medical Center in Austin to help combat the #COVID-19 pandemic. #coronavirus https://t.co/9uX5doNRUg"                                                                                                                                                                                                                                                                 
## [4782] "Q1: Why is it important to practice #kindness during the coronavirus pandemic? #TEARtalk #Covid19 https://t.co/KGMxvGRZOE"                                                                                                                                                                                                                                                                                                                                                                                    
## [4783] "Just so you all know before President Blowhard tells you otherwise, the UAW opposes him trying to get right back to work in the plants. He’s going to have another battle on his hands. #TrumpPressConf #COVID19"                                                                                                                                                                                                                                                                                            
## [4784] "Links to COVID-19 information #wpgpoli \n\nFederal Information\nhttps://t.co/cVIH4wMbn3\n\nProvincial Information\nhttps://t.co/hGSHKNnO7i\n\nMunicipal Information\nhttps://t.co/bbXpaOU8LN https://t.co/zdFl7xnDqK"                                                                                                                                                                                                                                                                                         
## [4785] "@brainpop made a great video for kids about COVID-19 https://t.co/ZpCB37PQ9n"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4786] "@PrakashJavdekar @narendramodi @DDNational On public demand can you also help overcome #VentilatorShortage for #COVID19 patients?"                                                                                                                                                                                                                                                                                                                                                                            
## [4787] "But but but! He predicted #Coronavirus!!! <U+0001F914> We just didn't listen <U+0001F649><U+0001F64A> Don't you know ANYTHING <U+0001F644>\n#EpsteinsBuddy https://t.co/Hzu99lpNzo"                                                                                                                                                                                                                                                                                                                           
## [4788] "This guy is incredible. For the record, the medical community is NOT saying “step it back a second, you’re gonna be fine.” <U+0001F926><U+0001F3FB><U+200D>♂<U+FE0F> Listen to the frontline doctors who are actually taking care of patients and telling you to #stayhome, not the ones who just play doctors on TV. #COVID19 https://t.co/TvmTzAZql8"                                                                                                                                                   
## [4789] "Soapbox: Rethinking SaaS product access for SMBs during the COVID-19 crisis https://t.co/um0AW4oxTh https://t.co/UwIUbIlTS8"                                                                                                                                                                                                                                                                                                                                                                                  
## [4790] "Very shameful set of leaders.  Can you imagine how the Minister of Health was making noise all round that they were ready for #COVID19.  And the brainless, opportunist Lai Mohammed giving false assurances to Nigerians. Where are they now. Notin on d ground, if not @jidesanwoolu"                                                                                                                                                                                                                       
## [4791] "Universities in China are helping their government in research for antidote that can cure covid 19. Universities in Nigeria are closing together with nursery schools.. <U+0001F602>\n#COVID19Nigeria #Covid19Out #togetherwecanhelp #KickCOVIDOut #StayHomeSaveLives #StayHome"                                                                                                                                                                                                                              
## [4792] "Pandemic \nTime https://t.co/xLeh4uaFbQ"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4793] "Apple Covid-19 app https://t.co/6b7bcYWzMW"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [4794] "How long does #coronavirus survive on surfaces?<U+2063>\n<U+2063>\nPlastic: 72 hours<U+2063>\nStainless steel: 48 hours<U+2063>\nCardboard: 24 hours<U+2063>\nCopper: 4 hours<U+2063>\nAir via liquid droplets: About 3 hours<U+2063> <U+2063>\n\nSource: @NEJM, available at https://t.co/L5QpZMNKy6 https://t.co/18Bstq4Xz0"                                                                                                                                                                                
## [4795] "Most upcoming meetings and events have been canceled, including Leo Club, Teen Family Support groups, the Mom's Retreat in Galena, etc. If you have a question about an event, meeting, or program, visit our website for a list of closures/cancelations. https://t.co/BSF3mJHjEu"                                                                                                                                                                                                                           
## [4796] "@rob_dinh Thanks for the update! One of my co-workers wife had a colleague that just past from COVID-19."                                                                                                                                                                                                                                                                                                                                                                                                     
## [4797] "People are giving up on the stock market amid the coronavirus outbreak. Why they'll regret it https://t.co/vL5Sgcp2Ho"                                                                                                                                                                                                                                                                                                                                                                                        
## [4798] "Welcome package for people returning to #southkorea including protecting masks, disposable thermometers, sanitizer and even trash bag for contaminated garbage #covid19 https://t.co/aVE8Q513gW"                                                                                                                                                                                                                                                                                                              
## [4799] "@DisneyParks I demand a #VirtualReality program that allows anyone to take a vacation at a \"structurally-correct\" virtual @Disneyland and @WaltDisneyWorld (like stay at a hotel, visit the parks, eat, etc.); all using a virtual reality headset. #COVID19"                                                                                                                                                                                                                                               
## [4800] "Global GCs: New Lessons on COVID-19 Response https://t.co/Z5pQj1buQG via @corpcounsel"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4801] "Dominic Raab has been warned of the dire conditions hundreds of Scots stranded abroad are facing due to the #coronavirus pandemic\n\nhttps://t.co/qnLHEOckW3"                                                                                                                                                                                                                                                                                                                                                 
## [4802] "@dougducey @JaredDillingham @azfamily @SenMcSallyAZ @SenatorSinema AZ does not follow CDC guidelines: \"But at the encampment near the Human Services Campus in downtown Phoenix, mobile restrooms and hand-washing stations have not been provided.\" https://t.co/5jeSYDDLdM"                                                                                                                                                                                                                               
## [4803] "Everybody stay safe<U+0001F64F><U+0001F3FB><U+0001F62D>. #COVID2019 #CoronaLockdown https://t.co/nYeRJUKvlo"                                                                                                                                                                                                                                                                                                                                                                                                  
## [4804] "The U.S. now has more confirmed #COVID-19 cases than any other nation...Imagine having the audacity to refer to certain places as \"shithole countries\".... https://t.co/YIddjxURBb"                                                                                                                                                                                                                                                                                                                         
## [4805] "Along with being on top of it from the start, their people didn’t panic buy. This could of been us to but no... <U+0001F623><U+0001F92C><U+0001F97A>\n\nLesson from South Korea on how to slow the COVID-19 spread | ABC News https://t.co/MivhBkcepO via @YouTube"                                                                                                                                                                                                                                          
## [4806] "Hahaha...I found this one while watching ‘Chup Chup Ke’ movie\nWhen Covid-19 patient silently left hospital’s...Doctors &amp; nurses be like...\nJust for fun\n#CoronaLockdown #CoronaVirusUpdate #CoronavirusOutbreak https://t.co/sU5ZNtgwHM"                                                                                                                                                                                                                                                            
## [4807] "COVID-19: IPMAN assures Nigerians of supply, distribution of petroleum products https://t.co/9qi1svV9qS https://t.co/lNauGx9UTa"                                                                                                                                                                                                                                                                                                                                                                              
## [4808] "'The instinct is to hug and embrace people': Family plans funeral under COVID-19 rules https://t.co/b2Aaj0lRIr"                                                                                                                                                                                                                                                                                                                                                                                               
## [4809] "“Journalists can listen in to court proceedings from home, never previously permitted at the famous courthouse. It’s a groundbreaking step.”- comment from @kirkkorner about ways courts are facilitating media access as response to the crisis @HMCTSgovuk #coronavirus https://t.co/HMMZGSdXfa"                                                                                                                                                                                                         
## [4810] "A thread on Friday afternoon's #COVID19 update from #Yukon CMOH Dr. Brendan Hanley, and @Premier_Silver. https://t.co/bLHxNNwoxt"                                                                                                                                                                                                                                                                                                                                                                             
## [4811] "How Will Trump Use COVID-19 for War Isolation? https://t.co/8qJ8u9SIVR"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4812] "Who else misses concerts? We sure do! @neil_threedaysgrace  \n<U+0001F4F8>@johnindiveriphoto  \n.\n.\n.\n#musicphotography #threedaysgrace #edbd2019 #orlando #tour #tourphotographer #gig #gigphotographer #drummer #rock #rockandroll #htbarp #covid19 #musiwiremedia https://t.co/1FITrSjqhf"                                                                                                                                                                                                              
## [4813] "@BBCFOUR now if you fancy an engrossing &amp; exciting escape from #covid19 for a couple of hours. \n\n#Cromwell, starring Richard Harris &amp; Alec Guinness. \n\nIt is historically faithful &amp; quite spectacular, giving an insight into the leading up to &amp; horror of the English Civil War."                                                                                                                                                                                                      
## [4814] "Have you updated your digital properties yet? We’ve added a Digital Marketing Guide to help you! #COVID19 #Marketing #Audiology https://t.co/JOE5ZT0g3W"                                                                                                                                                                                                                                                                                                                                                     
## [4815] "Summer heat won’t magically stop the coronavirus outbreak https://t.co/NGsuYuGN5i"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [4816] "Just watched this wild documentary on COVID-19 in China. Thank god we don’t live in a communist country but I can totally see the US getting to this point. https://t.co/drOrDlljBV"                                                                                                                                                                                                                                                                                                                         
## [4817] "If children rarely contract or become ill with COVID-19, why is it important for them to isolate during this time? Dr. John Williams, chief of Children’s Hospital’s Division of Pediatric Infectious Diseases at UPMC Children's, explains why in this video: https://t.co/Ao7Vd1drgy"                                                                                                                                                                                                                     
## [4818] "Most state officials have ordered restaurants and bars closed, with the exception of delivery. But is food delivery safe? Here’s what you need to know. #covid19 https://t.co/2rXb4WnQXx https://t.co/ygJySP3HUx"                                                                                                                                                                                                                                                                                            
## [4819] "Cleaning and disinfecting are essential to preventing #COVID19 contamination from spreading into and throughout your household. It is recommended to clean visibly dirty surfaces BEFORE disinfecting.\n \nRead more: https://t.co/qLVPHWWwIz https://t.co/I5L0ziGkRw"                                                                                                                                                                                                                                        
## [4820] "Dr. Birx: Coronavirus Data Doesn't Match The Doomsday Media Predictions.\n#TruthMatters #coronavirus #WuhanVirus #ChinaVirus \nhttps://t.co/rnZ20FgxEH"                                                                                                                                                                                                                                                                                                                                                       
## [4821] "He brought a picture of a plane to the presser. What the fuck. #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [4822] "Due to the unforeseen circumstances of the COVID-19 pandemic, the 2020 Aubrey FFA Livestock Show and Sale will be canceled. We want to share a little about each student and their livestock projects from this year and ways you can support them. Read More&gt;&gt; https://t.co/ExyFxvzLY1 https://t.co/Y6Y0BFLjls"                                                                                                                                                                                        
## [4823] "The Humber Bridge Board has taken the decision to close the toll booths to protect members of staff, key workers and those travelling for essential reasons  https://t.co/metw16baoj via @HumBridgeNews"                                                                                                                                                                                                                                                                                                      
## [4824] "I got a question. If your partner &amp; you’re future child both got covid-19 &amp; they both needed a ventilator, but there’s only one who are you putting on the ventilator ?"                                                                                                                                                                                                                                                                                                                            
## [4825] "Tennessee unemployment claims surge 15-fold due to pandemic https://t.co/4DpGqCkRID #coronavirus #economy"                                                                                                                                                                                                                                                                                                                                                                                                    
## [4826] "My dad was watching NRL and I made a comment about how no one was in the crowds because of Covid-19 and then we both realised it was a replay from 2016"                                                                                                                                                                                                                                                                                                                                                      
## [4827] "He's still minimizing it. He BOLD-FACED LIED about the #covid19 survival times on surfaces.\n\n@Trevornoah \nYou need to talk to experts that are not aligned with the US government. You're helping tow the line. https://t.co/O3ivlSpoSW"                                                                                                                                                                                                                                                                   
## [4828] "@mschlapp Didn’t you (among others) say that this was a hoax and in-turn ended up exposing folks to COVID-19 at CPAC, having to self-quarantine? Or was that also “fake news”? Please stop. Just stop. You’re better than this."                                                                                                                                                                                                                                                                          
## [4829] "The Office *COVID-19* edition: https://t.co/WbB9uJBbNl"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4830] "Hey, China. Maybe you should have held your hackers off for a bit while COVID-19 ravaged the planet. Just a suggestion https://t.co/F8IKsRAkQt via @TheRegister https://t.co/bWiajOvaKc"                                                                                                                                                                                                                                                                                                                      
## [4831] "@_Am_ne_sia_ @margaritamimi1 @Kittyfoster11 @briantylercohen @realDonaldTrump https://t.co/wdCZRDxcus\n\nThe FDA and the CDC created their own testing guidelines which is why it took so long to scale testing in the US. Lots of people are claiming that we rejected WHO test kits, which would mean that WHO created test kits to distribute."                                                                                                                                                            
## [4832] "Viewpoint: COVID-19 Shows Us Why We Should Keep ICE Out of Hospitals https://t.co/3mELA4altc https://t.co/RFdh9aacw1"                                                                                                                                                                                                                                                                                                                                                                                         
## [4833] "Level 2 Research Operations Plans officially submitted.  The plan is: work from home. Don't come to campus.  And, yes, CompTaG has special permission to run \"experiments\" on our computers, including generating random point sets!\n\n#covid19 #research #SocialDistancing @dlmillman"                                                                                                                                                                                                                    
## [4834] "Thank you, @sherrodbrown and @robportman, for passing the latest COVID-19 stimulus package, which allocates $130 billion to hospitals and health systems. Your leadership on this issue has moved our nation one step closer to an end to this global pandemic."                                                                                                                                                                                                                                              
## [4835] "@amandabarren @MorriseyWV WSAZ if everyone is ordered to stay inside. Then why is the ABORTION CLINIC in Charleston WV open?  The security guard is using vital PPE’s our hospitals need #ProLife #coronavirus https://t.co/W1q0MZoToJ"                                                                                                                                                                                                                                                                      
## [4836] "#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 Check and listen now Midnight Kahuna_Brother Sun, Sister Moon by Midnight Kahuna @midnightkahuna on https://t.co/4zZsRPZYwX https://t.co/IDrj62GPk1"                                                                                                                                                                                                                                                                                                  
## [4837] "A decent night sleep, followed by waking up and realizing, \"ah shit, another day of Covid-19 in the world\" is getting really old."                                                                                                                                                                                                                                                                                                                                                                          
## [4838] "California reports 1 new case bringing total confirmed cases there to 3,829 and 78 total deaths, with 831 new cases and 13 new deaths reported today.\n\n#CoronaVirus #Covid19 #CoronaVirusOutbreak"                                                                                                                                                                                                                                                                                                          
## [4839] "\"Coronavirus: Cases surpass half a million worldwide\" #Coronavirus https://t.co/PiS4TcjkpB"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4840] "Soldiers will be deployed to ensure overseas travellers comply with mandatory self-isolation rules as strict new COVID-19 quarantine measures come into effect, forcing all returning Australians into hotel rooms for two weeks.\nhttps://t.co/OIAE9I5pUz"                                                                                                                                                                                                                                                   
## [4841] "@hughhewitt @realDonaldTrump Hugh, if you weren't such a closed minded conservative, you'd be able to hear how much bullshit Drumpf spews. A press briefing is not the place for him to whine about how much he spent to run for office. Capice? #2MinutesHomage #CommanderDementedBooBaby #Covid_19"                                                                                                                                                                                                         
## [4842] "Riding through the Adelaide Hills (yes I was solo) when I came across this art on a locals fence <U+0001F1E6><U+0001F1FA><U+0001F49B> #covid19australia #coronavirus https://t.co/psctK7MQvk"                                                                                                                                                                                                                                                                                                                 
## [4843] "@BBCRadio4 #anyquestions @ilorafinlay #COVID19 we must not forget children and particularly child carers at the moment."                                                                                                                                                                                                                                                                                                                                                                                      
## [4844] "NYC ER nurse Covid-19 Discussion/Q&amp;A https://t.co/55pGQmxNsj"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [4845] "A 10-year-old boy in Florida has tested positive for #coronavirus. He was one of 23 new cases that tested positive on Wednesday, &amp; someone strikingly young for an area that originally had most of its cases in people aged 65\n\n#CoronavirusOutbreak  #COVID19 https://t.co/npx37tdm3H"                                                                                                                                                                                                                
## [4846] "#Trump @realDonaldTrump Please finish the wall (and even a little bit higher), so that nobody can escape #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                        
## [4847] "#coronavirus daily data \n#USA NEW CASE 17166 \n#CHINA NEW CASE 55\n#ITALY NEW CASE 6203\n#SPAIN 8271\n#GERMANY 6615\n#INDIA NEW CASE ONLY 55\n\nthank you @narendramodi #PMO for protect India. https://t.co/UbTUIgHKoI"                                                                                                                                                                                                                                                                                     
## [4848] "I just think it’s a hoot that I regularly stock up on one kind of hand sanitizer because I’m emetophobic, but it’s NOT the kind that kills COVID-19. <U+0001F611>"                                                                                                                                                                                                                                                                                                                                         
## [4849] "Context Discriminant Analysis on latest NEWS \n2020/03/27 23:01:52 PST\nTop level Topics -coronavirus,coronavirus,covid-19,covid-19,health,health\nhttps://t.co/SoUeftYaBK"                                                                                                                                                                                                                                                                                                                                   
## [4850] "COVID-19: What you need to know about Health and Safety and Working On-Site  \nhttps://t.co/WqwCTMhEGr"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4851] "@realDonaldTrump You can spend billions of $ on military, arms and wars miles away from your homeland every year, but you can't afford to test  your own citizens for #COVID19?!?\nWhat am I missing here?"                                                                                                                                                                                                                                                                                                   
## [4852] "How does one #StayAtHome  in a society that depends on everyone being out??\n#COVID19Kenya #KomeshaCorona #COVID19"                                                                                                                                                                                                                                                                                                                                                                                           
## [4853] "From Silchar to Aligarh, medical colleges prep for COVID-19 https://t.co/rZ1KPaYNxo"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [4854] "How to protect your self from the corona virus.\nhttps://t.co/S006RsGpbK\n\n#CoronavirusOutbreak #COVID19outbreak #COVID19 #USA #stage3 #WorkFromHome"                                                                                                                                                                                                                                                                                                                                                        
## [4855] "From the Dome to Your Home: The House and Senate are in recess. Read this week’s report for information on COVID-19 resources. https://t.co/DaerOcqN3Z #StrongSCcities https://t.co/c9YTPfSHFl"                                                                                                                                                                                                                                                                                                              
## [4856] "Spring is here in Memphis and with the warmer weather hopefully a break in the number of #COVID2019 cases.  Praying for those in the hospital!  Bless those who are caring for all who are affected!  @SurgeryUTHSC @uthsc @MemphisDocs @LeBonheurChild @StJude #N95 #SocialDistancing https://t.co/6dSdxLVF0I"                                                                                                                                                                                               
## [4857] "Covid-19 has help somehow shaa\nI mean, before who knew about NCDC..\n#TBJoshua \n#StayAtHomeAndStaySafe \n#PresidentCovik \n#davido \n#staysafe"                                                                                                                                                                                                                                                                                                                                                             
## [4858] "Across Appalachia, community newsrooms<U+2013> from daily papers to online publications to rural weeklies<U+2013> are adapting to covering the novel coronavirus in new and innovative ways. https://t.co/S7RO5xl2xi https://t.co/vKwA3q9hTN"                                                                                                                                                                                                                                                                 
## [4859] "Obscure 1990’s SciFi show “Sliders” on point with the current state of affairs. #sliders #90s #coronavirus https://t.co/LduwaHYmyS"                                                                                                                                                                                                                                                                                                                                                                        
## [4860] "CANCELED: The alumni baseball game gathering previously scheduled for Tuesday, April 7 in Indianapolis has been canceled due to COVID-19. We will miss seeing you, but keep in contact! Drop us a line and let us know what you’re up to! #TogetherGU #AlumniGU"                                                                                                                                                                                                                                             
## [4861] "County of San Diego reports 58 new confirmed #coronavirus cases, our highest daily total, bringing the total to 341. Testing is still limited and health officials estimate the actual total is 10x higher with the numbers still trending higher. #flattenthecurve #inthistogether https://t.co/C15vyM1uXS"                                                                                                                                                                                                  
## [4862] "@jemobabu Most coronavirus deaths reported in a day:\n\n- Italy: 919\n\n- Spain: 773\n\n- China: 254\n\nIf this doesn't make one has sense to care about himself as others.... Then go out and get your death dose. And in Kenya, you know a police death is faster than #COVID19"                                                                                                                                                                                                                            
## [4863] "@Gunjantripathi6 @samirs45678 @MedhajNewsApp Sir can we have any forecast or deadline of covid 19 as per our one and only samir sir. As I have seen his forecasts were true in the past.plz sir we will have huge mental relief.plz sir write something."                                                                                                                                                                                                                                                     
## [4864] "The US$800 million will go towards producing medical supplies used to fight COVID-19, and in ad credits to government and health organizations and businesses.\n#YahooFinance\nhttps://t.co/ZnFVknZqly"                                                                                                                                                                                                                                                                                                       
## [4865] "THIS is ridiculous. \n\nMy uncle is about to tend to a possible patient with COVID-19 and this is all the hospital has to protect him.\n\nHe is trying to keep a great attitude about the whole thing though... https://t.co/K9umdLOgtJ"                                                                                                                                                                                                                                                                      
## [4866] "I miss the days when you sneezed and people would say “Bless you”, now they just look at you all weird “get the fuck away from here” <U+0001F923><U+0001F923><U+0001F923>\n#CoronaVirus<U+0001F5E3>"                                                                                                                                                                                                                                                                                                      
## [4867] "Still paying for your gym membership during COVID-19? Here's what you can do to freeze it https://t.co/OO1NqB5sAK"                                                                                                                                                                                                                                                                                                                                                                                            
## [4868] "The display of solidarity last night with NHS workers was heartwarming.\n\nWe must urgently work to ensure that all our NHS workers have access to Personal Protective Equipment.\n\nI am committed to continuing to listen and to work tirelessly on behalf of healthcare staff.\n\n#COVID19 https://t.co/0VdX7pBF2p"                                                                                                                                                                                        
## [4869] "@nxcare The A9 Stratford to Stansted service has been cancelled but the link to the refund form on your Covid 19 website is not working"                                                                                                                                                                                                                                                                                                                                                                      
## [4870] "I’ve read about the UK using levaquin as part of their chemo regimen to attack cancer cells. Wonder if it would help attack the COVID-19..."                                                                                                                                                                                                                                                                                                                                                                 
## [4871] "#HMRC has confirmed that #businesses should cancel their #VAT #DirectDebit if they wish to defer VAT payments until 30 June 2020.\n\n#COVID19 #Coronavirus #Cumbria https://t.co/XHpr8bdGzy"                                                                                                                                                                                                                                                                                                                  
## [4872] "Toilet paper's becoming harder to find each day, and many elderly and disabled are going without. But @Woolworths and Meals on Wheels have come to the rescue, teaming up to deliver some essential goods. https://t.co/16XT1hF4ho @annamcgraw_7 #coronavirus #7NEWS https://t.co/HCOdmgFVCO"                                                                                                                                                                                                                 
## [4873] "Please watch this hilarious video of me playing horn. Content that doesn’t include covid-19<U+263A><U+FE0F> https://t.co/Lzr6Se3mAL"                                                                                                                                                                                                                                                                                                                                                                         
## [4874] "#Coronavirus update from @scotfooddrink https://t.co/AseNRk0SRC"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [4875] "Literally just down the road....\n\nAs the #CoronaVirus pandemic continues to claim lives, a temporary mortuary has been constructed in the main car park of the South #Essex Crematorium at #CorbetsTey, #Upminster. https://t.co/FPOguMal0H"                                                                                                                                                                                                                                                                
## [4876] "Are you going to capitalize any previously accrued interest, like @usedgov @MyFedLoan are doing with the emergency administrative Covid-19 forbearance? If so, you probably aren't going to help as many as you're giving off the impression of helping. At least be honest. https://t.co/rY4pM5BFVq"                                                                                                                                                                                                         
## [4877] "Well that was dramatic. #COVID19 #coronavirus #CoronaLockdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4878] "@TorontoStar For the sake of Covid-19 infection control,( +C-Diff ,Flu ,MRSA, VRE) Big Policy changes are needed. Full-time positions need to be created , to stop healthcare workers from working three different jobs/care home facilities etc.  to get a full time hours. It’s important for H&amp;S https://t.co/lpaNkk2piK"                                                                                                                                                                             
## [4879] "Each institution’s allotted amount will be determined by a formula based on full-time equivalent enrollment of Pell Grant recipients at an institution (75 percent) and using full-time equivalent enrollment of non-Pell students (25 percent). #highered  #COVID19 #CapinEd https://t.co/TUPhI7aUVy"                                                                                                                                                                                                       
## [4880] "For those that actually believe China’s COVID-19 death numbers #ChinaLiedPeopleDied https://t.co/zvsiKwBUXu"                                                                                                                                                                                                                                                                                                                                                                                                 
## [4881] "@suttontownhall @nickhorner @RoyalSutColTC Looking forward to the town hall helping the community during #covid19"                                                                                                                                                                                                                                                                                                                                                                                            
## [4882] "SIR model of infection. I really love the animations in the @3blue1brown  videos. #CoronaLockdown #coronavirus #selfisolating  #3blue1brown\nhttps://t.co/bNSSKOtgha"                                                                                                                                                                                                                                                                                                                                         
## [4883] "Professor Robert @RBReich just said that we need to put the economy in what I would compare to a medically induced coma and bring it back after the medical problem of COVID-19 has been dealt with successfully. People’s lives must come first - and deal with the money later."                                                                                                                                                                                                                           
## [4884] "@segalink @MBuhari So he is receiving  treatment for COVID-19 and working at the same time"                                                                                                                                                                                                                                                                                                                                                                                                                   
## [4885] "Learning to live with 6 feet of separation ain’t easy. <U+2014> Hive https://t.co/kF4AwriCut #covid19 #hive #pandemic #stayathome #shopping #6feet #socialdistancing #canada #starwars #darth"                                                                                                                                                                                                                                                                                                               
## [4886] "Stop it! Stop it now! #DeborahBirx #koolaid #COVID19 https://t.co/RJdDDMoQ0R https://t.co/Nl7M2EB1dR"                                                                                                                                                                                                                                                                                                                                                                                                         
## [4887] "@RahulDev005 @MoHFW_INDIA @drharshvardhan @IndianMedAssn @ndtvindia Despite giving assurance of withdrawing the ads, if the advertiser continues with claims regarding efficacy against #coronavirus #COVID kindly report to @moayush @AIIA_NDelhi @MIB_India Stay vigilant, #StayHomeStaySafe #FollowASCI"                                                                                                                                                                                                   
## [4888] "Good night, South Africa <U+0001F1FF><U+0001F1E6> Tomorrow we wake up to a new normal. Let us do it right, so it's only 21 days. \n #LockdownSA #21daysLockdownSA #GautengCOVID19 #COVID19SouthAfrica #COVID2019"                                                                                                                                                                                                                                                                                             
## [4889] "#DonaldTrump: Navy vessel with medical supplies coming to #NYC to serve as a hospital. Should be arriving on Monday. \"I think I'm going to go out and kiss it goodbye. ... We'll be waving together. I suspect the media will be following.\" #coronavirus #TrumpPressConf"                                                                                                                                                                                                                                  
## [4890] "What the world needs now.... https://t.co/kQ0lq1vzvK #COVID19 @BerkleeCollege students"                                                                                                                                                                                                                                                                                                                                                                                                                       
## [4891] "What an absolute liar you are. Nothing changes then. Even in a global crisis, your still a despicable human being. #COVID19 https://t.co/glSpvBNXes"                                                                                                                                                                                                                                                                                                                                                          
## [4892] "In the latest numbers as of March 26 noon in new maps released by the health director-general yesterday,<U+00A0>the number of hotspots designated as red zones has continued to grow in tandem with the increase in the total cumulative confirmed Covid-19 cases. \n\n#covid19 #malaysia https://t.co/9PjOZgiYRq"                                                                                                                                                                                            
## [4893] "Find out what you need in order to get tested: https://t.co/Gx0ur6Enya\n\n#COVID #COVID<U+30FC>19 https://t.co/DHKiQ9Xvuh"                                                                                                                                                                                                                                                                                                                                                                                    
## [4894] "Number of days to double #Covid19 confirmed cases (March 26). Canada: 2. USA: 4. World: 7. China: 45. Italy: 7. Spain: 5. Germany: 5. Iran: 11. France: 5. Switzerland: 5. UK: 5.  South Korea: 24.  Netherlands: 5. Austria: 5. Japan: 14.  Singapore: 8. https://t.co/oNmPLoHCwW"                                                                                                                                                                                                                           
## [4895] "we have upheld the national &amp; international laws, however, unfortunately,the state authorities have been abducting &amp; extra-judicially murdering the Baloch dissidents,carrying out military operations in #Balochisthan .\n\n#COVID2019  \n#Enforceddisappearances  https://t.co/gsPNycuQs1"                                                                                                                                                                                                          
## [4896] "OKC's Gallinari helping fund COVID-19 test kits https://t.co/mqQaPyNmeu"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4897] "162 cases of Covid-19 from the Ruby Princess in NSW alone. Who has taken responsibilty and apologised?"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4898] "Which system is better equipped to prepare for, manage, minimise or avert a major crisis such as the Covid-19 pandemic? #COVID19 #COVID<U+30FC>19 #covid19UK please retweet for big sample, constructive comments welcome."                                                                                                                                                                                                                                                                                   
## [4899] "Stay at home guys.... #CoronaVirus #AnimalCrossing #Day3 #ACNH #NintendoSwitch https://t.co/N0aGrPvuUc"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4900] "\"I've always wanted to be a neighbourhood ~influencer~.\"\n\n- my dad while putting up the Christmas lights #coronavirus"                                                                                                                                                                                                                                                                                                                                                                                    
## [4901] "#COVID19 Checklist \n\n<U+0001F447><U+0001F3FE> https://t.co/nfdQ4zC6g0"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4902] "There are now 1,170 cases of #COVID19 #Coronavirus in #NewOrleans, 57 of which resulted in death. \n\nContinue to stay home except for essential needs. https://t.co/XOY9kQgJ6A"                                                                                                                                                                                                                                                                                                                              
## [4903] "@BAOMS_Chair More here on all PPE masks gowns gloves hand hygiene https://t.co/Ky3bk8V6gB @EvidenceAid"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4904] "https://t.co/h4GOyE3dLS\n\nWhy exercise is important for your hair during lockdown covid 19 https://t.co/S985DIFmnu"                                                                                                                                                                                                                                                                                                                                                                                          
## [4905] "We're supposed to be having #FUN by this age of our time , we lost our teen years to wars , threatening and displacement.\n\nAnd now this #Covid_19 shits going on ...\nIt's apocalypse\n\n#StayHome \n#StayAtHome \n#WeAreStillYoung"                                                                                                                                                                                                                                                                        
## [4906] "<U+0001F43B>Senior Spotlight: MSU softball<U+0001F94E> senior pitcher Stephanie Rundlett discussed some of the impact of the #coronavirus, the season getting cancelled and plans for the future.\nRead<U+0001F199><U+0001F449>https://t.co/Hksic2cuWW\n#TheMorganWay #MEAC\n#GoBears<U+0001F537><U+0001F536> https://t.co/xlA97OFL12"                                                                                                                                                                        
## [4907] "This is being opportunistic and selfish.\nTrying to steal African Professionals and leave Africa vulnerable to #COVID19 https://t.co/WxxUNzyXsb"                                                                                                                                                                                                                                                                                                                                                              
## [4908] "Well Said!\n\n“The fact is we save our economy by first saving lives, and we have to do it in that order.” ~ Mike DeWine, Gov of Ohio (R)\n\n#coronavirus"                                                                                                                                                                                                                                                                                                                                                  
## [4909] "*sighs heavily*\nWe know, we know\n\nHere you go: https://t.co/a8nP9cWE8q https://t.co/M4M2tAn78i"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4910] "Join @HealthiestIowa #HealthyChoicesCount #SocialMediaChallenge for Iowans of all ages! Post a photo or video of yourself (or family members) participating in healthy habits on Facebook, Twitter or Instagram. Learn more, https://t.co/HiPy6WY9nh"                                                                                                                                                                                                                                                         
## [4911] "Loving #GreatBrtishHomeChorus, over 100k people have joined! Proud to be #GBHCAlto, 18000+ singing along this afternoon. #COVID2019 challenged through music."                                                                                                                                                                                                                                                                                                                                                
## [4912] "COVID-19: Commission creates first ever rescEU stockpile of medical equipment https://t.co/xNt2uc4Asq"                                                                                                                                                                                                                                                                                                                                                                                                        
## [4913] "Below is a link to a video explaining what the survey is about. My aunt in california is onto something with her cannabis research and how it affects covid 19. PLEASE if you have tested positive take the survey!\nHttps:/www.cannabisque.gov/covid19\nhttps://t.co/kYw7grerE2"                                                                                                                                                                                                                             
## [4914] "Love home office days but I miss traveling and I kinda miss you guys @Marriott it won’t be much longer! #coronavirus lockdown"                                                                                                                                                                                                                                                                                                                                                                               
## [4915] "Word on the street is that Ebury Forex is asking clients with profitable open positions for margin calls, sounds like somebody is in trouble, perhaps the first of many? https://t.co/Zl2XdUNpld\n\n#Forex #fx #GBP #COVID2019"                                                                                                                                                                                                                                                                               
## [4916] "@kidungprasetia @muddrockk looh sopo nick e?, covid-19 a?,"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [4917] "PRAYING MEDIC DECODE: Q, Trump, COVID 19 &amp; What's Coming https://t.co/pdCyIsOI3s via @YouTube"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4918] "CoronaVirus Updates: Informational dashboard provides continuous updates on COVID-19 in San Antonio - FOX 29 https://t.co/oX56Esfjlz #CoronaVirusUpdates"                                                                                                                                                                                                                                                                                                                                                     
## [4919] "When they said you were too old and fragile to be PM, but now that young clown has COVID-19.. <U+0001F4AA><U+0001F3FB><U+0001F468><U+0001F3FB><U+200D><U+0001F9B3><U+0001F9A0> https://t.co/V4I1vLpVdU"                                                                                                                                                                                                                                                                                                       
## [4920] "#SouthAfrica: COVID-19 Lockdown Update I Minister Patel says larger part of the economy shut down https://t.co/CQf9pikq4M"                                                                                                                                                                                                                                                                                                                                                                                    
## [4921] "@ByronYork Pres Trump's ratings are 60%. Democrats, Independence &amp; Republicans are seeing a real leader Pres Trump. And millions more people are seeing how fake news is lying to their faces. Now fake news is threatening the health of every single American by not airing #CoronaVirus updates. https://t.co/Sr2alofKR6"                                                                                                                                                                              
## [4922] "Be honest! Don't pretend it's business as usual when it's clearly not. Try to be positive but keep the information flowing #DigitalTaunton #COVID2019"                                                                                                                                                                                                                                                                                                                                                        
## [4923] "Arizona Waives Emissions Testing For Seniors To Reduce COVID-19 Risk https://t.co/l4jfYTvR4A"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [4924] "‘Slight chance of optimism’ that COVID-19 growth rate slowing https://t.co/26PWnurtIk #BC #COVID19Canada"                                                                                                                                                                                                                                                                                                                                                                                                   
## [4925] "Our Executive Director, @NoreenSpring spoke with @brendanmarkcole of @Newsweek on experiencing a spike in calls to our Find Food Hotline due to the massive impact #COVID19 has had on vulnerable communities &amp; the state of hunger across the country. https://t.co/EiARUoAua4"                                                                                                                                                                                                                          
## [4926] "IMPORTANT: The CDC just confirmed that #coronavirus alters the shape of a woman’s index toe. If you need help spotting the change please send me a picture of your feet and I will help you identify it."                                                                                                                                                                                                                                                                                                    
## [4927] "@GSTTnhs are working very hard to help our #COVID19 patients\n\nI want to personally thank the\n @GSTTanaesthesia team for their innovation and support,  the  @GSTT_ICU team for their drive and compassion and the  @LClinical for their dedication to patients\n\n#proud #honoured \n#NHS"                                                                                                                                                                                                                 
## [4928] "https://t.co/ch8F8S4cx5\nCovid-19 spreading countries visualizer link #COVID19 #india #CoronaVirusFacts https://t.co/DcPx7GXBQg"                                                                                                                                                                                                                                                                                                                                                                              
## [4929] "Kind of a jolt when you check the weather and your favorite weather site now includes a COVID-19 tab. https://t.co/BjpnOPC3XX"                                                                                                                                                                                                                                                                                                                                                                                
## [4930] "@vmochama WTF?  Not only is #COVID19 worse in USA, California is particularly impacted. Plus, we don't have Tim Hortons in California!!!!"                                                                                                                                                                                                                                                                                                                                                                    
## [4931] "Looks promising so far  , fingers crossed. #COVID19 #coronavirus https://t.co/xS6McJL9hb"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [4932] "REACTing bi-weekly shares a selection of the most relevant articles published on COVID-19. \n\nhttps://t.co/cFpHYMAGpC"                                                                                                                                                                                                                                                                                                                                                                                       
## [4933] "Another well played. To all the people in our street doing #clapforNHS #COVID2019 Esp as two of our neighbours are working in critical care #NHSheroes"                                                                                                                                                                                                                                                                                                                                                       
## [4934] "Who Going To The #EasterMassacre <U+0001F423>\n#COVID2019 \" That Aint Right!\"\n#StayHomeSaveLives <U+0001F691> https://t.co/jxAQOZ87zM"                                                                                                                                                                                                                                                                                                                                                                     
## [4935] "@bukmstr39 @toddstarnes Perspective: visit your tweet every 3-4 days for the next two months.  Then add the numbers for the dead that the hospitals don't bother counting as Covid-19 stats since they don't test obvious critical cases or corpses.   This is 2x as contagious and at least 10x as deadly."                                                                                                                                                                                                  
## [4936] "@jdanton I'm here for my 2024 COVID 19 booster"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [4937] "From 1.26.20. @realDonaldTrump just basically used this line, But for the #coronavirus .......\n\n@federalreserve @POTUS and everyone else can wash their hands of everything and blame the virus. \n\n@RepThomasMassie is right, something isn't right. The stimulus bill is a #trojanhorse https://t.co/OcuybgnKLL"                                                                                                                                                                                         
## [4938] "Some thoughts on how donors should use the COVID-19 crisis to assess non-profits’ long-term strengths and potential -&gt; https://t.co/IPIjXduEC4 via @GenevaGlobal"                                                                                                                                                                                                                                                                                                                                         
## [4939] "Good woman,\n\nMust you further your education before deciding to render humanitarian services to your country?? It's unfair.\nI'm sure most microbiologists presently conducting research &amp; investigations in labs about #COVID<U+30FC>19 virus don't have such outstanding result of yours. https://t.co/eSpCoagdtI"                                                                                                                                                                                    
## [4940] "75% of consumers think that brands should communicate their activities, while 78% think that they should assist in our daily lives. Added pressure on brands during the #coronavirus crisis &gt; https://t.co/jefmIMDxvV\n\n#coronaupdate #business #marketing"                                                                                                                                                                                                                                               
## [4941] "We always mocked that products made in China expire soon!\n\nChina proved us wrong by developing #COVID19!"                                                                                                                                                                                                                                                                                                                                                                                                   
## [4942] "The PM was panicked into abandoning a sensible Covid-19 strategy, and has plunged society into crisis \n\nYet another journo with most impressive medical qualifications gives us the benefit of her superior knowledge!"                                                                                                                                                                                                                                                                                     
## [4943] "@Orca23456 @KevinMKruse @RightWingWatch @AG_USA Apparently they might get sued by the family members of folks who die because they contracted COVID-19 at church."                                                                                                                                                                                                                                                                                                                                            
## [4944] "Pope Francis: Why are you afraid? Have you yet no faith? Faith begins when we realize we are in need of salvation, we are not self-sufficient @rapplerdotcom #COVID19 #coronavirus"                                                                                                                                                                                                                                                                                                                           
## [4945] "What you need to know about the new COVID-19 benefits program https://t.co/EmK87qM0ei"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [4946] "In hindsight, whose Waterloo is it? .. And whose story is it anyway? #Saccades is a one-year sequence of undeveloped photo films, one a week, and the story is in your hands... Check out  https://t.co/eis2sYFw8r #art #London #China #US #lockdown #photography #Waterloo #COVID19 https://t.co/zr2s19pDBP"                                                                                                                                                                                                 
## [4947] "In this special #AIBMarketTalk podcast, Cathy Bryce, Head of Corporate, Institutional &amp; Business Banking discusses the impact of Covid-19 on businesses and lessons learnt so far, with AIB’s Oliver Mangan &amp; Tom Hall.  Listen here https://t.co/YjHFw3E1oq https://t.co/YomCrsRabW"                                                                                                                                                                                                                
## [4948] "“No accountability. No clarity. Few specifics.” <U+2014> In other words, typical #Trump <U+0001F621> <U+2014> hope voters in #Michigan #Pennsylvania #Wisconsin #Florida #Ohio #Iowa #Texas #Arizona #Georgia #Tennessee <U+0001F9D0> remember #POTUS downplayed the #coronavirus if you get it <U+0001F620> https://t.co/Z2hTUkx5Hs"                                                                                                                                                                       
## [4949] "Every #American needs to see this #CCP #XiJinpingVirus #ChinaLiedPeopleDied #coronavirus garbage. #ChinaLiedPeopleDie if this is the best that #BeijingBros can do they are screwed and they know it #ByeByeCCP https://t.co/45G1msjsVQ"                                                                                                                                                                                                                                                                      
## [4950] "#Avs player tested positive for coronavirus and has recovered.\nhttps://t.co/ZyB0nY1hZ3"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4951] "The Cheesecake Factory : Cheesecake factory should pay employees during COVID-19 Outbreak. - Sign the Petition! https://t.co/znO3cru9UR via @Change"                                                                                                                                                                                                                                                                                                                                                          
## [4952] "@ChinaDaily @MFA_China @chinaorgcn @Echinanews \n@SCMPNews\n\n#China spread #ChineseVirus19 i.e. nCOVID-19\n\n#COVID19 #CORONA is A CHINESE VIRUS.\n\nI Repeat, #COVID19 is #ChineseVirus.\n\n@sardanarohit @aajtak \n@ZeeNews @republic \n@IndianExpress @indiatvnews \n@narendramodi @PMOIndia https://t.co/DnKlZtwHPq"                                                                                                                                                                                     
## [4953] "@LessArmstrong @YouTube Siobhan are you okay? I heard via Caroline you have Covid 19. Sending my love and hopefully a speedy recovery x"                                                                                                                                                                                                                                                                                                                                                                      
## [4954] "#covid_19 #daily #truth #time <U+0001F92B> \n1. I love #running &amp; working out <U+2014>but with other #people around <U+0001F3C3><U+0001F3FB><U+0001F3CB><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F62D> \n2. Newporters: You can make #eyecontact with someone running by who #smiles &amp; you won’t get #coronavirus <U+0001F30A>… https://t.co/m0TzlrGxSa"                                                                                                                                                
## [4955] "How many of you saw it as PENJARA<U+2014>KAN SOSIAL rather than PEN-JARAKAN SOSIAL first time around? Well I’m one haha #Covid_19 #Social_Distancing #MCO"                                                                                                                                                                                                                                                                                                                                                   
## [4956] "As we practice social distancing, many seniors &amp; vulnerable people in our community are facing challenges with picking up essentials, such as groceries, &amp; caring for themselves. Call and check on them to make sure they have what they need. More: https://t.co/yHpsfltg8d. https://t.co/ppWlTydIWs"                                                                                                                                                                                               
## [4957] "@Bishop_PastorRW @LakeShowDoe @JasonSpencer_LD @Jaimon10Gl @BleacherReport way less than half and losing more of his flock everday due to this covid 19 because of his stupidity..."                                                                                                                                                                                                                                                                                                                          
## [4958] "Criminal defense attorney discusses work limitations due to COVID-19 - WKRG News 5 - https://t.co/mtRGVzcExJ"                                                                                                                                                                                                                                                                                                                                                                                                 
## [4959] "Here's something you can do *right now* to help save the lives of children during the #COVID19 pandemic. #personhood https://t.co/F4xzp6MrqP"                                                                                                                                                                                                                                                                                                                                                                 
## [4960] "Help slow the spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download the app https://t.co/MZORZwkTEP"                                                                                                                                                                                                                                                                                                          
## [4961] "@CassieY4 I had a BiPAP for a couple of days, then started getting better. I had interstitial pneumonitis, but probably not COVID-19. It was torture, because I was not allowed to drink the whole time. Got thrush and was unable to speak."                                                                                                                                                                                                                                                                 
## [4962] "@RoseKeffas_G Same here Sis!                                                               \nTogether we will impact and empower women and youth in Africa. Can't wait to have you at the #Solution17 Studio. Please stay save, the scourge #COVID19 will be wiped out shortly by God's grace"                                                                                                                                                                                                                
## [4963] "TB JOSHUA about to be dragged like dog wey enter mosque tomorrow #CoronaVirusInNigeria #COVID2019 https://t.co/KR2NupKL5X"                                                                                                                                                                                                                                                                                                                                                                                    
## [4964] "Government communicators are key in getting information out to their communities, especially as the #coronavirus crisis continues. Here are some tips on effectively communicating during this time from our #GSMChat community. #TogetherGSM  #lesm #smem https://t.co/vlGKmuT77k"                                                                                                                                                                                                                           
## [4965] "Athens COVID-19 update for 26 March 2020 can be viewed at https://t.co/aD116u3uqq. A third case has been reported for McMinn County."                                                                                                                                                                                                                                                                                                                                                                         
## [4966] "Healthy Father Of Six Dies of Coronavirus In Texas\n\n'It can kill anyone': 'Perfectly healthy' Texas dad dies from virus https://t.co/jpmfr8LsyP"                                                                                                                                                                                                                                                                                                                                                            
## [4967] "Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/eC2A97GuCj"                                                                                                                                                                                                                                                                                                                                                                                               
## [4968] "Free and family friendly: What to watch while you stay at home | CBC News https://t.co/lx8X3cj6qE"                                                                                                                                                                                                                                                                                                                                                                                                            
## [4969] "My art with a message about #coronavirus https://t.co/M7BeI1NLlT"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [4970] "@MikeLMower y’all trying to burn out that COVID-19 <U+0001F602><U+0001F525> https://t.co/lM43Rj9Pk6"                                                                                                                                                                                                                                                                                                                                                                                                         
## [4971] "Barber shop closed because of COVID-19? We got precedent for that! Wanna go 1777 levels? Oh yeah, grow that hair out, slick it back, put it in that ponytail. Maybe smear some bear grease in - can use EVOO in a pinch - and throw some flour on it to look like a fancy officer https://t.co/V0tH2IIFv6"                                                                                                                                                                                                    
## [4972] "Covid-19: A New Humanity, A New World -By Owei Lakemfa https://t.co/H40gJHeIAs https://t.co/D2p9jz5cAj"                                                                                                                                                                                                                                                                                                                                                                                                       
## [4973] "@AOC Screw the illegals, we want to take care of #Americans first.   If you don't like it you can leave with them too.\n\nYou are a #Coronavirus\n\nHere is a present for you #MAGA #MAGA #MAGA \n#Trump2020 #Trump2020 #Trump2020 https://t.co/z9rtdGO6pA"                                                                                                                                                                                                                                                   
## [4974] "Philips ramps up production in response to COVID-19 pandemic - News | Philips https://t.co/Nnjpo4DPP0"                                                                                                                                                                                                                                                                                                                                                                                                        
## [4975] "@DylanKe09193346 @sjanemurf @RTEsport Please do some minimal learning <U+0001F447>\nhttps://t.co/GBbar6ybOy"                                                                                                                                                                                                                                                                                                                                                                                                  
## [4976] "I'm on day 11 of being crowded by a bunch of people and risking being Covid-19'ed. Practicing distancing big time until further notice. Stress-testing my lungs by climbing 12 flights of stairs and avoiding the elevator."                                                                                                                                                                                                                                                                                  
## [4977] "Those who have Netflix. Search a show called “My Secret Terrius”. It is a Japanese tv show released in 2018. Click on episode 10 of season 1. Fast forward till 54:00 and start reading the subtitles. #CoronavirusOubreak is bio warfare intended for China &amp; Iran that has backfired."                                                                                                                                                                                                                
## [4978] "#Coronavirus LIVE updayes: Today's UK death toll increase is the bigggest day-on-day rise since outbreak began \n#coronaviruslockdown\nhttps://t.co/2rzJqM2edV https://t.co/NaEgxwR7Ry"                                                                                                                                                                                                                                                                                                                       
## [4979] "@nigerianports @NCDCgov NSCDC found cases of COVID-19 on a vessel, NPA is not aware of it and Twitter is the place to bring this ignorance?"                                                                                                                                                                                                                                                                                                                                                                  
## [4980] "Well in any case @ighalojude is Already a LEGEND however you look at it. \nFor me and all @manutd #fans we will Support him #UnConditionally \n\n#StayHomeSaveLives \n#COVID19 #LetsFightCovid19 \n#SouthAfricaLockdown \n#PrayForGhana \n#PrayForNigeria \n#PrayforWorld https://t.co/zwnai0Fsw1"                                                                                                                                                                                                            
## [4981] "Stop waiting, \nget going, \nwhile slowing...\n\n#cawee #icftoronto #positivevibes #socialdistancing #covid_19 #whattodo @ Mississauga, Ontario https://t.co/TDDkx23nul"                                                                                                                                                                                                                                                                                                                                      
## [4982] "Deadly outbreak of #coronavirus jolts #Italy country on lockdown, School, Universities, Restaurants and Ports has been closed as death toll jumps to 9,134. There are 86,498 people are positive for the infection by virus. Italian Health officials said https://t.co/LEjQalwaQR"                                                                                                                                                                                                                           
## [4983] "So wait. #Trump had a “pandemic playbook” and ignored it? So he’s so egotistical that he refused to listen due to his complete ignorance and inability to take intelligent input. Holy shit. #coronavirus @MSNBC"                                                                                                                                                                                                                                                                                          
## [4984] "A super bad, transmittable, contagious, awful virus is the 2020 take on supercalifragilisticexpialidocious.\n\nhttps://t.co/YQwIfzcEKp"                                                                                                                                                                                                                                                                                                                                                                       
## [4985] "You need to give your customers something that is valuable now. Don't just keep on pushing the same products and services as usual #DigitalTaunton #COVID2019"                                                                                                                                                                                                                                                                                                                                                
## [4986] "@htTweets Please advise the @PMOIndia regarding the #FreeandMassTesting of #coronavirus cases. One of the major “giant” steps needed right now."                                                                                                                                                                                                                                                                                                                                                            
## [4987] "@brat2381 1/ The first few days the FL Dept. of Health had their COVID-19 Dashboard on-line, there was a tab allowing you to see how many people in each county had been tested. Then one day the link to the dashboard (I had bookmarked it) stopped working. Going back in through their main…"                                                                                                                                                                                                            
## [4988] "@shortfuse70 Hello.  We're providing PTO for associates diagnosed w/ COVID-19, placed under mandatory quarantine &amp; PTO for self isolation &amp; symptoms as verified by an accredited health care professional. All eligible associates will receive their standard pay for up to two weeks."                                                                                                                                                                                                             
## [4989] "If nothing else - The US Office / #Coronavirus memes might be my new favourite #Instagram rabbit hole"                                                                                                                                                                                                                                                                                                                                                                                                        
## [4990] "Informative tele town hall with @uarizona leaders discussing how the university is leveraging its world class research and experts for Arizona's COVID-19 response. @UArizonaPres @UAZHealth"                                                                                                                                                                                                                                                                                                                 
## [4991] "#FlattenTheCurve #COVID19 \n\nUSA's trajectory is worse than Italy's\nCanada is showing good early signs of flattening the curve, still requires a lot of effort\nGermany, Spain looking bad\nUK's numbers will rise before coming down https://t.co/tqzh2Ochrp"                                                                                                                                                                                                                                              
## [4992] "Pay attention, everyone ! Please ! #Coronavirus https://t.co/8GnFcp8uF6"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [4993] "@ImranKhanPTI passive immunisation can save our COVID-19 patients.\n#ChineseVirus19\n#COVID2019\n#coronavirusinpakistan #CoronavirusOubreak\n#DrTahirShamsi https://t.co/ZzQxAXvlzx"                                                                                                                                                                                                                                                                                                                          
## [4994] "This is the body I would have had if not for COVID-19 https://t.co/rTNh6xR1aA"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [4995] "Why does this look like such \na \nnormal \nmorning?\n\n<U+0001F641>\n\nDawn rises on a total lockdown in Ireland \n\n#IrelandLockdown #Ireland #WildAtlanticWay #SkelligCoast. #Covid19 \n#Waterville https://t.co/OOlaWhDyST"                                                                                                                                                                                                                                                                               
## [4996] "Nurse Karen Reissmann speaks out for tonight's #ClapForOurCarers action to show support and #solidarity to #NHS workers from the frontline fighting #Covid19   \nWe must also oppose the 'hostile environment and #StopToryRacism because... #MigrantsMakeOurNH… https://t.co/AAZz9oLMvB"                                                                                                                                                                                                                    
## [4997] "https://t.co/N9mc5UdT2O Bezos And Other Corporate Execs Sold Billions In Stock Before COVID-19 Rocked Market"                                                                                                                                                                                                                                                                                                                                                                                                 
## [4998] "43<U+00A0> <U+00A0> #writers Is #COVID-19 affecting your book launches and promotions? Read my #blogpost to find out how your #socialmedia can help you during the #pandemic:<U+00A0>https://t.co/etXKa2jDXb #amwriting #writingcommunity #writersnetwork #storyteller"                                                                                                                                                                                                                                       
## [4999] "Do yourself a favour...\n\nhttps://t.co/ROcdT3o9TW\n\nPlease watch this, Quite possibly the most level headed video I've seen on the data capturing behind COVID-19.\n\nIt makes a lot of very rational and understandable points."                                                                                                                                                                                                                                                                           
## [5000] "i thought we were in a corona virus pandemic now you’re telling me people are getting covid-19 too?? when will it stop"
str_extract(covid19_tw_sample$text, pattern= " the ")
##    [1] " the " " the " " the " " the " " the " " the " NA      " the " NA     
##   [10] " the " " the " " the " " the " " the " NA      " the " " the " " the "
##   [19] " the " NA      NA      NA      NA      NA      NA      NA      NA     
##   [28] " the " " the " NA      " the " NA      " the " " the " NA      NA     
##   [37] NA      NA      NA      " the " " the " NA      " the " NA      " the "
##   [46] " the " NA      NA      " the " NA      " the " NA      NA      NA     
##   [55] NA      NA      " the " NA      NA      NA      " the " NA      " the "
##   [64] NA      " the " " the " NA      " the " " the " " the " NA      " the "
##   [73] NA      NA      NA      NA      " the " NA      NA      NA      " the "
##   [82] NA      " the " NA      " the " NA      NA      " the " NA      NA     
##   [91] NA      " the " NA      " the " " the " NA      " the " NA      NA     
##  [100] NA      NA      " the " NA      NA      " the " " the " NA      " the "
##  [109] " the " " the " " the " " the " NA      " the " NA      NA      " the "
##  [118] NA      NA      NA      NA      NA      NA      NA      " the " NA     
##  [127] NA      " the " " the " " the " " the " NA      NA      " the " NA     
##  [136] NA      NA      NA      NA      " the " NA      " the " " the " " the "
##  [145] NA      NA      " the " " the " NA      NA      NA      " the " " the "
##  [154] " the " " the " " the " NA      NA      " the " " the " NA      " the "
##  [163] " the " NA      " the " " the " NA      NA      " the " NA      NA     
##  [172] NA      NA      NA      NA      NA      NA      NA      " the " NA     
##  [181] " the " NA      NA      NA      NA      " the " " the " " the " " the "
##  [190] NA      NA      NA      NA      NA      NA      NA      " the " NA     
##  [199] " the " " the " NA      " the " NA      NA      " the " NA      " the "
##  [208] NA      " the " " the " " the " NA      " the " NA      NA      NA     
##  [217] NA      " the " " the " " the " NA      " the " NA      NA      " the "
##  [226] NA      NA      " the " NA      NA      " the " " the " " the " NA     
##  [235] NA      " the " NA      NA      " the " NA      " the " " the " NA     
##  [244] " the " NA      " the " NA      " the " NA      NA      " the " " the "
##  [253] " the " NA      " the " " the " NA      NA      NA      NA      NA     
##  [262] NA      " the " " the " " the " " the " " the " NA      " the " NA     
##  [271] " the " " the " " the " NA      NA      " the " " the " NA      " the "
##  [280] " the " " the " NA      " the " NA      " the " NA      NA      NA     
##  [289] NA      " the " " the " NA      " the " NA      " the " NA      NA     
##  [298] NA      " the " " the " " the " NA      " the " NA      " the " " the "
##  [307] NA      " the " " the " " the " " the " " the " NA      " the " " the "
##  [316] NA      " the " NA      NA      " the " " the " " the " NA      NA     
##  [325] NA      NA      " the " " the " NA      NA      " the " " the " NA     
##  [334] NA      " the " NA      " the " NA      " the " NA      " the " NA     
##  [343] NA      " the " " the " " the " " the " NA      " the " " the " NA     
##  [352] " the " " the " NA      NA      NA      " the " " the " NA      " the "
##  [361] " the " " the " " the " NA      NA      NA      NA      " the " " the "
##  [370] NA      NA      " the " NA      NA      NA      NA      " the " " the "
##  [379] " the " NA      " the " " the " " the " NA      " the " NA      " the "
##  [388] " the " " the " " the " NA      " the " NA      NA      " the " " the "
##  [397] NA      " the " NA      NA      NA      " the " " the " NA      NA     
##  [406] NA      NA      " the " NA      NA      " the " NA      " the " NA     
##  [415] NA      " the " NA      " the " NA      " the " NA      NA      " the "
##  [424] NA      " the " " the " " the " NA      NA      NA      NA      " the "
##  [433] NA      NA      " the " " the " NA      NA      NA      NA      " the "
##  [442] " the " " the " NA      " the " NA      NA      " the " " the " " the "
##  [451] " the " " the " " the " NA      NA      NA      " the " " the " " the "
##  [460] NA      NA      NA      " the " NA      NA      " the " NA      " the "
##  [469] " the " NA      " the " NA      " the " " the " NA      " the " " the "
##  [478] " the " NA      " the " " the " NA      NA      " the " NA      " the "
##  [487] NA      " the " " the " " the " NA      NA      NA      " the " NA     
##  [496] NA      " the " " the " NA      " the " " the " " the " " the " NA     
##  [505] " the " NA      " the " NA      NA      NA      NA      " the " NA     
##  [514] " the " " the " NA      NA      " the " NA      NA      NA      " the "
##  [523] NA      " the " NA      NA      " the " " the " NA      NA      " the "
##  [532] " the " NA      NA      NA      " the " " the " " the " NA      NA     
##  [541] NA      " the " NA      " the " NA      " the " NA      NA      NA     
##  [550] " the " NA      NA      " the " NA      NA      " the " NA      NA     
##  [559] " the " " the " NA      NA      " the " " the " NA      NA      " the "
##  [568] NA      NA      NA      " the " NA      NA      NA      NA      NA     
##  [577] " the " " the " NA      NA      " the " " the " " the " " the " " the "
##  [586] " the " NA      NA      NA      NA      NA      " the " NA      " the "
##  [595] NA      NA      " the " " the " " the " NA      " the " " the " NA     
##  [604] NA      " the " NA      NA      " the " NA      NA      NA      NA     
##  [613] " the " NA      NA      NA      NA      NA      " the " " the " NA     
##  [622] " the " " the " " the " NA      " the " NA      " the " NA      NA     
##  [631] NA      NA      " the " " the " " the " " the " NA      NA      " the "
##  [640] " the " NA      " the " NA      " the " NA      NA      NA      " the "
##  [649] " the " NA      NA      " the " NA      NA      NA      NA      NA     
##  [658] " the " " the " NA      NA      NA      " the " " the " NA      NA     
##  [667] " the " NA      NA      " the " " the " " the " NA      " the " " the "
##  [676] " the " " the " NA      NA      " the " " the " NA      NA      NA     
##  [685] " the " " the " " the " NA      " the " NA      NA      " the " NA     
##  [694] NA      " the " NA      NA      " the " " the " NA      NA      NA     
##  [703] NA      NA      " the " " the " " the " " the " " the " " the " " the "
##  [712] " the " " the " NA      " the " " the " NA      NA      " the " " the "
##  [721] " the " " the " " the " NA      " the " NA      NA      NA      " the "
##  [730] " the " " the " NA      " the " " the " " the " " the " NA      NA     
##  [739] NA      " the " " the " " the " " the " NA      " the " " the " NA     
##  [748] " the " " the " " the " NA      " the " NA      " the " " the " " the "
##  [757] NA      NA      " the " " the " NA      " the " " the " NA      NA     
##  [766] NA      NA      NA      NA      NA      " the " " the " " the " NA     
##  [775] " the " " the " NA      NA      NA      " the " " the " " the " " the "
##  [784] " the " NA      " the " " the " " the " NA      NA      " the " " the "
##  [793] " the " " the " NA      NA      NA      NA      NA      NA      NA     
##  [802] " the " " the " " the " " the " NA      NA      " the " NA      NA     
##  [811] " the " " the " " the " " the " NA      " the " NA      NA      " the "
##  [820] " the " NA      NA      NA      NA      " the " " the " NA      NA     
##  [829] NA      " the " NA      " the " NA      NA      " the " NA      NA     
##  [838] " the " NA      " the " " the " " the " " the " " the " " the " " the "
##  [847] " the " " the " " the " " the " " the " NA      NA      NA      NA     
##  [856] NA      NA      " the " NA      NA      " the " NA      NA      NA     
##  [865] " the " " the " NA      NA      NA      NA      " the " NA      NA     
##  [874] NA      NA      " the " NA      NA      " the " NA      " the " NA     
##  [883] " the " NA      NA      NA      NA      " the " NA      " the " " the "
##  [892] NA      " the " " the " " the " " the " NA      NA      NA      " the "
##  [901] NA      NA      " the " " the " " the " NA      " the " " the " " the "
##  [910] " the " NA      NA      " the " NA      NA      " the " NA      NA     
##  [919] " the " NA      NA      " the " " the " NA      " the " " the " " the "
##  [928] " the " NA      NA      NA      NA      " the " " the " " the " NA     
##  [937] " the " NA      NA      NA      NA      " the " " the " " the " " the "
##  [946] " the " NA      NA      " the " " the " NA      " the " NA      NA     
##  [955] NA      " the " NA      NA      NA      NA      " the " " the " " the "
##  [964] " the " " the " NA      " the " " the " " the " " the " NA      NA     
##  [973] NA      " the " NA      NA      NA      NA      " the " NA      NA     
##  [982] NA      NA      NA      NA      NA      " the " NA      " the " NA     
##  [991] NA      NA      " the " " the " NA      " the " " the " " the " " the "
## [1000] " the " NA      " the " NA      NA      " the " NA      NA      " the "
## [1009] NA      " the " NA      NA      " the " NA      " the " " the " " the "
## [1018] " the " " the " " the " NA      NA      NA      NA      NA      " the "
## [1027] NA      " the " " the " NA      NA      NA      NA      " the " NA     
## [1036] NA      " the " NA      " the " NA      NA      NA      NA      NA     
## [1045] NA      " the " NA      NA      " the " " the " NA      NA      NA     
## [1054] " the " " the " " the " " the " " the " NA      " the " NA      " the "
## [1063] " the " NA      NA      " the " NA      " the " " the " NA      " the "
## [1072] NA      NA      " the " " the " NA      " the " NA      " the " NA     
## [1081] NA      " the " NA      NA      " the " NA      " the " NA      NA     
## [1090] NA      " the " NA      NA      NA      " the " NA      " the " " the "
## [1099] NA      NA      NA      NA      NA      NA      NA      NA      NA     
## [1108] NA      NA      NA      " the " " the " " the " " the " NA      " the "
## [1117] NA      NA      " the " NA      " the " NA      " the " NA      NA     
## [1126] " the " " the " " the " NA      NA      " the " NA      " the " NA     
## [1135] NA      NA      NA      NA      " the " " the " NA      " the " NA     
## [1144] " the " " the " NA      " the " NA      " the " NA      " the " " the "
## [1153] NA      NA      NA      NA      " the " " the " " the " " the " NA     
## [1162] NA      " the " " the " " the " " the " " the " " the " NA      " the "
## [1171] " the " NA      NA      NA      " the " " the " NA      " the " NA     
## [1180] NA      " the " NA      NA      NA      " the " NA      NA      NA     
## [1189] " the " " the " NA      NA      " the " " the " " the " NA      NA     
## [1198] " the " " the " " the " " the " NA      NA      " the " " the " NA     
## [1207] NA      " the " " the " " the " NA      " the " NA      NA      NA     
## [1216] " the " " the " NA      NA      " the " NA      NA      " the " NA     
## [1225] NA      " the " " the " " the " NA      " the " NA      " the " NA     
## [1234] NA      " the " " the " NA      " the " NA      NA      " the " " the "
## [1243] " the " NA      " the " " the " NA      " the " " the " " the " " the "
## [1252] " the " " the " NA      NA      NA      " the " " the " NA      NA     
## [1261] " the " NA      " the " NA      NA      NA      NA      NA      NA     
## [1270] NA      " the " NA      " the " " the " " the " " the " " the " NA     
## [1279] " the " NA      " the " " the " NA      " the " " the " " the " " the "
## [1288] NA      " the " NA      " the " " the " " the " " the " NA      NA     
## [1297] NA      " the " " the " NA      " the " NA      " the " NA      " the "
## [1306] NA      " the " " the " NA      " the " NA      NA      NA      NA     
## [1315] NA      " the " NA      " the " NA      NA      NA      " the " " the "
## [1324] NA      " the " NA      NA      " the " " the " NA      " the " " the "
## [1333] " the " NA      NA      NA      " the " " the " " the " NA      NA     
## [1342] " the " " the " " the " NA      NA      NA      NA      " the " " the "
## [1351] " the " " the " NA      " the " NA      " the " " the " NA      " the "
## [1360] NA      NA      NA      " the " NA      " the " " the " NA      NA     
## [1369] " the " NA      " the " NA      " the " NA      " the " NA      NA     
## [1378] NA      " the " NA      NA      " the " NA      " the " NA      " the "
## [1387] " the " NA      NA      " the " " the " NA      " the " " the " NA     
## [1396] NA      NA      NA      NA      NA      NA      " the " NA      NA     
## [1405] " the " NA      NA      " the " " the " " the " NA      NA      NA     
## [1414] " the " " the " NA      NA      " the " " the " " the " NA      NA     
## [1423] " the " " the " " the " NA      NA      NA      " the " NA      " the "
## [1432] NA      " the " " the " NA      NA      " the " " the " " the " NA     
## [1441] " the " NA      " the " " the " NA      " the " NA      NA      " the "
## [1450] " the " NA      NA      NA      " the " NA      " the " NA      NA     
## [1459] " the " NA      " the " " the " " the " NA      " the " " the " NA     
## [1468] " the " " the " " the " NA      " the " " the " NA      NA      " the "
## [1477] NA      NA      " the " NA      " the " " the " NA      NA      NA     
## [1486] " the " NA      " the " " the " " the " NA      " the " " the " " the "
## [1495] NA      NA      NA      NA      " the " " the " " the " NA      NA     
## [1504] " the " NA      " the " " the " " the " " the " " the " NA      NA     
## [1513] NA      " the " " the " " the " " the " " the " NA      NA      " the "
## [1522] " the " NA      " the " " the " NA      " the " " the " NA      " the "
## [1531] NA      NA      NA      NA      " the " " the " " the " " the " " the "
## [1540] NA      NA      " the " NA      NA      NA      NA      " the " " the "
## [1549] " the " " the " " the " NA      " the " " the " NA      " the " " the "
## [1558] NA      NA      " the " " the " NA      " the " " the " " the " NA     
## [1567] " the " " the " " the " " the " " the " " the " " the " NA      " the "
## [1576] NA      " the " NA      " the " " the " NA      " the " NA      " the "
## [1585] " the " " the " " the " NA      NA      NA      NA      NA      NA     
## [1594] " the " NA      NA      NA      NA      NA      " the " NA      NA     
## [1603] NA      " the " " the " NA      NA      NA      " the " NA      NA     
## [1612] " the " " the " " the " " the " " the " NA      NA      NA      " the "
## [1621] NA      " the " NA      NA      " the " NA      NA      NA      " the "
## [1630] NA      " the " NA      " the " NA      " the " NA      NA      NA     
## [1639] " the " NA      " the " NA      NA      NA      NA      " the " " the "
## [1648] " the " NA      NA      " the " " the " NA      " the " " the " NA     
## [1657] " the " NA      " the " " the " " the " NA      NA      NA      " the "
## [1666] " the " " the " " the " " the " NA      " the " " the " NA      " the "
## [1675] NA      " the " NA      NA      " the " " the " " the " NA      NA     
## [1684] NA      " the " " the " NA      " the " " the " " the " " the " " the "
## [1693] " the " " the " NA      NA      " the " NA      NA      " the " NA     
## [1702] " the " " the " NA      NA      " the " " the " " the " " the " " the "
## [1711] NA      NA      NA      NA      NA      NA      " the " NA      " the "
## [1720] " the " " the " NA      " the " NA      NA      " the " " the " " the "
## [1729] " the " NA      NA      " the " NA      " the " " the " " the " " the "
## [1738] " the " NA      " the " " the " " the " " the " " the " " the " NA     
## [1747] NA      NA      NA      NA      NA      NA      " the " NA      " the "
## [1756] " the " NA      NA      NA      NA      " the " NA      " the " NA     
## [1765] NA      " the " NA      NA      " the " " the " NA      NA      NA     
## [1774] NA      NA      " the " NA      " the " NA      NA      " the " " the "
## [1783] NA      " the " NA      NA      " the " NA      " the " " the " NA     
## [1792] NA      " the " " the " NA      NA      " the " " the " NA      NA     
## [1801] NA      NA      NA      NA      " the " NA      " the " " the " " the "
## [1810] NA      NA      " the " NA      " the " " the " " the " NA      NA     
## [1819] " the " " the " " the " " the " NA      NA      " the " " the " " the "
## [1828] " the " " the " NA      NA      " the " " the " NA      " the " NA     
## [1837] " the " NA      NA      NA      NA      " the " NA      NA      NA     
## [1846] " the " " the " NA      NA      NA      NA      " the " " the " NA     
## [1855] NA      NA      NA      NA      " the " " the " NA      " the " NA     
## [1864] NA      NA      NA      " the " NA      NA      NA      NA      " the "
## [1873] NA      NA      " the " " the " NA      NA      " the " " the " " the "
## [1882] NA      " the " " the " NA      " the " " the " " the " NA      " the "
## [1891] NA      NA      " the " NA      NA      " the " NA      NA      NA     
## [1900] " the " " the " " the " " the " NA      NA      NA      " the " " the "
## [1909] NA      NA      NA      " the " NA      NA      NA      " the " " the "
## [1918] NA      " the " " the " NA      " the " NA      NA      NA      NA     
## [1927] NA      " the " NA      " the " NA      " the " NA      " the " NA     
## [1936] NA      " the " " the " NA      " the " NA      " the " NA      " the "
## [1945] " the " NA      NA      " the " " the " NA      " the " " the " NA     
## [1954] NA      " the " " the " " the " " the " NA      " the " " the " " the "
## [1963] " the " " the " NA      NA      NA      NA      NA      " the " NA     
## [1972] " the " " the " NA      NA      NA      " the " " the " NA      NA     
## [1981] " the " " the " NA      NA      NA      " the " NA      " the " NA     
## [1990] NA      " the " NA      NA      NA      " the " NA      NA      NA     
## [1999] " the " NA      NA      NA      NA      " the " NA      NA      " the "
## [2008] " the " " the " NA      " the " " the " " the " " the " NA      NA     
## [2017] NA      NA      NA      " the " NA      " the " " the " " the " " the "
## [2026] " the " NA      " the " NA      " the " " the " " the " " the " NA     
## [2035] NA      NA      " the " NA      " the " NA      " the " " the " " the "
## [2044] NA      " the " NA      NA      NA      NA      NA      " the " NA     
## [2053] NA      " the " " the " NA      NA      NA      NA      NA      " the "
## [2062] NA      NA      NA      " the " " the " " the " NA      NA      " the "
## [2071] NA      " the " " the " NA      " the " " the " " the " NA      " the "
## [2080] NA      NA      NA      NA      NA      NA      " the " NA      NA     
## [2089] NA      " the " " the " NA      NA      " the " NA      NA      NA     
## [2098] " the " NA      " the " NA      NA      NA      " the " " the " NA     
## [2107] " the " NA      " the " " the " " the " " the " NA      " the " " the "
## [2116] NA      NA      " the " NA      " the " " the " NA      " the " " the "
## [2125] NA      NA      NA      " the " " the " " the " NA      " the " " the "
## [2134] " the " NA      " the " NA      NA      " the " " the " " the " " the "
## [2143] " the " " the " NA      " the " " the " NA      NA      " the " " the "
## [2152] NA      NA      NA      " the " " the " NA      " the " NA      " the "
## [2161] NA      " the " NA      " the " " the " " the " NA      " the " NA     
## [2170] " the " " the " " the " NA      " the " NA      " the " NA      " the "
## [2179] " the " NA      " the " NA      " the " " the " NA      " the " NA     
## [2188] NA      NA      " the " " the " NA      NA      NA      NA      " the "
## [2197] NA      " the " NA      " the " " the " NA      NA      " the " " the "
## [2206] " the " NA      " the " NA      " the " " the " " the " NA      NA     
## [2215] NA      " the " NA      " the " " the " " the " NA      NA      " the "
## [2224] NA      " the " " the " " the " NA      NA      NA      " the " NA     
## [2233] " the " " the " " the " NA      NA      " the " NA      NA      " the "
## [2242] NA      NA      NA      NA      NA      NA      " the " NA      NA     
## [2251] NA      NA      " the " NA      NA      NA      " the " " the " NA     
## [2260] NA      NA      NA      " the " " the " NA      " the " " the " " the "
## [2269] NA      NA      NA      NA      NA      NA      " the " NA      " the "
## [2278] " the " NA      " the " NA      NA      " the " NA      " the " NA     
## [2287] NA      NA      " the " " the " " the " " the " NA      " the " NA     
## [2296] " the " " the " NA      " the " " the " NA      " the " " the " " the "
## [2305] NA      NA      NA      NA      NA      NA      " the " NA      " the "
## [2314] NA      NA      NA      " the " NA      NA      " the " " the " NA     
## [2323] NA      " the " " the " " the " NA      NA      NA      NA      " the "
## [2332] NA      NA      NA      NA      " the " NA      NA      " the " NA     
## [2341] NA      NA      NA      " the " " the " " the " " the " " the " NA     
## [2350] NA      " the " NA      " the " NA      " the " NA      " the " NA     
## [2359] " the " " the " " the " NA      " the " NA      NA      " the " NA     
## [2368] " the " " the " " the " NA      NA      NA      NA      " the " " the "
## [2377] " the " NA      NA      NA      NA      " the " " the " NA      " the "
## [2386] " the " NA      NA      " the " " the " " the " NA      " the " " the "
## [2395] NA      " the " NA      " the " " the " NA      " the " " the " " the "
## [2404] NA      NA      NA      " the " NA      " the " NA      NA      " the "
## [2413] NA      NA      " the " NA      NA      NA      " the " " the " NA     
## [2422] " the " NA      " the " " the " " the " NA      " the " " the " NA     
## [2431] " the " NA      " the " NA      NA      NA      NA      " the " " the "
## [2440] " the " NA      " the " " the " NA      " the " " the " " the " " the "
## [2449] " the " NA      NA      NA      " the " NA      " the " " the " " the "
## [2458] NA      NA      NA      " the " NA      NA      " the " NA      NA     
## [2467] NA      NA      " the " " the " " the " NA      NA      NA      NA     
## [2476] " the " NA      NA      " the " " the " " the " " the " " the " NA     
## [2485] NA      " the " NA      " the " " the " " the " " the " " the " NA     
## [2494] " the " NA      " the " " the " NA      " the " NA      " the " NA     
## [2503] NA      " the " " the " NA      NA      " the " " the " " the " " the "
## [2512] " the " NA      NA      " the " NA      NA      " the " NA      " the "
## [2521] NA      NA      NA      NA      NA      " the " NA      NA      NA     
## [2530] " the " NA      NA      NA      " the " NA      " the " " the " NA     
## [2539] " the " NA      " the " " the " NA      NA      NA      " the " NA     
## [2548] " the " NA      NA      " the " NA      " the " " the " NA      " the "
## [2557] " the " " the " " the " NA      " the " " the " NA      NA      " the "
## [2566] NA      NA      " the " NA      NA      " the " NA      " the " " the "
## [2575] " the " " the " " the " NA      " the " " the " " the " " the " NA     
## [2584] " the " " the " NA      " the " " the " NA      NA      NA      NA     
## [2593] NA      " the " " the " " the " " the " " the " NA      NA      " the "
## [2602] NA      " the " NA      NA      NA      " the " NA      " the " NA     
## [2611] NA      NA      NA      " the " " the " NA      NA      NA      NA     
## [2620] " the " " the " " the " NA      NA      " the " NA      " the " NA     
## [2629] NA      " the " NA      " the " " the " " the " " the " NA      NA     
## [2638] " the " NA      NA      NA      " the " NA      " the " " the " " the "
## [2647] " the " NA      NA      NA      NA      " the " NA      " the " " the "
## [2656] NA      NA      NA      NA      NA      NA      " the " NA      " the "
## [2665] " the " " the " " the " NA      " the " NA      NA      " the " " the "
## [2674] " the " " the " " the " " the " " the " NA      NA      " the " " the "
## [2683] " the " " the " " the " " the " " the " " the " " the " NA      " the "
## [2692] " the " " the " NA      NA      NA      NA      " the " " the " " the "
## [2701] " the " " the " NA      NA      " the " " the " NA      " the " NA     
## [2710] NA      " the " NA      " the " NA      NA      NA      NA      NA     
## [2719] " the " " the " " the " " the " NA      " the " NA      NA      NA     
## [2728] " the " NA      NA      NA      NA      " the " " the " NA      NA     
## [2737] " the " " the " " the " " the " NA      NA      NA      NA      NA     
## [2746] " the " NA      " the " NA      NA      NA      NA      NA      " the "
## [2755] " the " NA      " the " NA      NA      NA      " the " NA      " the "
## [2764] NA      NA      NA      NA      NA      " the " " the " NA      " the "
## [2773] " the " NA      " the " NA      " the " NA      " the " " the " " the "
## [2782] " the " NA      NA      " the " " the " " the " " the " NA      " the "
## [2791] " the " " the " NA      NA      " the " NA      NA      NA      " the "
## [2800] " the " NA      NA      " the " NA      " the " " the " NA      " the "
## [2809] NA      NA      NA      NA      " the " NA      NA      NA      " the "
## [2818] NA      NA      " the " " the " " the " " the " " the " NA      NA     
## [2827] " the " " the " " the " " the " " the " " the " NA      NA      NA     
## [2836] NA      NA      " the " " the " NA      " the " " the " " the " NA     
## [2845] NA      " the " NA      " the " " the " " the " " the " NA      NA     
## [2854] " the " " the " " the " " the " NA      NA      NA      NA      NA     
## [2863] " the " " the " NA      " the " NA      NA      " the " NA      " the "
## [2872] " the " " the " NA      " the " NA      NA      " the " " the " NA     
## [2881] NA      " the " NA      NA      " the " " the " NA      NA      NA     
## [2890] NA      NA      " the " NA      NA      NA      NA      " the " NA     
## [2899] " the " NA      " the " NA      NA      NA      " the " NA      " the "
## [2908] " the " " the " " the " NA      " the " NA      NA      NA      " the "
## [2917] NA      " the " " the " NA      NA      " the " NA      NA      NA     
## [2926] NA      " the " NA      " the " NA      " the " " the " NA      " the "
## [2935] " the " NA      " the " NA      " the " NA      NA      " the " " the "
## [2944] NA      NA      " the " NA      " the " " the " NA      NA      " the "
## [2953] NA      NA      NA      NA      NA      NA      NA      " the " NA     
## [2962] " the " NA      NA      NA      NA      " the " NA      NA      NA     
## [2971] " the " " the " NA      NA      " the " " the " " the " " the " NA     
## [2980] " the " NA      NA      " the " " the " NA      NA      NA      " the "
## [2989] NA      " the " " the " " the " NA      " the " " the " " the " NA     
## [2998] NA      " the " NA      NA      " the " " the " " the " " the " " the "
## [3007] " the " NA      " the " NA      NA      " the " " the " " the " " the "
## [3016] " the " " the " " the " " the " " the " " the " " the " " the " NA     
## [3025] " the " " the " NA      NA      NA      " the " NA      NA      NA     
## [3034] NA      NA      NA      " the " " the " NA      NA      " the " NA     
## [3043] " the " NA      NA      NA      NA      " the " " the " NA      NA     
## [3052] NA      NA      NA      NA      " the " " the " NA      " the " NA     
## [3061] " the " NA      " the " " the " NA      NA      NA      " the " " the "
## [3070] NA      NA      NA      " the " " the " " the " " the " " the " NA     
## [3079] NA      " the " " the " NA      " the " NA      " the " " the " NA     
## [3088] " the " " the " NA      NA      " the " " the " " the " NA      " the "
## [3097] " the " NA      " the " NA      NA      " the " " the " NA      NA     
## [3106] " the " NA      " the " NA      NA      NA      NA      " the " NA     
## [3115] NA      " the " NA      " the " " the " NA      NA      NA      NA     
## [3124] " the " NA      NA      " the " NA      NA      " the " " the " NA     
## [3133] NA      " the " NA      NA      " the " " the " " the " " the " NA     
## [3142] " the " " the " NA      NA      " the " " the " " the " NA      " the "
## [3151] NA      NA      NA      NA      NA      NA      NA      " the " NA     
## [3160] NA      " the " NA      NA      " the " NA      NA      " the " " the "
## [3169] NA      NA      " the " " the " NA      " the " " the " " the " NA     
## [3178] NA      NA      NA      NA      NA      NA      NA      NA      NA     
## [3187] NA      " the " " the " NA      " the " " the " NA      " the " NA     
## [3196] " the " " the " " the " NA      NA      NA      " the " " the " NA     
## [3205] NA      " the " NA      " the " NA      " the " NA      " the " NA     
## [3214] NA      NA      NA      " the " NA      " the " NA      NA      NA     
## [3223] " the " " the " NA      " the " " the " NA      NA      NA      " the "
## [3232] NA      " the " " the " " the " NA      " the " NA      NA      NA     
## [3241] " the " " the " NA      NA      " the " NA      " the " NA      NA     
## [3250] NA      NA      NA      NA      " the " NA      NA      " the " " the "
## [3259] " the " NA      NA      NA      " the " NA      " the " NA      NA     
## [3268] NA      " the " NA      NA      NA      " the " " the " " the " NA     
## [3277] " the " NA      NA      NA      NA      NA      NA      NA      NA     
## [3286] " the " NA      NA      " the " NA      " the " NA      NA      " the "
## [3295] " the " " the " NA      " the " " the " NA      NA      NA      NA     
## [3304] " the " " the " " the " NA      NA      NA      " the " " the " NA     
## [3313] NA      " the " " the " " the " " the " NA      NA      " the " NA     
## [3322] " the " NA      " the " NA      " the " NA      NA      NA      " the "
## [3331] NA      NA      NA      " the " " the " NA      NA      " the " NA     
## [3340] NA      " the " NA      " the " " the " NA      " the " NA      " the "
## [3349] " the " " the " NA      " the " NA      " the " NA      " the " NA     
## [3358] NA      " the " " the " NA      " the " NA      NA      " the " NA     
## [3367] NA      NA      NA      " the " " the " " the " NA      " the " " the "
## [3376] " the " " the " NA      NA      NA      " the " NA      NA      NA     
## [3385] NA      NA      " the " " the " " the " NA      " the " " the " NA     
## [3394] NA      " the " NA      NA      " the " NA      " the " NA      NA     
## [3403] NA      NA      NA      NA      " the " NA      " the " " the " NA     
## [3412] NA      NA      " the " NA      NA      NA      NA      " the " NA     
## [3421] " the " " the " " the " " the " " the " NA      NA      NA      " the "
## [3430] " the " " the " NA      NA      NA      " the " " the " " the " NA     
## [3439] NA      NA      NA      NA      NA      NA      NA      NA      " the "
## [3448] NA      NA      " the " " the " NA      NA      " the " " the " NA     
## [3457] NA      " the " NA      NA      " the " " the " NA      " the " NA     
## [3466] " the " " the " " the " " the " " the " " the " " the " " the " NA     
## [3475] NA      NA      " the " " the " " the " NA      NA      NA      NA     
## [3484] NA      NA      NA      " the " NA      NA      NA      " the " " the "
## [3493] NA      NA      NA      NA      " the " NA      NA      NA      NA     
## [3502] NA      " the " " the " " the " NA      NA      " the " " the " " the "
## [3511] " the " " the " " the " " the " " the " NA      " the " " the " " the "
## [3520] " the " NA      NA      NA      " the " NA      " the " " the " NA     
## [3529] " the " NA      " the " NA      NA      " the " " the " " the " NA     
## [3538] " the " " the " " the " " the " NA      " the " NA      " the " NA     
## [3547] NA      NA      NA      " the " NA      NA      NA      NA      " the "
## [3556] " the " NA      NA      " the " " the " " the " " the " " the " " the "
## [3565] " the " NA      NA      NA      " the " NA      " the " NA      NA     
## [3574] " the " NA      NA      NA      " the " NA      " the " " the " NA     
## [3583] NA      " the " " the " NA      " the " " the " " the " NA      " the "
## [3592] NA      " the " NA      NA      " the " " the " NA      NA      " the "
## [3601] " the " " the " " the " " the " NA      NA      " the " NA      NA     
## [3610] " the " " the " NA      " the " NA      NA      " the " NA      NA     
## [3619] NA      " the " NA      " the " " the " NA      NA      " the " " the "
## [3628] " the " " the " " the " NA      NA      " the " " the " NA      " the "
## [3637] NA      " the " " the " NA      NA      " the " NA      NA      " the "
## [3646] NA      " the " NA      " the " NA      NA      " the " NA      NA     
## [3655] NA      " the " NA      NA      " the " " the " " the " " the " NA     
## [3664] NA      " the " " the " NA      " the " " the " " the " " the " " the "
## [3673] " the " " the " " the " NA      " the " NA      " the " " the " NA     
## [3682] NA      NA      " the " " the " NA      NA      " the " NA      " the "
## [3691] " the " NA      " the " NA      " the " " the " NA      NA      NA     
## [3700] NA      NA      " the " " the " " the " " the " NA      " the " " the "
## [3709] NA      NA      NA      " the " NA      " the " NA      NA      NA     
## [3718] " the " NA      NA      NA      " the " NA      NA      " the " NA     
## [3727] " the " NA      " the " " the " " the " " the " NA      " the " NA     
## [3736] " the " " the " NA      NA      " the " " the " NA      NA      NA     
## [3745] " the " " the " NA      " the " NA      NA      " the " " the " NA     
## [3754] NA      " the " NA      " the " NA      " the " NA      NA      " the "
## [3763] NA      NA      NA      NA      NA      NA      " the " " the " NA     
## [3772] " the " NA      NA      " the " NA      NA      NA      " the " NA     
## [3781] NA      " the " NA      NA      " the " NA      " the " " the " " the "
## [3790] " the " NA      NA      NA      NA      " the " " the " NA      NA     
## [3799] NA      NA      NA      NA      " the " " the " NA      NA      " the "
## [3808] NA      " the " " the " NA      " the " " the " NA      NA      " the "
## [3817] NA      " the " " the " NA      NA      NA      NA      " the " " the "
## [3826] NA      " the " NA      " the " NA      " the " " the " NA      NA     
## [3835] " the " NA      NA      " the " NA      " the " NA      " the " " the "
## [3844] NA      " the " NA      NA      " the " " the " NA      " the " NA     
## [3853] " the " " the " NA      NA      NA      NA      " the " " the " NA     
## [3862] " the " NA      NA      " the " NA      " the " NA      NA      NA     
## [3871] " the " NA      NA      " the " " the " " the " NA      " the " " the "
## [3880] NA      NA      NA      " the " NA      " the " " the " NA      NA     
## [3889] " the " " the " NA      " the " " the " " the " " the " " the " NA     
## [3898] " the " NA      NA      " the " NA      " the " NA      " the " NA     
## [3907] " the " " the " " the " " the " " the " " the " NA      " the " " the "
## [3916] " the " " the " NA      NA      " the " NA      " the " " the " " the "
## [3925] NA      " the " " the " " the " " the " NA      NA      NA      NA     
## [3934] " the " NA      " the " " the " NA      " the " NA      " the " NA     
## [3943] NA      " the " NA      " the " NA      NA      " the " " the " NA     
## [3952] " the " " the " NA      " the " " the " NA      NA      " the " " the "
## [3961] NA      " the " " the " NA      NA      NA      NA      NA      " the "
## [3970] " the " " the " " the " " the " NA      NA      " the " NA      NA     
## [3979] " the " NA      " the " " the " NA      " the " " the " " the " " the "
## [3988] NA      NA      NA      NA      " the " " the " NA      " the " NA     
## [3997] NA      NA      NA      " the " " the " NA      " the " NA      " the "
## [4006] " the " NA      " the " " the " NA      " the " " the " NA      NA     
## [4015] NA      NA      NA      " the " " the " " the " " the " " the " NA     
## [4024] " the " NA      NA      " the " NA      " the " NA      " the " " the "
## [4033] NA      " the " NA      NA      " the " NA      " the " " the " NA     
## [4042] " the " NA      " the " NA      " the " NA      " the " NA      NA     
## [4051] " the " NA      NA      NA      " the " " the " " the " NA      " the "
## [4060] " the " " the " NA      " the " " the " NA      " the " " the " NA     
## [4069] NA      " the " " the " " the " " the " " the " NA      NA      " the "
## [4078] NA      " the " " the " " the " NA      NA      " the " " the " NA     
## [4087] " the " " the " NA      NA      NA      NA      " the " NA      NA     
## [4096] " the " " the " " the " " the " " the " NA      " the " " the " NA     
## [4105] " the " " the " " the " NA      NA      NA      " the " NA      NA     
## [4114] NA      " the " " the " " the " " the " NA      " the " " the " " the "
## [4123] " the " NA      NA      NA      " the " NA      " the " " the " NA     
## [4132] NA      NA      NA      " the " NA      NA      " the " " the " NA     
## [4141] NA      NA      NA      NA      NA      " the " " the " NA      " the "
## [4150] NA      NA      NA      NA      " the " NA      " the " " the " NA     
## [4159] NA      " the " NA      " the " NA      NA      NA      NA      " the "
## [4168] NA      " the " NA      NA      NA      NA      NA      " the " " the "
## [4177] NA      NA      NA      " the " NA      " the " " the " " the " NA     
## [4186] " the " NA      " the " " the " NA      NA      NA      " the " NA     
## [4195] " the " NA      NA      NA      NA      " the " NA      NA      NA     
## [4204] " the " NA      " the " NA      NA      " the " " the " NA      NA     
## [4213] " the " " the " NA      NA      NA      " the " NA      NA      NA     
## [4222] NA      " the " NA      " the " NA      NA      " the " " the " NA     
## [4231] " the " " the " NA      NA      " the " " the " NA      " the " NA     
## [4240] NA      NA      NA      " the " " the " " the " NA      " the " " the "
## [4249] " the " NA      " the " " the " " the " NA      NA      NA      " the "
## [4258] " the " " the " NA      " the " NA      NA      NA      " the " " the "
## [4267] NA      " the " NA      " the " " the " NA      NA      " the " NA     
## [4276] " the " " the " " the " NA      " the " NA      " the " " the " " the "
## [4285] NA      NA      NA      NA      NA      " the " NA      NA      NA     
## [4294] " the " " the " " the " " the " NA      NA      " the " NA      " the "
## [4303] NA      " the " NA      " the " NA      NA      NA      " the " " the "
## [4312] NA      NA      " the " " the " NA      NA      NA      NA      NA     
## [4321] " the " NA      NA      NA      NA      " the " " the " NA      " the "
## [4330] NA      NA      NA      NA      NA      " the " " the " NA      NA     
## [4339] NA      " the " NA      NA      NA      NA      " the " " the " " the "
## [4348] " the " " the " NA      NA      " the " NA      NA      NA      NA     
## [4357] NA      NA      " the " NA      " the " NA      " the " NA      NA     
## [4366] NA      " the " " the " " the " NA      NA      " the " NA      " the "
## [4375] NA      NA      NA      " the " " the " NA      " the " " the " " the "
## [4384] NA      " the " NA      NA      " the " NA      " the " " the " " the "
## [4393] " the " " the " " the " " the " " the " NA      NA      " the " NA     
## [4402] NA      NA      NA      NA      " the " NA      NA      " the " " the "
## [4411] NA      NA      NA      " the " NA      " the " NA      NA      NA     
## [4420] " the " NA      " the " NA      NA      " the " " the " " the " " the "
## [4429] " the " " the " " the " " the " NA      NA      " the " NA      " the "
## [4438] NA      NA      " the " " the " NA      " the " NA      NA      " the "
## [4447] NA      NA      " the " NA      NA      " the " NA      NA      " the "
## [4456] NA      NA      " the " NA      NA      NA      " the " " the " NA     
## [4465] NA      " the " " the " " the " " the " " the " NA      " the " NA     
## [4474] " the " NA      NA      NA      NA      " the " NA      NA      " the "
## [4483] NA      NA      " the " " the " NA      NA      " the " " the " " the "
## [4492] NA      " the " " the " " the " NA      " the " " the " NA      " the "
## [4501] NA      NA      NA      " the " " the " " the " NA      NA      " the "
## [4510] NA      " the " NA      NA      " the " " the " NA      NA      " the "
## [4519] " the " NA      " the " NA      " the " " the " " the " NA      NA     
## [4528] NA      " the " NA      NA      NA      NA      NA      " the " NA     
## [4537] " the " " the " " the " NA      " the " " the " NA      " the " NA     
## [4546] NA      NA      " the " NA      NA      NA      NA      " the " NA     
## [4555] NA      " the " " the " " the " NA      NA      NA      " the " NA     
## [4564] " the " " the " " the " " the " " the " " the " NA      NA      " the "
## [4573] " the " " the " " the " " the " NA      " the " " the " " the " " the "
## [4582] " the " " the " NA      NA      NA      " the " NA      NA      NA     
## [4591] NA      NA      " the " " the " NA      " the " " the " NA      " the "
## [4600] NA      NA      NA      " the " " the " " the " " the " " the " " the "
## [4609] " the " " the " NA      " the " " the " NA      NA      NA      NA     
## [4618] " the " NA      NA      " the " " the " " the " " the " NA      " the "
## [4627] NA      " the " NA      " the " NA      NA      " the " " the " " the "
## [4636] NA      " the " " the " NA      " the " NA      " the " NA      " the "
## [4645] NA      " the " " the " " the " NA      " the " " the " " the " " the "
## [4654] NA      NA      NA      " the " " the " " the " NA      " the " " the "
## [4663] NA      " the " NA      NA      " the " NA      NA      NA      NA     
## [4672] " the " " the " NA      NA      NA      " the " NA      NA      NA     
## [4681] " the " NA      NA      " the " NA      " the " NA      " the " NA     
## [4690] NA      " the " " the " NA      NA      NA      NA      NA      " the "
## [4699] NA      " the " NA      NA      NA      NA      " the " NA      " the "
## [4708] NA      NA      NA      " the " NA      NA      " the " " the " " the "
## [4717] NA      " the " NA      NA      " the " " the " " the " " the " NA     
## [4726] NA      NA      " the " NA      NA      NA      " the " " the " " the "
## [4735] " the " " the " " the " " the " NA      " the " " the " " the " NA     
## [4744] " the " " the " " the " NA      " the " " the " " the " " the " NA     
## [4753] NA      NA      " the " NA      " the " " the " NA      NA      " the "
## [4762] NA      NA      " the " NA      " the " " the " NA      " the " NA     
## [4771] NA      " the " " the " " the " " the " " the " " the " " the " NA     
## [4780] " the " " the " " the " " the " NA      NA      NA      NA      " the "
## [4789] " the " " the " NA      NA      NA      NA      " the " " the " " the "
## [4798] NA      " the " NA      " the " " the " NA      " the " " the " NA     
## [4807] NA      NA      " the " NA      NA      NA      " the " NA      " the "
## [4816] " the " NA      " the " NA      NA      " the " " the " " the " " the "
## [4825] NA      " the " " the " NA      NA      " the " " the " NA      NA     
## [4834] " the " " the " NA      " the " NA      NA      NA      " the " " the "
## [4843] " the " NA      NA      " the " NA      " the " NA      NA      NA     
## [4852] NA      NA      " the " " the " " the " NA      " the " " the " NA     
## [4861] " the " NA      " the " NA      " the " " the " NA      NA      " the "
## [4870] " the " NA      " the " NA      NA      " the " " the " NA      " the "
## [4879] NA      NA      " the " " the " " the " " the " NA      NA      " the "
## [4888] NA      " the " " the " NA      " the " NA      NA      " the " NA     
## [4897] " the " " the " NA      " the " NA      NA      NA      NA      NA     
## [4906] " the " NA      NA      NA      NA      NA      NA      " the " NA     
## [4915] " the " NA      NA      NA      NA      " the " " the " " the " NA     
## [4924] NA      " the " " the " " the " NA      " the " NA      NA      " the "
## [4933] " the " NA      " the " NA      " the " " the " NA      " the " NA     
## [4942] " the " " the " NA      " the " " the " " the " " the " " the " NA     
## [4951] " the " NA      NA      NA      NA      NA      NA      NA      " the "
## [4960] " the " " the " " the " NA      " the " NA      NA      NA      NA     
## [4969] NA      NA      NA      NA      " the " NA      NA      " the " " the "
## [4978] " the " " the " NA      NA      " the " NA      " the " " the " " the "
## [4987] " the " NA      NA      " the " " the " NA      NA      " the " NA     
## [4996] " the " NA      " the " " the " NA
str_view_all(covid19_tw_sample$text, pattern = " the ")[1:10] # 문자열 객체가 먼저 오고 정규표현식의 지정된 패턴이 뒤따릅니다. 
## $x
## $x$html
## <ul>
##   <li>Hopefully when<span class='match'> the </span>White House reopens we’ll  have new owners in there too !!!! https://t.co/1EkTXt8nkW</li>
##   <li>All governments in<span class='match'> the </span>world are trying to manipulate<span class='match'> the </span>COVID-19 statistics. I trust countries that allow for free speech and free media. That doesnt mean trust media always being accurate. Question everything, but be open minded and come to your own fact driven conclusions.</li>
##   <li>"No health service in<span class='match'> the </span>world would be able to deal with #coronavirus if<span class='match'> the </span>public don't stay indoors..." Stay in, muppets.</li>
##   <li>Wow!
## Covid-19 Deaths per million:
## Germany: 3
## USA.         4
## 
## Why is<span class='match'> the </span>default in<span class='match'> the </span>media, America is bad? https://t.co/MlXSa38wSG</li>
##   <li>Best quick summary I’ve read of<span class='match'> the </span>(temporary) changes to<span class='match'> the </span>Ohio educational system due to #COVID19 and HB197. #ohedchat https://t.co/IPjKqwD0UE</li>
##   <li>Does fitness play a part in<span class='match'> the </span>recovery process? Here's what happened https://t.co/UvpOGd26CX</li>
##   <li>South Georgia Medical Center, like many other Southwest Georgia hospital systems, are releasing their COVID-19 numbers daily. https://t.co/rLV1idTNv9</li>
##   <li>Although<span class='match'> the </span>world should be focusing on how to solve #COVID19, Asian-American advocacy groups and researchers confirm that they have seen a surge of verbal and physical assaults. This needs to stop! https://t.co/bVBxt9kIfd #coronavirus #racism</li>
##   <li>RIP COVID-19 Hero. #covidfallen https://t.co/8SjgVqlRpA</li>
##   <li>3. @unusual4tune could you tell us a little about<span class='match'> the </span>symptoms of COVID-19?
## 
## Patients with COVID-19 may have mild to severe respiratory 
## illness with symptoms of
##      <U+0001F912>  Fever 
## 
##   <U+0001F62B>  Cough
##     
## <U+0001F975>  Shortness of breath</li>
##   <li>Our firefighters, along with #firstresponders &amp; #healthcareworkers throughout<span class='match'> the </span>Region, continue to serve our communities every day.  
## Do your part - #stayhome and be safe.
## Help prevent<span class='match'> the </span>spread of #COVID19.
## <U+0001F692> If you do go outside - keep a fire truck width apart! (2 m/6 ft) https://t.co/AjrMprEZYA</li>
##   <li>Day 4 of #onlineschool -<span class='match'> the </span>new TA managed to convince me to take a nap with her. <U+0001F926><U+0001F3FB><U+200D>♀<U+FE0F> It was a good one. #coronavirus #StayHome https://t.co/RRlalxxGl1</li>
##   <li>@StephenKing Apparently working doesn’t mean much to investing. Building, growing, healing, producing are all just platitudes in<span class='match'> the </span>age of Covid-19 #TwistedLogic</li>
##   <li>@RudyGiuliani @jeffgiesea @charliekirk11 Preventative measures that succeed in preventing people from getting COVID-19 have a 100% "effective" rate. I'd rather not get sick in<span class='match'> the </span>first place, thank you, Doctor G, Rudy.</li>
##   <li>Hospitals urgently need Personal Protective Equipment (PPE) to help fight #COVID19. You or your company can help by donating supplies. #Toronto let’s keep our healthcare workers safe. We are in this together. https://t.co/a2hmhmI8l3 #thePPEdrive</li>
##   <li>Immensely proud of my #community  #kwawesome -View from<span class='match'> the </span>‘Loo: When Waterloo Region helps A distinguished history of lending a hand is coming to bear for good during<span class='match'> the </span>COVID-19 crisis https://t.co/cPrTPeRA1Y</li>
##   <li>Even if<span class='match'> the </span>#quarantine forces us to #StayAtHome, our #LumipocketLT multifunctional #3Dprinter engraves with<span class='match'> the </span>#laser always new materials, such as this colored #chalk!
## #colors #coronavirus #customization #lumindustries #engraving #laserengraving #print3D #3D #allinone #DIY https://t.co/8rr4aG6IZ7</li>
##   <li>Now coronavirus is playing Bigg Boss with<span class='match'> the </span>whole nation #covid19 #lockdown #janatacurfew #India #ckmkb</li>
##   <li>and on<span class='match'> the </span>basis of such determination,<span class='match'> the </span>Secretary of HHS then declared on March 24, 2020, that circumstances exist justifying<span class='match'> the </span>authorization of emergency use of medical devices, including alternative products used as medical devices, during<span class='match'> the </span>COVID-19 pandemic</li>
##   <li>The fog is creeping in on bloody tiger's feet. Direct news from a friend he's had a friend die from NYC COVID-19. Wifey's feverish sister can only get a test because her Long Island employer is restricting plant access. It's coming. #dumpTrump and #lyingGOP before they kill you.</li>
##   <li>Bahrain, Belgium Report COVID-19 Treatment Touted By Trump Is Working For Patients | Zero Hedge https://t.co/s33ko7weA4</li>
##   <li>Should non-violent offenders be released from prison to avoid COVID-19 spread? https://t.co/LlCiGxCk4q</li>
##   <li>Open invitation for Sr. PMs &amp; PM leaders:
## 
## I'll be doing Zoom sessions (1:1 &amp; small groups) with folks who are looking for a new role due to COVID-19.
## 
## I clearly can't promise a great new job, but am happy to assist you with PM skills development &amp; job search prep.
## 
## DMs open.</li>
##   <li>How you laughing it up &amp; working along side a fellow RN &amp; next thing you hear is that they coded &amp; died from COVID-19?!?</li>
##   <li>#CoronaVirus update 
##  
##  Total Cases= 596,723 +702
##  Total Deaths= 27,352 +11
##  Total Recovered= 133,355 +298
## 
##  Active Cases: 436,016
##  Closed Cases: 160,707
##  
##  Next update in 30 mins</li>
##   <li>I've just got a text from my mom saying her cousin just died due to COVID<U+2014>19.
## 
## Didn't know him well, but what I know is that he was a *healthy* 47-year-old man.
## 
## Stay home guys, stay safe. It ain't no joke.</li>
##   <li>Join us for another free webinar series next week - March 30th 3pm &amp; March 31st - 10am. Click link to register - https://t.co/hEWg9XKzjp suitable for youth &amp; adults #YQGStandsStrong #COVID2019 #mentalhealth https://t.co/y4REXp8XAj</li>
##   <li>The #coronavirus (COVID-19) #pandemic has changed life across<span class='match'> the </span>country. The #IRS and Congress have responded with some #tax and financial relief. Here’s a brief rundown of what’s been provided so far. https://t.co/rf2l3q7uU4 https://t.co/3R3CFoA1kc</li>
##   <li>So while everyone is scrambling for masks and respirators this is going on behind<span class='match'> the </span>curtains in Oz! What a gigantic waste of dollars when Trump &amp; Co. won’t cover<span class='match'> the </span>Covid-19 Pandemic? What<span class='match'> the </span>Hell is going on here.....<U+0001F621><U+0001F92C><U+0001F6D1><U+0001F921><U+0001F3AA><U+0001F6D1></li>
##   <li>We thank all nurses for standing up against COVID-19 during this time. Sign our card to thank your local nurse:  https://t.co/3QUbglO8sC</li>
##   <li>@PrinceMolekga @kulanicool My people please<span class='match'> the </span>vaccine doesn’t exist apparently it’s there to kill us soo please I plea with you don’t take vaccine for Covid-19 that’s a death penalty for those who take it</li>
##   <li>Thank you. Hated seeing so many people get this story wrong. https://t.co/PWL6sG3uuo</li>
##   <li>***JUST IN***
## 
## Collin County @JudgeChrisHill reacts to a statement made earlier tonight by Dallas County @JudgeClayJ. 
## 
## Jenkins said there was a call today between medical officials and 10 other regional county judges to unify COVID-19 approaches and that Hill wasn't on<span class='match'> the </span>call. https://t.co/de4psxyTNq</li>
##   <li>How can business leaders manage<span class='match'> the </span>stress and uncertainty surrounding<span class='match'> the </span>#coronavirus pandemic? Embrace<span class='match'> the </span>fear instead of rejecting it, says @RebootHQ CEO @jerrycolonna: https://t.co/g9oIuFwEtd #eventprofs #covid19 #teammanagement</li>
##   <li>New employer content on COVID-19 on Capell &amp; Howard's website feed. Check it out. 
## 
## https://t.co/y4FPJDrMZB
## 
## #humanresources #EmpLawGods #employmentlaw #Covid19usa #businessadvice</li>
##   <li>Beautifully explained - simple reason for social distancing. 
## Thank you #bbcnews 
## #COVID19 https://t.co/XO6yv79ujQ</li>
##   <li>@Pontifex with no congregation because of #COVID19 
## 
## But back home bado tunaambiwa  twende kanisani. https://t.co/zcU9Q0S1IT</li>
##   <li>Alarmed by <U+0001F1ED><U+0001F1F7> govt plan to reduce protection for workers amid #COVID19. Outbreak cant be a pretext for nullifying labor legislation re: remuneration, working hours, sickness and holiday provision. @IUFglobal &amp; #EFFAT wrote to Andrej Plenkovi<U+0107>  to urge drop of plans https://t.co/krtFLaIsap</li>
##   <li>COVID-19: Behavioral Health Core Crisis Continuum as Essential Services - #CrisisTalk https://t.co/z0wPNruhBh</li>
##   <li>I'm working on<span class='match'> the </span>#BuildforCOVID19 global hackathon &amp; wondering if there are resources for developers that are discounted/free during #coronavirus pandemic that would help to build /deploy ? I'll compile a list @sundarpichai @awscloud @Microsoft #tech @lessin @FrontendMasters</li>
##   <li>3/25 CoVID-19 cases were 62, 045-today 3/26 cases are 80,000 +day isn't over... Deaths up over 1100 but<span class='match'> the </span>day isn't over ! 
## TESTING: NOT EVEN CLOSE TO BEING ADEQUATE
## but is why we're beginning to see<span class='match'> the </span>tip of those exposed-GET THE VENTILATORs+SAFETY mat'ls to front line NOW</li>
##   <li>A further 70 cases of coronavirus have been reported in Queensland. #coronavirus #7NEWS 
## 
## https://t.co/ikPk1lwttk</li>
##   <li>this is<span class='match'> the </span>fake president that CNN has enabled (via mostly uncritical coverage) for years.<span class='match'> the </span>man is a pathological liar, at<span class='match'> the </span>very worst moment. #TrumpVirus #COVID19 #StayHome #FlattenTheCurve https://t.co/HRIkVYVExn</li>
##   <li><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C><U+0001F447><U+0001F3FD><U+274C>
## 
## SOMETHING MORE HAPPENS 
## 
## Is China hiding COVID-19 death toll? 21 million cell phones disappeared, why? https://t.co/ctFCBSD9Av</li>
##   <li>lets be real, so far<span class='match'> the </span>real winners of<span class='match'> the </span>damn #coronavirus are #JoeExotic and everyone who bought #zoom stock last year<U+0001F937><U+200D>♂<U+FE0F></li>
##   <li>Please join us, Friday, 3/27/2020 at 6:30 P.M. to speak with an expert in infectious diseases and immunology. Dr. Valerie E. Cadet will answer questions you have on<span class='match'> the </span>current pandemic and give an in-depth explanation of COVID-19.
## 
## Click here to register: https://t.co/vHmdhLfYqd https://t.co/KSWprgXAC2</li>
##   <li>Queen Pissed After MI5 Infect The Wrong Son With Covid-19 https://t.co/7szQFn1tk3 via @TheunAustralia</li>
##   <li>I appreciate it's a complex situation and there are plenty of questions still to be asked. However:
## 
## <U+2022> The self-employed in my constituency cannot wait until June to receive support. 
## 
## <U+2022> It's as simple as that. 
## 
## <U+2022> We need to expedite this support. 
## 
## Immediately #coronavirus</li>
##   <li>YEAH <U+0001F973> we’re back up &amp; running<U+0001F3C3><U+200D>♀<U+FE0F>a more powerful &amp; stronger website big thankyou for your patience it’s been tough for all but behind<span class='match'> the </span>scenes we haven’t stopped just take a look 24/7 totally committed <U+0001F44A><U+0001F44D> #COVID2019 @thechefsforum @BBCLondonNews @SabrinaGhayour @MGaletti01 https://t.co/VhuirS7Esq</li>
##   <li>@CodyThorn They’re out of control. And COVID-19 spread there is gonna be really bad. Calling it now.</li>
##   <li>Death rates in<span class='match'> the </span>UK from #coronavirus go up by a whopping 31 percent to 759! https://t.co/DD55NNcOcK</li>
##   <li>@Reboticant Both. 
## The email is real. 
## Go take a look...
## https://t.co/EF5T5n7Gvh</li>
##   <li>@Alienware I am taking my 7yr old for COVID-19 testing tomorrow!!...  He has pneumonia right now and hes scared to death...  Send your extraterrestrial help!!..
## 
## You never think it can happen to you.... Until it does.... <U+0001F637><U+0001F637><U+0001F62D><U+0001F62D></li>
##   <li>Alesha is extremely vulnerable to #Coronavirus. Children like Alesha - and their families<U+00A0>- need our support more than ever. Please help us to care for seriously unwell children - https://t.co/G1s2t2YPQ7 <U+2764> https://t.co/5z3YX2PzVP</li>
##   <li>hoarding raid  
## two weeks later  
## still empty shelves  
## #haiku #coronavirus #pandemic</li>
##   <li>Did President Trump Call COVID-19 A Hoax? NO!!
## 
## https://t.co/gk3VPrjOdg @wbcknews</li>
##   <li>How different countries are reacting to<span class='match'> the </span>COVID-19 risk and their governments’ responses. https://t.co/wPJ1u7ne8I https://t.co/wPJ1u7ne8I @cambridge_uniより</li>
##   <li>#AddictionTreatment Centers Make Adjustments During #COVID-19 Pandemic https://t.co/PrajNhCplf #fightaddiction #addictionrecovery</li>
##   <li>@angryablib Hi, you can read it here: Thread by @RobWarrenMD: @JasonNixonAB. We expect we will have our first COVID-19 case in Sundre next week. Your… https://t.co/bGInn0Eqm5. Share this if you think it's interesting. <U+0001F916></li>
##   <li>#COVID19 please help ushttps://www.gofundme.com/f/1w340aamlc?utm_medium=copy_link&amp;utm_source=customer&amp;utm_campaign=p_na+share-sheet&amp;rcid=2c3278c725b04fcd8863e6c18d802ded</li>
##   <li>This is not an Olympic, showing<span class='match'> the </span>medals by country Gold, Silver, Bronze, this is<span class='match'> the </span>most difficult tragedy on humanity, which we are seeing/facing, can’t believe ppl are dying and we are watching/counting live. May God bless/protect us and forgive us. Ameen. #coronavirus https://t.co/iNNkAJRW4d</li>
##   <li>hey @HomaTav, look what popped up in @PublishersWkly!
## 
## https://t.co/4p9oKAQPx9</li>
##   <li>Confronting<span class='match'> the </span>possibility of extreme animal care shortages and disruptions to research in<span class='match'> the </span>wake of<span class='match'> the </span>#coronavirus, U.S. universities across<span class='match'> the </span>country have asked labs to think hard about<span class='match'> the </span>mice they actually need. https://t.co/O6YE6eZDRC</li>
##   <li>A glimmer of #COVID-19 optimism via @ty_olsen  https://t.co/wZsYM8xbKF</li>
##   <li>@BenjaminNorton A carrier has to head to shore over coronavirus. 
## 
## Pompeo is such an idiot he thought<span class='match'> the </span>aggressor 7,000 miles away has an advantage during a pandemic!
## 
## https://t.co/bG0HHYnd38</li>
##   <li>Part of me was really hoping that<span class='match'> the </span>sheer number of people wearing masks and gloves would help illustrate social responsibility to those with more of an... uncouth style.
## 
## #maybenot #gross #publichealth #covid19… https://t.co/A2cBV89aKp</li>
##   <li>Heal:    https://t.co/pJgGxUrt8K …
## 
## #addiction #alcoholism #recovery #RecoveryPosse #coronavirus #sober #sobriety #treatment #addictionrecovery  #bipolar #coronapocolypse https://t.co/yvuAuNxgnY</li>
##   <li>#RememberTheTime just<span class='match'> the </span>other day, #impeached #Trump announced<span class='match'> the </span>#USA only had 15 confirmed cases of #Coronavirus exposures &amp; predicted zero cases quickly, 19,800 cases ago. #HeLied #YouBeenConned #DrinkingTheKoolAid #TrumpLiesPeriod #WhenWordsAreEaten</li>
##   <li>#BREAKING: At<span class='match'> the </span>current rate, #COVID19 cases in Italy and<span class='match'> the </span>United States will surpass China in<span class='match'> the </span>next 24 hours.
## 
## Thursday PM Update:
## 
## <U+0001F310> 521,000 cases worldwide
## 
## ▶<U+FE0F> 81,800 China <U+0001F1E8><U+0001F1F3> 
## ▶<U+FE0F> 80,500 Italy <U+0001F1EE><U+0001F1F9> 
## ▶<U+FE0F> 79,700 USA <U+0001F1FA><U+0001F1F8> 
## 
## (data from @JohnsHopkins) https://t.co/GUH37mtpYB</li>
##   <li>@News24 Let’s not rejoice when people get #COVID19 no matter<span class='match'> the </span>race, class, social standing,political view or nationality. Once this thing hits<span class='match'> the </span>townships, all hell will break loose #CoronavirusSouthAfrica #COVID19SouthAfrica</li>
##   <li>Indy 500 shifted to August due to Covid-19 https://t.co/HWgZI6ySBB https://t.co/FFchjBpieW</li>
##   <li>@BSYBJP @narendramodi Most H'nble and Respected Sir,
## I just have a very small idea to share with you sir. we have thousands of State transport buses off from sevices.  we can transform them into mini moving isolated wards to test &amp; treat<span class='match'> the </span>affected people from  covid - 19.</li>
##   <li>Curogram Streamlines COVID-19 Testing Process for United Memorial Medical Center https://t.co/WvhOfIS85G https://t.co/sr778BlgJv</li>
##   <li>@lampert_poliana Covid-19</li>
##   <li>End Apartheid now
## #coronaviruspalestine #coronavirus #endapartheid #endoccupation
## Gantz will block annexation, Palestinians are at last a ‘player’ <U+2014> J Street sees upside in Israeli politics <U+2013> Mondoweiss https://t.co/xs0CIqs8OD</li>
##   <li>This is an #EmergencyAlert #DPANow #CoronavirusOutbreak #COVID2019 https://t.co/Do6uSWwDbD https://t.co/PYsuhwicZZ</li>
##   <li>In memory of all those who have lost their lives due to #COVID19 &amp; to all<span class='match'> the </span>family &amp; friends who couldn't be present at their loved ones funerals @PallCare_Nurse #pallicovid https://t.co/X0MSmPLzfl</li>
##   <li>Just to say: I was baking #bread from scratch before #coronavirus made it cool. So back off gays, stop stealing my niche. https://t.co/L6JhtAKxlU</li>
##   <li>This is called a marshmallow hug  took food up to my grandchildren staying safe. #coronavirus https://t.co/fpjn2FX1tD</li>
##   <li>61% of U.S. Adults Are Stressed About #COVID19: https://t.co/Y1EHDdfV1h</li>
##   <li>This kind of police brutality in this country is un called for<span class='match'> the </span>police are fighting<span class='match'> the </span>citizen of kenya and not Covid 19<span class='match'> the </span>only solution is a revolution @MigunaMiguna @RobertAlai @NelsonHavi https://t.co/LmwDRM7vn7</li>
##   <li>Join a live panel discussion on COVID-19 with BU Health Experts tomorrow from 1-1:30 pm. 
## Get details here: https://t.co/cKOGqn0pys</li>
##   <li>@socialfoodhour @Reddylane who I've been supporting this year has had<span class='match'> the </span>challenge of increased demand for her amazing fresh fruit and veg from their #socent Market Garden .... deliveries have had to increase and services increase due to #covid19 #SocentCovid19</li>
##   <li>“A beautiful day.” The POTUS’ first words during a task force briefing during a pandemic. #COVIDIDIOT #potus #trumpvirus #coronavirus</li>
##   <li>Our demo system in @securedatakit is called Rid Our World of Disease....Yesterday so all of<span class='match'> the </span>#covid19 datasets we've created start with "rowdy" and every time I write a query I think of Rowdy Roddy Piper. 
## 
## I've spent too much time with this data. Send help. https://t.co/J0QIT8T3Y4</li>
##   <li>Why can't Buhari administration pay salary for civil servants in all 36states to have someone to buy foods at home for Covid-19 pandemic problem???@eggheader @ProfOsinbajo @kfayemi @APCNigeria @OfficialPDPNig @DigiCommsNG @NCDCgov</li>
##   <li>Stop smoking <U+0001F6AB>
## Stop alcohol drinking <U+0001F6AB>
## Eat healthy foods <U+0001F375>
## Drink water<U+0001F4A6>
## Walk, run, ride, exercise <U+0001F3C3><U+0001F6B6><U+0001F6B2>
## Maintain.    social       distancing
## #Coronavirus is not invincible!!</li>
##   <li>Please take a moment to join us in thanking our amazing #HealthCareHeroes on<span class='match'> the </span>front line of<span class='match'> the </span>#COVID19 pandemic. Your strength and bravery have not gone unnoticed by<span class='match'> the </span>world! #NYC #WeStayHereForYou #PleaseStayHomeForUs #ClapBecauseWeCare @nyphospital @Columbia https://t.co/5ZlQ5s7NYz</li>
##   <li>#Coronavirus: strategic considerations for investment advisers considering whether to apply for temporary relief from filing obligations due to COVID-19 https://t.co/inCWvQ39Oe #investmentadviser #FormPF https://t.co/SkSwZ62vkV</li>
##   <li>#AskZee
## 
## As REMDESIVIR  and FAVIPIRAVIR shown effctive treatment against #COVID19 in china , japan and south korea then why india is not considering those drugs ????</li>
##   <li>Covid-19 is real and seeking protection against it , is allowed religiously or secularly ...
## Try to know its symptoms..
## And don't just go to hospitals  endeavors to contact NCDC or any relevant agency in your state #CovidNGR #StayAtHomeAndStaySafe #StaySafeNigeria #COVID19</li>
##   <li>Kenya government has launched war against  it's people in<span class='match'> the </span>name of fighting COVID-19. Look what is happening in Mombasa.</li>
##   <li>Some #DisneyPlus shows have been called off due to #coronavirus https://t.co/SbhqkEYnIc https://t.co/6Zylggaa62</li>
##   <li>China bans entry of foreigners in move to curb<span class='match'> the </span>spread of virus #tcot #tlot #teaparty #MAGA #coronavirus
## https://t.co/v9hvtf19Fk</li>
##   <li>Just listening to an epidemiologist who gives daily updates, and he is confirming that COVID-19 is indeed comorbid with<span class='match'> the </span>loss of taste and smell.  Just some info to keep an eye out for.  Also, apparently,<span class='match'> the </span>virus can cause conjunctivitis, so PPE!</li>
##   <li>[Infographic] Covid-19 update: 927 confirmed cases in South Africa. Our infographic also indicates current global numbers: https://t.co/rwmKI0rKOO https://t.co/rk1DCFluX1</li>
##   <li>Wife: I don’t care. Just entertain<span class='match'> the </span>kids.                                                           Me: Noted                                        #dadsinselfisolation #StayAtHome #COVID #COVID19 #COVIDIDIOT #CoronaLockdown #CoronavirusOutbreak @curnwah158 #covid19australia https://t.co/jmeN5x2csK</li>
##   <li>#Myositis patients, join us TONIGHT, Thurs., Mar. 26th, at 7 PM for COVID-19 and Myositis, a Patient Video Support session. Let's discuss what we are feeling and support each other. Add to your calendar. See details  https://t.co/Wt1pcWorS7 #inflammatorymyopathy #myositissupport https://t.co/DcfecA3aFl</li>
##   <li>Filtering ODE with Random coefficients #COVID19 #mftg https://t.co/XBHt1BhPJr</li>
##   <li>Favorite @Simpsons meme I’ve found so far related to work and #COVID<U+30FC>19 https://t.co/Di8otjSMXJ</li>
##   <li>Coronavirus COVID-19 FREE
## Printable ESL Lesson!<U+0001F9A0> <U+0001F637>
## Download link: <U+0001F447><U+0001F447><U+0001F447><U+0001F447><U+0001F447> https://t.co/Xamzjtw5lf https://t.co/v41CuZqlmt</li>
##   <li>Various #COVID19 reports include<span class='match'> the </span>prohibitive cost of ventilation &amp; ECMO in<span class='match'> the </span>US....so proud to work for &amp; always grateful for our NHS   <U+2764><U+FE0F><U+0001F9E1><U+0001F49B><U+0001F49A><U+0001F499><U+0001F49C></li>
##   <li>Salute to our that Doctors who are continuously trying to save our lives. <U+0001F614><U+0001F613><U+0001F62A>
## #coronavirusinpakistan #CoronaLockdown #COVID2019</li>
##   <li>@sal_castaneda Could become a Post-Wuhan Coronavirus (COVID-19) Outbreak option. <U+0001F60E></li>
##   <li>I learned from #COVID19:
## The man of<span class='match'> the </span>21century,with all his claims and a wave of disbelief in God,has become so powerless that he cannot even guarantee<span class='match'> the </span>lives of<span class='match'> the </span>leaders of<span class='match'> the </span>developed countries against a virus that is not even visible to<span class='match'> the </span>eye.
## #ThePromisedSaviour https://t.co/epgdnVvYBN</li>
##   <li>@RepKenBuck Sir, who owns "Washington's Opera House"? Answer:<span class='match'> the </span>United States people. While you may not care about<span class='match'> the </span>maintenance of our assets, I do. Your disingenuous criticism here is only equaled by your dangerous downplay of<span class='match'> the </span>COVID-19 pandemic. You, sir, are bad for Colorado.</li>
##   <li>Double Mask Industrial Supplied Anti-COVID-19 Face Masks for Medical Experts and General Public https://t.co/kFBam4NIVq https://t.co/uUXVWRqqVO</li>
##   <li>@RudyGiuliani @RealCandaceO Rudy! It was so nice not seeing or hearing from you for quite a while! So,<span class='match'> the </span>1,000 casualties so far due to COVID-19, and those we will see in<span class='match'> the </span>future, are acceptable, correct? If that is indeed your perspective, here’s to seeing you among<span class='match'> the </span>next 1,000.</li>
##   <li>@DerbysPolice @DerPolDroneUnit Haven't you got better things to to do than make fancy videos? Maybe arrest<span class='match'> the </span>man who said you can't catch covid-19 on<span class='match'> the </span>tube then proceeded to pack people in like sardines?</li>
##   <li>Talks are underway between #Iran guild of fuel station owners and<span class='match'> the </span>government to partially shut<span class='match'> the </span>stations,<span class='match'> the </span>guild’s secretary says adding, “High number of our employees have been infected with #COVID19... Gasoline sales have plummeted 70% as well.” https://t.co/eWVWy8kX3W</li>
##   <li>@NCDCgov would later visit<span class='match'> the </span>hospital to inform them that<span class='match'> the </span>patient tested positive to #coronavirus &amp; has since been moved to Yaba.
## 
## @NCDCgov has ordered immediate shutdown of<span class='match'> the </span>hospital but<span class='match'> the </span>source says this order has not be fully carried out by<span class='match'> the </span>hospital management.</li>
##   <li>Another Greetings Card Commission for a PCSO that is leaving to become a PC! Extra poignant to create something nice for our key workers during<span class='match'> the </span>#COVID2019 lockdown in<span class='match'> the </span>UK. <U+0001F46E><U+200D>♂<U+FE0F><U+0001F3A8> https://t.co/67AppPJ6eA</li>
##   <li>Does anyone know (or have) their employers' Covid-19 policy? We're trying to write one, which goes past our normal extended-sickness policy, but IANAL and I'm unclear if, for example, we can treat caring for a relative like sick leave, or what.</li>
##   <li>Prevent<span class='match'> the </span>Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/6VeOo0vFOM</li>
##   <li>COVID-19 Is Not Even Close To America's Biggest Problem https://t.co/Mw5tEE91IP https://t.co/GqG2RJircj</li>
##   <li>Look at Italy #COVID19 
## Yesterday's death toll in Italy Rose to #724 https://t.co/yTva4mX2D7</li>
##   <li>Christmas lights shining hope for people amid<span class='match'> the </span>COVID-19 pandemic https://t.co/jnowQfVScu</li>
##   <li>Scammers using COVID-19...@CNBC 'Coronavirus fraudsters prey on fear and confusion with fake products, email scams' https://t.co/VTzPMmmBVu https://t.co/hqrUmpzp25</li>
##   <li>Clot-busting drug may work in Covid-19 emergency: Researchers - india news - Hindustan Times https://t.co/piI2wzlPPj @PMOIndia @ICMRDELHI @atulkasbekar @RahulGandhi @LilavatiHRC @HospitalHinduja @ndtv</li>
##   <li>Superstar! #coronavirus https://t.co/sGigLveqxS</li>
##   <li>@PatriqKanyomozi <U+0001F606><U+0001F606><U+0001F606><U+0001F606><U+0001F606>Ba wa Lucky, Bebe will send you goons harder than #COVID2019. #StaySafeStayHome</li>
##   <li>We are really about to hit 1000 covid-19 deaths in a matter of days 
## #bbcnews</li>
##   <li>PLEASE STOP GOING ON FLIGHTS. 
## 
## The Uber driver who picked up NY’s 1st identified CoVid-19 patient is dead. He died Tuesday am. It was a 20 min ride. 
## 
## For 3 months I’ve been trying to halt flights. look who is still traveling. east coast will be ravaged. https://t.co/deXuwR3Brw</li>
##   <li>Ontario confirms another 135 cases of #coronavirus, and Prime Minister @JustinTrudeau announces an increased payroll subsidy for #smallbusiness
## 
## All this and more 680 NEWS TO GO with @SteveRobertsTO and @SarahParrott7
## 
## We're here for you anytime at
## https://t.co/h9p45U4Tka https://t.co/uW720zoAjr</li>
##   <li>Currently we are just waiting for Mr.President to announce that "all registered  Kenyans citizens to expect a massage from mpesa....
## Confirmed you have received Ksh......... From<span class='match'> the </span>government of Kenya....your mpesa balance Ksh......
## This will help you counter Covid_19</li>
##   <li>Speechless <U+0001F494><U+0001F614> #COVID19 #London #CoronavirusOubreak #CoronavirusOubreak https://t.co/IYvIg4DimG</li>
##   <li>I swear we are fighting two pandemics Covid 19 and RSS .</li>
##   <li>Cyber Version of 'Justice League' Launches to Fight COVID-19 Related Hacks: Goal is to help organizations - especially healthcare entities - protect against cybercriminals trying to take advantage of<span class='match'> the </span>pandemic. https://t.co/RpaYhDRYi2 https://t.co/10hFmHmEre</li>
##   <li>On today’s episode of COVID-19 in Oklahoma, host @benfelder_okc speaks with State Superintendent Joy Hofmeister @joy4ok about<span class='match'> the </span>decision to pivot to distance learning and what led her to make this proposal. #oklaed
## 
## https://t.co/E40ww9Sjw2</li>
##   <li>With a symphony of sound from<span class='match'> the </span>Port and Bay of #Gibraltar<span class='match'> the </span>salute commences...thank you to all of our essential services on<span class='match'> the </span>Rock
## 
## #COVID19 #ClapForTheGHA</li>
##   <li>I will be sharing 1 film from #DokuFest production, each day during<span class='match'> the </span>#COVID<U+30FC>19 #QuarantineAndChill #OneFilmADayKeepsDoctorAway
## Film #14 THE LONGEST SUMMER by Gentiana Gashi
## #DokuFest #SweetAndShortQuarantine https://t.co/PUtAfr6xIr</li>
##   <li>@Vijayabaskarofl 
## Sir,please read this article,got a good news for corona virus infected people,Thank you
## https://t.co/OT1WlqGAJw</li>
##   <li>Fauci says #US needs to be prepared for #coronavirus to be cyclical https://t.co/ZWZNPmyBtm</li>
##   <li>"Coronavirus cuts: Airlines slash snacks, drinks and middle seats during pandemic": Major airlines in<span class='match'> the </span>U.S. are adjusting their in-flight practices and policies to help fight<span class='match'> the </span>spread of COVID-19 in<span class='match'> the </span>skies.,https://t.co/2CXvE0RN7P</li>
##   <li>@googlepodcast has been helpful during this period. #COVID<U+30FC>19 #StayHomeSaveLives #LetsFightCovid19 https://t.co/MnNwSAPpjZ</li>
##   <li>Farmers offer safe haven for grey nomads with nowhere to go due to COVID-19 https://t.co/JarCpdhL3f</li>
##   <li>Heard Joe Biden is having SNIFF withdrawal symptoms. COVID 19 sure has a way of messing with someone's life</li>
##   <li>@realDonaldTrump I know you don’t read much about historical lessons learned, but please give this a scan:
## https://t.co/ts92Hg4mnX</li>
##   <li>Introducing The Monitoring COVID-19 In Canada Dashboard.
## A #COVID19 viz tool for Canada - designed with @theresabernardo &amp; Kurtis Sobkowich (@OntVetCollege).
## Regardless of what data suggest - follow health expert guidelines; stay home; wash your hands. https://t.co/257gWLZnMH</li>
##   <li>A fantastic resource from<span class='match'> the </span>GC Health Dept for helping children, teens &amp; adults alike process what’s going on in<span class='match'> the </span>world around us right now. Staying<U+00A0>#HealthyatHome<U+00A0>includes mind as well as body. Take a listen<U+00A0>https://t.co/4lBwXOlkA1 #WeAreGCconnectEd<U+00A0>on<U+00A0>#TeamKentucky https://t.co/Y7nATRLxvX</li>
##   <li>@BJP4India @narendramodi @nsitharaman @ianuragthakur Sirji, pls send emergency buses to Delhi UP Highway. 
## Poor women &amp; children are walking to their hometown.
## They are migrant labourers, not well educated to understand COVID-19.
## Pls do it on compassionate grounds.
## One time emergency service only
## <U+0001F64F></li>
##   <li>The March 27 issue of e-Merriam News is now available!
## 
## - See how many of your neighbors have already filled out<span class='match'> the </span>2020 Census! 
## 
## - Get updates on COVID-19 in JoCo.
## 
## - The Merriam Community Center opens in June. Sign up now to become a charter member!
## 
##  https://t.co/Iqjs7j6Rop https://t.co/uWxznu4FyW</li>
##   <li>Anyone who missed<span class='match'> the </span>31 January deadline has four weeks from 26 March to file their 2018-19 return and benefit from<span class='match'> the </span>self employment support scheme #COVID2019 #selfemployed</li>
##   <li>Kathy Griffin was hospitalized for an abdominal infection #Coronavirus symptoms include dry cough/tightness/pain in<span class='match'> the </span>chest, trouble breathing and a fever.The hospital was following CDC guidelines which is why they didn’t test her
## https://t.co/QjoCiuyAoE via @gatewaypundit</li>
##   <li>Creative way to fight Corona!  <U+0001F64F>
## 
## https://t.co/5NfnkUIcKB
## 
## #ChineseVirus19 #CoronavirusOubreak #IndiaBattlesCoronavirus 
## 
## @narendramodi Sir, @PMOIndia 
## @ZeeNewsHindi @aajtak @indiatvnews @republic</li>
##   <li>This a really good article and puts some perspective to a very difficult time for all. 
## The evidence on Covid-19 is not as clear as we think | The Spectator https://t.co/BE8RiMX1pa</li>
##   <li>#IndiaFightsCorona do follow<span class='match'> the </span>rule of<span class='match'> the </span>government. Just stay 21 days at your home to see your 42 years <U+2795>ahead future. You can do lots of work at your home like you can take care of your family. You can help them in their works. You can share your past with them. #COVID19</li>
##   <li>@realDonaldTrump 
## Please answer this Mr. President. 
## Will sole proprietors get a check? We are business people that cannot conduct business if<span class='match'> the </span>economy is locked. 
## We need to pay bills too. Utility bills are not stopping because of COVID-19.</li>
##   <li>Sowore Alleges Plan By FGN To Inject Him With COVID-19 Over Abba Kyari News Report. https://t.co/EJSTlLQI5z https://t.co/58xhTVT6x3</li>
##   <li>Request a swab kit to register as a potential blood stem cell donor #COVID19 #
## <U+2066>@DKMS_uk<U+2069>  https://t.co/1G7fNQntrZ</li>
##   <li>Cried a lot tonight for a really beautiful show that no one will see. Tonight I am not ok. And that’s ok. Tomorrow will be new and tomorrow will be beautiful and God is always good. But Covid-19 can suck a dick. And that is all.</li>
##   <li>It's okay to feel heartbroken. 
## 
## It's okay to be angry.
## 
## It's okay to mourn<span class='match'> the </span>life you knew before COVID-19. 
## 
## This pandemic is disrupting everyone's "normal" in so many ways. Give yourself time to grieve.</li>
##   <li>Senator Jimmy Hickey, Jr. presenting an amendment: 
## 
## SB2 #1 <U+2013> An act to create<span class='match'> the </span>COVID-19 Rainy Day Fund; to transfer funds to<span class='match'> the </span>COVID-19 Rainy
## Day Fund; and declare an emergency.</li>
##   <li>good thread about<span class='match'> the </span>#covid19 situation WRT to<span class='match'> the </span>working class vs<span class='match'> the </span>interests of capital https://t.co/E99fqDdSFg</li>
##   <li>The Governor issued an EO ensuring AZ hospitals increase capacity for a potential influx of patients due to COVID-19. The order requires hospitals to increase bed capacity in<span class='match'> the </span>state by April 10, take steps to optimize staffing and maximize resources. https://t.co/lGpwdJlu1g</li>
##   <li>@CNN @andersoncooper @drsanjaygupta Are<span class='match'> the </span>face masks and gowns that are being made from polyester or other material safe for use during Covid-19? I saw where Fanatics is turning<span class='match'> the </span>material that they would use to make uniforms into face masks and gowns.</li>
##   <li>Make no mistake, now more than ever, stay home. #covid19 https://t.co/5MOoBKjp4a</li>
##   <li>Monroe County coronavirus cases now include young child; fourth person dies https://t.co/jAWAhIr4we via @DandC #ROC</li>
##   <li>We must maintain vigilance that<span class='match'> the </span>current global #pandemic is not used as an excuse to unnecessarily erode #encryption and #privacy laws and permanently remove our protections.
## 
## https://t.co/dCjcS1OZ1x
## 
## #infosec #COVID19 https://t.co/K2FderhGyA</li>
##   <li>The $2 trillion stimulus gives #hospitals $100B to help treat #COVID19 patients but also to make up for lost revenue.
## 
## There are other provisions dealing with patient privacy and over-the-counter drugs.
## 
## Subscribe to @BIPrime for all<span class='match'> the </span>details: https://t.co/5LwvfM0Eao</li>
##   <li>I just herd about a cookout. WHY tf you outside DH having a cookout. YOU supposed to be inside. #Blackpeople #CoronaLockdown  #coronavirus</li>
##   <li>Farmers seeking to find any good news revolving around<span class='match'> the </span>new coronavirus disease 2019 (COVID-19) will find some regarding 2020 supplies of seed, agricultural chemicals, and fertilizer. In most cases, supplies should be adequate and even plentiful.  https://t.co/mC5bkuGWwg</li>
##   <li>BREAKING NEWS: Burundi is<span class='match'> the </span>only African country without any case of coronavirus. When<span class='match'> the </span>Minister Of Health was asked about<span class='match'> the </span>secret behind<span class='match'> the </span>zero case of covid-19, this is what he had to say; "It is very simple. We don't have<span class='match'> the </span>testing kits."<U+0001F923><U+0001F923><U+0001F923></li>
##   <li>#covid_19 rant, #neworleans #mardigras #louisiana https://t.co/1L0idKreNh</li>
##   <li>Is this<span class='match'> the </span>kind of stuff of which #CivilWar is made? #Trump did it to #PuertoRico after<span class='match'> the </span>disasters there -- now #Washington &amp; #Michigan? Says he told Pence not to call "governors who aren’t ‘appreciative’ of White House #coronavirus efforts" #covid19 https://t.co/xd0EJJdTsE</li>
##   <li>If you are a City of Miami resident over<span class='match'> the </span>age of 65 or older &amp; are experiencing symptoms of #COVID19, please call 305-499-8767 to schedule an appointment to be tested at Marlins Park. #InThisTogether https://t.co/RMj16Rqo49</li>
##   <li>@LaraLeaTrump @realDonaldTrump Is Covid -19 biologic weapon from usa?? To kill chinna and irak?? I heard that</li>
##   <li>#COVID_19 : Chinese health authorities confirm patient zero 'had sex with bats' https://t.co/fU3c1WMNXi</li>
##   <li>Global chairman @SAFoundationN Mr. @SAfridiOfficial nominates Mr. @iamamirofficial , Mr. @harbhajan_singh and Mr. @CJordan for #DonateKaroNa Challenge to tackle #Covid19 pandemic, support<span class='match'> the </span>needy &amp; ensuring #HopeNotOut for all! #Stayhometosavelives &amp; #DonateKaroNa to<span class='match'> the </span>cause https://t.co/cO2FvADhW2</li>
##   <li>Additional Information Released on SW Iowa COVID-19 Case https://t.co/J8Poeai6Ua</li>
##   <li>Me when I see my next electricity bill
## 
## #wfm #coronavirus #COVID19 #QuarantineLife #Quarantine #workingfromhome #workfromhome https://t.co/0rrW34bYVy</li>
##   <li>Many Thank You  #Darling  @PrabhasRaju  @BTR_KTR  @KTRTRS  @TelanganaCMO  @alluarjun  @ssrajamouli  @JAGANTRS @JAYANAVEENTRS @Dr_RakeshTRS @trsharish 
## Each And Every One Person  Plz Help This Our India 
## #JaiHind
## #COVID2019 
## #caronavirus2020 https://t.co/kxReyWVRHP</li>
##   <li>Our MoneySense materials are not just for teachers - there's loads for parents and kids too! #StayHome #COVID2019 #financialeducation https://t.co/8pYop4aIx7</li>
##   <li><U+0001F4A5>All in One about COVID-19<U+0001F331><U+0001F331><U+0001F331><U+0001F64F> https://t.co/nK313jlJPe</li>
##   <li>We're gonna kick coronavirus'es ass and save lives, says @NYGovCuomo ! <U+0001F64F> #COVID19 #coronavirus</li>
##   <li>COVID-19 model https://t.co/X7ryLz4S9r</li>
##   <li>COLUMN: Four reasons to hope that B.C. will win COVID-19 fight https://t.co/Sdtj8ItoPI</li>
##   <li>@TheOfficialSBI 
## The Position at RUSU branches is critical after announcement of package by Govt.  Take more steps to protect staff and customers.  Gondhia Branch already closed by govt and all staff under self  quarantine. Protect staff from COVID-19.</li>
##   <li>Coronavirus is sweeping<span class='match'> the </span>globe and<span class='match'> the </span>nation, here's what it looks like in California. https://t.co/SRGJ7qzbkh</li>
##   <li>i realize many of you loathe The War Machine -- I'm not a huge fan myself -- but in an honest analysis sailors are workers, and you will be hard-pressed to argue that two floating nuclear-powered virus factories is a welcome development https://t.co/bDiK5TXQWn</li>
##   <li>Mayor Hurley toured businesses on Kingsway with bylaw officers today, and was pleased to see that they are getting<span class='match'> the </span>physical distancing message. 
## 
## #PhysicalDistancingEqualsSocialResponsibility #COVID19 https://t.co/X9WAjSOOvb</li>
##   <li>could you please release prisoners from UK HMP PRISONS due to COVID-19
## Prisoner's
## Prison Officer's 
## Visitor's
## Are at risk to get infected with Covid-19 There was a case in HMP .</li>
##   <li>@rfeenstra2 @JanetBrown980 @CKNW @GlobalBC @jillreports @steeletalk Covid-19. Why isn’t there an edit option?</li>
##   <li>#Covid_19 Reincarnation is Real and Loading.. This is going to be messy, as next Generation viral Nucleotide (protein) sequence maybe resist Alcohol effect ..
## 
## @alykhansatchu https://t.co/dPkTKOvFXD</li>
##   <li>#COVID19 
## 
## 1524 pts with cancer
## - 12/1524 (0.79%) had SARSCoV2
## - median age 66
## - 7/12 had NSCLC
## - 5 (41.7%) treated with either chemo w/ or w/o immuno (3) or XRT (2)
## 
## Pt w/ cancer have higher risk (OR 2.3) 
## 
## Admission and recurrent visits are risk factors
## 
## https://t.co/b7lTk3L8iE https://t.co/V61ZDGcW5f</li>
##   <li>Hmmm,<span class='match'> the </span>conspiracy theory that this virus is a bioweapon is forming shape day by day... We'll see how it goes...
## #StaySafeNigeria #COVID19 #PresidentCovikk #TBJoshua https://t.co/AbIFsP9DdI</li>
##   <li>Quick story:
## Wife was using<span class='match'> the </span>bathroom.
## Didn't want to go and use upstairs 1.
## Opened door
## Peed a stream in which my cat Jack went right through said stream
## Jack is...pissed.
## Moral of<span class='match'> the </span>story? Never piss outside with cats during a pandemic
## #COVID2019</li>
##   <li>me running home to #selfquarantine when I saw<span class='match'> the </span>#coronavirus coming
## 
##  https://t.co/XqR8QxP49w</li>
##   <li>@SaharaReporters @followlasg @jidesanwoolu What am seeing in<span class='match'> the </span>picture is not even enough  for a local  government, talk less of a whole  state, I don't want to hear story after<span class='match'> the </span>covid 19 saying <span class='match'> the </span>project is executed with so so so billion naira</li>
##   <li>@CGBadley @ZoeHowerska @BeverleyHughes1 @Alan_Haselhurst @davegoddardsk2 How terribly deflating. People who operate through a personal service company will receive vanishingly small amounts through this scheme.
## 
## https://t.co/wdmbphpcbq</li>
##   <li>Wildlife consumption ban is insufficient
## 
## #wildlife #COVID2019 https://t.co/2fxfNMsihG</li>
##   <li>This is a true leader. #ThankYouGovCuomo #COVID19
## #coronavirus
## https://t.co/LTT0Oao4F2</li>
##   <li>Free tax help postponed #coronavirus #COVID19NC  https://t.co/jw1xfIV2pE</li>
##   <li>bad bunny #CoronaLockdown #StarTrekPicard #COVID19 #DeborahBirx #CoronaUpdate https://t.co/5taMFzVAWt</li>
##   <li>26/3: COVID19 death rate continues climbing
## 
## World wide:  4.5%
## 
## Death rate comparison (and still rising in each of these countries)
## 
## Italy:      10.2%
## UK:         4.95%
## USA:         1.4%
## Aus<U+0001F998>:   0.46%
## 
## #covid19</li>
##   <li>#coronavirus confusion... wtf is going on??? https://t.co/prgdpMqC4m</li>
##   <li>@ElmaAksalic Anyone who dies from here on out will be blamed on<span class='match'> the </span>#COVID<U+30FC>19</li>
##   <li>Published on: 03/27/2020
## 
## This Message Is Especially For
## "The Make America Great Again 
## Supporters!"
## How Would You Feel, If I Told You
## That "The MAGA Campaign" Didn't
##  "Include YOU?  That You Would Become Part Of The"Casualty Of
##  #CORONAVIRUS, Making Room 
## For Rich &amp; Young Only?</li>
##   <li>Somethings to ponder..There are things in<span class='match'> the </span>Covid-19 virus that didn’t happen in “nature”. With that said, they tried to get Trump with Russian collusion, then impeachment and now they are trying to crash his economy. They will stop at nothing.</li>
##   <li>@IAGovernor The optics on your press conferences from a National Guard bunker everyday feels like a cowardly contradiction to Iowans who are still going to work everyday?
## The covid-19 numbers will not be falling off next week or<span class='match'> the </span>following. Wake up.</li>
##   <li>@PrabhatChandrat @RPF_INDIA @rpfcr @CMOMaharashtra @PiyushGoyal @PiyushGoyalOffc @narendramodi @PMOIndia @HMOIndia All type of training has been postponed till further order at Valsad training centre due to COVID-19 from 22.03.2020.</li>
##   <li>Ontario Libs/NDP must really hate this:   Doug Ford rises to<span class='match'> the </span>occasion again &amp; is ahead of<span class='match'> the </span>curve
## 
## https://t.co/HL8QA6i4iw
## 
## https://t.co/HE3a9ZslKh</li>
##   <li>Introducing The COVID-19 High Performance Computing Consortium
## https://t.co/9L8Wn0Z2Ms #supercomputing #washington</li>
##   <li>Maze hackers didn't live up to their word to stop targeting medical organizations... surprise, surprise. The #ransowmare victim this time? A #COVID vaccine test lab. #StayCyberFit #cybersecurity #healthcare 
## https://t.co/fApYtt3zFf</li>
##   <li>With superstars pulling back and<span class='match'> the </span>situation around COVID-19 continuing to cause huge uncertainty, should #Wrestlemania go ahead?</li>
##   <li>I’ve accumulated data around COVID-19 spread in Long Beach and created a chart that will update daily. Hope you find it helpful.
## https://t.co/tM5leU8sG8
## #coronavirus #longbeach #COVID19</li>
##   <li>How will leviathan expand<U+2014>temporarily and then permanently via<span class='match'> the </span>ratchet effect<U+2014>in response to #COVID19? It’s too early to make any definite predictions, but we can make educated guesses based on experience and our knowledge of how governments work. https://t.co/0GkLqtPsZW</li>
##   <li>Coronavirus could be controlled in 13 weeks if 80 per cent of people stay home, data sugges…STAY HOME https://t.co/9oh4ZdbaC0</li>
##   <li>More people RECOVERING from #COVID2019 than dying from it GLOBALLY and in<span class='match'> the </span>US. Here are<span class='match'> the </span>numbers from<span class='match'> the </span>CDC (updated every few hours).
## Don't trust<span class='match'> the </span>failed testing!!
## Don't believe<span class='match'> the </span>economy driven left msm panic!
## #LiberalHypocrisy 
## #DemsDontCare 
## #ChinaLiedPeopleDied https://t.co/HyYYNPhYof</li>
##   <li>@e3_waitfor NOPE! Good grief, dude. Math - currently, there are 27, 352 COVID-19 DEATHS in<span class='match'> the </span>US. That's beginning in April 2020, so about three months. That's twice<span class='match'> the </span>cases of COVID-19 in half<span class='match'> the </span>about of time as H1N1. 
## source: https://t.co/lLHmsRjfs9
## I'm done with you.</li>
##   <li>@dougducey Arizona has reported 665 cases of COVID-19 and 13 deaths as of Friday (March 27), according to<span class='match'> the </span>Arizona Department of Health Services (ADHS).</li>
##   <li>Government boosts wage subsidy to 75% for small, medium businesses to avoid layoffs during COVID-19 crisis https://t.co/oHwxAcZcjO https://t.co/03Wq3sX4D8</li>
##   <li>@SylvesterTurner Mayor, you are right that we need to band together. But not for<span class='match'> the </span>same reasons. 
## We need to band together to fight<span class='match'> the </span>robbing of freedoms at an unprecedented level during this crisis. 
## Covid 19 so far has been a fear based mind game tricking us into giving up our freedoms</li>
##   <li>What are early #coronavirus drug trials showing?
## 
## An HIV pill had little benefit in drug trials on #COVID2019 patients in China while a flu medication showed some promise. More via @business: https://t.co/z472EV3w1H https://t.co/5Gonl5rzzF</li>
##   <li>@felipem_jose @pinewoodsdojo @HewittNewton @njterrie @john_godish @sdauwm @foggybottomgal @gumboqueen3030 @airbagmoments @RockyMountViews @MarilynT4 @Ironyrulesall @Irishgawdess @tess_tess2 @JamesEFinch @StevePPhill @matbo2 @Out5p0ken @InhellJourney @shossy2 @JustWhatNowWhy @BreSta7 @dougducey That's great! Is there a problem with COVID-19 in Mexico? 
## <U+0001F60E><U+270C><U+FE0F><U+270A><U+0001F44D></li>
##   <li>Finally <U+0001F44F><U+0001F3FE> The House just passed historic $2 trillion stimulus bill by voice vote. President Trump is expected to sign it this afternoon. @WashInformer  #StimulusPackage2020 #coronavirus</li>
##   <li>On Fri 3/20/20
## 10000+ new confirmed
## 100+ deaths
## *
## 1 week later TO DAY
## *
## On Fri 3/27/20
## 20000+ new confirmed
## 500+ deaths
## 
## #covid19
## #coronavirus
## 
## wish i could tell you what im thinking(probably wouldn't matter)</li>
##   <li>At<span class='match'> the </span>begining of<span class='match'> the </span>Cuban Revolution there were 3 000 doctors left, most of them in Havana. Now there are 95 487 active doctors &amp; 85 732 nurses all over<span class='match'> the </span>country.That is why #CubaSalvaVidas,#COVID2019,#Cuba https://t.co/w2oufdUQQD</li>
##   <li>I’m starting to get<span class='match'> the </span>feeling that a lot of people don’t know or haven’t realised that a ventilator is more commonly known as life support. AKA, a medically induced coma. AKA<span class='match'> the </span>machine is keeping you alive. This is not a drill, STAY AT HOME. #COVID19 https://t.co/QpyQNml3lJ</li>
##   <li>@HillaryClinton Don’t you have<span class='match'> the </span>#coronavirus  to catch or something?? #goaway #shhhh</li>
##   <li>Callers flood dispatch lines to report those not following stay-at-home-order: police (via @oliviaprentzel)
## https://t.co/bmTOycv0yb
## #COVID19Colorado #coronavirus</li>
##   <li>By my math #COVID19 will be around and be a risk for at least 4 more years minimal.  Probably more 5-7. And 3 years after its gone is when<span class='match'> the </span>economy starts to come back.  I don't think it will only take a year to kill #COVID19, people are too greedy and so it will spread etc.</li>
##   <li>@umerjaffer You need to see what elitist Lahoris are doing in covid-19 times? So so disgusting</li>
##   <li>Now that it’s been a bit longer, 
## 
## those who thought there would be babies
## 
## bc of #COVID2019 , you standing by that? 
## 
## No haircuts, sweatpants, overeating, too much time together...<U+0001F616>
## 
## #trainwreck #teamdivorce</li>
##   <li>In Missouri @BigElad Elad Gross is running an agressive bid to become<span class='match'> the </span>state's Dem nominee #attorneygeneral -- focused lately on criticizing<span class='match'> the </span>Governor of<span class='match'> the </span>state over #coronavirus #covid19 response more than<span class='match'> the </span>incumbent AG.  Is<span class='match'> the </span>Gov being too slow? https://t.co/97hsfDc8Kb</li>
##   <li>Ready to seize an opportunity! <U+0001F923><U+0001F923><U+0001F923> #SpreadCheerNotFear #COVID19 https://t.co/CwfoVQaVpy</li>
##   <li>We're living in some weird times, folks. This is at a Subway.
## #COVID19 #CoronavirusUSA https://t.co/l9vAOlWsX4</li>
##   <li>Fox Business said it had “parted ways” with<span class='match'> the </span>anchor Trish Regan, weeks after she dismissed #coronavirus concerns as a “scam” fueled by enemies of President Donald J. Trump.
## Trish Regan, Fox Business Host Who Dismissed Virus Concerns, Departs https://t.co/3ZBTTbONGM</li>
##   <li>can't believe that we are experiencing future history<U+0001F937><U+0001F3FB><U+200D>♀<U+FE0F> 
## #COVID2019 #PrayForWorld</li>
##   <li><U+0001D5D6><U+0001D5FC><U+0001D5FF><U+0001D5FC><U+0001D5FB><U+0001D5EE><U+0001D603><U+0001D5F6><U+0001D5FF><U+0001D602><U+0001D600> <U+0001D604><U+0001D5FC><U+0001D5FF><U+0001D5F9><U+0001D5F1><U+0001D604><U+0001D5F6><U+0001D5F1><U+0001D5F2> <U+0001D5F9><U+0001D5F6><U+0001D603><U+0001D5F2> <U+0001D600><U+0001D601><U+0001D5EE><U+0001D601><U+0001D5F6><U+0001D600><U+0001D601><U+0001D5F6><U+0001D5F0><U+0001D600> <U+0001F30E>
## <U+0001F1FA><U+0001F1F2>   <U+0001F1EE><U+0001F1F9>   <U+0001F1E8><U+0001F1F3>
## Total Cases:  596,350
## New Cases:  +64,485
## Deaths:          27,343
## New Deaths: +3,270
## Recovered:  133,057
##  #CoronavirusOutbreak #covid19 #GoCorona #hope @who @nytimes @timesofindia
## 18:36 PST</li>
##   <li>No prisoners deserve to contract COVID-19 because of prisons’ lack of access to proper hygiene. Especially those kept in prison because they can’t make bail.
##  
## Help @RFKHumanRights and<span class='match'> the </span>@bailfundnetwork to provide #MassBailOut! https://t.co/aNn5abmCsV</li>
##   <li>A new startup @JupeInc is pitching a modular building solution to<span class='match'> the </span>#COVID19 crisis. Looks great, right?  I am going to be as constructive as I can. (1/x) https://t.co/EdHqUNlpVd</li>
##   <li>It’s important to be honest at<span class='match'> the </span>moment. Please don’t unnecessarily add to<span class='match'> the </span>fear lots of people are feeling right now. #COVID2019 <U+0001F427> https://t.co/ZHbhkcWvgC</li>
##   <li>So many Canadians couldn’t understand “go home and stay home for 14 days if you’ve travelled” Trudeau had to make it law and impose punishments. 
## 
## It’s not that hard. Stay home and you could be saving lives.   
## 
## #StayHome #coronavirus https://t.co/o8U2TO0q6R</li>
##   <li>#COVID19 #CORONAVIRUS PANDEMIC
## Last updated: March 28, 2020, 03:41 GMT
## Case Graphs<U+00A0>-<U+00A0>Death Graphs<U+00A0>-<U+00A0>Countries<U+00A0>-<U+00A0>Death Rate<U+00A0>-<U+00A0>Incubation<U+00A0>-<U+00A0>Age<U+00A0>-<U+00A0>Symptoms<U+00A0>-<U+00A0>News
## 
## Coronavirus Cases: 597,267 view by country
## Deaths: 27,365 <U+0001F480>
## Recovered: 133,363
## @WORLDOMETERS<U+0001F4CB>
## https://t.co/au1t4HcfCE</li>
##   <li>I’d be amazed if @educationgovuk<U+2069> stuck to<span class='match'> the </span>Wave 1 T-Level delivery timetable. It is not only a question of college delivery. Employers will struggle to provide quality work placements post-#CoronaCrisis @GavinWilliamson<U+2069> <U+2066>@GillianKeegan<U+2069>  https://t.co/hVOhWrPsQ9</li>
##   <li>IT services sector faces armageddon as COVID-19 lockdown forces project cancellations <U+2013> analysts 
## https://t.co/mkLk39Uzvu</li>
##   <li>More than 100 workers at Boston area hospitals have tested positive for COVID-19.
## 
## Story is paywalled--I bought 6-month intro subscription last week--but fear is that these infections are from community spread, *not* from contact with patients. 
## 
## https://t.co/qLEqXRwLrl</li>
##   <li>@brianmoore666 They are all 6’6” away from Trump. He’s probably<span class='match'> the </span>only one with BSE. As for Covid-19...?!</li>
##   <li>Thank You NHS <U+0001F469><U+200D><U+2695><U+FE0F> <U+0001F468><U+200D><U+2695><U+FE0F> <U+0001F3E5> 
## To all frontline health &amp; care staff.
## #coronavirus #NHSThankyou https://t.co/wEqKeHxttO</li>
##   <li>@peterdaou @RebeccaforWA #coronavirus #COVID19 is<span class='match'> the </span>opportunity to make shedloads of money <U+0001F4B0> <U+0001F4B0> <U+0001F4B0> that Right Wing Capitalists have been waiting for and manipulating things towards. 
## 
## They are ecstatic. It is chilling.</li>
##   <li>How to distinguish COVID-19 symptoms from allergies and<span class='match'> the </span>common cold  https://t.co/t1ZLtGMtAi</li>
##   <li>Gotta watch out now Im sure they are going to spread COVID-19 too https://t.co/xUkaTLJQWJ</li>
##   <li>Looks like<span class='match'> the </span>Mexicans will build<span class='match'> the </span>wall. 
## 
## Covid-19: Mexicans demand Americans stop crossing border as it spreads coronavirus https://t.co/kqFboE8eDQ</li>
##   <li>The blockade of Gaza is collective punishment which is illegal under International law. #SaveGazaFromCorona #COVID_19 #Act4Palestine  https://t.co/WQtb0JNaof</li>
##   <li>France to use<span class='match'> the </span>antimalarial - antibiotic regimen as a cure for covid-19.
## 
## Thank god</li>
##   <li>@MaamSyj @ArbetBernardo In a live interview, duque said Marikina testing center is at 6th floor of cityhall. That's #FakeNews. Mrkna cityhall has no 6th flr and their #COVID19 Testing lab is at city health center bldg with own elevator. New bldg yan. Kulang na lng pasyente, ospital mag-operate yan https://t.co/H7mSnSZvjW</li>
##   <li>It’s hard to imagine how this crisis won’t be<span class='match'> the </span>end of Conservatism.
## 
## Look at every piece of Coronavirus news from<span class='match'> the </span>USA and UK;
## 
## Fearing facts kills. Austerity kills. Unfettered capitalism kills.
## 
## #COVID19 #Covid_19 #coronavirus 
## 
## #ResignTrump #Resign45 #ResignBoris</li>
##   <li>Take allyuh boff. 
## 
## Only a set of games....political games. 
## 
## #COVID<U+30FC>19</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/yAUElNulUe via @YouTube</li>
##   <li>The #COVID<U+30FC>19 pandemic has managed to do what various wars could not: close restaurants and entertainment spots across #Lebanon. It's an economic gut punch at a time when<span class='match'> the </span>country is already mired in<span class='match'> the </span>worst financial crisis in its history. https://t.co/Dw24jcCLuX</li>
##   <li>#c4news gove will take over he is<span class='match'> the </span>Manchurian candidate of covid 19..</li>
##   <li>There will come a point in<span class='match'> the </span>next week when there will be no chocolate in my house. This may be a problem.
## #QuarantineLife #COVID2019</li>
##   <li>covid 19.webm</li>
##   <li>Guest host @moniquebeaudin is joined by health reporter @sharon_kirkey on<span class='match'> the </span>latest @TenThreePodcast: Why a COVID-19 vaccine is a moral responsibility 
## https://t.co/P63TvNraFf</li>
##   <li>This is hitting<span class='match'> the </span>medical community particularly hard. Probably due to viral load. To everyone on<span class='match'> the </span>front lines: we appreciate you so much. Pls stay safe. #COVID19 https://t.co/0w0xoQVDFT</li>
##   <li>A possible treatment for COVID-19 and an approach for developing others https://t.co/YkulvpoHBP</li>
##   <li>This is pathetic. During a time of crisis a real POTUS doesn’t act like this. Trump is president in name only. 
## 
## The media is reporting facts about COVID-19, &amp; all he can do is gloss it over lie &amp; complain like a petulant child. 
## 
## He needs to grow up! https://t.co/wdWywlo8mi</li>
##   <li>I have a student (@AshleyKSmalls) looking at how live streaming is fostering participatory communities during #COVID19. She’s looking to interview people who live stream themselves playing video games on Twitch for a class project. @stephanieorme @ferchauda @FusRoDoc @Nerd_901</li>
##   <li>Their launch &amp; book tour is cancelled due to COVID-19
## But at least we all have time to work our way through lists like this now... maybe @eatlikeanimals will spend lock down on a sequel! https://t.co/hJdIu0ttTm</li>
##   <li>@danitasteinberg Fun Fact: Ferrets have respiratory systems very similar to #COVID19 which is why scientists are using them to test potential vaccines. Not sure if ferrets can get #coronavirus but it sounds like they may be able to <U+0001F914> *shrug*</li>
##   <li>Even if COVID-19 doesn't kill you, it leaves you with significant damage to your lungs. We have no choice but adhere to GoK directives and orders. Coronavirus is worse than #PoliceBrutality folks, I have seen it first hand. https://t.co/Eo0Pif9iJn</li>
##   <li>You are not alone. It’s ok to be feeling anxious and worried. Please keep your eyes peeled for your uni providers guidance and stance and for up to date information keep checking back with<span class='match'> the </span>NMC covid 19 for students guidance. #COVID2019 #CYPStNN https://t.co/etLNcCpA6o</li>
##   <li>This action by Dr. @Akwangaderek is commendable. The last thing Southern Cameroons needs now is more transmissions of #coronavirus. I hope<span class='match'> the </span>(many) other Ambazonian groups follow his lead. 
## https://t.co/L0EEsvJtn6</li>
##   <li>Imagine Trump thinking our superhero would want to step into<span class='match'> the </span><U+2623><U+FE0F>HOT ZONE<U+2623><U+FE0F> formerly known as<span class='match'> the </span>WH. 
## 
## She'll take<span class='match'> the </span>benefits for workers + families and<span class='match'> the </span>provisions preventing Trump + his progeny from getting their grubby little fingers on<span class='match'> the </span>funds, TYVM.
## 
## #coronavirus https://t.co/pSXRgZjlqq</li>
##   <li>@RepThomasMassie 
## Resign now!
## You can try to kill off<span class='match'> the </span>Dems who will vote for<span class='match'> the </span>bill by forcing them to appear. #Covid-19 won't save your party. 
## The #GOP is extinct<span class='match'> the </span>American people will kill it in<span class='match'> the </span>next two elections.</li>
##   <li>me struggling to juggle all<span class='match'> the </span>different #covid19 instructions from<span class='match'> the </span>government https://t.co/IZCOLHlfpB</li>
##   <li>Read our March 27 #coronavirus update: https://t.co/mDGFiymOp6
## 
## There are 12 positive cases &amp; 170 confirmed negative tests in #Brunsco. @CDCgov recommends that those who think they have #COVID19 &amp; have mild symptoms stay home &amp; call their doctor for advice. Read update for more. https://t.co/VOMqnzGllP</li>
##   <li>hey Liberals, as far as mocking<span class='match'> the </span>fact that We’re number one for most Covid-19 cases, how about practicing social distancing by staying<span class='match'> the </span>fuck off of Twitter. You are not helping anybody by any means. By showing your TDS, you’re more dangerous at<span class='match'> the </span>moment.</li>
##   <li>It means @ImranKhanPTI decision to hand over each daily wager a amount of 3000/ Rs was correct? #imrankhanPTI 
## #coronavirusinpakistan 
## #COVID2019 https://t.co/XWAz7LxnMK</li>
##   <li>if you read AI new media these days...you might get<span class='match'> the </span>impression that #COVID19 is<span class='match'> the </span>only use case in<span class='match'> the </span>entire industry</li>
##   <li>Top Pandemic Related Games on<span class='match'> the </span>Internet #coronavirus #covid19 #pandemic #internet #games https://t.co/IEUejlzoRp</li>
##   <li>Here is my query on counter ticket cancellation during<span class='match'> the </span>restriction days due to COVID 19. As I have booked a counter ticket on 9th April 2020, do I need to visit railway counter in between these days or shall I be able to do so even after<span class='match'> the </span>date of journey passed? #IRCTC</li>
##   <li>An American tragedy,#POTUS lying birther #Trump an incompetent tool, completely void of human decency.  #MSNBC #Resist #COVID19  #CoronaVirusUpdate #LastWord</li>
##   <li>The us about to be hit real hard #COVID2019</li>
##   <li>Glasses Ned needs to wear with no glass in them. They have tape on<span class='match'> the </span>inside near his nose to help his eyes focus until he sees<span class='match'> the </span>optometrist...after this covid-19 is done https://t.co/E6S3oAXZX4</li>
##   <li>@DrEtiquette @gaye_gallops You need to see this. And this is also<span class='match'> the </span>reason why<span class='match'> the </span>US <U+0001F1FA><U+0001F1F8> MSM wants @realDonaldTrump not to say #COVID2019 as<span class='match'> the </span>#ChineseVirus. https://t.co/Bdm6ZsfaLR</li>
##   <li>Codewords and advice for women trapped in abusive relationships during #Isolation from @SolaceWomensAid #Coronavirus #COVID19 #DomesticAbuse https://t.co/qRUzW2Pn1R</li>
##   <li>While<span class='match'> the </span>masses are watching #Ramayan and getting drugged on religion , poorly established methods in #COVID2019 treatment and red-tape will kill millions. While demo will ask everyone to #ThaliBajao https://t.co/BHeHiHYbQs</li>
##   <li>We are delivering seeds all over<span class='match'> the </span>country so that food production does not come to a halt, and are doing our part during this pandemic, we request you to do yours. Stay at home! (2/2)
## 
## #Mahyco #COVID19 #CoronaVirus #SocialDistancing</li>
##   <li>Question for @drsanjaygupta or dr Fauci #CNNTownHall . Are people with<span class='match'> the </span>history of pneumonia, frequent bronchitis or asthma more susceptible to COVID-19?</li>
##   <li>Our broken immigration system has resulted in a human rights crisis at our Southern border -- with detainees at Texas immigration facilities especially vulnerable to #COVID19. https://t.co/117YO954kB</li>
##   <li>Remember how everybody bitches about no real public transportation options in LA and how everybody drives alone in cars instead? In contrast<span class='match'> the </span>NYC subways carries 5.5 million riders per DAY and remains open to this day. NY Metro area has half<span class='match'> the </span>#COVID19 cases in<span class='match'> the </span>country.</li>
##   <li>Virginia Pastor Who Said COVID-19 Was Anti-Trump “Mass Hysteria” Dies of Virus https://t.co/e8amqrxJYi</li>
##   <li>@deedeedagumby1 @agoodson93 @KajiDousa So, give me a link to<span class='match'> the </span>people who went blind or died when treated by a doctor with Chloroquine for COVID 19. I want a link now.</li>
##   <li>@DerekBrunson @AungLANsang @danhardymma @DavidcBranchMMA @AngieOverkill Top 5 cheat meals during #coronavirus answer &amp; tag 5 
## 1. Cookies 
## 2. My Kids Snacks
## 3. Ice Cream
## 4. Cereal with Protein 
## 5. Jalapeno Cheetos 
## @KendaPerez @jarchmma @IKEVF @heroheber @georgimma</li>
##   <li>Yep. Well done, @realDonaldTrump. USA is winning again - #1 Total Cases #COVID19 #TrumpVirus https://t.co/x0gjYSiewb</li>
##   <li>PM Modi Deploys Ministers On COVID-19 Frontline To Defeat Pandemic: Report - https://t.co/II6XsDHiXb</li>
##   <li>Small businesses hit by #coronavirus: '#SharkTank' star @BarbaraCorcoran answers common questions to help via @GMA https://t.co/1MpVLhQCNC #SmallBiz #SmallBizRelief #SmallBusiness #COVID19</li>
##   <li>@SyedaMahinu @KaleechBaig There's no established correlation between<span class='match'> the </span>variations in temp &amp; spread of covid-19.</li>
##   <li>Business leaders and entrepreneurs in these difficult times should display<span class='match'> the </span>following qualities:
## 
## 1- display optimism
## 2- motivate people from inside out
## 3- have a vision
## 4- practice empathy
## 
## #leadershipadvice 
## #COVID2019 
## #Startup_lawyer</li>
##   <li>When will it slow down? #coronavirus https://t.co/GPgt1C83LY</li>
##   <li>More US citizens have<span class='match'> the </span>virus than in China.  We won!! #coronavirus #Trump</li>
##   <li>We’re still open online! Place a custom order, or snag one of our Stronger Together t-shirts! Five dollars from every stronger tee sold will be donated to organizations helping families effected by covid-19! Visit https://t.co/ff1MYXEQeI to get one today! https://t.co/slL0pu6nes</li>
##   <li>@LoveLoriM I asked<span class='match'> the </span>same question yesterday in anticipation of<span class='match'> the </span>smaller stimulus we will receive.  https://t.co/82ly58RwR7</li>
##   <li>City of Kawartha Lakes now has 27 COVID-19 cases https://t.co/t2imJxJlpW</li>
##   <li>Seriously <U+2066>@TALaustralia<U+2069> ?  As a long term customer I, and I bet many others, will change insurers once we are through this storm ...Insurance giant TAL moves to exclude people who die from COVID-19, leaked policy reveals https://t.co/sZtZLoiO7d</li>
##   <li>I think our Sadie might be taking self-isolation a little too literally. Still, better to be safe than sorry! #HamOnt #selfisolation #sociallydistant #Covid_19 #StayHome https://t.co/pzZW6quu56</li>
##   <li>#bloomerg article is lie <span class='match'> the </span>study's "Conclusions: The prognosis of common COVID-19 patients is good" Did they even read it?  #warroom2020 @Potus @thegreatawakening https://t.co/f91q072BDg https://t.co/fwVIcdkRwh</li>
##   <li>@LucPicat @JeremyKonyndyk Yes. This is<span class='match'> the </span>core measure. Also they eventually sent healthcare teams from other provinces to help Wuhan, as well as expanding COVID-19 screening and treatment facilities (the 1000-bed makeshifts). Commitment in all levels of<span class='match'> the </span>government, money, as well as speed count.</li>
##   <li>@MrAndyNgo Trudeau cares more about<span class='match'> the </span>UN than about Canada. #wuflu  #coronavirus https://t.co/OgEpdoTes4</li>
##   <li>#US #coronavirus #cases #top 100,000, #doubling in three days
## 
## https://t.co/0tdWv7CKR9 https://t.co/Sn9ygXwd5g</li>
##   <li>"I've never signed anything with a 'T' on it," #Trump said while signing<span class='match'> the </span>$2.2 trillion bill, with<span class='match'> the </span>federal government attempting to stabilize<span class='match'> the </span>economy and with millions of Americans suddenly out of work amid<span class='match'> the </span>#coronaviruspandemic. #coronavirus #covid19 #usa #congress https://t.co/zks0PgnltG</li>
##   <li>Give Our Brave First Responders Support While They Fight COVID-19! https://t.co/iv8jSYdeK7</li>
##   <li>@waluwande @EtalePhilip Plus all barbers have a lot of stories to keep your attention thus spitting a lot .Me after<span class='match'> the </span>eradication of Covid-19 I go shave https://t.co/1XNZ61iiKl</li>
##   <li>One of<span class='match'> the </span>most telling things in this #COVID2019 crisis is that Americans are buying guns and ammo. Look at us. We are a nation overfed and wasteful people. There is obviously enough of any necessity to go around, but people are hoarding &amp; preparing to kill to defend their hoard</li>
##   <li>@brithume Hey Brit, I've eaten Lucky Charms for breakfast every day to ward of Covid 19. So far I'm okay.</li>
##   <li>It won't prevent<span class='match'> the </span>coronavirus, but it is a nice way to relax. #COVID19 https://t.co/1dIvXJnhOP</li>
##   <li>Finally Trump "invokes"<span class='match'> the </span>#DefenseProductionAct #COVID19 #coronavirus #CoronavirusOutbreak #StayHome #WhiteHouseBriefing #TrumpPressConf #deadlinewh #MSNBC #TheBeat #CNN #FoxNews #cspan #OANN</li>
##   <li>I haven’t been outside for 9 days but this I just had to do. @NHSuk you are amazing thank you for everything you are doing we owe you everything. From<span class='match'> the </span>bottom of our hearts thank you! #clapforourcarers #thankyou #coronavirus #carers #nhs https://t.co/RULzqybHEM</li>
##   <li>Unequivocal unanimous opinion: base decisions on science, not<span class='match'> the </span>stock market. Keep isolating, stay home. This is not a time for political rhetoric, this is a time to listen to<span class='match'> the </span>scientists. #coronavirus #medicalpanel #streamthebern</li>
##   <li><U+2066>@hanitweet<U+2069> has visited<span class='match'> the </span>most impoverished areas in Korea to see how they’re coping w #Covid19
## “The people pushed back in this world were dragged to<span class='match'> the </span>frontlines and got stabbed first. Invisible virus exposed<span class='match'> the </span>invisible people...” it writes. https://t.co/XmPzUBRYTy</li>
##   <li>The myth that COVID-19 kills only vulnerable/old ppl is getting people killed.
## 
## Young ppl taking risks they shouldn't - ignoring social distancing orders &amp; not taking care of themselves when they get sick. 
## 
## This dad didn't deserve this. 
## 
## https://t.co/2YNTsrqqON</li>
##   <li>@KDVR  Can I please come on your show and talk about #covid19 as a blind person? About how much more stuff I have to touch in<span class='match'> the </span>world and therefore how much more I could be exposed to this virus? People need to hear these perspectives. I can do a skype video chat. #pwds</li>
##   <li>#FWICE President BN Tiwari writes a mail to #AmitabhBachchan seeking financial help in<span class='match'> the </span>times of #lockdown due to #coronavirus. The actor is yet to reply. @SrBachchan 
## 
## https://t.co/grxeEZrmN7</li>
##   <li>#Calfrac cuts capital spending  almost in half and workforce by 40% due to #COVID-19 and oil price war #abpoli https://t.co/OHS3TXQDa0 via @albertapress</li>
##   <li>The latest video sent from<span class='match'> the </span>Government &amp; NHS.
## Stay Home, Save Lives
## #coronavirus #doncaster #bassetlaw #mexborough https://t.co/jdMgvbpLqq</li>
##   <li>@kathygriffin @latimes @TheCDZ Have you ever seen a woman in full blown labor (w/o drugs) take a selfie &amp; tweet? The answer is no. That’s bearable pain, but while in “unbearable pain” you managed to do that? #Attention #COVID2019 #liar #neverwas #notfunny</li>
##   <li>Well done NHS <U+0001F49A><U+0001F44F><U+0001F3FD><U+0001F1EC><U+0001F1E7> #NHSheroes #COVID2019</li>
##   <li>@Leroy_Brown7 @ComfortablySmug LOL!! It's either<span class='match'> the </span>COVID-19 or<span class='match'> the </span>beers, but either way, I'm a sappy Irishman.</li>
##   <li>@shannonrwatts Jared was in charge so we could become #1 in COVID-19 cases.  Now he's working on<span class='match'> the </span>death part.</li>
##   <li>Very sad that Kenya joined<span class='match'> the </span>"statistics" when 1st #COVID19 related death was confirmed.</li>
##   <li>#Covid19 <U+0001F1EC><U+0001F1E7> support schemes https://t.co/KaT4U8CZRf</li>
##   <li>During these testing times, #EuropeOnlinePharmacy market is experiencing an exponential surge in demand. Read more about this market https://t.co/4JPq2yOfhC
## #MarketResearch #MarketAnalysis #OnlinePharmacy #Telehealth #OnlinePharma #COVID19 #Coronavirus #ZurRoseGroup #SHOPAPOTHEKE https://t.co/OmVXF0stOM</li>
##   <li>COVID-19: Nnamdi Kanu announces donation of N50m to fight COVID-19 https://t.co/z5R00lFCac</li>
##   <li>WHEN YOUR AT WORK REPPING THE KEYWORKER LIFE TRYING TO ENJOY AS MUCH AS YOU CAN WHILST OUT... #COVID19 
## 
## #TAAARKDATINNG #SKINTUUTEEET #BIGUYAAHCHESST #THATMOMENT <U+0001F601><U+0001F44A><U+0001F3FD><U+0001F44F><U+0001F3FD> https://t.co/Naxes4ZJrl</li>
##   <li>Thank you to all<span class='match'> the </span>key workers <U+0001F499><U+0001F31F><U+0001F44F><U+0001F3FB> #NHS #Grateful #ClapForCarers #Britain #COVID2019 #CommunitySpirit https://t.co/PDkE7Dyf8C</li>
##   <li>All this #Covid19 got me thinking if<span class='match'> the </span>series @Gotham. For some strange reason it keeps floating in my head.</li>
##   <li>@leeds24hrlocks Hi, you can find information on this here: https://t.co/3hl6kV3FG8. Darryl</li>
##   <li>COVID-19 India: This is how local police punish anyone who violates nation’s 21-day lockdown https://t.co/G2QNzHvb2r https://t.co/jhNvuB4XRe</li>
##   <li>Importance of why social distancing and isolation matters if you may have been exposed to<span class='match'> the </span>COVID-19. Stay safe and stay indoors to prevent<span class='match'> the </span>spread and don't be that one person who may be<span class='match'> the </span>reason thousands others got sick.
## #COVID19 #StayHome
## https://t.co/Chiunbl7TR</li>
##   <li>It is important to practice kindness during<span class='match'> the </span>COVID-19 pandemic because due to<span class='match'> the </span>uncertainty of outcomes, it may cause many people to experience anxiety and fear #TEARtalk</li>
##   <li>A sore throat isn't a symptom to Covid-19 ;  he probably just has a sore throat.
## 
##                                           <U+275B>   Yes.   <U+275C> https://t.co/QGyKwHemXv</li>
##   <li>#COVID19 #CripTheVote
## Disability Rights Activist @missrusset2006 Shares Concerns About Coronavirus Rhetoric, Crisis Care Plans http://https://t.co/MNvL0bJCVT</li>
##   <li>About to break 100k COVID19+ cases in<span class='match'> the </span>USA! Are we great again yet? I can't take all this fucking #winning
## 
## #COVID19 #TrumpPandemic</li>
##   <li>@VisakhapatnamJn @GVMC_OFFICIAL @GummallaSrijana @GVMC_OFFICIAL @vizagcitypolice &amp; team are sensitive on precautions to be taken on #coronavirus On behalf public, I salute their motivation, hardworking in hot summer, appreciate their devotion to duty @vizagcollector @vizaggoap @AndhraPradeshCM @OfficialMvv @MoHUA_India @dgp_ap</li>
##   <li>In 2016, <U+2066>@realDonaldTrump<U+2069> promised to #MAGA. He said he would win so much, we’d ask him to stop. Now he’s won<span class='match'> the </span>race to<span class='match'> the </span>bottom in<span class='match'> the </span>#COVID19 #pandemic.
## 
## I’m asking: stop winning so much. #PeopleOverProfit #TOBT #UsNotMe #FeelTheBern  https://t.co/iNdLq1Dyx1</li>
##   <li>@tribelaw One person can on average pass it to 3.
## Lack of water to wash hands, access to common disinfectants. 1 penny, double that to 2, double that to 4, double over and over for 30 days, 1,073,741,825,now substitute person for penny.
## #coronavirus</li>
##   <li>Too much chaos in<span class='match'> the </span>World right now. I need to share this random-ideology II right now. Follow @africanaffairs @_AfricanUnion you've been on peace keeping mission for too long. What's up with that? #coronavirus #CoronaLockdown #COVID2019 #Africa Unite for your people. Unite!!! https://t.co/hGfvARhGqB</li>
##   <li>@CCrowe90 @stclairashley I've been told North Korea has ZERO cases now. Granted they execute anyone who is even expected having COVID-19, which technically still makes a it true. I think we should all go to North Korea!</li>
##   <li>Masks for<span class='match'> the </span>parents (who still venture out for burgers from a drive-thru now and then), featuring openings for adding removable filters. #StayHomeSaveLives #COVID19 https://t.co/qnM9OoKFm6</li>
##   <li>‘Perfectly healthy’ Texas dad with coronavirus dies from COVID-19, family says https://t.co/UlM7gtcXdV</li>
##   <li>I'll be chatting with @susanhopkins5, @pcjurczak &amp; @Self_Reg in an hour (7:30pm EST) for a special #TMCTalks about #SelfReg &amp; Parenting In The Times of #COVID19. We hope you can join us. Learn how to join here: https://t.co/kwCnwKvTny https://t.co/BgGGtmIOAJ</li>
##   <li>Watched<span class='match'> the </span>interview on how South Korea managed to beat Covid-19. So amazed at how prepared they are. Kudos to their leaders and their government!</li>
##   <li>"Pandemic COVID19 is a Global Challenge Needs a Global Response" #Virology #microbiologycoronavirus #ChinaHow come<span class='match'> the </span>virus COVID 19 originated!!! Is it naturally originated or human-created??? Let's discuss pandemics in this meet. https://t.co/w3GQOyRJfJ</li>
##   <li>How many people had a job BEFORE and after<span class='match'> the </span>#coronavirus?
## 
## Are you still working, either at home or at<span class='match'> the </span>job? Or, are you laid off either temporarily or permanently?</li>
##   <li>Offline: COVID-19 and<span class='match'> the </span>NHS<U+2014>“a national scandal” https://t.co/IueCkfTJxq</li>
##   <li>@ogajazzyk It's Covid-19 not Codiv-19 olodo</li>
##   <li>How<span class='match'> the </span>@NPSOfficial_KE conducted themselves yesterday is uncalled-for and primitive to say<span class='match'> the </span>least. I wonder even if they know and take into practice<span class='match'> the </span>basic measures of preventing #COVID19. They are even increasing<span class='match'> the </span>possibility of<span class='match'> the </span>spread. I'm disappointed.</li>
##   <li>With governments requiring social distancing,<span class='match'> the </span>normal rules that require a signer of legal documents to be in<span class='match'> the </span>“presence” of a notary or witness have been put into question. For those in Illinois,  guidance is now provided. #COVID19 #coronavirus https://t.co/xjoPqoFWSA https://t.co/lVKUpqLAPl</li>
##   <li>I’m not a surgeon fr. Covid-19 starting to get real so we gotta suit up even more now.</li>
##   <li>Covid-19 Chronicles <U+2013> Living in Lockdown: Our cameras recorded<span class='match'> the </span>moment of lockdown. We also hear from Dr Mohamed Irhuma, a clinical pharmacologist and medical specialist as he unpacks<span class='match'> the </span>psychological impact a lockdown might have on us: https://t.co/k7pm0AIJMF</li>
##   <li>Great clip of an interview with Bill Gates about our response to<span class='match'> the </span>coronavirus crisis.
## #CoronaLockdown #coronavirus #CoronaUpdate #COVID19 #COVID #COVID2019 
## https://t.co/B61iN0rx5u</li>
##   <li>Staff member at Homebase store in North Wales tests positive for Covid-19 #coronavirusuk cases: https://t.co/XASDMq3tpj</li>
##   <li>Covid-19: #Boeing halts dividend to help it survive virus https://t.co/3NWzPLnhJA @BoeingDefense #COVID19 https://t.co/8oFnrrOlAX</li>
##   <li>Minister Young: Walk with identification (ID card, driver's permit) including your work ID. #COVID_19 #COVID19 #COVID<U+30FC>19 https://t.co/9d51008gll</li>
##   <li>Bill Gates wants to capitalise on<span class='match'> the </span>Chinese #Coronavirus pandemic by proposing that vaccines now contain nano-chips that will ENABLE YOU TO BE TRACKED.</li>
##   <li>Covid 19 continues to supply more March madness in<span class='match'> the </span>Stock Market #coronavirus #covid 19 #dowjones #stockmarket #bailout #socialdistancing #quarantine #isolation #editorialcartoon #cintiq #clipstudiopaint https://t.co/BKonxqXAvR</li>
##   <li>#Zimbabwe lockdown on Monday, 30th<U+00A0>March - Essential services will be remain open - Funerals exempt 50 people only - hospital visits one person one patient - Food markets allowed to operate non food markets closed - private mass transport suspended coronavirus #COVID19</li>
##   <li>I wash my hands regularly &amp; thoroughly to fight<span class='match'> the </span>spread of #coronavirus #COVID19. @WHO says "Washing your hands with soap and water or using alcohol-based hand rub kills viruses that may be on your hands.' Accept<span class='match'> the </span>#SafeHands Challenge. @AminaJMohammed @UN_Piper @RonKayanja https://t.co/KecYPts2i8</li>
##   <li>A powerful piece from <U+2066>@Essence<U+2069> on what it means to be Black, Southern, Rural and Poor in<span class='match'> the </span>age of #COVID19  https://t.co/fvcDLRCz5d</li>
##   <li>COVID-19 closures: It's as if Ottawa has fallen off<span class='match'> the </span>electricity grid https://t.co/7qMB6pq3QI Oh!Duhhhh!</li>
##   <li>Scammers picked<span class='match'> the </span>wrong person to mess with!  What you need to know about coronavirus testing scams tonight 9pm @KDVR #coronavirus #elderly #scamalert https://t.co/SJ1x6OCV57</li>
##   <li><U+26A0><U+FE0F> Attention <U+26A0><U+FE0F> group masturbation has been postponed due to covid-19 we will keep updated until further notice</li>
##   <li>@ChrisMBiggs We understand our customers are relying on our network to ensure they have connection w/ loved ones &amp; emergency service providers. Check here for more details on how we are helping in response to COVID-19 https://t.co/reGthF81zd - Isaac</li>
##   <li>WWlll is very very close.
## #usaCoronavirus #COVID2019 #FelizJueves #USA #America</li>
##   <li>Y’all should stay safe and calm covid-19 has been cut off 
## Game over
## #PastorChris #COVID19 https://t.co/22nvBjOJQI</li>
##   <li>@jerome_corsi @QsentMeToo @realDonaldTrump I suppose I am sheltered but I have never personally known 
## anyone who died from<span class='match'> the </span>flu. Now  ~~~ I have known someone who died of Covid 19.</li>
##   <li>@rebeccaballhaus @JohnJHarwood @AndrewRestuccia Great, let's keep him busy personally signing every single check so<span class='match'> the </span>real adults that science can take over<span class='match'> the </span>COVID-19 response!</li>
##   <li>@tayokun @JosepBorrellF @eu_eeas Who you're asking for?
## 
## Huawei to 'scale down' supply of COVID-19 masks, after Borrell comments https://t.co/lIaTky9qfG</li>
##   <li>JMC puts more men, machinery to fight COVID-19
## @jmcjammu @CMGuptaOfficial 
## 
## Read more at: https://t.co/TG7e6uiDpg https://t.co/e8zTW5zXMr</li>
##   <li>We can't thank you enough! (apologies for<span class='match'> the </span>rubbish video) #clapforourcarers #NHSheroes #COVID2019 #NotAllHeroesWearCapes https://t.co/OqGhAIdrUy</li>
##   <li>UPDATE: 639 confirmed #COVID19 cases in Alabama https://t.co/KrBsuHhwAV</li>
##   <li>@Ianblackford_MP Are you sure you're not just using #coronavirus as  an excuse to spend some time on your own? I know many husbands and wives  doing this ! I'm one of them ! <U+0001F602> #SelfIsolation</li>
##   <li>After @abbvie now @Roche gives up a de facto monopoly, in this case for a diagnostic reagent for #COVID19. A harmful monopoly which should never have been a reality.
## 
## Say no to profiteering of this pandemic
## Say to no patents and monopolies https://t.co/AJdTwRKLqZ</li>
##   <li>May Allah help us... Ameen #StaySafeNigeria #StayAtHome #COVID19 https://t.co/Sn3Uf2EVja</li>
##   <li>When gaming is<span class='match'> the </span>only way to quarantine! 
## 
## #bikham #onlinegaming 
## #facts #steam #technology 
## #covid19 #quarantine https://t.co/088Jt9DF7B</li>
##   <li>@Jane_nkyalo And sadly enough in<span class='match'> the </span>comfort of her bungalow in<span class='match'> the </span>USA. She should let us alone to solve our problems<span class='match'> the </span>best way we can. Btw advise<span class='match'> the </span>New York mayor on how to fight covid-19</li>
##   <li>@realDonaldTrump @WhiteHouse You've had THREE YEARS to get stuff done. You piddle-farted around playing golf ALL THE TIME. 
## 
## You threw<span class='match'> the </span>pandemic handbook on a shelf and figured it couldn't happen. Well, it has. You piddle-farted around on #Covid19 too. 
## 
## All you do is blame EVERYONE ELSE. This is on you. https://t.co/wvteMYRkhO</li>
##   <li>COVID-19 stands for "Coronavirus Disease 2019."
## 
## CO-rona
## VI-rus
## D-isease
## 
## The WHO guidelines say they can't name a virus after a geographic location or group of people. 
## 
## So no - it doesn't stand for "Chinese Originated Viral Infectious Disease."
## 
## https://t.co/kjgy0N1aXJ
## 
## #VERIFY https://t.co/GqjEmi9IxK</li>
##   <li>Wii Sports Resort released June of 2009...BUT...I am now<span class='match'> the </span>Table Tennis Champ!!! #TodayInHistory 
## 
## Thanks #COVID19, none of this would've been possible w'out you.  Through boredom &amp; determination, I was able to finally defeat<span class='match'> the </span>table tennis champion. https://t.co/n89GPeA2hr</li>
##   <li>#DataScience vs COVID-19 pandemic: Flattening<span class='match'> the </span>curve -- but how? https://t.co/DMTUbj0RWZ via @ZDNet &amp; @linked_do</li>
##   <li>Help Cuba fight<span class='match'> the </span>coronavirus and<span class='match'> the </span>US blockade. Sign<span class='match'> the </span>open letter calling on<span class='match'> the </span>US government to lift its inhuman blockade and allow Cuba to fight COVID-19 at home and abroad.
## Sign your name here https://t.co/EeVPnFOora #CubaVScoronavirUSblockade</li>
##   <li>Watching Ramayna with family . Thanks to everyone  #StayHomeStaySafe  #COVID19  #Ramayana  @narendramodi  @DDNational  @BJP4India  @myogiadityanath #IndiaFightsCorona #StayHome https://t.co/kM5KmzRDD5</li>
##   <li>"Coronavirus: US leads<span class='match'> the </span>world in number of confirmed cases" #Coronavirus https://t.co/D2m8LtjPW5</li>
##   <li><U+0001F914><U+0001F914><U+0001F914> #CoronaLockdown #coronavirus #lockdown #SaturdayMorning #SaturdayThoughts #SaturdayMotivation have a great day everyone ♥<U+0001F60A><U+0001F618> https://t.co/FjQgQBoAlB</li>
##   <li>I think we all now know who was responsible for<span class='match'> the </span> #TrumpPressConf, hmm @katemclennan1 and @katemccccartney ?
## #Covid_19 #auspol https://t.co/ObYrBl4vGT</li>
##   <li>@gtconway3d Excuse me but<span class='match'> the </span>US doesn’t call<span class='match'> the </span>virus that . The US calls it by its given name , Covid-19 . It’s our ass of a president  and his followers that calls it  by  what ever flows out of their mouths .</li>
##   <li>Now we’ve had a taste of what it’s like to be caged, Will we finally abolish zoos<U+0001F91E><U+0001F91E> and then stop having ‘pets’ <U+0001F937><U+200D>♀<U+FE0F>- free<span class='match'> the </span>animals!! #SelfIsolation #IsolationLife #lockdown #COVID2019 #afterthequarantine https://t.co/nZhffCI8nE</li>
##   <li>Spread<span class='match'> the </span>love! Hope you all have a pawesome day! <U+0001F431><U+0001F970><U+0001F43E>
## Follow <U+0001F449>@letspawsfirst<U+0001F448>
## -
## -
## -
## #GoodMorning #FridayMotivation #FridayVibes #FridayMorning #FridayFun #friyay #FridayWin #StayHome #COVID19 #hometasking #amazon #shopping #CatsOfTwitter #kitty #cats #pets #love #followme https://t.co/oNdx90xUkX</li>
##   <li>Number of confirmed cases of COVID-19 jumps to 54 in SLO County https://t.co/O7J9zzG8lP</li>
##   <li>I think that by<span class='match'> the </span>time we have a vaccine most people would have gotten COVID-19 and either have died or gotten over it.</li>
##   <li>#BREAKING: House passes historic $2 trillion aid package hoping to curb COVID-19’s economic impact #WashingtonDC #wlwt @wlwt  https://t.co/weatms3ofI</li>
##   <li>Who’s staying home this weekend <U+0001F64B><U+0001F3FC><U+200D>♀<U+FE0F><U+0001F64B><U+0001F3FB><U+200D>♂<U+FE0F>
## 
## Who’s up for creating some videos to say ‘Thank you’ for staying at home this weekend?
## 
## Let’s help keep everyone safe during this time #COVID19 #SocialDistancing https://t.co/d3i9MklTv8</li>
##   <li>“Our hearts are heavy having learned of this first death in our community’s struggle against<span class='match'> the </span>spread of COVID-19."
## Pitkin County Public Health director Karen Koenemann
## https://t.co/zxj4lkfj5L</li>
##   <li>What a time to be alive  
##                27
##                03 
##              2020 
## 
## TB. Joshua's covid-19 cure revelation
## ImamOfPeace vs covid 1-9
## BorisJohnson  Vs  COVID19
## 
## And<span class='match'> the </span>day isn't over yet o anything can still happen maybe presidential briefing <U+0001F602> <U+0001F923>
## 
## #ImamOfPeace</li>
##   <li>Loudoun County school staffer dies from COVID-19 @InsideNoVA https://t.co/msEVzytIs5</li>
##   <li>Devil in<span class='match'> the </span>details: US Congress reaches deal on $2 trillion rescue bill, which still requires House vote and president's signature
## https://t.co/XX6Wmy9Gpc https://t.co/boI0Y6siXL</li>
##   <li>I learned some things watching this. Everyone should watch.
## 
## PSA Safe Grocery Shopping in COVID-19 Pandemic
## 
## https://t.co/hwnTQ8uBCg</li>
##   <li>UCT Confirms Fifth Case of Covid-19: https://t.co/OtUFEEn56J #SouthAfrica #Day1 #StayHomeSA #CoronavirusSouthAfrica #CoronavirusInSouthAfrica #COVID19SouthAfrica #21DayLockdown #Coronavirus #COVID19 https://t.co/t6M6LmpUlL</li>
##   <li>Indy 500 postponed until August because of COVID-19
## https://t.co/bdgJ2rfHB0 https://t.co/EfAGANG0aH</li>
##   <li>350 #virtualvolunteer registrations so far; we need 1,000. Can you share this post to help us? We need #volunteers to provide #EmotionalSupport to people in #isolation due to<span class='match'> the </span>#COVID19 Pandemic. Register here https://t.co/nWxbnx1fsh
## Thanks, to @CharityVillage &amp; @VolunteerTO</li>
##   <li>Bold journalist @benkoku of @Citi973
## @CitiTVGH ...
## A word to @NAkufoAddo .
## Infact untill<span class='match'> the </span>president sacks NIA BOSS , no other mitigating move will save him from this disgrace!!
## 
## #COVID2019Ghana  #StopGhanaCard #COVID19 #coronavirus #CoronaLockdown #StayAtHomeChallenge #Eastern https://t.co/36N7QTtzfM</li>
##   <li>Parents v Teachers Minions Style Coronavirus Covid-19 - Stay Safe Stay A... https://t.co/RbLTERIFwc via @YouTube</li>
##   <li>It brings us hope to see Mayor @sliccardo &amp; Council acting to ensure people on front lines of this crisis can stay home and seek care if they get sick. Paid sick policy gets Council vote 4/1. Also TY @CM_Magdalena @SylviaArenas @MayaEsparza3 for your lead!
## https://t.co/DOuRoPejaw</li>
##   <li>Macon restaurant offers free lunch to kids amid COVID-19 outbreak https://t.co/RUAlOAaVg9</li>
##   <li>COVID-19 closes North Okanagan convenience store https://t.co/5Xh3dgDfZQ</li>
##   <li>#Boulder County has rescinded its stay at home #coronavirus order, simply to adopt<span class='match'> the </span>similar measure issued by Gov. Jared Polis. The gov's has planned expiration date of April 11, versus county's April 17. https://t.co/E7MciQwVwL https://t.co/9gIgmfTDQF</li>
##   <li>Are we going to be ok? When will this end? #COVID2019</li>
##   <li>As Montana's confirmed (tested) COVID-19 cases jumped from 71-90 and Gallatin County's jumped from 24-38 today, Governor Bullock has issued a Stay at Home order. #coronavirus #COVID #COVID2019 #Montana 
## 
## https://t.co/2P36lkYxW9</li>
##   <li>So if you're in<span class='match'> the </span>99% of people that had #coronavirus and survived.. does that mean you can go anywhere you want??</li>
##   <li>Latest #Covid19 update from David Mills
## PLEASE SHARE AS MUCH AS POSSIBLE.
## 
## #clockhousenursery #enfield #garden #gardening 27/03/20 https://t.co/4SN5bJqojH</li>
##   <li>I hope when<span class='match'> the </span>country has healed from this devastating plague whoever is is in charge will bring back full uk production of essential items instead of giving business overseas #COVID19 #makeukgreat</li>
##   <li>Our experiences today, will help us grow and get through tomorrow.
## 
## #coronavirus
## #covid19
## #mentalhealth
## #resilience 
## #yougotthis
## #depression
## #BPD
## #anxiety
## #mentalillness
## #stayhome
## #quarantine 
## #chatowl
## #therapist
## #inspo https://t.co/GE2Yd3DylT</li>
##   <li>Are Advil and Tylenol good to reduce fever in covid -19 treatments?#CNNTownHall</li>
##   <li>Plans this weekend? Tune in to<span class='match'> the </span>latest episode of Cinnaire's #AdvancingCommunities #Podcast which focuses on<span class='match'> the </span>#COVID19 crisis &amp; its impact on<span class='match'> the </span>affordable housing &amp; community development industries: https://t.co/MeLWQAsEAT</li>
##   <li>#nationalscribbleday Reece’s assignment for Mrs. Gonzalez’ online class today @Stewart_Creek 
## #ThanksHealthHeroes @Roms_10 #nursesareheroes #CoronaLockdown #stayhome #coronavirus @KHOU #scribble @imnotascribble https://t.co/axLR9wcesV</li>
##   <li>The Canvas (online school portal) update makes it look more like<span class='match'> the </span>fucking #Coronavirus https://t.co/10jXLnza0S</li>
##   <li>#BREAKING ROME (AP) -- Italy reports 6,153 new coronavirus infections, taking global total over 500,000. #COVID19 #coronavirus #fox5atl</li>
##   <li><U+0001F4DA>A great read on how to support and protect children’s emotional well-being during<span class='match'> the </span>pandemic. This is targeted at younger kids but there are great suggestions here that apply to teens as well.
## 
## https://t.co/Nl0z3s2QBs</li>
##   <li>@null Woj Pod: Burke reveals COVID-19 diagnosis ESPN NBA Analyst Doris Burke joins The  https://t.co/BQjS0iQ0x5</li>
##   <li>Coping With COVID-19 Crisis: Craig’s Owner On Keeping Hollywood Hot Spot Going, Staff Employed &amp; Some Ice Cream Smiles https://t.co/JC5cIFV742 https://t.co/pOhK4C8Jip</li>
##   <li>"On Thursday,<span class='match'> the </span>Navy, without specifically mentioning<span class='match'> the </span>USS Theodore Roosevelt, reported that "17 Sailors assigned to a ship underway in<span class='match'> the </span>Pacific have also tested positive for COVID-19.""
## 
## (It's onboard<span class='match'> the </span>USS Ronald Reagan too)
## 
## https://t.co/cl3pipXFnZ</li>
##   <li>@davidaxelrod @JoeBiden @LarryRasky So there's a 99.99% chance that his death is unrelated to Covid-19.
## 
## I hope Tara Reade doesn't catch it.</li>
##   <li>Options available to victims of domestic violence during<span class='match'> the </span>#coronavirus quarantine
## 
## -Some Shelters are putting survivors up in hotels.
## -Local programs are helping victims make plans to stay safe.
## -The National Domestic Violence Hotline is available via chat, email, and phone. https://t.co/eNwM2EQNvY</li>
##   <li>Let’s examine<span class='match'> the </span>facts:
## 
## TB Joshua said that on<span class='match'> the </span>27th of March, a heavy rain will fall in Wuhan, China which would begin<span class='match'> the </span>end of<span class='match'> the </span>Coronavirus. Fact: There was a rain in Wuhan on<span class='match'> the </span>27th of March. 
## 
## Let’s be patient and hope for<span class='match'> the </span>best. #COVID19</li>
##   <li>@bbcquestiontime @bbcquestiontime 
## 
## Question from Tad Tomkinson
## 
## Why is<span class='match'> the </span>government refusing to test frontline healthcare professionals for covid-19?</li>
##   <li>Buyers, sellers and agents grapple with a housing market shaped by coronavirus.
## 
## Land registration services, real estate agent services and moving services may all continue to operate.
## 
## Learn more here:
## 
## #realestate #toronto #covid19
## 
##  https://t.co/mh15WvWg6Z</li>
##   <li>COVID-19: Zoos, pawnshops, newspapers, parks for sheltering homeless included in B.C. list of essential services #COVID19Vancouver #COVID19BC #BC #Vancouver
## https://t.co/osftCNYgdh</li>
##   <li>PIIE: The banking system is critical to society and requires due attention and support. But in doing so, tough love is preferable to complacency. By nicolas_veron: https://t.co/v9QItYEEpf #finance #money</li>
##   <li>67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/qr9rWuTcyB</li>
##   <li>Due to travel #restrictions imposed during<span class='match'> the </span>#coronavirus #pandemic, #Alrosa announced it is selling its largest rough #diamonds via digital tender.
## 
## https://t.co/J5f9XGDjAr</li>
##   <li>The COVID-19 pandemic has put in fast forward our slow-motion crises, including economic inequality, food insecurity and xenophobia. Give today to support our neighbors, because we all depend on one another to survive. https://t.co/0RqkT0rIQ3</li>
##   <li>Jimmy #Kimmel Gives Savage New Nickname To #Trump In #Coronavirus Era. #SmartNews #KAG #MAGA #FoxNews @FoxNews #TrumpIsAnIdiot  https://t.co/EQl7SsCxsL</li>
##   <li>The #coronavirus pandemic has forced a lot of changes across our community. A former #KNXHero of<span class='match'> the </span>Week is adapting his food kitchen to help keep thousands of people nourished during this time of uncertainty. https://t.co/Vq87UtkWtR https://t.co/KxjGlBnXvb</li>
##   <li>A reminder that 'Clap for our Carers' is taking place in<span class='match'> the </span>UK tonight at 8 PM.
## 
## Please join us in clapping and cheering on all those heroes and heroines fighting #Covid19 in<span class='match'> the </span>#NHS across<span class='match'> the </span>UK!
## 
## #clapforourcarers https://t.co/tHsyMqORQR https://t.co/IbivWXqA0j</li>
##   <li>Sorry - we can't find that page https://t.co/jx4s7AbXYy</li>
##   <li>This is what my loving country did for me<U+2764><U+FE0F> proud to be a Saudi citizen #saudiarabia #COVID19 https://t.co/rhk9TVUJuu</li>
##   <li>Coronavirus: Nigeria reports chloroquine poisonings after Donald Trump touts antimalarial drug as treatment | South China Morning Post https://t.co/IM31VeEEi6 #coronavirus #covid19 #pandemic https://t.co/iniT806tnm</li>
##   <li>Food Banks BC already seeing surge in demand due to COVID-19 pandemic https://t.co/t7lh20zGnI</li>
##   <li>I was scheduled to get an IUD at<span class='match'> the </span>beginning of March. I cancelled due to COVID-19 anxiety (I’ve been following it since late December) and decided I would go on<span class='match'> the </span>pill when I felt necessary</li>
##   <li>PLEASE RETWEET: We all need to do our part to flatten<span class='match'> the </span>curve, so please stay at home as much as possible. #Coronavirus #CoronavirusDelaware #COVID19 #deCOVID #COVID19Delaware @Delaware_DHSS https://t.co/GGNLpEBL9C</li>
##   <li>@Khanoisseur This admin can't even deal with<span class='match'> the </span>#COVID19 crisis. There's no way anyone in that den of thieves is thinking about<span class='match'> the </span>next looming crisis. I can't believe we continue to treat this admin with any amount of respect or legitimacy. They haven't earned it EVER.</li>
##   <li>i hope @selenagomez @ladygaga get #COVID19</li>
##   <li>Don't wait for GOI to call<span class='match'> the </span>#coronavirus as #ChineseVirus . Govts have compulsions. Hence it's got to be people's movement. China has blood on its hands and world must punish it - ban entry of Chinese people to their countries, isolate their companies, throw it out of UNSC..</li>
##   <li>@ZLevyMD @ercowboy Stay safe. Also, we are building an oral history of #COVID19; consider lending your voice. https://t.co/gvqN8KzIn7</li>
##   <li>Oh, Wired covers one of my favorite Twitch heroes! Though this goes against keeping him in our secret back pocket. #kitboga #coronavirus #scammers https://t.co/abthLjTthQ</li>
##   <li>@KTRTRS sir we permitted many grocery and other shops for public but if we do not have a monitor mechanism for retailers health, these platforms could be sources of #COVID2019 so some taskforce should be deployed for<span class='match'> the </span>same.</li>
##   <li>Public leaders &amp; health officials: The only thing that matters right now is<span class='match'> the </span>speed of your response.
## 
## This model predicts<span class='match'> the </span>last day each state can act before<span class='match'> the </span>point of no return.
## 
## @govhawaii @KHONnews @kauai
##  #kauaimayor #hawaii #COVID19  #kauai 
## 
## https://t.co/p9W7vrSf5O</li>
##   <li>Well. The covid-19 #StayAtHome order has everyone doing puzzles &amp; bettering themselves &amp; I’m over here matching up<span class='match'> the </span>@nfl teams for a new 17th inter conference rivialry game via @BarstoolBigCat @PardonMyTake https://t.co/h8H0HC2G4J</li>
##   <li>My wife is a full time nurse at MGH in Boston so this is very real for my family. I don’t do politics on Twitter but please let’s protect<span class='match'> the </span>healthcare workers taking care of patients. #coronavirus #PPE @KeithSpiro @jeffpulver @TedRubin @BonnieHunt_real @BobSocci @BobCoughlin https://t.co/kUKRiwy6Hv</li>
##   <li>“Data analysis- validation of wishful correlations.  
## Analysis and interpretation of data using tools and techniques that are available in<span class='match'> the </span>present”
## #rcbquotes 
## #changemanagement #lifeinthetimeofcovid #COVID2019 #coronavirusindia #DataAnalytics</li>
##   <li>@The_vijju Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>#UPDATE on coronavirus cases in Ontario via @gabbyrodriguess
## for @globalnews 
## 
## READ MORE: https://t.co/wUw3xvTW6P
## 
## -&gt;170 new cases in Ontario
## -&gt;provincial total rises to 837 active cases
## -&gt;province's largest single-day spike
## -&gt;38,000+ people tested so far in Ontario
## #COVID19</li>
##   <li>@POTUS still talking #tariffs? American businesses need parts and products from #China to be sustainable.
## 
## #CNN #MSNBC #coronavirus #CoronavirusPandemic #SocialDistancing</li>
##   <li>Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief https://t.co/9vNzx1BXim</li>
##   <li>Lord do not leave us at<span class='match'> the </span>mercy of<span class='match'> the </span>storm #PopeFrancis #UrbietOrbi #CatholicTwitter #COVID19</li>
##   <li>@InDarknessShine @eosfanatic Covid-19 is<span class='match'> the </span>new way to control masses like<span class='match'> the </span>church did back in those days. This is why separation of church and State is so essential.</li>
##   <li>"Due to<span class='match'> the </span>spread of COVID-19, application for<span class='match'> the </span>1st JLPT in 2020(July) is currently suspended and<span class='match'> the </span>test execution is now under consideration.
## Please confirm<span class='match'> the </span>further information announced on<span class='match'> the </span>JLPT website on Monday, April 6."
## <U+0001F62D></li>
##   <li>Stay safe and be careful! Don't go out unless it's necessary! #Coronavirus https://t.co/KyZ5hMwfyr</li>
##   <li>Trump wil 100.000 extra beademingsmachines in 100 dagen https://t.co/KTdvwrFvyr via @NUnl thank you, all countries must ... #usa #uk #asia #china #africa #america #americas #oceania #australia #be #de #nl #rutte3 #rivm #ggd #spain #france #italy #portugal #covid19 #everyone</li>
##   <li>Trump to New York: Drop Dead  #Coronavirus #Pandemic #NewYorkCity #NewYork #DonaldTrump #TrumpKills #Federalpolicy #healthcare #Federalintervention #unifiedationalresponse #Andrew Cuomo https://t.co/Funl1Ge1To</li>
##   <li>To help keep<span class='match'> the </span>community updated on COVID-19, we’ve created a series of videos featuring perspective from SMC physicians. Here, Dr. Angela Oates, Infectious Disease Specialist, addresses whether pets can be infected with<span class='match'> the </span>COVID-19 virus. https://t.co/VqwbVFarEw</li>
##   <li>Slant | Paul B. Preciado on life after COVID-19 https://t.co/negRwtagVe @artforum</li>
##   <li>Donald Trump, COVID-19 Task Force Hold Press Briefing on Coronavirus Pandemic - Video: https://t.co/GcB5QS68Mg via @SputnikInt</li>
##   <li>This is new / cool -- GoogleScholar linking to academic journal coverage of #COVID19 on<span class='match'> the </span>front page: https://t.co/CN6XYMyd2d</li>
##   <li>#Sharemarket LIVE: Sensex, #Nifty set for gap-up opening; #RBI Governor @DasShaktikanta Das press meet at 10am amid #CoronavirusLockdown  https://t.co/4J9b3KijPc</li>
##   <li>Congratulations @realDonaldTrump,<span class='match'> the </span>US is now OFFICIALLY IN FIRST PLACE with<span class='match'> the </span>most reported cases of COVID-19 in<span class='match'> the </span>ENTIRE WORLD. You must be so proud to have set yet another amazing record! https://t.co/q53wqvnjsI</li>
##   <li>So, China reports NO new #coronavirus cases in<span class='match'> the </span>past week?!  How can that be?</li>
##   <li>Last night cerita this year confirm kami tidak travel and most probably next year pun tidak. Tunggu vaccine #COVID19 ini developed baru travel la.</li>
##   <li>#login Just watched Trump sign<span class='match'> the </span>Covid-19 bill. Big group and no one was 6 feet apart. Sad to watch Dr. Fauchi pander and praise Trump. Can't count on him. The only channel allowed to show signing was FOX. Listened to Trump bash Governors. The man is unstable. #JoeDay</li>
##   <li>Seeing a 70 plus couple dance to some Desi Arnaz from their youth durning this #coronavirus has made my night. Great food, great music and great family time has blessed me so much! One day at a time y’all! 
## Much Love Tommy <U+0001F918><U+0001F3FB><U+0001F918><U+0001F3FB></li>
##   <li>Things just got really serious! Pray for<span class='match'> the </span>ones that are suffering <U+0001F64F><U+0001F3FB> and as for<span class='match'> the </span>others, STAY AT HOME FFS! #coronavirus #CoronaPandemic https://t.co/pQVJ36OT3C</li>
##   <li>[Video] : How to protect yourself from<span class='match'> the </span>explosion of #cybersecurity risks during a crisis
## #coronavirus #covid19 https://t.co/axKseOQHZq</li>
##   <li>One of latest 18 new death’s to Covid-19 was a 17 year old according to @LouisianaGov</li>
##   <li>How to distinguish COVID-19 symptoms from allergies and<span class='match'> the </span>common cold  https://t.co/I833ZIJt0k</li>
##   <li>@trish_regan @realDonaldTrump @VP @SecPompeo @JuanGuaido You deserve to be fired! Stop spreading<span class='match'> the </span>lies, hoax theories while America prepares to be<span class='match'> the </span>largest epicenter for #COVID19 . This virus kills and sickens republicans and Democrats equally.</li>
##   <li>Here’s a great video to make sense of all<span class='match'> the </span>#Covid_19 data out there. One thing is certain, humanity will prevail and we will recover, but how soon and where will we get to before that happens. 
## 
## https://t.co/hIIfZIgxFB https://t.co/FK53HEhhEc</li>
##   <li>Latest Inspiration from Tim Ferriss! Dr. Vivek Murthy <U+2014> Former Surgeon General on Combatting COVID-19, Loneliness, and More (#417) https://t.co/I0u825FVK8 TheCocamama</li>
##   <li>It seems that Covid-19, has had another effect. It shrinks<span class='match'> the </span>brain cells of Right-whinge New Zealanders, who drink<span class='match'> the </span>QAnUS DIPSHITTERY CRAZYade! Thoughts and prayers that they recover their sanity.</li>
##   <li>Dear citizens, 
## Please protect yourselves. Those that won't protect you when there was calm &amp; they had<span class='match'> the </span>time, will most likely not protect you now that they are also struggling for their own lives. Whatever they tell you, hold with a pinch of salt. Protect yourselves. #COVID19</li>
##   <li>@davido's fiance @thechefchii Test Positive to #CoronaVirus after returning from London.
## 
##  _Please Note they are two types of Corona Virus, one is Non symptomatic which implies you won't have any symptoms till after a said period of time_
## #StayAtHomeAndStaySafe #StaySafeNigeria</li>
##   <li>Tucker: Opposition to Trump is fueling media lies about chloroquine, a potential COVID-19 treatment | News | LifeSite https://t.co/Ad39bJy1mG</li>
##   <li>My pal @KarlDDawson has<span class='match'> the </span>right idea... It's two weeks people; we can do this.<U+0001F64C> #StayHomeSaveLives #coronavirus #COVID19 
## 
## "https://t.co/lNtipy74ga"</li>
##   <li>Make me famous 
## Haha jk,, unless <U+0001F440>
## 
## #tiktok #anime #otaku #artist #art #<U+0641><U+0639><U+0627><U+0644><U+064A><U+0627><U+062A>_<U+0627><U+0644><U+062D><U+062C><U+0631>_<U+0627><U+0644><U+0645><U+0646><U+0632><U+0644><U+064A> #StayHome #QuarantineLife #<U+0631><U+0633><U+0645><U+064A> #followforfollow #follow #commission #commissions #artstyle #COVID2019 #tiktokchallenge #AnimeArt #love #pastel #ocs #originalcharacter https://t.co/TVZ1JRAWod</li>
##   <li>@JarredProvich @geracechris @StocksAllUp @mitchellvii Now take this tidbit into account.
## Flu has a vaccine and still produces those numbers.
## COVID-19 has nothing but a hoe on two meds that are not approved and has produced LESS cases and deaths statistically over<span class='match'> the </span>same period.</li>
##   <li>How much does it cost for one COVID-19 test again?</li>
##   <li>@noplaceforsheep @NickThiwerspoon @D_LittleproudMP It's a Health Minister responsibility under<span class='match'> the </span>Act. (Has Covid-19 been listed yet? I assume it has. The listed human disease page goes to "not found")
## 
## https://t.co/LATTwWFr9v
## 
## https://t.co/C6OOAJllJ4 https://t.co/q1e9hVjCzE</li>
##   <li>@ASlobComesClean Hi! Thanx for<span class='match'> the </span>Like. Glad I kept a few iffy items that I might have tossed out. They will come in handy during stay-at-home in<span class='match'> the </span>time of COVID-19.</li>
##   <li>How to stay #fit and #active at home during<span class='match'> the </span>#coronavirus #SelfIsolation
## Great tips by @M_Stamatakis @docandrewmurray @fiona_bull and @DrKateEds <U+0001F44F><U+0001F4AA><U+0001F938><U+200D>♀<U+FE0F>
## #COVID #FlattenTheCurve #CoronavirusOutbreak https://t.co/W8FyLbzJAf via @ConversationEDU</li>
##   <li>#Coronavirus #sanitizer #Nature  #kunar province https://t.co/ctY4VCKBHo</li>
##   <li>We are here stuck due to #coronavirus,cases are getting doubled everyday and here only one patient recorded,our parents are also very disturb,UA is sending flight to call ukrainians from DEL,we request us to go back in india @PMOIndia @AmitShah @AjTakNews @ABPNews @narendramodi https://t.co/g7wAgNnRRZ</li>
##   <li>Good tips to remember. @accellres @CDAA_inc #Workingfromhome #wfh #mentalhealth #wellbeing
## https://t.co/XKdE9gyOnE</li>
##   <li>.@MYER has announced it will be closing 60 stores and standing down 10,000 staff for at least a month in<span class='match'> the </span>wake of<span class='match'> the </span>coronavirus crisis. Meanwhile, @Coles says it has hired more than 7,000 people in just two weeks to meet customer demand. https://t.co/dvNbHV2ctR #7NEWS https://t.co/h36FT78Pu6</li>
##   <li>it’s called that break up diet &amp; 100 crunches a day #coronavirus https://t.co/ER3mCCbp52</li>
##   <li>Portugal created a corona virus test <U+270C><U+FE0F><U+0001F1F5><U+0001F1F9>
## We have everything we need for producing a credited COVID-19 test in house.
## 
## #CoronaUpdate #COVID19 #Covid_19 #TestingForCovid19 https://t.co/W4ZNTUAz3a</li>
##   <li>After COVID-19 is over @govsingapore should just scrap<span class='match'> the </span>whole DORSCON framework. It does nothing but fuel anticipatory but unnecessary overreactions. It’s like some people keep wanting you to declare red, but for what leh?!</li>
##   <li>@Salym God protect us from<span class='match'> the </span>#coronavirus https://t.co/L9DY8PynWc</li>
##   <li>Muslim groups in #UK band together to combat #coronavirus - https://t.co/vqwqKxgtK6 on @The_newarab #MuslimHandsUK #SavingLives https://t.co/CRALkuGmPY</li>
##   <li>@realDonaldTrump @WhiteHouse We'd all be better off reading Dr. Seuss than listening to your blather.
## 
## This morning: 69,684 COVID-19 cases in<span class='match'> the </span>U.S.
## Still not "going to zero" and considerably more than 15.
## 1,049 American deaths from COVID-19.</li>
##   <li>Tonight, I will host Penn State epidemiologist Drs. Nita Bharti and Beth McGraw from Penn State's Center for Infectious Disease Dynamics to share information about<span class='match'> the </span>#Coronavirus / #COVID19. Join us. 
## https://t.co/s4yRMSoRVA https://t.co/MeGJPfUMIV</li>
##   <li>Govt must listen to<span class='match'> the </span>plight of indian doctors who don't even have basic gears to combat Corona virus.  #COVID2019 #IndiaFightsCorona https://t.co/1eZCcnY1ri</li>
##   <li>https://t.co/FURHpjQd5Q Hear from<span class='match'> the </span>#Niantic family who put up a holiday display to spread some joy during this challenging time #EastLyme #COVID19</li>
##   <li>Slothful, slow to act, complacent: Johnson has probably infected hundreds, thousands, tens of thousands according to his own government information.
## 
## 'Nonchalant': Boris Johnson accused of Covid-19 complacency https://t.co/xGMhQb5g3j</li>
##   <li>#Breaking A member of<span class='match'> the </span>Maryland Army National Guard recently tested positive for COVID-19. The Soldier is in isolation. About 20 additional soldiers from<span class='match'> the </span>Soldier's unit are quarantined as a precaution to limit<span class='match'> the </span>spread of<span class='match'> the </span>virus. -Maryland National Guard spokesman</li>
##   <li>UN System urges Guyana Gov&amp;#8217;t to take more stringent measures to stem COVID-19 https://t.co/T27qpvFmrL via @stabroeknews</li>
##   <li>Hey @SenateGOP @senatemajldr  @HouseGOP @GOPLeader,
## With his signing statement @realDonaldTrump admits he will violate<span class='match'> the </span>law you just passed. When are your going to get spines and stop him? #GOPSlushFund #CoronavirusOutbreak #TrumpLiesAmericansDie #COVID19 #DoYourJob</li>
##   <li>#SVEs responses to economic impacts of COVID-19 pandemic as of 26/03 show focus on fiscal +monetary measures to adapt. But much lower average value of stimulus measures: 1% of GDP on av. compared to + 8% for #G20 members  
## .@DWteVelde .@deodat_maharaj .@sherillyn_raga https://t.co/ZfIZIkRBcH</li>
##   <li>Many people facing problem in Andhra Pradesh they all belonging to rajasthan many of them people are workers they all living in room due to covid-19 your honerable PM Mr narendra modi make lock down 21 days that’s why yours income are stop I am requestingAndhra Pradesh governmen</li>
##   <li>Latest: 531,684 confirmed cases &amp; 24,054 deaths.
## It's in 173 countries/territories, 93 with 100+ cases, 34 with 1,000+, 9 with 10,000+.
## 453 cases in #HongKong, 4 deaths.
## 
## #COVID19
## #WuhanPneumonia
## #WuhanCoronavirus
## #WuhanSARS
## #2019nCoV
## #CoronavirusOutbreak</li>
##   <li>A message from FXPrimus regarding Covid19 
## Please take care during this terrible situation. Remember that we care and wish you all health and happiness. And please stay home and stay safe
## #stayhomestaysafe #covid19… https://t.co/bjA5Xm2Wpu</li>
##   <li>@DiamondandSilk China Makes Virus. China Spreads Virus world over. China recovers from Virus. The rest of<span class='match'> the </span>world starts experiencing<span class='match'> the </span>Virus. China closes off its entry points. 
## Interesting scenario! #COVID19 #CoronaLockdown #COVID #CoronaVillains #LockdownWithoutPlan</li>
##   <li>mortality rate in italy is 10.5% but ignorant buffoons will still swear up and down that covid-19 is just another flu https://t.co/pFXmDMLKmU</li>
##   <li>As of 26 Mar 20 @ 09:00
## 
## According to<span class='match'> the </span>UK’s Department of Health and Social Care
## 
## 11,658 Confirmed Cases
## 578 Dead
## 
## 104,866 Total Tested
## 93,208 Tested Negative
## 
## #coronavirus #UnitedKingdom #covid19UK #UK19CVD 
## 
## https://t.co/F72rlJx3y7</li>
##   <li>@ErinMPerrine @DanaPerino @realDonaldTrump I don’t understand how somebody’s “where can I make a quick buck” analysis of<span class='match'> the </span>Covid 19 virus briefing is more important than<span class='match'> the </span>doctors and scientists.”</li>
##   <li>It's true tho. When you have force majeure clause in your contract, your financial situation will be protected. Thus, it is important to have this in your tenancy agreement.
## 
## https://t.co/cFu7J5y9ev</li>
##   <li>The number and quality of #COVID19 parody songs is heart warming and a great way to spend quarantine lunch break  https://t.co/sHP2ltEqMh</li>
##   <li>@Zlatan_Ibile Says we shall not die of covid 19 StayAtHome and.........? Fill in<span class='match'> the </span>gaps ibile ayiiiiiii <U+0001F341><U+0001F607><U+0001F4AF></li>
##   <li>My cousins daughter who is just four is so fed up of watching TV these days. She always asks  "Mom, why are all channels talking about Macaroona" She thinks that COVID-19 is food.</li>
##   <li>@randlight Yeah something is definitely not right there... there is NO WAY, he can be applauded for abysmal response to #COVID2019.
## 
## Who concluded this &amp; how/where did they get their information???
## 
## #ImNotBuyingItForOneMinute #TrumpVirusCoverup</li>
##   <li>Kim just got her #COVID19 test results.... she’s negative.</li>
##   <li>If you’re interested in joining a community where we #SmallBusinesses share helpful resources, exchange our thoughts and feelings, and swap ideas about #COVID19 join<span class='match'> the </span>Small Business Survivors Facebook Group.
## 
## https://t.co/0Y4Q9S3DEJ https://t.co/sqFLig90WC</li>
##   <li>@TVMohandasPai @BDUTT @ShekharGupta @sardesairajdeep @ndtv Pie brained.
## India is testing 1 person in a million 4 #COVID19 what a shame.
## #GaribiHaatov by starving or beating to death by Tadipar #CoronaLockdown https://t.co/Z6kJ3vOulJ</li>
##   <li>Who believes her??
## Look, we've seen this before: people propping up Trump because they feel they serve<span class='match'> the </span>greater good.  It hasn't worked yet.
## #COVID19  #Trump https://t.co/08CzSuL98n</li>
##   <li>Never say think "POSITIVE" to someone waiting for their COVID-19 test results.
## 
## No say I no warn you ooo<U+0001F602><U+0001F923><U+0001F602></li>
##   <li>Y’all still using clocks? #COVID19</li>
##   <li>#COVID19 has stolen<span class='match'> the </span>opportunity for a good death.  Contagion means that many patients die alone without their child holding their hand or kissing them gently goodbye.  HCWs are kind to<span class='match'> the </span>dying but they too fear<span class='match'> the </span>illness.  #StayAtHome please.  This tragedy has many facets</li>
##   <li>Please if you can offer a counselling service during this pandemic (covid-19) please sign up with<span class='match'> the </span>link below <U+0001F447> https://t.co/AAQ34KUdzQ</li>
##   <li>I thought I would get SOOO much reading done while staying at home during Corona. Nope. Nada. Just have had no urge. But tonight I'm going to crack open my Kindle and dive in. #CoronaVirus</li>
##   <li>In two weeks, COVID-19 has claimed more lives in New York City than homicides did there in all of 2019.
## 
## https://t.co/YfAUx55ayv</li>
##   <li>The nation is seeing @realDonaldTrump for who he really is: a spineless pussy.  He threatened law suits, &amp; never followed through.  He only fired people if it was on a reality tv show.  And now he refuses to use<span class='match'> the </span>Defense Production Act to build ventilators.  #coronavirus</li>
##   <li>These entrepreneurs are incredible and working so hard to print 3D supplies for those on<span class='match'> the </span>front line. Let’s spread this far and wide and get them help in their fight against Covid-19. #covid19 #3Dprinting #coronavirushelp #PPEshortage https://t.co/PyIxfjh526</li>
##   <li>To all my Montana people out there. https://t.co/AjBlSVXiba</li>
##   <li>COVID-19 Face Shields Now at AlphaGraphics Cary https://t.co/NQdcbqwdbM https://t.co/I1HJzXrSav</li>
##   <li>Tiger King 16x20 inch painting by #JohnFamousArt #Netflix #TigerKing #JoeExotic #BigTiger #Tigers #Lions #NetflixAndChill #netflixandquarantine #quarantine #covid_19 #CoronaVirus #StayHome#StaySafe #StayHome #tigerkingfanart #CountryMusicStar #CountryMusic #Zoo #Redneck https://t.co/UeMGURrnlG</li>
##   <li>“If you find yourself in a more abundant position then others (aka, you have more than $400 in your bank account) this is your time to shine baby. You are<span class='match'> the </span>minority American here.”
## https://t.co/ylXP0997PH</li>
##   <li>Technically life is not as easy for all of us 
## 
## The sad part is if retailers reduce their trading hours we will automatically get paid less
## 
## Most of us can't even afford to pay #DStv can't even afford<span class='match'> the </span>same services we offer to others daily 
## 
## #CoronavirusSouthAfrica #Covid_19</li>
##   <li>Again, we welcome these initiatives by @NGRPresident @CorrectionsNg @raufaregbesola However, time is of<span class='match'> the </span>essence. #COVID19 is spreading. There is no time for<span class='match'> the </span>usual Bureaucracy. Immediate action is required.</li>
##   <li>Oh my goodness <U+0001F62D><U+0001F62D><U+0001F62D>
## When will this stop !!!!
## 
## Covid-19: Highest daily death toll as 919 die in Italy https://t.co/sQqTJ8NJ3J</li>
##   <li>#Jaipur |  Oman return tests positive in city
## 
## #RajasthanLockDown #CoronaLockdown #Coronavirus #Stage3 #COVID19 #coronavirusindia #CoronavirusPandemic #CoronavirusOutbreak #CoronaUpdate https://t.co/KgH1dxNXTY</li>
##   <li>@AnkitRawat98075 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs.</li>
##   <li>This is<span class='match'> the </span>first time I’ve asked for shares. This is life or death. Please make<span class='match'> the </span>3P tweet go viral  to help beat<span class='match'> the </span>virus. The situation is evolving quickly. Only community action can help NHS staff get<span class='match'> the </span>#PPE they deserve #COVID19 #covid19UK #Masks4All #PPEshortage</li>
##   <li>That mpempe hun was so loud she woke Covid-19 up</li>
##   <li>Hackers that target agencies working on COVID-19 cures should be given<span class='match'> the </span>virus if caught. This kind of callous behavior is simply unconscionable.</li>
##   <li>COVID-19: Akufo-Addo to meet NDC’s coronavirus response team https://t.co/3tO48Nxjg5</li>
##   <li>Thank you @NickLaFave from @wzzm13 for<span class='match'> the </span>interview on Altus' production of #ventilator carts. Check it out below <U+2935><U+FE0F> #COVID19
## https://t.co/fdLdGUUtiR</li>
##   <li>SOME POSITIVE NEWS on #coronavirus : Dept. of @USNavy hospital ship "USNS Comfort" will arrive in New York on Monday - three weeks ahead of schedule. #CoronavirusNewYork #CoronaVirusNYC #CoronaLockdown</li>
##   <li>World Bank, IMF urge debt relief for poorer countries hit by coronavirus
## 
## https://t.co/8an5qXT3fW #NRTnews #WorldBank #IMF #Coronavirus https://t.co/2GXmMsy3zS</li>
##   <li>**** IMRAN KHAN TEST COVID-19 POSITIVE***
## Why our media Hide???? Like and share my page https://t.co/PbmQzcRLlx</li>
##   <li>The Bermuda Cricket Board has held several “virtual” meetings to discuss possible changes for<span class='match'> the </span>new cricket season because of<span class='match'> the </span>Covid-19 pandemic. https://t.co/yfic5sCObv</li>
##   <li>if/when a COVID-19 vaccine is developed...should it be free to all?</li>
##   <li>Manu Dibango - Electric Africa (1985) full album https://t.co/UcNBlPm60T via @YouTube RIP covid-19</li>
##   <li>@TeamRVH president and CEO Janice Skot updates<span class='match'> the </span>community on<span class='match'> the </span>situation at<span class='match'> the </span>#Barrie hospital regarding #COVID19. https://t.co/w9nUSVteUp</li>
##   <li>When talking about #COVID19 #JoeBiden sounded professional and offered honest guidance with empathy and compassion. That’s why I’m #TeamJoe</li>
##   <li>Trump’s new chief of staff still serving in Congress and trying to learn new role as COVID-19 threatens millions https://t.co/wtGbUlpFxQ</li>
##   <li>Everywhere that COVID-19 hits hardest, this is a very common theme. 
## 
## Multi-generational families living together:
## 
## Wuhan, Lombardy, Spain, Queens, etc.
## 
## Remember, COVID-19 spreads in confined spaces. 
## 
## Lockdown is<span class='match'> the </span>antithesis to stopping<span class='match'> the </span>spread.</li>
##   <li>@BRIJESH40374114 Hi, in purview of COVID-19, we are currently operating at reduced strength. We might take a little longer than usual to respond back. While we are doing all we can to ensure that our services are running, we encourage you to use #AirtelThanks app for service requests.</li>
##   <li>Great job ma'am,
## Selfish Bollywood should learn from this. 
## Sirf social media pe ghar pe rahne aur hat dhone k msg viral karne k liye hi nahi hai ye celibities.
## 
## #PMReliefFund #COVID2019 https://t.co/z8NXeONtIH</li>
##   <li>Patients are counting on lifesaving blood throughout this pandemic. If you're healthy, schedule an appointment to give in<span class='match'> the </span>days ahead: https://t.co/Cjp3HW9FPm #coronavirus https://t.co/PgP72jqkHL</li>
##   <li>Please visit https://t.co/dv9BqgCINX to find out if you are eligible for free COVID-19 testing by<span class='match'> the </span>City of L.A. Schedule an appointment now.   
## #COVID19 #CoronaOutbreak #TrumpVirusCoverup #TrumpPlague</li>
##   <li>#Trump signs $2 trillion #Coronavirus Economic Relief Bill = Cheques for #Americans - Too LATE for #UK and @10DowningStreet
## #BorisJohnson ££'s ...
## 
##  https://t.co/xUgSKv0aZj</li>
##   <li>#COVID2019 #ThursdayThoughts UK eligible to take part in EU ventilator plan despite missed email https://t.co/JiKfy3g1pu</li>
##   <li>PART TWO: Alternative Options that Uganda Can Adopt to Cushion Citizens During<span class='match'> the </span>Covid-19 Pandemic. - #COVID19
## https://t.co/b8ZmAo8DUE https://t.co/UqHx8rlCvk</li>
##   <li>I submitted my form today confirming my (and Norman's) participation in this initiative. If we're not going to get meaningful guidance from<span class='match'> the </span>state on how to handle this pandemic, I'll get it from my peers. Thanks for<span class='match'> the </span>help, @BloombergDotOrg! #COVID19 #localgov #OklaStayHoma https://t.co/6Ty4aIiJEy</li>
##   <li>@marklewismd Entitlement of health needs re-assessment in leadership @ #COVID19 public health. <U+0001F34E><U+0001F34B><U+0001F34A><U+0001F34F></li>
##   <li>This is what one day of quarantine can look like in our house. #offwork #corona #coronvirus #covid_19 #covıd19 #quarantine #home #projects #parenting #motherhood #parenthood #stayhome #survive #stayhealthy… https://t.co/KPc3D7OFqH</li>
##   <li>#StayAwareStaySafe
## 
## Benefits of social distancing :-
## 
## Each one of us needs to maintain social distance, it will help flatten<span class='match'> the </span>curve &amp; slow down<span class='match'> the </span>rate of spread of #CoronaVirus!
## With less patients, hospitals will be able to batter handle critical patients!
## #FridayMotivation https://t.co/twVlZoJRiL</li>
##   <li>Watch "Reporter Accuses Trump of Playing Politics with COVID-19. He BURNS Her!" on YouTube https://t.co/4buta1o07x</li>
##   <li>@Tirath89123746 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs.</li>
##   <li>Courtesy of Asian Boss on youtube, leading infectious disease expert Professor Kim from South Korea shares his knowledge about COVID-19. Informative, detailed, and transparent; I highly, highly recommend it. 
## 
## https://t.co/IkSHOPEHnl</li>
##   <li>Some 1,500 passengers from Algeria, Tunisia, and Jordan stranded at #Istanbul airport by<span class='match'> the </span>#coronavirus pandemic have been taken to a dormitory in northern Turkey, according to local media. 
##  https://t.co/6jSakhuKjp</li>
##   <li>Save Lives with Face Shields - my nephew’s company is making these at $1/each! Plz donate if you can! #COVID19 #1dollarequals1faceshield  https://t.co/NFASM7AQ3C.</li>
##   <li>DONATION FOR DRIVERS
## 
## We plan to give a financial support or relief goods to workers who's daily income are just enough for a day particularly trycycle and jeepney drivers.
## 
## Kindly repost this photo! Thank you! <U+2764><U+FE0F>
## 
## #Covid_19 #CoronaLockdown #Donations https://t.co/bI7ztFe02p</li>
##   <li>On <U+2066>@sunriseon7<U+2069> at 8.45am talking about how a wage subsidy will help us avoid mass unemployment #wagesubsidynow #coronavirus https://t.co/WmbeeiPTIn</li>
##   <li>Coronavirus Australia news: NSW confirms 186 new cases as Victoria pushes for stage 3 lockdown <U+2013> live updates https://t.co/ZyzL8J5Uo3</li>
##   <li>House passes $2 trillion COVID-19 emergency bill  https://t.co/DOK8mDMelR</li>
##   <li>The Four Seasons Hotel on 57th Street, New York City will provide FREE lodging to doctors, nurses &amp; medical personnel currently working to respond to<span class='match'> the </span>#COVID19 pandemic. Way to step up @FourSeasons! #TogetherWeCan</li>
##   <li>Necessity is<span class='match'> the </span>mother of invention !!!
## #covid19 #savelives https://t.co/eoLvvnny7y</li>
##   <li>The Armageddon is their business. And business is good. How survivalists are prepping for a windfall. My latest for @5280Magazine https://t.co/k9rtuWiv98</li>
##   <li>Life at home cause of covid: 80% sleep, 10% gaming, 10% bsing on my phone.
## 
## I am okay with this. #Quarantine #coronavirus</li>
##   <li>How do you think things are being handled with<span class='match'> the </span>#coronavirus?
## #covid19 #quarantine
## @PragerU #PragerFORCE @DennisPrager https://t.co/RZRsMYsfFA</li>
##   <li>@Oochka3 @CTVNews ppl in<span class='match'> the </span>states died of chloroquine overdose after Trump said it was a covid-19 cure. 
## we're thinning<span class='match'> the </span>herd</li>
##   <li>While we've had to make significant changes to our daily lives to protect ourselves and our communities from<span class='match'> the </span>#covid19 pandemic, Seacology's work continues to move forward. This includes some major plans in<span class='match'> the </span>coming months.
## https://t.co/D6jCAz8BtW</li>
##   <li>People need to take<span class='match'> the </span>COVID-19 virus seriously, I can't work if there are customers who don't give a f*ck about it and don't follow<span class='match'> the </span>rules..</li>
##   <li>If you’re in<span class='match'> the </span>business of growing grain - check out latest @GrainGrowersLtd farm guide for COVID-19 - plenty of tips and practical advice for helping manage<span class='match'> the </span>risks on farm @theGRDC @NationalFarmers #letsalldoourpart #COVID2019AU #agchatoz  https://t.co/wRMzlQLAzm</li>
##   <li>Oof. The U.S. just became<span class='match'> the </span>global epicenter of COVID-19:
## 
## https://t.co/Hd1VeGSmKw</li>
##   <li>Nope. Apple launches new COVID-19 screening app and website in partnership with CDC https://t.co/u1tHxkU3E2</li>
##   <li>#Vancouver's #Roundhouse and #CoalHarbour CC will be converted to referral only response centres, housing those who do not have #COVID19 or housing and need to isolate. More to come: https://t.co/qmBS4cRRQT</li>
##   <li>#Coronavirus pandemic:
## 
## From 0 to 250,000 cases: 4 months
## 
## From 250,000 to 500,000 cases: 1 week
## 
## #ChineseVirus19 #COVID2019 https://t.co/TPRgXFCsz4</li>
##   <li>What @realDonaldTrump is REALLY saying here is:
## “Yes, President Xi Did ask me to stop saying “Chinavirus” and like a good boy I complied.”
## 
## #Coronavirus #TrumpLies
## #TrumpPandemic https://t.co/eXwT1as1Mo</li>
##   <li>Looking for factual, local Miami-Dade County coronavirus (COVID-19) information? Testing, Curfews, Closures, etc...
## 
## Latest Updates:
## https://t.co/bUE9vnWfWR
## 
## Miami-Dade County Departments &amp; Services:
## https://t.co/mKVlNckp4B</li>
##   <li>This has bugged me for years. On<span class='match'> the </span>pilot episode of #Frasier, just before Martin enters Frasier is sitting at<span class='match'> the </span>piano playing a song then stops when<span class='match'> the </span>door bell rings. Can anyone name that song? #Covid19 #californialockdown #bingemywaythrucovid #Imstayinghome</li>
##   <li>@mkraju TRAGEDY:
## 
## 5959 new cases of #Coronavirus in #Italy with 919 new deaths. Taking tally to 86,498 confirmed cases &amp; 9134 deaths in total.
## 
## 46 doctors have died to date (with 4 additional deaths today). 6414 health workers have tested positive. #COVID19 #COVID2019 #coronaitalia</li>
##   <li>With this #coronavirus pretty much putting almost everything on hold, why is @24hourfitness still collecting membership fees? I think it’s time to cancel my membership if they don’t have<span class='match'> the </span>decency to put memberships on hold during this pandemic especially in cities with a</li>
##   <li>@purtheil @realDonaldTrump Covid-19 what not to do: Oval Office edition.</li>
##   <li>Zamfara State will shut down its borders as from Saturday, 28th March, 2020 which is a measure against spread of Covid-19. This was announced by Governor @Bellomatawalle1 in a state wide broadcast this evening.
## https://t.co/1nR1OtLtyu</li>
##   <li>They’re even saying covid 19 will struggle in Europe and America because of<span class='match'> the </span>hot weather in<span class='match'> the </span>summer. I’m going out this summer I really couldn’t give a fuck wallahi</li>
##   <li>#COVIDWATCH graph for 26/3 from @mikey0callaghan with @UL + @ICGPnews. We are<span class='match'> the </span>vectors for #COVID19. It can't spread if we stay in our family units and stay home. YOU can save lives in your own community. So now, more than ever, please play your part #PhysicalDistancing https://t.co/Wu0uThXWYJ</li>
##   <li>The impact of<span class='match'> the </span>new coronavirus disease, COVID-19, is being felt around<span class='match'> the </span>world. We believe we are better when we work together. 
## .
## .
## .
## #WeSelNwDreams #Bhhsnwre #Bhsnwrefw #Covid19 #StayAtHome #DoYourPart #StayHealthy #StaySafe #WashYourHands #Washington https://t.co/qzIXbMiGjH</li>
##   <li>Kindly take note:
## 
## If you are British visitor in Ghana and affected by COVID-19 please contact:  ConsularAccraEnquiries@fco.gov.uk @ukinghana https://t.co/yIhDwccqwk</li>
##   <li>"The human ingenuity and ability to adapt and innovate in a time of crisis continues to astound and inspire me each and every day" - Co-founder @BaillieForGood shares her thoughts on #insights in<span class='match'> the </span>time of #COVID19  https://t.co/GAZOzEbByA #MRX #MR https://t.co/yfc48xMPhk</li>
##   <li>Hello yes it is I<span class='match'> the </span>deserving 10th seed of COVID-19 week 3.</li>
##   <li>No wait are they... lying?
## 
## #CoronaLockdown #coronavirus #CoronaUpdate #COVID19 #COVID2019 #Brexit #BrexitBeforeBreathing #BorisJohnson #ToriesFault #BorisResign https://t.co/CcFxjvjgnW</li>
##   <li>Dozens of elephants 'set free' as chairs used to carry tourists are scrapped in wake of COVID-19 downturn [Video] https://t.co/UY8tI2K5Ah</li>
##   <li>We could easily actually have half a million or more COVID-19 cases in<span class='match'> the </span>U.S. by now. 
## 
## If people are still being told not to get tested unless they have symptoms, and more people still aren’t getting tested if they have mild symptoms,<span class='match'> the </span>current 99k case count is inaccurate.</li>
##   <li>Corona Kavach: Indian Government launches location-based COVID-19 tracking app. #coronavirus #ceilingfansale #homedecor #CeilingFans  #design #TableFans #interior #PedestalFans #wallfans #ExhaustFans #Cool… https://t.co/58Sf3hoDwu</li>
##   <li>Leading VCs discuss how COVID-19 is impacting real estate &amp; proptech https://t.co/ojK2GfR4s3</li>
##   <li>@EMD4ME Fox News just said Covid 19 is being unfairly blamed. People are actually dying of underlying health problems. That is what it is now down to. By mid-April we will have a 9/11 like death count every other day. (Hey but there’s a carryover at Oaklawn and<span class='match'> the </span>market is up! Yay)</li>
##   <li>Loss of smell may be an important clue in COVID-19 infection - The Daily Memphian  - https://t.co/zI98subOKJ  #COVID19 d19</li>
##   <li>Rush Hour. Friendship Heights Metro Station. #coronavirus https://t.co/RXKYrEQa9T</li>
##   <li>Covid-19: Christians, Jews and Muslims join in prayer in Jerusalem - Vatican News https://t.co/gaPdVW983J</li>
##   <li>@nazifaz_ @WarwickLabour please investigate this hateful tweet celebrating Boris Johnson getting  #coronavirus <U+0001F44D></li>
##   <li>Here is The British Society of Gastroenterology's guidance and advice regarding #COVID19 #coronavirus. The advice for children is<span class='match'> the </span>same as for adults. There is a grid at end of this guidance which gives specific advice on self-isolation: https://t.co/4GSdZWDLo3 … https://t.co/79mRNctgne</li>
##   <li>#Canada - MPs poised to score pay hike amid COVID-19 crisis https://t.co/iEbBxdjRkx This is outrageous. #Cdnpoli</li>
##   <li>My family is packing wildflower seeds to share with people in our village and inviting donations to @Somerset_CF #coronavirus appeal https://t.co/IjkNSrI8ke https://t.co/zCKPXYKUyj</li>
##   <li>Thx @SenateGOP for forcing this sociopath upon our country in its hour of greatest need. #ShamSenateTrial #WeWillRememberInNovember #COVID19 https://t.co/ZGwH5sBV5Z</li>
##   <li>The irony of it. These money now will need to be spent to save jobs and lifes.
## #COVID19 #StayHomeSaveLives https://t.co/JECECN4NXW</li>
##   <li>People congratulating Boris Johnson's handling of #COVID19, I have to ask. Don't you think we'd have been in a much stronger position if we hadn't had more than a decade of austerity and cuts? The fact that front line workers can't get correct PPE is scandalous...</li>
##   <li>#Copyright in schools has been changing fast with<span class='match'> the </span>rapid move to #OnlineLearning. Here's an #infographic for teachers which may assist. Based on Australian law, but<span class='match'> the </span>principles will be<span class='match'> the </span>same everywhere; hope it's useful in this #Covid2019 world! https://t.co/zhfh8CbGdN https://t.co/UoLoY6OuJA</li>
##   <li>@beholdcosmicwav Don't forget that if a state does more to check<span class='match'> the </span>incidence<span class='match'> the </span>fatality rate will tend towards its true value. Germany has tested 120,000 people in a month:
## https://t.co/dSTuCszjbS</li>
##   <li>2nd World Conference on #Vaccine &amp; #Immunology | October 19-20, 2020 | #Helsinki #Finland
## 
## If you are interested to be a part of this event as a speaker or delegate!
## 
## E: meevents@memeetings.com
## 
## Visit: https://t.co/C8L1REAeJd
## 
## #Immunity #Childhealth #Infection #Coronavirus #Care https://t.co/0WK7Sd9gho</li>
##   <li>"A Washington Post poll this week found 48% of Americans approve of<span class='match'> the </span>president's work"
## 
## How tf is this possible?
## Are they awake?
## Are they paying attention?
## What 10 feet below<span class='match'> the </span>bottom of<span class='match'> the </span>barrel benchmark are they using?
## #COVID19</li>
##   <li>WATCH LIVE: San Diego Mayor Kevin Faulconer provides his daily update on<span class='match'> the </span>response to<span class='match'> the </span>#coronavirus. https://t.co/NWy9IhglxL https://t.co/91kKz9nQcl</li>
##   <li>More than befores,, Glued to<span class='match'> the </span>books indoors slowly become a lifestyle during this Covid-19 times... I guess after this I can look back a count a positive attitude that was gained!</li>
##   <li>@SamsClub 9 days later... No response. @SamsClub doesn’t care about #coronavirus safety! Wrong time to send a survey! https://t.co/tGHWQqB8LP</li>
##   <li>@tanamongeau $ktbugg13 Just signed<span class='match'> the </span>lease to my apartment last month and am currently laid off due to covid-19 because I’m a waitress and my landlord basically said I have to pay rent by<span class='match'> the </span>1st or I have to get out even tho this is affecting thousands of people. Anything would help:(</li>
##   <li>@californiapuc Californians need relief. They are being told to stay home and running up their electricity bills. Please direct utility companies like @SDGE @PGE4Me to reduce rates and/or eliminate high usage charges during #COVID19</li>
##   <li>At 8pm tonight we are going to be joining in with<span class='match'> the </span>#ClapForOurCarers!<U+0001F499> In everyday life they go above and beyond but even more so while they work hard in<span class='match'> the </span>fight against #Coronavirus!<U+0001F499>
## 
## Will you be joining in?<U+0001F499> https://t.co/TNJuKmcGLW</li>
##   <li>@psac_afpc That should have been implemented in January 23rd!!!
## 
## #COVID19 winning by late reaction gov of Canada</li>
##   <li><U+0001F4E3> New Podcast! "Same God in an Uncertain World" on @Spreaker #anxiety #christianity #coronavirus #economy #fear #god #health #jesus #sickness #uncertainty #virus #worry https://t.co/pCBt2EwkIw</li>
##   <li>UCLA's Chip Kelly's Biggest Concern Is Players' 'Mental Health' Amid COVID-19 https://t.co/Klk1ek2Lb4</li>
##   <li>We need to suspend elective abortions now. #ChooseHope #coronavirus #ProLife 
## 
## Planned Parenthood is now 100% abortion - and that's unacceptable: https://t.co/Rxf1nK6HK4
## 
## Here's a state breakdown of #COVID19 and elective abortion policy: https://t.co/P0Qinv6L5p https://t.co/Chmjuml2ow</li>
##   <li>Map shows county-by-county breakdown of COVID-19 cases in<span class='match'> the </span>US 
## 
## The maps runs on IBM's Watson, combining data from<span class='match'> the </span>World Health Organization with reported data at<span class='match'> the </span>state and county level to show a detailed breakdown of coronavirus cases across US https://t.co/HUXOw4qc6L</li>
##   <li>@AherneMike95 Feel so reassured that we have<span class='match'> the </span>amazing #drcatherinemotherway @ULHospitals #nobull #Social_Distancing #washyourhands #COVID19 #LateLateShow https://t.co/ibfourxW8s</li>
##   <li>I am currently #socialdistancing. I will be 100% #workingfromhome for<span class='match'> the </span>next 2 weeks. The #covid19 situation is very bad in NYC and no one is taking chances. I had to improvise with random furniture to make an… https://t.co/VB4TNmN3qt</li>
##   <li>@56kylecoop @GulfstreamPark @HRRN Due to Covid-19 restrictions,<span class='match'> the </span>boys are doing a remote broadcast. Live at 5:30 ET on Sirius219/XM201 and streaming on https://t.co/dux7G6UP2S with @HRRNBaron #BobbyNewman
## @AnnouncerPete 
## Florida Derby (G1), Pan American (G2) &amp; Appleton (3).</li>
##   <li>Shame On You @ArvindKejriwal 
## I thought u will help poors in this pandemic situation, u will go against ur father #China but no u r a Communist n killing innocent people by hunger..u hv no heart.. SHAME
## #CoronaVillains #LockdownWithoutPlan #ChineseVirus19 #WuhanVirus #COVID2019 https://t.co/XeskwAapQb</li>
##   <li>Families at risk of domestic violence need a way to request home delivered essential food packs. They can’t ask angry men for non-existent food/petrol $ OR leave kids home alone with them to go shop properly @Coles @woolworths @AusPost @amazon @ALDIAustralia @uber #coronavirus https://t.co/UTt2cFuMm0</li>
##   <li>See<span class='match'> the </span>video recording of our webinar: Contain #COVID19, Not People! 
## 
## https://t.co/g8nNI6KWPz
## 
## Edited closed-captioning to be included shortly.
## 
## #ContainCOVIDNotPeople #AnswerTheCall #LetUsTalk #abolitionNOW #FreeThemAll4PublicHealth #LetThemGo</li>
##   <li>I hope y'all have a negative for<span class='match'> the </span>covid-19 https://t.co/Dl0OIFTr4x</li>
##   <li>gerald_bader : Bird lays off about 30% of workforce amid COVID-19 pandemic via Megan Rose Dickey https://t.co/2r6e5W5ChE #ML #AI #Analytics #Automation https://t.co/cJ3kgHB5HH (via Twitter https://t.co/bjJg0OOkWU) https://t.co/qF51vyjrir</li>
##   <li>@Baddiel @WeeMissBea It's actually<span class='match'> the </span>other way round. Sars-CoV-2 is<span class='match'> the </span>virus which causes a disease called Covid-19 x</li>
##   <li>We are hosting #quickcast series on issues surrounding #COVID19, and @DoubleEph was our first guest. It was insightful and enlightening. Listen or download now https://t.co/tk4NNGPDD8</li>
##   <li>@JohnACrimmins @JohnACrimmins they have done one thing exceptionally well - sent very clear, no fluff, messages to their people. "If you have any questions and you are looking for answers, apply a simple rule - act like you have Covid-19...Be kind, stay at home, break<span class='match'> the </span>chain." Ardern</li>
##   <li>@JGPharmD @NickKristof @V2019N @stuartathompson Also they don't really attempt to slow it down much at all.
## 
## People are still allowed to go out. Groups over 500 are banned. Elementary schools open. It's kinda seen as it being fine hospital staff and care givers don't use protection. #SARSCoV2 #COVID19 #Sweden
## 
## ...</li>
##   <li>@MargotR90016343 @MargotRobbie Sorry for bothering you, when COVID-19 is finished you are very welcome in Banff, AB Canada</li>
##   <li>Nancy Pelosi: Ring leader of Democrat’s Covid-19 relief thievery https://t.co/735OlTKDNw via @CommDigiNews</li>
##   <li>I was told there would be an abundance of time to kill. So far, this is<span class='match'> the </span>opposite of that. 
## #socialdistancing #COVID2019 #ParentingInAPandemic</li>
##   <li>Find out what's in<span class='match'> the </span>#CARESAct #stimulusbill that passed<span class='match'> the </span>Senate last night. It's now on to<span class='match'> the </span>House for a vote, so check back for updates: https://t.co/rgIDFVCImq  #coronavirus #COVID19 #businesshelp</li>
##   <li>My sales dropped a lot as shipping has been suspended to many countries amid #COVID19 pandemic. I have many downloadable PDF #crochetpatterns in my shop. Please help me by sharing this tweet 
##  #Etsy #crochet #pandemic #SmallBusiness https://t.co/kR2hGSZfJA</li>
##   <li>Couple recreates final dance scene from ‘Dirty Dancing’ while in COVID-19 isolation https://t.co/AgJoq6VCPN</li>
##   <li>If you want to get out of<span class='match'> the </span>house,<span class='match'> the </span>Wildlife Safari near Ashland opened up Friday.  Just expect a wait time.  The venue made some changes to help prevent<span class='match'> the </span>spread of #coronavirus more on that tonight at 6pm @3NewsNowOmaha https://t.co/6MljsBTmFL</li>
##   <li>The @nigerianports, other shareholders donate @AguraHotel as Isolation Centre for COVID-19 in Abuja. https://t.co/OFbQvdwjLH</li>
##   <li>@PuneCityPolice https://t.co/1XIUKUmf8I
## PUNE: WAGHOLI HOSPITAL STAFF EVICTED FROM NEARBY SOCIETY AMID COVID-19 Scare.</li>
##   <li>Definitely uplifting Treatment of 5 Critically Ill Patients With COVID-19 With Convalescent Plasma | JAMA | JAMA Network https://t.co/ej71mECRsJ</li>
##   <li>Awww fuck! https://t.co/IvhreWe61E</li>
##   <li>@KayceeMaduYEG @rebeccakschulz Hope they record everything.  Our council was still recommending that public go to a seniors tea March 13, and a fundraiser dance March 14.  Now we have Covid-19 in our community.</li>
##   <li>@Postmates me and my mom are doing Postmates to earn a little extra money through this COVID-19...my moms has been going off<span class='match'> the </span>hook with deliveries and I’m lucky to have one throughout<span class='match'> the </span>whol day...what gives? <U+0001F615></li>
##   <li>@san614617 Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>@ananavarro I don’t believe this poll is accurate. #coronavirus https://t.co/w0yHEiYlO7</li>
##   <li>EXCLUSIVE: A person incarcerated on Rikers Island speaks out. “They’re putting up posters everywhere that say, 'Space yourselves six feet apart!' It’s completely impossible. Even if this place was half full, it would still be impossible at most times.” https://t.co/sBZax17rK3</li>
##   <li>@rachelgould1996 @thescottishsn @FionaCMcQueen @NHS_Education You will have a lot to reflect on after all this is over, you may want to keep a diary, it’s been shown this helps during times of stress at work #mentalhealthsupport #staysafe #COVID19</li>
##   <li>A small kind gesture always matters. Show love to our First Responders. Thank you @krispykreme for providing 250 Two Packs to our officers at<span class='match'> the </span>42nd Precinct in #TheBronx.  We will overcome #COVID2019 together by #BuildingABetterBronx https://t.co/1LYpfDbpAP</li>
##   <li>Support is available for Kiwi businesses and workers who have been impacted by COVID-19. The Government's economic response package is in place to ensure that workers receive some form of income as we weather<span class='match'> the </span>global economic impacts of<span class='match'> the </span>virus. More<U+27A1><U+FE0F>https://t.co/9biBrfyG0I https://t.co/lYvFHYWTH1</li>
##   <li>Just a reminder that, other than evidence provided *by China* <U+2014> a regime known for tyranny and govt control <U+2014> there’s nothing to indicate COVID-19 has stabilized in China. https://t.co/j4lZIMyx2H</li>
##   <li>VIDEO: A COVID-19 Admonition ***EXPLICIT https://t.co/Np8JFzRNlM via @YouTube</li>
##   <li>@YRDeshmukh The series of events in which this #CoronavirusOubreak has occured clearly points a doubtful finger towards #China .
## 
## And there is no harm calling #COVID19 as #ChineseVirus19 because in<span class='match'> the </span>past also many diseases have been named by their place of origin.
## Kindly google abt it !</li>
##   <li>I have been doing a lot of video calling for someone that hasn’t washed their hair in a week <U+0001F486><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F602> #Lockdown #COVID2019</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!!
## 
## https://t.co/crzOOIJe0m</li>
##   <li>Now we discover what “rights” we really have, perhaps proving<span class='match'> the </span>point that we have none, that we have privileges which must be cherished and preserved. #COVID19</li>
##   <li>Looting of goods in some parts of south of<span class='match'> the </span>border in a Covid 19 backdrop es no bueno</li>
##   <li>A massive Thank You to<span class='match'> the </span>NHS and those on<span class='match'> the </span>frontline, volunteers and key workers helping with<span class='match'> the </span>virus battle! Lots clapping <U+0001F44F><U+0001F44F><U+0001F44F> here for you all. Obviously those who didn’t clap need to go to<span class='match'> the </span>clap clinic but I’m afraid<span class='match'> the </span>NHS are rather occupied with Covid 19.</li>
##   <li>GOP governor @GovParsonMO: 'I don't believe I am costing lives' by refusing to act on #coronavirus #MOGOV  https://t.co/fn9llf1Gvh</li>
##   <li>I've been traveling for a few years and to see all #airtravel grind down to a hault is so new, to have a 5th of<span class='match'> the </span>population of<span class='match'> the </span>planet in some sort of #stayathome feels like<span class='match'> the </span>beginning of an apocalypse movie #besafe among<span class='match'> the </span>#Covid_19 worries</li>
##   <li>#CNNTownHall Will<span class='match'> the </span>COVID-19 vaccine give me autism?</li>
##   <li>NEW data visualizations are available on<span class='match'> the </span>#COVID-19 page from @UNOSNews https://t.co/GiAlJD2yxE ...These charts show national #data on #organ #transplantation &amp; #donation &amp; they are updated daily!!!</li>
##   <li>Sure. 24,000+ people are dead, but no biggie. The US now has<span class='match'> the </span>most confirmed cases of COVID-19, but her emails. Fear has nothing to do with facts. https://t.co/AG1xPsViNR</li>
##   <li>@dsgngal @jdwickie I felt guilty for 2 1/2 years about my thoughts when it comes to Trump. But how can anyone with a heart not feel this way? Kids in cages, sacrificing our Kurdish allies, Khashoggi, racism women's rights, POC, LBGTQ rights, Climate Change Covid-19. He did nothing until he had to.</li>
##   <li>Great to be part of this Swedish-Chinese collaboration in times of #COVID19  https://t.co/xZsKBcGmxA</li>
##   <li>#BREAKING Reno County now reports 5 cases of COVID-19. The two latest patients are men over<span class='match'> the </span>age of 50. https://t.co/dk5X3jzac2 #kwch12 https://t.co/u3UsM7L1ZO</li>
##   <li>Thank you for<span class='match'> the </span>great initiative and innovation!
## 
## "can supply up to 100,000 Covid-19 testing kits a week and can produce up to 200,000 if needed." 
## 
## MUST CHANGE TO 
## 
## "WE MUST supply 100,000 #COVID2019 testing kits/ week and HAVE TO DELIVER up to 200,000"
## 
## #CoronavirusOutbreak https://t.co/T7ytnFpof6</li>
##   <li>Cepheid Receives Emergency Use Authorization from FDA for Rapid SARS-CoV-2 Test - Mar 21, 2020 https://t.co/QzVMFo5lSs #covid19 #pandemic #coronavirus</li>
##   <li>Panama Canal blocks Holland America cruise ship with 138 ill crew members and passengers, and 2 confirmed cases of COVID-19 on board https://t.co/rTKeXWJkUC</li>
##   <li>She was furloughed, but they hope this is temporary. I understand state &amp; local health agencies are overwhelmed but their has to be a way to redirect healthcare workers to fullfil needed functions, like testing. #coronavirus</li>
##   <li>Nonprofits and Companies That Are Helping to Fight<span class='match'> the </span>Pandemic https://t.co/JSAeXxc9tt</li>
##   <li>Hey @BostonGlobe: take down<span class='match'> the </span>paywall for #COVID2019 coverage and I’ll resubscribe</li>
##   <li>Monday on “In The Ring With Mia” @ 7am - 8am PT I’ll be talking #steroids in #boxing How it affects #MENTALHEALTH &amp; how it affected my physical health<U+0001F397>Then we’ll check in w/ @LaurenceRifkin &amp; get<span class='match'> the </span>latest tips on #coronavirus Call in with ur questions! https://t.co/t4w07S3n1l https://t.co/InlWINN6WN</li>
##   <li>Two Areas In Johor Are Now Under #Lockdown Due To High Number of Positive #COVID19 Cases
## 
## #movementcontrolorder 
## 
## https://t.co/gvZzERvH83 https://t.co/CMUKbdc48H</li>
##   <li>@_chaybay21_ Plus who honestly belives China is telling<span class='match'> the </span>truth about their cases. After all they suppressed anyone trying to warn<span class='match'> the </span>world about Covid 19 in November.</li>
##   <li>Whole street out tonight to say Thank You to @NHSuk staff and ALL those working hard (delivery drivers, postal workers, distribution worker, carers ETC.) to keep us safe! #COVID19 https://t.co/Px4AJinV7X</li>
##   <li>#covid19 #chinaliespeopledies
## Its a request to all police plz don't behave like a killer only punish people for their saftey only how Cornoa can kill people when their guards can kill people by beating them its a horrible thing that i have heard . https://t.co/EcIiyit2AS</li>
##   <li>TOO CUTE! A few lucky pups had<span class='match'> the </span>Georgia Aquarium all to themselves this week. The aquarium is closed (to humans) due to<span class='match'> the </span>coronavirus pandemic. <U+0001F436> VIDEO: https://t.co/7JARWU8TzU</li>
##   <li>Excellent webinar in COVID-19 crisis management and clinical experience. https://t.co/JBDgcQL6dL</li>
##   <li>Mesa County has 7 cases of COVID-19 according to new @CDPHE numbers.
## Colorado totals:
## -1,734 cases
## -31 deaths 
## -239 hospitalized</li>
##   <li>#MaximumPressure’ campaign has weakened<span class='match'> the </span>Iranian economy and eroded<span class='match'> the </span>confidence of<span class='match'> the </span>Iranian people in their government #nowruz #covid19 @jzarif https://t.co/LmaEok1mnT</li>
##   <li>This is an emotional rollercoaster #COVID2019</li>
##   <li>#COVID19 is not a joke,So please stay at home,stay safe &amp; stay healthy <U+0001F64F>. https://t.co/WUtMW0zKKE</li>
##   <li><U+0001F914> I don’t wanna speculate but I think (and this is completely just a thought,of which I cannot be held liable for it, anyone’s perception of it or any further news that may arise from it, inclusive of but not limited to<span class='match'> the </span>influencing of people’s views on covid-19)</li>
##   <li>@drjenndowd here is<span class='match'> the </span>link to<span class='match'> the </span>a English version of<span class='match'> the </span>executive summary: https://t.co/72UQEcM7R8</li>
##   <li>I can't begin to imagine what it must be like for people who don't have good digital access and connectivity during #COVID19. Then again, digital immersion at this time can also be challenging to wellbeing.  #SAheapsunfair</li>
##   <li>It will ship payments of up to $1,200 to millions of Americans, bolster unemployment benefits, offer loans, grants and tax breaks to businesses large and small. #coronavirus
## https://t.co/FYS759cgqB</li>
##   <li><U+2022> mood confinement eat sleep - acnh netflix ! #Covid_19 #ACNH #Netflix</li>
##   <li>@Wil_Johnson1 @gatewaypundit Watch from here... Nurse laid off suspected Covid-19. After Joe rattles off his morbid death experiences with his own family in Hospitals he starts reading her benefits she will get that Congress just passed. It gets too complicated so...No Joke..Call Me
## 
## https://t.co/M1b9e6oB9I</li>
##   <li>3.3 million have applied for unemployment this week.
## We have 330M people in this country. How many of us are workers that could even be eligible for unemployment?
## Then only a percentage of them have applied. That is why this number is so alarming.
## #CoronavirusOubreak 
## #NotEaster</li>
##   <li>These changes to SDOH are likely to be in place for months at least, and some perhaps for longer. 
## 
## To put it bluntly, from a public health perspective, we are playing with fire.  
## 
## In responding to<span class='match'> the </span>COVID-19 virus, we are disrupting many of things that support good health.</li>
##   <li>Boosting<span class='match'> the </span>immune system after being chased by two crazy neighbors who don't care about<span class='match'> the </span>#sixfeet rule <U+0001F615> <U+0001F620>
## #immunesystem #boostingimmunity #SocialDistancing #QuarentineLife #Prevention #StayYourAssAtHome #BeSmart #StayHealthy #Coronavirus #Covid19 #GoVegan #GoPlantBased https://t.co/KO4GqqHiJS</li>
##   <li>@JennMGreenberg @Cody_Floate Yep! As Liz says in<span class='match'> the </span>video, if it’s not Covid-19 then why can't Lilly have steroids? And if it is possibly Covid-19 she should be tested. She is<span class='match'> the </span>very definition of high risk.</li>
##   <li>This is great advice from Dr. Michelle Dickinson aka Nanogirl on what to do to protect yourself when shopping at<span class='match'> the </span>grocery store.
## 
## @medickinson #COVID19 #StaySafe #StayHome #StayHealthy #StayHealthyEveryone #KeepOthersSafeToo https://t.co/B9Bg4gfmID</li>
##   <li>Had to wear mask for 2 hours today while going out for an essential work. That is when I fully realized how much difficult<span class='match'> the </span>doctors are going through physically and mentally to wear a double mask while dealing with patients with #COVID19 .Literally had no words to praise them!</li>
##   <li>COVID-19 is not going to return<span class='match'> the </span>hostages after President leaves office. https://t.co/jTVMDDgQYt</li>
##   <li>How many #suicides have there been because of<span class='match'> the </span>#coronavirus?</li>
##   <li>Jump in Arizona #COVID19 numbers. 13 deaths, 665 positive tests, 102 in Pima County. Again these are only test results and do not reflect<span class='match'> the </span>total number of people with<span class='match'> the </span>virus</li>
##   <li>@TimesNow Who represents Indians? SC or Lokh Sabha. SC only Duty --interpret laws. SC is telling Center to jeopardize<span class='match'> the </span>life of 1.3 Billion Indians especially it was Indian Shia pIlgrims choice to be in epicenter of Covid 19 Qom.@narendramodi @AmitShah @Swamy39 @amitmalviya @MajorPoonia</li>
##   <li>#coronavirus #justforfun  my son was listening to this song it's raining tacos &amp; wa lah #inspiration <U+0001F923><U+2764> https://t.co/ViEQnm4jdh</li>
##   <li>Johns Hopkins' widely used #COVID19 map erased "Palestine" and merged cases into<span class='match'> the </span>numbers for "Israel," making it impossible for more than two weeks to track cases in<span class='match'> the </span>West Bank and Gaza https://t.co/L12gpsn77A</li>
##   <li>Beloved Seattle restaurateur dies from coronavirus as her husband also battles<span class='match'> the </span>virus https://t.co/jiZf0yvz71</li>
##   <li>Entrepreneur Ignas Jurkonis and Hollywood actor Ian Ziering takes active part in fighting Corona virus (COVID-19) https://t.co/VbZBkpgKlE https://t.co/EgWirgaVEM</li>
##   <li>Jeff Bezos sold $3.4bn of Amazon stock just before Covid-19 collapse https://t.co/glhE1Q4iLP</li>
##   <li>the United Stares has a population of 330 million while China has 1.2 billion yet we somehow managed to have more cases of covid-19. Tell me how that happens? @realDonaldTrump 
## How does China manage to control<span class='match'> the </span>outbreak with a population of 1.2B and we can’t with 330M? <U+0001F602><U+0001F602></li>
##   <li>A new machine is currently in place and installation will be in place soon, 10,000 tests have been ordered to go with this machine. We currently have 3000 test kits minus<span class='match'> the </span>250 tests that were done, PAHO is to give us 6000 more kits. #covid19</li>
##   <li>@realDonaldTrump @Kayrile02025449 WHO is Dr Faucci &amp; Debra Brix really?
## Tedros, Bill Gates, CF, PEPFAR, circle of corruption. 
## #COVID19?
## #Eugenicist #Vaccines  #AIDS
## 
## Another piece of<span class='match'> the </span>puzzle by: #AmazingPolly
## https://t.co/sumtdEcwBm</li>
##   <li>President #Trump allegedly got advice from #ARod &amp; spoke to him about<span class='match'> the </span>#CoronaVirus response. https://t.co/1mCetLyFvi</li>
##   <li>There have been 170 cases of coronavirus community transmission in NSW as<span class='match'> the </span>state’s Premier @GladysB announces another death. #coronavirus #7NEWS 
## 
## https://t.co/B9ICnj0B3Q</li>
##   <li>Know what’s tough? Having to explain to your 10 year old son why you had all 4 grand parents for 37 years while he is trying to understand why he lost his first and can’t say goodbye. #COVID19 and yes I understand he and I are both lucky</li>
##   <li>The most powerful single image of<span class='match'> the </span>COVID-19 crisis yet https://t.co/WhNQ6YkwwB #infoviz</li>
##   <li>Don't let coronavirus concerns stall your business. Discover how these remote working technologies can keep your team productive (and safe!).  https://t.co/nU3RaMPr9T
## 
## By @chalklinetech
## #remoteworking #homeworking #coronavirus https://t.co/uNW2psMEQc</li>
##   <li>#COVID2019 James Dyson invented a new ventilator in 10 days. He’s making 15,000.
##  https://t.co/A8KSXx4NqB</li>
##   <li>Health officials say peak of COVID-19 crisis is yet to come https://t.co/I5qvbmO2Bi</li>
##   <li>Tomorrow, NY will have more new cases than Italy.
## #COVID19  I do not write this lightly.  We have started<span class='match'> the </span>math logarithm task force led by Gordon Buchanan and we all are struggling with how horrific this is.</li>
##   <li>@Baddiel I blame you. Before I saw your show in Basingstoke<span class='match'> the </span>million years ago that was last month I didn’t do Twitter, and now I spend my days scrolling for comedic relief from #COVID19</li>
##   <li>A Look Inside<span class='match'> the </span>Navy Hospital Ships Fighting COVID-19 https://t.co/JuDoGZeouO</li>
##   <li>@greaterheights_ @Dclasyc ... imagine if they’ve seen how ‘vulnerable’ we are now cause of #CoronaVirus https://t.co/ld81qhaGVl</li>
##   <li>.@HouseDemocrats will always fight for America’s #students. In<span class='match'> the </span>new #coronavirus relief bill, we've paused payments for federal #StudentLoan borrowers, suspended wage garnishment and negative credit reporting, and secured over $30 billion in emergency #education funding.</li>
##   <li>We wish all of us safe as we combat this novel-CoronaVirus19. #COVID19 #CoronavirusPandemic  #COVID2019 
## We shall defeat it,  God is with us.
## N/B : Follow <span class='match'> the </span>instructions and guidelines given by<span class='match'> the </span>government.</li>
##   <li>Another activity's season lost to<span class='match'> the </span>Covid-19 pandemic. Definitely<span class='match'> the </span>right decision, but still disappointing. #dci2020 #marchon</li>
##   <li>Dr. Arnaud Prevot, School Marketing Specialist, on why<span class='match'> the </span>COVID-19 pandemic and its expected economic and social impacts may lead private schools to seriously consider a Blended Learning Model. https://t.co/HitbcO2Qgi #schoolleadership #covid19 #coronavirus #blendedlearning</li>
##   <li>Snoops understands social distancing. Be like snoop. #COVID19 https://t.co/AKZzsIc5BK</li>
##   <li>The whole world faces one virus, yet Palestinian people face two viruses: corona and "Israel". #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/IpcRVm4srA</li>
##   <li>Showing maps on Covid-19 cases.</li>
##   <li>#BC residents are optimistic about of<span class='match'> the </span>#Federal Government's financial aid package in response to #COVID-19. 79% across<span class='match'> the </span>Province think that this aid will be effective.
## 
## 67% feel Prime Minister Justin #Trudeau is doing a good job handling<span class='match'> the </span>crisis
## 
## https://t.co/IfHj5g10Am https://t.co/3sJ7tsIuYZ</li>
##   <li>How<span class='match'> the </span>#VanLife community is coping with<span class='match'> the </span>coronavirus crisis https://t.co/Bh5eOH7aLd via @Curbed</li>
##   <li>VIDEO: In an exclusive interview, Abta's CEO Mark Tanzer talks to @Lucy_Huxley about negotiations with<span class='match'> the </span>government on refund rules and<span class='match'> the </span>future of<span class='match'> the </span>travel industry. Watch it here:
## https://t.co/7aY8wj5rR6
## 
## #Coronavirus
## @ABTAtravel https://t.co/U4cy6Poouq</li>
##   <li>This #Covid_19 pandemic will not only be a lifetime lesson but a litmus test to those regimes which promise heavenly healthcare services to<span class='match'> the </span>taxpayers while delivering raw material for constructing hell. https://t.co/RQUBWtJ8qq</li>
##   <li>COVID-19 Phone Location Tracking: Yes, It’s Happening Now<U+2014>Here’s What You Should Know via @forbes https://t.co/LlW7R5m4IM</li>
##   <li>Getting a lot of questions from partners and clients in terms of how to track<span class='match'> the </span>impact of<span class='match'> the </span>#COVID19 Stimulus Bill. <U+2066>@JoeKnowsGov<U+2069> to<span class='match'> the </span>rescue with this great summary. #govtech  https://t.co/RM3NIhRYH3</li>
##   <li>Illinois health officials: 488 new cases of COVID-19, bringing total to 3,026 across<span class='match'> the </span>state
## 
## Total COVID-19 related deaths: 34</li>
##   <li>Arts Support Included in Federal COVID-19 Relief Bill https://t.co/LWsZTni8Ny</li>
##   <li>Has anybody checked if mosquitoes can help spread covid-19?
## 
## If it sticks an infected person and flies to stick a none infected person, will<span class='match'> the </span>the person become infected?
## 
## https://t.co/kPfkFLmAXN</li>
##   <li>@RTGACADEMY Super hero Ryan. Delighted to hear that you are doing well in<span class='match'> the </span>USA. Stay safe from that bloody covid 19. Will be looking forward to seeing you in tallaght sometime.</li>
##   <li>These are family friends from #WNY and they facing dangerous consequences if they don't receive<span class='match'> the </span>medicine they need to survive.
## 
## Pls share. Maybe someone out there will have answers for this desperate family: https://t.co/B42klLEqYP
## 
## #WNY #COVID19 #stuckinmalaysia</li>
##   <li>@AshburnDusty @Azdeb1957 @MaryPea10015905 @NotSoSuper_Dave @EmeraldEagle79 @The_Webologist @DynastyFrank @leftontheradio @MichaelRoach @JohnFromCranber @maddow @BarackObama @FoxNews Suggest reviewing what trump has done to degrade America
## 
## - deny #ClimateChange
## 
## - DOUBLING. #deficit
## 
## - removing vital #environmental #regulations
## 
## - Lying about #energy independence
## 
## - attacking #FreePress
## 
## - delay response #coronavirus
## 
## #ThursdayThoughts @FoxNewsOpinion https://t.co/6xFsFgd9Xf</li>
##   <li>The number of #coronavirus related deaths in Italy has risen by 919, taking<span class='match'> the </span>country's total to 9,134.
## #Italy #CoronaUpdate #COVID2019 https://t.co/TOgldXdKV7</li>
##   <li>This is hilarious 
## #COVID2019 https://t.co/ZafyVJ9P8Q</li>
##   <li>US passes China for total COVID-19 cases according to<span class='match'> the </span>Worldometers tracker https://t.co/JtELbmeA9n</li>
##   <li>With #COVID19 outbreak safety and health measures for workers of solid waste treatment is a big concern for all of us. @UNDP in partnership with #EU continues to support municipalities in all Libya with procurement of equipment to support<span class='match'> the </span>solid waste management sector https://t.co/dWXRuq85rS</li>
##   <li>An online fund to help<span class='match'> the </span>@unilincoln's project to help make safety visors and other equipment for hospital staff treating Covid-19 patients has raised more than £12,500 #CapitalReports https://t.co/PGYY4q3YwS</li>
##   <li>As @realDonaldTrump Said : 
## America first 
## #CoronavirusUSA #COVID2019 #Coronavid19 https://t.co/AEHuxYiU5T</li>
##   <li>After testing, doctors have recommended that Richard Burgon MP self-isolate.
## 
## In other news, he’s not showing any signs of #COVID19.</li>
##   <li>@vinayak_jain Especially when they are<span class='match'> the </span>root cause of this evil! 
## 
## #ChineseVirus
## #COVID2019
## #CoronaUpdate</li>
##   <li>America that won't lose to<span class='match'> the </span>covid-19   We support<span class='match'> the </span>United States.</li>
##   <li>COVID-19: What Bashir Ahmad said about President Buhari, Abba Kyari being secretly flown abroad https://t.co/cAv3LR9BuG</li>
##   <li>During a time where many people are being affected by this Covid-19 pandemic, it is great to see these companies stepping up and showing great corporate social responsibility to<span class='match'> the </span>public! <U+2764><U+FE0F></li>
##   <li>3 times<span class='match'> the </span>number of annual flue deaths may not impress epidemiologists, lumped in a month by CovID creates a 25-fold surge in demand for ICU beds. If you work there (or in<span class='match'> the </span>morgue) it doesn’t look optimistic.  But<span class='match'> the </span>is a bigger picture we need to mind as well.   #COVID2019</li>
##   <li>The world may not begin to appear normal again until three things have happened. #pandemic #coronavirus https://t.co/1GI2FsMoX8 via @wired</li>
##   <li>LinkedIn lists 10 most in-demand jobs, companies with most open positions during Covid-19 pandemic https://t.co/6CeooFsUTH</li>
##   <li>COVID-19; Husband died in Kerala on wedding anniversary, wife in Dubai
## #Kochi #Bijimol #Keralitewoman #Dubai #virus #VirusChino #nCoV19 #ChinaVirus #WuhanCoronavius #lockdown #StayHome #Social_Distancing #CoronavirusPandemic #COVID2019 #COVID19 
## https://t.co/nHKpDDsDqH</li>
##   <li>Every news is biased so am I #CORONAVIRUS</li>
##   <li>The world: losing jobs, terrified of COVID-19 &amp; staying home to avoid it  
## 
## Congress: approved $2 trillion in emergency spending to help businesses &amp; families
## 
## @USOCC: pushing ahead with a plan to help banks do less for poor people and poor neighborhoods.
## 
## #TreasureCRA @FDICgov</li>
##   <li>How dare #coronavirus not "discriminate" and infect a Royal! Off with its head!! <U+0001F451> #CORVID19 #PrinceCharles https://t.co/yAzBGdr5I0</li>
##   <li>"Essential: My Careers, Yes. Lockdown, Yes. "Demon City Shinjuku", Maybe". From current desolation to future destruction. https://t.co/oilpNd1rtP #anime #animationlockdown #movies #AnimeArt #COVID2019 @FUNimation @PrimeVideo  @Crunchyroll</li>
##   <li>Help slow<span class='match'> the </span>spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download<span class='match'> the </span>app https://t.co/jGd2XLkLQw</li>
##   <li>@HSELive Check out this interactive online dashboard which tracks<span class='match'> the </span>spread of COVID-19 across Ireland at https://t.co/MnTTsFTgcA. We all have a part to play in flattening<span class='match'> the </span>curve! #COVID19 #COVID19ireland  #SocialDistanacing #FlattenTheCurve https://t.co/CBwbL63HoJ</li>
##   <li>Please help spread<span class='match'> the </span>word to families in Miami-Dade: Women, Infants &amp; Children (WIC) REMAINS OPEN! They provide healthy food, nutrition education, breastfeeding support, &amp; family resources. #COVID19 #coronavirus #MiamiBaby #MiamiMom More info:
## https://t.co/fSOK06quf0 https://t.co/uCyeKgIVbR</li>
##   <li>There are 375 jails in Turkey for 220,000 people but nowadays 300,000 prisoners are kept inside.
## among them:
## 780 babies 
## 2500 kids 
## 1333 patients 
## 457 serious patients, who are very likely to catch COVID-19
## 
## KoronaTahliyesinde E<U+015F>itlik
## 
## @NASM @AmCollSurgeons @NightShiftMD https://t.co/Dj1aQa6hbF</li>
##   <li>@PatriotsSoapbox Does anyone else wonder where all<span class='match'> the </span>homeless population is? I am concerned sincerely about them during COVID 19....I know some don't care but as a mom of an addict (recovery now) I do. Does anyone really know?</li>
##   <li>The Missionary Sisters of<span class='match'> the </span>Sacred Heart of Jesus join @Pontifex's prayer. <U+0001F64F><U+2764><U+FE0F> 
## #PrayTogether #PopeFrancis #COVID19 https://t.co/vTcuKsIpi4</li>
##   <li>Times of crisis brings innovation #fact #coronavirus #COVID19 https://t.co/44JOGIK5KE</li>
##   <li>Since climate change and Covid-19 have similarities in both cause and effect - why not!  https://t.co/6qYbk61yyM</li>
##   <li>NW doctor working against COVID-19 https://t.co/AFkqnM0qYJ</li>
##   <li>#Covid_19 Antonello Soro President of<span class='match'> the </span>Italian DPA on<span class='match'> the </span>processing of personal data: No rush to cross all limits.Our Constitution and GDPR must be our benchmarks. Proportionality is<span class='match'> the </span>key. Once<span class='match'> the </span>emergency is over,no exceptions must stay
## #GarantePrivacy #dataprotection https://t.co/dfaHWzcYCM</li>
##   <li>For everyday during #lockdown21days #covid_19 I'll pretend Brinley and I are somewhere on holiday #day2, you welcome to do<span class='match'> the </span>same <U+2764><U+2764>#staysafe #stayhome #bigbuddah @ Big Buddha Pukhet https://t.co/yHTdAFjbaM</li>
##   <li>@BellaTwins You ladies &amp; all of us are subject to propaganda as well. Although I have no doubt that animals are abused,<span class='match'> the </span>#WuhanMarket conspiracy is also promoted by @coasttocoastam who are holding a national live radio psychic prayer 'experiment' to lessen<span class='match'> the </span>impact of #Coronavirus.</li>
##   <li>Early on today, my close friends father passed away. Suspected #COVID19. He was taken into hospital last night, after complaining of breathing difficulty and having a bit of a fever. He was ok until this morning. May Allah have mercy on him, sabr and eman to<span class='match'> the </span>family.</li>
##   <li>An email my dad sent me about #COVID19 #coronavirus long but worth<span class='match'> the </span>read I promise. https://t.co/tIjtXHtqkT</li>
##   <li>Created this for my #SPAinspires team 2keep building their mindfulness toolkit. Gr8 part was it helped my perspective on what I/we CAN control during this time of uncertainty.  
## 
## Feel free 2share-if you need a mindset reset during COVID-19 
## I am no yogi:)
## https://t.co/QhKArgld5E https://t.co/QNCVOAYUil</li>
##   <li>Another pair of masks requested out of state again. Love that these Hawkeye masks are being used by medical professionals on<span class='match'> the </span>front lines of<span class='match'> the </span>battle against COVID-19. Hate that they don't have<span class='match'> the </span>proper PPE that they have to need these. #ThankYouHealthCareWorkers https://t.co/oNB69iC9Hs</li>
##   <li>@JeffBezos @elonmusk Can you get a license for this and mass produce and distribute this? Would solve<span class='match'> the </span>problem in about 4 weeks. 5 minute tests daily fro 350 million people (and all visitors) find and isolate<span class='match'> the </span>#coronavirus <U+0001F44F> https://t.co/vWJ9jKtFh7</li>
##   <li>If Harsh Vardhan started preparing on Jan 18th, Why werent buses for migrant labour, food and bank transfers done even before<span class='match'> the </span>lockdown?  
## 
## https://t.co/2wb1hnc1PS @ndtv @IndiaToday @bainjal @tanvishukla @SreenivasanJain @PrannoyRoyNDTV @aroonpurie @vineetjaintimes @BDUTT</li>
##   <li>Local shops taking measures to remain open https://t.co/bikt9jCmf6 https://t.co/k8HmpfavOU</li>
##   <li>@2tb_adrian $KayAlamia78 I'm a student going for my bachelor's degree in sociology and provide for my mom full time. I need help to get my meds things are rough with this Covid-19 <U+0001F614></li>
##   <li>@MigunaMiguna So<span class='match'> the </span>government thinks that<span class='match'> the </span>police are immune to COVID-19 and<span class='match'> the </span>police themselves are blinded by temporary power to mishandle<span class='match'> the </span>citizens they are supposed to protect. Don't they see that they are being used? #CurfewKenya</li>
##   <li>@KTVB It's not like we just topped over 201 #coronavirus  cases &amp; 3 deaths in under 2 weeks,<span class='match'> the </span>U.S. just beat China's #COVID19  case # at ~86k, &amp; every hospital needs more ventilators &amp; PPE<U+0001F926>. @GovernorLittle this money is needed elsewhere! The virus is more dangerous than any wolf! https://t.co/b4EiNzQaeX</li>
##   <li>Mardi Gras happening right before<span class='match'> the </span>nationwide panic was one of<span class='match'> the </span>most unfortunate things to happen to Louisiana. It allowed<span class='match'> the </span>virus to spread like wildfire before we even considered it a threat  #COVID19</li>
##   <li>“Research on rare diseases is delayed due to prioritization towards<span class='match'> the </span>pandemic, as well as due to work and social distancing restrictions.” via @irdirc #COVID19 #RareDiseases</li>
##   <li>WATCH LIVE: Federal finance minister and Bank of Canada governor speak about COVID-19 https://t.co/suneQPzB2q #cdnpoli #covid19 #coronavirus</li>
##   <li>After this Covid-19 over <U+0001F612> I’m moving outside <U+0001F62D></li>
##   <li>US never spent enough on emergency stockpile, former managers say.
## 
## https://t.co/q7yPKUW1PT
## 
## #COVID19 #SocialDistanacing #CoronaLockdown #StayHome</li>
##   <li>#trump #COVID<U+30FC>19
## 
## March 16: [Reporter: "On a scale of 1 to 10, how would you rate your response to this crisis?"]
## 
## "I’d rate it a 10. I think we’ve done a great job." 
## 
## https://t.co/eCeNnTCmUM</li>
##   <li>@Comicalsuicide @fogken The symptoms I gave you are general guides for you. I would advise you to ring for advice, I'm limited on what I can advise from Ireland. Very important to remember,do not suffer in silence because of Covid-19. Many patients are reluctant to trouble frontline staff, this is silly</li>
##   <li>Canadians and Americans Mock US and #IdiotInChief Trump as President Weighs Stationing Troops at Border Over #Coronavirus Crisis https://t.co/gOFKpWzTkG</li>
##   <li>@AnnCoulter Do you even bother to look at your own data? You're showing Covid-19 to be 6 times more deadly for people 30-39. https://t.co/e3x13Lhads</li>
##   <li>Until<span class='match'> the </span>next one I’m replaying this classic matchup. This time there’s no Joe Cortez but unfortunately there’s no pre-fight build up. C’mon @HitmanHatton #eWBSS #COVID19 #StayHome @SauerlandBros https://t.co/Dw9ymM990b https://t.co/2DRRWHYiBX</li>
##   <li>As COVID-19 continues to spread across<span class='match'> the </span>world, I encourage you to visit @funds4disaster's list of opportunities to offer support on both a local and international level. Learn more here about critical needs and how to help today: https://t.co/pMxGXUt6zF</li>
##   <li>What #SouthKorea did right in regards of<span class='match'> the </span>#CoronaVirus, perfectly illustrated <U+0001F447>
## Bottom line: #SocialDistanacing FTW, as hard as it might be. https://t.co/0UqG6OB0yT</li>
##   <li>The @MSCSealift's USNS Mercy has arrived on<span class='match'> the </span>west coast to support @US_FEMA and @USNorthernCmd task force. #Togetherwedeliver #COVID19 #Covid19usa https://t.co/2GwMnWR4Qf</li>
##   <li><U+2066>@MingGao26<U+2069>  Virginia Pastor Who Said COVID-19 Was Anti-Trump “Mass Hysteria” Dies of Virus | Bo Gardiner | Friendly Atheist | Patheos https://t.co/kwPM2oHyjq</li>
##   <li>How's that #coronavirus doing, @kathygriffin? Liar. https://t.co/tFB0vE6wby</li>
##   <li>Today Columbus City Council President Shannon Hardin had a conversation w/ medical official(s) and in that conversation he urged young adults to abide by<span class='match'> the </span>#StayAtHomeOhio order from Governor Mike DeWine. Over 70% of Columbus’ cases of #COVID19 are those age 18-44!</li>
##   <li>Dr. Saphier breaks down 'very encouraging' COVID-19 numbers: 'We are slowing'
## 
## https://t.co/KLQkgb9Mna</li>
##   <li>@Rubenbaeza8 @GHS @nytimes H1N1 was less infectious and less dangerous than COVID-19. H1N1 ended up killing 50 million people</li>
##   <li>#Kentucky is REALLY loving and proud of<span class='match'> the </span>leadership our new Governor Has displayed during<span class='match'> the </span>#Covid19 crisis. #KentuckyStrong #KentuckyTogether https://t.co/1dK6gcaPtb</li>
##   <li>@cmckenney @ShawnMenard1 So disappointed. I was nearly run over on a residential St on my way to pick up prescriptions for my family today. People on<span class='match'> the </span>sidewalk, so I took<span class='match'> the </span>road. A car came speeding around<span class='match'> the </span>corner so fast I hardly could get out of way. We need more room to walk safely! #COVID19</li>
##   <li>So now that we’re<span class='match'> the </span>country with<span class='match'> the </span>most recorded cases of COVID-19, I think it’s time to start calling it<span class='match'> the </span>#MAGAvirus</li>
##   <li>Trump says nobody could’ve saw this coming; well here’s<span class='match'> the </span>Inside Story of How H-E-B Planned for<span class='match'> the </span>Pandemic:   Translation: we got a dumb f#ck for president. #Coronavirus #Maddow https://t.co/ZYLsyOKjVX</li>
##   <li>@WHO @MBuhari @ProfOsinbajo @NTANewsNow @channelstv @HerbertOWigwe @TonyOElumelu @jimoviafoundatn @alakijaofficial @TheEconomist @Forbes
## @DangoteGroup
## #Coronavirus 
## #CONVID19
## #CoronaVirusInNigeria: Abdulsamad Rabiu Redeems <U+20A6>1 Billion Pledge To CBN -
## https://t.co/yw25wLATkN https://t.co/Sx6P7VDY6z</li>
##   <li>@loeschtwins @PicPedant Good hygiene and caution are<span class='match'> the </span>best ways to slow<span class='match'> the </span>spread of COVID-19.</li>
##   <li>As we work to combat #COVID<U+30FC>19 by staying at home,  we still need to fight hunger.  What if you could learn how to grow with no soil? Join me on Saturday via IG @Samsonprolific #CovidNGR #ZeroHunger #foodsecurity #FarmLab2020 #ABetterNigeria #StayHomeSaveLives #Agribusiness https://t.co/JEyTmRol2L</li>
##   <li>If you have student loans, you can call and get a forbearance due to covid-19. No penalties. But you have to call/go online and request it.</li>
##   <li>To Stop<span class='match'> the </span>Spread of COVID-19, a Temporary Halt on Amazon Deliveries Is Needed, Crypto Coins News
## https://digital... https://t.co/F9yo2Tfo6P</li>
##   <li>@AdamParkhomenko He would never do that. he said hes<span class='match'> the </span>most transparent president ever! He would never lie to us, would he??? #COVID2019 #CoronaVillains #TrumpLiesPeopleDie</li>
##   <li>Yesterday during an aimless Twitter feed read, I came across a website that showed a map of states colored according to strength of COVID-19 response measures, with a drill-down to show "the curves" for status quo vs. clamping down even more, 1/</li>
##   <li>Local businesses in #Bedford can apply for #businesssupport #grant via @BedfordTweets website. Check whether you’re eligible through U.K. Gov qualifying criteria. More info shared in attached screenshot. @WeAreBCA @quarryatstlukes @ThePlaceBedford @uniofbeds @SEMLEP #COVID2019 https://t.co/NlVxbPlPML</li>
##   <li>IDPH announces 56 new #COVID19 cases today. 235 total statewide. @KCCINews</li>
##   <li>@OwensboroHealth Saw your news article about fabric masks. Just created a pocket mask pattern available free on my website. Let's all get out our sewing machines!
## 
## https://t.co/mQX7kyqmZr
## 
## #facemasks #coronavirus #Covid19usa https://t.co/oo4yz3Ltds</li>
##   <li>Impact of COVID-19 on Municipal Finance: Restructurings Inevitable (Part 1): “Only when<span class='match'> the </span>tide goes out do you discover who’s been swimming naked” <U+2013> Warren Buffet The tide has gone out on<span class='match'> the </span>municipal finance market. While much of… https://t.co/rIMheZDhb2 RI Bankruptcy lawyer</li>
##   <li>within   a fortnight and reinforce our fight against COVID -19. We are not wanting face<span class='match'> the </span>scenarios like USA, China, and Italy. But every stake holders need to follow lock down and all precautionary measures advised by WHO,,, 
## 
## We shall win, Corona Must defeat,,,,, https://t.co/pzdO24BbBb</li>
##   <li>Attn fellow Michiganders:
## 
## #COVID2019
## #25thAmendmentNow
## #StayHome
## https://t.co/SPTqyRiOQg</li>
##   <li>I officially know two ppl living with #COVID19 
## 
## She and her boyfriend say that there's really nothing hospitial can do for you if you get it.
## 
## One thing she mentioned was her loss of smell and taste so thats consistent.</li>
##   <li>A #TwitchStreamer Is Exposing /#Coronavirus Scams Live.
## https://t.co/u4UlGP5XMS #kitboga</li>
##   <li>That emergency alert was really ahead of<span class='match'> the </span>curve on this whole COVID-19 situation <U+0001F644> Sent so urgently they forgot to add<span class='match'> the </span>French part together in one alert</li>
##   <li>Safe places to visit during COVID 19
## .
## .
## .
## #covid #covid19india #covidsafety #safeplaces #homesafe #kitchen #window #studyroom #livingroom #kidsroom #safeindia #covidvaccine #safefuture #covidresponsibility #humanity https://t.co/pkZIHx4aIm</li>
##   <li>@HillaryClinton @realDonaldTrump You &amp; your spouse are<span class='match'> the </span>CANCER-92+ that has riddled @TheDemocrats. Your signature brand is<span class='match'> the </span>plague of #Neoliberalism, far deadlier than COVID-19. For<span class='match'> the </span>sake of humanity &amp; all of planet Earth, *please* go away &amp; be quiet<U+2014>quit spreading death (&amp; enabling rapists). <U+0001F30D><U+0001F30E><U+0001F30F><U+0001F6AB><U+0001F480></li>
##   <li>https://t.co/Zl4N3DeRY8
## 
## #covid19 #@home
## 
## A little bit of Physics in these tough times!!! https://t.co/WgPDG2ZLql</li>
##   <li>@Goodmoisturizer @A_S12 @sbjsbd That however sort of defeats COVID-19</li>
##   <li>@JimSantilli @richviss @NikkiRedeemed @GovWhitmer It worked for what disease? It didn’t cure COVID 19! So stop lying and killing people with damn lies and dirty politics! If it really cured your covid19, it’s still called anecdotal evidence! NOT scientific proof! Do you know<span class='match'> the </span>diff between<span class='match'> the </span>two?</li>
##   <li>Seeing tooooo many house parties in my feed... <U+0001F974> #COVID19 #CoronaLockdown #coronavirus #CoronavirusOutbreak #StayAtHomeAndStaySafe https://t.co/axV2gftxzm</li>
##   <li>Langley Sephora employee tests positive for COVID-19 https://t.co/IwZtmSxauz</li>
##   <li>What if<span class='match'> the </span>federal government is purposely not  taking<span class='match'> the </span>proper action against COVD-19 to use<span class='match'> the </span>emergence of<span class='match'> the </span>virus as justification to build The Wall...<U+0001F914>
## 
## #CoronaLockdown #LockdownWithoutPlan #COVID19 #Coronavirus #USCOVID19</li>
##   <li>Enter to #win Rubik's Race board game - perfect to keep you and your family busy during #quarantine for #covid19! https://t.co/2FjUg0HSIT</li>
##   <li>While<span class='match'> the </span>full impact of COVID-19 is not yet known, we do know it has significantly disrupted<span class='match'> the </span>lives of our students. Make an impact today. Gifts to<span class='match'> the </span>Student Relief Fund help meet emergent critical needs. #StocktonUStrong  https://t.co/HyuK9JdzG7</li>
##   <li>Is there a single politician speaking to<span class='match'> the </span>world and saying that we will get through this? #COVID19</li>
##   <li>Eventually , deploying army would be<span class='match'> the </span>only choice when<span class='match'> the </span>non-compliance would rise and civil unrest due to rapid spread of #Epidemic of #CoronaVirus leading to large number of deaths due to #COVID19 would occur  ( April )
## 
## All data points to hotbed #Mumbai ! https://t.co/vcCSDIWFPD</li>
##   <li>I've got a two week holiday coming up and Boris has said he will review<span class='match'> the </span>lockdown on Easter Monday I bet he extended it for another week and opens<span class='match'> the </span>pubs<span class='match'> the </span>day I go back #coronavirus</li>
##   <li>BC, we can #FlattenTheCurve . Let's show<span class='match'> the </span>world that by working together, we can get through this! #PhysicalDistancing #COVID19 https://t.co/qehsOYrXj0</li>
##   <li>That’s all fine and good, but has anyone asked how Jake<span class='match'> the </span>Snake has been through all this #COVID2019 #CoronavirusOubreak #Quarantine</li>
##   <li>Watch <U+0001F4FA>: President Trump and his well-established CoronaVirus Task Force brief<span class='match'> the </span>press and provide<span class='match'> the </span>public updates! <U+0001F1FA><U+0001F1F8> 
## 
## #COVID19 #PresidentTrump #StayHomeSaveLives 
## 
## https://t.co/5ANYGt6QfA</li>
##   <li>There are currently more Covid-19 cases concentrated in<span class='match'> the </span>Charlotte area than anywhere else in<span class='match'> the </span>state of NC.
## 
## #ncpol #NCpolitics #northcarolina https://t.co/8BfJdDZdBD</li>
##   <li>Also, I think it has been a pleasure to have @LeoVaradkar as a leader during this crisis. 100% truthfulness at all times, transparency in decision making, decisive when needed, and a completely evidence-based approach! Putting<span class='match'> the </span>UK and USA to shame! #COVID19 #COVID19ireland</li>
##   <li>@nickreeves9876 @gwcollinge @SkyNews If it was seasonal(reducing in<span class='match'> the </span>summer ) how do you explain covid-19 infections rapidly spreading in<span class='match'> the </span>Southern Hemisphere during<span class='match'> the </span>height of summer.</li>
##   <li>38 new cases of COVID-19 have been reported in Lake County. My dad works in<span class='match'> the </span>hospital and he has been working with patients who have it... please, STAY THE FUCK HOME AND HAVE PROPER HYGIENE!
## 
## Gracias <U+0001F5A4></li>
##   <li>#beauty in<span class='match'> the </span>age of #covid_19 #confinement #day15 https://t.co/RbNLOcBRgM</li>
##   <li>I feel like 2020 is what we all expected from 2000. #COVID19 #Y2K</li>
##   <li>Congress Passes CARES Act (Phase Three) in response to Covid-19 - https://t.co/1kaSk8xgIt #coronavirus #covid-19</li>
##   <li>Investigational COVID-19 Convalescent Plasma - Emergency INDs https://t.co/OBuITC8Jix</li>
##   <li>Rajasthan COVID-19 tally reaches 52 with two new cases: https://t.co/xkc5ZHNBDw</li>
##   <li>@worthlessmind2 Testing is free in government hospitals.
## 
## https://t.co/XN2AoTrz3N</li>
##   <li>I bet others can identify with this statement. #COVID19 #brandexperience https://t.co/WK9zWpXw0Z</li>
##   <li>All because you are selfish. Shut down<span class='match'> the </span>plants NOW. #CoronavirusUSA #COVID2019 #COVID #CoronavirusPandemic https://t.co/uBGoQH5Qjc</li>
##   <li>COVID-19 hits fast-forward. Nurses without PPE, unemployed workers without health insurance, immense money injected into monopolized industries while you're given a paltry $1200 or less to ward off social unrest. 
## 
## This is a bourgeois democracy in crisis acting accordingly.</li>
##   <li>Ways to keep yourself and others safe during COVID-19 pandemic - https://t.co/gT11FKBBjB https://t.co/jKCrJZ23Ob #firesafety https://t.co/UcmjSU9NFk</li>
##   <li>We've had some extra workload at work due to things that's been going on regarding COVID-19 and helping clients/business in regards to that. I need to catch up on<span class='match'> the </span>soaps, which I will do at some point, lol. I did catch some of<span class='match'> the </span>scenes today with Nick/Billy/Lily. #YR.</li>
##   <li>My COVID-19 logs</li>
##   <li>Patient 2 (full term)
## 
## maternal COVID-19 pneumonia.
## 
## Day 1? lethargy, vomiting, and fever. Tests showed leukocytosis, lymphocytopenia, and an elevated. A chest radiographic image showed pneumonia. NP and anal swabs were positive for SARS-CoV-2 on days 2 and 4.  Negative on day 6.</li>
##   <li>How Soon Will COVID-19 Peak?  (And How To Tell) https://t.co/mwcWPaXb3P via @YouTube - with a lot of caveats. Depends on source data accuracy. Distorted by testing.</li>
##   <li>WesternU students have mobilized efforts to make masks from fabric and collect or buy N95 masks in<span class='match'> the </span>wake of a shortage of personal protective equipment (PPE) due to<span class='match'> the </span>COVID-19 pandemic.
## https://t.co/gvIEKxRgSR 
## #WesternUStrong #abc7eyewitness #WesternUWay #Coronavirus https://t.co/p2HH23dSE8</li>
##   <li>@pepperdem5 @BBSimons When it gets real and you get affected by COVID-19 there you will know no man is immune to COVID-19.  if Sarcasm is Implicit<span class='match'> the </span>opposite is Explicit.</li>
##   <li>Tonight <U+2764><U+FE0F> #ThankYouNHS #COVID<U+30FC>19 #StayHomeSaveLives https://t.co/N8dEUODHS7</li>
##   <li>Total lockdown for 21 days in Zimbabwe #COVID2019 z</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/3shO2QqAbf via @YouTube</li>
##   <li>Two Dane County Jail inmates test positive for COVID-19, six still in isolation with fevers | Crime | https://t.co/som8Vo31hx https://t.co/mHN75bUZSs</li>
##   <li>@essenviews Why is no one talking about what<span class='match'> the </span>Republicans really wanted: to suspend habeas corpus. This would have given<span class='match'> the </span>government<span class='match'> the </span>right to detain people indefinitely, and most likely those people would be<span class='match'> the </span>ones that have tested positive for Covid-19. This way,/1</li>
##   <li>@ericgarcetti Tw2. ... than in clear sky regions. Those pre-trash peoples lungs., making it easy for Covid 19. Add fags and alcohol. All medics stone deaf. In Wuhan it is (unusually) SO2 from their Al and steel plants burning hi-S petcoke anodes, courtesy Trump cutting off their</li>
##   <li>We're trying to do our part @fiftyyears.
## 
## We recently offered all 12 portfolio companies working on #COVID19 solutions uncapped SAFE notes to accelerate their efforts.
## 
## We hope other VCs will join us in this.
## 
## https://t.co/isre50lVgJ
## 
## 7/n</li>
##   <li>Social distancing by Kenya police!
## How gasing and beating helps fight covid19.  How u expect tens of thousands ppl get home before curfew.  Stupudity of highest degree 
## CURE IS WORST THAN DISEASE 
## #COVID2019
## #Kenya
## https://t.co/aPcTvnCoeA</li>
##   <li>So edey mean say if you get underlying health condition Covid-19 is your death sentence ?</li>
##   <li>@Lilpoo404 @OCDrises @Covid_19_UK @Inevitable_ET There are Patriots and there are traitors. No name is #1 on<span class='match'> the </span>latter.</li>
##   <li>@SusannaLHarris No need to start a #ScienceFight it's already been started #COVID2019 redefining world's superpower.</li>
##   <li>@JohnDelaney @JoeBiden Gaslighting Americans about Governors not being partisan is insulting at this point. 
## 
## How many Governors have used executive orders to stop chloroquine from being used with azithromycin for COVID 19 patients? 
## 
## The answer should be zero, sadly it is NOT! 
## 
## Riddle me that?</li>
##   <li>Ok I am late to<span class='match'> the </span>party, but what’s happening in Russia?
## 
## #COVID19</li>
##   <li>Jamaicans in New York afraid of COVID-19 <U+2013> “It’s scary out there”
## 
## https://t.co/X4HEX5JHGx</li>
##   <li>from<span class='match'> the </span>Mayo Clinic website:
## 
## "Currently, no antiviral medication is recommended to treat COVID-19. Treatment is directed at relieving symptoms and may include:
##  
## Pain relievers (ibuprofen or acetaminophen)
## Cough syrup or medication
## Rest
## Fluid intake"
## 
## #coronavirus</li>
##   <li>I wonder how long until there's a #COVID19 DLC for #PapersPlease...
## 
## @dukope</li>
##   <li>BREAKING: Global #coronavirus cases have surpassed 500,000.
## A Johns Hopkins tally reports:
## <U+25AA><U+FE0F> At least 75,233 cases in<span class='match'> the </span>U.S.
## <U+25AA><U+FE0F> At least 22,993 total deaths globally
## <U+25AA><U+FE0F> At least 120,983 recoveries globally 
## Via <U+0001F449>  @ajplus 
## #CoronaVirusUpdates #CoronavirusPandemic</li>
##   <li>@chennaicorp #GCCMythBusters  Cuban Interferon Alfa-2B has proven effective for viruses with characteristics similar to those of COVID-19. https://t.co/uGnyIu7z5v is this true ? #govt</li>
##   <li>Dear #FasadChaudhry, 
## Every University &amp; educational  institutions(Madarsas) in Pakistan use 2 operate by Hafiz Sayeed, Masood Azhar, Syed Salahuddin and other terrorists. They will provide you only Terrorism, don't expect research. #CoronaUpdate
## #coronavirusinpakistan #COVID19 https://t.co/UHEWMQwiT7</li>
##   <li>@itsjojosiwa this is how u dress when u dont have to wear ur uniform #homeschool #COVID2019 https://t.co/7tffWuzdef</li>
##   <li>GOOGLE announces #Coronavirus aid: "$800+ million to support small businesses and crisis response" https://t.co/8Z7LWbwTsn</li>
##   <li>@Derp_Decider @Storm_22xoxo @thehill No, COVID-19 is<span class='match'> the </span>important part.
## 
## Had this been written about any other disease it wouldn’t be getting as much coverage as it is.
## 
## "Though early tests indicated a positive result for COVID-19,<span class='match'> the </span>case is complex and there may be an alternate explanation for this fatality,"</li>
##   <li>Why is ChineseVirus19 trending???? This racism shouldn’t be tolerated do better people #COVID2019</li>
##   <li>Applause to all working currently in<span class='match'> the </span>Health Services inclusing HSCP's.
## #medicalscientists #COVID19 #Covid_19ireland https://t.co/eZ1u9Ls8Z9</li>
##   <li>@WeleSeg @AndiMakinana @tumie09 Our journalists can be rubbish sometimes. They seem to have normalized homelessness to legitimize Covid-19 pandemic on homelessness.
## 
## The problem here is homelessness, which started before<span class='match'> the </span>pandemic. It would still<span class='match'> the </span>case post<span class='match'> the </span>pandemic. That's is<span class='match'> the </span>real "sad story"</li>
##   <li>#COVID19 pandemic is truly global. Tak, a remote border province in Thailand’s northwest, now records 2 cases: No. 1 a Pakistani man, No. 2 a Thai woman who just returned from NY, flying into Phuket -&gt; Chiang Mai, then picked up by brother in car to Tak. https://t.co/KNuKqkFq6W</li>
##   <li>Read why America’s broken health care system is<span class='match'> the </span>biggest obstacle to containing<span class='match'> the </span>coronavirus here &gt; https://t.co/ftGNfQOZCs #COVID19 https://t.co/pRT1bHSWHu</li>
##   <li>OH&amp;S Content Editor Amanda Smiley gives a COVID-19 update  and sits down with Greg Olson, a Sr. Product Specialist for Industrial Hygiene and Respiratory Protection at TSI, to discuss proper fit testing amid<span class='match'> the </span>pandemic.
## 
## Sponsored by TSIIncorporated
##  
## … https://t.co/M7KG7V1dX2</li>
##   <li>Where<span class='match'> the </span>fuck is Ron DeSantis? #PissedOffRepublican #Coronavirus #shutdownflorida</li>
##   <li>#CNN #USA now has more COVID-19 cases than any other country in<span class='match'> the </span>World.... Mission Accomplished, Nice Job Mr. President</li>
##   <li>Now on https://t.co/0J2UdYHyh5
## 
## Vin Scully Gives Pump-Up Speech Amid COVID-19 War, We'll Unleash The Tiger!</li>
##   <li>Mi laptop dio positivo al COVID-19 y un cancelled subscription de Word. (: https://t.co/USsWuL29a0</li>
##   <li>Nineties Country Star Joe Diffie Tests Positive for Coronavirus https://t.co/cJhEtRGhRE via @RollingStone</li>
##   <li>If anything, Canada is<span class='match'> the </span>one that needs to have military in<span class='match'> the </span>border to stop<span class='match'> the </span>already #1 affected #COVID19 country in<span class='match'> the </span>world to try to cross our way #USA #ohcanada #stayaway</li>
##   <li>I was supposed to be spending my 29th birthday with my daughter, instead, we are stuck on different islands due to COVID-19. What was meant to be just a few days apart has become 10 days and will continue to increase… https://t.co/2dkPJ9k9xB</li>
##   <li>My Contribution to PRIME MINISTER'S NATIONAL RELIEF FUND ACCOUNT.@PMO we'll stand with you and your efforts against #Covid-19
## 
## My request is Please Test More,so that more positives could be found out.
## 
## I request to all my friends contribute if you can !
## Thankyou @airtelbank https://t.co/UU0zE5dJ8V</li>
##   <li>Happy Birthday, Lauren, and I thank God for people like you<U+2014> nurses who are on<span class='match'> the </span>front line fighting this COVID 19 to save lives. I pray a hedge of protection around you from God<U+271D><U+FE0F><U+0001F64F><U+0001F3FB><U+2757><U+FE0F> https://t.co/u7fgBot5Tv</li>
##   <li>Parker team members are stepping up to deliver products that are helping<span class='match'> the </span>front-line effort to combat<span class='match'> the </span>spread of COVID-19: https://t.co/SKg17kKpsn https://t.co/XdstPR1myz</li>
##   <li>@ToddJCefaratti @gabrielsherman @teigland_cindy It's not like this guy will be voting for Tump in November.<U+0001F60F> (And really. You should look at Louisiana. That's<span class='match'> the </span>next hotspot.)
## 
## https://t.co/TKD1rHVXuG</li>
##   <li>@ReneeMarieHern2 @wtpact5js @GovBillLee And Sen. Lamar Alexander’s daughter tested positive for Covid-19!</li>
##   <li>@TedMielczarek @johnregehr @TedMielczarek @johnregehr To be honest,<span class='match'> the </span>frequency of<span class='match'> the </span>All Hands has always been draining for me. Due to COVID-19, 2020 will end up only having one and I would love it if we could keep to this schedule.</li>
##   <li>Further patrols completed in<span class='match'> the </span>south, strong words of advice given  to two groups, please listen to government advice #COVID19 #StayHomeSaveLives #FlattenTheCurve #bishopstortford https://t.co/W06W1ixUvf</li>
##   <li>Tracking<span class='match'> the </span>COVID-19 Pandemic’s Immediate Effects on Women and Minorities in<span class='match'> the </span>U.S. Workforce https://t.co/XJWXlcrkqT</li>
##   <li>ICO has a new information hub to help people and organisations with data protection issues during<span class='match'> the </span>COVID-19 outbreak. https://t.co/Imrx2qns6c</li>
##   <li>Truly dreadful. 
## 
## Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/JpE26PkYyF via @@gizmodo</li>
##   <li>This video has critical info for how to sanitize your groceries from #coronavirus #covid19 please watch and SHARE EVERYWHERE and DO what he says <U+0001F64F><U+2764> #StaySafe https://t.co/4dZqoXpMEC</li>
##   <li>@W_S_O_S_D Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>Fall Cabal - COVID-19 series NEW <U+0001F447>
## https://t.co/DxWtsIqtFF</li>
##   <li>Day 1 And already we dealing with this<U+0001F614>.Covid-19 <U+23E9><U+23E9>The Days may it will be better . https://t.co/joyz2m611D</li>
##   <li>Keep<span class='match'> the </span>Covid-19 Memes flowing https://t.co/TkKigYCFT7</li>
##   <li>The God that you serve is able to protect you and you will outlive this season (coronavirus) 
## 
## #alcc #comeandsee #COVID19</li>
##   <li>ITALY OIL REFINER API HALTS PLANT AS COVID-19 HITS DEMAND
## 
## ITALY OIL REFINER API HALTS ANCONA OIL REFINERY ON WEAK MARKET</li>
##   <li>Day 11 of MCO is here. Foreigners are defying<span class='match'> the </span>order here and are being locked up and may face jail time. So unfortunate. But there will always be consequences in all that we do. Sorry. #MCO #Malaysia  #Covid19</li>
##   <li>JUST IN: A sixth Santa Clara County Sheriff's Office deputy has tested positive for #COVID19. Story to come.</li>
##   <li>Jair Bolsonaro claims Brazilians 'never catch anything' as Covid-19 cases rise https://t.co/AVuel1HzGp</li>
##   <li>How about; “As testing ramps up to reveal 604 cases in #Virginia and thousands live with fear and anxiety, some can only see<span class='match'> the </span>politics in #coronavirus.” This is serious! DON’T #BeBill https://t.co/hcVqgV9elW</li>
##   <li>@lerato_morapedi Please note that all deliveries have been put on hold as per<span class='match'> the </span>COVID 19 #lockdown instructions. Yes, purchases are delivered through Takealot <U+0001F609>.</li>
##   <li>SEO After #COVID-19: 8 Opportunities to Start Working on Now https://t.co/QH3lzx2gBd #SEO</li>
##   <li>WATCH - The City of Abilene announced its 1st positive COVID-19 case this morning. 
## 
## Here is my live recap following<span class='match'> the </span>press conference: https://t.co/jZPs4jvIsx</li>
##   <li>ICYMI Feb: German Minister of Health and Minister of<span class='match'> the </span>Interior: 
## 
## "Health care of<span class='match'> the </span>population has priority over financial interests of<span class='match'> the </span>economy amid<span class='match'> the </span>outbreak of #COVID19. Labs throughout Germany are now able to test<span class='match'> the </span>coronavirus, free of charge for all citizens."</li>
##   <li>They should have compared this number with<span class='match'> the </span>prevalence of cancer since incidence accounts for new cases. The prevalence of cancer for most countries is around 2% of<span class='match'> the </span>population so COVID-19 does not seem elevated in patients with cancer.</li>
##   <li>Defense #creditunions are uniquely prepared to respond to widespread disruptions in day to day operations &amp; member income streams enabling them to serve their #military installations &amp; their members worldwide during<span class='match'> the </span>#COVID19 health and economic crisis.
## https://t.co/BvAhxMiRHF https://t.co/YbGLsum7NU</li>
##   <li>A group of our amazing ER staff is pictured here preparing our indoor surge area for potential COVID-19 patients. https://t.co/mL7wwRkuBY</li>
##   <li>When your quarantined and you have to suck yourself off #COVID<U+30FC>19 https://t.co/9ztvdvPDFg</li>
##   <li>Not sure if I’m in week 2 or week 20 of self isolation... #COVID19</li>
##   <li>Covid-19 - Communication is key! The Latest News from Jones and Clark - https://t.co/Ji0M32jqYO
## 
## Contact us with your questions or requirements!!</li>
##   <li>Why we need #Medicare4All #MedicareForAll #Bernie2020
## The U.S. may end up with<span class='match'> the </span>worst COVID-19 outbreak in<span class='match'> the </span>industrialized world. @edyong209 explains how it will play out: https://t.co/CkcoAuein5</li>
##   <li>#IndianRailways In Action :: 
## Isolation coaches prepared by<span class='match'> the </span>Indian Railways to fight<span class='match'> the </span>#Coronavirus Pandemic.
## #COVID2019india https://t.co/RLaevKcw73</li>
##   <li>i need to consult<span class='match'> the </span>psychiatrist I had to meet but I can't :) fuuuuck you covid-19 and all<span class='match'> the </span>people who still go out.</li>
##   <li>Worlds colliding in response to #COVID19 and it's amazing to see.
## 
## A super successful fintech that powers 500k SMEs across Europe has started providing subsidised loans to customers directly from their balance sheet.
## 
## Reaching out to @EBRD to see if there's a way to scale it...</li>
##   <li>A local restaurant is going above and beyond to make sure its employees are taken care of during<span class='match'> the </span>COVID-19 pandemic by providing meals for them and their families: https://t.co/ftj3YIhuLB https://t.co/VFpJWp6b5n</li>
##   <li>@MAS, looking for employee ideas on how to save $? Sign up for our FREE crowdsourcing app, Slash here: https://t.co/W5hrmxjdM8
## 
## We are providing this to all companies affected by #COVID19 in order to help you navigate these unprecedented times. We'll get through this together!</li>
##   <li>We thank all nurses for standing up against COVID-19 during this time. Sign our card to thank your local nurse:  https://t.co/Any7SIYY9f</li>
##   <li>#coronavirus can eat it.
## 
## SICKNESS MUST BE PURGED.
## 
## ......tag someone who will know this. https://t.co/IGiB2C0qCD</li>
##   <li>COVID-19 https://t.co/XpCLi20zVF</li>
##   <li>“We really appreciate<span class='match'> the </span>presence of<span class='match'> the </span>(@MINationalGuard) members because it’s showing<span class='match'> the </span>importance and reinforcing<span class='match'> the </span>screening processes being a critical tool to safeguarding our members. https://t.co/avV6omaKZq</li>
##   <li>I hope each new day brings<span class='match'> the </span>world closer to a full and<U+00A0>speedy recovery from #COVID19 <U+0001F64F></li>
##   <li>Curious how far<span class='match'> the </span>spring break Zoomers might have spread #COVID19 ? Check out this #dataviz of cell phone pings from just a single Ft Lauderdale beach during spring break. https://t.co/HPni9dYZvj</li>
##   <li>My mom got to see Pap through<span class='match'> the </span>window. He was so happy &amp; asked about his knuckle heads. That’s what he calls<span class='match'> the </span>bitties. He forgets about covid19 so he has to be reminded daily that<span class='match'> the </span>entire world is sick<U+2639><U+FE0F> Praying that<span class='match'> the </span>world gets better<U+0001F64F><U+0001F3FB>#COVID2019 #TogetherApart https://t.co/MUQZ5OXIpU</li>
##   <li>Covid-19: WHO says Africa should ‘prepare for<span class='match'> the </span>worst’ #Ethiopia https://t.co/TRTQuuE3vz via @ecadf</li>
##   <li><U+0001F58B> Support Patricia by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r
## 
## <U+0001F4E8> Last delivered to @GavinNewsom, Assemblymember Cooley and Senator Nielsen  #CApolitics #CApol #COVID19 https://t.co/MLwPv4XEo6</li>
##   <li>Is #stayathome boredom setting in? Here are some ideas on fun things to do! You can also find a list of recommendations at https://t.co/iRVQY7k2Os
##  
## #InlandRegionalCenter #coronavirus #staysafe https://t.co/OPYXppvjwc</li>
##   <li>@BetteMidler Donald Trump will fill Rikers Island with rows of mass graves before he lifts a finger to help governor Cuomo, a man who failed to bend<span class='match'> the </span>knee ... #Coronavirus https://t.co/HaAGSunJ44</li>
##   <li>BLH Medical Director Dr. Ignatius Cordova assured that all safety measures are in place and they are in control of<span class='match'> the </span>situation.
## 
## The management also assured that they will continue to provide quality healthcare services amid its battle with COVID-19.</li>
##   <li>New post: DRDO develops N99 masks, ventilators and hand sanitizers to help fight against COVID-19 https://t.co/wpdrfbYi8A</li>
##   <li>The BC Ministry of Health strongly urges anyone who has symptoms - including a fever, cough, sneezing, sore throat, or difficulty breathing - to self-isolate for 14 days. Visit<span class='match'> the </span>BC Centre for Disease Control for more #COVID19 info: https://t.co/QVdaYRjsZf https://t.co/uqednseo0O</li>
##   <li>AMERICA was infected with VIRUS which is #Trump. Democrats are currently conducting job interviews to HIRE A TECHNICIAN to expel this virus. The result of employment will be in NOVEMBER. STAY TUNED !
## #coronavirus
## #UnEndorseBiden
## #TrumpLiesAmericansDie
## #CoronaLockdown https://t.co/M4P0GMtSlz</li>
##   <li>LIVE | Farm activities exempted from #lockdown rules to ensure food security, says Agriculture Minister Narendra Singh Tomar.
## Follow for updates:
## https://t.co/YEy4fGBkI1</li>
##   <li>Mexico: Mexicans Need Accurate COVID-19 Information | Human Rights Watch https://t.co/zoGeNjSjho</li>
##   <li>Leadership &amp; The Era of COVID-19 --FREE
## It’s a new day in leadership &amp; macro social work. Join NASW-NJ|DE &amp; Network for Social Work Mgmt on Friday to discuss<span class='match'> the </span>challenges we face in leading programs, managing teams &amp; course-adjusting during COVID-19.  https://t.co/J0WQqI6rbQ https://t.co/L81NakX3hE</li>
##   <li>We’re incredibly proud of our team who continue to support patients, worldwide, under these exceptional circumstances #MakingaDifferenceTogether #Covid19 https://t.co/VZ7UcKcGo1</li>
##   <li>How is everyone coping with this new world?
## #COVID2019 #writing #WritingCommnunity</li>
##   <li>Conrad Black on COVID-19: The world succumbed to a pandemic of hysteria, more than a virus | National Post https://t.co/Jmp4sF9vdy</li>
##   <li>I need tech tools to transition to remote learning during #coronavirus 
## @DonorsChoose please share this project! https://t.co/Nvpdlz2ebD</li>
##   <li>Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among<span class='match'> the </span>first in Virginia to die from virus https://t.co/zvvCE9pUmU</li>
##   <li>Don’t shoot<span class='match'> the </span>messenger. But<span class='match'> the </span>majority of deaths from<span class='match'> the </span>#COVID19 in<span class='match'> the </span>US are people with #Diabetes or Pre Diabetes. #WakeUpAmerica. The majority of you are FAT!
## It’s time to lose that weight and start moving!</li>
##   <li>That wis good clapping for<span class='match'> the </span>@P_H_S_Official YASSSSSSS #heroes #nhs #COVID2019  <U+2764><U+FE0F><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC><U+0001F44F><U+0001F3FC></li>
##   <li>Updates on<span class='match'> the </span>#COVID19 situation in Thailand  https://t.co/NO6fW6OLDT</li>
##   <li>Podcast: Supercomputing<span class='match'> the </span>Coronavirus on Frontera
## 
## https://t.co/JhlOHY8OZS #HPC #TACC #coronavirus #UCSD https://t.co/HfQ01ZMdae</li>
##   <li>Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/VU0alTPtb5</li>
##   <li>@mitchellvii Were H1N1 numbers ever like these, in terms of rapid global onset?  Did H1N1 ever threaten to seriously overwhelm<span class='match'> the </span>US healthcare capacity with a surge like covid 19?  There seem to be significant differences driving a different response.  Will u even consider this possibility?</li>
##   <li>After Kathy Griffin was admitted to<span class='match'> the </span>hospital and placed in a coronavirus isolation ward <U+2014> where she criticized President Donald Trump and claimed she couldn't secure a test for COVID-19 -
## 
## Kathy has returned home to recover from an abdominal infection
## https://t.co/TGrEkbJOon</li>
##   <li>"Congress’ stimulus package expands on and supersedes earlier relief programs that you might have heard of, but which are now out of date. Here’s how<span class='match'> the </span>new stimulus affects your student loans, and what to do if you’re in each of…https://t.co/Te5z0Bnzkj https://t.co/Vt6oZN7uv3</li>
##   <li>We need to care for<span class='match'> the </span>carers - A view of Donegal through<span class='match'> the </span>#coronavirus crisis and beyond by Siobhan McNamara
## https://t.co/CZEsbGw7me</li>
##   <li>This Black Female #Doctor Is Leading Her Team To Develop Vaccine For Covid-19  https://t.co/HADrYV3oZf
## 
## #COVID19 #COVID2019Ghana #StaySafeNigeria #COVID #SocialDistanacing #CoronavirusOutbreak #FridayMotivation</li>
##   <li>Every Friday in every country #COVID19 https://t.co/Tpldv5fqsc</li>
##   <li>Covid 19, my 17 months old daughter has finished our Nutela without my knowledge. #COVID2019 #StayAtHome https://t.co/VdMEr8dFb4</li>
##   <li>A doctor who never failed<span class='match'> the </span>call of duty is incarcerated on fabricated charges. He saved infant lives in Gorakhpur. When 'chamki bukhar' ravaged Muzaffarpur, he set up free health camps. He offers his services again to fight<span class='match'> the </span>pandemic.#ReleaseDrKafeel
## https://t.co/hNxcbXa048</li>
##   <li>Maharashtra Covid-19 count 156, army sounded for ‘medical help’
## 
## #COVID19 #Maharashtra #fightagainstcorona 
## 
## https://t.co/ZG5GCq28xc</li>
##   <li>got let go from my job bc covid-19 and when they told me i literally said “deadass? no really, deadass?” lmaoo</li>
##   <li>"The threat of COVID-19 spread has suspended all Wet’suwet’en meetings, including talks on a proposed deal between hereditary chiefs, B.C., and Canada" but not construction? Canadian governments can't exploit public health and safety precautions to further this project. https://t.co/lCUh5VtDnj</li>
##   <li>@tehreemazeem This nation will survive Covid-19 and than die of Stupidity.</li>
##   <li>@ddale8 Does anyone notice how he says a lie, then<span class='match'> the </span>next day gives a very pedantic explanation of it?
## 
## Like he's quoting how someone just explained it to him. 
## 
## Well you see, usually hospitals don't need thousands of them. But almost all  #COVID19 patients need one.</li>
##   <li>Boris Johnson Has COVID 19 https://t.co/fOI1O1xXv8 via @YouTube</li>
##   <li>#COVID2019 Follow His Lead. Stay In The Crib https://t.co/nTwsAWRKxQ</li>
##   <li>Legal Aid Chicago's Teresa Sullivan talks to @ABAJournal about services provided to domestic violence survivors amid COVID-19 pandemic. 
## Read more: https://t.co/jbD4zXzlQv</li>
##   <li>You know what’s more dangerous than virus covid-19? The racism and hate towards one’s religion/race.</li>
##   <li>Video: Hospital in China where #COVID19 patients treated by #robots https://t.co/h54adrpSEF</li>
##   <li>Final COVID-19 Bill Would Deny Loans To Planned Parenthood, Group Says https://t.co/VWRMXJq4uJ</li>
##   <li>Quarantine day 11: 
## 
## Gali men police waly pubg khel rahe hein !
## #StaySafeStayHome #COVID2019</li>
##   <li>The COVID-19 pandemic<U+2014>illustrated by<span class='match'> the </span>widespread social distancing guidance with which most Americans are living today<U+2014>drives home just how interdependent we all are.</li>
##   <li>#COVID19france New record one-day death toll in France: 365 lives lost in hospitals nationwide in 24 hrs. This includes death of 16-yr-old in Ile-de-France.
## So far: 
## - total 1 696 people have died from #coronavirus
## - total 29 155 confirmed cases
## 
## #StayHome</li>
##   <li>I'm reminded why I love<span class='match'> the </span>Finnish people right now through this #COVID2019 #biowarfare pandemic. 
## 
## Finns aren't freaking out buying up all<span class='match'> the </span>food in<span class='match'> the </span>grocery store or binge buying on toilet paper. 
## 
## It's completely calm here. 
## 
## #Finland</li>
##   <li>I'm happy to help, but unless they need a minefield cleared or a parking lot swept, I'm pretty much useless. 
## https://t.co/h36VF9SMCn</li>
##   <li>I’m very happy <U+0001F60A> and proud of my government’s initiative of helping those in need during this pandemic crisis (COVID-19). Kudos to our president @PaulKagame and other members of our government <U+0001F64F><U+0001F3FE>. https://t.co/a4qcdeEGVu</li>
##   <li>U.S. leads world in confirmed coronavirus cases for first time https://t.co/uizU0xdbB8 #coronavirus #covid19</li>
##   <li>What if someone in your household becomes sick? Here are suggestions to help keep<span class='match'> the </span>rest of your family healthy. Find more COVID-19 resources at https://t.co/IyKrPyWr4c. https://t.co/oNZMV7GlHJ</li>
##   <li>@SykesCharlie Because he is not up for re-election in 2020, so not a
## "now" campaign issue.
## and because COVID-19 will knock him out of<span class='match'> the </span>spotlight like<span class='match'> the </span>Cong. Gary Condit/intern Chandra Levy ugliness
## was brushed aside by 9/11</li>
##   <li>Pornhub Premium Becomes Free for All to Make You Stay at Home https://t.co/1kWZubylMy via @PCMag
## #coronavirus #2019nCoV #virus #chinavirus #wuhan #sos #COVID19 #COVID_19 #SARSCoV2 #COVID<U+30FC>19</li>
##   <li>@covidperspectiv RAMMSTEIN's statement reads: "Yesterday evening Till Lindemann was admitted to a hospital on<span class='match'> the </span>band's doctor's advice. He spent<span class='match'> the </span>night in intensive care but has been moved as he is feeling better. Till has tested negative for<span class='match'> the </span>coronavirus."
## 
## https://t.co/26EQ5L0t1x</li>
##   <li>In light of #COVID19, @Rusi_org's @MChalmers_RUSI + Will Jessett recommend pushing<span class='match'> the </span>#IntegratedReview back to 2021. 
## 
## Read their paper - with insight on potential shifts in geopolitical alignments - here:  https://t.co/ONvasUyre5
## 
## #ISDFPR https://t.co/tRp1vvn3Nh</li>
##   <li>PLEASE PLEASE remember those sick with<span class='match'> the </span>COVID-19 and continue to recover But<span class='match'> the </span>whole truth not being told to<span class='match'> the </span>American people and<span class='match'> the </span>world for a reason and prayerfully a good reason
## https://t.co/hS0W30EvwV https://t.co/3JhupaoDk0</li>
##   <li>@fourie_art @CJ_isnowblue not long I hope. we in<span class='match'> the </span>midst of<span class='match'> the </span>worst of #coronavirus rightnow!</li>
##   <li>@SteveSisolak I missed<span class='match'> the </span>name of your med school.  <U+0001F6AB> trying 2 practice medicine,  Legislators! We train a long time 4 that honor! #patientsfirst #covid19 leave it to<span class='match'> the </span>professionals #scrubsnotsuits @PPA_USA  @Free2CareHC  https://t.co/0LwoAur6Ku https://t.co/oExgTtoGlf</li>
##   <li>707 out of 2,147 ang positive sa mga natest for COVID-19. 33% whew</li>
##   <li>@DeleMomodu 40 million Nigerians have BVN verified bank accounts. It will cost<span class='match'> the </span>FG <U+20A6>100 billion to pay <U+20A6>250k into each account so Nigerians can buy food for themselves and their families during<span class='match'> the </span>#CoronaVirus lockdown. If Nigeria can budget <U+20A6>150b for national assembly</li>
##   <li>@RandiRhodes @StephMillerShow @maddow @Thom_Hartmann 
## Abbott Labs is unveiling a #coronavirus test that tells if someone is infected within 5 mins. It's small, portable and can be used in any health-care setting. 
## Every person can now be tested! 
## https://t.co/LkzeBBtciV @business</li>
##   <li>Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/3bWotGUn9f</li>
##   <li>The senate spent a week swinging their $1200 bologna in<span class='match'> the </span>window. Rest at ease that this will calm<span class='match'> the </span>constituents, but it does not solve anything. @realDonaldTrump @SpeakerPelosi @AOC @BernieSanders #Coronavirus</li>
##   <li>"I can’t think of a time when this hasn’t happened, frankly," @VT_LiberalArts<U+00A0>historian Matt Heaton told @CestLaBrianna<U+00A0>of @BINederland, referring to times when a whole group of people were blamed for a contagious disease  <U+0001F30E>  <U+0001F501>  
## 
## https://t.co/1EHwvanxZY
## 
## #COVID19 #Coronavirus</li>
##   <li>Really? "China also does not include asymptomatic cases in case counts."
## #coronavirus #COVID<U+30FC>19 https://t.co/zwEOOUd0CK</li>
##   <li>As horrible as this is during this time...people are creating fraudulent ways to trick others during this time...PLEASE, LOOK THEM UP, watch<span class='match'> the </span>NEWS AND BE CAREFUL OUT THERE WHEN, YOU DONATE, GET TESTED, FAKE TESTS, SICK PEOPLE...BE ALERT!<U+0001F497>
## #Coronavirus #COVID #CoronaOutbreak</li>
##   <li>#Dr. #DeborahBirx faces #call to #affirm #LGBTQ #people won’t face #bias in #coronavirus #relief.
## 
## #Women #Transgender #LGBTQIA #Covid19 https://t.co/zhtvkrGUUu</li>
##   <li>The #CHP’s priority is your #safety! #Traffic volume has drastically decrease during these unprecedented times. If you need to leave your home, please allow yourself<span class='match'> the </span>opportunity to arrive safely by slowing down.
## (<U+0001F4F8>: Ofc. Mullane)
## 
## #COVID19 #Quarantine #StayHome #California https://t.co/Ymp2PRmMRQ</li>
##   <li>@GovMurphy Currently there is a large house party going on in Rockaway and local police are refusing to break it up because it's not at a closed public space. Please make these officers respond and break up this party! They are spreading Covid-19!</li>
##   <li>Y’all tune In I’m tellin right now @LiveeAihhReese applying straight Pressure! #coronavirus #CLUBTWITTER #ClubQuarantine https://t.co/n8l5TwNitP</li>
##   <li>I have to say these are perfect times for<span class='match'> the </span>drive-in to come back in style <U+0001F914>
## 
##  @RegalFilms #COVID #coronavirus https://t.co/rSdYOPtQM2</li>
##   <li>Tripura News Live appeal: Stay home, follow government guidelines on lockdown to stop coronavirus COVID-19; Keep away from rumours https://t.co/5SEDi85GAg https://t.co/hSVauIQMdJ</li>
##   <li>Take<span class='match'> the </span>lead in fight against COVID-19, ex-Minister Chidoka says https://t.co/6MJAOvXrZy https://t.co/cWrllRBtub</li>
##   <li>So 113 deaths today and 43 yesterday, really poor reporting of a massive increase. This is due to a change in reporting time. 156 in 2 days is a very encouraging trend, but don’t let that get in<span class='match'> the </span>way of a good story. #COVID<U+30FC>19</li>
##   <li>This Doctor Is Provoking<span class='match'> the </span>Right's Narrative That Covid-19 Is No Big Deal https://t.co/QVXvCwbulw</li>
##   <li>@ALMLGROUP For most people who end up infected,<span class='match'> the </span>disease runs a mild course. While<span class='match'> the </span>symptoms can be distressing all<span class='match'> the </span>same, you should #TakeResponsibility not to infect others around you. 
## 
## Please #StayAtHomeAndStaySafe 
## Isolate yourself. Hydrate as much as possible. #COVID19</li>
##   <li>@GovDunleavy #ShelterInPlace #Alaska
## New York state has 10 times<span class='match'> the </span>COVID-19 cases California has. Why? https://t.co/zrPiLLVnmO via @sfchronicle</li>
##   <li>'Mint<span class='match'> the </span>F*cking Coin': Rep. Rashida Tlaib Proposes Radical Law to Provide Coronavirus Relief Payments https://t.co/ZrOMZwkvnC via @lawcrimenews</li>
##   <li>@SpaceForceDoD #SpaceForce launches its 1st mission with #Covid19 virus precautions
## https://t.co/9leh3vtXIn</li>
##   <li>13/ <U+2022>A Region-specific strategy?
## <U+2013>Retired Intensive Care Physician #CoryFranklin &amp; @RushMedical #InfectiousDisease Specialist #RobertAWeinstein in @ChiTribOpinions:
## &gt; https://t.co/SBP6xq7FCu
## <U+2014>
## #economics #coronavirus #nationalsecurity #natsec https://t.co/P3N9Mg6RIh</li>
##   <li>Great to catch up and share ideas on remaining creative during #SelfIsolation  #lockdown #COVID19 
## Photo from last years day of art in #stainburnforest @TCLcollective https://t.co/mvtONb166z https://t.co/2shjTkVITi</li>
##   <li>Healthy 16 year old dies of Coronavirus in Paris:
## 
## https://t.co/efRp90TfLj</li>
##   <li>COVID-19 - putting people at risk for no reason is bullshit. One of those people is my sister, an estimator and lead. So, whether you feel sick or not - do your godamn part. Because I am immune compromised, I won't see her for months now, because of shit like this.</li>
##   <li>@NateSilver538 Was this approach approved by #COVID19 ? It has<span class='match'> the </span>last word.</li>
##   <li>#MSM slams #Trump #COVID19 briefings because every time he does one his approval rating increases while #MSM credibility decreases. https://t.co/ul8X6waKdg</li>
##   <li>Please click below to view<span class='match'> the </span>March 27, 2020 update from Paul Looker, LHSA Superintendent, about<span class='match'> the </span>Covid-19 Coronavirus.
## 
## This update includes 6 Points of Prayer and Thankfulness and 5 Points of Important School Information.
## 
## https://t.co/SAXeiw7d61</li>
##   <li>Shell Suspends Work On Cracker Plant Amid Coronavirus Concerns
## Royal Shell halts construction on its Beaver County, Pennsylvania petrochemical complex in an effort to contain<span class='match'> the </span>spread of<span class='match'> the </span>coronavirus. #Coronavirus
## https://t.co/pqqfhMtd6U</li>
##   <li>To think she was one of very few I was taking seriously up to now.  #coronavirus https://t.co/lZdhiIJX8Y</li>
##   <li>Covid-19: Disinfection of public spaces, high-risk areas to begin March 30
## https://t.co/nCkP3UkzlY  https://t.co/nCkP3UkzlY</li>
##   <li>Dont Know Twice anyone??
## 
## https://t.co/f9R7VUjaCc
## 
## #youtube #friends #family #familytime #friday #fridaynight #horrorgames #horror #gamer #games #game #like #subscribe #covid19 #keepgoing #netflix #twitch… https://t.co/nukPXIb3J6</li>
##   <li>Just finished up a @zoom_us with my EMS Company <U+2014> our first as a group. It was great for all of us to get together (virtually) to discuss #COVID19 and what we have to do to stay safe.</li>
##   <li>On #climate and #COVID19, @GernotWagner makes<span class='match'> the </span>important point that fossil industries are better connected politically than (eg) clean energy companies when it comes to lobbying for support in<span class='match'> the </span>pandemic downturn https://t.co/8faQHI0v9s</li>
##   <li>283 #socialprotection programs from 84 countries in response to #COVID19. No #LIC has put forth a response mechanism yet! https://t.co/rfKZlBNtRH</li>
##   <li>Sending my best wishes for lots of inspiration to all my colleagues close and far as we are doing our best to provide an education to our students from our homes to theirs :-) #teach #COVID19 #ShelterInPlace https://t.co/3ZHSZtnXU8</li>
##   <li>@RepLeeZeldin doesn’t seem to understand that @NYGovCuomo could easily take<span class='match'> the </span>$6 billion RIGHT NOW if he leaves NY Medicaid as is. We can revisit<span class='match'> the </span>Medicaid budget later, we can't get back<span class='match'> the </span>lives of our seniors and people with disabilities at risk NOW from #coronavirus. https://t.co/zDeny8WSR4</li>
##   <li>India hiding its figures of Corona Virus Cases #COVID2019 https://t.co/WfZO1YtZQK</li>
##   <li>In<span class='match'> the </span>post COVID-19 landscape when<span class='match'> the </span>economy will be on life support,  Treasury coffers will need every1 at work from DAY 1. W/o ECEC &amp; School Aged Care - any <U+0001F4B0> recovery will be delayed. Those likely to be affected will be mothers <U+0001F931> &amp;<span class='match'> the </span>criminally underpaid in<span class='match'> the </span>sector. https://t.co/4HIjudcGIB</li>
##   <li>See them calling it African swine fever,but God forbid you call covid-19 Chinese Virus. https://t.co/gSV0Euyh5t</li>
##   <li>@sarahtavel Great idea. I’m also keeping a journal of my/the worlds reactions. 
## 
## https://t.co/IZ3pKZCVn3</li>
##   <li>She got COVID-19 and lost her sense of taste and smell. But she says she's very lucky https://t.co/6D1BtZoh0D via @courierjournal</li>
##   <li>At least we ain’t #2 anymore <U+0001F605> #Rome #coronavirus #COVID19 #QuarantineLife https://t.co/opfeeqeUw9</li>
##   <li>LETSS GOOO Tested Negative For Coronavirus But Got Something Called Covid-19</li>
##   <li>NOVEL CORONAVIRUS COVID-19 THEME SONG BY LOST KiNGDOM https://t.co/Jbh5ePCJvm via @YouTube</li>
##   <li>@marwilliamson Please call it what it is: a PLANdemic 
## 
## Del Bigtree utterly destroys<span class='match'> the </span>official media narrative on COVID-19. Watch<span class='match'> the </span>Highwire
## 
## https://t.co/W0lf89o7Ug</li>
##   <li>@SenSanders Who disagrees with what Bernie stated? 
## 
## Somebody explain why a hard working person (ESPECIALLY if they’re sick) should lose their health insurance if they lose their job. 
## 
## I know any answer will be trash.
## 
## #M4A 
## #coronavirus</li>
##   <li>COVID-19: Freebies for Parents Teaching Kindergarten Aged Children https://t.co/9ILH5LndGB on @bloglovin</li>
##   <li>More info on what @DNC demanded in<span class='match'> the </span>bill 
## 
## $300M for public broadcasting
## -tax credits for wind and solar
## -climate standards on airlines.
## They didn’t use this bill to fight #covid19, but to fund more liberal pet projects.
## They don’t care about #Americans
## 
## #DNC #Traitors</li>
##   <li>@TheSSEHydro Perhaps you could offer your building as a COVID-19 place for NHS to treat those where hospital beds have all been taken up. Do your bit for<span class='match'> the </span>effort...not just tweets which do, lets face it almost zero. It's real help that's needed.</li>
##   <li>@GraceSm16250397 @ScottPresler @kaniff_ken1 @realDonaldTrump I’m a Michigander.  My sister just got tested for COVID-19 because she is immune compromised and has been horribly ill, so I guess my family is about to find out how good Witmore is.  It concerns me she wouldn’t trust a doctor to make this kind of decision with a patient.</li>
##   <li>day ?? of quarantine: at this point getting covid-19 wouldn’t be so bad cause it’d be a different ~interesting~ way to spend my time. and i already wanna die so, like, come infect me, bitch.
## 
## <U+00AF>\_(ツ)_/<U+00AF> <U+00AF>\_(ツ)_/<U+00AF> <U+00AF>\_(ツ)_/<U+00AF></li>
##   <li>Managing COVID-19 stress. https://t.co/Sc3KtuLFTn.  #ruralhealth #indigenoushealth #publichealth https://t.co/GIcsClUCXh</li>
##   <li>#BreakingNews 
## #Live 
## 
## @realDonaldTrump is addressing<span class='match'> the </span>nation about #COVID19 
## 
## [Actual footage] https://t.co/RmdwFD0Kku</li>
##   <li>@1_odonkor @NAkufoAddo @GhanaPresidency @rashpelp @UN_SDG @EuropeInGhana @UN @_AfricanUnion @UNDPPA @NDCYouthWing @ndccommbureau The Covid-19 is not on people walking freely in<span class='match'> the </span>country. It is among those who were quarantined and that's why each day,<span class='match'> the </span>numbers rise within those who have been taken to<span class='match'> the </span>isolation centres to be monitored. The President's measure to curb<span class='match'> the </span>spread is a great one.</li>
##   <li>WEBINAR: COVID-19: Insurance industry update
## 
## @Fareham_IC is hosting a free, 30-minute webinar on 1 April on #COVID19,<span class='match'> the </span>implications on #insurance and how you can mitigate risk. There will be an extended Q&amp;A at<span class='match'> the </span>end of<span class='match'> the </span>session. Register online
## https://t.co/RRvjOIRJAh</li>
##   <li>The thoughts of all @leicspolice
## are with<span class='match'> the </span>families and friends of<span class='match'> the </span>14 people in<span class='match'> the </span>Force area who have died because of #COVID19
## 
## #Rutland now has its' first confirmed case too
## 
## Please #StayHomeSaveLives this weekend 
## 
## This is not a drill....
## 
## https://t.co/JgsqCIVtoX</li>
##   <li>A reminder for<span class='match'> the </span>"it's just<span class='match'> the </span>flu" crowd:
## 1) No, #COVID19 is not<span class='match'> the </span>flu
## 2) It is 10 times deadlier than<span class='match'> the </span>flu
## 3) It is more contagious than<span class='match'> the </span>flu 
## 4) We have a flu vaccine &amp; antiviral medications that can shorten<span class='match'> the </span>severity &amp; duration of influenza</li>
##   <li>Good https://t.co/pIvtB2IEIO</li>
##   <li>"Behind<span class='match'> the </span>global surge in unemployment will lie all too many human tragedies, for individuals, families, and communities. It’s these people we should keep in mind as we watch<span class='match'> the </span>trajectory of this economic free-fall," writes @KateAndrs
## 
## https://t.co/CiOfiRFPtU</li>
##   <li>@camorborg no one wants to hear your covid 19 one liners christopher</li>
##   <li>Hey @disneyplus any chance you can release some movies early since we are all in quarantine due to #COVID19? I'm talking about titles like<span class='match'> the </span>live action Beauty and<span class='match'> the </span>Beast and The Jungle Book.</li>
##   <li>@allinwithchris Hallelujah and pass<span class='match'> the </span>Covid-19!</li>
##   <li>House passes historic $2 trillion aid package hoping to curb COVID-19’s economic impact<U+0001F6A8>ICYMI https://t.co/z26AqKKkpO</li>
##   <li>Covid-19 coronavirus: British Prime Minister Boris Johnson tests positive for coronavirus 
##  https://t.co/QOHHCCRC2r</li>
##   <li>Buzzicati reports that<span class='match'> the </span>Anambra Police Commissioner John Abang and his team went round Awka today to ensure compliance to<span class='match'> the </span>State Government’s Coronavirus directives
## https://t.co/tdLpmZpSuC</li>
##   <li>SANDF. I have 1 question for u. How are u going to defend urself from this Covid 19 pandemic? Ur government is playing fools. https://t.co/oQlC9l0AfW</li>
##   <li>The Tip of<span class='match'> the </span>Iceberg: Virologist David Ho (BS '74) Speaks About #COVID19
## https://t.co/TSCHy9iHSC</li>
##   <li>#Coronavirus can we make an anime about<span class='match'> the </span>Japanese coronavirus task force? <U+0001F914></li>
##   <li>Opinion: Covid-19 is probably seasonal, but that’s no reason to relax https://t.co/zaNtFmLzzP</li>
##   <li>Gov. Abbott: "As of today, we've tested more than 21,000 people in<span class='match'> the </span>state of Texas" for #coronavirus https://t.co/2HPzs1wamU</li>
##   <li>COVID-19 go away please <U+0001F62D><U+0001F62D><U+0001F62D></li>
##   <li>Tying healthcare to employment is a TERRIBLE IDEA
## Pass it on
## 
## #MedicareForAll #CNNTownHall #CoronavirusOubreak https://t.co/qk684kNkes</li>
##   <li>More than 300 people have died; another 1,000 have fallen ill in #Iran, after consuming methanol in<span class='match'> the </span>belief that it will protect them against<span class='match'> the </span>#coronavirus.
## 
## “We have to both cure<span class='match'> the </span>people with<span class='match'> the </span>alcohol poisoning &amp; also fight<span class='match'> the </span>coronavirus.”
## 
## https://t.co/5JUF9NQwJA</li>
##   <li>You would thing that<span class='match'> the </span>"So called" #POTUS would have more important things to do than play with his unsecured phone on twitter... #COVID19 https://t.co/bSkoz2VY0q</li>
##   <li>They cancelled dci this year because of corona and i will personally fight covid-19 in hell when i see it</li>
##   <li>THANK YOU THANK YOU!! We LOVE You to #HCWShoutOut to everyone on<span class='match'> the </span>front lines of this crazy war. Thank you so much for all you do - to all<span class='match'> the </span>Health Care Workers around<span class='match'> the </span>world!!  You are our ANGELS <U+0001F496> <U+0001F495><U+0001F64F><U+0001F607><U+0001F495><U+0001F30D><U+0001FA7A> #COVID2019 #cnn @CNN @ChrisCuomo #ChrisCuomo</li>
##   <li>Justice In The time Of Covid-19: First-Hand Experience Of Videoconferencing At Supreme Court https://t.co/9DT3MbI9e2</li>
##   <li>@AntonPilgram @Commuterist People just see some shit happening with doctors and police and think yeah, cool. Keep in mind<span class='match'> the </span>number of people with direct experience of covid-19 remains pretty small (for now, ofc)</li>
##   <li>Kent County Recycling Center will be temporarily closing its drop-off station near Rockford and stop taking loads of recyclables due to COVID-19 concerns. https://t.co/L0uygsNBhE</li>
##   <li>#BREAKING: The Wichita Falls<U+2013>Wichita County Public Health District announces two more cases of COVID-19. Wichita County is now up to 12 cases. https://t.co/aC5DPdP2IN</li>
##   <li>The not-thinkingable has happened. America is great again again. What an amazing feeling to be #1. How can we ever thank stupidity and<span class='match'> the </span>best deals for possibilitating this so bigly? #COVID19 #Covid19usa https://t.co/3buv9v220k</li>
##   <li>#Coronavirus: #US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/J5BV42FAhR</li>
##   <li>Now on https://t.co/0J2UdYHyh5
## 
## Paulo Dybala opens up on COVID-19 experience: ‘I could hardly breathe’</li>
##   <li>I LOVE @ncsecu and continue to bank there though I'm in Seattle. Everything about SECU is great. Check out<span class='match'> the </span>@ncsecu profile: "does not actively tweet." Their COVID-19 address is excellent: https://t.co/JJLosPeKbN
## I have been banking online with them for 5+ years, member for 20</li>
##   <li>COVID-19 maps of Georgia, South Carolina: Latest coronavirus cases by county https://t.co/9baIApgm6O</li>
##   <li>There’s no doubt that COVID-19 is causing a lot of hardship for Montana families. It’s also causing incredible hardships for our front line doctors, nurses and other hospital staff across<span class='match'> the </span>country.</li>
##   <li>Suva Market area at 1pm today. It’s a good thing that it’s protected by a special “Bula force field” which can resist any #coronavirus that’s hanging around https://t.co/nfAXwmBa49</li>
##   <li>Inslee signs plastic bag ban despite COVID-19 concerns with reusable bags https://t.co/MHyljtw6Uk via @TheLensNews</li>
##   <li>@eschatoL0GICal @AmIDoinItWright Yeah absolutely stinks he *checks notes* ensured that this happened while he has been organizing supporters to donate for a Covid 19 relief fund?</li>
##   <li>COVID-19 has sent shockwaves through<span class='match'> the </span>screen industry as cinemas close and productions shut down.  Content Cafe highlights some of<span class='match'> the </span>challenges currently facing<span class='match'> the </span>industry 
## 
## @AusCopyright @CopyrightAgency @screenrights1 
## 
## https://t.co/f3mKiyaldR</li>
##   <li>Even too watch movies or play games don tire me.
## Boredom is real and I'm about to go outta my mind.
## #COVID19</li>
##   <li>Fucking RACISTS.
## 
## G7 ministers spike joint statement on COVID-19 after U.S. demands it be called 'Wuhan virus' | CBC News https://t.co/RQOOmHvWHQ</li>
##   <li>Let's look at it again, how did it start and what do we know..mainstream&amp;beyond, do your own discernment, part 2+3 too #TheGreatAwakening #QAnon #CoronaVirus #Covid-19 #DarkToLight #FutureProvesPast #FactsMatter #WWG1WGA #WWG1WGAWorldWide https://t.co/1S6xlqjfu2 via @YouTube</li>
##   <li>@dino_melaye To All<span class='match'> the </span>politicians with #Covid-19 Allah will give you<span class='match'> the </span>equal attentions you're giving to<span class='match'> the </span>poor masses of your State</li>
##   <li>@BorisJohnson COVID-19 doesn't care about pithy slogans, and that's literally all you know how to do. You're an incompetent buffoon.</li>
##   <li>Which can be clinically achievable as demonstrated in<span class='match'> the </span>plasma of rheumatoid arthritis patients who received 500<U+2009>mg administration. #ChinaVirus #Coronavirus #COVID19</li>
##   <li>The release states that<span class='match'> the </span>USPS has a dedicated COVID-19 Command Response team focusing on maintaining continuity in providing service. &gt;&gt; https://t.co/wCIQkvsaGn</li>
##   <li>@akreana_ You won't tweet this because you have political friends! This was supposed to be a platform for all to vent, you retweet obscene gestures of sex mentioned by ppl but won't tweet this, your platform is biased &amp; you show you are weak!  let this comment trend #COVID19 @Vodacom</li>
##   <li>Error 404 found <U+0001F926><U+200D>♀<U+FE0F><U+0001F926><U+200D>♀<U+FE0F><U+0001F926><U+200D>♀<U+FE0F> #Covid_19 #vaka5698 https://t.co/Ydr8TWZx2v</li>
##   <li>We are all working together as Oklahomans to <U+0001F44A>Combat #COVID19 https://t.co/WepwiaPF5k</li>
##   <li>Today Jane brought me some essential as I am in quarantine for 12 weeks or more due to cancer and COVID -19 risk. This is as close as we could get. I miss hugging my friend <U+0001F61E> https://t.co/FaF24vAccR</li>
##   <li>New post: TRINIDAD-HEALTH- Trinidad records second death from COVID-19 https://t.co/5ShlIphav0</li>
##   <li>G20: ‘whatever it takes’ 2 control virus
## #whateverittakesG20
## #CoronavirusOubreak 
## #CoronaVillains 
## #Corona 
## #COVID 
## #COVID2019 
## #StayHomeSaveLives 
## #LockdownNow 
## #LOCKDOWNWORSHIP</li>
##   <li>Management of Critically Ill Adults With COVID-19 https://t.co/oj9Okfd0ja</li>
##   <li>Starting to look very distopian out there #Covid19  <U+0001F914> https://t.co/NWAs8Rhwb4</li>
##   <li>Ways local media companies are supporting local businesses during COVID-19 https://t.co/PGtD1WMdSz via @LocalMediaAssoc</li>
##   <li>COVID-19 showing mfers that their social class doesn't make them untouchable <U+0001F974></li>
##   <li>Is it me or have Russia and South Korea been very quiet over this virus. #COVID19</li>
##   <li>Michigan sees jump of 800 COVID-19 cases since Thursday, up to 92 deaths https://t.co/VD93Ko17nD via @michiganadvance</li>
##   <li>“Commitment is<span class='match'> the </span>little choices every day that lead to<span class='match'> the </span>final results we’re striving for.” 
## Yes<span class='match'> the </span>world is crazy right now! But we have an opportunity to reassess our goals, lace up our shoes, and get moving!  
## #trackandfield 
## #COVID2019 
## #FearTheGoat</li>
##   <li>@goosmoo @NYGovCuomo What state has<span class='match'> the </span>worst COVID-19 crisis? How about<span class='match'> the </span>worst crime? Poverty? Rats everywhere? Oh yea, it's New York. Yea, he's doing a great job!</li>
##   <li>With #COVID19 decimating<span class='match'> the </span>spring/summer conference &amp; meeting calendar, @TChanMD gives some AWESOME Tips for filling your former conference time here: https://t.co/BjZWrliinL #FacDev #MedEd https://t.co/mAI4kXYCn0</li>
##   <li>Boris Johnson has COVID-19, and Italy has set a grim new record - here's what happened overnight worldwide in<span class='match'> the </span>coronavirus outbreak  https://t.co/NQrNlWai1n</li>
##   <li>@narendramodi @RBI Sir ji, Please quarantine each and every single person with 1 or 2 symptoms, possible he just has ordinary cold not covid-19. Many private hospitals are sending home patients with fewer symptoms, eventually it may be covid-19. Since there are not enough kits to test every patient</li>
##   <li>Beijing has offered medical expertise and equipment to various countries around<span class='match'> the </span>world to tackle #COVID19, but experts worry about<span class='match'> the </span>motives of<span class='match'> the </span>Chinese Government and possible strings attached https://t.co/39WGJ1d9h5</li>
##   <li>Another #COVID19 positive case reported just now; a patient from Rajouri district in Jammu. History of close contact with a (now deceased) positive case-Rohit Kansal, J&amp;K Principal Secretary (Planning) (file pic) https://t.co/YDQYDxG0Bi</li>
##   <li>@noahsarkcrypto @BTC_JackSparrow Seems like #BTC is on a ventilator right now, have been infected by #COVID19</li>
##   <li>Our sincere thanks to<span class='match'> the </span>farmers and cattlemen who continue to work tirelessly <U+0001F469><U+200D><U+0001F33E><U+0001F468><U+200D><U+0001F33E> And to all<span class='match'> the </span>actors in<span class='match'> the </span>agri-food chain <U+0001F393><U+0001F52C><U+0001F331><U+0001F69B> Whose work is essential to ensure<span class='match'> the </span>food production and supply needs.
## 
## TOGETHER WE'LL STOP COVID-19!
## #StillCloseToYou #StopTheSpread https://t.co/2L1d0OoJa1</li>
##   <li>You can’t put a date on when this virus ends #coronavirus</li>
##   <li>Sadly<span class='match'> the </span>US just passed 80,000 cases of #coronavirus moving ahead of China as<span class='match'> the </span>country with<span class='match'> the </span>MOST cases in<span class='match'> the </span>world. https://t.co/TeRhub1z0F</li>
##   <li>Sheriff Daron Hall on bracing for COVID-19 in Nashville's jails
## "We’ve seen a reduction in our jail population, but it’s not where it needs to be." https://t.co/BUpBmff9ak https://t.co/c3bEl4jz1S</li>
##   <li>The Estee Lauder Companies (ELC) and its corporate foundation, The Estee Lauder Companies Charitable Foundation (ELCCF) have made financial contributions to support COVID-19 relief efforts around<span class='match'> the </span>world.
## 
## https://t.co/NFEpwg0BOR</li>
##   <li>#Halifax Transit says service will be "significantly impacted" tomorrow based on current staff availability.
## 
## "Riders should expect route delays and/or cancellations and are asked to make alternate plans if possible."
## 
## More here: https://t.co/taRJ1uVQFI
## 
## #COVID19 @globalhalifax</li>
##   <li>Labourers travelling back to their home states do not realise they are putting lives of thousands on risk. 
## @FinMinIndia has sanctioned a considerable amount for their daily needs (3 months duration), so that they stay at their location itself
## #covidindia 
## #COVID2019</li>
##   <li>Touchless technologies are not only<span class='match'> the </span>future, they're in demand right now more than ever and spurred by COVID-19. #coronavirus #touchlesstechnology #wirelesspower https://t.co/hqarihaV12</li>
##   <li>@BettyBowers Just got my COVID-19 Positive test back. I hope I was<span class='match'> the </span>one<span class='match'> the </span>pushed us over<span class='match'> the </span>edge!
## (I was sick last week, but haven't had a fever in days hope my bout is winding down)</li>
##   <li>Here’s<span class='match'> the </span>Friday evening update on<span class='match'> the </span>city’s response to COVID-19. Huge thanks and respect to our amazing @BhamCityCouncil staff, to our dedicated NHS and social care professionals, to @BVSC,<span class='match'> the </span>volunteers &amp; citizens working so hard to see us through these difficult days. https://t.co/UjWIMuiVTL</li>
##   <li>Animal Shelters Are Struggling Due to COVID-19. We Must Help Them Now! #care2 https://t.co/F5Maql0o3z</li>
##   <li>A 69-year-old man died due to #Coronavirus, at Kochi Medical College today https://t.co/5GH0kOrepW</li>
##   <li>@coursera In this situation of global lock down<span class='match'> the </span>world need to grow from home. The knowledge gained now can help to pay later to reduce<span class='match'> the </span>global loss. Let's start to educating more by freeing up<span class='match'> the </span>online education sources till<span class='match'> the </span>situation #COVID19  gets control.</li>
##   <li>Australian Supercomputing Centers Join Efforts Against COVID-19 https://t.co/AUTm2l40l6</li>
##   <li>I would trust<span class='match'> the </span>local FB COVID-19 page more if anytime data was posted Tr*mp supporters didn’t try to get<span class='match'> the </span>post pulled down because it makes their guy look bad.</li>
##   <li>@RogueFirstLady @rob13567 In mid January all COVID 19 meetings were made “Classified Status” so Trump could withhold info to public
## 
## https://t.co/Upxok3rYIW</li>
##   <li>Wash your hands with soap and water often <U+2013> do this for at least 20 seconds <U+0001F9FC><U+23F3> #Coronavirus #COVID-19
## https://t.co/xQ20h8ajB6 https://t.co/JDV3EeK5Ko</li>
##   <li>Spring is coming in South Korea.
## However, people wear a mask to prevent COVID-19. Social distance is keeping. https://t.co/mOxAme593T</li>
##   <li>@narendramodi
## Sir,your step toward covid 19 is highly appraised. you and your team appreciated for hard work for fighting against corona.but many people like us feeling economic crisis due lockdown.requesting you to something for home loan emi extension for period of 1to2 month.</li>
##   <li>@ddale8 Or they had to repurpose a convention center because Trump didn’t take #coronavirus seriously</li>
##   <li>things are very serious with<span class='match'> the </span>#coronavirus https://t.co/rbbpz7UaeQ</li>
##   <li>Many accuse<span class='match'> the </span>US of using #Coronavirus a biological weapon against<span class='match'> the </span>peoples of<span class='match'> the </span>world,<span class='match'> the </span>US history in biological warfare is well known. #5YearsOfWarOnYemen https://t.co/rMRZ4b2SXl</li>
##   <li>I bet all these celebrities are faking having COVID-19 so they can fake their deaths and escape to wherever Tupac and Mac Miller are</li>
##   <li>My great uncle who’s lived 90 long years was diagnosed with Covid-19 and is now dying alone in a Michigan hospital. Family is devastated. I am devastated. I’m angry. I want to scream and fight and lose my goddamn mind. None of it changes<span class='match'> the </span>facts. Please, please just stay home.</li>
##   <li>2 weeks ago, I donate some money for our medical workers to fight covid-19 in my country under Jackson Wang's name. I hope everything will be fine as soon as possible. Thank you Jackson, for always inspiring me. Once again, 生日快<U+4E50> @JacksonWang852 <U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F> #BlessedToHaveJackson https://t.co/E9B02OVSJm</li>
##   <li>Chloroquine is known to block virus infection by increasing endosomal pH required for virus/cell fusion, as well as interfering with<span class='match'> the </span>glycosylation of cellular receptors of SARS-CoV. #ChinaVirus #Coronavirus #COVID19</li>
##   <li>For graduate students nearing<span class='match'> the </span>end of their programs, #COVID19 has created a challenge: remotely presenting a dissertation defense. That was<span class='match'> the </span>new reality for @kylegodbey, who embraced<span class='match'> the </span>‘dissertation-at-home’ format for a creative presentation. 
## 
## https://t.co/WaHUTIWeAa</li>
##   <li>#Maroon5 - #SheWillBeLoved (Official Music Video) https://t.co/BRR0vzN3TB via @YouTube  #coronavirus #COVID<U+30FC>19</li>
##   <li>Do you know<span class='match'> the </span>symptoms of #COVID19, how it spreads, and how to prevent its spread? Find<span class='match'> the </span>answers in this infographic. And check<span class='match'> the </span>BC COVID-19 Self-Assessment Tool if you have symptoms: https://t.co/pYmxr4VjyE https://t.co/1YK3hvc1e3</li>
##   <li>@BENDTDISTILLING @Forbes Well Done! I am so proud to see @BENDTDISTILLING making a difference! #COVID19 #commUNITY #Texas</li>
##   <li>Tennis star @Bandreescu_ is donating a signed tennis racket to raise money for @funds4disaster COVID-19 relief efforts. Anyone who donates $25 or more will be automatically entered to win<span class='match'> the </span>racket. 
## 
## https://t.co/4F6RnoX7Bf</li>
##   <li>COVID-19: $800+ million to support small businesses and crisis response @google https://t.co/buNT7Za0yG</li>
##   <li><U+0001F4A5>Protecting<span class='match'> the </span>most vulnerable against<span class='match'> the </span>#COVID-19 #coronavirus
## We will distribute 1.000 re-usable with certified air filter face masks and soaps to<span class='match'> the </span>most vulnerable #refugees.
## 
## #Seeds_of_Humanity https://t.co/JuxCaiciBo</li>
##   <li>@FIGZ415 @FirstSquawk The U.S takes<span class='match'> the </span>lead in numbers of #Covid19 cases</li>
##   <li>.@realDonaldTrump denies he had briefings on #Covid19 early.  He was briefed in January!</li>
##   <li>Leading my example @NJGov @PhilMurphyNJ. #SocialDistance being practice while giving update on #Covid-19. They are doing what they are telling us to do. https://t.co/9qTtFyRpj1</li>
##   <li>@nanagotgame u see how westernisers dey hold their leaders accountable?
## 
## u see how piers morgan dey bully boris and his govt over #COVID2019?
## 
## thats what u call civilisation</li>
##   <li>https://t.co/aTtFdceF8f Fact check: Claim of new symptoms for COVID-19 is partly false #epitwitter</li>
##   <li>In a further step to assist members facing severe financial hardship during<span class='match'> the </span>coronavirus,<span class='match'> the </span>NFRN has re-established a partnership with Commercial Plus.
## 
## https://t.co/vCWZsmVFpL</li>
##   <li>@ambiej I'm one of<span class='match'> the </span>first to raise<span class='match'> the </span>alarm at Spectrum over their lack of regard for employee/customer safety. they're still giving people shit for trying to WFH or use<span class='match'> the </span>3 weeks PTO. a comcast tech DIED from covid-19 last week.</li>
##   <li>Wonder if Leek are one of these? (I do not know nor have looked).
## Can see<span class='match'> the </span>point for some clubs though?
## #coronavirus: Opposition grows among non-league clubs to ending season - https://t.co/VRuvTfqQ9k</li>
##   <li>@megynkelly Also, smart people "plan for<span class='match'> the </span>worst and hope for<span class='match'> the </span>best".  Overestimation is almost always far LESS damaging than underestimating<span class='match'> the </span>seriousness of any threat. Using<span class='match'> the </span>boy-who-cried-wolf metaphor does not apply to this situation since<span class='match'> the </span>#Covid19 is real.</li>
##   <li>EVERY AMERICAN THAT DIES DUE TO COVID-19 IT IS ON TRUMPS HANDS POINT BLANK PERIOD</li>
##   <li>@NateSilver538 We need a better COVID-19 reporting system, and a technology that can track critical medical resources. I have a solution. https://t.co/T4M3Jxw9bQ</li>
##   <li>NEW COMMENT! Management of #IBD during<span class='match'> the </span>COVID-19 outbreak: resetting clinical priorities
## 
## Insights from clinicians in Milan, Italy
## 
## https://t.co/P9fhm55qnh
## 
## #COVID19 #Coronavirus https://t.co/RejNiq3Oo1</li>
##   <li>If you’re in this photo hope you’re pleased with yourself for endangering<span class='match'> the </span>vulnerable and health workers of Australia #COVID19 #Coronaaustralia #corona https://t.co/KYBcnSB5Sy</li>
##   <li>In Louisiana<span class='match'> the </span>most common underlying health condition amongst<span class='match'> the </span>COVID19 dead is diabetes. More common than pulmonary or cardiac problems. Why? Scary and fascinating. https://t.co/d9fSZA11BT</li>
##   <li>@Blu3d0t @SwedishCanary Poor baby took social distancing to<span class='match'> the </span>extreme. <U+0001F43C>
## #SocialDistancing
## #COVID<U+30FC>19</li>
##   <li>Our new webpage details consumer issues tied to COVID-19:
## 
## -price gouging
## -fake tests
## -fake cures, treatments
## -false advertising
## 
## Risking<span class='match'> the </span>health, money &amp; identity of anyone getting scammed.
## 
## Are you a victim? Go here: https://t.co/PA1QVL82C1
## #COVID19 #InThisTogether</li>
##   <li>- Assault on a supermarket in Palermo. Citizens shouted: "We have to eat."
## - Twenty Somali doctors are coming to help fight<span class='match'> the </span>virus.
## - The Italian health authority authorizes<span class='match'> the </span>administration of drugs composed of antimalarial chloroquine. #coronavirus 
## ...</li>
##   <li>Lol my apartment complex sent an email about rent during COVID-19 and tried to give us a 20% discount if we pay April and May's rent up front, as though multiple people aren't being laid off right now</li>
##   <li>You would think that with all this time at home during this quarantine, I would be caught up with all my schoolwork..but that’s not<span class='match'> the </span>case at all <U+0001F926><U+0001F3FB> #FridayThoughts #CoronaLockdown #COVID19 #procrastination</li>
##   <li>@tdfbeefeaters Do we have an official quote from you guys yet on<span class='match'> the </span>BBC Sport report about #TDF2020behindcloseddoors ???? #TDF2020 #cycling #COVID2019 #backstronger #wtfock 
## Tour de France: Sports minister considers Tour with no spectators https://t.co/I9a010Zulq</li>
##   <li>Video: COVID-19: 'Adhere To Preventive Measures' - MP Urges Public
## https://t.co/6x6DCO3vDu</li>
##   <li>Engaging with climate justice means being constantly away from my family and our homelands. Pandemic based self isolation is forcing me to slow down, but I still don’t get to see family. #COVID19 #IndigenousHealth #cndpoli</li>
##   <li>@ibdtweets @ibddoctor @IBDMD @MRegueiroMD @SaraElOualiMD @SunandaKaneMD Agree. We should try to have at least one per city. A free of #COVID19 place for infusions. Not only #IBD but also another kind of patients (#rheumatoidarthritis #psoriasis etc, in order to keep their treatment safe.</li>
##   <li>https://t.co/FKuGLLovJz New York State Has 10 Times<span class='match'> the </span>COVID-19 Cases California Has. Why?</li>
##   <li>@YAATeamSouth Mine also went live all over video too :) for<span class='match'> the </span>#coronavirus  #nhs staff . Lovely video on Facebook of<span class='match'> the </span>#barnsleyhosptialstaff .</li>
##   <li>As most of us are working from home now, here is an article with some tips to be more productive!
## 
## https://t.co/CRe0U65QDn
## 
## #WorkFromHome #COVID2019 #Tips</li>
##   <li>George Diaz, who treated<span class='match'> the </span>first U.S. novel #coronavirus patient at @providence, describes real-time decision-making and implementation of a telehealth program to protect patients and staff alike: https://t.co/Rz809tC2YT https://t.co/ohq6D0qgFm</li>
##   <li>WATCH: @GovKemp will be holding an unprecedented statewide town hall with members of his #coronavirus task force tonight 8:00 PM.
## 
## You can watch on your @mygpb TV station and listen live on @gpbnews. https://t.co/XKbhGK6jBf</li>
##   <li>@Mallikarjun_KC To ensure customer &amp; employee safety against COVID-19, our teams are working remotely. We are committed to servicing your queries. Please use our 24x7 Digital channels - Website, Chatbot ILA or Mobile App https://t.co/EPRRNIvSdA. Stay healthy and safe!</li>
##   <li>Just realized, #COVID19 takes a pretty significant part of<span class='match'> the </span>rest of our time watching Messi away. I reckon he'll call it a day at Barca 2022 after<span class='match'> the </span>world cup. Maybe one more year after that if we're lucky. <U+0001F636></li>
##   <li>Insider Exposes COVID-19 Coronavirus Scam | Alternative | Before It's News - https://t.co/uariUzDrb8 via @shareaholic</li>
##   <li>'Heartbreaking': Burglars ransack food bank amid coronavirus lockdown https://t.co/QyTeLCgA54 #Covid19 #Covid19UK #CovidIdiots #Bolton https://t.co/jtRwCnUtdk</li>
##   <li>A Comtist perspective on COVID-19 https://t.co/gzsVRPLpuZ</li>
##   <li>There are no strings attached. Just use it and hopefully, it'll aid you to turn over a new stone in<span class='match'> the </span>way we work. Because we believe, #PeopleCare is Good Business.
## 
## #StayHappy! #StaySafe!
## 
## Sign up here: https://t.co/k9V9b3TBaq https://t.co/dRi760xu4H</li>
##   <li>@FairyL "Make COVID-19 great again". https://t.co/pORvEMxbEi</li>
##   <li>$COCP Heard a report that ppl can be reinfected w COVID-19. If true can you design a vaccine? Doesn’t that make symptom relief SOC until Antvirals are available that cos like Cocrystal are working. Merck partnership?</li>
##   <li>WATCH #COVID19 update...
## https://t.co/5k7fzbZceB</li>
##   <li>.@dougducey is jumping into action with<span class='match'> the </span>new money provided by<span class='match'> the </span>#AzLeg to help people financially impacted by<span class='match'> the </span>#coronavirus https://t.co/fgl8Mf3gdm</li>
##   <li>I hope<span class='match'> the </span>way that Trump is handling<span class='match'> the </span>covid-19 pandemic will be a wake up call for many Americans come<span class='match'> the </span>next election. All I can say is that I’m so thankful to live in Canada where my government actually gives a damn about it’s people. https://t.co/MD2z7OSo48</li>
##   <li>Same action must be done here in Sindh markets. Rates are high in vegetables, fruits and other things for dialy usage.
## @MuradAliShahPPP 
## @murtazawahab1 
## #coronavirusinpakistan 
## #COVID2019 
## #CoronaVirusUpdates 
## #StayHomeStaySafe https://t.co/FlluumpJRw</li>
##   <li>Correct:  no one's ever (made as big a mess of a national crisis while being an utter jackass.  #Trumpocalypse #TrumpPlague2020  #COVID19 https://t.co/5utgzbXhoy</li>
##   <li>Are you up-to-date on<span class='match'> the </span>COVID19 affects persons w disabilities? @ilo @WHO @UN @hrw &amp; many  come together, ensure human-rights based approach #COVID19 response.
## 
## Check out latest resources &amp; compilation on: https://t.co/sovuWo4fYQ
## 
## Photo: ⓒ 2020 Dennis Sigwe/SIPA via AP Images https://t.co/dv0lQRu0sr</li>
##   <li>#ReadABookChallenge #Lockdown21 Next in my reading list once I complete with "Stealth War". This book featured in today's @dna with @sudhirchaudhary on how China used #COVID2019 to unleash this Unrestricted Warfare on<span class='match'> the </span>entire world, though<span class='match'> the </span>target was #USA @robert_spalding https://t.co/q8GvLMkhbB</li>
##   <li>.@melissajoell from @Instructure / @CanvasLMS discusses how she thinks online learning will change<span class='match'> the </span>way kids learn even after #COVID19</li>
##   <li>Pres Trump Q&amp;A: Tell Pence not to call govs of Washington, and Michigan but he calls anyway. Think "it's a great sign" to go to Norfolk to visit hospital ship that's going to NY. Visit to be at 2p ET Saturday. #Trump #coronavirus @anthonymace</li>
##   <li>GitHub Trending Archive, 25 Mar 2020, All. coronasafe/care, ProtofyTeam/OxyGEN, deepset-ai/COVID-QA, peixebabel/COVID-19, elcronos/COVID-19, datasets/covid-19, pomber/covid19, ElderJames/ant-design-blazor, nzw9314/QuantumultX, ahmadawais/corona-cli https://t.co/UPTqMmzYhJ</li>
##   <li>So many people out tonight clapping for<span class='match'> the </span>NHS <U+0001F60A> <U+0001F44F> #nhs #thankyou #clapforthenhs #thankshealthheroes #clapforourcarers #staysafe #stayhome #covid_19 https://t.co/cL2SnFZIiV</li>
##   <li>Letter to<span class='match'> the </span>Trojan Family: COVID-19 and USC Athletics Update - University of Southern California Official Athletic Site https://t.co/VeFnw471gh</li>
##   <li>Missed out on this week’s dental news? No problem, here’s what happened over<span class='match'> the </span>past seven days…https://t.co/6ZnsiFtWzp
## 
## #coronavirus #coronaupdateuk #fmc #coronacrisis #coronavirusdentistry #covid19dentistry #weeklyroundup #newsyoumighthavemissed https://t.co/yZbfDbCutn</li>
##   <li>This article, too, has a lot of great info about things they're doing. I'm fascinated by<span class='match'> the </span>operational side of running a business like this. https://t.co/yK20XdXx8d</li>
##   <li>Our response to Lancet paper suggesting ARBS/ACEi be discontinued in #COVID<U+30FC>19 #CoronavirusUSA
## #CoronavirusPandemic #FDA #losartan #PPE #SocialDistanacing
## https://t.co/lB5hkg2pln</li>
##   <li>They are doing an amazing job!
## Sask. town executes tailored pandemic plan to get ahead of COVID-19 https://t.co/RC0hjoMVgf</li>
##   <li>I’m incidentally writing my doctoral dissertation about<span class='match'> the </span>bimodal effect of ageism and healthcare treatment so observing how we are handling COVID-19 has been oddly both encouraging yet disheartening and my little researcher + public health advocate heart feels torn <U+0001F97A><U+0001F494></li>
##   <li>Protecting<span class='match'> the </span>well-being of our employees and clients has and will always be our top priority. We understands<span class='match'> the </span>concern and uncertainty caused by coronavirus (COVID-19). While this situation hasn't been easy on anyone, we remain committed to keeping our promise of serving you.</li>
##   <li>Michigan governor threatens doctors who prescribe hydroxychloroquine to treat COVID-19 https://t.co/hLGjktOQWI</li>
##   <li>Question: I’ve been looking around for healthcare for me and my husband and an insurance agent that was helping me said if you don’t have medical you no longer can get medical after next week until a vaccine is available for COVID-19 ...is this true???? I hope not</li>
##   <li>Absolutely, China is<span class='match'> the </span>solo World's leader! .
## The Chinese doctors and supplies are all over<span class='match'> the </span>world to defeat<span class='match'> the </span>#coronavirus outbreak. The fact is only China stands out to help<span class='match'> the </span>mankind . 
## <U+0001F1E8><U+0001F1F3> #China #Covid_19 https://t.co/Cf8EEA7iCP</li>
##   <li>Nonprofits are stepping in to help military families in need during<span class='match'> the </span>#COVID19 pandemic. @AmandaBrandeis shows you how https://t.co/ZhPQHCkqnt</li>
##   <li>Hand? See<span class='match'> the </span>way this Covid-19 is set up...... https://t.co/s70DdUNJY1</li>
##   <li>Slaughterhouse Is Business As Usual After Worker Tests Positive for COVID-19 https://t.co/NyXKgvJo1y via @peta</li>
##   <li>@theodoraclarke As an Awareness raiser for @CarersUK can I ask you what extra support you will be seeking for us #UnpaidCarers in #Stafford at this very difficult time? Again we seem to be<span class='match'> the </span>forgotten army that helps to prop up<span class='match'> the </span>#NHS #CoronaLockdown #Coronavirus</li>
##   <li>There's been a rise in Anti-Chinese &amp; Anti-Asian Racism in light of #Coronavirus &amp; xenophobic remarks from Trump https://t.co/rDI9PonL9e 
## 
## RSVP for a Townhall on Sat 3/28 from 6-8pm EST: https://t.co/RyM2QyOhRW #COVID<U+30FC>19 #RacismIsAVirus 
## 
## Shoutout to my friend @gregorycendana!</li>
##   <li>Stocks cut losses after House passes <U+0001F9A0> relief bill, #Dow still down 500 points. We need #coronavirus vaccine <U+0001F489>.Only reliable way to <U+0001F6D1> pandemic is <U+0001F489>. #StayHome policy is not enough. As soon as <U+0001F489> is developed <U+0001F5FA> must be prepared for fast <U+0001F489> distribution https://t.co/Se90kE24lX</li>
##   <li>@TheEllenShow I am a teacher at Sartell High School (MN) and we start teaching distances learning Monday for a month because of COVID-19.  Wondering if you would be interested in joining my classes online to encourage my students? It would blow their minds!</li>
##   <li>So, what's<span class='match'> the </span>real secret to make poached eggs?
## 
## This is<span class='match'> the </span>one skill I want to learn during this time.
## 
## #COVID2019</li>
##   <li>By<span class='match'> the </span>time I come back I wish #COVID19 mutates into an avirulent strain.</li>
##   <li>If you know someone in #Islamabad who needs #Ration please let AC @iasadullah_pas know, who is doing a great job in #Islamabad. 
## 
## #CoronaVirusUpdate #StaySafeStayHome #Quarantine #COVID #PakistanFightsCorona #COVID2019 #CoronavirusOutbreak https://t.co/5faH5RIzn0</li>
##   <li>More Caribbean Countries Close Borders to Counter COVID-19 | TravelPulse https://t.co/sMTXiogeeV @cruiseprguy @TravelPulse</li>
##   <li>@nycHealthy @NYCMayorsOffice @NYCMayor I want to ask if a person is tested positive for #covid19, and lives in apartment complex, are neighbors notified, and<span class='match'> the </span>building be sanitized? Thank you.
## 
## #AskMyMayor</li>
##   <li>Six more diagnosed with Covid-19 in Vietnam, putting country's count at 169 https://t.co/07f8FvUjGP</li>
##   <li>COVID-19 ruined drum corps I can’t take this anymore https://t.co/BSC2REuFNq</li>
##   <li>HUGE! Author of Ridiculous Imperial College Coronavirus Study Backtracks Says UK can Now Expect Under 20,000 Deaths Not Half a Million and LESS THAN ANNUAL FLU DEATHS
## 
##  Brits would die in<span class='match'> the </span>pandemic and 2 million Americans would perish from COVID-19. https://t.co/PmGWPl31pC</li>
##   <li>Coronavirus (COVID-19) - Apple and CDC https://t.co/Wo6IybkL9b</li>
##   <li>Omg, Esther Rantzen admitting on @BBCNews that she has wine o’clock with her friends at 6pm gives me life. Go girl <U+0001F942> #COVID19</li>
##   <li>The biggest thank you to all<span class='match'> the </span>NHS staff and carers working so hard to tackle #coronavirus- you deserve every clap and more! I think we all needed this tonight,  
## 
## #clapforourcarers  #clapforNHS https://t.co/GU82KIC6YO</li>
##   <li>@advocatemahere It appears you don't agree with this absolutely necessary move. We are in between a rock and a hard place. I suppose that's why this decision has taken this long to make. What needs to come out is full honesty with<span class='match'> the </span>Covid -19 stats.</li>
##   <li>@TeamTrump @realDonaldTrump A national emergency and everyone crowds together as though social distancing is just something ‘other people’ should do. All for someone to sign a piece of paper. Disappointing<span class='match'> the </span>medical advice is ignore at<span class='match'> the </span>top #badexample #COVID19 #StayHomeSaveLives</li>
##   <li>Down with COVID-19<U+0001F44E> https://t.co/bsUfBKhnMa</li>
##   <li>I am glad that my state Jharkhand is doing really well against COVID-19 and I also hope that CM @HemantSorenJMM is ready for<span class='match'> the </span>aftermath of this epidemic as well. I hope so</li>
##   <li>"America first" #coronavirus https://t.co/mqEyibonK6</li>
##   <li>@realDonaldTrump why aren’t you visiting hospitals to see what they need? Why don’t you care more about people than<span class='match'> the </span>stock market? I call on you to be a leader and visit them. #visitcovid #COVID19 #visithospitals</li>
##   <li>Moving during #covid19 and crazy #oklahomaweather #donotrecommend please no more rain and hail for at least an hour so I can get everything moved in to my new place <U+0001F62C><U+0001F62C><U+0001F62C></li>
##   <li>Social_Distancing...<U+0001F44C><U+0001F44C><U+0001F44C>
## #IndiaawaitsCovidaid #IndiaBattlesCoronavirus #IndiaFightsCoronavirus #IndiaFightsCOVID19 #IndiaComeTogether #IndiaRespondstoCOVID19 #Indianpolice #Indianpolice #IndiaLockedDown #CoronavirusOubreak #CoronavirusLockdown #CoronavirusPandemic #Corona https://t.co/YdJXUVlEzY</li>
##   <li>My running path reminds me of a gym on January 1st. Who are all these new people! Crowding and socializing. Get<span class='match'> the </span>F out of my way so I can run! #Illinoiscoronavirus #COVID19 #runner #trailrunning</li>
##   <li>Linn County reported two more cases of COVID-19 for a total of 28 since<span class='match'> the </span>coronavirus pandemic began,<span class='match'> the </span>Oregon Health Authority announced on Friday, while Benton County continued to hold steady at six cases. https://t.co/MfgsNhAXxt</li>
##   <li>@Lobiyn_Achien Believing in God is healthy but believing in unproven information esp for COVID-19 case is deadly.</li>
##   <li><U+0001F44F><U+0001F44F><U+0001F44F>To @VickyWright14 , to all your colleagues @NHSForthValley and @NHSuk at 8pm<U+23F0>tonight we applaud you <U+0001F44F><U+0001F44F><U+0001F44F> for your courage and bravery on<span class='match'> the </span>front line in<span class='match'> the </span>face of adversity as we fight Covid-19. 
## Our<U+0001F496>felt thanks!   
## #ClapForCarers #NHS #clapforNHS https://t.co/kUxg2mo0H7</li>
##   <li>@mileslunn You're right they aren't a huge source, but they are currently a source, an $8.9b one (incl hunting). 
## 
## Covid-19 is going to keep this gov't busy and very broke for this term.  Likely a decade before any vanity spending can start again.  Alas, we're both just speculating.</li>
##   <li>This reminds me of high-school.Being beaten for crimes your comrade committed #COVID19 #comrade #thesweetsleepafterabeating #GoCoronaCoronaGo #kenya #Somalia #pain #probox #QuarantineActivities #shutdown #SocialDistanacing https://t.co/d3NT0xUaG3</li>
##   <li>3/4 "painter's mask": https://t.co/so8wAwzKOl ) because, when adjusted correctly,<span class='match'> the </span>mask creates an airtight seal around your mouth and nose. I'm so disgusted that<span class='match'> the </span>CDC doesn't tell people this, BUT DON'T TRUST ME, PLEASE...
## #Corvid19 #Coronavirus</li>
##   <li>The National Marine Manufacturers Association and<span class='match'> the </span>Marine Retailers Association of<span class='match'> the </span>Americas recently joined forces in response to<span class='match'> the </span>ever-evolving COVID-19 pandemic sweeping across<span class='match'> the </span>globe. @therealnmma @MarineRetailers 
## 
## https://t.co/T8R8lNAEQy</li>
##   <li><U+0001F1E9><U+0001F1EA>In Germany, just 0.6% of their confirmed #coronavirus cases have so far ended up being fatal -<span class='match'> the </span>lowest figure amongst any of<span class='match'> the </span>most affected countries for #COVID19 @skynews
## #Exposome #Epitwitter  <U+2066>@me4_so<U+2069> https://t.co/GljBwP8JGH</li>
##   <li>WHO may launch MyHealth app to help curb spread of COVID-19 misinformation https://t.co/cTDZx9LZkx
## 
## #travelingculturati #advantageinternational #travelhealth #twb</li>
##   <li>Hey guys, check out this short piece my team and I did on<span class='match'> the </span>#coronavirus epidemic. Watch and share and spread<span class='match'> the </span>word. #stayhealty                                  https://t.co/eAgsfCVqAP</li>
##   <li>In light of #COVID19, we want to highlight and thank those on<span class='match'> the </span>front lines making sure that we still get<span class='match'> the </span>resources we need. This #thankyouthursday goes to<span class='match'> the </span>amazing #TruckDrivers who are helping us get through this crisis and keeping our economy moving! #logisticsSC https://t.co/K5hfVkN3pr</li>
##   <li>@BeaudoinCharlie @JeffCrowder16 He has no idea what he's doing.
## 
## #TrumpMadness
## #WorstPresidentInHistory
## #ThursdayThoughts
## #ThursdayMood
## #CoronaOutbreak
## #COVID<U+30FC>19
## #DumpTrump2020
## #Coronapocolypse
## #TrumpLiedPeopleDied
## #TrumpPandemic
## #CoronaCrisis
## #COVIDIOT
## #TrumpVirus https://t.co/jSXqobXuNh</li>
##   <li>@kiranshaw One Third of India's COVID 19 cases are now in just two states - Kerala and Maharashtra. Looks like each day there is a contest as to which state has<span class='match'> the </span>highest cases. Sad scene.
## 15th Jan to 23 March 15 lakhs traveller has returned. GOI tracked down this traveller n quarantine</li>
##   <li>The COVID-19 pandemic is a global problem and we’re offering help on<span class='match'> the </span>ground everywhere, drawing on our extensive presence and experience in 187 countries. Measures are in place to ensure employees are healthy, safe and... #NestleCares #WeAreNestle https://t.co/Pd4Dgl4fji</li>
##   <li>@MattHancock When we were clapping at 8pm my 16y old son ( who’s sad he had his GCSE’s taken away from him) said to me “Mum that’s why I want to work for @NHSuk @NHSMillion and become<span class='match'> the </span>best doctor I can be! #inspired #clapforNHS #COVID2019 #positivity</li>
##   <li>@drvox See how<span class='match'> the </span>@TheLocalItaly coverage compares against other news outlets on Ground News #COVID19 #coronavirus #Pandemic #Rome #Europe https://t.co/d6MTp2iacT</li>
##   <li>The #coronavirus bioweapon is an economic weapon that sure looks like it will bring mark of<span class='match'> the </span>beast. #COVID19 https://t.co/yF1OVQQmXE</li>
##   <li>The above video of Bill Gates, done in 2005, is beyond shocking. Possibly to use any future  #COVID2019 vaccine to remove<span class='match'> the </span>"GID GENE"
## from Muslims. You can clearly see they are discussing
## "RELUGIOUS BRAIN" &amp;
## "NON RELIGIOUS BRAIN" &amp;
## "God gene"
## as they mockingly call it. https://t.co/COgyqLCWLP</li>
##   <li>Creating a narrative where celebs have gotten tested and test positive but showing no symptoms. Telling us to stay inside. How can you have a virus but show no symptoms at all? It doesn't make sense. Why do "they" want us to stay inside so bad? 
## #coronu #Covid19 #test https://t.co/YRjo5Tl7i7</li>
##   <li>@davidfrum @SPIEGEL_English Couldn't settle on, oh, I don't know. . .
## 
## COVID-19
## 
## CO - Corona
## VI - virus
## D - disease
## 19 - 2019</li>
##   <li><U+0001F58B> Support Katherine by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r
## 
## <U+0001F4E8> Last delivered to @rondesantisfl, Representative Fischer and Senator Bean  #sayfie #flapol #COVID19 https://t.co/xKgAx8vsIV</li>
##   <li>Stay informed SF! Subscribe to this Twitter list from @SF_emergency for<span class='match'> the </span>latest COVID-19  info.
## https://t.co/dGE903s0vn</li>
##   <li>Dr. Brix says that models showing 40-80% of<span class='match'> the </span>population being infected with #CoronaVirus are not credible and not supported by US data.
## 
## Additionally,<span class='match'> the </span>US has worked with<span class='match'> the </span>UK to revise their models from half a million deaths down to only 20,000 deaths based on US data.</li>
##   <li>@kendallybrown This would be bad enough if it was a drug that actually worked against covid-19.  As it is . . . I don't even have words.  Sending love to anyone affected by this nonsense.</li>
##   <li>Five new cases of #COVID19 have been reported in Nigeria: 3 in FCT &amp; 2 in Oyo State
## 
## As at 08:00 pm 27th March there are 70  cases of  confirmed #COVID19 reported Nigeria. 3 have been discharged with 1 death. https://t.co/9z58eIuWOE</li>
##   <li>The number of deaths have increased since yesterday and so have<span class='match'> the </span>number of #coronavirus cases.
## Please stay at home as much as possible.
## #InThisTogether 
## #StayHomeOhio https://t.co/zqVwP2cZ0x</li>
##   <li>How’s your quarantine going?  #covid_19 #quarantine #corona #coronavirus #dogquarantine #doglife #dog #mydogisatoddlerapparently #sendhelp #bostonterrier #bostonterrierlove #gettingmyhairdid #puppygram #puppylove #stayhome #stayhealthy #staystrong #junoyouloveme https://t.co/Kdo9EIZhh3</li>
##   <li>Government House Leader says<span class='match'> the </span>bill says COVID-19 is being designated a communicable disease to protect employees from losing their jobs and protects jobs.</li>
##   <li>Experts skeptical of study connecting blood type to COVID-19 risk https://t.co/LeNKTNB12W https://t.co/VP5ZiwF5vj</li>
##   <li>Here are some further details. https://t.co/UYAJ73KUpC</li>
##   <li>In #Patagonia we sale 620 hectare land! 2 rivers and native forest https://t.co/pTNcNDTC0w Price off $500,000 #USD 
## 
## #RealEstate #realestateagent #realestateinvesting #traveling #travelphotography #USA #China #CoronaCrisis #Covid_19 #property #PropertyInvestment #PropertyForSale https://t.co/LFRpriSEbu</li>
##   <li>A new FDA-authorized COVID-19 test doesn’t need a lab and can produce results in just 5 minutes https://t.co/urXsbvTG0r via @techmedy #techmedy https://t.co/OtjotdZij1</li>
##   <li>The United States has more cases of COVID-19 then any other country. How did this happen?!</li>
##   <li>Woman who died of COVID-19 refused to go to hospital, worried about bills, her son says https://t.co/QeQUWofqnc via @PittsburghPG</li>
##   <li>StedPic is still here to meet all your real estate needs, order our services online via https://t.co/nn9EhqoTje.
## #stayhome
## #staysafe
## #COVID19 https://t.co/Tt89dU22tm</li>
##   <li>So Trump administration withholding medical supply aid to states that<span class='match'> the </span>governors he doesn't like, wow. 
## 
## While in other countries, politics takes a back seat to everything that's happening in<span class='match'> the </span>world right now. #COVID19</li>
##   <li>The three golden rules of #COVID19:
## 1. ISOLATE 2. ISOLATE 3. ISOLATE</li>
##   <li>Eat<span class='match'> the </span>rich https://t.co/CT14qjAi0b</li>
##   <li>The 5 most common mistakes SMEs make in drafting purchase and sales contracts + solutions for SMEs during<span class='match'> the </span>#COVID19 crisis https://t.co/IDcGU3x5Rc #globalbiz #contracts #suppliers https://t.co/PSKwEhMPjL</li>
##   <li>@hari_chauhanji Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>@SurakCondemned @nowthisnews We don’t know if he had covid-19 so he could’ve infected many ppl possibly killing some. Over reactions are necessary for these kinds of actions to prevent other idiots doing<span class='match'> the </span>same</li>
##   <li>As<span class='match'> the </span>world numbers rise for COVID-19, I’m starting to raise an eyebrow at China’s figures. Did They have Diane Abbott counting ? #COVID<U+30FC>19 https://t.co/lYmzcI5oSK</li>
##   <li>Yup! We’re number 1. #covid19 #medtwitter #phychat #coronavirus #publichealth https://t.co/r0Cy3ZR7iX https://t.co/sp9rgxNkHT</li>
##   <li><U+0001F6A8> Join me in demanding Supreme Court justices delay their ruling on #DACA amidst<span class='match'> the </span>#COVID19 pandemic. Immigrant youth should NOT be put in danger of deportation and job loss. Sign here <U+0001F449> https://t.co/Mnn1MpNByB</li>
##   <li>Ok, this COVID-19 is hitting a little close to home now. This crap can stop anytime now</li>
##   <li>New #COVID19 Podcast! Tune in via ZOOM or Facebook Live (Eyetube) at 3:00 PM ET tomorrow (March 27) to watch hosts @blakewilly and @cataractMD talk surviving<span class='match'> the </span>storm &amp; supporting staff with Drs. Robert Weinstock and Elizabeth Yeu. Zoom: https://t.co/x0YPQyV1mq; password: 19087 https://t.co/OxIIbThoR1</li>
##   <li>The United States.
## The so called most powerful Nation in<span class='match'> the </span>world.
## Has surpassed China as<span class='match'> the </span>country with<span class='match'> the </span>most COVID-19 cases in<span class='match'> the </span>world.
## Poor planning is to blame for this smh @realDonaldTrump</li>
##   <li>If you are immunocompromised and are #Sheilding then feel free to use this wee poster #COVID19 - happy to amend wording for you if you need it, just give me a shout. https://t.co/3H0yAuJDjz</li>
##   <li>This is an incredibly petty response from<span class='match'> the </span>UK government. 
## 
## People struggling to breathe don’t give a damn if<span class='match'> the </span>ventilator has a British or EU flag on it. 
## 
## #Covid19 #Coronavirus 
## 
## https://t.co/0l1VUTxwcg</li>
##   <li>In light of<span class='match'> the </span>#COVID19 pandemic, we believe<span class='match'> the </span>CRA rulemaking process needs to be put on hold. To our friends at @USOCC &amp; @FDIC -- we need a rule-making suspension until<span class='match'> the </span>crisis is over. #TreasureCRA</li>
##   <li>@amyklobuchar Senator Klobuchar, in Milwaukee WI  COVID 19 is hitting<span class='match'> the </span>poorest black community<span class='match'> the </span>highest.  In my mind... if this pandemic is a "war" then refusing to release all 12,000 Department of Defense ventilators is indirectly forcing doctors to let patients die.  Almost criminal...</li>
##   <li><U+0001F44F><U+0001F44F><U+0001F44F><U+0001F44F><U+0001F44F>
## At 8pm<span class='match'> the </span>whole nation took part in #clapforourcarers to thank our amazing #NHS workers. 
## #COVID2019 #StayHomeSaveLives https://t.co/5APat5J6Ov</li>
##   <li>Daily coronavirus updates: 21 deaths involving confirmed COVID-19 in Connecticut, as Gov. Ned Lamont urges travelers from NY to self-quarantine https://t.co/5AVT7LtXgk</li>
##   <li>The Houston Health Department announced two new positive coronavirus disease 2019 (COVID-19) cases on Thursday, bringing<span class='match'> the </span>city's total to 68. https://t.co/tLuLYiibrV</li>
##   <li>SA Covid-19 cases rise to 1,170 https://t.co/7C5BBZNbg2</li>
##   <li>Released on a Friday afternoon amongst<span class='match'> the </span>#COVID19 crisis . 
## 
## Besides enabling<span class='match'> the </span>spread of a virus with non- existent border and bio security,<span class='match'> the </span>NSW Govt is also clearly committing #ecocide https://t.co/SYoUXEjxtq</li>
##   <li>This #COVID2019 outbreak is revealing<span class='match'> the </span>how deeply selfish we #Americans have become in<span class='match'> the </span>name of "freedom".
## 
## You're not really free if your neighbor is a self-centered prick.
## 
## We wanna go to beaches cause we can't see past our own Hyper-Individualism.
## 
## #Facts</li>
##   <li>In<span class='match'> the </span>midst of a pandemic, 1 in 5 patients admitted to a hospital with #COVID19 will be at risk for a surprise bill. This needs to stop. @soleil_shah and I discuss why #COVID could trigger a surprise billing crisis and how to stop it in @undarkmag https://t.co/oblxhEcP2x https://t.co/jYWVBy6Fb3</li>
##   <li>Don't let anyone else speak for<span class='match'> the </span>Federal Government on COVID-19 other than Dr. Fauci. https://t.co/vSuq206Agq</li>
##   <li>WTF is wrong with people?!? Keep her in forced quarantine #COVIDIDIOT #COVID2019 https://t.co/XUJzdlCTfZ</li>
##   <li>.Why is every other Australian sport suspended except Horse racing? how delusional are those people in power to make those decisions? @RacingAust @Racing @RacingInsider @racing_nsw @racing_qld @TheRacesSA @theracesWA @TasracingAus Health over $$$$ #covid19 #auspol</li>
##   <li>Our best defense against Covid-19? Science https://t.co/dwZQU6W5vO @AmerMedical @statnews</li>
##   <li>COVID-19 is not spreading any faster than it was previously. The reason it looks like it is because we have more tests now. Don’t let<span class='match'> the </span>media fool you.</li>
##   <li>@murpharoo He’s more interested in<span class='match'> the </span>economics of it, hence not closing shopping centres, he wants people to go shopping in April when this money starts to flow...stands out like dogs balls, we’re not stupid #coronavirus</li>
##   <li>https://t.co/BV7AQw1dRG Oh, yeah! A claim so outlandish that many people would actually believe it.
## 
## #WuhanVirus #ChineseVirus #CoronaVillains #CoronavirusOubreak #COVID19 #COVID19US</li>
##   <li>In response to COVID-19, we are making a special offer to financial institutions to give them<span class='match'> the </span>ability to accept small business loan applications online to better serve small businesses who need loans now more than ever. Special offer through 05/31/2020 https://t.co/P0z3CP0iz8 https://t.co/qstho3i4Cv</li>
##   <li>Google is committing $800M+ in new #COVID19 response efforts, incl $340M in ad credits for SMBs worldwide, $250M in ad grants for WHO
##  &amp; 100+ govt orgs globally, a $200M investment fund for NGOs &amp; banks to help small businesses access capital, and more <U+0001F92F>
## https://t.co/UNfjNNr701</li>
##   <li>How to distinguish COVID-19 symptoms from allergies and<span class='match'> the </span>common cold  https://t.co/OlDTsip6UA</li>
##   <li>Ingram Micro Helps U.S. and Canadian Channel Partners Solve for Expected Cash Crunch Amid COVID-19 https://t.co/QvsWtZQOvk</li>
##   <li>I’ll be talking about<span class='match'> the </span>market for us real estate investors in a video soon. #COVID19 #RealEstate #StayUpdated</li>
##   <li>If Y’all have learned anything from #COVID19 it should be You Can’t Just Eat ANYTHING.. <U+0001F987>
## 
## *Stop eating Ass..</li>
##   <li>Covid-19 presents people in<span class='match'> the </span>crosshairs of conflict with a terrifying new threat https://t.co/JXiF9eHDnr</li>
##   <li>@BashirAhmaad @MBuhari Oga! @MBuhari is covid 19 positive. Nigerians know<span class='match'> the </span>truth already. He who lives by propaganda will surely die by propaganda. What ever God has started, will surely come to end by his grace. 'The earth is cleansing itself'</li>
##   <li>"Coronavirus live updates: US cases top 100,000, California bans evictions for those impacted by COVID-19" https://t.co/zQWb8jTdwV</li>
##   <li>Some people are volunteering their time and skills in fighting covid-19, some are on<span class='match'> the </span>frontlines risking their lives to serve others.
## 
## Others sit back and do nothing. They are even so happy that this quarantine happened because they get to have a sort of “extended vacation”.</li>
##   <li>GMB host Piers Morgan branded a 'total b*****d' by Kirstie Allsopp as Twitter row worsens
## https://t.co/gnduOAWyki https://t.co/xQiG12ksJw</li>
##   <li>"Breaking News! Covid-19 has..." https://t.co/Drrg1iFL5S</li>
##   <li>Opinion: #StephenCurry's #coronavirus interview with Dr. Anthony Fauci is most significant move of his career. @CLupus63
## https://t.co/9pxniKIbgI</li>
##   <li>Judge Bill Stoudt confirms a 4th case of COVID-19 in Gregg County. @KLTV7</li>
##   <li>I HAVE A CRUSH ON A CUTE GIRL BUT CAN’T DO ANYTHING ABOUT IT BC IM NO LONGER ON CAMPUS BC OF COVID-19. IM GONNA CRY</li>
##   <li>Like every other thing in<span class='match'> the </span>world, US wants to have it more than anyone  and we do. Congratulations countrymen for now becoming # 1 country in<span class='match'> the </span>world to have more infected people from COVID19. #coronavirus</li>
##   <li>@RahulGandhi Only Congress Party is  actively engaged in politics during this hour of crisis.
## 
## Most regional parties are fully with centre.. that speak a lot!!
## 
## Shame on you @RahulGandhi !!
## 
## #COVID19 
## #CoronaLockdown</li>
##   <li>@skillsdevscot has issued new information in response<span class='match'> the </span>impacts of COVID-19 including contact info for Stirling businesses to access support and guidance. https://t.co/gk6t67QMI5</li>
##   <li>What happens when extreme heat collides with a pandemic?<U+00A0>   https://t.co/KnTlurWa34</li>
##   <li>End COVID-19 please so I can also end my quality education in USC.</li>
##   <li>One of my favorite moments each morning #COVID2019 #WinningHabits https://t.co/4F2EC1GXS9</li>
##   <li>The #coronavirus outbreak could result in serious setbacks to<span class='match'> the </span>fight against #ClimateChange <U+2013> which itself is a threat multiplier for some infectious diseases. We lay out challenges &amp; opportunities in a new feature on our blog: https://t.co/InZc0j46HI</li>
##   <li>Looks like it's gonna be a minute before I can rock a show again, gotta get this #covid_19 under control and get people healthy again first. Shout out to youralberta for taking<span class='match'> the </span>necessary steps to enforce… https://t.co/wLuoXuBORU</li>
##   <li>Donald Trump fulfilled a campaign promise. He said “America First”. Congrats @realDonaldTrump you succeeded. We are now first in #COVID2019. https://t.co/nSITgAErel</li>
##   <li>Hello there parents! Help your child understand<span class='match'> the </span>importance of hygiene during Covid-19 in a kid-friendly manner! We are here to help and support kids and parents!
## 
## https://t.co/zk6cQCKEsP</li>
##   <li>#IndiaFightsCorona #Lockdown21 
## <U+0001F64F><U+0001F3FB>respect to all warriors in fight against #coronavirus https://t.co/ixsMqKthzv</li>
##   <li>@HalSparks @geoff9cow @Michael_WI @MaryKPH @Soxwriter @RobertH48756949 CTV News: 'No Canadian' trends after Donald Trump floats idea of U.S. troops at border during COVID-19 pandemic.
## https://t.co/6m4eG4gDq4
## 
## via @GoogleNews</li>
##   <li>@ianrobo1 @Tomfurness2 @kingofthecentre @david_clarke91 @PeterWestYorks Chatted to a friend I used to live near this aft,she's an ICU nurse at Fairfield Hospital, Bury our nearest hospital, as of yday they had 19 #COVID19 patients
## Apparently from tomorrow England's figures will be counted 5pm to 5pm<span class='match'> the </span>next day, not sure when they'll be announced</li>
##   <li>Good one Robert Peston swearing during<span class='match'> the </span>questioning - ‘ah shit’ <U+0001F602> #COVID2019 https://t.co/ytBBfNa8iR</li>
##   <li>@AdamRacusin Now I’m uncaring about people with COVID-19? Gimme a break. Maybe you could’ve done more in terms of requesting supporting info from either side, not just their word. Do journalist no longer look to support their stories? I remember why I don’t watch 10news. You can be better.</li>
##   <li>I don't even tune in to<span class='match'> the </span>Farceur-In Chief Trump anymore; using #CoronaVirus #TrumpPressConference as a time to air his grievances. 
## .
## 
##  @realdonaldtrump
##  https://t.co/87RO4Oxxls</li>
##   <li>A cat in Belgium has tested positive for<span class='match'> the </span>Covid-19 virus. Viruses find a way to cross over zoonotically to humans. Maybe best not to kiss you cats or dogs on<span class='match'> the </span>lips at<span class='match'> the </span>moment. 
## 
## https://t.co/e59oXVYo6L</li>
##   <li>Something getting lost among all of this #COVID19 business is that Trump's EPA has decided it's "temporarily" no longer going to do its job, given businesses carte blanche to fuck up<span class='match'> the </span>environment. #resist https://t.co/8butPnemAG</li>
##   <li>America has such an insane, inhumane system 
## 
## https://t.co/lxZBcVhZvZ</li>
##   <li>Federal government shutting down network of in-person Service Canada centres over COVID-19 concerns. @LFPress https://t.co/NpqfytmSl4 https://t.co/XCcVuNokJf</li>
##   <li>London woman dies of suspected #Covid19 after being told she was 'not priority' https://t.co/PhM9Q744vu</li>
##   <li>@JHSPH_CHS @V2019N @MSchochSpana 12 Weeks #lockdown #COVID2019 for<span class='match'> the </span>UK</li>
##   <li>@jboyded @wendy_harmer I’m one of them. I have done a new Will and had it signed on Wednesday.  I’m super fit for my age but don’t take anything for granted. Descriptions of<span class='match'> the </span>horrific struggle to breathe that<span class='match'> the </span>#COVID19 victims can suffer have been very scary.</li>
##   <li>Pastor dies from COVID-19 <U+2014> after claiming coronavirus was a ‘mark of<span class='match'> the </span>beast’ conspiracy - https://t.co/vlQg6A847o</li>
##   <li>“I want them to be appreciative” <U+2014> (in reference to media, governors and local governments) @realDonaldTrump 
## 
## really?! We have a pandemic and he is all about how many accolades he can get?! Come. On. Let’s just work together and get help to all of these people. #COVID19</li>
##   <li>#iphmk resource limit is reached #macedonian map of #coronavirus infested statistics #македони<U+0458>а https://t.co/H8JrXB6dBJ</li>
##   <li>This collection of trustworthy videos, links and sources of information can help you navigate<span class='match'> the </span>flood of COVID-19 information. https://t.co/tH3Y0Mtvl0</li>
##   <li>@pablo_honey1 @realDonaldTrump @generalmotors @Ford Huh? Covid-19 is under control in<span class='match'> the </span>USA. He told us so...</li>
##   <li>Going out on<span class='match'> the </span>streets and getting<span class='match'> the </span>clap was an entirely different thing back in<span class='match'> the </span>day #clapforourcarers #COVID2019</li>
##   <li>I'm losing it
## #Quarantine 
## #COVID2019 
## #coronavirus https://t.co/vD0ilMUap4</li>
##   <li>Just my “OPEN OPINION” #freehealthcare #coronavirus #StimulusPlan #StimulusPackage you can agree or not! #CoronaLockdown https://t.co/Jd0S2GxgmO</li>
##   <li>Shishir Joshi at @projectmumbai1 is running a campaign to support doctors and nurses beat Covid 19. You can donate here: https://t.co/qUJLc4ynHj (5/n)</li>
##   <li>Some positive #COVID2019 news!
## 
## https://t.co/14yuJK6OL8</li>
##   <li>I just published how<span class='match'> the </span>coronavirus impacts me on Weebly. https://t.co/8rVf80FJEx via @weebly</li>
##   <li>Coronavirus pandemic | 400 million Indians to be infected by July, report suggests start of community transmission
## Contrary to<span class='match'> the </span>government's stance,<span class='match'> the </span>report noted that community transmission (Stage-3) of COVID-19 in India most likelyin early March.
## https://t.co/5ZuB0HvmHf</li>
##   <li>Tennessee doctors call on Governor Lee to take action against COVID-19-Their stories on<span class='match'> the </span>front lines and what they recommend we do on FOX 17 News @ 9-WATCH: https://t.co/wHWuG95mFT https://t.co/l3URYliFn8</li>
##   <li>Kingdom Animalia during<span class='match'> the </span>times of #COVID-19 in #Chennai on Thursday
## 
## 1. Kaliamman Koil Street, off Arcot Road
## 2. Near Koyambedu market
## 3 &amp; 4. Kamarajar Salai
## 
## Photos: K. Pichumani and K.V. Srinivasan for @the_hindu @THChennai https://t.co/dnYhD9vwax</li>
##   <li>@MehreenFaruqi more than %70 of people killed by Covid-19 are men, but ya it's about us.</li>
##   <li>At<span class='match'> the </span>Javits Center in New York City giving a briefing on #Coronavirus. WATCH: https://t.co/7nUNdNJo7K https://t.co/StU9iZbsXV</li>
##   <li>18 people have now died of COVID-19 in Quebec, as confirmed cases jump above 2,000 https://t.co/VwmbQxuIKQ https://t.co/51tlhPzuiW</li>
##   <li>It is easy to hate and it is difficult to love. This is how<span class='match'> the </span>whole scheme of thing works. All good thing are difficult to achieve; and bad things are very easy to get----CONFUCIUS #coronavirus #CoronaLockdown</li>
##   <li>@ColoradoDavidSu Just trying to make money out of<span class='match'> the </span>crisis, I believe #COVID2019</li>
##   <li>UPDATE - some less common symptoms of Covid-19 are now being reported.  #TheDailyFeed #StayConnected
## https://t.co/56neFrxAGm</li>
##   <li>@LeahFHardy Of course. But at this stage, decisions concerning covid-19 are much bigger than individual politicians/parties, or individual nations. Every leader is having to push political ideology and cultural norms aside and do whatever<span class='match'> the </span>hell<span class='match'> the </span>experts think might work.</li>
##   <li>Israel Carrera adopted a healthy lifestyle while living in Miami Beach. He thought he had a cold. He was hospitalized for about nine days before he died of COVID-19 on March 26. He was 40.
## https://t.co/jE6PZADcKJ https://t.co/LnGBDWAVg6</li>
##   <li>#SocialDistanacing #coronavirus good idea https://t.co/POBFJZ2RBF</li>
##   <li>Trop top pour les copains #agriculteurs @Fragritwittos ! 1<U+FE0F><U+20E3>0<U+FE0F><U+20E3>0<U+FE0F><U+20E3>0<U+FE0F><U+20E3> mercis @AnaisLochon <U+0001F44D>
## #FrAgTw #agriloving #ceuxquifontlelait #ceuxquifontlaviande #ceuxquifontlesfruits #ceuxquifontleslegumes #ceuxquifontlescereales #ceuxquifontlevin #confinement #COVID2019 @InstitutElevage https://t.co/zaUgRh0zkN</li>
##   <li>We shouldn’t be “balancing”<span class='match'> the </span>economy v health now. @ama_media &amp; Panel of Experts aren’t, CMO is. Health comes first, and will save<span class='match'> the </span>economy more in<span class='match'> the </span>long run #COVID19au #COVID<U+30FC>19 #COVID19Aus #Covid_19 #auspol https://t.co/aRL3gBPNwk</li>
##   <li>@JoshiPralhad Respected sir
## JSS K H KABBUR INSTITUTE OF ENGINEERING, VIDYAGIRI  DHARWAD... NSS UNIT...COVID 19 awerness video
## Facebook link
## https://t.co/4ZWioPRES2
## Youtube link 
##  https://t.co/3GI7kgqjKJ</li>
##   <li>Thank<span class='match'> the </span>Lord for<span class='match'> the </span>Medical Team that @POTUS and @VP  have put together.  Today's Presidential Briefing was bringing hope and putting numbers out there concerning<span class='match'> the </span>COVID 19.  Keep up<span class='match'> the </span>good work.</li>
##   <li>Money set aside for COVID 19  fix is for for scum bags of PPBM and UMNO to also steal from in all<span class='match'> the </span>creative accounting / confusion @HarithIskander  @joannekam @liewcf @NazrilIdrus  @paultantk 
## @AIOMAR @AishahSinclair @afdlinshauki @alexyoong 
##  @flizzow @ChelsiaNg Cash is king https://t.co/mN75b6O72T</li>
##   <li>A9: Our friends at @VoicesOfYouth recently highlighted "COVID-19 Photos by Bored Teens,” a Seattle-based account that helps young people feel a little less alone during these often scary times. Take a look: https://t.co/i6faizq2h8 #Give4CovidRelief https://t.co/RMFOAlvMp5</li>
##   <li>bts tour army comeback brazil gay NSFW 18+ namjoon blackpink loona army gay lesbian hot kinky twink coronavirus charli dixie quarantine covid-19 donald trump kim kardashian taylor swift kanye west #AnimalCrossing // now i have your attention goodnight<U+0001F495> https://t.co/qHZpfMoD5Z</li>
##   <li>@ABaskerville10 @NBCPhiladelphia My son is working there to get it up and running for covid-19 patients . Thank you guys for working round<span class='match'> the </span>clock</li>
##   <li>Covid-19 is nature's wake-up call to complacent civilisation https://t.co/pKXtH3IbBu</li>
##   <li>@YOO_AD_ Lml I can’t imagine, I know you love<span class='match'> the </span>outside. You Should be taking pics in this pandemic #Coronavirus</li>
##   <li>Stress free from COVID-19 https://t.co/PuTBWg3ja7</li>
##   <li>If 21 of<span class='match'> the </span>46 tested for #Coronavirus so far are positive, what is<span class='match'> the </span>likely infection rate for<span class='match'> the </span>3,500 other passengers &amp; crew confined aboard that same ship? https://t.co/Cg7QLtH3Qz 02
## #FBR</li>
##   <li>@YRP What kind of selfish human being does that?!  It could be a missing child or, as it was today, an important Covid-19 warning.</li>
##   <li>Just to be clear, it is not a completely outlandish possibility that<span class='match'> the </span>number of deaths in America from #COVID2019 could surpass American wartime casualties for all American wars... ever.... combined.
## 
## Have a cocktail!
## 
## @PodSaveAmerica</li>
##   <li>Serious question.......how many toilet rolls are all your hoarders through after 10 days? I think we're only through 1 and a quarter and that includes curry night and a @Dominos_UK? <U+0001F937> <U+0001F4A9>
## 
## #Coronavirus #COVIDIDIOT</li>
##   <li>Work starts on Birmingham Airport Covid-19 mortuary for up to 12,000 bodies https://t.co/vkJNsTWsAf</li>
##   <li>@LoriShemekSanitizing these seven should help cordon  #coronavirus.
## Psalm 26:6
## I will WASH MY HANDS mine hands in innocency: so will I compass thine altar, O Lord:</li>
##   <li>The Senate updated<span class='match'> the </span>CARES Act to provide COVID-19 relief, including stimulus funds for individuals, expanded unemployment insurance, small business loans and more. Get<span class='match'> the </span>details on our blog: https://t.co/fKBeOD3o5A https://t.co/jtikhH7zg2</li>
##   <li>So today it was confirmed I am being furloughed
## 
## #CoronaLockdown #COVID19 #furloughleave</li>
##   <li>@hatchdw @DRVCommonality @projectnoah Lol- this is my new normal!!! We now have a nice “collection” of roly poly bugs and have created “homes” for them filled with dirt, leaves and fruit! #COVID19 #Homeschooling</li>
##   <li>"I will never go anywhere that I wouldn't go myself". "It is your duty to do what you can when u can" --Gov. Cuomo 2.27.20 Press conference. Now that is real leadership! NY is blessed to have him at<span class='match'> the </span>helm. #coronavirus #GovCuomo</li>
##   <li>#BREAKING 
## 
## #Italy #coronavirus WORST day: Deaths rate highest since start of #outbreak
## 
## https://t.co/Tg5w5p44KG</li>
##   <li>Death toll half way through Friday is REALLY high!
## 
## If this number doubles by<span class='match'> the </span>end of<span class='match'> the </span>day then we're not in good shape.
## 
## @realDonaldTrump must isolate close to a million asymptomatic Americans to prevent their transmission of #COVID19. Every week this number doubles!</li>
##   <li>#COVID19-<U+0001F1FA><U+0001F1F8>USA
## 
## BREAKING: 11,533 new cases of coronavirus and 182 new deaths reported so far.
## 
## <U+0001F535> Total Cases: 96,968
## <U+0001F535> <U+0001F195> Cases: 11,533
## 
## <U+0001F534> Total Deaths: 1,477
## <U+0001F534> <U+0001F195> Deaths: 182
## 
## <U+26AA> Recoveries: 2,453
## 
## #CoronavirusPandemic</li>
##   <li>Thank you @LSSFoodPantries for continuing your work of filling<span class='match'> the </span>needs in our community during<span class='match'> the </span>#COVID19  crisis. #LiveUnited https://t.co/PrgAZDAbyi</li>
##   <li>We need<span class='match'> the </span>cure ASAP!!!
## <U+0001F9A0><U+0001F926><U+0001F3FE><U+200D>♂<U+FE0F> #RicoRants #like #share #comedy #funny #coronavirus #quarantine #black #Chicago #Woodside #FloodTheMarket https://t.co/oN81tkCccg</li>
##   <li>A slight uptick in homeschool shootings<U+2014>perpetrated by teachers.
## #stayhome #covid19 #CovidHumor 
## #covidhomeschooling</li>
##   <li><U+2705> Covid-19 or not, Western New York has serious health issues - Buffalo News <U+0001F44C> <U+0001F449> https://t.co/ySwmzUdgfU <U+0001F6A9> #Medical #GroupZirigoza</li>
##   <li>What are governments doing? The indomitable @Ugentilini has been tracking social protection responses to COVID-19 around<span class='match'> the </span>world. Most measures include cash transfers, but other options include subsidized social security and unemployment. https://t.co/e0vbe5Wom5</li>
##   <li>What<span class='match'> the </span>world is experiencing in these 4 months isn't less than what Yemenis hv been experiencing in 5 years!
## At least anyone can protect himself  from #Coronavirus, But Yemenis can't protect themselves from<span class='match'> the </span>US-F15 jets bombs! #5YearsOfWarOnYemen https://t.co/YVhC6iGdOQ</li>
##   <li>Insanity 
## 
## Mississippi Churches, Stores Reopen As Governor Overrides Mayors’ COVID-19 Orders https://t.co/hmoQNz1zrL</li>
##   <li>HitachiVantaraWe are grateful for<span class='match'> the </span>collaboration and support of our customers, employees and partners every day. See what actions Hitachi Vantara is taking to support<span class='match'> the </span>continued well-being and safety of our community: https://t.co/9bFOeY7tOY https://t.co/UwX0087tJm</li>
##   <li>Now,<span class='match'> the </span>epidemiologist predicts, hospitals will be just fine taking on COVID-19 patients and estimates 20,000<U+00A0>or far fewer<U+00A0>people will die from<span class='match'> the </span>virus itself or from its agitation of other ailments, as reported by New Scientist<U+00A0>Wednesday. https://t.co/I8eUhCLJ7P https://t.co/hKuzMgbpRz</li>
##   <li>#BorisJohnson Come on chaps, let’s have a #clapforboris tonight! #FrontLineHeroes #COVID19 #nhs #unison #rcn #unite</li>
##   <li>Practice #SocialDistancing people... #CoronaVirus https://t.co/CJphkVD1lq</li>
##   <li>Something of a milestone.
## 
## Numbers are changing at an incredible rate.
## 
## #coronavirus https://t.co/2la4vFqMPY</li>
##   <li>I can’t believe how far this stupid corona has come to what a crazy virus hopefully it ends soon but not soon enough. #COVID2019 #COVID19 #CoronavirusOubreak</li>
##   <li>DUMP TRUMP IN 2020!
## DEMAND CRIMINAL 45 BE ARRESTED FOR COVID-19 MANSLAUGHTER!!
## MAKE AMERICA AMERICA AGAIN!!! https://t.co/dviZNLB43y</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/aCDTGkwX63 via @YouTube</li>
##   <li>Bell Canada asked to set aside phone charges for Ontario prisoners during COVID-19 pandemic https://t.co/oUUiFEzMlM</li>
##   <li>UK Government: PROPER Support for Owners/Directors of their own Ltd Companies from UK Government COVID-19 - Sign<span class='match'> the </span>Petition! https://t.co/5VT9s18tBJ via @UKChange</li>
##   <li>Latest #COVID19Colorado updates: 
## 
## <U+27A1><U+FE0F> Sen. Bennet to hold telephone town hall tomorrow at noon. 
## <U+27A1><U+FE0F> Call 211, not 911, for #coronavirus resources
## <U+27A1><U+FE0F> U.S. surpasses China in number of positive cases for COVID-19.
## 
## https://t.co/moPUUHGg0Q</li>
##   <li>Cybersecurity vigilance can't slip during this tough time.  Oil &amp; gas companies are being hit hard - a crude price crash, supply glut, and workforce impacts of COVID-19.  Unfortunately, entities want to take advantage... https://t.co/UjvmZloFAQ</li>
##   <li>The last time I remember I was keeping up with<span class='match'> the </span>figures between China and America it was about<span class='match'> the </span>number of gold and silver medals they acquired in Olympics and now it’s<span class='match'> the </span>number of cases of #COVID2019 <U+0001F622></li>
##   <li>Hey @Twitter @TwitterSupport @jack: Can we get a “false information about #coronavirus” category when we report a tweet? Currently I have to find something and it’s usually not a match. I have a lot of tweets to report. Thanks.</li>
##   <li>Tracy Lawrence - Paint Me A Birmingham https://t.co/mtmBUFRd0u via @YouTube Sing along with @tracy_lawrence and pretend that you are there at a live #countrymusic concert. Remember that there is a life after #coronavirus.</li>
##   <li>The UK govt @BorisJohnson got<span class='match'> the </span>#coronavirus testing dangerously wrong. Free read from @FT https://t.co/LMddX3VmUa</li>
##   <li>today i told my mom that my throat hurts and i asked for obh kan, and she was looking at me as if im infected by<span class='match'> the </span>covid-19 and my brother <U+0001F440> <U+0001F629><U+0001F629></li>
##   <li>It’s #LemmingsDay at<span class='match'> the </span>@NYSE folks!
## 
## Highly intelligent lemmings have once again locked arms &amp; are running off a cliff together. 
## 
## This time herd was scared by US having most cases of #CoronaVirus (because we’re actually testing &amp; not lying about results, nimrods) #StockMarket</li>
##   <li>Data visualizations show internet usage in inner cities idled by COVID-19 https://t.co/CHgn8MPoJp https://t.co/g6WdFgijLO</li>
##   <li>BBC news just announced 115 new UK deaths in past 24 hours, first time it's gone over 100 #COVID2019 #coronavirus</li>
##   <li>#COVID2019,
## #NH here we go. It's #official. Time to learn to be a cave dweller. #Kids staying home from #school until May 4 continuing #online learning. Thank you #Governor Sununu for being #proactive. We will #survive this. <U+0001F4AA><U+2764> https://t.co/8l61MBn7Fg</li>
##   <li>China closes<span class='match'> the </span>door to all Foreign Nationals https://t.co/KRYmTsZqj5    #COVID2019   #China</li>
##   <li>@RahulGandhi Italy records almost 1,000 #COVID19 related deaths, highest in a day: AFP news agency
## Hey, @RahulGandhi Don't spread fear in public rather than to support<span class='match'> the </span>government.</li>
##   <li>Now on https://t.co/0J2UdYHyh5
## 
## BREAKING: Davido’s fiancee, Chioma, tests positive for COVID-19</li>
##   <li>Coronavirus Chicago: Lakefront, 606 trails, parks, beaches closed to public from Ardmore south amid stay-at-home order due to COVID-19 https://t.co/VAQHHVgLpX via @abc7chicago  How do you make a Chicagoan stay off beach?  Cases Covid-19 1875 in State of IL 16 deaths. https://t.co/TrwVrAbyZm</li>
##   <li>Good progress in #COVID19 coverage decisions but still very limited given<span class='match'> the </span>amount of actual testing done in<span class='match'> the </span>US. What happens when providers can’t test<span class='match'> the </span>patients because of strict criteria? https://t.co/CwdiDve9dT</li>
##   <li>You want context on how badly @realDonaldTrump has handled #COVID<U+30FC>19? The US now has more cases than China, which got<span class='match'> the </span>virus first and has almost five times our population.</li>
##   <li>Someone from my local Foodland just stopped by to drop off hand sanitizer. Said they were stopping at all<span class='match'> the </span>businesses that were open. Really cool. Shout out to @HaliFoodland for<span class='match'> the </span>kind gesture! #COVID19 #covid19Canada</li>
##   <li>Covid-19: Time for pastors and politicians to give back to society https://t.co/jBDqAX2w34 https://t.co/2LnUVR26fb</li>
##   <li>#Geopolitical #Science has its #Empirical reasons that #Scientific #Reason does not understand.
## ↓
## #Epidemic in #China: January (No #Treatment)
## +
## #Global #Inaction =0°= #Late #Reaction
## =
## #WHO declares on: March 11, 2020
## #Pandemic: #SARSCoV2 / #Coronavirus / #Covid19
## #CHAOS https://t.co/1f51PBIP4O</li>
##   <li>#CoronaVirusUpdates: Mizoram has not reported any new case of novel coronavirus since<span class='match'> the </span>first case was detected on Wednesday
## 
## @zoramthangaCM
## #Day4 #CoronaUpdate
## #COVID2019india
## https://t.co/yIKdX1gtWG</li>
##   <li>Protect your mental well-being Carers <U+0001F496><U+0001F54A><U+FE0F> 
## If you know someone isolating with their vulnerable person, please get this info to them. 
## Caring at home is mentally &amp; emotionally challenging already! Imagine how<span class='match'> the </span>current crisis ups that ante. 
## https://t.co/9xYLyCs5M6</li>
##   <li>Those who missed<span class='match'> the </span>live show..
## 
## https://t.co/HQJnEsCX1s  
## 
## #COVID2019 #coronavirus #Cancer https://t.co/yrTouvA7XL</li>
##   <li>NEWS:  President Trump @realDonaldTrump Job Approval Rating Surges to Highest Point of Presidency https://t.co/H6xs5Lt9UX #Trump #News #ShareTheNews #CoronaVirus</li>
##   <li>@LeoVaradkar Can I travel 10 miles to pickup my daughter. Her mother is a healthcare worker. We are separated? #COVID19</li>
##   <li>Photo shows NY hospital staff using trash bags as protective gear https://t.co/PWz6d51MRq #coronavirus</li>
##   <li>@JCHannah77 @RemainingKind Heard reports for weeks that some hospitals have had to do it because of triage.....I believe that this is why they "sheltered"<span class='match'> the </span>most vulnerable....partly to keep numbers down. Also Covid 19 Act changes rules on reporting "cause of death". I know it is all horrible.</li>
##   <li>EU Android search choice screen’s impact delayed due to COVID-19 https://t.co/xiI3WIInDo https://t.co/wo4NLaLGXc</li>
##   <li>Amidst The gnashing of<span class='match'> the </span>teeth and sorrows of this pandemic  Covid 19 . Let's reflect on "Heaven" 
## Cause thats all we got and that's where Eternal life resides . This pandemic will  pass .Read Mark 13:31-36  @Ugaman01 @REALCARTHIE @FynShakirah
## <U+27A1><U+FE0F>
## https://t.co/wd5ljFd7Ju https://t.co/yFv5Xl5gKg</li>
##   <li>Well, if #COVID19 isn’t personal yet for you, it will be. BigKid’s friend’s great-aunt succumbed to it. RIP</li>
##   <li>Since<span class='match'> the </span>whole wolrd has been affected by<span class='match'> the </span>COVID-19,the GOOUNION brand of our RINA TECH group company can provide medical consumables (masks, forehead guns, etc.) which suppling to countries affected by<span class='match'> the </span>global epidemic. 
## https://t.co/1owPQspg1P</li>
##   <li>Dr. Anthony Fauci says health officials are working to control<span class='match'> the </span>#Coronavirus contagion while it is on<span class='match'> the </span>brink of becoming a pandemic.  https://t.co/P8zo4BM7SL
## #VoteBlueNoMatterWho</li>
##   <li>The # of domestic violence &amp; child abuse cases has risen exponentially since this quarantine started. Remember that this situation affects people in more ways than one. Please listen to what you're being told to do so we can hopefully get a hold on this virus.
## #COVID19</li>
##   <li>We all must practice safe running, with 6 feet minimal distance, running solo, and giving maximum right-of-way when passing anyone. Stay safe -- and running (and at off-hours if possible). https://t.co/yZDO7HOS8S</li>
##   <li>How long does<span class='match'> the </span>coronavirus live on different surfaces? Do face masks help? All of your #COVID-19 questions answered.
## https://t.co/rxm7LMiRUh</li>
##   <li>https://t.co/5T6W96qUH8 I rarely agree with Trump. Today he did<span class='match'> the </span>right thing. He ordered him thrown out of #GOP! #Housefloor #senatefloor #cnn #msnbc #nyt #Wapo #COVID2019 #pandemia #wtop #senategop #senatedems #dems #texas #kentuckytogether #democrats <U+2066>@JoeBiden<U+2069> <U+2066></li>
##   <li>People really need to be enlightened about this virus , it's clear that<span class='match'> the </span>only place where we #stayhome #staysafe is on social media finish! Tell your neighbors what you learn or know about #COVID19 ...spread<span class='match'> the </span>word !
## 
## #CovidNGR</li>
##   <li>The need never stops.
## #GiveBlood
## #COVID2019
## #NHS https://t.co/oXghiPZPfN</li>
##   <li>Can we please just have<span class='match'> the </span>medical experts on TV for<span class='match'> the </span>daily briefings? I just want to hear from folks that are experts on COVID-19.</li>
##   <li>My bonus game won, thanks to mrjohnbet I really appreciate your kind gesture. Keep on subscribing @johnfixed01 for greater winning. #COVID19 #sydneytalker #ImamOfPeace #StayHome #PresidentCovikk #Quarantine https://t.co/6zatmXvgYm</li>
##   <li>Please y'all need to hit<span class='match'> the </span>streets with more sanitizers these local people hardly get access to it and educate them on how it's used charleyy these "officers" can afford it. Oh  #COVID2019Ghana #COVID2019 #StayAtHomeGh</li>
##   <li>@StupidJonathan I hope you are doing well amidst this pandemic. Mattress Mack and GF believe that<span class='match'> the </span>blessed must always help others. You can help me in providing supplies to our senior citizens. To know more, click: https://t.co/eGZP4y1mLS</li>
##   <li>So all it took was non-Nigerian twitter to bring Buhari out of his cocoon of irresponsibility and start scrambling to get his media aides to send out tweets and give interviews regarding Covid-19? Essentially, look alive socially. Smh</li>
##   <li>If you think<span class='match'> the </span>system can't handle #COVID19. Let's take a look into our already broken mental health system in dealing with thousands of new patients with physical brain damage.</li>
##   <li>Built an (extremely!) simple dashboard of daily totals of #COVID19 in Allegheny County, using update archives from @PAHealth.
## 
## Interactive version is here: https://t.co/SMZ9CGGDxO https://t.co/v24EwOSHRA</li>
##   <li>The Los Angeles City Council just approved more paid sick leave for workers at companies with 500 or more employees nationally. This would not apply to people taking sick leave at companies that were temporarily closed due to COVID-19 related orders.</li>
##   <li>(7) What I'm saying here is, take ALL<span class='match'> the </span>necessary precautions you can and be smart about<span class='match'> the </span>#COVID19 and you should be safe enough! Everyone's different, that's true but still...take care of yourselves!</li>
##   <li>The coronavirus (COVID-19) has pushed many small businesses to<span class='match'> the </span>brink. If you’re struggling, consider a new SBA loan launched specifically because of<span class='match'> the </span>outbreak.https://t.co/71JrjXFCIS https://t.co/ta1y3VPglm</li>
##   <li>BREAKING: A veteran at Overton Brooks VA Medical Center in Shreveport has died of complications from COVID-19. https://t.co/gYwvqw19CD</li>
##   <li>Philabundance temporarily closes after employee reports COVID-19 contact | #Philly #Covid19 <U+2066> https://t.co/vNkCOHIJBR</li>
##   <li>As eggs become more expensive due to “shortages”, govt party PPRP starts to sell eggs at lower-than market price at its HQ.
## 
## Dunno about you but it seems this govt party has a knack to find goods others can’t get their hands on. Masks, eggs... <U+0001F914> #COVID19 https://t.co/6DOH0xTKdN</li>
##   <li>@mryderqc I have already been given two letters. One to guarantee school children a place (15years too late) and<span class='match'> the </span>other to say I am allowed out and to travel.  I can see what's coming and they will try to restrict movement.  Try closing @GOVUK offices currently spreading #COVID19 first.</li>
##   <li>Why? Just why? #SleepyJoe is senile who shouldn’t be running for President &amp; should run to a nursing home instead for goodness sake. At best he doesn’t know what day it is, at worse he’s slamming people for being “full of shit”. 
## 
## My God....
## 
## #Coronavirus #auspol https://t.co/PwicmQXvQm</li>
##   <li>Anyone else noticed<span class='match'> the </span>similarities between Caligula and Tump? #CoronaUpdate #COVID19</li>
##   <li>Support funds against #COVID19 
## Total 15 Billion +.</li>
##   <li>Apple announces COVID-19 screening app with CDC and White House https://t.co/SG38suAvd6</li>
##   <li>#Bangladesh is in a race against<span class='match'> the </span>clock to stop<span class='match'> the </span>spread of #coronavirus in<span class='match'> the </span>#Rohingya refugee camps. Authorities should stop obstructing aid workers’ ability to provide emergency health services and coordinate essential preventive measures: @HRW https://t.co/PyJpXyzfhA https://t.co/XSHtGq6z9b</li>
##   <li>NHS staff have been wearing far less (PPE) than World Health Organization (WHO) recommends when caring for Covid-19 patients. WHO’s advice recommends wearing a visor &amp; a respirator mask, whereas UK advice issued earlier this month recommended a standard surgical mask - Guardian</li>
##   <li>#NewBluehand #Bluehand I just wrapped up tonight’s CNN town hall, where we discussed COVID-19 and how we move forward. I know times are tough, but<span class='match'> the </span>stakes in this election have never been higher. If you could chip in a few dollars I would really appreciate it. …</li>
##   <li>This 2,000 capacity hospital has been set up in Tehran by<span class='match'> the </span>army and<span class='match'> the </span>plan is to create more in Iran depending on need.
## 
## For<span class='match'> the </span>latest on #coronavirus around<span class='match'> the </span>world, head here: https://t.co/TYxht7Wxhg https://t.co/e9vdMQs10F</li>
##   <li>I don’t want to make a big deal about this or anything, but in<span class='match'> the </span>coming post apocalyptic era I shall be a king (or at least a high level scullery maid) based upon my skill in procuring toilet paper this morning.
## 
## #COVID19 https://t.co/c49XUfvDcG</li>
##   <li>Study: COVID-19 Impacts Men, Women More Than All Other Genders Combined https://t.co/YBlqu0h7Py</li>
##   <li>@DrOlusesan Major intention of<span class='match'> the </span>adversaries is to take attention from<span class='match'> the </span>WHO acclaimed efforts of PMB admin to minimize<span class='match'> the </span>spread of COVID-19 in Nigeria.Or what else can make some Nigerians to ignore reality of a ravaging virus to waste time&amp;dwell on Inanities that benefit none?</li>
##   <li>I get that Trump is not reopening America, and that experts are frantically stopping him by repeatedly explaining<span class='match'> the </span>terrible consequences of that, but every time he does these press briefings he convinces more idiots it almost over. #Covid19 #RussianPresident</li>
##   <li>@AlexBerenson @Cernovich I’m not cool with that.  But I understand why others feel that way. #QuarantineLife #coronavirus</li>
##   <li>In response to<span class='match'> the </span>COVID-19 crisis, our incredible costume department is constructing thousands of medical masks to meet<span class='match'> the </span>needs of healthcare professionals.
## 
## Want to contribute? Please DM us if you are able to donate grosgrain ribbon or poly twill tape at 3/8” wide. https://t.co/ZQqoUbrE28</li>
##   <li>@Ian_Burnett_ She's trying to build a another case for #indyref2  with<span class='match'> the </span>international community by showing she cares. We all know that #indyref2  is all she brothers about and not #COVID19 #coronavirus  Damn her.</li>
##   <li>Q2. If a nonviolent prisoner dies in custody from Covid-19, will their families have<span class='match'> the </span>right to sue<span class='match'> the </span>state for<span class='match'> the </span>negligence of care?</li>
##   <li>The @PierceCo website now features a resource page for ways to help and get help during COVID-19. https://t.co/yMAnLNSS6W
## #Community #Resources https://t.co/142vF5Mukm</li>
##   <li>This week's Facebook Live event went so well that we are doing it again! Join us again on April 1, when we will have Gene Takagi with us and discuss some of<span class='match'> the </span>legal issues that nonprofits are facing due to COVID-19. https://t.co/1Qd8OGdfOe</li>
##   <li>The #USA is a shit show. We are NOT #1. We are NOT #MakingAmericaGreatAgain. 1 check for some isn’t going to cut it @POTUS. Millions of us are falling through<span class='match'> the </span>cracks. #SSDI is not coming through quick enough. How can I qualify for unemployment when I’m sick? #COVID2019 https://t.co/9U4dZNujHl</li>
##   <li>Cause <U+0001F987>Batman says so! #COVID19 #StayAtHome https://t.co/I1Nl9LFNIt</li>
##   <li>@shtoopidTHICK Yup . They just hit us with another COVID-19 update .</li>
##   <li>@epsilon3141 @ABetterYouToda1 @HelenBranswell We were instructed to NOT wear masks and leave them to<span class='match'> the </span>HCW. I have felt exposed  many times but went by<span class='match'> the </span>state and CDC covid 19 instructions.  I knew that was stupid but felt bad for<span class='match'> the </span>HCW.</li>
##   <li>@RealCandaceO swine flu has death rate of 0.1%, covid-19 has over 1% death rate and over 10% in Italy for confirmed cases</li>
##   <li>UChicago Medicine brings back employees exposed to COVID-19 https://t.co/fFMM6fjy1g via @crainschicago</li>
##   <li>Column: Andrew #Cuomo and Gavin #Newsom deliver<span class='match'> the </span>leadership and straight talk #trump won’t
## 
## #coronavirus  https://t.co/Q4KvC6W2lq</li>
##   <li>Thank you from<U+00A0>the bottom of our Hearts<U+2764><U+FE0F> Mister @JackMa 
## #CoronaVirus https://t.co/4gxWUjddKY</li>
##   <li>One of<span class='match'> the </span>worst things about being single is falling off your bed. Especially when you're a fluffy person and knuckling up in self-isolation from Rona aka Covid 19.  Gosh!!! This hurts.  Self isolation is not a problem to me. Been doing it for 9yrs now. It's<span class='match'> the </span>fall and hurt.</li>
##   <li>"Continued infection there will pose a continued threat to<span class='match'> the </span>world, and thus<span class='match'> the </span>outcome of<span class='match'> the </span>COVID-19 epidemic in Iran will affect<span class='match'> the </span>world’s ability to bring<span class='match'> the </span>virus under control."
## 
## https://t.co/iW7pH77zpG</li>
##   <li>Well, he got one thing right. He’s done quite a job on this country<U+2014>con-job that is. Moved from grifter to murderer. #COVID2019 #NotDyingForWallStreet #EasterMassacre https://t.co/F9LdLK1JTz</li>
##   <li>COVID-19 Updates: Saturday 28th March 2020, 06:00 A.M. https://t.co/hK67VxwuhI</li>
##   <li>I know times are tough right now but “This too shall pass.” 
## #covid_19 #europe #Covid19usa https://t.co/tT1A6U2KgL</li>
##   <li>Please we want to know<span class='match'> the </span>state of our president @Mbuhari we demand you address us today as regards #COVID<U+30FC>19. You should be bold enough to tell us your health status and as well reassure<span class='match'> the </span>people how committed you are in tackling<span class='match'> the </span>virus in Nigeria. Please do<span class='match'> the </span>needful</li>
##   <li>The graphic is self-explanatory. 
## #coronavirus #Covid-19
## #wuhan #virus https://t.co/6c9Hf3MIjr</li>
##   <li>A request to all<span class='match'> the </span>uncles &amp; brothers as it’s Jummah tomorrow. 
## 
## If your local Mosque is open for prayers, please do not go. Just pray at home. 
## 
## It’s a priority to protect yourself and others by avoiding congregations during such a time. 
## 
## #coronavirus https://t.co/Zm2PzLESeJ</li>
##   <li>Alright I’m tired, I’m going to find<span class='match'> the </span>cure to this COVID 19 shit myself</li>
##   <li>The national task force for Covid-19 constituted by Indian Council for Medical Research (ICMR) has recommended hydroxy-chloroquine as a preventive medication for high-risk population. According to<span class='match'> the </span>advisory, it should be given to high risk population.  https://t.co/aNc9uYfnUi</li>
##   <li>I'd humans can make a real Transformer, I'm certain we can figure out how to beat #COVID19 https://t.co/bWPm8inbY7</li>
##   <li>@IdiotTracker @jasoncrawford That’s is not<span class='match'> the </span>only standard of morality. Honestly this has nothing to do with morality. Plenty of people with good moral character will never donate a penny to COVID-19 research.</li>
##   <li>We have also decided to sanction INR 4,000 as a one time relief to all GBOC workers under<span class='match'> the </span>scheme “Goa Labour Welfare Board Assistance Scheme COVID-19”. This shall benefit another 4000 eligible labourers.</li>
##   <li>Elsevier: We are helping support<span class='match'> the </span>response to COVID-19! https://t.co/e4Z4qxnqt4
## 
## Everyone else, knowing that their business model is based on preventing access to life-saving knowledge and that this is a horrific PR stunt: https://t.co/zpjuTx9tO5</li>
##   <li>it really took #COVID19 for y'all to spend time with y'all family ...  <U+0001F44E><U+0001F3FE></li>
##   <li>@SacrificialMods is streaming live right now on YouTube!!
## 
## Sims 4 Chill Stream - Covid-19 Quarintine. https://t.co/VrR8OcAmHH</li>
##   <li>You're encouraged to practice #SocialDistancing. Keep a safe distance from others to ensure everyone stays healthy. https://t.co/FnUIb03Ohj #COVID19 #COVID19AZ</li>
##   <li>A personal story of living through Covid-19 https://t.co/IPoaKevPJI</li>
##   <li>C'mon, ppl! What's<span class='match'> the </span>WORST that could happen if you don't get your abortion; if you don't get to kill your baby?You're not suddenly sick &amp; unhealthy. No! You become<span class='match'> the </span>mother of a newborn baby boy or girl. How is that SO BAD? #AbortionIsMurder #COVID19
## https://t.co/8MRE8KMrxk</li>
##   <li>New NB Podcast out today - CORONAVIRUS SPECIAL: COVID-19 in<span class='match'> the </span>Community. @drnealtucker discusses this week's covid data including hydroxycholorquine &amp; azithromycin, &amp; how hospital data on covid presentation doesn't help in<span class='match'> the </span>community. https://t.co/so7bYWgvIY</li>
##   <li>We encourage students to visit<span class='match'> the </span>Student FAQS and Resources page. Get answers to some of your questions, information about resources and access to how-to videos.
## https://t.co/ikjm9NVjQV https://t.co/H2GFKeSEs8</li>
##   <li>Be Prepared India. It has entered Slums. 
## 
## #COVID2019 
## #COVID https://t.co/zRTS8ZnVLN</li>
##   <li>Trump, our worst president in history, totally screw ......... tremendous failure ..... #Coronavirus</li>
##   <li>Amidst<span class='match'> the </span>pandemic, let's remember to be happy.
## 
## We asked some of our non-tech guys<span class='match'> the </span>full meaning of HTML and here are some of their amazing responses.
## 
## #techstars #COVID<U+30FC>19 #WeWillPrevail https://t.co/FM31rYExQh</li>
##   <li>Indianapolis 500 postponed until August because of COVID-19 https://t.co/ZhD8xmckSj #10TV https://t.co/U0gX1gHJQi</li>
##   <li>With our community and country facing<span class='match'> the </span>global coronavirus (COVID-19) outbreak, Beaumont-Cherry Valley Water District is reminding you <U+2013> your tap water is safe and available, just like it was yesterday and will be tomorrow. https://t.co/LPFhyJU59b</li>
##   <li>Lindsey was featured on<span class='match'> the </span>podcast - Domestic Connection! This podcast is hosted by Libby James &amp; Will Medlin of Offit Kurman. They discuss how COVID-19 is affecting custody cases, what they're doing to help clients &amp; more. Check it out- https://t.co/GYIO0OjUpO.</li>
##   <li>the hoast once again change its behaviour pattern leaving china - pattern differ in EU  as well 
## A 2-month-old who has tested positive for COVID-19 in Nashville is likely one of<span class='match'> the </span>youngest in<span class='match'> the </span>country.
## https://t.co/LtrPXI6H6r</li>
##   <li>Increasing numbers of “confirmed COVID-19 cases” in<span class='match'> the </span>US honestly just reflect<span class='match'> the </span>increasing numbers of available test kits in<span class='match'> the </span>US.
## 
## ‘Cause Coronavirus outran our testing a long time ago lol</li>
##   <li>Ottawa has announced new #COVID19 relief, including increasing<span class='match'> the </span>federal wage subsidy program for SMEs to 75% from 10%, deferring GST/HST payments until June, 2020, among other measures. Full details TBD.  
## 
## Read our latest update for a full overview.
## https://t.co/tVmGIMEo7y</li>
##   <li>I just sent a donation to @prioritiesUSA More ads like this one. @realdonaldtrump #VoteHimOut  #WorstPresidentInHistory #UnfitToBePresident #COVID19 https://t.co/ZnwdgOG4TJ</li>
##   <li>covid-19 anjing</li>
##   <li>@cybergent1 This disease has no respect. People need to be aware. Why won't they listen. Read report of 102 yr old in italy who made it thru. Strange this covid 19 is.</li>
##   <li>BREAKING: Worldwide confirmed cases of coronavirus top half a million. At least 120,000 people around<span class='match'> the </span>world have recovered.
## #coronavirus https://t.co/BDGhRaAsXa</li>
##   <li>Amtelco customers rely on our virtual operator application to make working from home easy to keep their businesses running. We are offering free operator licenses to our customers during<span class='match'> the </span>#COVID19 crisis. https://t.co/l8jo4QmM2J #RemoteWorking #RemoteOperators #WFH https://t.co/RBfbKofX8S</li>
##   <li>Stop<span class='match'> the </span>spread of #COVID19 by keeping your distance. Don't forget to keep 6 feet between you and<span class='match'> the </span>people around you. For more from @nychealthy, visit https://t.co/OCoRunCLE7. https://t.co/3jyvIRJnXK</li>
##   <li>Residents of nursing homes &amp; assisted living facilities are especially vulnerable to #COVID19, and<span class='match'> the </span>professional caregivers on hand do their job at great risk to themselves. We are grateful for your selfless dedication. #coronavirus https://t.co/d3Z6FFnFiA</li>
##   <li>While waiting for<span class='match'> the </span>final decision on wether or not to continue<span class='match'> the </span>season I had time for riding. @chicagobulls  #BennyTheBull @NBA #BullsNation #COVID19 #WeWillWinThisBattle #confidence https://t.co/ET9EsZW7hY</li>
##   <li><U+0001F58B> Support Emma by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/oznS17Am8r
## 
## <U+0001F4E8> Last delivered to @johncarneyde, Representative Schwartzkopf and Senator Lopez  #DEpolitics #COVID19 https://t.co/rDvHeKgk1Z</li>
##   <li>People can survive without any food for 30-40 days, as long as they are properly hydrated.
## #COVID19 #coronavirus</li>
##   <li>Necessity is<span class='match'> the </span>mother of invention. @GHCSCW shares DIY construction plans for a desktop droplet barrier to save PPE and protect medical staff when administering #COVID -19 tests. @_ACHP https://t.co/CV8BJ6Wvr0 https://t.co/jEGBdVFAPx</li>
##   <li>@LesterHoltNBC I’m really sick and tired of @DrJohnTorres peddling BULLSHIT data-free speculation about <span class='match'> the </span>#coronavirus being seasonal, that it just dies off in hot weather. Tell that to<span class='match'> the </span>sick &amp; dead of #COVID19 in places where it is currently summer.</li>
##   <li>@OregonGovBrown Please have Oregon officials give some clarity in this area. https://t.co/D6US562Lp1</li>
##   <li>@CaptInappropri8 Are you thinking you have covid 19? A constant headache is one of<span class='match'> the </span>signs</li>
##   <li>@RealCandaceO Did you do<span class='match'> the </span>math? That is a .04% death rate. COVID-19 death rate is 4.5%. That means COVID-19 is 113 times more deadly. At<span class='match'> the </span>current rate of spread and mortality<span class='match'> the </span>death rate of<span class='match'> the </span>swine flu will be easily surpassed if people like you continue to underestimate it.</li>
##   <li>Five things about Ottawa’s support for Canadians, businesses during COVID-19 https://t.co/QhNLSbJSDH via @TorontoStar https://t.co/mbYkl9TzxQ</li>
##   <li>@StefSimanowitz Amazing to watch... and we have health care workers in<span class='match'> the </span>U.S. using garbage bags and home-made masks because we don't have enough #PPE! 
## 
## We need to get appropriate PPE to<span class='match'> the </span>front lines! #CoronaCrisis #COVID19 #covidusa #PPEshortage #CoronaHeroes #livertwitter</li>
##   <li>The US now has more cases than any other nation, including China. There are 82,474 #COVID19 cases recorded in<span class='match'> the </span>United States. https://t.co/KTrx2ht85n</li>
##   <li>Shut illegal meat markets, animal rights bodies to govt amid Covid-19 pandemic
## https://t.co/Pv1Vc3qy4k</li>
##   <li>@BankofAmerica Customers you have to go at them hard. Start a https://t.co/zrqAj8zPGj petition, contact every media outlet you can and tell them . I took them on after<span class='match'> the </span>2008 crash and won. Glad I’m rid of them but #FightBack #mortgagerelief #BofA #COVID19</li>
##   <li>#DonaldTrump February 28th said We are at 15 #coronavirus cases now in a couple of days will be near zero. 
## March 26th we are at 85,594 #coronaviruscases and 1,300 Deaths. And he still won’t #ListenToTheDoctors #AnybodyExceptTrump2020 #CNN #cuomobriefing</li>
##   <li>Quarantine got me brainstorming Covid-19 pick up lines.</li>
##   <li>Awesome work @pmarinnevz! There are #HealthCareHeros everywhere. #COVID19 #medstudenttwitter @Cal_EMRA @emresidents https://t.co/0Tx85t8k0W</li>
##   <li>Tlaib Calls for US To Mint Two Trillion-Dollar Coins in Laughable COVID-19 Relief Proposal https://t.co/SacksUwOAe</li>
##   <li>IBM Summit, titleholder of<span class='match'> the </span>world's<U+00A0>most powerful #supercomputer, has joined<span class='match'> the </span>fight against<span class='match'> the </span>#COVID19 outbreak.
## https://t.co/lhTRJcTJYt
## via @ZDNet 
## #IBMSummit
## #defstar5 #makeyourownlane #smm 
## T.H., @Thomas_Harrer, #IBM #IBMer #CTO @ #IBMSystems, #Europe, #Influencer</li>
##   <li>@nationalpost More than 27000 deaths from covid-19 have occured around<span class='match'> the </span>world but Mr. Black thinks we're in<span class='match'> the </span>grips of hysteria. About 6000 people died on 9/11 and Black waxes poetic about that awful day every chance he gets. I'll take some life-saving fear over denial every time.</li>
##   <li>Want to stay up-to-date with breaking news regarding<span class='match'> the </span>COVID-19 Pandemic, weather alerts (especially with storms coming this weekend), traffic crashes/lane closures and so much more!  Now you can, we have an App for that!  Download our app today! https://t.co/JyLA4tW4Lj https://t.co/UnZrlayxuk</li>
##   <li>This Sunday night, we are paying tribute to<span class='match'> the </span>front line health professionals &amp; local heroes who are helping to fight<span class='match'> the </span>spread of COVID-19 Watch<span class='match'> the </span>iHeartRadio Living Room Concert For America on @foxtv this Sunday night at 9PM ET / 6PM PT. <U+0001F4FA> #iHeartConcertOnFOX https://t.co/ukjAltzQ4s</li>
##   <li>It’s too late for trump.
## He already has blood on his hands from school shootings to not protecting<span class='match'> the </span>American citizens from<span class='match'> the </span>Covid-19 virus.
## trump will always be months late and billions short no matter what he does!
## trump has fallen short on all fronts. https://t.co/8IgCG4orHq</li>
##   <li>United States to provide #financialassistance of 174 million US Dollars to 64 countries including #India to fight #COVID-19.</li>
##   <li>Just found out my old coworker/bar manager is positive with Covid-19 and is on a respirator. This shit is real REAL, stop playing games STAY HOME</li>
##   <li>@Maryam_Rajavi Under dictator regime rulling in #Iran #PoliticalPrisoner are<span class='match'> the </span>most vulnerable people in this situation and must be free immidetly
## #FreeAllProtesters
## #COVID19
## #FreeIran2020 
## #Coronavirus 
## @USADarFarsi @mbachelet, @javaidRehman @UNHumanRights
## @WHO @WHOEMRO</li>
##   <li>Yoooo leave me alone. I’m trying to Quarantine. <U+0001F480> #COVID19 https://t.co/1XHJJP3fNK</li>
##   <li>This one is for @BorisJohnson @MattHancock and Dominic Cummings...keeping it for future reference.
## 
## #COVID19 https://t.co/zUitTwXnYi</li>
##   <li>@TyraDemi_ I would slap box Covid-19 for you.</li>
##   <li>The #SanDiego #COVID19 numbers: 
## Unfortunately, 3 deceased residents. 
## 
## An increase of 44 new cases (an underestimation, takes 7 days for test results). Total of 341.
## 
## 45% of cases between 20-39 yrs of age!
## 
## 10 extra hospitalizations and 2 more patients in ICU. https://t.co/DNJSdlt7M9</li>
##   <li>@MelissaSimms3 @onlinemgm @GovernorKayIvey There is more background information for<span class='match'> the </span>State of Alabama to review on this COVID-19 virus reception blocker than can be included in a Tweet #COVID19</li>
##   <li>Psi also has supplies necessary to fight<span class='match'> the </span>spread of<span class='match'> the </span>COVID-19 virus. Therefore, PSI maintains its operations to ensure that other critical industries and front-line service responders can do their essential work in a safe and clean environment.</li>
##   <li>When “great” is exactly<span class='match'> the </span>flaming dumpster fire and human rights atrocity Hillary and her ~65 million voters always knew it would be... #COVID2019 #TrumpEffect #SociopathRoulette #Cult45* https://t.co/MLlkkkgO11 https://t.co/sHvhiqhz08</li>
##   <li>UK #F1 teams step up to help scale production of #ventilators for fighting<span class='match'> the </span>#CoronaVirus #F12020 #ProjectPitlane  #VentilatorChallengeUK
## 
## https://t.co/wT4gsoIVbV</li>
##   <li>As another measure to protect staff from  COVID-19, #StJoeStatePark will implement a self-pay system on Sunday, March 29. ORV riders can self pay at<span class='match'> the </span>check station with exact change. Riding permits are $5 for ATV and $10 for UTV. An online ORV/UTV permit is in<span class='match'> the </span>works. https://t.co/2Gxr6TZ7Iw</li>
##   <li>Having Donald Trump as President* during a pandemic is like having Donald Trump as President* during a pandemic. #coronavirus #trumpvirus #trumpandemic  #unfit #thedailydon https://t.co/GOYdbhh512</li>
##   <li>WHATEVER IT TAKES: Chris McCormick had to furlough 23 employees after big orders were cancelled due to<span class='match'> the </span>economic impact from<span class='match'> the </span>#coronavirus. He woke up<span class='match'> the </span>next day and decided to start making PPEs for hospitals around<span class='match'> the </span>country. Hear<span class='match'> the </span>full story tonight on @fox5dc https://t.co/4xQeFX4VfN</li>
##   <li>@PontDaddy @CBCAlerts Maybe Canada should build a Trump-COVID-19 wall to keep<span class='match'> the </span>U.S. out. <U+0001F609></li>
##   <li>When CM @UsmanAKBuzdar  announces double pay for health care providers but you are an unpaid  HO 
## 
## #COVID2019  
## #ShareTheLoad
## #CoronavirusOutbreak https://t.co/2lq1fOGzKm</li>
##   <li>Apple launches a COVID-19 information tool for<span class='match'> the </span>US https://t.co/Ox6dw2XCMG</li>
##   <li>We have better testing and even with<span class='match'> the </span>strain on<span class='match'> the </span>American medical system we still have<span class='match'> the </span>best care in<span class='match'> the </span>world if you do become infected with<span class='match'> the </span>Chinamancovid19 virus
## 
## U.S. passes Italy, China as nation with<span class='match'> the </span>most confirmed cases of COVID-19 https://t.co/jdJ0MjnvGw</li>
##   <li>#COVID19 update by Scott Morrison on @abcnews #auspol #coronavirusaustralia #BreakingNews https://t.co/BPrDyKON4V</li>
##   <li>We reached over 100,000 #COVID19 cases! But our rapid response will get this under control! #coronavirus #TrumpDidThisToUs #TrumpPressConf https://t.co/IeVaSoDvLV</li>
##   <li>@davidred5sw @Uniblonder It's like #COVID19... shitty at first but steadily improves until<span class='match'> the </span>end. Also, based on true story here in WA. <U+0001F601><U+0001F44D></li>
##   <li>UBC is communicating answers to such questions from graduate students and to supervisors in emails and via this website: https://t.co/fDzy5kOGB9.  You can anticipate more communications in<span class='match'> the </span>future. https://t.co/1qidQKhDuw</li>
##   <li>Report: WhatsApp has seen a 40% increase in usage due to COVID-19 pandemic https://t.co/eqGNwSKwHH https://t.co/QqgV4nfqOb</li>
##   <li>OSE Immunotherapeutics Reports 2019 Financial Results and Provides Business Update Expectations for Potential Impact of COVID-19 on<span class='match'> the </span>Company's Clinical Development Activities - Associated Press https://t.co/1NjkIQsIPa</li>
##   <li>We have made<span class='match'> the </span>decision to send our team to work from home, to prevent<span class='match'> the </span>advance of COVID-19 in Brazil. So we can preserve our employees and remain active in our services. You can count on us!<U+200B>
## 
## Our services: https://t.co/HAuTh3fieL <U+200B>
## 
## #Synova #Caution #Coronavirus</li>
##   <li>@GovMikeDeWine @LtGovHusted @FrankLaRose @OHIOAG Due to<span class='match'> the </span>impact of COVID-19 on small businesses in Ohio, how is your office addressing debt collection and/or litigation appointed by Special Counsel to small businesses when many have been forced to shut down during this crisis?</li>
##   <li>My dad is officially out of a job because of covid-19 he just lost his only source of income. Please tell me what am I suppose to do. There is no rent freeze so how is he going to pay rent, how is he going to buy food. This “president” has no answers and refuses to take action</li>
##   <li>#Govlies about masks. Yes masks work. Lies about #Plaquenil #Hydroxychloroquine and #Azithromycin. Yes, together they thump<span class='match'> the </span>#Wuflu #coronavirus. Govs lie lie lie, a.) b/c there’s limited supply, b.) BUT ALSO b/c<span class='match'> the </span>elites want<span class='match'> the </span>protective useful shit FOR THEMSELVES.</li>
##   <li>Free resources for exercise practitioners regarding<span class='match'> the </span>mental health impacts of #COVID19 
## 
## Team of us will update as often as possible.  
## 
## @ESSA_NEWS @UNSW  @apaphysio @BJSM_BMJ @SMA_News @ACSEPpresident @ACSMNews @ISBNPA @LIFTS_SIG 
## 
## https://t.co/axUb1DlT1G https://t.co/srtNtLeNS9</li>
##   <li>@OnlyGod4ever @LaraPatriot Who would like to see President Trump invite<span class='match'> the </span>SEIU President to a COVID-19 presser and ask him flat out, "What<span class='match'> the </span>fuck?"</li>
##   <li>#PopeFrancis gave an extraordinary blessing "urbi et orbi" (to<span class='match'> the </span>city and<span class='match'> the </span>world) today in an empty St. Peter's Square. https://t.co/upOj2nIS1J</li>
##   <li>It looks like<span class='match'> the </span>Belarusian soccer league will be going forward in spite of COVID-19, because Lukashenko says so. 
## It sucks for<span class='match'> the </span>players but at least I'll have some soccer to to watch.
## https://t.co/7cAPYZhw7E</li>
##   <li>@alx @realDonaldTrump Listen to this wanks take on "media delusion"! <U+0001F92A> Pardon me for remembering but, it was Fox News that seriously entertained<span class='match'> the </span>conspiracy theory of China and it's bioweapon COVID-19. Hannity IS THE MEDIA politicization he wants us to fear. The big lies of liars.</li>
##   <li>Check out this COVID-19 game which helps separate<span class='match'> the </span>facts from<span class='match'> the </span>myths and provide information on how best to avoid catching and spreading cornovirus...
## 
## https://t.co/k6Anisv6Qt
## 
## #COVID19 @RoyLilley @christheeagle1</li>
##   <li>WATCH LIVE: Beaufort County sheriff, local officials provide COVID-19 update https://t.co/SdhOlKGqeI via @WSAV @WSAVAndrewD</li>
##   <li>Announcing a temporary new “opt-in” grading system for all undergraduate and graduate students for<span class='match'> the </span>spring 2020 semester and until<span class='match'> the </span>disruption to<span class='match'> the </span>learning environment lessens from<span class='match'> the </span>COVID-19 pandemic https://t.co/aC5SZZ67m1</li>
##   <li>Some people were trying to defend that guy who wanted to sneeze on people's faces and give them Covid-19. Good job in firing him. Hope he's arrested too.<U+00A0>
## https://t.co/7Y97recX5c</li>
##   <li>Idgaf how you feel if I say sum bout standing too close to me. With this pandemic going on I don’t want anyone near me in<span class='match'> the </span>stores. I have a sick mother who is too high risk for covid-19 that Needs me hands on w her every day so bitch back up I want my space.</li>
##   <li>This one's for you revsheridanjames <U+0001F4AE><U+0001F618>
## #cherryblossom #outside #covid_19 #spring https://t.co/FsyEIEEsG4</li>
##   <li>Ok so since I'm working in total lockdown I'll be out of my house so I'm offering my help to anyone in<span class='match'> the </span>Westmeath and Meath area that need anything. 
## 
## Jusy hit my dms and I'll do my best for anyone in need.
## 
## #COVID19 #IrelandLockdown</li>
##   <li>When<span class='match'> the </span>community gets together and<span class='match'> the </span>clapping and cheering occurs- beautiful #clapping #clappingforNHS #COVID2019</li>
##   <li>#CBWTF operators and their staff taking #pledge to provide their services to collect #waste generated from home #quarantine and  treatment of #COVID19 @GPCB @CMOGuj  #Waste handling and its disposal is most important for control of #COVID19 https://t.co/1xA1MhpnXn</li>
##   <li>Zim Leader Appoints New Coronavirus Response Drivers
## 
## Continue reading at https://t.co/2JXShFT398 | ZTN
## 
## Stay tuned for a continuation of Diplomatic Passport, as Zimbabwe President @edmnangagwa is expected to address<span class='match'> the </span>nation.
## 
## #GetThePicture #Zimbabwe #coronavirus #Covid19</li>
##   <li>No, not me! Many came out and applauded health workers, why? They are doing their job and are renumerated. Oh l do care, there was no preparation for a pandemic, overworked junior doctors, crowded A+E's, lousy working conditions: this is.. (Continued)(#1)#health #Ireland #covid19</li>
##   <li>Today @GovTomWolf  signed several bills that provide comprehensive assistance to Pennsylvania in<span class='match'> the </span>midst of<span class='match'> the </span>#COVID19 pandemic.
## 
## Please visit https://t.co/CO3ubQTRhD to read more about<span class='match'> the </span>legislative action taken today. https://t.co/6sEYeRGUOl</li>
##   <li>We should really do<span class='match'> the </span>same to Floridians, to be honest. 
## 
## And not just for COVID-19 purposes. https://t.co/zqbxcLqUvB</li>
##   <li>2 Fox News, The Daily Briefing with @DanaPerino Here are<span class='match'> the </span>breakdowns of each hospital in Boston reporting<span class='match'> the </span>number of workers who have contracted COVID-19. 
## Massachusettes General Hospital 41, Bringham &amp; Womens 45, Tuffs Medical Ctr 31 &amp; Boston Medical more than a dozen. https://t.co/3nsUBiC7Sz</li>
##   <li>@JohnJHarwood It would be very helpful if<span class='match'> the </span>media began asking<span class='match'> the </span>question: how many covid-19 patients have died because there was not a ventilator available for them? Is it a current problem or a future one?</li>
##   <li>Community Effort Helps Wiradjuri Elders in Need Amid Panic-buying | NITV https://t.co/yg6fosgwpD via @NITV Beautiful. #coronavirus</li>
##   <li>Good Saturday morning, how are we doing ZA?
## 
## #LockdownSA #Covid19 https://t.co/u7O7KA3gsV</li>
##   <li>A quiz from @OregonGovBrown to help you understand whether or not your business operations can stay up and running as normal #PortlandTogether #COVID2019  https://t.co/UEejPT9eqz</li>
##   <li>Genomic Study Points to Natural Origin of COVID-19 https://t.co/PODZ7QJ1KS</li>
##   <li>This is 30minutes ago.
## @WHO @NCDCgov 
## #CovidNGR #COVID19 https://t.co/irnCowjx39</li>
##   <li>@maggieNYT @JessicaTarlov 9/11 victims were murdered. COVID 19 and influenza victims die from illness.</li>
##   <li>Thinking of Stories of<span class='match'> the </span>Streets (MCR 2018) Photographer, &amp; Big Issue North Vendor, Nicolae Alienate
## 
## His photo, Dog on a Lead, tkn just outside<span class='match'> the </span>@rxtheatre ,was showcased at Late at<span class='match'> the </span>@Tate last April 
##  
## Let's help @bigissuenorth and<span class='match'> the </span>Vendor team through #covid19 https://t.co/ddeLSmSKBz https://t.co/RUeZdwNJYa</li>
##   <li>Mayor of #Montgomery issues curfew to help prevent spread of COVID-19 - Mar 28 @ 12:13 AM ET https://t.co/FbgT167enj</li>
##   <li>@geonews_urdu We really are thankful.
## #COVID2019 
## #Doctor4Covid 
## #clapforourcarers https://t.co/3sIRhralhk</li>
##   <li>Liam Gallagher wants Oasis reunion once Covid-19 pandemic 'put to bed' - https://t.co/5LtSq0Kupq #LiamGallagher https://t.co/PvuEPafstM https://t.co/zJ9KaQ0cOG</li>
##   <li>BREAKING: England’s Chief Medical Officer self-isolates after developing symptoms compatible with #COVID19 https://t.co/ucoRYRSHMQ</li>
##   <li>Reports that @SecretaryRoss found Peter Navarro off internet who is now a Trump lapdog!! Hope real journalist r now allowed in #CoronaVirusUpdate briefing.. with nasty questions! #COVID19 @cspan #AMJoy https://t.co/szcby2CQrt https://t.co/8w0JNM5coh</li>
##   <li>Covid-19 could resurge in four major ways, (Julie Swann) In<span class='match'> the </span>first scenario, officials relax social distancing and shutdown measures and, after a few weeks,<span class='match'> the </span>highly contagious disease flares up again relatively quickly<U+2014>just like what happened with<span class='match'> the </span>Spanish flu. https://t.co/dkdeGqzvxI</li>
##   <li>@mitchcarrtv @12News @dougducey What is DCS Director Mike Faust providing DCS field staff to protect them from COVID 19. They enter a lot of homes. Gloves, masks,hand sanitizer, medical daily review for staff like AZDOC.</li>
##   <li>Do businesses realize how many people are unsubscribing from their lists when they send out "our response to Covid-19" emails? I've unsubscribed from companies I haven't heard from since 1998! #unsubscribe</li>
##   <li>Meanwhile #COVID2019 has also brought back memories from school days!
## 
## Citizens were given "murga punishment" at MA road in Srinagar for flouting govt regulations during #CoronavirusLockdown
## 
## #TalsaGharreyBehew
## #StayHomeSaveLives
## #Kashmir https://t.co/GTyv0GboIM</li>
##   <li>One of<span class='match'> the </span>options may include adjusting<span class='match'> the </span>eligibility criteria for our Plus 1 emergency financial aid program and making it more accessible to customers who are experiencing financial hardship due to #COVID19. (2/3)</li>
##   <li>LEO's on<span class='match'> the </span>front lines serving our community &amp; helping those in need affected by this horrible #COVID19.  Do your part to #FlattenTheCurve we are doing ours. 
## 
## https://t.co/qoZh1kqRPb</li>
##   <li>Is China legally liable for COVID-19 damages?  https://t.co/YGk3jhggAy</li>
##   <li>How Soon Will COVID-19 Peak?  (And How To Tell) https://t.co/usbQ0WgaMu via @YouTube</li>
##   <li>Of course, Easter eggs! What could be better for marketing Coronavirus https://t.co/UNrxtShGXq
## 
## #COVID2019 #COVID19 #coronavirus #Easter #EasterSunday #eggs #Chocolate #France #WritingCommunity #writing #news #food #FreelanceHeroes #journalism</li>
##   <li>Emotions act as a driving force in our decision making.
## What we need right now is to act logically in<span class='match'> the </span>process.
## Make wise investments. Stay home stay safe.
## 
## Visit<span class='match'> the </span>website - https://t.co/6Ba9DTaa4V
## 
## #fridaymotivation #covid19 #coronavirusoutbreak #londonstockexchange https://t.co/d7lbTwVazD</li>
##   <li>@POTUS @VP You have to test everyone with symptoms to know what you are working with.  I was turned down in NC because my symptoms are mild yet I may have it and can spread it unknowingly because I don’t know.  #COVID2019 #FoxNews</li>
##   <li>@ITGuy1959 We should focus on excess mortality. Is COVID-19 killing more people than influenza &amp; other Corona viruses kill every year and, if so, how much more?
## 
## The EU monitors mortality. It’s not changed much. 
## 
## https://t.co/9yiWRxfcAR</li>
##   <li>@Maheenkhanpk @JawadHaider @AnjumKiani @Hammad_Azhar @SHABAZGIL @murtazawahab1 @Jhagra #Pakistan’s fashion industry could definitely lead<span class='match'> the </span>#Masks4All movement that’s gone viral in South Korea, Japan, Czech Republic &amp; Slovakia &amp; helped their countries bend<span class='match'> the </span>curve in fighting #COVID2019.
## 
## Let’s do it in Pakistan &amp; #SaveLives.
## 
## Great effort @Maheenkhanpk <U+0001F44F><U+0001F3FC> https://t.co/jtVQiqx3pF</li>
##   <li>The different types of "celibraties". While<span class='match'> the </span>real celebrities are making huge donations in support of<span class='match'> the </span>COVID-19 fight,<span class='match'> the </span>rest are either silent or teaching how to wash our hands. Some even want to be recruited &amp; paid as "COVID_19 ambassadors.</li>
##   <li>@bbcquestiontime @BBCOne Health before money? I know we need to keep<span class='match'> the </span>economy going but why are<span class='match'> the </span>government not implementing<span class='match'> the </span>rules on non- essential work places. They are leaving employees being forced to work in a vunerable #COVID2019 situation. #bbcqt</li>
##   <li>Brands: Stop with<span class='match'> the </span>well-meaning COVID-19 emails https://t.co/awCTSKtPaK via @MumbrellaNews #marketing #brand #communication #covid19 #coronavirus</li>
##   <li>@DanScavino @realDonaldTrump #COVID19 is a hoax, fake news. Do<span class='match'> the </span>medically relevant viruses exist? Where is<span class='match'> the </span>proof?</li>
##   <li>'She just had a cough': Teen's COVID-19 death shakes France https://t.co/oYbDpFl9jF via @Yahoo</li>
##   <li>*50 years from now*
## 
## “Grandpa, you survived Covid-19 didn’t you?”
## 
## * In Color - Jamey Johnson starts playing * 
## 
## “Yeah... Lemme tell you about it.”</li>
##   <li>@SrBachchan COVID-19 CORONAVIRUS AWARENESS | WHO REPORT UPDATE | 5 WAYS TO STAY HEALTHY AND SAFE | HINDI https://t.co/fa5guUgPcw</li>
##   <li>It’s hard to have ambition when<span class='match'> the </span>world seems to be crashing down around you. But don’t worry <U+2014> we’ve got<span class='match'> the </span>perfect tips to help you out.
## https://t.co/SeVFLRMBGb</li>
##   <li>"I’m not sitting at home playing Netflix,” says local entrepreneur Oliver Kuttner, who has an $80 million plan to build a massive RV park to house COVID-19 victims. Lockn organizer Dave Frey has expressed interest, but so far no response from FEMA. https://t.co/m0u0yJaOW5</li>
##   <li>Broward Health issues urgent call for donations of medical supplies. Dr. Joshua Lenchus says they have enough for staff at<span class='match'> the </span>moment, but will need more to handle a surge in COVID-19 patients https://t.co/lHV38Xj1Tl</li>
##   <li>Apartments at forefront of fight against coronavirus
## 
## #CoronavirusOutbreak 
## https://t.co/sjPX77Y2VY @deccanherald @reshmatweetsat @WFRising</li>
##   <li>State attorney general issues warning about fraudulent charities: https://t.co/X6xOH4GyDM https://t.co/TX0gHNN1Hm</li>
##   <li>Please use<span class='match'> the </span>right service to get medical help, to reduce pressure on<span class='match'> the </span>#NHS and help us help you.
## 
## PLEASE only call 999 in a serious emergency.
## 
## Need urgent medical help? Go to https://t.co/oWFZ4imtMH
## 
## #COVID19 concerns?  Click here<U+2B07></li>
##   <li>One Pot Recipes: Prepare THESE quick and delicious dishes amid lockdown - https://t.co/gwRDYmPRxk #health #fitness #food #coronavirus #covid19 #21daylockdown</li>
##   <li>#Coronavirus: why we need to consult engineers as well as scientists for solutions 
## 
## https://t.co/8oPowidJcJ via @ConversationUK</li>
##   <li>@itv2 Contagion. Strange choice of 9pm movie? #COVID2019</li>
##   <li>Priorities During<span class='match'> the </span>COVID-19 Crisis https://t.co/FYTIhDmh8w</li>
##   <li>Marketing | Kantar’s COVID-19 Barometer Examines Impact on Consumer Behavior https://t.co/5w6Vs6o4bA</li>
##   <li>Our virtual town hall on #COVID19 and #ArmyROTC is live from our Facebook page. We’ll live tweet along with you! Tune into<span class='match'> the </span>livestream right here: https://t.co/vPkmKLBqTL https://t.co/ob0uxDr2Od</li>
##   <li>It’s been real #COVID19  https://t.co/vG80c8Are4</li>
##   <li>Many of our students are now back home after leaving college campuses throughout<span class='match'> the </span>country due to<span class='match'> the </span>COVID-19 pandemic, and LEDA has established an emergency fund <U+27A1><U+FE0F> https://t.co/wNDrJ3Yx7e <U+2B05><U+FE0F> to provide them with direct support during this global challenge. https://t.co/JvXZh2jDHD</li>
##   <li>@HRDMinistry Dear Sir, in this crisis of Covid 19, rather than waiving off fees for April to June quarter, schools have increased fees including bus fees. Is it justified?</li>
##   <li>BREAKING NEWS: Burundi is<span class='match'> the </span>only African country without any case of coronavirus. When<span class='match'> the </span>Minister Of Health was asked about<span class='match'> the </span>secret behind<span class='match'> the </span>zero case of covid-19, this is what he had to say; "It is very simple. We don't have<span class='match'> the </span>testing kits."
## #CurfewinKenya</li>
##   <li>In @htTweets today, COVID-19 cases across India. #news #coronavirusindia https://t.co/08YkAWlzH1</li>
##   <li>UK 8pm tonight CH4 programme on #Coronavirus</li>
##   <li>This cause is close to my heart - please sign: https://t.co/Of1j4WLSAS</li>
##   <li>@Roger2dot0 Nope, you do not have to be fired. The bill says unemployed, partially unemployed or unable to work due to COVID-19. Here is a screenshot from<span class='match'> the </span>article linked above. https://t.co/NEMnEBRJO0</li>
##   <li>@SpencerJCox @fox13 Gobert should change his number to 19 to remind everyone that he may have saved their life from COVID-19</li>
##   <li>Facebook said on March 6 that it would temporarily ban commerce listings and advertisements for medical face masks, in an effort to combat price-gouging and misinformation during<span class='match'> the </span>COVID-19 crisis.
## 
## https://t.co/629MulkbhH via @techcrunch</li>
##   <li>Arizona confirms 13 COVID-19 deaths; total cases hit 665 https://t.co/jAQ3RSWnTh</li>
##   <li>#Day3 : Completed <U+2714>
## 
## Another day of doing nothing but having a beer after work and sleeping <U+0001F606>
## 
## Now on an empty double decker back to work.
## 
## Nice to see a number @syptweet vehicles roaming around<U+0001F44D>
## 
## #COVID19</li>
##   <li>Coronavirus: Britons who have died after contracting COVID-19 | UK News | Sky News https://t.co/5s4llHb8hq</li>
##   <li>Good woman @MiriamOCal &amp; wishing @RyanTubridyShow well, a real sense of #teamireland tonight  #COVID19 #InThisTogether #StayHomeSaveLives https://t.co/3qNERHi5ry</li>
##   <li>Heading to<span class='match'> the </span>ED in a Friday night to admit my first patient for #COVID19 rule out to<span class='match'> the </span>hematology service <U+2014> she has pneumonia. I found<span class='match'> the </span>scrubs. #StayHome please. https://t.co/g6FRZi7Czf</li>
##   <li>One positive of #COVID19<span class='match'> the </span>planet is getting back to normal because of a lack of industrial activity.
## 
## The irony here is that it might prolong human existence in<span class='match'> the </span>long run while taking a couple million in<span class='match'> the </span>short term.</li>
##   <li>You can be certain that you can always find support within<span class='match'> the </span>CFA #Franchise community. Check out CFA #COVID19 Resource page for updates, resources &amp; #webinars: https://t.co/vNMbEQkTNo
## 
## We are Better Together and United, We are Strong.
## #CFAGrowingTogether https://t.co/jhLCgU6a65</li>
##   <li>I wouldn't have been as aware and prepared today ...If it weren't: 
## 
## <U+2705>Andrew Yang 
## 
## (I saw #coronavirus hash tag trending on Twitter while following Yang.)
## 
## <U+2705>The Walking Dead
## 
## (Learned about infections, scarcity social behaviors, survival supply runs.. etc)</li>
##   <li>COVID-19 Cases in Clark County Rise
## https://t.co/eohd143OfN
## #Coronavirus #Covid19 #ClarkCounty #CoronavirusNV</li>
##   <li>It comes to something when even<span class='match'> the </span>UK prime minister and health secretary cannot wash their hands properly!  #coronavirus</li>
##   <li>@GanucheauAdam @tatereeves He is endangering<span class='match'> the </span>lives of first responders and medical personnel by his careless, prejudicial ruling.. Shame on him forever. #Covid19 does not play favorites</li>
##   <li>@Harvard @UniofOxford @UniversidadYale worldwide exist a Pandemia Named COVID-19, its a virus and thousand of people are Dying, why are you prestigie one in SILENCE? Why you say nothing? What are you waiting for? Where are your brilliant Students? @realDonaldTrump @ABC</li>
##   <li>If you’ve been following and appreciating<span class='match'> the </span>amazing #scicomm efforts of @CT_Bergstrom on COVID-19, this thread is a must read. Kudos to him and so many others working to dispel<span class='match'> the </span>deluge of misinformation. https://t.co/MIAhmEEefV</li>
##   <li>At a news conference Thursday, Cuomo provided updated statistics on<span class='match'> the </span>virus and expressed disdain at<span class='match'> the </span>Senate’s $2 trillion economic stimulus bill, calling it “irresponsible” and saying it doesn’t do nearly enough to help New York.
## https://t.co/h8oDs0RLQJ</li>
##   <li>Spotted what I believe was a drive-up COVID-19 test this afternoon.</li>
##   <li>@parto254 @dps1879 @oddtv3 @parto254 I know<span class='match'> the </span>channel, I'm looking for specific video links of people question police and workers during installation of #5g during<span class='match'> the </span>#COVID19 lockdown.</li>
##   <li>As a resource to our community, we are adding special coverage around COVID-19  and have set up a page to provide easy access to this information. We welcome your input with news that you would like to share or suggestions on how we can help https://t.co/161qdeGMT0
## #CPIstrong</li>
##   <li>@chris_minor10 @ClaytonClemens1 @CityofTampa @TampaPD @GovRonDeSantis @RepJoseOliva @BillGalvano @RepJoseOliva is<span class='match'> the </span>one writing bogus articles on medium about COVID-19, saying “the cure can’t be worse than<span class='match'> the </span>virus” endangering<span class='match'> the </span>lives of us all like @GovRonDeSantis who has no backbone. Take your own advice.</li>
##   <li>@chrislhayes #TrumpPressConf he keeps saying how GREAT<span class='match'> the </span>economy was before<span class='match'> the </span>#CoronaLockdown and how these Companies where making so much cash in his economy, yet they couldn't make 2 months into<span class='match'> the </span>#coronavirus and we have to bail them out AGAIN!! WTF? #Inners #Maddow #Lawrence #MSNBC</li>
##   <li>covid-19 but sung to<span class='match'> the </span>tune of come on eileen</li>
##   <li>The US Not Looking So Good For The Covid-19 https://t.co/ToLe0J7V04</li>
##   <li>At work we’re told we CAN’T wear any PPE such as masks etc when working with patients until we have a confirmed case of COVID-19 in our facility <U+0001F643><U+0001F643><U+0001F643></li>
##   <li>{editor} Thieves try to cash in on demand for food amid Covid-19 crisis https://t.co/KavqgrWPWP</li>
##   <li>Well, that's it. The family has said NO MORE @realDonaldTrump RALLIES,<span class='match'> the </span>ones that kinda start at 5:00 where he mentions<span class='match'> the </span>great job he's doing on #COVID<U+30FC>19
## We have to watch old movies on Netflix.
## Trump is playing 2nd fiddle to Costner in Tin Cup.
## I voted for Blazing Saddles</li>
##   <li><U+0001F680>We can help our local #smallbiz by buying gift cards to provide critical $$$ support during<span class='match'> the </span>#COVID19 crisis. 
## #Smallbiz is<span class='match'> the </span>backbone of our economy.
## <U+0001F4AA> #savingmainstreet <U+0001F4AA>
## .
## .
## .
## Click<U+0001F449><U+0001F449><U+0001F449> https://t.co/oeaMmsn5FN https://t.co/cF7tA923LP</li>
##   <li>To think, He asked his cadre to help his biggest rival succeed in controlling<span class='match'> the </span>#Covid19, regardless that he will not get any credit for this.
## 
## There is still hope for India,<span class='match'> the </span>Spirit of Indian-ness is far stronger than self elevation. KUDOS @dpradhanbjp!
## #IndiaFightsCorona https://t.co/xbQuavLLO4</li>
##   <li>#Covid-19 The sudden 21 days lock down in India may kill more people than Corona. The poorest of<span class='match'> the </span>poor,<span class='match'> the </span>daily wagers are walking thousands of Kilometers to reach their home. https://t.co/t6doqsop1z</li>
##   <li>Excellent piece @theintercept by @StephanieKelton explaining how<span class='match'> the </span>government is going to "pay for"<span class='match'> the </span>#coronavirus #StimulusPackage2020 (and I nice example of<span class='match'> the </span>flavor of her upcoming book "The Deficit Myth"
## https://t.co/bT2AwXaJc5</li>
##   <li>@RailMinIndia I have a suggestion for indian railways for COVID-19 Why can't we convert our Trains which were anyways standing in their yards into corona isolation ward or hospital bcs with this we can save alot of cost required for such infrastructure required #CoronaOutbreak</li>
##   <li>The #Gambia has declared a state of public emergency, as part of measures to contain #COVID19 pandemic. 
## 
## We call on<span class='match'> the </span>public to adhere to these measures and follow<span class='match'> the </span>precautionary guidelines. Protect yourself and everyone around you. 
## 
## Call 1025 for more information. https://t.co/0qmlTLuEsH</li>
##   <li>Of all<span class='match'> the </span>leaders that I’ve listened to in regards to<span class='match'> the </span>covid-19 crisis, I find this to be<span class='match'> the </span>most succinct, transparent, and down to earth.
## 
## Singapore PM Lee Hsien Loong: Need everyone's cooperation in fight again... https://t.co/Ecx1I3J2OG via @YouTube</li>
##   <li>Protecting Democrat legislators from catching COVID-19: is very considerate of him. https://t.co/ke7Vp53kK3</li>
##   <li>"“For every ventilator we are short, a patient dies,” tweeted<span class='match'> the </span>congressman. “You downplayed<span class='match'> the </span>risk of #COVID19 &amp; now U.S. has most cases in<span class='match'> the </span>world. Don’t downplay risks again &amp; repeat<span class='match'> the </span>same mistake.”
## #TrumpKillsPeople
## https://t.co/nx6Elpbjfj</li>
##   <li>#BreakingNews: Its another leap as #CoronaVirus confirmed cases hit 81 in #Nigeria
## https://t.co/ShVAqUs6r8 #news #COVID19Nigeria https://t.co/FxWXR2YsH2</li>
##   <li>Steck Medical has updated protocol due to COVID-19. Here are<span class='match'> the </span>details of<span class='match'> the </span>protocol as well as information for<span class='match'> the </span>patients. Thank you for your cooperation and understanding during these challenging times of change. https://t.co/o6vbnZmvwk</li>
##   <li>You're not alone. 
## 
## #CoronavirusOutbreak #CoronaVirusSeattle #COVID2019 
## 
## https://t.co/NReaApBTqE</li>
##   <li>Pangasinan authorities on Friday evening, March 27, confirmed 3 new cases of COVID-19, among them a man who didn’t disclose that he was under investigation for his symptoms. #COVID19PH https://t.co/q3Bzb4x8cr</li>
##   <li>#ChinaLiedPeopleDied
##  CHINA is accountable for<span class='match'> the </span>WUHAN VIRUS.
## Those infected Chinese people who travelled around<span class='match'> the </span>world to escape form a city lockdown are also accountable.
## Fuck<span class='match'> the </span>CCP.
## Ain’t no COVID-19, it is<span class='match'> the </span>WUHAN VIRUS.
## WUFUCKINGHAN VIRUS.</li>
##   <li>Isobel Mackenzie reiterates Dr. Bonnie Henry: "It's not just about you getting sick, its about bringing<span class='match'> the </span>infection home to your family." #COVID19</li>
##   <li>Pastor dies from COVID-19 <U+2014> after claiming coronavirus was a ‘mark of<span class='match'> the </span>beast’ conspiracy https://t.co/UoxzygV6xv</li>
##   <li>COVID-19 reports | Faculty of Medicine | Imperial College London    That makes some poor reading !  https://t.co/j5KOc899tc</li>
##   <li>@chipfranklin Murdoch has spread a pathogen far more virulent than COVID 19. It totally destroys your brain and your soul.</li>
##   <li>Daily Crunch: Clearstep’s chatbot offers in-depth COVID-19 screening https://t.co/V94BIXi1n4</li>
##   <li>So @RepMaxRose how is there not blood on @SpeakerPelosi hands for delaying<span class='match'> the </span>Bill when she came back to DC?? #Hypocrisy #coronavirus</li>
##   <li>Ever since I read that<span class='match'> the </span>loss of your sense of smell is a symptom of #COVID19 , I can’t stop smelling random things around my house, to reassure myself I haven’t got it.
## 
## My dog could use a bath.</li>
##   <li>Family anti-corona vibes lol #coronavirus #InThisTogether https://t.co/PvoXuHzsuD</li>
##   <li>Kodus to Medikal and Fella:.This is what some of our So called celebrities should be doing in times like these...just to help<span class='match'> the </span>needy..
## #SoulConcepts #COVID2019 https://t.co/9CmJo99wfL</li>
##   <li>#coronavirus you can’t claim your<span class='match'> the </span>greatest country in<span class='match'> the </span>world if your health care is short of supplies... https://t.co/uHteNFBfaf</li>
##   <li>Flamingo Label Company is listed as “Essential Business” and will remain open during<span class='match'> the </span>“Stay-at-Home” order that was given today by Governor Gretchen Whitmer for<span class='match'> the </span>COVID-19 pandemic.
## The safety of our customers, employees, &amp; their families are our first priority. 
## #labels</li>
##   <li>The #COVID<U+30FC>19's message to<span class='match'> the </span>Church - begin to develop new, more effective and modified ways of doing ministry this end-time!
## 
## There is a shift this year #Year2020 - We are in<span class='match'> the </span>end-time!
## #Day6 #30DaysWordMinistration</li>
##   <li>#ICYMI @rcbetker Spokesperson &amp; President @canadanurses joined @benminer &amp; @bilalv87 on<span class='match'> the </span>#BenNBilal show to talk how Canadian Nurses are dealing with #COVID19
## 
## https://t.co/RMBMTnIrqk
## 
## Catch Ben &amp; Bilal weekdays at 5pm ET! Here on #SiriusXM Ch.167 @siriusxmcanada or on<span class='match'> the </span>app</li>
##   <li>Separating<span class='match'> the </span>Facts From<span class='match'> the </span>Misinformation About COVID-19 by @davetroy in @elemental https://t.co/rzzOebF67g</li>
##   <li>@marcelanais @caceci786 Less than a week ago Boris Johnson, British Prime Minister said that "people should have sick to make<span class='match'> the </span>diales in<span class='match'> the </span>..." for<span class='match'> the </span>good of<span class='match'> the </span>world economy "and that it would not close any border. Well, he added positive for covid-19 <U+0001F60F> Let's see that as "strong" is he.</li>
##   <li>I HATE 2020!!!!!!!
## 
## #WGI #DCI #CORONAVIRUS https://t.co/rAzFO1kOdt</li>
##   <li>Covid-19: FG Committed to further decongest prisons <U+2013> Malami https://t.co/uYetBCqoiW</li>
##   <li>The political climate is fragile right now and<span class='match'> the </span>office of #COVID<U+30FC>19 is damaging reputations in all areas, even<span class='match'> the </span>tech community  https://t.co/n8DXSvDGke</li>
##   <li>Note: When you shop for necessities at https://t.co/LMbTNE39Gj, a percentage of your purchase supports Thomas White Jr Foundation Inc. In this time, we are all inconvenienced by this crisis of COVID-19 and can use every bit of your help. Stay strong and Safe #Stayhome #Nonprofits</li>
##   <li>@MimiKennedyLA @nytimes I wonder if anyone who survives COVID 19 still carriers it and for how long?</li>
##   <li>Great story that covers<span class='match'> the </span>effects of #COVID19 on many experimental research groups.  Thanks #NYTimes https://t.co/BjRqaXwcX7</li>
##   <li>Say a prayer for my country. We shall overcome. #COVID19 <U+0001F1F3><U+0001F1EC> https://t.co/d4vW3qzBbm</li>
##   <li>@BaleMeenal In view of<span class='match'> the </span>outbreak of Covid-19 there is nation-wide lockdown as per Govt. directive and in these challenging times with limited resources our team is working round<span class='match'> the </span>clock to address all customer queries &amp; requests. 1/2</li>
##   <li>Hey @PGATOUR and @TheMasters
## 
## Let’s get<span class='match'> the </span>boys back on<span class='match'> the </span>course w/o spectators
## 
## Even decrease group size if needed
## 
## Have more audio so we can hear players talk to caddies
## 
## Millions would self isolate to watch
## 
## It would actually be a public service
## 
## #coronavirus #pgatour #pga</li>
##   <li>Our caregivers are true healthcare heroes! Support them and Beverly and Addison Gilbert Hospital by making a gift to our  Emergency Response Fund for COVID-19. https://t.co/fnu2aX4Mqn https://t.co/hISumMed5r</li>
##   <li>COVID-19 infections top 500,000 as US OKs USD-2-trl relief bill 
## https://t.co/2auEN9PRCX 
## #KUNA 
## (I.F)</li>
##   <li>At 8pm tonight, I will proudly clap and cheer for all front line staff. This includes my colleagues and social workers around<span class='match'> the </span>world. Without our team spirit, I don’t know where we would be. I am proud to be Social Worker. #COVID2019 #clapforourcarers https://t.co/OikxQD479M</li>
##   <li>#coronavirus 
## Keep<span class='match'> the </span>emotions &amp; panic away for a moment &amp; think -
## 
## Why Dr.Fauci &amp; American MSmedia aren't excited about Chloroquine being a probable treatment but r making us believe that ONLY a Vaccine is d hope?
## (&amp; No advice on Vit supplementation!)
## <U+0001F911>
## https://t.co/IMmySVLRTK https://t.co/6WFThCvlQx https://t.co/DreDkBaXP6</li>
##   <li>Advertisers do<span class='match'> the </span>right thing: boycott @seanhannity and @IngrahamAngle by not buying ad-space for their shows! And send a message on behalf of all Americans, esp those most impacted by Covid-19, that their behavior was unacceptable and will no longer be tolerated in our country! https://t.co/mzHNLxlEx4</li>
##   <li>@HeatherHabsburg Trump botched<span class='match'> the </span>response to #coronavirus,<span class='match'> the </span>stock market crashed, and<span class='match'> the </span>economy has screeched to a halt. This can only mean one thing: it's time for a war.
## #WagTheDog</li>
##   <li>Final year Computer Science thesis dissertation in video-conference at University of L'Aquila, Italy, while #COVID19 attacks<span class='match'> the </span>Country
## #CS @univaq #MSTeams https://t.co/YVhCST3fih</li>
##   <li>@funder Totally bizarre! Every time we think he can’t go any lower, he goes even lower. Soon he will be underground. We wish!
## #TrumpVirus
## #coronavirus 
## #impeached4life 
## #ImpeachedTrump</li>
##   <li>The end. 
## #usa #COVID2019 https://t.co/aGlUYnWrHU</li>
##   <li>@davidsoho1 My clinical days are behind me (albeit, call-up papers may arrive soon?), but applauded my sister: a nurse-anaesthetist in cardiothoracic surgery. Very proud: privately worried, given PPE situation. #Covid19-2020 <U+0001F947></li>
##   <li>You guys listen up. China is still very dangerous. PLEASE DO NOT COME TO CHINA!!! DO NOT USE MEDICAL EQUIPMENTS EXPORTED FROM CHINA!!! And make sure your friends know that information. God bless you<U+0001F606>#COVID2019</li>
##   <li>#LockdownHouseParty #LockdownForLove #LockdownIreland #lockdownuk #COVID19 
## 
## A song of hope in these challenging times <U+2618><U+FE0F><U+0001F49A><U+0001F64F>
## 
## https://t.co/nBYAUt9OWv</li>
##   <li>@zayebanks 3 - Is Bill Gates “digital certificate” of COVID-19 vaccine Revelations 13 coming to life?
## https://t.co/ufGmuiqBNn</li>
##   <li>we NEED all Americans over 15 years old to have AT HOME TESTING sent to our houses and sent to<span class='match'> the </span>lab. A country that is worth 17.7 trillion dollars can surly afford this! #COVID19</li>
##   <li>U.S. just surpassed China on overall cases today... wtf @realDonaldTrump you have screwed us all over. Your lies and lack of protection for workers, and drive for profit have put us all at risk. #CapitalismKills #COVID19 #UScovid #ImpeachNow</li>
##   <li>Spent<span class='match'> the </span>first 39 minutes of my birthday surfing https://t.co/8l3FOmTA0U... <U+0001F389> <U+0001F389> #COVID19</li>
##   <li>ATTENTION <U+2066>@dougducey<U+2069> and <U+2066>@drcarachrist<U+2069>, an analysis by<span class='match'> the </span><U+2066>@nytimes<U+2069> shows Arizona dead last in #coronavirus testing in<span class='match'> the </span>U.S.  https://t.co/CPSNyDxE1b</li>
##   <li>The quote above is not unproblematic, but this is a good time to revisit Illness as Metaphor by #SusanSontag. Certain metaphors are more damaging than others. Case in point:<span class='match'> the </span>language of warfare in responses to COVID-19.
## 
## https://t.co/O4b541Sllj</li>
##   <li>#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 Great unsigned music Sun Ra by Between Suns @sunsbetween via @quitegreat Listen on https://t.co/CnNg5Lvd7i or on https://t.co/pyHWGqFA4R https://t.co/08vnEFwfMt</li>
##   <li>Did you know<span class='match'> the </span>recall is now collecting signatures from Alaskans at HOME? Request your household's booklet today.
## https://t.co/bGaObP7DGj
## 
## #COVID2019 #AKLeg #RecallDunleavy</li>
##   <li>@Tigerlil2 10 deaths today. Got to face up to it Tadgh Im afraid. It will be a long time now before we can say nobody in Ireland died of #COVID19 today. If we get out of this with less than 2000 deaths we will have done pretty good. However I think history will say Ireland deal with it well</li>
##   <li>Coronavirus Australia: Frontline COVID-19 health workers may be protected with BCG vaccine 
## #新型コロナウイルス
## https://t.co/Wp6qnEXZyf</li>
##   <li>#Refugees to<span class='match'> the </span>#rescue? #Germany #taps #migrant
## #medics to battle #virus [AMP] | 
## 
##  https://t.co/zIESW0CVcA 
## 
## #bigdata 
## #healthCare #GERMAN 
## #COViD19 #Linux #COViD19USA #Covid19iNDiA #COViD19UK #CANADA #COViD19france #COViD19italy
## 
## #USA #indiaLOCKDOWN #china #iran #UKLOCKDOWN</li>
##   <li>Does #coronavirus spread through animals <U+2753>
## According to<span class='match'> the </span>@cdcglobal and @who, there is no evidence to spread #COVID19 by pets.
## Read Our Blog Now<U+0001F447>
## https://t.co/BJanzxVyfD
## Spend Time With Your Pets<U+2764><U+FE0F>
## #maroonmartin #pets #CatsOfTwitter #dogsoftwitter #StayHome #Read #blog #USA https://t.co/tTatGMdrw2</li>
##   <li>@salmaiorana @ByJerrySullivan The 2009 swine flu infected 1.4 Billion people around<span class='match'> the </span>world, and killed 575,000 people. 
## 
## There was no media panic, and societies did not shut down. 
## 
## #Coronavirus has infected less than 468,000 people, and killed 22,000 going into April. 
## 
## Just a little perspective.</li>
##   <li>@ABSCBNNews I feel sorry for her. However what she said about<span class='match'> the </span>covid 19 pandemic as “nature’s way of cleansing” was very insensitive. This is a lesson for all to be careful of their words.</li>
##   <li>When other news outlets are making #COVID19 articles free @TheAtlantic is not. Why is that? 
## 
## But I was able to read it, my "last free article" and I agree, it's a must-read. https://t.co/6wdLDClR9X</li>
##   <li>It’s Always 5 o’clock Somewhere  !!!<U+0001F451><U+0001F943><U+0001F377><U+0001F942><U+0001F483><U+0001F3FD><U+0001F57A><U+0001F3FD><U+0001F37B><U+0001F379><U+0001F37E><U+0001F451><U+2728><U+0001F539><U+0001F539>#Tgif #lol #socialdistancing  #lit #bar #drinks #libation  #funny #besafe  #2020 #mood   #staywoke #covid19 #coronavirus #quarantined  #lastcall 
##          #bestlife… https://t.co/7YNaiMrc05</li>
##   <li>These are<span class='match'> the </span>people you put to take over at night. 
## Their minds already filled with beating normal citizens. Look at how proud they are.
## @HassanAliJoho
## #COVID2019 
## #CurfewinKenya 
## #Mombasa https://t.co/bUuSn2YL0N</li>
##   <li>BREAKING NEWS: 
## 
## 85 new CoronaVirus cases in New Zealand. 
## 
## #CoronaVirus #COVID19 https://t.co/etcQIrHLFq</li>
##   <li>Simple message! Stay at home! But<span class='match'> the </span>not rights couldn't do it. Now look! This isn't a public holiday! This isn't a time for parties and BBQs.  #winterhill #CoronaLockdown #covid19 #moorsfire https://t.co/XoCONEnrru</li>
##   <li>#CORONAVIRUS
## The quarantined passengers who are in 14 days of isolation in #SaudiArabia are placed in 5 star hotels. Some pictures of<span class='match'> the </span>gifts - chocolates and fresh fruit being distributed. @ Saudi Arabia https://t.co/CleCMmEncO</li>
##   <li>I'm a diagnosed #OCD #germaphobe with social anxiety distorter.  I was to for years to learn not to wash my hands all<span class='match'> the </span>time and force myself to be close to people.  Now I'm<span class='match'> the </span>one that is doing things right.
## #COVID19  #CoronaLockdown</li>
##   <li>Estimates of<span class='match'> the </span>economic costs to expect in<span class='match'> the </span>#Covid19 crisis. Quick solutions from science, technology and innovation are needed for<span class='match'> the </span>recovery reboot. https://t.co/scqS2PSmah</li>
##   <li>There are giant chicken and pig and beef processing plants all over<span class='match'> the </span>US and Canada. Small farm ones too. 
## Gourmet farm to table restaurants. 
## Live animals get butchered, and cooked. This is not some "Asian thing" and that meat on your plate didn't appear by magic. #covid19</li>
##   <li>COVID- 19: FG tracing 4,370 people, says may be forced to use ‘strong arm’ tactics - https://t.co/vxiNDb9m1w</li>
##   <li>GameDay analyst @kirkherbstreit talks about how he sees #Covid19 affecting<span class='match'> the </span>NFL and College Football seasons. We asked him what<span class='match'> the </span>NFL Draft broadcast might look like for him. That and more. Listen here: https://t.co/Z97P102As9</li>
##   <li>The Fellas talk more about Covid-19 and<span class='match'> the </span>mind frame of some of<span class='match'> the </span>masses. They Dive a little deeper into how<span class='match'> the </span>Rona is effecting life as we know it. How is life for you<span class='match'> the </span>people? We love y'all all be safe and be clean!
## 
## Click<span class='match'> the </span>link to listen: https://t.co/RySnw6zi7i https://t.co/4EqJA94N4b</li>
##   <li>Germans killed millions of people, including 6 million Jews. Today, Germany is an economic giant,<span class='match'> the </span>biggest economy in Europe. In Africa, everyday, religion critics are telling us about<span class='match'> the </span>clergy. What have<span class='match'> the </span>catholic priests done to provoke global pandemics like  COVID-19?? https://t.co/OBD5j7rk0k</li>
##   <li>Allen Crawford Thomas and Mark Ayton, two strategy specialists at @Jisc, explain why universities should adopt a 'more haste, less speed' approach to dealing with remote working during<span class='match'> the </span>#coronavirus crisis.
## 
## Read more: https://t.co/FTeCnCb2nn https://t.co/QHsiwNIoKY</li>
##   <li>@areyousurebruv oh boy... bruv... have you seen<span class='match'> the </span>new york city health department’s covid-19 update?</li>
##   <li>As our community works together to prevent further spread of COVID-19, it's amazing to see<span class='match'> the </span># of people stepping up to aid essential workers, businesses &amp; neighbors in need. Today's community update focuses on a few of these local initiatives:  https://t.co/DocOJz6Ucj https://t.co/vOXq0XYLwU</li>
##   <li>Please support if you can @MrPranPatel  #coronavirus #COVID19 #SelfEmployedMatterToo https://t.co/D5gZIgm2cO</li>
##   <li>Thank you @NYUMcSilver for assisting in New York's #Coronavirus response by providing online resources and best practices for mental health professionals #COVID19KnowCare https://t.co/8dxBF33mjL</li>
##   <li>Covid-19 reaction review, which one is worse?
## #UltimateLoveNG 
## #ClapforLagos 
## TB JOSHUA
## #TakeResponsibility</li>
##   <li>I just heard on #WOAI1200 that all those who were quarantined at Lackland were sent home, including those who have #COVID19 and are still recovering. Why are we sending positive cases back to their community? @Ron_Nirenberg @JoeTalkShow @treywareshow @ksatnews</li>
##   <li>I love this!! 
## 
## Everyone pull out your wonderland and CNE giant prizes!
## 
## #Canada #FreeAirHug #COVID2019 https://t.co/MGC9Ud2Cg7</li>
##   <li>I would be watching @DisneysMulan in theaters but Covid-19 had other plans<U+0001F612></li>
##   <li>Apparently, COVID-19 takes away your sense of taste and smell. And allows you to eat... lemons? <U+0001F34B><U+0001F34B><U+0001F34B>https://t.co/3dct1jw8I6</li>
##   <li>#MVSU students: as majority of<span class='match'> the </span>University offices has gone virtual to working remotely;<span class='match'> the </span>essential offices of enrollment management remains fully open. The University continues to closely monitor<span class='match'> the </span>pandemic of COVID-19 and<span class='match'> the </span>safety of its staff on campus.</li>
##   <li>@wvllop #DECLINED. SHAME ON YOU! STOP TRYING TO SCAM PEOPLE. YOU WILL REAP 10x WHAT YOU ARE SOWING. @pulte @TeamPulte @CashApp this person is using CashApp to SCAM people! #COVID #COVID19 #ScamAlert #SCAM #ScamAware</li>
##   <li>Because this is<span class='match'> the </span>video that @realDonaldTrump @POTUS doesn’t want you to see. #coronavirus #LiarInChief https://t.co/kTG9lffoBu</li>
##   <li>Today, we will reach over 400 deaths. The most America has lost to #COVID19 to date. When we have an incompetent bafoon like this as president, it adds to<span class='match'> the </span>grief that this country is already experiencing. It is torture and criminal! #CongratulationsAmerica https://t.co/W5dKFWTWAH</li>
##   <li>New post (Cricket should be last on everyone's mind now, safety is priority: Ravi Shastri on Covid-19 crisis) has been published on ApzWeb - https://t.co/yJjOFOFt98</li>
##   <li>A4.4 Check out @fractweets’ guide to ensuring access to WIC during #COVID19: https://t.co/df6OvxcVBm #FoodFri https://t.co/J4CX2eO0cv</li>
##   <li>Charities That Help Millions Of Canadians Warn They Won't Survive COVID-19 https://t.co/1QGv87NSLX</li>
##   <li>@noamscheiber id like to see about maybe getting your help with uber and lyft as they refuse to pay driver's as promised for COVID-19 financial assistance.</li>
##   <li>Verizon understands<span class='match'> the </span>need to stay connected, especially in difficult times. Learn more about how @Verizon is responding to COVID-19. #IamVZ https://t.co/V1gZMKc0Hw</li>
##   <li>Remember: chloroquine has not been proven to work (yet). The paper showing this is clear as mud (to put it nicely).
## https://t.co/E2c0oe0hup</li>
##   <li>Testing in KP(566 cases) vs Islamabad ( 459 tests) for #COVID2019 is around 24% more
## 
## Islamabad pop is 2 million 
## 
## KP pop is 30mn plus ( 1500% more)
## 
## Islamabad is hogging testing kits ?
## 
## Justice and fair play in health facilities will bode well for<span class='match'> the </span>war against Corona! https://t.co/2Q1lhp93jD</li>
##   <li>Not All Americans Are Fighting Over Toilet Paper: 5 Good Deeds Done During The COVID-19 Pandemic https://t.co/GiPYfurMmc</li>
##   <li>What are Nigerian native doctors doing about this Covid-19? Iya herbalists and Co.?</li>
##   <li>Join our @EY_US webcast on 3/30 to hear about<span class='match'> the </span>eligibility, requirements &amp; conditions to receive CARES Act support. The CARES Act aims to keep workers employed and provide health care system enhancements &amp; economic stabilization. Register: https://t.co/BfaH2oJtzO  #COVID19</li>
##   <li>Maryland Gov. Larry Hogan on 77WABC says his state is seeing rapidly escalating #COVID19 cases https://t.co/1n3tZ7fV61</li>
##   <li>Be advised, @I_Corps COVID-19 update for March 27. https://t.co/VpfjUFSIxf</li>
##   <li>@JGOOD5124 @Local4News Time for more math.  If covid-19 infects 61 million Americans at its current expected mortality rate of 2 percent then that means 1,220,000 dead Americans,  and<span class='match'> the </span>death rates in some countries are over 10 percent.</li>
##   <li>Sad to say that every crab from<span class='match'> the </span>crab dance video has been killed by COVID-19</li>
##   <li>Jan. 27, 2020 - @WHO said #coronavirus. NOT a global emergency. https://t.co/pWzUrNMCqt</li>
##   <li>Femi Felix - Walking Away | Naija Songs // #Naijapals https://t.co/iBX0JcCOn2
## #SaturdayThoughts #SaturdayMood #StaySafeNigeria #SaturdayMood #SaturdayMorning #CoronaLockdown #Tacha #Quarantine #COVID #StayHome #coronaviruske #COVID2019Ghana #StaySafeNigeria #COVID19 #JesusSaves</li>
##   <li>At least one of six RCMP employees with COVID-19 from B.C.
## https://t.co/8HidP6JVPu https://t.co/5cc0woVLdk</li>
##   <li>Food for thought <U+0001F914>#nycoronavirus #COVID19 https://t.co/nv5UgGNfQw</li>
##   <li>Surrogacy: new parents stuck in US amid Covid-19 shutdown <U+2013> If you are facing issues, you can contact our team on: hello@ngalaw.co.uk.
## https://t.co/QMkImPSaoo</li>
##   <li>235 positive cases in Iowa and three people have died due to<span class='match'> the </span>virus. https://t.co/EVsUOsL2yE</li>
##   <li>@CamillaTominey Harry and Meghan have gone so what they do matters not, however if its true that his father had Covid 19 symptoms prior to travelling to Scotland, he’s not exactly setting much of a good example risking infecting a second household and their families/community is he.</li>
##   <li>Derbyshire Police have used drones to deter people from breaking<span class='match'> the </span>#coronavirus lockdown rules by travelling to remote areas for their daily exercise. @AsiansUK @UKLabour https://t.co/yz5oo0k8CC</li>
##   <li>.@NewcastleJetsFC confirm player tests positive to COVID-19 https://t.co/Vr2eZy77B0 via @newcastleherald https://t.co/wQ47g8pXX8</li>
##   <li>Our CEO, @meganmotto has been quoted in 
## @DigFinGroup article, 'More to ASX’s DLT extension than Covid-19 chaos'. 
## Read more here: https://t.co/H97KrcGf0i #CoronavirusAu #CoronavirusOubreak #ASX https://t.co/r6EsyQ5BXU</li>
##   <li>There are at least 62 patients hospitalized at UAB Medical Center in Birmingham because of complications from COVID-19 as<span class='match'> the </span>number of confirmed cases has skyrocketed to 501 in Alabama.
## #alabama #COVID19
## https://t.co/UEHGTIAXs6</li>
##   <li>President @realDonaldTrump will travel to Norfolk, Virginia, this Saturday to bid bon voyage to<span class='match'> the </span>hospital ship USNS COMFORT as it leaves for New York City to<span class='match'> the </span>frontlines of<span class='match'> the </span>COVID-19 virus response.</li>
##   <li>@shattawalegh @NAkufoAddo Hi there,
## 
## I'd really appreciate it if you could share or donate to this GoFundMe,
## 
## *COVID-19 AFRICA ACTION*
## 
## https://t.co/Y2a0EQjJlq</li>
##   <li>The UK government is using various tactics to suppress<span class='match'> the </span>number of #coronavirus deaths.
## 
## Another one is NOT including deaths in<span class='match'> the </span>Covid-19 tally unless relatives have given instructions that this should happen. https://t.co/pxbDX1WIYw</li>
##   <li>Bored of being stuck at home? Pick up a book! Support your local bookstores and order online. <U+0001F4D6><U+0001F4DA>Support https://t.co/sBiWDscIUY for audiobooks as they support local bookstores with their proceeds. 
## Join a bookclub like @lifes_library with me! Or do all 3
##  #coronavirus #bookworm</li>
##   <li>Massie, and That Pesky Constitution, Hold Up COVID-19 Bailout Bill - https://t.co/bUTmzXyuUR</li>
##   <li>"India's response to COVID-19 has been preemptive, pro-active and graded " Read detailed timeline and statement by<span class='match'> the </span>Government below on
## #CoronaUpdate
## #CoronaLockdown 
## #CoronavirusOutbreak https://t.co/TrPc2kzSC2</li>
##   <li>Oh How The Times Have Changed
## 
## #Meme #Memez #Coronavirusmemes #COVID2019 #covidmemes #memer #memes #laugh #funny #future #corona #virus #pandemic #comedy #laughter #StayHome #COVID<U+30FC>19 #Quarantine #StayHomeSaveLives #instagram #instamemes https://t.co/CZRmM7Mcm6</li>
##   <li>This is unacceptable. Release<span class='match'> the </span>supplies NOW! #COVID19 #WeNeedPPE #MINeedsPPE https://t.co/YpkSIR4x2Q</li>
##   <li>Jails and prisons are particularly vulnerable to<span class='match'> the </span>spread of COVID-19. We need action now. https://t.co/PNr7V6gWHi</li>
##   <li>fuck COVID-19 i wanna hug my bro’s <U+0001F61E></li>
##   <li>Two COVID-19 deaths reported in Nebraska; Directed health mandates expanded https://t.co/t6DCkeACRP https://t.co/SF7dGMUZWM</li>
##   <li>Some great examples of how players are using Animal Crossing to stay in touch with friends during<span class='match'> the </span>COVID-19 pandemic. 
## 
## Social nature of gaming + Online connectivity + Gaming worlds = A great way to pass<span class='match'> the </span>time, stay in touch, be entertained. 
## 
## https://t.co/l0FJDt9UWU</li>
##   <li>Let<span class='match'> the </span>#coronavirus keep going one more day. Fuck a mask I’m going #fullsamurai @ Wu's House Evergreen Park https://t.co/jfEGLyxBC1</li>
##   <li>#RalphLauren #stimulusbill #StimulusPlan #TogetherAtHome #ThankYou <U+0001F1FA><U+0001F1F2><U+0001F1FA><U+0001F1F2><U+0001F1FA><U+0001F1F2>Produce Face Masks and Isolation Gowns as Fashion Brands Respond to #COVID-19 #pandemic #Topbuzz https://t.co/1rDIDVqZ0k</li>
##   <li>Missing your loved ones during #COVID19? 
## 
## Let them know you’re thinking of them by sending a message and a picture to them through @IsFearrAnStar https://t.co/nGly1I3tJr</li>
##   <li>With<span class='match'> the </span>#COVID19 causing an unprecedented impact on<span class='match'> the </span>Healthcare Marketing Industry, non-personal promotion is critical. To date, 10 of<span class='match'> the </span>top 20 pharmaceutical companies have grounded their HCP facing employees. Keep connected with https://t.co/MM9ZU6pWzQ #partnercontent https://t.co/3ViY2hJPut</li>
##   <li>Third day into<span class='match'> the </span>I'll thought out lockdown, India has seen its first starvation death.
## 
## This is entirely on @narendramodi 's cruel response to #Covid19 https://t.co/5OxBT6x3ev</li>
##   <li>Covid-19 is killing me and i
## I must confess i hate quarantine, quarantine
## I miss my friend? Im losing my mind
## Give me a sign, when can i go back outside<U+0001F609>
## 
## Gimana? Bernada gak wkwkww</li>
##   <li>Would that words fail. #COVID19 https://t.co/tB0yK90vsx</li>
##   <li>From HIV 
## to 
## Australian Hendra
## to
## All influenza menace (Spanish flu to covid 19)
## to Ebola</li>
##   <li>House passes $2 trillion COVID-19 emergency bill  https://t.co/g64jSMIJdt</li>
##   <li>COVID-19 be wilding everywhere fam!!!!
## 
## Damn!!<U+0001F926><U+0001F3FF><U+200D>♂<U+FE0F></li>
##   <li>ANNAPOLIS <U+2013> Maryland had 580 confirmed COVID-19 cases, as of Thursday morning, after 157 new cases were reported in this state during a 24-hour period, according to a written statement by Gov. Larry Hogan, who further reported that it “is by far the… https://t.co/FsmPeF6z7J</li>
##   <li>Now is<span class='match'> the </span>time to cling to<span class='match'> the </span>Divine and<span class='match'> the </span>intangible, for these are<span class='match'> the </span>greatest forms of wealth that we posses.  These are<span class='match'> the </span>things that will get us through times of uncertainty.
## <U+0001F64F>
## #COVID2019 
## #meditation #yoganidra #Spirituality#compassion PrayersForCoronaFreeWorld</li>
##   <li>#Coronavirus: '#Nature is sending us a #message’, says #UN #environment chief | World news | The Guardian via @soph_delorme https://t.co/0kJ8JFzw1F https://t.co/tA22ItoWqP</li>
##   <li>A protest for how<span class='match'> the </span>government overreacted to covid-19... apparently only 5 people showed up. Nice they’re still following<span class='match'> the </span>under 10 rule <U+0001F44C> way to go Omaha! https://t.co/1UDVz2CAvl</li>
##   <li>@JRinPueblo @SharonIsrael10 @realDonaldTrump Personally I feel that this 'Pandemic' is suspicious &amp;<span class='match'> the </span> hullabaloo over COVID-19 death rate is far less than this Flu Season death rate!  Something is wrong  with this whole thing &amp; it feels more Political than anything! https://t.co/S3ogfgeJYx https://t.co/oOGG2QlpNz</li>
##   <li>Many Friends raise #Germany data as an issue, it is not an issue and is correct.
## 
## SitRep. Pos Test &gt; nofity Local Authority &gt; notify RKI &gt; collates all<span class='match'> the </span>#covid19 data &gt; reports to Gov &amp; WHO
## 
## Lots of people no idea what they are talking about yet give an idol opinion as fact. https://t.co/VvHEiMzgiV https://t.co/goyOgbJYAB</li>
##   <li>Breaking News !!! Accra &amp; Kumasi Locked down for two weeks. #covid19 #Gh... https://t.co/y5FFFVU7fZ via @YouTube</li>
##   <li>ER at Beaumont Wayne closes to help treat surging COVID-19 cases, officials say https://t.co/k3pg0yJUz6 via @detroitnews</li>
##   <li>Also from an infection prevention response perspective, this other particular side-effect of<span class='match'> the </span>COVID-19 lockdown looks problematic too. #condomsupply https://t.co/nySKI4CA3q</li>
##   <li>Somehow @realdonaldtrump continues to find ways to shock me w/ his stupidity. #covid19 #covidiot https://t.co/AQPCecPuTk</li>
##   <li>One of<span class='match'> the </span>biotech industry’s up-and-coming gene therapy companies is further delaying its plans for a U.S. drug launch, citing disagreements with FDA officials and<span class='match'> the </span>COVID-19 pandemic. https://t.co/3VI1woW6kB</li>
##   <li>#Coronavirus
## My baby rules<span class='match'> the </span>house- she is<span class='match'> the </span>QUEEN https://t.co/OfaOyF2CLk</li>
##   <li>He’s likes this stuff he really gets it!! Lol <U+0001F602> #COVID19 #ThankfulThursday that this made me laugh but I’m crying because this is<span class='match'> the </span>leader we have, he can careless about human life, &amp; only cares about money!! https://t.co/6tklm0FZVJ</li>
##   <li>.@SpeakerPelosi's latest despicable #Coronavirus ploy.
## 
## @mboyle1 on #AMERICAFirst 
## 
## @BreitbartNews 
## @SalemMediaGrp 
## https://t.co/qTioE6MPRN</li>
##   <li>Abbott Labs is unveiling a coronavirus test that can tell if someone is infected in as little as 5 minutes, and is so small and portable it can be used in almost any health-care setting https://t.co/9ifez9Uu6M via @business</li>
##   <li>The word "immunocompromised" has been used a lot in<span class='match'> the </span>news recently because it is associated with a higher risk for severe COVID-19 complications. I'm guessing a lot of people don't know what this means so I'm glad<span class='match'> the </span>@washingtonpost
## put out this video: https://t.co/iwM796yMms</li>
##   <li>COVID-19 puts a chill on what was otherwise a hot housing market - here's what happened over<span class='match'> the </span>past two weeks in<span class='match'> the </span>Twin Cities https://t.co/DRpE9C5LZX</li>
##   <li>Is your nonprofit looking for funding help during this hard time? We took<span class='match'> the </span>time to compile a list of organizations and foundations offering COVID-19 relief funding to make things easier for you and your nonprofit. You can download it here: https://t.co/F2Rit8fMUb https://t.co/Y6p2vkcpri</li>
##   <li>Officials say<span class='match'> the </span>patient was in<span class='match'> the </span>high-risk category due to age and underlying medical conditions. https://t.co/l8MYA9QPYS</li>
##   <li>@ebenezer_slim COVID-19 is scary</li>
##   <li>@Alyssa_Milano Trump will ride #coronavirus  to reelection!</li>
##   <li>Heartbreaking thread... #HealthCareWorkers on<span class='match'> the </span>front lines of #COVID19. When your colleague becomes your critically ill patient.... https://t.co/YPi4Khf5MT</li>
##   <li>This third phase of #COVID-19 relief legislation likely will not be<span class='match'> the </span>last, and #healthcare industry players and lawmakers are already beginning to lay out their priorities for what's next. #coronavirus https://t.co/TgpJkVLoFr</li>
##   <li>@faborez Hi,<span class='match'> the </span>unroll you asked for: Thread by @joelrwrites: Date of 10th #Coronavirus case: Spain: Feb 26th Italy: Feb 21st UK: Feb 23rd Deaths (as of 24th… https://t.co/M2MF0B4Bqq. See you soon. <U+0001F916></li>
##   <li>US overtakes China as country with highest number of confirmed Covid-19 cases - Johns Hopkins University. One would reckon<span class='match'> the </span>actual number will not be accurately determined in<span class='match'> the </span>near future.</li>
##   <li>Why is<span class='match'> the </span>John Hopkins University Covid-19 stats site reporting 212 deaths in NSW?</li>
##   <li>A win for #workersrights https://t.co/p9FMc14vbE</li>
##   <li>Tonight from 7 p.m. to 8 p.m., WOOD TV8 and @GovWhitmer  will hold a virtual town hall meeting about COVID-19 in Michigan and this event will be interpreted by a sign language interpreter. @WOODTV 
## https://t.co/Ms7m3Mkne6</li>
##   <li>For<span class='match'> the </span>various people I see rationalising reasons why it’s okay for them to break<span class='match'> the </span>movement restrictions, I hope a relative doesn’t die because someone else thought<span class='match'> the </span>same and<span class='match'> the </span>chain wasn’t broken #COVID19 #lockdownuk</li>
##   <li>Professor of<span class='match'> the </span>Practice @bobettebuster lays out<span class='match'> the </span>current and potential impacts of COVID-19 on Hollywood and<span class='match'> the </span>film industry: https://t.co/EcFf8FwVcC</li>
##   <li>Henry County Has First Positive Test for COVID-19 https://t.co/ea9vMLhZje</li>
##   <li>@thedailybeast Trump denied approved aid to Ukraine that they needed to fight Russia. This is<span class='match'> the </span>same thing, except now Trump is denying help to Americans that they need to fight #coronavirus. What does he want? For governors to grovel at his feet, then praise him for DOING HIS DAMN JOB.</li>
##   <li>Coronavirus updates: COVID-19 cases top half a million worldwide - Mar 26 @ 2:36 PM ET https://t.co/DMRcHVSlS3</li>
##   <li>@EmTumilty I did a deep dive in this literature a few months ago. Such important information for anyone working with health care workers during and in<span class='match'> the </span>aftermath of COVID-19.</li>
##   <li><U+2764><U+FE0F> @SecNorman &amp; appreciate that he took time to answer COVID-19 questions from kids. @KDHE #allinforKansasKids https://t.co/gb9AKtqrrJ</li>
##   <li>A little bit of #truth. #COVID19 #Covid19usa #SocialDistanacing #HomelessCantStayHome <U+0001F622> https://t.co/tGzOXeIrZV</li>
##   <li>Dr. Fauci Explains The Timeline And Risks Of Creating A COVID-19 Vaccine... https://t.co/cj7YKKdHqo via @YouTube</li>
##   <li>God will take absolute control <U+0001F647><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F647><U+0001F3FB><U+200D>♀<U+FE0F> I believe. #chioma #COVID19</li>
##   <li>Before we clock out for<span class='match'> the </span>day, remember to sign up for SKCP's email list for general neighborhood information, COVID-19 updates, and census-related content. https://t.co/iefESF6edE</li>
##   <li><U+0001F4F9> COVID 19 symptoms https://t.co/Oq9QuPgbpH</li>
##   <li>@harmo_L @IamAdamLFC You can't catch Covid-19 again once you've had it!!</li>
##   <li>#Coronavirus @realDonaldTrump your failure to be a leader and listen to experts are causing #clusterfuck</li>
##   <li>Opinion: Grant bail to unsentenced prisoners to stop<span class='match'> the </span>spread of coronavirus - +GENERAL PHYSICS LABORATORY (GPL)
## 
## Prison is, understandably, a very closed environment. Many prisons are also overcrowded. COVID-19 has already entered<span class='match'> the </span>...
## 
## https://t.co/vKvxDMqRlg</li>
##   <li>Available Now: Global Fund COVID-19 Situation Report
## 
## The #COVID19 Situation Report brings together essential news and updates about<span class='match'> the </span>@GlobalFund partnership’s response to<span class='match'> the </span>pandemic.
## 
## Read<span class='match'> the </span>full report: https://t.co/pPcM5SVnU3</li>
##   <li>Join me &amp; other people of faith to rebuke a #COVID-19 Easter massacre https://t.co/u9ul44PGLT</li>
##   <li>China Recommends Bear Bile to Treat COVID-19, Worrying Wildlife Advocates https://t.co/4gm7kZ7ipO</li>
##   <li>@WinnersChapelNL Please see to this @segalink @NigerianPolice @PoliceNG_lagos @EiENigeria @followlasg @jidesanwoolu   no church service #covid19</li>
##   <li>#Paris mars 2020 #COVID2019 https://t.co/fuC8FRLCYx</li>
##   <li>Shut<span class='match'> the </span>Damn Airports Down ASAP!!! @POTUS @realDonaldTrump @VP @SecPompeo @StateDept @FoxNews @CNN #coronavirus #SaveAmerica @SenateStates https://t.co/lgIPIwCs54</li>
##   <li>Here's A Coronavirus Tip
## Q: What is<span class='match'> the </span>most touched surface at any store?
## A: The Credit Card Keypad
## Tip: Use a common pencil's eraser to push<span class='match'> the </span>buttons!
## Share this &amp; your tips at #coronavirustip.
## 
## #coronavirus https://t.co/2QfKXNNBgm</li>
##   <li>Covid-19 could never deter Doris B <U+0001F624> https://t.co/j77cBjsAfM</li>
##   <li>2 COVID-19 deaths reported in Muskegon County https://t.co/8ceMLehIpS</li>
##   <li>Prostitutes probably willing to bust it open for $10 fee these days <U+0001F923> 
## #COVID19</li>
##   <li>With schools closing due to #coronavirus (#COVID19), it’s important to keep kids engaged, healthy, &amp; active at home. @CATCHhealth has a free, easy-to-use set of #HealthEd &amp; #PhysEd materials that require limited space &amp; supervision. Full info: https://t.co/iqVxwiQbxp #HPEatHome</li>
##   <li>UNHCR<U+00A0>- Syrian refugees aid vulnerable Swiss amid COVID-19 outbreak https://t.co/5IBWStkIOq</li>
##   <li>@RepAndyHarrisMD Andy, just declare that you will be voting "NO" and be done with it. That way we can be sure that we know where you stand on attacking COVID-19 and<span class='match'> the </span>economy. Small businesses and<span class='match'> the </span>unemployed in your district will appreciate your "NO" vote. Hospitals too. Show us, Andy.</li>
##   <li>Update on Covid-19 In The DR from<span class='match'> the </span>desk of Maria Abreu
## 
## https://t.co/PZIffIHBa8</li>
##   <li><U+0001F449>In Support of nation. <U+0001F600>
## 
## <U+0001F449>Get free immunity boosting nutrition plan.
## 
## #COVID19 #nation #health #freediet #diettips #nutritionfacts #nutrition #healthyeating #healthyfood #healthydiet #foodtips #getfit #body #dietitian #pcod #dietplan #weightlosstips #wellness https://t.co/76MH3Hw3Zt</li>
##   <li>This is weird. Celebrities in various countries testing positive for Coronavirus but having no symptoms... Why would you take<span class='match'> the </span>test if you don’t have any symptoms??? 
## 
## #ccpvirus #coronavirus #covid_19 #chinesevirus #covid19</li>
##   <li>2 points from @RaburnForBART re: #coronavirus impacts. 
## 1: @SFBART should consider ultraviolet or other advanced non-chemical means for train &amp; facility cleaning. 
## 2: That agency must be mindful of equity impacts of further service cuts &amp; minimize disparate impacts.
## @KQEDNews</li>
##   <li>Youth group tonight... #COVID19 #NorthwayChurch https://t.co/Gutgv3H8q4</li>
##   <li>Anyone else missing #livemusic music? I'm going to watch some of these performances tonight! https://t.co/X9Yv0v7c0m #acllive #austincitylimits</li>
##   <li><U+0001F98B> IN IS THE NEW OUT<U+0001F98B> 
## We want to give something back to you in any way that we can, small or big, so we will be putting our #InIsTheNewOut T-Shirts in every order over £10 <U+0001F499>  #ISEEKindness #ISEELove #inwithISAW #COVID2019 https://t.co/wk9MLwFG7o</li>
##   <li>"Developed in just six weeks,<span class='match'> the </span>rapid test can detect a SARS-CoV-2 coronavirus infection in patients in under two and a half hours."
## Self-contained, no need for a lab analysis.
## https://t.co/H9QYfNiqjQ</li>
##   <li>Vitamin Supplements to fight Covid 19 and boost your immune system! https://t.co/EkYJPJwPAj https://t.co/2Vw3dztlex</li>
##   <li>Artists are dropping music without a thought about COVID-19 and even saying “let’s not talk about corona I don’t want it associated with my album” yet Selena using her single roll out to raise money is greedy and an issue?!?!? Ridiculous. As always. https://t.co/d7pl9O2wDQ</li>
##   <li>Shaikh Zayed Road Now #Dubai #COVID19</li>
##   <li>When is @realDonaldTrump ‘s trial for wrongful death of Americans and human rights violations @ACLU #coronavirus #COVID2019 #nyccoronavirus</li>
##   <li>Trudeau announcing that Canada will cover 75% of wages for qualifying small and medium-sized businesses to avoid layoffs due to COVID-19 is a huge move. That's an increase from<span class='match'> the </span>10% wage subsidy announced last week.....
## #another style of leadership #</li>
##   <li>Covid-19 ruined my college experiences already</li>
##   <li>Wonder how young Sheldon is taking this covid-19 crisis</li>
##   <li>For students in<span class='match'> the </span>US: @NAMSAOfficial has formed a COVID-19 Task Force to address general enquiries and to ensure<span class='match'> the </span>welfare of Malaysian students
## 
## Read more below <U+0001F447><U+0001F447> https://t.co/4lY8utdqEz</li>
##   <li>Trying to avoid<span class='match'> the </span>#coronavirus like https://t.co/g6xQHsFoB8</li>
##   <li>#COVID19
## #Coronavirus information: What should I do? https://t.co/OAds1qQOmz</li>
##   <li>@realDonaldTrump  what nation do you spend a lot of time in? #coronavirus #WhiteHouseBriefing #why https://t.co/9EWy392x9k</li>
##   <li>Trying new drugs for COVID19 in Malaysia to find<span class='match'> the </span>possible cure for COVID19 infection - Remdesivir <U+0001F44D><U+0001F3FB><U+0001F4AA><U+0001F3FB>            https://t.co/emATrp8Vg5                                                #COVID19 #StayAtHomeAndStaySafe</li>
##   <li>“As Talent Acquisition Recruiter, we can never compare ourselves with our front line heros saving lives of<span class='match'> the </span>COVID 19 patients.  But we are proud to be part of NYP and proud to have hired such dedicated team of healthcare professionals - selfless, passionate and daring.” GL <U+0001F4AA><U+0001F3FB> https://t.co/tX8oqe40nJ</li>
##   <li>@eminemzminnie He calls anyone that calls him out names. Yet he, as<span class='match'> the </span>president of<span class='match'> the </span>US, is single handedly responsible for this shit show response to Covid 19..this will be his legacy and his curse</li>
##   <li>@page_eco have you seen this new data tool for Covid-19-related stats and resources? More interactive, more data than most I’ve seen. 
## 
## https://t.co/u8dpX1iFDN</li>
##   <li>The measure moves now to<span class='match'> the </span>City Council: https://t.co/n99fOIwKgE</li>
##   <li>Part 2 of 2 A question about why I have<span class='match'> the </span>mask I do. 
## N95’s need to be fitted properly. If it’s not fitted properly it’s not going to work as it should. 
## Surgical masks only offer protection to others from you by preventing droplets. #COVID19 
## Please wash your hands https://t.co/D2mltA8QaE</li>
##   <li>Living in Special Times............thank GOD for imagination and fried fish! <U+0001F420><U+0001F420><U+0001F420> #quarantine #covid_19 #staysafe #becreative</li>
##   <li>All school districts in #Kansas are closed for<span class='match'> the </span>remainder of<span class='match'> the </span>school year due to<span class='match'> the </span>#coronavirus outbreak. https://t.co/x1WfNFbnjO</li>
##   <li>Stay active from home during<span class='match'> the </span>COVID-19 outbreak with these free live-stream workouts https://t.co/eQiu4GCacQ via @seattlepi</li>
##   <li>Meals will be delivered to<span class='match'> the </span>COVID-19 floor at UAB Highlands and UAB Main beginning March 30. Read more from our sister paper, Iron City Ink.
## https://t.co/pfhb5gc4AB</li>
##   <li>Donated one day salary to PMRF for COVID-19. https://t.co/WH71QlZixh</li>
##   <li>#turnoffthelight 
## Despite #Covid_19 landmarks around<span class='match'> the </span>world will go dark for #EarthHour this evening.
## By turning<span class='match'> the </span>lights out at home at 8.30 p.m. we send a signal for climate protection and our planet. We mustn’t lose sight of long-term challenges!
## https://t.co/AeVl4RVAx5</li>
##   <li>Deep &amp; so true 
## 
## PLEASE STAY AT HOME GUYS <U+0001F64F>
## 
## #COVID2019 #WorldFightsCorona #IndiaFightsCorona #GoCoronaCoronaGo #lockdown https://t.co/m5iNLQF2Pk</li>
##   <li>@GENmag We all gonna get a cheque if you guys win #mindyou #COVID19</li>
##   <li>Here are lessons to be learnt once we awaken from<span class='match'> the </span>#coronavirus policy panic:
## https://t.co/DYRMEl0Rlv</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!!   www.DrJeff... https://t.co/Qb16aE8jBK via @YouTube</li>
##   <li>China Pursues ‘Mask Diplomacy’ With Asian Neighbors during #COVID19 Crisis: https://t.co/4F5o6zgcLS https://t.co/IKAZrQiXKN</li>
##   <li>Just 8% of consumers think brands should stop advertising due to<span class='match'> the </span>#coronavirus outbreak according to @Kantar study @MarketingWeekEd https://t.co/BWUOq7V33O</li>
##   <li>Initiative by government of India
## #IndiaFightsCorona #CoronavirusOutbreakindia #COVID #COVID2019 #lockdown https://t.co/F5Oxu6TnSf</li>
##   <li>Important things to know about our pandemic.
##  @Kurz_Gesagt #COVID19 https://t.co/TMo3CSg0Cy</li>
##   <li>Dear Friends ,
## Cn v start a drive to share our hero pic with #Hashtag #ourheros  who is making our life normal at this moment whn v r confined to our home.He/she cn b any1 frm milkman to policeman
## Kindly encourage thm.
## #21DaysChallenge
## #21daysLockdownIndia #COVID2019</li>
##   <li>CSCD COVID-19 update as of 03/27/2020
## 
## Help Tarrant County Flatten<span class='match'> the </span>Curve
## 
## If you have been tested for COVID-19, regardless of<span class='match'> the </span>outcome of<span class='match'> the </span>test, please immediately notify your supervision officer or any available duty officer.</li>
##   <li>@abdulaziz_rha @PTAlMutairi @farispt @alisaad_su @_p22e_ @AAlbarrati @Aboddrh @PT_Yousef @JeremyLewisPT @Msaad878 @1_aamri @sarafahad_3 I am now an #MBRUCommunityImmunity Ambassador. I am responsible to protect myself and my community from #COVID-19. I challenge (tag 3 friends/family) to take<span class='match'> the </span>course. https://t.co/V6fZF6lZ8T  i challenge @SummerPT @Me_Monshi @Mah_Eid https://t.co/bSnSGNVf9i</li>
##   <li>The Health Protection Surveillance Centre has today been informed that an additional three patients diagnosed with COVID-19 in Ireland have died. One person in<span class='match'> the </span>north-west of<span class='match'> the </span>country and two females in<span class='match'> the </span>east.
## 
## There have now been 22 COVID-19 related deaths in Ireland.</li>
##   <li>The Aso Villa/President's Office was Fumigated yesterday in<span class='match'> the </span>morning. It takes 2 - 3days before you're suppose to come inside
## 
## How is<span class='match'> the </span>President still at work. 
## 
## Reed here <U+0001F447><U+0001F447><U+0001F447><U+0001F447>
##  https://t.co/yod7gUqNDB #WhereIsBuhari https://t.co/a35v9iswGt</li>
##   <li>@kyrstensinema @AZDHS @kyrstensinema #COVID19 #CoronaLockdown  Antibody test 1st in country free for all residents of San Miguel County, CO  https://t.co/RvTfVyDdmL</li>
##   <li>Update #1 (3:25 p.m.)<U+00A0> Town of Essex Provides COVID-19 Update https://t.co/siQMeZle46 https://t.co/CIP9Enclxv</li>
##   <li>As you work from home, see it as an opportunity to re-evaluate your goals and re-strategize.
## 
## Remember, comfort should not breed laxity.
## 
## #RemoteWork #COVID19 @yourservice_ng https://t.co/0SVRqq9QAl</li>
##   <li>Garrett County Small Business Pandemic Interim Loan Program - A newly developed local small business loan program designed to assist Garrett County small businesses through<span class='match'> the </span>COVID-19 health crisis has been announced: https://t.co/0vSCiDHZIv</li>
##   <li>To any and all of<span class='match'> the </span>UK’s “new-left” and<span class='match'> the </span>#FBPE brigade ... this <U+0001F447>
## 
## #COVID19 #coronavirus https://t.co/0zY0eiDsI4</li>
##   <li>@MavourneenRebel Freshman 15, COVID 19</li>
##   <li>@rhylprimary Thank you @@rhylprimary. Two very happy children to have thier work on school's @Twitter feed <U+0001F60A> It has made them feel even more connected to a place they love. Thank you all for all your hardwork during #Covid19, we are so grateful  <U+0001F4DA><U+0001F58D><U+0001F4D6><U+0001F9EE></li>
##   <li>This is huge, let's get testing up. #COVID19 #TESTVIRUSNOW #coronavirus https://t.co/jjMMZjmnbC</li>
##   <li>What's<span class='match'> the </span>point of having a @POTUS if it's possible 2 have such a one as this Impeached Criminal @realDonaldTrump face us &amp;<span class='match'> the </span>world &amp; then lie, bloat, spin, self-aggrandize while showing no empathy whatsoever 4 those actually suffering from #COVID-19?
## 
## Thank god for #DrFauci !</li>
##   <li>BREAKING: The first COVID-19 related death has been reported in Iron County https://t.co/ypZtAwk7SX</li>
##   <li>@thehill So...when they all come down with Covid-19, she won't, and will become President.</li>
##   <li>America entertains arming their border with Canada and other coronavirus updates.
## 
## Learn more: 
## 
## Apple Podcasts: https://t.co/gi3kBBwCPc
## Spotify: https://t.co/mCKxFHhfXL
## Soundcloud: https://t.co/rzjqSoVGAv
## YouTube: https://t.co/uyNynnVaoo
## 
## #cdnpoli #Trump #COVID19 #coronavirus https://t.co/WWacPfd0mY</li>
##   <li>Meme pages need to stop posting covid-19 news. More fake news on them than<span class='match'> the </span>media.</li>
##   <li>We have teamed up with @eagle_labs , @EdinburghUni and @ucl to find ways we can support<span class='match'> the </span>NHS in response to #Covid19. If you have a tech solution or innovative idea how to tackle<span class='match'> the </span>key challenges we've identified - get in touch! <U+0001F4AA><U+2764><U+FE0F><U+0001F447> https://t.co/mOjb8UBAc9</li>
##   <li>FRANCE:
## cases-29546
## death-1696
## recoverd-4948
## #cornavirusupdate #CoronaUpdates #CoronavirusOubreak #corona #21daysLockdownSA #lockdown</li>
##   <li>I know<span class='match'> the </span>reality of COVID-19 is that we have to deal with it, be responsible and do our part to flatten<span class='match'> the </span>curve.
## 
## But is there anyone who feels that there's something fishy behind it all?
## 
## #askingforafriend</li>
##   <li>#Trump said he "has a feeling"<span class='match'> the </span>#NY governor's calls for thousands of #ventilators are overblown as cases of<span class='match'> the </span>#coronavirus skyrocket in parts of<span class='match'> the </span>country. https://t.co/jdQDfAGCT9 via @HuffPostPol</li>
##   <li>The Unified Government in Wyandotte has COVID-19 updates and resources listed on their site
## 
## https://t.co/sGcMSs7O2H</li>
##   <li>How TED-Ed is helping families, students and teachers navigate<span class='match'> the </span>COVID-19 pandemic | TED Blog https://t.co/V37QVwRmCJ</li>
##   <li>BUA donates N1billion cash and also orders medical equipment to support COVID-19 response.
## 
## https://t.co/OxY0FmplEt
## 
## #BUAGroup #UnlockingOpportunities #BUACares https://t.co/3FjfplSuh1 https://t.co/TIxaZZLchd https://t.co/c3jOiUebC0</li>
##   <li>one of my friends got covid-19 
## :(((((</li>
##   <li>If they are vulnerable by COVID-19, what chances do you have? https://t.co/jHJfl02jM8</li>
##   <li>an innovative method to prevent Covid19 deaths: https://t.co/2HhTXwpLBH via @IndianExpress</li>
##   <li>50 additional cases have been confirmed since Wednesday evening.  https://t.co/fy811LdWxO</li>
##   <li>@melaku_alebel Please initiate this in issue for regional government s to address<span class='match'> the </span>required items to fight covid-19.</li>
##   <li>They are running out of fentanyl and propofol that is used to intubate patients.  Time to bring home ALL Pharma. 
## 
## https://t.co/qgg4QiBM1l</li>
##   <li>According to a report, Stanford University researchers say evidence shows US will recover from (COVID-19) much faster than expected. All thanks to President @realDonaldTrump!Democrats, liberals and<span class='match'> the </span>MSM won’t be happy about it and you won’t see this by<span class='match'> the </span>MSM!</li>
##   <li>.@LVMPD has announced that a corrections officer has tested positive for COVID-19.
## https://t.co/8dAdqp9wHN</li>
##   <li>We have summarized recommendations for #patients and other resources addressing concerns about #hypertension care in<span class='match'> the </span>midst of #COVID19 pandemic. 
## https://t.co/brLHUJQ10J
## 
## Hope this is helpful to some patients in this difficult time
## 
## @JHUWelchCenter @ResolveTSL @ISHBP https://t.co/XzCI7wFn6e</li>
##   <li>Covid-19 cured my Senioritis</li>
##   <li>Towns, cities and states across<span class='match'> the </span>nation have issued protective orders to help slow and stop<span class='match'> the </span>spread of COVID-19 with “shelter-in-place” or “stay at home” measures. And Cherokee Nation citizens living in states with these actions are coping.
## https://t.co/fngjX83jWr https://t.co/C2Jk6wjdlQ</li>
##   <li>The @alzassociation shares #dementia #caregiver tips. #COVID19 https://t.co/YDNoDCcCHV</li>
##   <li>Uncontrolled case series of #COVID19 patients treated with convalescent sera @MountSinaiNYC 
## <U+0001F449> n=5, uncontrolled, all received antiviral too
## <U+2705> body <U+0001F321> <U+2B07><U+FE0F> in 3 days 
## <U+2705> SOFA score <U+2B07><U+FE0F> 
## <U+2705> PaO2 <U+2B06><U+FE0F>
## <U+2705> ARDS resolved (n=4/5)
## <U+2705> #SARS_COV_2 antibody <U+2B06><U+FE0F> and viral load <U+2B07><U+FE0F> https://t.co/LVfdLqJ2FU</li>
##   <li>PODCAST: In order to defeat this epidemic, we need to not just be testing<span class='match'> the </span>backlog of cases and hospitalized case - we need to get to be on<span class='match'> the </span>“testing frontier of new cases” as they develop. #COVID19 @Mitch_Seattle https://t.co/MEG6UM6jlx</li>
##   <li>Fear is NOT false evidence appearing real. It’s very real and based on real evidence it’s just sometimes applied to an inappropriate situation. Learn<span class='match'> the </span>difference and Find &amp; Exercise<span class='match'> the </span>Appropriate Response. The solution to fear. #covid19 #stayhome #fear #courage #drally https://t.co/zHSDI1B4dR</li>
##   <li>#FridayThoughts 
## 
## " Despair is a great incentive to honorable death. "
## 
## #COVID<U+30FC>19 #Covid19Death 
## #fallen 
## #HealthCareWorkers https://t.co/kWiyxVMwNz</li>
##   <li>Mister Magoo Murphy?
## + Is @TripleJ's &amp; reg'l radio's @DrKarl muzzled? We only get N Swan?
## As expected, knowing he skilfully answers #medical &amp; #health questions &amp;<span class='match'> the </span>appalling success of gov't. in trading vital info for waffle on behalf of donors? https://t.co/XEbbJJnCHa #auspol</li>
##   <li>@AGLTILESWORLD (A) Yes
## 
## #BeAware #Quiz #Contest #CoronaVirus #AGLTiles 
## @AGTimFox 
## 
## Join
## @GauravP26479152 
## @NikitaBobade3 
## @RiyaPorwal6 
## @pinkyk1980 
## @RIYAPORWAL9 
## @Vandana45086528</li>
##   <li>It only took 5 days to surpass<span class='match'> the </span>number of #coronavirus case in China. Sadly, we will likely be at 200k by Sunday! https://t.co/KRubjM0k5R</li>
##   <li>100% he is !!! China lied People lied #ChineseVirus #Covid19 https://t.co/OnHRKmSVDk</li>
##   <li>As employers close offices to slow<span class='match'> the </span>spread of #COVID19, here’s advice from I/O psychologists on how both managers and employees can work more effectively during this time. via @apa https://t.co/l2aeCifpmN</li>
##   <li>Ah Ay I'm 40 in three months, looks like I'll be in<span class='match'> the </span>house eating flipz salted caramel pretzels <U+0001F644> #lockdown #COVID2019 #IsolationLife</li>
##   <li>Lynchburg now has three COVID-19 cases, according to local health district. One man in his 20s and two men in their 60s.</li>
##   <li>@AbbottNews @MoHFW_INDIA this is going to be great help fighting #COVID19</li>
##   <li>The Case against Bailing Out<span class='match'> the </span>Airline Industry https://t.co/w3ksEDLjIA</li>
##   <li>Am yet to see anyone from Agege, Ajegunle, Tabontabon, mile 12 test positive to<span class='match'> the </span>COVID 19. Only our elites are testing positive. May God deliver us from greedy elites who are determined to rake in billions from donors. @segunaeroland @AdeoyeAdelaja @Imamofpeace</li>
##   <li>This is big! #CoronavirusOutbreak  #COVID19 https://t.co/JGxPTyh33A</li>
##   <li>And<span class='match'> the </span>award for most irresponsible #clickbait of<span class='match'> the </span>#coronavirus #pandemic goes to #CNBC for this gem. For a rational perspective, see NY Times March 9 article "Coronavirus Is Very Different From<span class='match'> the </span>Spanish Flu of 1918. Here’s How." #401kfixer
## 
## https://t.co/ukdqtBJjSg</li>
##   <li>@MalfunctionMage Still hearing stuff about how more people die from car accidents and<span class='match'> the </span>flu per year than covid-19. Nevermind<span class='match'> the </span>fact that they're comparing an annual count against a few months of covid-19,<span class='match'> the </span>entire argument is asinine.</li>
##   <li>@FeliciaAdunni Let people know. It's real #COVID2019</li>
##   <li>People Quit acting like coronavirus is all Trump's fault. Republican or Democrat we are all victims here #COVID19 #FightTogether</li>
##   <li>@spomboy America has a national catastrophe to work through first. Don't be under any illusions, America will now add 10-20,000 Covid-19 cases per day for<span class='match'> the </span>next little while. At a death rate of 9%, this will be heartbreaking.</li>
##   <li>My brother made this sign this evening for<span class='match'> the </span>8pm #ClapForCarers
## 
## He knows how much<span class='match'> the </span>#NHS means to me and how much I care about my colleagues
## 
## Help me to care for them and for you... #StayHomeSaveLives 
## 
## #Covid19 #TeamICU https://t.co/yHAU5uTLCE</li>
##   <li>Doctor tweets they are: worried they may have infected patients after contracting Covid 19, upset with<span class='match'> the </span>government. Also states<span class='match'> the </span>NHS doesn't have enough PPE. 
## 
## Brexiteer "this is politically motivated fake news because she hates<span class='match'> the </span>Tories and is a remoaner"</li>
##   <li>Once this crisis ends, China needs to be held accountable for this fiasco. Timely action and not with holding early information would have saved so many lives and saved<span class='match'> the </span>world from this disaster. And all this because of their sickly diet. 
## #coronavirus #ChinaVirus #China</li>
##   <li><U+0001F58B> Support Lauren by signing “Why You Must Act Now” and I’ll deliver a copy to your officials too: https://t.co/89qH2teUxe
## 
## <U+0001F4E8> Last delivered to @GovernorKayIvey, Representative Faulkner and Senator Smitherman  #ALpolitics #COVID19 https://t.co/qeF6hgrnRt</li>
##   <li>UK Chancellor Rishi Sunak has announced measures to support self-employed workers amid<span class='match'> the </span>Coronavirus pandemic.
## 
## #COVID19 | #selfemployed
## https://t.co/QMPDhlOfNC</li>
##   <li>@12NewsNow Gov. Abbott is deploying<span class='match'> the </span>National Guard in support of<span class='match'> the </span>Covid-19 response https://t.co/mSWXYKk8Pf</li>
##   <li>Good to see @ScottMorrisonMP acknowledging<span class='match'> the </span>government's responsibilities not just at home but in<span class='match'> the </span>region. The question is how we will support<span class='match'> the </span>Pacific in<span class='match'> the </span>coming weeks and months. Put some initial thoughts here, but will have more to say soon. https://t.co/EizbjtxRgz https://t.co/td255R4kw9</li>
##   <li>@NCDCgov Please @NCDCgov is it possible to have<span class='match'> the </span>specific areas in each state like ikeja,lekki etc, In lagos  of  #COVID19 cases. #CoronaVirus19 #Staysafe</li>
##   <li>Researchers in Wuhan, China, examined outcomes in children born to 33 women with COVID-19. Three of<span class='match'> the </span>newborns, all male, had symptomatic COVID-19. One infant who was born at 31 weeks' gestation required resuscitation. By day 7, all three were negative for SARS-CoV-2.</li>
##   <li>@larryelder The Stars are Falling.... #Coronavirus https://t.co/F6xmN00ttM</li>
##   <li>#Coronavirus/#COVID19 Thu Mar26
## Case/County/Dead
## 1416 #BayArea 32
## 542 #SantaClara 19
## 223 #SanFrancisco 2
## 195 #SanMateo 5
## 178 #Alameda 4
## 131 #ContraCosta 1
## 65 #Marin
## 44 #Sonoma 1
## 31 #Solano
## 7 #Napa
## &gt;https://t.co/OxOskZ8ca6
## &gt;https://t.co/zBTjViPavj
## &gt;https://t.co/7iHFuZb5Xj
## #COVID</li>
##   <li>@GarageNinja1 A distraction from #COVID19 
## <U+0001F92A></li>
##   <li>All Politicians and Government Buorocrats To Have there Pay Slashed By Half While We Go Through These Hard Times Of 
## Covid_19 Virus.<U+0001F60E> https://t.co/wWBC52Xb5K</li>
##   <li>Um @joinHandshake partner meetups featuring superstar faves @dorothyhayden and @hashtagaims? Sign me up! https://t.co/y9OFFIEYAd https://t.co/2yFcdgPX05</li>
##   <li>We are so grateful for<span class='match'> the </span>sacrifices being made.  #HCWSHOUTOUT #LetsGetAfterIt #COVID19 #ThankYou https://t.co/H01pKRhH4g</li>
##   <li>Lol<U+0001F600> You saw this Covid-19 before everyone. RIP my legend. https://t.co/WPdwZ0Aecn</li>
##   <li>During<span class='match'> the </span>#COVID19 self-isolation, it remains extremely important for people with #MS to stay active<U+26A1>and keep moving. <U+0001F4AA>
## Replace your rehab &amp; physiotherapy sessions at home with<span class='match'> the </span>“Keep Moving with MS” online exercise programs <U+0001F449>  https://t.co/92RUCtyf1j
## #stayathome #staysafe https://t.co/xwbVxltnoK</li>
##   <li>Now get in<span class='match'> the </span>back of<span class='match'> the </span>queue for a ventilator. Twat. #COVID19 https://t.co/tlQO4NMxcZ</li>
##   <li>Good job..! #coronavirus https://t.co/Q3HvjoBDOZ</li>
##   <li>Canadian Centre for Policy Alternatives happy with wage subsidy increase from Ottawa
## | https://t.co/UtbKQhtcCx #COVID19 #bcpoli https://t.co/XehYc1hXl5</li>
##   <li>Since March 10th, we have received 561 price gouging reports related to #COVID19. We are reviewing each and every complaint so that we can take action on behalf of all North Carolina consumers if necessary. You can submit a complaint at https://t.co/IN3G9BJYMx or (877)-5-NO-SCAM. https://t.co/g55cNiSG7K</li>
##   <li>Femi Otedola Donate 1billion to fight<span class='match'> the </span>Deadly Virus COVID-19 https://t.co/5neJd3SE7z https://t.co/kt8mDxjyZK</li>
##   <li>To our able and benevolent doctors, nureses and health workers on<span class='match'> the </span>frontline of<span class='match'> the </span>COVID 19, our deepest heartfelt prayers go to you. May God give you<span class='match'> the </span>wisdom, serenity, good health, coordination and sound mind to overcome this health scourge <U+0001F64F> https://t.co/z9qjpYqCY3</li>
##   <li>[BREAKING NEWS] | Covid-19: 1170 confirmed cases in South Africa https://t.co/YElDRaRDCg https://t.co/FmwnkhIjQA</li>
##   <li>People die everyday<U+0001F614>diseases with cures, diseases with no cure, murders by police, by one another, but all day We are bombarded with COVID-19 and AMERIKKKA HAS BEEN Spraying CHEMTRAILS FOR YEARS! #KARMA is occurring for those that have incurred despicable acts against Universe</li>
##   <li>Showing support for our incredible NHS staff who are working tirelessly on<span class='match'> the </span>frontline in<span class='match'> the </span>fight against #Covid19 <U+0001F44F><U+0001F499><U+0001F44F> #clapforourcarers #clapforNHS #thankyouNHS https://t.co/axPyO8Smn5</li>
##   <li>Doris got<span class='match'> the </span>COVID-19 virus damn</li>
##   <li><U+0001F50A>IF YOU CAN, STAY AT HOME<U+0001F3E0> NOW ! <U+0001F64F>
## 
## #CODVID19 #coronavirus 
## 
## #FiqueEmCasa <U+0001F1F5><U+0001F1F9><U+0001F1E7><U+0001F1F7>
## #QuedateEnCasa <U+0001F1EA><U+0001F1F8>
## #StayAtHome <U+0001F1EC><U+0001F1E7>
## #TuisBly <U+0001F1FF><U+0001F1E6>
## #rrineshtepi <U+0001F1E6><U+0001F1F1>
## #ZuhauseBleiben <U+0001F1E9><U+0001F1EA>
## #ResterChezVousbordel <U+0001F1EB><U+0001F1F7>
## #Zosta<U+0148>tedoma <U+0001F1F7><U+0001F1F8>
## #Restaacasa <U+0001F1EE><U+0001F1F9>
## #blivhjemme <U+0001F1E9><U+0001F1F0>
## #pysykotona <U+0001F1EB><U+0001F1EE>
## #оставайсядома <U+0001F1F7><U+0001F1FA>
## #EvdeKalin <U+0001F1F9><U+0001F1F7> https://t.co/LKBK0aIKVS</li>
##   <li>COVID-19 Ireland Day 27: We’ve lost hugs, kisses, handshakes, pints, winning streak, parkrun, GAA, Soccer, Work, Education and anything beyond a 2km radius of our current residence. All to save people.
## #Coronavirusireland #COVID19IRELAND #CoronaLockdown #IrelandLockdown</li>
##   <li>Need to get yo shop on? just use amazon! #COVID19</li>
##   <li>Disappointed that @ReadingCityFC's season has been voided by<span class='match'> the </span>@FA as a result of football being halted in response to<span class='match'> the </span>#COVID19 outbreak, but there's a lot of positives to take in to next season.
## Well done to @simmydembels, @Woodruff92, @GhaffarGhoddusi &amp;<span class='match'> the </span>players <U+0001F499> https://t.co/Kebj4q6T4N</li>
##   <li>- Stay at Home to Saves Lives -
## .
## .
## .
## .
## .
## #stayhome #stayathome #staysafe #savelives #covid #covid_19 #cuarentena #quedateencasa #quarantine #coronavirus #designinspiration #flatdesign #graphicdesigner #illustration… https://t.co/edzxPkIqDD</li>
##   <li><U+0001F691> INJURY UPDATE | @hannahhampton_ 
## 
## Birmingham’s shot-stopper has suffered an ankle injury whilst training with<span class='match'> the </span>Lionesses at<span class='match'> the </span>#SheBelievesCup. Due to<span class='match'> the </span>current COVID-19 situation, Birmingham are unable to put a timescale on her expected return. https://t.co/Gx0a3rSBNB</li>
##   <li>AOP Supports Senegal's Efforts to Fight COVID-19 https://t.co/IaFWkyNV40</li>
##   <li>More COVID-19 cases than any other country. Congratulations AMERICA!</li>
##   <li>Coronavirus Updates: At a free Hayward #coronavirus testing site that opened Monday, 54 out of 207 people tested positive on<span class='match'> the </span>first day,<span class='match'> the </span>city said in a release Thursday. 
## 
## https://t.co/yt2LXNgalB</li>
##   <li><U+0001D5D4><U+0001D5FB><U+0001D5F1> <U+0001D601><U+0001D5F5><U+0001D5F2><U+0001D600><U+0001D5F2> <U+0001D5EE><U+0001D5FF><U+0001D5F2> <U+0001D601><U+0001D5F5><U+0001D5F2> <U+0001D5EF><U+0001D5F2><U+0001D5EE><U+0001D602><U+0001D601><U+0001D5F6><U+0001D5F3><U+0001D602><U+0001D5F9> <U+0001D601><U+0001D5F5><U+0001D5F6><U+0001D5FB><U+0001D5F4><U+0001D600> <U+0001D601><U+0001D5F5><U+0001D5EE><U+0001D601> <U+0001D5F5><U+0001D5EE><U+0001D5FD><U+0001D5FD><U+0001D5F2><U+0001D5FB> <U+0001D604><U+0001D5F5><U+0001D5F2><U+0001D5FB> <U+0001D601><U+0001D5F5><U+0001D5F2> <U+0001D604><U+0001D5FC><U+0001D5FF><U+0001D5F9><U+0001D5F1> <U+0001D5F6><U+0001D600> <U+0001D5F9><U+0001D5F2><U+0001D5F3><U+0001D601> <U+0001D601><U+0001D5FC> <U+0001D5FF><U+0001D5F2><U+0001D600><U+0001D601><U+0001D5FC><U+0001D5FF><U+0001D5F2> <U+0001D5F6><U+0001D601><U+0001D600><U+0001D5F2><U+0001D5F9><U+0001D5F3>. 
## 
## <U+0001D5E7><U+0001D5F5><U+0001D5F2><U+0001D606> <U+0001D600><U+0001D5EE><U+0001D606> <U+0001D5EE><U+0001D5F3><U+0001D601><U+0001D5F2><U+0001D5FF> <U+0001D5EE> <U+0001D600><U+0001D601><U+0001D5FC><U+0001D5FF><U+0001D5FA> <U+0001D5F0><U+0001D5FC><U+0001D5FA><U+0001D5F2><U+0001D600> <U+0001D5EE> <U+0001D5FF><U+0001D5EE><U+0001D5F6><U+0001D5FB><U+0001D5EF><U+0001D5FC><U+0001D604> <U+0001F308><U+0001F98B>
## #COVID2019 #Isolation #life #beautiful https://t.co/QeJiyjl3Ll</li>
##   <li>If you please !!! <U+0001F612><U+0001F612>
## #coronavirus https://t.co/jgnFaZh8B1</li>
##   <li>European  politicians  testing positive  for covid  19, such  delicate  darlings  they are while ours are so strong  just saying  Corona  go Corona  and  it leaves  them  alone</li>
##   <li>Exit strategy from #COVID19 #confinement by<span class='match'> the </span>senior adviser to<span class='match'> the </span>DG of #WHO :
## 
## "What should a country’s first priority after locking down be?"
## 
## "Test<span class='match'> the </span>suspects, test<span class='match'> the </span>suspects, test<span class='match'> the </span>suspects. Then, effectively isolate<span class='match'> the </span>confirmed cases."
## 
## https://t.co/Gx1jFkhwFZ</li>
##   <li>It's a good time to be a misanthrope.
## #CoronaLockdown #COVID19</li>
##   <li>@JustinRose99 Covid 19 spread  - support mercy flights and freight only https://t.co/hE7e1v0qxi</li>
##   <li>Change my mind: 
## Virtual happy hours are more fun than face to face ones.  #COVID19 #coronavirus</li>
##   <li>We are now at<span class='match'> the </span>point in #COVID2019 that I’m done with this.... so when are we moving on to<span class='match'> the </span>next thing</li>
##   <li>Travels plans this year  maybe cancelled. 
## 
## This is not funny #covid-19</li>
##   <li>Covid-19: The history of pandemics https://t.co/f7pPNg4d7Q via @BBC_Future</li>
##   <li>Twitter locks account that encouraged people to hold coronavirus parties
## #socialdistancing #coronavirus #covid19 #terapiaonline #skype #whatsapp #corona #besafe #protectyourself #awerness #letsfightcorona #stayhome #staysafe #Coronavirus #workfromhome #quarantine #selfisolation https://t.co/9jvWPgvVpf</li>
##   <li>@Schwarzenegger @DollyParton @StephenKing @katyperry  Read my 15 year study thoughts, &amp; suggested dosage to survive covid-19 better https://t.co/FUiz6o3jvz You can buy D anywhere. Influenza's not my first interest, beating Alzheimer's is. https://t.co/aOUkYil3Ku</li>
##   <li>What an amazing week! With COVID-19 challenges and uncertainty,<span class='match'> the </span>full team at CNA really pulled through to ensure<span class='match'> the </span>health &amp; safety of students, faculty, &amp; staff, and worked miracles to make sure educational journeys will continue! This is true commitment!
## Thanks @CNA_News</li>
##   <li>As of Friday, Ventura County has 61 confirmed #coronavirus cases, Santa Barbara County 47, and San Luis Obispo County 59. The total includes one death.
## https://t.co/XKSA40PZ5t</li>
##   <li>RBI lines up ‘arsenal’ of liquidity measures to counter Covid-19 impact https://t.co/4cXfxvimpC https://t.co/qyUsAcIdn6</li>
##   <li>@TRF_Stories @BlombergMD  #Covid19 double-victims, even triple if<span class='match'> the </span>#Cambodia family has mortgaged their property with an #MFI loan depending on their pay.  1 -Victims of circumstances and misrule 2 Of<span class='match'> the </span>virus. https://t.co/GN6pqjLSxk https://t.co/R9XsFJHQrQ</li>
##   <li>Is not<span class='match'> the </span>flu
## "The real death toll for<span class='match'> the </span>wuhan is at least 4 times<span class='match'> the </span>official numbers, according to analysis of Italian mortality records.
## 
## Extrapolated to<span class='match'> the </span>whole of<span class='match'> the </span>country, that means 32,000 have died of coronavirus until yesterday."
## https://t.co/NoO9Bk8TEm</li>
##   <li>If you or anyone you know purchased N95 masks or any protective clothing and are hoarding them, please think about<span class='match'> the </span>doctors, nurses and medical care professionals who are on<span class='match'> the </span>front lines of this pandemic who do not have enough supplies. #COVID2019 #Hospitals</li>
##   <li>$2T CARES Act Moves Toward Enactment https://t.co/8en7m9d4yA @VanNessFeldman  #CARESAct #Coronavirus</li>
##   <li>#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 On https://t.co/pyHWGqFA4R Listen great artists: Riverside by TolbertToz @tolbertToz Don't forget, click<span class='match'> the </span>link https://t.co/CnNg5Lvd7i https://t.co/djsDl8tAbm</li>
##   <li>50% of Albertans report at least one person in their household has lost hours or has been laid off as a result of<span class='match'> the </span>#COVID19 crisis. That’s<span class='match'> the </span>highest proportion in<span class='match'> the </span>country. And yet,<span class='match'> the </span>UCP still won’t ban evictions. And they’re still proceeding with layoffs. <U+0001F621> #cdnpoli https://t.co/9ZLDyVYKRo</li>
##   <li>Coronavirus: All<span class='match'> the </span>Shows, Movies, and Events Affected by COVID-19 https://t.co/CRcMsBuvow</li>
##   <li>Covid-19 Chronicles <U+2013> Living in Lockdown: Our cameras recorded<span class='match'> the </span>moment of lockdown. We also hear from Dr Mohamed Irhuma, a clinical pharmacologist and medical specialist as he unpacks<span class='match'> the </span>psychological impact a lockdown might have on us: https://t.co/xE3JjGuZUH https://t.co/s72U7biPaQ</li>
##   <li>“Our current modeling is forecasting that we in sometime around 2023 should return to our passenger levels that we experienced last year,” Bennett said. @PhxSkyHarbor #Phoenix #coronavirus #COVID19
##  | KJZZ https://t.co/d9ml8sC1Ar</li>
##   <li>91 new  #covid19 cases and 8 new deaths in #SouthKorea  https://t.co/on5KCYq6du</li>
##   <li>Just received this photo. The subject said "quarantine capers day 6 of 12". 
## 
## I am so glad mine are grown adults. 
## 
## #coronavirus #COVID19 https://t.co/NmoW8Rzk3w</li>
##   <li>I enjoyed talking about faith communities in this #coronavirus moment on @Morning_Joe today. https://t.co/p4H7hSrtzU via @msnbc</li>
##   <li>Donald Trump on live tv from March 6th
## 
## “Anyone who wants a test can get a test.”
## #COVID19 #coronavirus</li>
##   <li>The #UAE has been working abroad via its embassies to ensure<span class='match'> the </span>safe returns of its subjects back to their families. Not only that but helping other Arab nationals who were stranded abroad.
## 
## @UAEEmbassyUS  <U+0001F1E6><U+0001F1EA><U+0001F1FA><U+0001F1F8>
## #uaegov 
## #CoronaLockdown 
## #COVID19 
## 
## https://t.co/VMPq7psUEw</li>
##   <li>"I really wish I had something non-#COVID19 related to read, preferably from Leviticus and about some relatively obscure passage." 
## 
## Wish granted, my friend. 
## 
## Wish. Granted. https://t.co/QVILGnLZFS</li>
##   <li>Tips from jyachannel on Instagram (just<span class='match'> the </span>tip) <U+0001F60F> #coronavirus #coronamemes #coronavirusmeme #coronavirusmemes #COVID19 #humor #darkhumor https://t.co/9lMUYPCaDp</li>
##   <li>My heart goes out to all children living in difficult circumstances as we face this deadly #covid19. God have mercy on them especially those living on<span class='match'> the </span>street</li>
##   <li>@mmahapatra Dear sir, What steps are taken for employees having diabetes or cardiovascular disease?? As per WHO we diabetics having high blood sugar level are at high risk of getting covid -19 infection. It's a request to you please grant us special leave till<span class='match'> the </span>period of lockdown.</li>
##   <li>With all<span class='match'> the </span>money we pay into health care &amp; our medical staffs are running out of equipment <U+0001F926><U+200D>♂<U+FE0F> #covid19</li>
##   <li>@realestatelife6 @KTLA Take her to<span class='match'> the </span>nearest ER and enter yelling she’s been exposed to COVID-19 and you’ll see how fast they act</li>
##   <li>COVID-19 Case-Fatality Rate and Characteristics of Patients Dying in Italy https://t.co/eKEkmAdoDB</li>
##   <li>@MMcLeodNWT  No mention of<span class='match'> the </span>Metis in<span class='match'> the </span>NWT? Indigenous Community Support Fund #NTpoli #cdnpoli #Metis #COVID19 https://t.co/Uk4tOwg1g4</li>
##   <li>Here he goes again asking who they're with. #WhoYouWith #pressconference #PressBriefing #COVID2019 #COVID #CoronavirusPandemic #StayHomeSaveLives #StayHome #CoronaVirusUpdate #CoronavirusUSA #QuarantineLife #Quarantine</li>
##   <li>Pinoy singers joined forces in performing a rewritten and rearranged version of<span class='match'> the </span>Southeast Asian Games 2019 theme song, We Win As One. | @latest_chika
## https://t.co/CXSelwvF75</li>
##   <li>@narendramodi Hello Sir,
## Now a day India facing with a very Harmful desise (Covid-19) In Some country<span class='match'> the </span>virus spread widely
## In my hometown(BHILWARA) this virus is affects 1 person everyday.
## 
## **In Rajasthan<span class='match'> the </span>corona case was 36 (Including 21 cases of Bhilwara)*
##   #Please help</li>
##   <li>This is<span class='match'> the </span>beauty of #VA07. Thank you to<span class='match'> the </span>@LouisaCoSheriff for such an initiative to keep our community and seniors safe during<span class='match'> the </span>#COVID19 pandemic. #FlattenTheCurve https://t.co/OmZIpeOHK1</li>
##   <li>Lets not forget that Amelia Brand is remain #alone in #isolation at Edmund's planet to execute Plan B in<span class='match'> the </span>movie #Interstellar.
## #COVID19 #selfisolating #coronavirus #SocialDistanacing https://t.co/rSIOWfZW0v</li>
##   <li>#Illini Lovie: "As far as I know, we don't have anyone that has tested positive (for #COVID-19)."</li>
##   <li>#COVID19 Update: Medicare #telehealth coverage is being expanded “to enable beneficiaries to receive a wider range of healthcare services from their doctors without having to travel to a healthcare facility.” via @CMSGov 
## 
## https://t.co/0LLuY4wtSh
## 
## #CokerWeekly</li>
##   <li>Dallas County leads Texas in COVID-19 cases, Texas National Guard unit to base in Dallas https://t.co/TyJNxZtSpj</li>
##   <li>The Mayor reissued<span class='match'> the </span>Stay at Home Order. #COVID19 #ShelterInPlace #FlattenTheCurve https://t.co/1rhqOfTF5w</li>
##   <li>Daily blog diary for #coronavirus #lockdown #homeschool and #SocialDistancinguk 
## 
## https://t.co/pAJGJIUq14</li>
##   <li>@nurdanerdemm @SKisContent @TravelGov So covid-19 came to<span class='match'> the </span>United States and made<span class='match'> the </span>American flu disappear overnight………</li>
##   <li>@MrsJroChicago Oh no, #COVID19???</li>
##   <li>A nonprofit started by<span class='match'> the </span>billionaire co-founder of Home Depot says plants are ready to produce<span class='match'> the </span>drugs Trump has promoted to treat<span class='match'> the </span>coronavirus but for “red tape.” Experts caution it’s unproven and possibly dangerous. https://t.co/4VZA3Hi4hI</li>
##   <li>The virtues of Cuban doctors on $250 pm, if that, on indentured service are extolled by<span class='match'> the </span>hard left while vainglorious nations such as Iran where one person is dying every ten minutes #coronavirus refuse humanitarian assistance from<span class='match'> the </span>USA. https://t.co/mc45lTu7zh</li>
##   <li>Now would be<span class='match'> the </span>right time to plan starting a business such that when giving<span class='match'> the </span>success story years later you go like "we started out small just after<span class='match'> the </span>COVID 19 pandemic had hit<span class='match'> the </span>economy...."</li>
##   <li>The Senate passed a $2 trillion stimulus package to provide relief for American workers, businesses, hospitals and government.  What does it include?  Read on https://t.co/zuU6yvpmib #IRS #ReliefPackage #ReliefBill #ReliefFund #coronavirus #CoronavirusOutbreak #COVID19 #corona</li>
##   <li>Day 9 of California’s Shelter-In-Place order: I spent<span class='match'> the </span>day making masks for complete randos who need them. I call this one<span class='match'> the </span>“MC Hammer” mask because it “You can’t you touch this!”
## <U+0001F528> <U+23F0>
## #mchammer #coronavirus #mask https://t.co/y7tILLFvsu</li>
##   <li>#China sends to #Pakistan 15,000 personal protective equipment (PPE) suits, 500,000 surgical masks, 50,000 N95 masks, 50,000 test kits and 20 ventilators to fight #coronavirus. #COVID2019.  https://t.co/lkf1I81W44</li>
##   <li>@CarnegieMellon University is a ghost town. #coronavirus #CarnegieMellon #Pittsburgh #Chopper11 #wpxi https://t.co/JTh86dfzQX</li>
##   <li>The @NYTimes has made county-level data for every US case of #COVID_19 publicly available via @github and will continue to update in real time. #github https://t.co/4fgw8E5XtW</li>
##   <li>@MBuhari @ProfOsinbajo
## @NTANewsNow
## @CoolFMNigeria @Wazobia_FM
## #convid19 Global Updates
## #Coronavirus Cases:
## 597,458
## Deaths:
## 27,370
## Recovered:
## 133,373
## ACTIVE CASES
## 436,715
## Currently Infected Patients
## 413,156<U+00A0>(95%)
## in Mild Condition
## 23,559<U+00A0>(5%) https://t.co/Y8WrTwhHgX</li>
##   <li>Stay at home you bastard. #CoronaLockdown #CoronaVillains #coronavirus https://t.co/q8OylnDfgF</li>
##   <li>3198 Covid19+
## 714 New cases today
## 46 Deaths
## And Florida is not doing nothing. @HillsboroughFL,<span class='match'> the </span>safer-at-home is not enough. Don't wait for<span class='match'> the </span>numbers to increase! Every life counts!
## Freedom is great, but let's sacrifice a little bit today, to enjoy<span class='match'> the </span>best future.
## #COVID19</li>
##   <li>@pulte $AlexandraPittam 
## Having a tough time here in WA state due to Covid-19</li>
##   <li>To prevent further spread of COVID-19 to jail staff and detainees, incarcerated people who participated in out-of-facility work programs may be sent home. 
## https://t.co/TG737RGoL2</li>
##   <li>Juma Kareem. Please #PrayAtHome #SaveLives.
## 
## We ALL need to do our part to ensure our families and communities are protected from #Covid19
## 
## Practice<span class='match'> the </span>following...
## 
## Physical distancing. 
## 
## Do NOT shake hands.
## 
## Frequent hand washing.
## 
## Cough &amp; sneeze into your sleeve. https://t.co/qiOMJykBRG</li>
##   <li>listening to<span class='match'> the </span>Wind of Change with #Covid_19</li>
##   <li>Check out my Covid 19 7Days to Die game play. live at https://t.co/O8xk746J7T</li>
##   <li>Can't wait to hear that #COVID19 is gone</li>
##   <li>"We're all in this together, six feet apart."
## 
## Well, better than six feet under. 
## 
## #medicalpanel #coronavirus #streamthebern</li>
##   <li>ESMA issues guidance on accounting implications of COVID-19 https://t.co/MgZDauNilX</li>
##   <li>Covid-19<U+00A0>: on tient un suspect<U+00A0>! https://t.co/iIYFe9ZbZ7</li>
##   <li>Beating<span class='match'> the </span>#Coronavirus lockdown isn't that hard <U+0001F60A> https://t.co/hrwT2oZmQ5</li>
##   <li>Some big city shoppers heading to small B.C. towns to stock up on COVID-19 supplies https://t.co/imtih6b24c</li>
##   <li>“Covid-19,” or as I like to call it, “Covid-Barely Legal”</li>
##   <li>GOOD NEWS: Trump admin CUTS red tape on Hydroxychloroquine production to meet coronavirus demand <U+2013> The Right Scoop
## 
## #Coronavirus #WuhanVirus  https://t.co/xnzDOov4Ws</li>
##   <li>In response to<span class='match'> the </span>#StayAtHome order in Colorado, we will operate with reduced hours beginning today. This applies to both our Lakeside and Greenwood Village locations and will stay in effect until further notice. 
## 
## More info: https://t.co/IJfjBVEq0D https://t.co/SXhFW5y5Zq</li>
##   <li>@ENT_AudsNews We're collating advice for families of deaf children and<span class='match'> the </span>professionals who work with them, updated daily @NDCS_UK https://t.co/y8AQ9Oa6gK https://t.co/bx1zqEmfqS</li>
##   <li>I should know. I maintain my license and practice in Canada. Our response to #COVID19 is so much more coordinated. At all levels of government and Healthcare. Not perfect. We were unprepared but we'll have less infections and less deaths PER CAPITA than<span class='match'> the </span>states. Way, way less.</li>
##   <li>@Surgeon_General @realDonaldTrump @FEMA_Pete @Lrihendry 
## 
## People its now time to create makeshift ventilators.  
## 
## Cuomo get your ass on it.  Makeshift Ventilators instead of talking about it.  I would of already be on it.
## 
## https://t.co/BZA38pG29O</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! https://t.co/Q5qhpAJ4Tg via @YouTube</li>
##   <li>My company sent this is an email to managers instructing us to KEEP coming to work if we have been in contact with someone who tested positive for COVID-19.  
## 
## What<span class='match'> the </span>fuck guys https://t.co/pRasAEAu6s</li>
##   <li>@mlipsitch @eladgil @StephenKissler @ctedijanto @yhgrad The same #DeborahBirx who said Singapore learnt from Trump's guidelines? Hmm... when we started fighting #COVID19, Trump still thought of it as a political hoax, unless she is referring to this Singapore: https://t.co/69wKFyVpZL</li>
##   <li>So I’ve discovered during<span class='match'> the </span>lockdown that my 2 year old has a keen interest root cause analysis, though she’s struggling to keep asking “why” to only 5 instances in any conversation. #Kaizen #COVID19</li>
##   <li>This isn’t just for being heroes through COVID-19. It’s for providing excellent care even against<span class='match'> the </span>odds, it’s for saving so many lives including my own. What a gift it was opening<span class='match'> the </span>window and hearing how many other people love you too @NHS <U+2764><U+FE0F> #ClapForOurCarers #ClapForNHS https://t.co/6MX7kBQyhV</li>
##   <li>@BobbyJo54648572 @chesaboudin Triple Murder 
## https://t.co/6XI4njzvQa
## 
## #COVID19 
## #sanfrancisco 
## #Murder 
## #WeatherUnderground 
## #terrorist 
## #Bernie2020</li>
##   <li>Opinion: The rationale behind #Iran's lobbying campaign for sanctions relief raises serious questions, given<span class='match'> the </span>regime’s rejection of tangible offers of assistance to fight #coronavirus, writes @JasonMBrodsky.
## 
## https://t.co/17XkUYVhJF</li>
##   <li>@NHSuk what is<span class='match'> the </span>criteria to qualify for Covid-19 testing? Is it;
## Critically ill with under lying health conditions, Celebrity, Royal Family, Politician, Rich folk then NHS staff? @BorisJohnson @MattHancock @ClarenceHouse @CMO_England</li>
##   <li>@lawdotcom Continuing to send prayers and good thoughts David Lat's way.
## 
## I think many of us are learning about<span class='match'> the </span>horrors of COVID-19 through his harrowing experience.
## 
## Nobody is immune. It can impact us all.</li>
##   <li>.@natashaCJAD talks to Nomadic Nurse Agency's nurse Melanie Jade Boulerice about #COVID19 questions on @CJAD800 next.</li>
##   <li>@FredTJoseph  I was working for uber . Im nearly 70 years old but due to<span class='match'> the </span>covid-19 I haven’t gone to work. My wife doesn’t work also.We have problem paying our rent. I would appreciate if you could help us.</li>
##   <li>WE'RE #1!
## WE'RE #1!
## WE'RE #1! 
## 
## Wait...
## 
## #Covid19 #CoronaVirus https://t.co/7BFR2kllcv</li>
##   <li>Here is what you need to know about your pet and COVID-19 https://t.co/1sf1bXgZpw https://t.co/OiEPlodAfs</li>
##   <li>* * New Article
## 5 Actions Towards Dating Your Spouse During COVID-19
## https://t.co/OmZS8fIV8H https://t.co/TmdiwtHTDf</li>
##   <li>Four people become victims of deadly #coronavirus on a cruise ship.
## 
## #COVID19 #COVID2019 #Covid2019TR #Covid2019TR #coronavirusinpakistan #coronavirusinpakistan #CoronavirusOutbreakindia #Covid19SA #CoronaLockdown #UKlockdown #London #CoronavirusEspana #CoronaUpdate #COVIDCanada https://t.co/tDlWXpweM8</li>
##   <li>#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 On https://t.co/crSVZCchQ6 Listen now Endless Nights by Blindberry Ghost via Concorde Music Company on https://t.co/ehXIAZJFox https://t.co/EbxdFPUZNp</li>
##   <li>All The Countries With Nuclear Weapons Can Shove Their Nucs And Defence Budget Up Their Ass <U+0001F621><U+0001F620><U+0001F621><U+0001F620>
## #ChineseVirus19
## #COVID2019 #QuarantineLife # @mubasherlucman @SdqJaan @Globalpoliticss @siasatpk @BaaghiTV</li>
##   <li>@paulapoundstone Trump finally has<span class='match'> the </span>freedom to go all-in with his pro-pollution agenda. #25theAmendmentNow #COVID19 #Covid19usa</li>
##   <li>NSW Police received 600 calls in just two days to report those not self-isolating. #COVID<U+30FC>19 #coronavirusau #CoronavirusLockdown   
## https://t.co/mKqS3FsIGT</li>
##   <li>#COVID2019 in a different perspective.............
## 
## pls read blog updated with 2 more supportive links hv been attached too.....
## 
## @tanolipak
## @AdeelJavedCh
## @UmerInamPk
## @SdqJaan
## @essa1
## @AnjumKiani
## @MaleehaHashmey
## @MirMAKOfficial
## 
## https://t.co/1juCqgeInE</li>
##   <li>#coronavirus shutdown https://t.co/a3GjvYj8MZ</li>
##   <li>On<span class='match'> the </span>day we found out that almost 3.3 million people lost their jobs last week (not just a record but 5 times<span class='match'> the </span>previous record),<span class='match'> the </span>#Dow went up over 1350 points.
## 
## Add that to<span class='match'> the </span>list of things that would have been unthinkable two weeks ago.
## #coronavirus #COVID19</li>
##   <li>Myanmar’s IDP camps inmates fear<span class='match'> the </span>spread of coronavirus
## Read more... https://t.co/6wWk0d9lIB #CoronaVirusUpdates #COVID19 #coronavirus</li>
##   <li>Lock Down for 21 Days! Stay Home. Save Lives. 
## .
## .
## #Besafe #LockDown #21Days #SaveLives #StayHome #SafetyMeasures #Coronavirus #COVID19 #Health #CoronavirusPrevention #TogetherWeCanWin #ConcreteSolutions #Machinery #ConcreteMachinery https://t.co/eAT4NiienX</li>
##   <li>Roku is giving away 30 days of premium video https://t.co/bkyKb8wx0d #av #coronavirus</li>
##   <li>"And<span class='match'> the </span>prayer of faith will save<span class='match'> the </span>one who is sick, and<span class='match'> the </span>Lord will raise him up. And if he has committed sins, he will be forgiven."
## Jam 5:15 (ESV)
## 
## #prayforboris
## #prayforthesick 
## #COVID19</li>
##   <li>#SelfIsolation Day #2 hasn’t been a complete waste. <U+0001F60E>
## Not finished sorting ‘em all yet, mind, but not like I’m in any mad rush, huh? <U+0001F912>
## #COVID19 #cornoravirusus #lockdown https://t.co/2dv9H7eQgR</li>
##   <li>Good informative video on #COVID2019 https://t.co/P9z6ELMCqU</li>
##   <li>Thank you @davematthewsbnd <U+2014> Our family loved your at-home concert!! <U+0001F970><U+0001F970><U+0001F44F><U+0001F3FB> #bekindalways #COVID2019 #StayHomeSaveLives #DaveMatthewsBand #thanksverizon</li>
##   <li>18 people were arrested over conducting evening  prayer at a mosque and violating curfew regulations in Horowpathana today, further Police said that nearly 80 people had gathered for<span class='match'> the </span>prayers in spite of  curfew practice &amp; Covid19 warnings. #Curfew #StaySafeStayHome #COVID19 https://t.co/aUWYk50FPc</li>
##   <li>In photos: Day one of lockdown in Cape Town : https://t.co/dOeQTGHkgd</li>
##   <li>I hope that with all this mess going on with<span class='match'> the </span>politics in DC and COVID-19 that people taking voting a bit more seriously come November. If Mitch McConnell wins another election ...  <U+0001F926><U+0001F3FE><U+200D>♀<U+FE0F> https://t.co/zA55slFrWG</li>
##   <li>More Sailors Test Positive for COVID-19 Aboard U.S. Navy Aircraft Carrier https://t.co/erAEYdPPN4</li>
##   <li>THIS IS A MUST WATCH!!  A CITIZEN EXPOSES THE CORONAVIRUS FRAUD!!
## 
## #CoronaLockdown #coronavirus #CoronavirusOutbreak #CoronavirusPandemic #CoronaVirusUpdate 
## 
## https://t.co/HWykdgZlir</li>
##   <li>The absolute beauty of social movement #thankyoukeyworkers #COVID19 https://t.co/2cNMRqNHIA</li>
##   <li>https://t.co/6pgdIvqdVo   @JoyAnnReid @HoarseWisperer @chrislhayes @realDonaldTrump @ChrisCuomo @FoxFriendsFirst @TuckerCarlson @seanhannity  
## #NoCanadian wants to go to<span class='match'> the </span>U.S, we’re WAY better off during this crisis here in Canada <U+0001F1E8><U+0001F1E6> <U+0001F644></li>
##   <li>@bbchausa 1-The reason why covid-19 was in Ngeria is due to<span class='match'> the </span>negligence of<span class='match'> the </span>@OfficialAPCNg administration.</li>
##   <li>There is no such thing as weekends anymore. #coronavirus #QuarantineLife</li>
##   <li>In Singapore, those who do not adhere to<span class='match'> the </span>one-meter safe distancing measures in public places could see themselves paying a hefty fine, or landed in jail. #COVID19  https://t.co/fY97SBI0rk</li>
##   <li>My aggressive pattern of weed smoking beginning when my own personal lockdown started has lead to a coughing injury, specifically an intercoastal muscle strain, which I earlier today mistook for COVID-19. Ladies and gents, webMD has once again confirmed I am just an idiot.</li>
##   <li>Taking out<span class='match'> the </span>bin, a mundane chore "morphed into a rare treat" 
## https://t.co/gwRqggCOLC #coronavirus #COVID19</li>
##   <li>@RawStory One of<span class='match'> the </span>many ways COVID-19 is like climate change. Reality does not give a flying flamingo about your believes. https://t.co/nRYktBiFt0</li>
##   <li>United for Protection - Crown Heights Sefer Torah: <U+0001F58B>Join in<span class='match'> the </span>Crown Heights Community Sefer Torah being written on behalf of<span class='match'> the </span>members of Klal Yisroel who have fallen ill with COVID - 19. In<span class='match'> the </span>times of<span class='match'> the </span>Baal Shemtov Zt”l when a rampant disease… https://t.co/bMPGrdrmk8</li>
##   <li>Sometimes I hate to be right (worrying how wrong<span class='match'> the </span>government continues to be day after day): There were 181 new #COVID19 deaths in<span class='match'> the </span>UK,<span class='match'> the </span>highest one day rise so far. So much for<span class='match'> the </span>assertion yesterday that lockdown measures were already showing results...
## #COVID19UK https://t.co/hOg1TSFgMh</li>
##   <li>Are you guys still thinking that this virus isn’t as serious?
## #coronavirus https://t.co/KZXLsoonmA</li>
##   <li>Surprise surprise, absolutely no delivery slots for<span class='match'> the </span>shopping <U+0001F926>
## 
## #shoppingonline #coronavirus</li>
##   <li>Michael Sorkin,<span class='match'> the </span>visionary architect, urbanist, theorist, author, and director emeritus of<span class='match'> the </span>Graduate Urban Design Program @CityCollegeNY, has passed away after contracting COVID-19: https://t.co/zd3lvg75Fg</li>
##   <li>Keep your distance.
## <U+2022> <U+2022> <U+2022>
## #darthvader #starwars #starwarsdaily #lucasfilm #disney #starwarsmemes #socialdistancing #stayhome #quarantine #coronavirus https://t.co/0mQZmWwH0M</li>
##   <li>#COVID19 just made me cry FUCK THIS SHIT SLOWING EVERYTHING DOWN <U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D></li>
##   <li>#CoronaLockdown #coronavirus #ElSalvadorEnCuarentena 
## This is not<span class='match'> the </span>time to indulge yourself.  You must reduce<span class='match'> the </span>consumption of food. Try avoiding eating meat! I eat seeds, nuts, beans, lentils etc. Food will become contaminated as more people get infected.</li>
##   <li>#Ruralhospitals: what information or communications materials would be helpful to you during this time? We're adding to our resources page. Reply to this tweet or send us a direct message if you have ideas. https://t.co/NM47OMrCHN</li>
##   <li>Dr. Federico Pappalardo from @SanRaffaeleMI shares "The General ICU experience" from<span class='match'> the </span>#frontlines of<span class='match'> the </span>#COVID19 outbreak in Italy- Upon arrival to<span class='match'> the </span>emergency room, patients deteriorated quickly on NIPPV. 
## 
## Need to identify these patients PROMPTLY. https://t.co/loBPK2jDxV</li>
##   <li>@SuzyQlovesWine @joukesp Hi Susan,<span class='match'> the </span>details of<span class='match'> the </span>report are limited and although this is potentially a rare case of human-to-cat transmission, there is no evidence cats can pass COVID-19 to humans. We urge cat owners to be vigilant with hygiene and follow our latest advice: https://t.co/N0lWvuUrY2</li>
##   <li>Once again @POTUS has been right about outsourcing all of our manufacturing especially to China... #coronavirus https://t.co/j4UoE7YFJy</li>
##   <li>@Nidhi WHO failed, first it downplayed it, to<span class='match'> the </span>extent that it said<span class='match'> the </span>covid-19 is not contagious. It took time to call it a pandemic. Incompetent staff or a tilt towards rising China has proven a disaster for<span class='match'> the </span>world.</li>
##   <li>What in<span class='match'> the </span>covid-19 are those?! <U+0001F92C><U+0001F922> like why ?! <U+0001F974><U+0001F974><U+0001F974> https://t.co/Y4npx4OCY3</li>
##   <li>How many sympotomu's do you know? 
## #COVID2019 https://t.co/SGS6nkMBdk</li>
##   <li>How to use Apple’s COVID-19 screening app and website for yourself or someone else https://t.co/welesUy0LE https://t.co/yRpGWkh4nq</li>
##   <li>this is a terrifying statistic. 
## 
## and this is why all of us in #publichealth and medicine are advising you:
## 
## 1. please #stayhome
## 2. please maintain distance from your elderly relatives (say hi through facetime instead, send food delivery &amp; flowers, etc)
## 3. #covid19 is deadly https://t.co/IpyRJ35C4x</li>
##   <li>Mainly I'm hoping that<span class='match'> the </span>#COVID2019 pandemic doesn't delay<span class='match'> the </span>Season 2 premiere.
## 
## I've seen a lot of movies and projects get delayed, and I hope this doesn't as well https://t.co/s4YlOl27TI https://t.co/5GtUos6IrN</li>
##   <li>TERRITORIANS have started to call for all interstate arrivals to be put into forced hotel quarantine for 14 days as<span class='match'> the </span>number of #coronavirus cases in<span class='match'> the </span>NT continues to rise. HAVE YOUR SAY IN OUR ONLINE POLL @thentnews https://t.co/woxeWmQ8Aa</li>
##   <li>All I hear from #Trump and<span class='match'> the </span>#FED to spend money into<span class='match'> the </span>capital markets. @jimcramer calls to buy<span class='match'> the </span>stock market. Holy Shit, talk about<span class='match'> the </span>people they struggle, either with this virus or<span class='match'> the </span>effects. Fuck this #Dowjones performance, give<span class='match'> the </span>money to<span class='match'> the </span>people ! #COVID2019</li>
##   <li>Top: Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/6UF99JCxpF, see more https://t.co/IlHfm1kzU2</li>
##   <li>Perhaps more elders and church leaders will have<span class='match'> the </span>opportunity to see how helpful this digital age can be<U+2014>not to replace<span class='match'> the </span>weekly worship service, but to provide additional helpful resources for discipleship and Bible study. https://t.co/50EpszPH2f</li>
##   <li>Why is Mass Testing Ideal for<span class='match'> the </span>COVID 19? https://t.co/ZQbxZAsv75 https://t.co/q2WByLJrYW</li>
##   <li>This helps illustrate<span class='match'> the </span>domestic demand problem facing China.
## 
## It's like factories rushing to reopen but then overseas demand dies. Reopening is just half<span class='match'> the </span>battle. 
## 
## China’s cinemas reopen, but see just two people a day as #coronavirus fears linger https://t.co/ozkTgBg1LN</li>
##   <li>Davido wan dey whine our mentality how on earth is that possible your wife is positive but him and his son are negative please who dey breast feed his son? Him or chioma this Nigeria nah scam @davido needs more followers<U+0001F602>
## #COVID19
## #sydneytalker #StayAtHomeAndStaySafe</li>
##   <li>@CharlieeRose3 Is that one of those covid 19 tests standing upright on<span class='match'> the </span>table, or are you just pleased to see me</li>
##   <li>COVID-19--Here's an idea: Create a FaceTime Number, let's say "999" that would be a pre-call to 911 for folks initially worried about COVID-19 to get an initial review. Use 3rd year, either Med School or Nursing degree (BSN), volunteers. Liability exempt program, of course</li>
##   <li>Seen on a #SocialDistancing walk in Nyack, NY.  #coronavirus https://t.co/rBIFYojejf</li>
##   <li>Obama left office in 2016 it's 2020. You're trying to tell<span class='match'> the </span>public that your people couldn't order more mask if supplies were low? What are you people doing in Washington and where are our taxes dollars being used for really? #TrumpMadness #Obama #COVID<U+30FC>19 https://t.co/7JGjGXZ7rZ</li>
##   <li>More than 8000 people dead in Italy alone, only<span class='match'> the </span>living will be hungry
## Please stay at home! Better to be safe than sorry. #CoronaVirusUpdate
## #Nigeria
## #COVID19 
## #CoronaVirusNigeria</li>
##   <li>As<span class='match'> the </span>city scrambles to head off a COVID-19 outbreak at homeless shelters, frontline workers worry that it won’t be enough - https://t.co/1HLd56LM6Z https://t.co/MgnJQd6ha2</li>
##   <li>Chaser: 
## 
## FDA guidelines now "specifically bar<span class='match'> the </span>use of at-home [coronavirus] sample collection. This means startups...will have to immediately discontinue their testing programs in light of<span class='match'> the </span>clarified rules."
## 
## https://t.co/VIKOJXwCdq</li>
##   <li>@citizentvkenya This ain't<span class='match'> the </span>best idea for preventing Covid_19</li>
##   <li>@realDonaldTrump So much winning that countries are urging their citizens in<span class='match'> the </span>U.S. to return home immediately bc it’s too dangerous here with<span class='match'> the </span>#CoronavirusOubreak 
## 
## https://t.co/9esY0YAyir https://t.co/eQ0VWMn4S2</li>
##   <li>Coronavirus (COVID-19) advice and updates - The Law Society https://t.co/trhWXljcNX</li>
##   <li>Coronavirus stats and figures are everywhere we look. This post will help you understand fatality rates and<span class='match'> the </span>flaws behind<span class='match'> the </span>calculations https://t.co/jKYytZ5lZV #Statistics #FactCheck #COVID2019 #CoronavirusPandemic</li>
##   <li>Funders are mitigating<span class='match'> the </span>stress grantees are dealing with during<span class='match'> the </span>#coronavirus crisis. Hear how @McKnightFdn, @FordFoundation, and others are being be transparent and flexible in this time of<span class='match'> the </span>#coronavirus crisis. https://t.co/YI5VDloN17.</li>
##   <li>@narendramodi Sir,China supplied faulty Corona virus test kits to spain(Spain Doctors told) please ignore this China kits, please be prefer South Korea Corona virus kits @narendramodi #covid_19 #coronaviruskits</li>
##   <li>@NorbertElekes stay healthy and care! <U+0001F626>#coronavirus</li>
##   <li>#Coronavirus
## 
## NYC Lockdown...
## 
## Women says "this is a great opportunity to focus on and build our relationship while we are isolating"
## 
## Man thinks "FFS... I'm going back to<span class='match'> the </span>shed to focus on Distillery Kit".</li>
##   <li>'Tip of<span class='match'> the </span>iceberg': is our destruction of nature responsible for Covid-19? https://t.co/PCCdyHxNqx</li>
##   <li>Coronavirus Is Turning People Into Weed Hoarders
## One man bought enough weed to roll 3,500 joints while an Airbnb host has started a grow-op to make up for lost bookings due to COVID-19.
## 
## https://t.co/PnzNtftlCk</li>
##   <li>Love,  love this. The Future is Uncertain. That don’t mean that nothing’s working here and now #coronavirus https://t.co/zzCJzMhxdH</li>
##   <li>@chrissyfarr @ChrisCuomo trash bags as #PPE SERIOUSLY?! #covid19 #hcldr https://t.co/ffnpiaja2z</li>
##   <li>Hearing everyone on my estate clapping, cheering, whistling, beeping horns and setting fireworks off for<span class='match'> the </span>NHS and all<span class='match'> the </span>key workers was an emotionally special moment! #clapforourcarers #NHSheroes #Coronavirus #COVID19</li>
##   <li>@NikkiHaley I don’t understand how this will help small businesses, airline industry and<span class='match'> the </span>people who can’t work and/or lost their jobs because of Covid-19. I truly believe this just put<span class='match'> the </span>nail in<span class='match'> the </span>coffin on next election. This bill is a travesty</li>
##   <li>@WebhelpUK @SkyUK why have you not organised for ppl to WFH yet? The risk of spreading this virus is real. You seen this coming! #cornavirusuk #StayHomeSaveLives #COVID2019 #CovidUK</li>
##   <li>@caligalin @vikkie @Eugene_Scott Is covid-19<span class='match'> the </span>same thing as<span class='match'> the </span>Chinese virus ? I’m confused</li>
##   <li><U+0001F9A0><U+0001FA7A><U+0001F52C><U+0001F489> as we are getting ready to empty a rehab floor to make confirmed COVID-19  section (the cases rising) in our hosp., and a Xenexing room for re-used N95s, my kids ganged up on me and made a jazz and Shell Silverstein night. We shall overcome. Love and hugs <U+2764><U+FE0F><U+0001F917><U+0001F913><U+0001F622> https://t.co/GJ2YRqPEsW</li>
##   <li>Marin County announced<span class='match'> the </span>first death related to<span class='match'> the </span>new coronavirus as more county residents in assisted living facilities and a mobile home park tested positive for COVID-19 https://t.co/8g1IhNGUSZ</li>
##   <li>They built nuclear weapons, 
## built missiles tower
## Real fight begun but they are loosing their power.
## #COVID2019
## #StayAwareStaySafe</li>
##   <li>@realDonaldTrump @WhiteHouse 345 #Coronavirus deaths, 18000 new cases in<span class='match'> the </span>United States in 24 hours, according to tracker: AFP news agency
## China virus 
## Wuhan virus 
## Fuck china</li>
##   <li>“Unwoke” Question: What Percent of Covid-19 Patients/Deaths Are Accounted for by Homeless? https://t.co/fxRxoorO3V</li>
##   <li>Line up at<span class='match'> the </span>COVID-19 Assessment Centre at Brewer Arena in #Ottawa Thursday March 26, 2020. @OttawaCitizen @ottawacity @ottawahealth #COVID<U+30FC>19 #COVID #ottnews https://t.co/2P6IZpiEbw</li>
##   <li>Senator dumbfuck #RandPaul #COVID<U+30FC>19 
## Claims he Didn't meet<span class='match'> the </span>criteria for quarantine, then follows that with he traveled extensively and is in a high risk group. <U+0001F644> https://t.co/tNrOwW6cK2</li>
##   <li>The Salt Lake County Government Center is closed due to orders implemented  by<span class='match'> the </span>County Mayor’s Office as a precaution to combat COVID-19.</li>
##   <li>COVID-19 Response Update - Extra Cleaning Procedures - https://t.co/RmsedATOUw</li>
##   <li>What countries have been affected by<span class='match'> the </span>novel coronavirus known as COVID-19? How many cases are there in China? https://t.co/oIM94ATIpO via @ChannelNewsAsia</li>
##   <li>What else can you expect from china<U+0001F923>
## #Chinese maal <U+0001F602><U+0001F602>
## Only things real is #ChineseVirus19 #coronavirus #COVID2019 https://t.co/N9Mx6iWs7u</li>
##   <li>@Dr_BoAbrahamsen @psychospen @BethRigby At<span class='match'> the </span>time,<span class='match'> the </span>hospital had no covid -19 patients, he was lying as usual.</li>
##   <li>The U.S. may end up with<span class='match'> the </span>worst COVID-19 outbreak in<span class='match'> the </span>industrialized world. @edyong209 explains how it will play out: https://t.co/UdNE3QoJHE</li>
##   <li>@GregHuntMP and @ScottMorrisonMP were warned about #COVID19 in November by<span class='match'> the </span>CSIRO and did nothing! https://t.co/9zfG7hHyNt</li>
##   <li>(JUST IN/BREAKING): "FIRST country to reach 100000 infections": hashtag TWO (March 28, 2020; 6:39 HKT) #UNITEDSTATESOFAMERICA #covid19</li>
##   <li>Feeling uncertain about you career as a result of<span class='match'> the </span>COVID-19 situation? Alumni Career Services is here to help! Consider attending our VIRTUAL Drop-in Hours! These are OPEN TO ALL and will be completed online through Zoom: https://t.co/9zhVwtppFJ. #WeAreUK #AlumniCareerService https://t.co/UT7fE7YP3A</li>
##   <li>The World Health Organization says a face mask is only required if you are caring for someone with COVID-19, if you are coughing or sneezing or you suspect you have it https://t.co/dusQUaA6OQ</li>
##   <li>"If you follow<span class='match'> the </span>mainstream media/Democratic narrative,<span class='match'> the </span>pandemic has laid bare<span class='match'> the </span>weaknesses of<span class='match'> the </span>U.S. health care system."
## 
## .https://t.co/yMfzD9m4vP</li>
##   <li>Lord 
## Thank 
## You 
## for 
## Another 
## Day 
## 
## "MATATAPOS DIN ANG COVID-19"
##                 IN JESUS NAME
##                         AMEN</li>
##   <li><U+0001F3D6><U+FE0F>   <U+0001F3C3><U+200D>♀<U+FE0F>   <U+0001F3C3><U+200D>♂<U+FE0F>   <U+0001F6B7>Point Pleasant's boardwalk is usually packed on a sunny day but due to social distancing amid<span class='match'> the </span>novel coronavirus (COVID-19), some Jersey Shore mayors are closing beaches.
## 
## @heatherfordham_ reports.
## 
## https://t.co/Q6fxWkLziV</li>
##   <li>How amazing sharing a moment with all your neighbours doing<span class='match'> the </span>clapping and making noises for all<span class='match'> the </span>amazing nurses and doctors in<span class='match'> the </span>NHS at this crazy time in<span class='match'> the </span>world right now. We will beat this!! #respect #nhs #COVID2019 #doctors #nurses #grateful</li>
##   <li>TBHU Announces: https://t.co/NsO0hijnv0 https://t.co/oIvCD4Gjji</li>
##   <li>15. It is interesting to ponder upon.. right ? 
## 
## Well ..Wuhan is open for business now
## 
## Covid - 19 needs to be seen in<span class='match'> the </span>backdrop of<span class='match'> the </span>arm twisting of China by USA in<span class='match'> the </span>trade war
## 
## America and all<span class='match'> the </span>above mentioned countries are devastated financially</li>
##   <li>@CapitaPlc Are you satisfied with your response to #COVID2019 and do you think it`s fair to expose your staff to this level of danger?</li>
##   <li>Gov. McMaster will be joined with Sen. Lindsey Graham and  Tom Rice for a COVID-19 briefing at 4 p.m.
##  
## @SouthStrandNews
##  will stream<span class='match'> the </span>press conference on our Facebook page.</li>
##   <li>Amidst all<span class='match'> the </span>crap going on due to #COVID19 and #CurfewinKenya this is<span class='match'> the </span>comic relief I needed https://t.co/kv5iAHoCnJ</li>
##   <li>@juliana_wyatt Update: she didn’t get this tattoo because of covid-19, thank you.  -her sister</li>
##   <li>@FT The plan delays student loan payments for three months.
## 
## Trudeau said Canada was testing 10,000 people a day for COVID-19,<span class='match'> the </span>respiratory illness caused by<span class='match'> the </span>new coronavirus, and Canada was ramping up production of emergency medical equipment and medication.</li>
##   <li>@HillaryClinton @ChelseaClinton Hillary you are taking advantage of covid-19 to gain political relevance.</li>
##   <li>Praying for USA today #putgodfirst #coronavirus https://t.co/UM1zkaUDZa</li>
##   <li>Please take care of yourself this weekend! <U+0001F637>
## #fridaythoughts #fridayfeeling #fridaymotivation #tgif #argus #coronavirus #covid19 #staysafe #stayhealthy https://t.co/DtX9zAH4i2</li>
##   <li>This will be remembered @BDUTT. How India keeps failing its own again &amp; again. 73+ years &amp; counting.Still in search of<span class='match'> the </span>promised Messiah. Hopefully leaders will emerge 4m it
## 
## Ps: this is at par with your coverage of Kargil. Just a different kind of war.
## 
## #COVID19 #coronavirus https://t.co/xXRirGXy17</li>
##   <li>Thank you @AlfredSanchez58 and<span class='match'> the </span>entire @MiamiChamber Staff and Board for all you are doing during #COVID19, to protect #business and individuals and<span class='match'> the </span>#community -- to keep us safe and healthy. #TogetherForFlorida
## https://t.co/t3lOU0oMDy</li>
##   <li>NT police officer from Central Australia tests positive for #COVID-19 https://t.co/x0XmwfCx9t</li>
##   <li>Pipeline workers putting locals at risk of COVID-19 infection: Unist’ot’en https://t.co/VPeWh0VPYX via @APTNNews #yyj #coronavirus</li>
##   <li>IF YOU DON'T #TEST YOU DON'T KNOW.
## 
## #COVID19 NUMBERS FOR #INDIA MEAN NOTHING.</li>
##   <li>Why many passengers grounded by COVID-19 aren't getting refunds for cancelled flights https://t.co/EIOei4jOau https://t.co/7ofZ19pqwZ</li>
##   <li>The Governor in Michigan has threatened Pharmacists and Physicians who allow<span class='match'> the </span>use of Hydroxychloroquine to be used in their #COVID19  patients.   They need to fire their medical advisors who told them to do this.</li>
##   <li>“Where do I get my news?” on COVID-19 @cameronreilly and @WW2Podcaster asked. Duh, boys, I’ve been waiting for YOU!!! https://t.co/2fKvsk5wuO #COVID19 #wereadbooks #bsfilter #FactsNotFear</li>
##   <li>An ‘infodemic’ is also plaguing<span class='match'> the </span>world, making trusted journalism more vital than ever <U+2066>@TorontoStar<U+2069> #COVID19 #journalism <U+2066>@Poynter<U+2069>  https://t.co/5GVA2vFyyt</li>
##   <li>Caption this greasy move in 6 words or less.
## 
## #writingblock #writersnetwork #writing #writingprompt #thesix #ideas #covid19 #coronavirus #coronavirustoronto #ontario #storytelling #writechat #writer https://t.co/fTOAid6GGy</li>
##   <li>#RuralEd - "We really need a sense of urgency from policymakers to close<span class='match'> the </span>#digitaldivide"
## https://t.co/TGxEYYP0B0 #rplccapr #ruralissues #ruralpolicy #education #internet #broadband #communications #COVID19 #eLearning @nrea1</li>
##   <li>@mikekujawski @CDS_GC Hi there! We aren’t working on<span class='match'> the </span>CERB delivery but we do have a team building a tool to help people navigate federal benefits for #COVID19.  With info moving so quickly, we want to help people determine what to apply for, how much that’s worth and when that help will be coming</li>
##   <li>@LouiseMensch @thetwerkinggirl Prince Charles has CoVID-19 <U+0001F926><U+0001F3FD><U+200D>♀<U+FE0F></li>
##   <li>If you find yourself having a really hard time handling COVID-19 stress, these 7 tips can breathe new life into your spirit! <U+0001F54A><U+FE0F>
## 
## <U+0001F60C> - https://t.co/ps0jTSBY8j
## 
## #AdvancedTherapeuticsLLC #LiveWell #BeatCOVIDStress #ThisTooShallPass #WeWillPrevail #TakeCareOfYourself #Roselle #IL https://t.co/ynzvRpdSUt</li>
##   <li>@WHO We have seen that Creatures beside us are not getting<span class='match'> the </span>victim of #COVID19 ..so what is their special immunity property &amp; DNA composition that is ahead of this virus which has been panic of whole world..i think respectable scientists should research about it .. Atleast try</li>
##   <li>The U.S. now leads<span class='match'> the </span>world in confirmed coronavirus cases.
## 
## Out of nearly 530,000 cases worldwide,<span class='match'> the </span>USA reports 82,547 confirmed cases. China reports 81,285, Italy 80,589, Spain 57,786, and Germany 43,938.
## 
## #COVID2019 #CoronavirusUSA 
## https://t.co/4pe5Y5hzXL</li>
##   <li>@Tarvastu Covid-19 was<span class='match'> the </span>black swan this time. The main risk is<span class='match'> the </span>standstill it creates for everyone and that will be about time. Will C-19 impact long enough for economies to come to a complete stop and be broken (depression) is<span class='match'> the </span>main uncertainty. 1/x</li>
##   <li>#RoddyRicch #TheBox #Future #Drake #PostMalone
## #LewisCapaldi #ArizonaZervas #DanShay #JustinBieber #DuaLipa #BillieEilish
## #Mustard #DaBaby
## #TheWeeknd#Lizzo
## #quarantine #BlackBear
## #JuiceWrld #CardiB #coronavirus #LilBaby
## #covid19 #85SouthShow
## IG thebigshow67
## FB Big Show Management https://t.co/4CFpxFXFPL</li>
##   <li>https://t.co/uTE9AwmQWG All job gains, at least a big chunk of it, made during Trump’s presidency is gone in a single stroke. It would be interesting to see how<span class='match'> the </span>world join hands to punish China for allowing<span class='match'> the </span>#CoronavirusOubreak to slip out of hands for<span class='match'> the </span>world to suffer.</li>
##   <li>@Dodgers I just can't. MLB - 0, COVID - 19. Blowout! #SAD Pray we can get right, get well and get back to live baseball. #IMissYouBaseball #Dodgers #WashYourHands https://t.co/ljHsRFsVw6</li>
##   <li>While everyone Is doing what they need to do to combat or prepare for<span class='match'> the </span>“pandemic” to be a #Tbt…
## 
## realize what you did today! #FuckCorona #caronavirusoutbreak  
## 
## Enhancing my online Presence #CaronaViralPresence
## 
## #SuckAtSocialDistancing #CoronaLockdown  #COVID19  #NYCLockdown https://t.co/bGgz7xksgB</li>
##   <li>@GovAndyBeshear has asked us to light up our homes green to remember those that we lose to Covid-19. I don’t have that ability but I can change my profile pic to honor their memories and<span class='match'> the </span>governors request. #TeamKentucky #TogetherKy #HealthyAtHome #NewProfilePic https://t.co/tAkbGSmNdT</li>
##   <li>To all of<span class='match'> the </span>healthcare heroes out there, thank you. <U+0001F44F> Tag your hero in<span class='match'> the </span>comments.
## #medTwitter #COVID19 #coronavirus #HealthcareHeroes https://t.co/GCRV0lbXic</li>
##   <li>@BBCBreaking Shouldn’t they be focusing on not killing off their entire population?? #COVID19</li>
##   <li>APS Daily COVID-19 Update for March 27: https://t.co/skHG3cDGsP https://t.co/30SNtq8XD0</li>
##   <li>@RenegadeSci @thestermeister @ashwahi @bgurley With 700 apparent recoveries vs 1 deceased, hopefully we will get more data soon.
## 
## https://t.co/BJSCi3zkQm</li>
##   <li>A thought struck me that we are now kinda going thru what we have made some unborn boys and girls go thru since<span class='match'> the </span>8th was repealed. Now we know something of their terror. #ProLife #COVID19</li>
##   <li>Coronavirus updates LIVE: Boris Johnson diagnosed with COVID-19, Italy records nearly 1000 deaths in a single day https://t.co/69q1xEcsZw via @smh</li>
##   <li>@LukeHall @mhclg letter to caravan and park home site owners to make clear that they should remain open for key workers and vulnerable groups during<span class='match'> the </span>COVID-19 pandemic (27 March) https://t.co/lRyUgxCpuF</li>
##   <li>@drwai @KDHSSD @GovKaduna @elrufai But you said<span class='match'> the </span>governor should use<span class='match'> the </span>opportunity of #covid19 crisis to curtail<span class='match'> the </span>almajiri system. Isn't using state government buses to convey<span class='match'> the </span>almajirai to where they come from enough? @drwai @elrufai</li>
##   <li>@laurenswartley reach our customer service during our temporary business hours of Monday - Friday 9am-5pm (CT) as we work through<span class='match'> the </span>impact of COVID-19. Keep in mind, you would want to check our full site for this, and not<span class='match'> the </span>app. ^AL</li>
##   <li>Heads-up! No matter your age, be sure you have a will, living will, power of attorney and other documents prepared. Some of us may not make it out of this alive. Help your loved ones by being prepared.
## https://t.co/NzHp8vb0By
## #will #powerofattorney #estateplanning #covid19 #virus</li>
##   <li>@YouTube date night. Watching  #littlewomen with my man since we haven't seen each other since #COVID2019</li>
##   <li>@ABC May Allah prevent us from this Covid-19 that has damaged<span class='match'> the </span>economy and almost destroy<span class='match'> the </span>whole world.
## 
## May Allah safeguard from this Covid-19. Ameen
## 
## "Alhamdulillah Rabana Ashifna-l 'azaabal inalil mu'kminuun</li>
##   <li>We’re all in this together as we combat COVID-19. At Toyota, we’re working to help manufacture essential medical supplies and to support our communities and our customers. https://t.co/2jFQDViVkU https://t.co/fcLgmtmiMX</li>
##   <li>@I_PrashantTyagi Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>Amid strong protests by locals,<span class='match'> the </span>Pakistan army has started to move coronavirus positive patients from Punjab province to PoK &amp; Gilgit Baltistan -<span class='match'> the </span>2 most marginalised areas under Pakistani occupation.
## #coronavirusinpakistan
## #pkmkb
## 
## https://t.co/13Bc7YuzI1</li>
##   <li>Detainees make medical face masks at<span class='match'> the </span>Hajdu-Bihar County Penitentiary in Debrecen, Hungary today. Protective masks are manufactured 24 hours a day. The production capacity is currently 33 thousand pieces a day. (<U+0001F4F7>: AP) #COVID19 https://t.co/FTBCxbptbS</li>
##   <li>@OhiaLehuaMaui @CTV_AvisFavaro Clear as mud. Heaven help us. Too many unknown factors, any one of which or in combo, could determine who may or may not benefit/suffer from NSAIDs given for #COVID19 . Thanks again.</li>
##   <li>Can mosquitoes carry COVID-19? If so, can they transmit it to humans if they land on or bite us? #CNNTownHall @CNN</li>
##   <li>BRO IF YOU HAVE COME INTO CONTACT WITH SOMEONE WHO HAS TESTED POSITIVE FOR COVID-19 THEN STAY THE FUCK AWAY FROM OTHER PEOPLE
## fucking assholes</li>
##   <li>“Draganfly is honored to work on such an important project given<span class='match'> the </span>current #pandemic facing<span class='match'> the </span>world w/ #COVID19...” said Andy Card, Director of @DraganflyInc &amp; former Secretary of Transportation &amp; White House Chief of Staff. READ:  https://t.co/lZ3fT6iry6 $DFLYF $DFLYF $3U8 https://t.co/VS2jFHPsB8</li>
##   <li>@thehouseofpod @skipocytes @NurseNikki71 Related:
## 
## https://t.co/uPy9huSRI1</li>
##   <li>Quarantine Day 12: 
## Have started oiling my armpit hair in<span class='match'> the </span>hopes of being able to braid it soon
## 
## #COVID2019 #StayingAtHome</li>
##   <li>@tofatochibo @citizentvkenya Only in Kenya where covid-19 viruses don't spread during<span class='match'> the </span>day</li>
##   <li>As<span class='match'> the </span>hours counted down before Wednesday evening's shelter in place order took effect, several residents and businesses in<span class='match'> the </span>community stood in solidarity to share one simple message: “We can. We will. We must.” https://t.co/NKs3e9p7U7</li>
##   <li>NEW: U.S President and Chinese President put aside cold war, speak on phone to chart new direction on fight against covid-19.</li>
##   <li>@think4urself6 @sadfly46 @SenSanders @AOC The US is losing 2 dead for every recovered patient as of last check, and well on track to lose 2.2 million people directly to COVID-19 and millions of more due to indirect causes. It can't even provide proper PPE to its people while Italy has.</li>
##   <li>@kakape Every single US illness, every single US death, and every single dollar of economic damage from COVID-19 will be<span class='match'> the </span>fault--single-handedly--of one person: 
## 
## Donald J. Trump</li>
##   <li>@DogginTrump Household cleaner with a microfiber cloth attached <U+0001F637> #COVID2019</li>
##   <li>The Spring Fling 2020 - Scheduling Update @IRTTheater #covid19 #coronavirus https://t.co/UgYxjsUjbK https://t.co/cn0lkUF2I1</li>
##   <li>@Lvethelife @KatrinaPierson News flash Donald FAKE NEWS Trump is lacking in leadership skills! <U+0001F633>DT calling coronavirus covid-19 a hoax blaming<span class='match'> the </span>Democrats! Donnie Boy knew about<span class='match'> the </span>covid 19 back in January 2020 &amp; elected to do nothing!<U+0001F621>The do nothing Donald!</li>
##   <li>Atlanta Site Added to NIH Clinical Trial of a Vaccine for COVID-19 | NIH: National Institute of Allergy and Infectious Diseases $mrna @moderna_tx    https://t.co/DCpigfZBV8</li>
##   <li>World COVID-19 5:30 a.m. update: 500,000 infections globally https://t.co/4KwmpHE5C4</li>
##   <li>@Fox_Claire I  suggest you keep to what you know about; "Democracy". As far as I am aware you have no scientific training whatsoever. Topics such as MMR and COVID-19 are far too important and sensitive for you to use as a topic for debate.
## Please desist.</li>
##   <li>I would love some lobster.  Where can I find some near Prince George? https://t.co/y0ZvcyOXI7</li>
##   <li>Police man giving food for dog #wonderful moment #keralapolice on duty #COVID19
## 
## https://t.co/5HlqkLXCtP</li>
##   <li>If this is true,  then it's a piece of GOODNEWS https://t.co/397c6qlNWa</li>
##   <li>In<span class='match'> the </span>#COVID2019 outbreak robots have<span class='match'> the </span>potential to be deployed for disinfection, delivering medications and food, measuring vital signs, assisting border controls, and for continuity of work and maintenance of socioeconomic functions. https://t.co/6kMSJaS8IN</li>
##   <li>Covid-19: Queensland reduces long-haul train and coach services https://t.co/1ogLFn9I6k #news #rail #trains https://t.co/TnYwN6ogGv</li>
##   <li>My name is Kristina, Registered Nurse (RN). 
## 
## Right Now (RN) we live in scary times. 
## 
## Rising Numbers (RN) prove COVID-19 is real. 
## 
## Remember Not (RN) everyone is safe. 
## 
## But one way we can save our families &amp; friends is with your assistance to social distance. #FlattenTheCurve</li>
##   <li>#FDA approval and criteria for use of investigational #convalescentplasma / #antibody Tx in #COVID19. https://t.co/U227OQLWNk</li>
##   <li>Ghana's recorded COVID-19 cases stands at 137 with 4 deaths and 2 recoveries. #GhanaDaily #COVID2019Ghana #COVID2019 #StayAtHomeAndStaySafe https://t.co/CHkDsvqnHj</li>
##   <li>I'll be on<span class='match'> the </span>Digital Mirage Online Music Festival next week. 100% of proceeds will benefit Sweet Relief Foundation for musicians affected by<span class='match'> the </span>COVID-19 pandemic. RSVP: https://t.co/yvLz0M7vL8 https://t.co/VNdOcoNFdH</li>
##   <li>@journo_dale It’s an indication that people Really. Aren’t. Getting it. It’ll reduce when we all *strictly* do our part. #stayhome #isolate #inthistogether #COVID19</li>
##   <li>@smitaprakash should learn from this camera person and donate generously.
## #Lockdown21 
## #CoronavirusOubreak https://t.co/iOECkXJr6d</li>
##   <li>All I wanted was an example of modeling and somehow Covid 19 popped up https://t.co/oUqFd8vPOz</li>
##   <li>PARENT ORIENTATION ON A VIRTUAL PLATFORM
## Abhinav Global School organized Parent Orientation Programme for<span class='match'> the </span>Parents of 2020-2021 on a “Virtual Platfrom”. The programme was concluded with<span class='match'> the </span>Question Answer Session. The programme was very inspiring and enriching.
## #COVID19 https://t.co/VjxzoNbO8E</li>
##   <li>honestly, you’ve done a SHITTY JOB!! why is USA now<span class='match'> the </span>global hotspot for<span class='match'> the </span>#coronavirus pandemic?? how could this happen if you &amp; your gang of incompetent uncaring thugs didn’t SCREW UP? HOW? https://t.co/Wcfp47njQm</li>
##   <li>COVID-19 Information Resource Page - New Jersey State Bar Foundation https://t.co/MCQoooHUi8</li>
##   <li>@Nan_Van99 The only thing Covid-19 has resuscitated</li>
##   <li>@tomelliottnz @EmmaVitz Might be able to see a Lufthansa plane tomorrow, that’s quite unusual in Auckland! https://t.co/wlDubVtUhX</li>
##   <li>EVERYONE should watch Contagion<U+2014> mirrors EXACTLY what we are going through! This was filmed in 2011!!  Planned pandemic? I’m just sayin...<U+0001F637><U+0001F47F><U+0001F630> #coronavirus #COVID19 #virus #flu #pandemic #epidemic #WHO #CDC #LockdownUSA #Seattle #veteran #military #Contagion #Event201</li>
##   <li>I've been getting questions about my recent travel back to Taiwan amid<span class='match'> the </span>#COVID19 outbreak so wanted to share my experience.
## 
## A (long) thread <U+0001F9F5></li>
##   <li>Great news! My student’s COVID-19 test came back negative! Enjoying<span class='match'> the </span>little victories where I can.</li>
##   <li>When you end up talking to Covid-19 in Guyana https://t.co/WvLZkDqxwp</li>
##   <li>@BillGates just now on @CNN “There is no light at<span class='match'> the </span>end of<span class='match'> the </span>tunnel for April, as<span class='match'> the </span>numbers continue to go up you can not open<span class='match'> the </span>country” 180 degrees different opinion than @realDonaldTrump. 
## #COVID2019</li>
##   <li>Please Retweet.
## All this Companies, Celebrities, Philanthropists, Foundations and many more that are giving African governments money in<span class='match'> the </span>name of donation for #COVID19 should stop. If you really wanna help, go to<span class='match'> the </span>streets.</li>
##   <li>"I’d like to end with something Singapore’s Minister of Health, @GANKIMYONG, said during today’s briefing.
## 
## We are only at<span class='match'> the </span>beginning of this fight. 
## 
## We need to stay calm, stay united and work together"-@DrTedros #COVID19 #coronavirus</li>
##   <li>Domain Registrars Take Action Against Fraudulent COVID-19 Websites https://t.co/tvNxT6m38B #InfoSecMag</li>
##   <li><U+0001F534> LIVE PODCAST: The Portugal Pillow Talk Podcast on @Spreaker #coronavirus #covid19 #mitigation #portugal https://t.co/bq4So042ny</li>
##   <li>No one died in Tiananmen, CoViD 19 is contained. https://t.co/XQIRnhhHMF</li>
##   <li>Number of COVID-19 cases rises to 5 in Myanmar
## https://t.co/D8oMj7Es4t
## #AWANInews #AWANIpagi #EnglishNEWS #COVID19 https://t.co/whwbesjXsJ</li>
##   <li>11 new cases of #COVID19 have been reported in Nigeria: 8 in Lagos, 2 in Enugu &amp; 1 in Edo State
## 
## As at 11:55pm 27th March, there are 81 confirmed cases of  #COVID19 reported in Nigeria. 3 have been discharged with 1… https://t.co/zZSJZ25WjN</li>
##   <li>NEW: One of Ontario's latest #COVID19 victims was a man in his 40s who worked at a Superstore in Oshawa and who tested positive just a few days ago, provincial officials have confirmed. He is likely Ontario's youngest victim of this terrible virus. #onpoli</li>
##   <li>US surpasses China for highest number of confirmed Covid-19 cases in<span class='match'> the </span>world https://t.co/8N7FJpy2vK</li>
##   <li>Best of luck all those diagnosed as of today. As you go to sleep tonight, know we're all with you. #COVID2019</li>
##   <li>While<span class='match'> the </span>#coronavirus may be keeping us apart physically, neighbors across Utah are finding creative ways to safely uplift their communities. 
## 
## #TogetherUtah @HeatherKSL 
## https://t.co/63FgfZE1sC</li>
##   <li>Downtown Winnipeg during covid-19. Visit <U+00A0>https://t.co/M62SC5nCr0<U+00A0>for<span class='match'> the </span>full album. Link in profile.
## .
## .
## .
## .
## .
## @ExploreCanada 
## @globalwinnipeg 
## @CBCManitoba 
## @TravelManitoba 
## @CanGeo 
## @imagesofcanada 
## @TourismWPG 
## @DowntownWpgBIZ 
## @weheartwpg https://t.co/kZ99OPLx1f</li>
##   <li>Damn you #coronavirus 
## #COVID2019 
## #CoronaVillains 
## #CoronavirusOubreak 
## 
## Losing my mind already 
## <U+0001F926><U+200D>♀<U+FE0F> https://t.co/WBgzenyhoN</li>
##   <li>@John_Hattie addresses<span class='match'> the </span>#visiblelearning community during COVID-19 crisis. "Together, we’ll brave through by doing what we do best: building a global community of educators shifting focus from teaching to learning" #cov19edu  #teachingduringcoronavirus https://t.co/YDxIFgIUFo</li>
##   <li>My cat practicing social distancing. #COVID2019 #SocialDistance https://t.co/qPKlEE5wki</li>
##   <li>Somehow this is still behind a paywall...#NewsPapers #news #coronavirus #COVID19 https://t.co/2yjw92spCT</li>
##   <li>The Masters tournament has been postponed due to<span class='match'> the </span>COVID-19 outbreak but sportsbooks still have odds to win<span class='match'> the </span>2020 Masters
## 
## Sportsbooks still have their odds to win<span class='match'> the </span>Masters tournament on<span class='match'> the </span>board, with Rory McIlroy as<span class='match'> the </span>current favorite to win:
## 
## https://t.co/NKZUIn4GOM https://t.co/qVZPQer2KM</li>
##   <li>My co-worker asking: “ Can we go out now?!” #covid19 https://t.co/taVhAlewNU</li>
##   <li>Today I was informed that one<span class='match'> the </span>man responsible for almost my entire wish to be an illustrator during my childhood died because #covid-19 makes his health worse. I'm sad as fuck! #DanielAzulay thank you so much! https://t.co/Q8YWHSq0Wf</li>
##   <li>I love memes #COVID2019 #memes #ChineseVirus19 #bruh #ThursdayMotivation #StayHome #Lockdown21 #<U+0641><U+0639><U+0627><U+0644><U+064A><U+0627><U+062A>_<U+0627><U+0644><U+062D><U+062C><U+0631>_<U+0627><U+0644><U+0645><U+0646><U+0632><U+0644><U+064A> https://t.co/nGD8KsDk1J</li>
##   <li>**Grateful <U+2764><U+FE0F> Thankful <U+2764><U+FE0F> Blessed <U+2764><U+FE0F>** 
## 8pm tonight we appreciate all of our carers <U+0001F44F><U+0001F3FB><U+0001F970> #clapforourcarers #nhs #covıd19 #appreciation #quote #grateful #thankful #blessed #dancer #singer #actor #performer… https://t.co/iZ4rUumSV0</li>
##   <li>New York sets up makeshift morgue as pandemic worsens https://t.co/9xBrJy3ULJ #National #Coronavirus https://t.co/7mEtAXjgwQ</li>
##   <li>Emergency Care Packages are leaving our yard today. One of<span class='match'> the </span>many vans. Helping<span class='match'> the </span>most vulnerable people in our communities.
## #TogetherWeAreStronger #Bidfood  #Wakefield #COVID19 #WeWillBeatThis https://t.co/oasN6FhE2k</li>
##   <li>@TheSusanGeorge My name is Jennifer Rose, &amp; before<span class='match'> the </span>#coronavirus I was planning to work on a #Velocipastor sequel "Velocipastor v. Manimal: Church v. State" in<span class='match'> the </span>vein of #BvS4Years. Here's a little clip of what my role would've entailed. #HeyJenLookatMe https://t.co/en3oIlGubX</li>
##   <li>Actually, this resonated. Coping skills for dealing with a PhD do kind of translate to<span class='match'> the </span>current #COVID19 life... #phdpandemic #phdchat https://t.co/h2ibhky0XG</li>
##   <li>As a healthcare worker I urge you to please stay home too. I am so happy to finally spend<span class='match'> the </span>next 2 days off self isolating. It’s not fun out there. #COVID19 https://t.co/nH2wknVzHH</li>
##   <li>Understanding #infection #diffusion and underlying models key for #COVID19 policies and #decisions @mlipsitch below explains well. https://t.co/1tQkeM6bJc</li>
##   <li>@shalailah If I want to keep my job. Going to work is compulsory. Either it’s a health risk or it’s not. New Zealand has released modelling. Australia should do<span class='match'> the </span>same. https://t.co/O8vW8x07q8</li>
##   <li>On Sundays, LifeWay Kids is offering free resources for parents and caregivers to help walk children through a small group lesson. Visit their website to learn more: https://t.co/yhsAsWrEnf</li>
##   <li>We’ll help with your COVID-19 disaster relief through<span class='match'> the </span>SBA! We have<span class='match'> the </span>necessary forms and can guide you through<span class='match'> the </span>process. 
## <U+0001F4F2> Call 331-998-5100
## <U+0001F310> https://t.co/9OABlXmNvt
## #CoronaLockdown #FridayThoughts #FridayMotivation #Massie #FridayFeeling #coronavirus #COVID19 https://t.co/4AVxhRubHx</li>
##   <li>Don’t tell me to stay in my g-damn house while pedo enabling royals Harry and Markle are flying in from<span class='match'> the </span>U.K./Canada after being exposed to Prince Charles COVID 19 virus.
## 
## @realDonaldTrump</li>
##   <li>@SenatorCollins Not enough everyone should have healthcare same coverage other countries do it. Some homeless woman with Cancer charged$34,000.00 for Covid-19 care WTF</li>
##   <li>Again, @NYGovCuomo showing that motherfucker in<span class='match'> the </span>White House how it’s done. I feel safe with mr. Cuomo leading<span class='match'> the </span>city during these times <U+0001F44D> #COVID19 https://t.co/LDTt2ABj8V</li>
##   <li>The amazing healthcare workers taking on COVID-19 are in need of more supplies, namely face masks. To any members of<span class='match'> the </span>Riveter Nation who sew <U+2014> or know others who sew <U+2014> we’re asking you to sign up now to put your skill to use <U+27A1><U+FE0F>https://t.co/f6XjRtC4LF https://t.co/qWBps0LJAj</li>
##   <li>Yup, THESE three #COVIDIOTS -- @realdonaldtrump, @borisjohnson and @jairbolsonaro -- are making things so much worse than they should be! #COVID19 #WereNumberOne #MAGA #CoronaLockdown 
## @mcottle https://t.co/nSA6f07CHm</li>
##   <li>As we stay at home to survive this COVID-19 which I know we will. Let's try and learn something new shall we?
## 
## This is<span class='match'> the </span>rocker arm of a 4-cylinder motor vehicle engine. It's work is to open and close<span class='match'> the </span>inlet and exhaust valves at<span class='match'> the </span>correct time
## 
## #ApexECompany #automobile https://t.co/VsNaR3zK7Z</li>
##   <li>@lennyshots @digi_sc is giving food parcels to<span class='match'> the </span>less fortunate in<span class='match'> the </span>Philippines during #COVID2019, and is paying out of his own pocket. All funds in<span class='match'> the </span>wallet will be forwarded to him. https://t.co/FQPQGSIoXK</li>
##   <li>The Community in Ainsworth never ceases to amaze me!! Max’s mum asked that, as they can’t go out on his Birthday, if people in<span class='match'> the </span>village would stick something to their window.
## 
## All day people have been turning up with pictures to wish him a happy birthday <U+0001F382> #Ainsworth #covid19 https://t.co/ik4n4G2aoq</li>
##   <li>@wilfulblindness Happy Birthday and bloody hell. <U+0001F632> I'm not done yet. I didn't lose weight to be finished off by #COVID19</li>
##   <li>NEW POST #CurfewinKenya #COVID19KE #COVID19 https://t.co/l2qOe6RDvC</li>
##   <li>Calling L.A.-area small businesses: join @DrLucyJones tomorrow &amp; every Friday at 10am to gain insights and resources to managing this pandemic. Details and registration can be found at https://t.co/loV81TsvwA</li>
##   <li>@HRC PLEASE SHARE:
## 
## #TRANSSOLUTIONS RAPID Response Support!!!!!!
## 
## HERE YOU GO!!!! Will start funding next week!!! 
## 
## $25 Amazon Gift Voucher (Survival Kits) 80 Cards 
## Up to $100 (Special Needs) 10 Gifts 
## $250 Micro Gifts only 4
## 
## The direct link is https://t.co/D64OjEswU1</li>
##   <li>Now we have 2 pandemics to fight, Covid-19 and #PoliceBrutality</li>
##   <li>COVID-19 quaratine day 11: 
## 
## Today was supposed to opening day. 
## 
## Oh depression. How spiteful you are
## 
## #OpeningDayAtHome 
## #GoCubsGo 
## #FlyTheW https://t.co/rZiwGhXFBV</li>
##   <li>"Jeff Shell,<span class='match'> the </span>CEO of NBCUniversal, said on Thursday that he has tested positive for COVID-19,<span class='match'> the </span>disease caused by<span class='match'> the </span>coronavirus."
## https://t.co/5v7Tp9GkLh
## #Celebs #TheStorm #CoronaVirus</li>
##   <li>Hey @magnolia folks: Is there a playlist version of recipes by @joannagaines where we can purchase recipes for $0.99 or $1.99 a piece? I never make all recipes in a cookbook anyway...am home way more this year than expected....so asking for a friend. @chipgaines #COVID19</li>
##   <li>Tune into<span class='match'> the </span>Governor's update on COVID-19 scheduled for today at 4:30 p.m.
## https://t.co/b2yQX5Bm4i</li>
##   <li>My daughter is now quarantined with her wonderful boyfriend. He has a coworker with #COVID<U+30FC>19 .
## I’m not a happy mama.</li>
##   <li>This is an incredible tale of a forward looking #retailer that prepared long before others for this pandemic. 
## 
## #coronavirus #COVID19 #grocery #supermarket https://t.co/W2lbe2cb6E</li>
##   <li>@piersmorgan I'm a warehouse worker picking online fashion orders. M&amp;S, Next, Topshop &amp; H&amp;M rely on us for their online orders. Working hard &amp; frightened! No lockdown for us! @riverisland thanks for choosing people over profit &amp; closing your warehouse #warehouseworkers #COVID19</li>
##   <li>@spiralni @XHNews Believe it or not, Virus is there no matter which country it breaks out, same as H1N1. It's<span class='match'> the </span>threat for all humankind.
## 
## China fights with Covid-19 1-2months earlier than Europe<span class='match'> the </span>US by lockdown(maynot<span class='match'> the </span>best timing, but it works anyway) which wins time for<span class='match'> the </span>world indeed</li>
##   <li>Why 6 foot separation? We can smell people smoking from ten or twenty feet away. Why tabacco particles you exhale can travel 10 feet or more and still be noticeable but coronavirus somehow gets tethered to a six foot radius? #coronavirus #CoronaLockdown</li>
##   <li>@DBRodriguez5 @AnthonyMKreis The plaintiffs bar litigation involving covid-19 will be something.  (May keep me busy.)</li>
##   <li>Social distancing saves lives! We can all do our part to stop<span class='match'> the </span>spread of COVID-19. #6feetapart #slopd https://t.co/KLA8JhrcEZ</li>
##   <li>Premier Annastacia Palaszczuk MP: SUSPEND QLD Local Council Elections COVID-19 - Sign<span class='match'> the </span>Petition! https://t.co/LZOczdoE0z via @ChangeAUS</li>
##   <li>Italy records 969 coronavirus deaths, dashing hopes of turnaround https://t.co/5IIxXviee9</li>
##   <li>I've been looking for a set of maps like these! State-by-state info on #COVID19 regulations (restaurant closures, gathering bans, school closures etc.): https://t.co/1ukJA6yvmY</li>
##   <li>Overwhelmed and humbled by<span class='match'> the </span>extraordinary generosity supporting our Crowdfunder @masksforNHS raising over £125,000 in less than 24 hours!! We are ordering #PPE to donate directly to<span class='match'> the </span>#NHS #frontline. Please help protect our NHS staff in<span class='match'> the </span>fight against #COVID19</li>
##   <li>@realDonaldTrump I don't understand why<span class='match'> the </span>word testing is in quotation marks. Probably because it isn't true?<U+0001F914>...
## #COVID19 https://t.co/meEvyRt4tv</li>
##   <li>THREAD
## 
## 1/ The heart of Manchester used to be bustling each day, but now it lies deadly quiet as<span class='match'> the </span>effects of<span class='match'> the </span>coronavirus lockdown take hold.
## 
## #coronavirus https://t.co/35okpKjxhx</li>
##   <li>@RorNotRed Support employees during a health pandemic (COVID-19)
## https://t.co/AKIrnPG8A7</li>
##   <li>Stay in bed. Save a life #covid19</li>
##   <li>Information on feeding your baby amid this pandemic #COVID19
## #coronavirus 
## https://t.co/4MruYNUgI0</li>
##   <li>RAFO plane returned loaded with medical equipment from China late Thursday night. Ready to fight #COVID2019 in #Oman
## .@muscat_daily https://t.co/Khn7sHQ2OJ</li>
##   <li>PamyBot:~$#forex #fxDailyFX "The $USD soared against<span class='match'> the </span>Indonesian Rupiah, with USD/IDR eyeing its best month since<span class='match'> the </span>1997-98 Asia financial crisis amid<span class='match'> the </span>#coronavirus outbreak. Can this trend continue? Find out from ddubrovskyFX here:https://t.… https://t.co/z5SmkvKXu3"</li>
##   <li>#COVID19 Safe-drug supplies part of package as Vancouver addresses Downtown Eastside https://t.co/oDNpG6LOKA</li>
##   <li>DRUMPF USING FEMA BIDDING TO KEEP SUPPLIES FROM STATES IN DIRE NEED TO FIGHT COVID-19! DRUMPF COMMITTING CRIMES AGAINST AMERICA!  HE MUST THINK WE ARE SO CAUGHT UP IN THE PANDEMIC NEWS THAT WE ARE NOT PAYING ATTENTION TO HIS CRIMINAL TREASONOUS BEHAVIOR!  WE ARE WATCHING TREASON https://t.co/8iFCGEoFwf</li>
##   <li>Me coming up with ways to keep people 2 meters away from me! No #coronavirus for me thank you! https://t.co/XbzMqBT7gs</li>
##   <li>Sex with Batman I hope ! #COVID19  https://t.co/yIfWgBME1V</li>
##   <li>School is out<span class='match'> the </span>rest of<span class='match'> the </span>year in AL? Here’s where you can find me <U+0001F3C3><U+200D>♀<U+FE0F> #coronavirus #homeschooling #alabama https://t.co/t62aSiXmjA</li>
##   <li>Covid-19 Daily Deaths Worldwide
## 
## (Last updated: 26-03-2020)
## 
## 2,306
## 
## https://t.co/E2gPbGjvUE
## 
## #CoronavirusNewDeaths #NewDeaths #COVID19Stats #COVID19 #Coronavirus #CoronavirusOutbreak #CoronaVirusUpdates https://t.co/XcrYEHnWew</li>
##   <li>COVID-19: MD vs. Gold and Silver https://t.co/i7bLavrqoK via @YouTube</li>
##   <li>This + people from so many strata of society go to mosques so<span class='match'> the </span>exponential increase in #COVID2019 cases will blast up if one of<span class='match'> the </span>worshippers spreads<span class='match'> the </span>virus to others. I've always maintained that ethics/humanity/morals come before religion. Wish others would do<span class='match'> the </span>same! https://t.co/Mmi3Oc0WSm</li>
##   <li>ANA and JAL to revise summer schedules for international flights until late April:
## https://t.co/pp9d7xFUz9
## #Aviation #Airlines #Airports #COVID19 #Coronavirus https://t.co/ZCSVgOGGEk</li>
##   <li>Damn straight we need it!  Use it now!  #coronavirus https://t.co/GVsI1qKB97</li>
##   <li>Staff Book Suggestions: During this time of #COVID19 #socialdistancing, we're sharing some of our staff members' book recommendations: What are yours?
## https://t.co/UX2Ib8RCIq https://t.co/CeX37h3247</li>
##   <li>Burkina Faso's confirmed cases of COVID-19 rise to 152 https://t.co/J5k6DfnkOo h/t Shiloh #coronavirus</li>
##   <li>Industry services on<span class='match'> the </span>brink of collapse:<span class='match'> the </span>British prostitutes are asked to recognize their victims because COVID-19 https://t.co/ZGN0gb6IJw https://t.co/YccMY2XVQa</li>
##   <li>AnD<span class='match'> the </span>bailout begins:
## 
## CMHC to take more mortgages off banks' books to free up cash for loans amid COVID-19 crisis https://t.co/gdjtT7xw0V</li>
##   <li>When someone at<span class='match'> the </span>WH who is a "medical professional" say Trump is listening to what they are saying remember <U+0001F447>which means that person is lying through their teeth. Sad! #Covid19 (is a virus) Trump should know this by now. Geez! https://t.co/CGIooKjWBW</li>
##   <li>ICYMI: Watch<span class='match'> the </span>playback of our #COVID<U+30FC>19 resources for businesses webinar. Learn about how to keep your workplace safe, how to apply for @SBAgov
## loans, new labor law &amp; how to manage stress. https://t.co/i5sV8kC23f</li>
##   <li>Epic post by chef @dominiquecrenn <U+0001F4AF> Thank you for<span class='match'> the </span>laugh. Much needed <U+0001F339>#covid19 #love #socialdistancing https://t.co/Gz9U24DX9P</li>
##   <li>Nope... We may not be immuned to #coronavirus but we are all immuned to #TrumpVirus -- It just washes over us. https://t.co/aGtD9scMVB</li>
##   <li>@ericmander @honeycombio or https://t.co/2U8dFW9StF - either for testing (in CA) or on protocol to run your own testing site</li>
##   <li>All of my internship opportunities this summer have been cancelled due to<span class='match'> the </span>COVID-19 outbreak..
## 
## Was really looking forward to interning at another place in Boston this summer like Hill Holliday, Genuine, or Nuance..</li>
##   <li>I want to ask something.. What are Native Doctors doing about this Covid-19 ?</li>
##   <li>UK Government: PROPER Support for Owners/Directors of their own Ltd Companies from UK Government COVID-19 - Sign<span class='match'> the </span>Petition! https://t.co/Tt9ONioHjj via @UKChange</li>
##   <li>Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief. Let’s see more billionaires step up #CoronavirusOutbreak #HelpFightCorona  https://t.co/BbFbty8j66</li>
##   <li>@globalnews @GlobalCalgary Guessing they have knowledge of terrorists who are taking advantage of this covid-19 crisis all over<span class='match'> the </span>world and trying to get in to<span class='match'> the </span>US through Canada</li>
##   <li><U+0001F6A8>ATTENTION LOCAL CUSTOMERS<U+0001F6A8>
## .
## .
## Due to new restrictions based on COVID-19 safety concerns, @spottampa is suspending their IN-STORE PICKUP service starting at 4pm today until further notice...
## .
## .
## To make up for it,… https://t.co/hMos9zBMcU</li>
##   <li>Hands down 3 is<span class='match'> the </span>worst age for your kid to be during this Covid-19 business.  Old enough to get into all<span class='match'> the </span>trouble.  Young enough not to give a (bleep). “Go stand in<span class='match'> the </span>corner?  I don’t even know what a corner is, old man”.</li>
##   <li>The MSM hasn't been trustworthy for a least two years, spinning whatever they can to make Trump and conservatives look bad.
## 
## So why is it that we believe their reporting on Covid-19? 
## The MSM is playing Chicken Little.</li>
##   <li>Why is everyone surprised when a relatively healthy person dies of COVID-19? 
## 
## Hundreds of healthy people die every year from just<span class='match'> the </span>regular flu.</li>
##   <li>Trump still thinks and believe COVID-19 is static. Take a snapshot of where and how many, then ignore its growth during decision making time. Just as he did w<span class='match'> the </span>now infamous 15. 
## ~Brilliant~ https://t.co/JdoJbJnZ0S</li>
##   <li>Another 919 Italians dead. If that doesn't scare you IT ABSOLUTELY SHOULD. @LeoVaradkar @SimonHarrisTD @simoncoveney why isn't Ireland in lockdown? You are failing<span class='match'> the </span>people of this state and Irish people are going to die because of you. #LockdownIreland #COVID19 #coronavirus</li>
##   <li>#ADOS @BREAKINGBROWN @TONETALKS 
## Federal officials focused on Wayne County (DETROIT) as emerging coronavirus (COVID-19) hotspot https://t.co/vkxfP60N0Q</li>
##   <li>I spoke to BBC Newsday this morning about<span class='match'> the </span>impact<span class='match'> the </span>coronavirus pandemic will have on hiring. My interview starts at 45:00 into<span class='match'> the </span>program. https://t.co/ZE4nj8nZ0Z
## #jobsearchtips #career #coronavirus #COVID19 #stayconnected #quarantinelife</li>
##   <li>Me looking at y'all not Social Distancing during this Corona Crisis #stayhome #stayhomestaysafe #coronavirus #covid_19 https://t.co/c0Q8w4Ll3e https://t.co/O64ynf5DXZ</li>
##   <li>“FACTS Save Lives!” #COVID19 - https://t.co/CNr7K8ZWFy - #USAToday</li>
##   <li>I’m using this anger tracker to help kids process how they are feeling with<span class='match'> the </span>changes and limitations with #COVID19. 
## 
## I have send<span class='match'> the </span>PDF to parents to print off for<span class='match'> the </span>telehealth session. 
## 
## https://t.co/DeggcIzw9l</li>
##   <li>Grievance Redressal Cell Set Up To Resolve Problems Of #FoodProcessing Industry During #COVID-19 Lockdown #Coronavirus https://t.co/Wcz2sIF1Wt https://t.co/p2sEiftI8V</li>
##   <li>@kpmaurya1 Respected Sir,
## I m posted in Directorate of Medical and health Services Lucknow as Environment expert. I m also a team member of state survilance team for COVID-19 i m not getting my salary from last six months. So please do<span class='match'> the </span>needful.
## 
## Thanking you 
## Mayank Dubey
## mob.8858009154</li>
##   <li>Chances are you have an idiot friend or relative who refuses to social distance and sit their asses at home. That’s why we have<span class='match'> the </span>most cases in<span class='match'> the </span>world. Congratulations y’all, we did it. #COVID2019 #COVID19Updates #CoVid2019usa</li>
##   <li>@TheRickyDavila Me too, but Agent45 is now keeping #DrFauci in a closet near <span class='match'> the </span>Oval Office - hope he’s not being RE-educated. #coronavirus</li>
##   <li>Can’t wait until COVID-19 is just a “remember when” story</li>
##   <li>I can’t bend  to Tyranny #COVID19 #CoronaLockdown #coronavirus #CoronavirusOutbreak</li>
##   <li>N. Y. Hospital closes all departments to concentrate on #COVID2019 !! Bad luck for all those other conditions! #auspol https://t.co/fFvKmXUjsQ</li>
##   <li>#coronavirusindia 
## #Kerala #COVID19 #Death
## The 69-year-old man had returned from Dubai on March 16 and admitted to hospital on March 22. His wife and an online taxi driver who came in contact with them are also under treatment for #COVID19. 
## @xpresskerala 
## @NewIndianXpress</li>
##   <li>This article summarizes<span class='match'> the </span>US debacle with #Coronavirus #TestAndTrace: One case lays bare America's testing failure https://t.co/kQsVUac6o7</li>
##   <li>Fellow Nigerians are you seeing what am seeing?
## Mouth-watering palliatives being rolled out by Lagos State Governor @jidesanwoolu to cushion<span class='match'> the </span>effect of #Covid-19 and further make<span class='match'> the </span>#StayatHome order very effective in Lagos State.
## 
## #GoodLeadership</li>
##   <li>@RudyGiuliani @RealCandaceO Maths :3x3x3x3x.. is 57,000 persons in a few days. 1 million in a small number of weeks. Even with a limited death rate<span class='match'> the </span>number of 15-20,000 deaths is almost certain.
## 1 infected contagious person with covid-19 transmits<span class='match'> the </span>virus to 3.
## 
## “3” is what makes this virus so deadly.</li>
##   <li>Published lit:
## 2006: Convalescent Blood Products for Spanish #Influenza: Future #H5N1 Treatment? 
## https://t.co/XfLFhnNkvZ
## 
## 2017: IVIG Protects Against Severe Pandemic Influenza: https://t.co/2gwvElx9UW
## 
## 2020: #COVID19 treatment: old tricks, new challenges https://t.co/SlYtsOUjCt</li>
##   <li>Coronavirus (COVID-19) - Apple and CDC <U+0001F923> Cops will come get you and throw your ass in a real quarantine if you “pass this test” <U+26A0><U+FE0F><U+26A0><U+FE0F><U+0001F6A9><U+0001F92E><U+0001F608> https://t.co/dPd5rUqcAu</li>
##   <li>@TRAPTOFFICIAL with all this Covid-19 shit going on, nothing has changed for y'all. Still can't sell out a show. Maybe just keep having those locals sell your tickets.</li>
##   <li>Xerox has set up a special landing page on its website dedicated to its COVID-19 response: https://t.co/jj8skt9ttg. https://t.co/dwvPplJcr4</li>
##   <li>#URGENT #CallToAction email ICE Chicago Director and demand #FreeThemALL to flatten<span class='match'> the </span>curve #COVID19 https://t.co/bkpvNnUQKF</li>
##   <li>CABS is helping in<span class='match'> the </span>fight against COVID-19. Seats have been taped off to indicate six feet of space between riders for social distancing. @OSUWexMed https://t.co/OLpLryt0Lc</li>
##   <li>Ezra Klein’s thoughtful interview re #Covid19 with economist Jason Furman and bioethicist Ruth Faden is well worth a listen. #PhysicalDistancing  https://t.co/BEQLadLBvE</li>
##   <li>The Yemeni people are in solidarity with communities affected by #Coronavirus in<span class='match'> the </span>world. #Yemen wants peace and wants an end to<span class='match'> the </span>US-Saudi aggression and blockade on Yemeni people #5YearsOfWarOnYemen https://t.co/Ow7iDYAiYi</li>
##   <li>#COVID19: Govt has to provide more testing centers as increased testing will reveal more cases and help manage<span class='match'> the </span>spread <U+2013> Dr Shola Dele-Olowu https://t.co/fv5JjIenu7</li>
##   <li>Covik one nine is like a bitch on her period #COVID<U+30FC>19</li>
##   <li>Funny T-Shirt | Just Social Distancing With My Dog T-Shirt | H by BellaVitaConcepts https://t.co/m2Eiciam0c via @Etsy #socialdistancing #socialdistance #doglover #DogMom #dogdad #coronavirus #quarantine #quarantinewithdog</li>
##   <li>#COVID19 is dangerous! (As<span class='match'> the </span>others) i am just so sick of people caring about this (Virus) way less than people getting killed not by a mysterious Virus, no but by other people..</li>
##   <li>@eBay says it removed over a half million listings in violation of policies aimed to curb #ebaysellers abusing<span class='match'> the </span>#COVID19 emergency.
## 
## #ecommerce #smallbusiness #coronavirus https://t.co/sSmc2hbooN</li>
##   <li>@BaltimoreHub Teaching our employees on how to stay safe with<span class='match'> the </span>COVID-19. Employees got to use<span class='match'> the </span>sanitation station and felt appreciated by their safety committee. #TeamWork #WeAreOneUPS https://t.co/XoGVk9hbOa</li>
##   <li>India: COVID-19 positive cases surge to 873, death toll stands at 19 | C... https://t.co/qUddBhOc3C via @YouTube</li>
##   <li>Gov. Tony Evers, joined by state health officials, will provide a live update on<span class='match'> the </span>Wisconsin response to<span class='match'> the </span>COVID-19 coronavirus pandemic. https://t.co/iO1l46FAlC</li>
##   <li>Thank you for all your efforts and we need more persons like @DjokerNole @novakfoundation proud to be Serbian...<U+0001F1F7><U+0001F1F8><U+0001F1F7><U+0001F1F8><U+0001F1F7><U+0001F1F8>#Covid_19 #serbia #novak We are all in this together with<span class='match'> the </span>aim to contain this fast spreading pandemic. #OstaniKu<U+0107>i #SRB https://t.co/J3cD7V4X1S</li>
##   <li>“Democrats clearly prefer to impose stricter restrictions on citizens than Republicans. David Horowitz is known for saying,  ‘Inside Every Progressive Is A Totalitarian Screaming To Get Out.’” #COVID19 #KAG #NancyPelosiMustGo #ampFW  https://t.co/EiAhhIx9rJ</li>
##   <li>Hear me out, replicate<span class='match'> the </span>Live Aid fundraiser concert, except virtually for #COVID19 and with<span class='match'> the </span>new queen, @Beyonce</li>
##   <li>Jr NBA Cameroon : Yes to my Health .. All against Covid-19
## @JrNBACmr : Oui a ma sante.. je respecte les mesures contre le Coronavirus @DrManaouda @CameroonPm237 @CabinetCivilPRC @BasketzoomN @NBA_Africa @BrendaAnge @OMS_Afrique @RFI @OliviaEpoupa @theBAL @camerbe @fasuafrica https://t.co/e3dwqbxwPX</li>
##   <li>Dear UK TV, please consider<span class='match'> the </span>following 2 help us get thru isolation:
## Mon - @bbcapprentice 
## Tues - @greatbbakeoff 
## Weds - @PlebsComedy
## Thurs - #24HoursInPoliceCustody
## Fri - #FridayNightDinner
## Sat - #SaturdayNightTakeaway 
## Sun - @Hunted_HQ 
## @BBCOne @Channel4 @ITV #COVID2019</li>
##   <li>Forecasting COVID-19 impact on hospital bed-days, ICU-days, ventilator days and deaths by US state in<span class='match'> the </span>next 4 months https://t.co/toGwXEB3Go via @IHME_UW</li>
##   <li>I hope you are following 21 days lockdown...Retweet if you are following....#gocorona #21daysLockdown #COVID2019  #CoronaUpdate #CoronavirusOutbreak 
## #StayHome 
## #coronavirus 
## #CoronaLockdown</li>
##   <li>People have managed to defeat #Covid19 using a simple solution: testing. Now we need these vital tests available worldwide! Sign<span class='match'> the </span>petition to world leaders to call for mass test production immediately: https://t.co/wUdrL5ml30</li>
##   <li>Davido in self isolation as chioma tests positive of Corona Virus https://t.co/zhnGaeIl0L
## 
## Fiancee and wife to be of Popular Nigerian musician Davido (Chioma) has tested positive to<span class='match'> the </span>worldwide pandemic COVID-19 This comes as a shock as<span class='match'> the </span>news comes unexpectedly below is a … https://t.co/JyPEIUuEnn</li>
##   <li>Canada has done 52,000 more #COVID19 tests than<span class='match'> the </span>United States with a population 1/10<span class='match'> the </span>size. More can be done but on<span class='match'> the </span>right track. #COVIDCanada #CoronaLockdown</li>
##   <li>Quarantine is a full time job. Between baking bread, mastering Spanish, perfecting handstands, becoming a Coursera Yale student, Insta-live workout classes, and refreshing that damn JHU COVID-19 map, I barely have time to watch Tiger King.</li>
##   <li>NIGERIA: Chioma (Davido) Tests Positive with COVID-19 https://t.co/Prt6P8k2F5 https://t.co/l7CzZdeRex</li>
##   <li>COVID-19: US announces $174 mn aid to 64 countries including $2.9 mn to India https://t.co/ts4unuZf4X via @economictimes</li>
##   <li>Indiana, in response to<span class='match'> the </span>COVID-19 crisis, has provided immediate and longer-term relief options from property tax for hotels, restaurants, shopping malls, commercial offices and retail businesses, to name just a few. Our partner David Suess explains. https://t.co/U33KkYfmSa https://t.co/5I1FlgxNf3</li>
##   <li>B.C. COVID-19 contact restrictions working, Dr. Bonnie Henry says https://t.co/Kn7CF2GBMn</li>
##   <li>Working remotely? Pyrus can help with task management, communication, and workflows. To relieve<span class='match'> the </span>burden of companies suffering from #COVID19, we are now offering<span class='match'> the </span>full Pyrus service, completely free, for 3 months. https://t.co/LEroR7YuLX https://t.co/nYRBpKkAdz</li>
##   <li>@VickiLynn47 @vincerevoo @real_defender S. Korea 1 in 170 citizens tested
## U.S.A 1 in 1,090 citizens tested
## 
## Covid-19 discovered in both countries on same day.
## 
## Raw numbers don't mean anything.
## Percentages of citizens tested is what matters</li>
##   <li>Now Playing on 234Radio, Tolu Brownie (@Tolubrownie) - Numba One. 
## 
## Together, we can defeat coronavirus disease (COVID-19) #LetsFightCovid19 #CovidNGR</li>
##   <li>At<span class='match'> the </span>end of another #coronavirus day. https://t.co/GOI4f4NTXf</li>
##   <li>Fire service gives reassurance during Covid-19 crisis
## https://t.co/gG0Zw1PmUk https://t.co/Kek5gFinsE</li>
##   <li>Monroe's budget workshop will be remote tonight. https://t.co/b5ZhyQAccK</li>
##   <li>@mh4oh Good to have<span class='match'> the </span>option to mail your ballot!
## #COVID2019</li>
##   <li>COVID-19: Lagos projects 39,000 cases https://t.co/MC5Mdq0rYB https://t.co/QSmFB0L3EK</li>
##   <li>@JJFromTheBronx rally chipwich to defeat COVID-19 https://t.co/zs081mQFXt</li>
##   <li>@phlexyl I like him ohhhh, he is about to be disgraced, God take those Covid-19 away so they don’t laugh at him oh<U+0001F629><U+0001F629><U+0001F629><U+0001F629><U+0001F629><U+0001F629><U+0001F629></li>
##   <li>So @realDonaldTrump you claim your government is handling<span class='match'> the </span>#CoronavirusOubreak and testing is better than elsewhere in<span class='match'> the </span>world. What a complete bunch of lies. Currently infection levels are almost about to take over Italy.</li>
##   <li>Nine cases of COVID-19,<span class='match'> the </span>respiratory illness caused by<span class='match'> the </span>new coronavirus, have now been reported in<span class='match'> the </span>Gaza Strip https://t.co/MDQtz7Sro3</li>
##   <li>Did you see @StewLeonards on @Nightline with @JujuChangABC @ABC #FoodSupply #COVID19 #FamilyBusiness See daily updates from me at https://t.co/S4s2SNpgLL https://t.co/IgCdi7GHlA</li>
##   <li>Once we’re through this #COVID19 situation... 
## 
## If you could change one thing about<span class='match'> the </span>world, what would it be?
## 
## Can be big or small... go</li>
##   <li>It’s scaring me people are saying they’re getting covid 19 without going outside like whatttt <U+0001F974></li>
##   <li>Global Shutdown: Visualizing Commuter Activity in<span class='match'> the </span>World's Cities https://t.co/IBWqtE1dU7</li>
##   <li>Anti-COVID-madness #7
## 1) Food bank deliveries: my list went up from 4 to 11  in 1 week. 
## 
## 2) @UCDAggieCompass: still open but<span class='match'> the </span>Pantry is closed. Weekly Thurs bag drop- but registration FULL.
## More info here: https://t.co/OA112nOhRr
## 
## We are just at<span class='match'> the </span>beginning.</li>
##   <li>Tax, trade, and other authorities are responding to<span class='match'> the </span>COVID-19 pandemic with regulatory change, relief measures, and extensions. @KPMG_US Phil Jacobs moderates a #webinar on<span class='match'> the </span>wide-ranging economic, business, and social impacts. https://t.co/Rij4yQDLOT https://t.co/66tabgTcGh</li>
##   <li>6. Here is an Forbes article on social distancing https://t.co/juAIqbqtdm @rajuparulekar</li>
##   <li>Daily reminder: @realDonaldTrump’s failure to take #COVID19 seriously is killing people everyday. 
## 
## The president of<span class='match'> the </span>United States is responsible for killing his citizens. 
## 
## The leader of<span class='match'> the </span>free world’s incompetence is killing Americans everyday. 
## 
## Is it Nov 3 yet?</li>
##   <li>@WHO completely failed in finding<span class='match'> the </span>patient zero of #COVID19. One side of this story is failure and another side is conspiracy! As we all know #Tedros is #XiJingping’s puppet, #China’s stake in WHO. what to expect here!!!
## 
## God Bless #WHO 
## Vive la #WHO
## #WuhanVirus</li>
##   <li>@Cieran999 Maybe. We’re all learning. Important for primary care - not all (7 day isolation) fever is #COVID19</li>
##   <li>UPDATE <U+203C><U+FE0F>: Minister of Health Dr Zwelini Mkhize clarified that<span class='match'> the </span>28 year old female patient who passed away is no longer considered a COVID- 19 case.</li>
##   <li>#Brexit &gt; breathing. 
## 
## #VentilatorGate 
## #coronavirus https://t.co/oTKcCRWE4D</li>
##   <li>@BBCBreaking Anyone know<span class='match'> the </span>death toll comparing<span class='match'> the </span>Flu and Covid-19? Curious is all</li>
##   <li>Na covid-19 Jam dem<U+0001F602> https://t.co/8ZKOeN7GsG</li>
##   <li>https://t.co/y8eLbozoDI
## 
## Just posting this here. Stockpiles are back up, not solutions, nor a static entity that remains, forever. Kinetic. Holding energy. This is part of being a president, and having people in place to take charge. Amazing what I learn on my morning commute.</li>
##   <li>Great reads during stressful times. Like now<U+2014>hint, hint. <U+0001F609> 
## #socialdistancing #covid_19 #stressrelief #stressmanagement #greatreads #reading #readtime #survival https://t.co/H4NYPOqPYV</li>
##   <li>I’m glad Pelosi wasn’t there, she needs to be protected.  Along with RBG #FlattenTheCurve Do as they say, not as they do - at least for #COVID19 https://t.co/VbKFc4ua7d</li>
##   <li>We’ve compiled all of @AsaHutchinson’s guidance and directives regarding #COVID19 into a single document. Check out all<span class='match'> the </span>updates by going here: https://t.co/WJ1izxO8CC
## 
## #GreatCitiesGreatState #COVID19 https://t.co/UtNgpGw0KO</li>
##   <li>I criticised Ed Balls for praising<span class='match'> the </span>Govt when my wife, a nurse is doing a 14-hour shift tonight with little PPE.
## 
## And now she's a scab.
## 
## What have we become?
## 
## #clapforourcarers #NHS  #COVID2019 https://t.co/rnpktrcbvZ</li>
##   <li>“Trump touts [cancelling flights from China] as<span class='match'> the </span>smartest, greatest thing he’s ever done, but how does he explain why we're in<span class='match'> the </span>shit show that we’re in right now?” @AmbassadorRice joins to talk about Trump’s COVID-19 response (or lack thereof). https://t.co/ktqqieQXES</li>
##   <li>Maryland Delegation Helps Secure Major Disaster Declaration, Unlocking Additional Federal Resources to Fight COVID-19 (March 27, 2020 at 03:33PM): https://t.co/fwpuDskXv7</li>
##   <li>Yemen is experiencing<span class='match'> the </span>impact of war, a famine, and other humanitarian disasters.
## 
## It experienced a cholera outbreak between 2016-2020, and now its dealing with<span class='match'> the </span>COVID-19.
## 
## Yemen needs<span class='match'> the </span>resources for post-conflict reconstruction, not tools to enable conflict. https://t.co/I7ojYok9Pu</li>
##   <li>If y’all think people reporting on<span class='match'> the </span>COVID-19 rates and<span class='match'> the </span>action/inaction of our gov’t are “horrible people” please check yourselves. We should be thankful there’s someone holding federal agencies accountable to do<span class='match'> the </span>job they were elected to do. #LivesAreNotPolitics</li>
##   <li>Can a face mask protect me from coronavirus? Covid-19 myths busted https://t.co/kWvyno3u3g</li>
##   <li>Amid<span class='match'> the </span>#COVID19 pandemic, more people than ever are working remotely from their homes<U+2014>raising new cyber risks for businesses. Here are 6 ways that you can protect your employees and your organization https://t.co/QKIMncfcnb https://t.co/1EkBP9Wb7X</li>
##   <li>@Chronic_FLKeys I think people got confused at<span class='match'> the </span>beginning between #Norovirus  and #Coronavirus 
## Then they got "if-they're-buying-it-I-need-it" syndrome.
## #TPWarof2020 #Covid19 #toiletpaper #ToiletPaperPanic https://t.co/0LCw3q2CnJ</li>
##   <li>@ANI Amazed that allopathic medicine still only able to treat<span class='match'> the </span>effects of of covid-19. Leaving Ayush to remedy<span class='match'> the </span>cause blessings for your perfect health wealth and happiness</li>
##   <li>@DailyCaller So @SpeakerPelosi who is writing and directing<span class='match'> the </span>soon to be released #coronavirus musical at<span class='match'> the </span>Kennedy Center?</li>
##   <li>If there were ever a time for bold leadership not bound by<span class='match'> the </span>old ways of doing things, this is it. @RepAOC understands this. @AOC is fighting for paid sick leave, expansion of Medicaid, a moratorium on evictions, and<span class='match'> the </span>forgiveness of student debt. #StimulusPlan #COVID19 #AOC https://t.co/n0mqvWMJSI</li>
##   <li>Looking for ways to #help? Checkout @LS_Cares. They have a #COVID19 response directory with wishlists from community nonprofits, a hospital volunteer database, and remote volunteering opportunities.
## https://t.co/b15wDnquG2</li>
##   <li>Ziggy cannot say Queen Elizabeth hospital but he gave it a go! #nhs #COVID2019 #queenelizabethhospitalwoolwich #queenelizabethhospital @LG_NHS #appreciation https://t.co/Ufzbp2KK3t</li>
##   <li>Bosch has developed a rapid test for Covid-19,  that can detect a SARS-Cov-2 corona virus infection in a patient in under 2.5 hours. #medical #science #technews https://t.co/vWcJTLGtfr</li>
##   <li>Frequently Asked Questions on<span class='match'> the </span>#StimulusPackage #coronavirus https://t.co/ezMQBGj9Bx</li>
##   <li>There’s no place he’d rather be than home quarantined with than Ginny <U+0001F495> #harrypotter #quarantineandchill #covid19 #ginny https://t.co/XFsYNpTgnD</li>
##   <li>.@SenTinaSmith Thank you for passing<span class='match'> the </span>latest COVID-19 stimulus package, which allocates $130 billion to hospitals and health systems. Your leadership on this issue has moved our nation one step closer to an end to this global pandemic.</li>
##   <li>Find out what scams are currently circulating during<span class='match'> the </span>outbreak of #COVID19 here: https://t.co/1WAa0qGlgT
## 
## Please watch out for them and help raise awareness. https://t.co/9oMlhJUG59</li>
##   <li>@sydney_talker @EWAWUNMIII Bros.....if na covid 19 u get......u go don spread am oooo.....no nose mask no nothing.....you enter car come out like that and people dey follow you around.......you dey spread<span class='match'> the </span>virus my guy</li>
##   <li>Covid-19 can suck a fat one</li>
##   <li>Yele Sowore: FG planning to rearrest and infect me with #Coronavirus.
## 
## @SecPompeo @StateDept</li>
##   <li>LOL there are ton of gifts from fuck LDP to face #COVID19, meat, fish, travel.. etc. they dare not provide cache, despite many more countries provide to keep safe.. Really wondering why LDP do such things.. https://t.co/BnRwmmMRYd</li>
##   <li>@MOH_Kenya help<span class='match'> the </span>many anigmatic Kenyans draw a persuasive relation between #COVID19 and these brutalizing, uncouth, diabolical, villainous night curfews. Help us comprehend!  @OleItumbi
## @Asmali77 @HEBabuOwino 
## #CurfewKE #uhurumustgo</li>
##   <li>@_tutsy Yhuuu. #COVID19 is working extra hours to keep me in panic. Let me indulge. Thank you Twin<U+0001F618></li>
##   <li>11 new cases of COVID-19 have been reported in Nigeria; total now 81. https://t.co/q212Cr7xMv https://t.co/Vm36XV2oqF</li>
##   <li>@realDonaldTrump Soon More Americans will die from<span class='match'> the </span>#TrumpVirus #Covid19 than who died in<span class='match'> the </span>Vietnam War. And it’s all Donald Trump’s fault.</li>
##   <li>COVID 19 claims its first Idaho victims https://t.co/0CLYD5GQla</li>
##   <li>We hope these ideas can keep ya going through these days. Visit our https://t.co/JG8gaYzNuU page for more resources (for you &amp; your kiddos). Feel free to share. Stay safe, all! #covıd19 #kidsactivities https://t.co/m5hvEIeg7E</li>
##   <li>@ZimBollar How is this going to aid our fight against Covid-19 ? Most of us don't have USD. Those that do have cash. Why not suspend  2% transaction tax on all online transactions and ecocash<U+0001F644></li>
##   <li>Thank you @ChrisMurphyCT for leading a letter to  #EndCOVIDSanctions.  US sanctions make it harder for countries like Iran and Venezuela to get basic supplies like medical equipment. Stopping #COVID19 anywhere will make everyone safer. #SanctionsKill
## 
## https://t.co/QAyYt5suPQ https://t.co/JOv1z9Spnt</li>
##   <li>Updates on<span class='match'> the </span>Covid-19 situation in Indonesia #coronavirus https://t.co/CF09VtVpDz</li>
##   <li>If<span class='match'> the </span>human race are able to overcome #COVID2019 I suspect<span class='match'> the </span>world will move more towards communist regimes, n those few surviving democracies would be more authoritarian?</li>
##   <li>Confusion within<span class='match'> the </span>CDC, and its limited use of testing, gave COVID-19 a head start in<span class='match'> the </span>U. S. https://t.co/BKLjH1F27Q</li>
##   <li>Americans To get $1,200 Each As @realDonaldTrump Signs Historic $2.2tri #FinancialStimulus Bill
## https://t.co/FjCol3B3f5
## #CityBusinessNews #CityNews #LatestNews #BusinessNews #NewsUpdate  #WorldNews #News #Update #DailyNews #DailyPost #AllAfrica #Covid19 #CoronavirusPandemic https://t.co/t1tbOrapfs</li>
##   <li>I ONLY have steak @texasroadhouse #KindnessMatters #coronavirus 
## Texas Roadhouse CEO gives up salary for year to pay workers during pandemic https://t.co/H8KP8Eoz3Q via @tucsonstar</li>
##   <li>@Katpa73 What I have been thinking but not saying. #COVID19 is our doom...
## 
## #DieForTheDow is for Republicans.
## #DumpTrump</li>
##   <li>@pulte Please pay my Kids @netflix . I just lost my job and cable tv is discounted 3 months ago. I can pay you back when i get back to work. #Pulte #CoronaLockdown #coronavirus #Netflix @FoxNews</li>
##   <li>Ive never heard of viruses disappearing. Science says viruses are not even alive, they’re activated by a living host! Trump says that<span class='match'> the </span>#COVID19 virus will disappear by summer! He’s lying, he’s trying to kill us, he needs to go away!</li>
##   <li>WHO Director-General calls on G20 to Fight, Unite, and Ignite against COVID-19 https://t.co/RTD6ClLoCH</li>
##   <li>@Stop_Trump20 Not until they start dying from COVID -19</li>
##   <li>Q, also a woman: Will you give us notification when<span class='match'> the </span>DPA is used?
## 
## A: We'll tell you.
## 
## #Coronavirus #TrumpShitShow</li>
##   <li>Is one of<span class='match'> the </span>#Coronavirius symptoms laughing at jokes that aren't funny?
## 
## #COVID2019</li>
##   <li>@covid2019_info Forecasting COVID-19 impact on hospital bed-days, ICU-days, ventilatordays and deaths by US state in<span class='match'> the </span>next 4 months 
## https://t.co/buyzZnHHbf</li>
##   <li>This guy is an idiotic asshole. COVID-19 isn’t Chicken Pox for<span class='match'> the </span>neighborhood kids and cousins. #flattenthecurve not blow it up! https://t.co/pfdAHFWTtl</li>
##   <li>Twitter please share this article. If you have a child in<span class='match'> the </span>KC area I urge you to stay away from Children’s Mercy Hospitals. They are endangering their employees and will not allow them to wear medical grade masks during an airborne pandemic. #COVID19 https://t.co/rbZ5uZbKJg</li>
##   <li>LIVE UPDATES: Disney World to remain closed ‘until further notice’ due to COVID-19, officials say 
##  https://t.co/gZx2JI2oek</li>
##   <li>@realDonaldTrump TRUMPS SAYS "GOOD THINGS ARE HAPPENING"
## I WONDER WHAT HE CONSIDERS BAD THINGS? 
## #COVID2019 #CongratulationsAmerica #CoronavirusOubreak #TrumpNotFitForOffice #ResignNow https://t.co/rBHCOjLc6r</li>
##   <li>@pukeonyourdad My biggest foe so far in<span class='match'> the </span>quarantine is a mild case of boredom.
## I refuse to give in to panic unless<span class='match'> the </span>world population goes down by 1%. Yes, I know what that means in<span class='match'> the </span>unlikely event it actually happens, but I'm rapidly approaching my #Coronavirus news "ad nauseam" point.</li>
##   <li>Ireland, we’ve just been set a new, tougher challenge - just like @HamillHimself / Luke Skywalker himself.
## It’s now very much in OUR hands.
## Use The Force.
## Kill #COVID19. https://t.co/275HOgnhqB</li>
##   <li>We don't know clearly<span class='match'> the </span>deaths/infection ratio of Covid 19. But<span class='match'> the </span>point here is:<span class='match'> the </span>number of infections will always be in<span class='match'> the </span>millions. That number really doesn't matter. What matters is<span class='match'> the </span>recovery rate, hospitalization rate, critical care rate.</li>
##   <li>@chiefcraig85 I've been meaning to message you to tell you that N95 masks and single use gloves are<span class='match'> the </span>white sunglasses of<span class='match'> the </span>COVID-19 crisis.</li>
##   <li>#RKelly Update: #RKelly has asked<span class='match'> the </span>Judge in Chicago to release him on bond due to<span class='match'> the </span>#Coronavirus Outbreak. View evidence below<U+0001F447> https://t.co/sZTCiwFvEX</li>
##   <li>@GabeUKSaintsFan @whodatholly9 @lizardpmiller @DatNolaBabe @MaryHPiper @DPLegendary24 @bballmomma4 @DustyDatGirl @AGalvezStJoint @LouisianaKaren @vcbarbie @SnoopyKriss Thanks Gabe. Hey WhoDatNation follow<span class='match'> the </span>#COVID19 prevention guidelines &amp; be safe guys        <U+0001F5A4><U+269C><U+FE0F><U+0001F49B></li>
##   <li>#TwitterKurds a must read article<U+2935>
## 
## - outbreaks have a beginning, middle and end and<span class='match'> the </span>end always comes due to<span class='match'> the </span>community....
## 
## #COVID2019
## 
## https://t.co/qEptTkezFI</li>
##   <li>Cesaro, Xavier Woods Participating in Charity Stream Tomorrow To Benefit COVID-19 Fund https://t.co/SBk9TDc8pl</li>
##   <li>With<span class='match'> the </span>constantly developing issues surrounding<span class='match'> the </span>#COVID19 pandemic, Greyhound Racing NSW believes it is crucial to keep all participants up to date on all news involving<span class='match'> the </span>industry.
## 
## Read<span class='match'> the </span>latest update.
## 
## READ // https://t.co/Wqba1KILda 
## 
## #GreyhoundRacingNSW https://t.co/sUQVPCJugW</li>
##   <li>What type of thanks this is ? What u people want to prove ? Stop being so shameless always <U+0001F926><U+0001F3FB><U+200D>♂<U+FE0F>. We are fighting with Global Epidemic like #Covid19 and you want us to promote our PM for this <U+0001F44F><U+0001F44F><U+0001F44F>. Stop looking for PR, atleast in this <U+0001F64F><U+0001F3FB>. https://t.co/hzB6Ajd7YF</li>
##   <li>LIVE AT NOON: Governor Ivey announces closures of more businesses to reduce<span class='match'> the </span>spread of COVID-19.  https://t.co/Z7Z3z6v40I</li>
##   <li>@jimfannon Damn! Why would they go there? Hey Jim! Listening to you web thing. Do another one and send me<span class='match'> the </span>link. This one was...well you know what it was. Your lungs need to be in intensive care and I want to see your F-bomb license. #coronavirus</li>
##   <li>Call to arms in NYC...can you help or know someone who can help? https://t.co/NDVKxscFku</li>
##   <li>Starting off with great stuff on #COVID19, here is a very illuminating article from @cenmag, that looks at #Remdesivir as a potential strategy to tackle<span class='match'> the </span>disease: https://t.co/FVHH3ZJrGZ</li>
##   <li>@Aaron86074700 Chal na COVID-19 is on. Please take care baba don’t roam out and play cards. #StayHomeStaySafe</li>
##   <li>Startups might be excluded from<span class='match'> the </span>COVID-19 stimulus plan https://t.co/VyxgnO3uz3</li>
##   <li>The #Democrats would have a great deal more time if they didn't have to spend every second of every day babysitting you.
## 
## #LiarInChief #CoronavirusOutbreak #COVID19 #COVIDIOTS @SpeakerPelosi @RepAdamSchiff @RepJerryNadler @HouseDemocrats #StayAtHomeAndStaySafe #ImpeachTrumpAgain https://t.co/xT4QSJBwJf</li>
##   <li>Are D.C. Hospitals Prepared For More COVID-19 Infections? https://t.co/GhlOCUhx0M</li>
##   <li>Yesterday 468,577 cases
## 
## Today 525,297 cases = about 57,000 cases more
## 
## Deaths yesterday: 21,185
## 
## Deaths today: 23700 = about 2500 more deaths 
## 
## Stay inside, retweet and like this 
## 
## to spread<span class='match'> the </span>message 
## 
## #COVID2019 #CoronavirusLockdown https://t.co/k1wEwAUQFG</li>
##   <li>@MSNBC My understanding is<span class='match'> the </span>hospital ship is not for Covid-19 treatment, rather, it will allow hospitals to transition treatment of non corona patients outside of<span class='match'> the </span>hospital. As grand as it looks, and helpful it will be, it’s not nearly enough.</li>
##   <li>In UK: Boris Johnson, Prince Charles, &amp; Matt Hancock (Health Secretary) All Have COVID-19 &amp; Dr Whitty Has Symptoms https://t.co/iXkPruXfS4</li>
##   <li>The lengths we go to... nonetheless, it my covid-19 morning. https://t.co/TCHueFOjsJ</li>
##   <li>There have been seven confirmed cases of COVID-19 on<span class='match'> the </span>base. https://t.co/bgPn973rW6</li>
##   <li>Governor Newsom has issued an executive order that if you lost your job thanks to contracting COVID-19 or because of<span class='match'> the </span>state of emergency, your landlord cannot evict you if you notify them IN WRITING that you need to delay paying rent. https://t.co/HULg22wLBf</li>
##   <li>3 ways hackers can exploit everyone working from home during<span class='match'> the </span>#Coronavirus outbreak. #cybersecurity #cybercrime #cyberaware #databreach #breach #malware #workfromhome #hackernews https://t.co/luiv4flmhO</li>
##   <li>Evanston Art in<span class='match'> the </span>time of Corona: View artwork created by  Evanston Art Center students, faculty during COVID-19. Art by David Moskow#evanstonmade https://t.co/gZr3PHuqV5 https://t.co/Pi3BZLEMGW</li>
##   <li>#COVID #COVID19 
## 
## If I were Donald Trump. I would line up his entire Cabinet and all advisors to publicly kick them in<span class='match'> the </span>groin before firing them....!!!! https://t.co/a03pMem4nc</li>
##   <li>Daycare closing after possible COVID-19 exposure https://t.co/WvGfRHoPp4</li>
##   <li>#Coronavirus outbreak: Big trouble brewing in Mumbai's #Vasai #Virar belt https://t.co/ldqxA4UqdN via @mid_day</li>
##   <li>"The #coronavirus and<span class='match'> the </span>real threats to American safety and freedom." https://t.co/27QkhUgNRS</li>
##   <li>Hiding in plain site! #COVID2019 #BillGates #coronavirus https://t.co/mByVhfxF4I</li>
##   <li>https://t.co/TRndAHjxJK UPDATE;Nigeria now have 81 confirmed cases https://t.co/4FVzGkYtST</li>
##   <li>A thread on<span class='match'> the </span>corresponding author of<span class='match'> the </span>#Hydroxychloroquine and #Azithromycin trial, Didier Raoult. It is....... not flattering. #COVID19 https://t.co/2vyILQ0Qck</li>
##   <li>@NWalesDragons My daughter in law is front line Covid 19 triage. I’m thinking she was too busy to mention it! I’d have yelled like a demon for sure.
## .</li>
##   <li>The $2 trillion dollar aid packages have been approved through<span class='match'> the </span>senate to help unemployment cases due to<span class='match'> the </span>outbreak of<span class='match'> the </span>Corona virus... #COVID2019 #TwitterNewsChat</li>
##   <li>Interestingly Nemani and Lynda had one post that was very similar - one saying Sodelpa brought #Covid19 and another saying Fiji First <U+0001F644><U+0001F928></li>
##   <li>Foolhardy to conclude that pandemics are good. Perhaps COVID-19, will make us find less polluting ways to do our jobs. Our normal way of doing things might need disrupting! Lets hope we overcome this calamity soon <U+0001F91E><U+0001F3FC></li>
##   <li>EthicalGEO Pod Episode 1: Location Tracking during COVID-19 by AmericanGeoSociety via #soundcloud https://t.co/CqTXJ4ngJg</li>
##   <li>Help me keep my animals! Things have gone from bad to worse with this Covid-19 pandemic! I was unable to stock up on enough dog food and hoese hay for my critters. PLEASE PLEASE PLEASE Please support my GoFundMe campaign: https://t.co/gCoPoiRZ5L @gofundme https://t.co/R55wRW6BwC</li>
##   <li>@TB_Times Problems? So far, 46 people in FL have died due to #COVID19. How many of FL elderly die every year during same time frame? Media using @GovRonDeSantis as proxy to attack @realDonaldTrump. We know what you're doing, and we will not forget.
## #CoronavirusOutbreak  #FakeNews</li>
##   <li>How is<span class='match'> the </span>COVID-19 pandemic impacting workers in<span class='match'> the </span>United States? @LoumayAlesali took a closer look
## https://t.co/oDNE5DsTIg @McClatchy @thestate #coronavirus</li>
##   <li>...wfh day#7 #wfh #dirumahaja #covid19 #COVID19indonesia https://t.co/hJ9NQ1O5xi</li>
##   <li>COVID-19: Protect yourself, family while fighting for others, PDP scribe tells journalists - https://t.co/RWk0fm4AIS https://t.co/vJTg0BOccT</li>
##   <li>Now on https://t.co/0J2UdYHyh5
## 
## Covid-19: NSCDC deploys 300 personnel in Ondo</li>
##   <li>"Don’t go out. Don’t go to<span class='match'> the </span>grocery store. Don’t go through<span class='match'> the </span>drive-thru. Don’t do anything that could put you at risk to have to see me at<span class='match'> the </span>end of<span class='match'> the </span>tunnel. I'm telling you it’s not worth it &amp; I don't know what I can do to save people anymore." https://t.co/gxqpVLK9lO</li>
##   <li>@SidneyPowell1 @WHO @realDonaldTrump @NIH @docdhj @DrMartyFox @CDCemergency @RepMarkMeadows UK took Covid 19 OFF High Consequence Infectious Disease List
## 
## High consequence infectious diseases (HCID) - https://t.co/2XP3OOVYQz
## 
## https://t.co/KKd2EWBJD2</li>
##   <li>Wow. COVID-19 is outrageous.</li>
##   <li>States that have allowed #marijuana businesses to remain open during #coronavirus pandemic https://t.co/Sik9YjVRXp #cannabis #cannabisindustry</li>
##   <li>@APompliano I agree. Hedge funds are pumping this and will be dumping hard on retail investors. We haven’t even started seeing<span class='match'> the </span>economic impact of COVID-19 yet...those earning calls in April will start<span class='match'> the </span>real dump. Let’s not ignore<span class='match'> the </span>fact that already 3.2M applied for unemployment.</li>
##   <li>Q10: Going forward, how might #COVID19 change #SocialMedia technology? #PeerFriday</li>
##   <li>Is The Fed’s Cure Worse Than<span class='match'> the </span>Covid-19 Virus? Apparently, The Federal Reserve and US Treasury think they need a bigger boat!
## 
## (Bloomberg) <U+2014> The economic debate of<span class='match'> the </span>day centers on whether<U+00A0>the cure of an https://t.co/YjxTvkoopc</li>
##   <li>One hopes that this will be circulated as widely as<span class='match'> the </span>original story in order to reduce public alarm.  But of course it wont be. Chloe Middleton: tragic death of 21-year-old not recorded as Covid-19 https://t.co/P0I07W09Kg</li>
##   <li>Practical Parenting during a Pandemic https://t.co/qZDGhPwDRi via @colbypearce #parenting #parent #parents #fostercare #fostercarer #fostercarers #kinshipcare #kinshipcarer #kinshipcarers #socialwork #youthwork #educator #teacher #wellbeing #resilience #Covid_19 #coronavirusau</li>
##   <li>@realDonaldTrump  You Orange Asshole! You just beat China to be no 1 in Covid-19 cases in<span class='match'> the </span>world. TOTAL LOSER!!!</li>
##   <li>If USA is COVID-19 epicenter, huge boxing events may have to move https://t.co/SXSVhQ4SSd #FuryWilder3 #canelosaunders https://t.co/m1qY8EIb89</li>
##   <li>Thank you. To all @NHSuk staff, doctors, nurses, GP’s, healthcare workers and pharmacists who are working so hard and so bravely to help those affected by<span class='match'> the </span>Coronavirus.  We respect you, we salute you, we <U+0001F64F> thank you <U+0001F499> #clapforourcarers #COVID2019 #ThankYouNHS https://t.co/k8XV69eb1k</li>
##   <li>"The problem has not been solved. Even after today's announcement, a great many face financial destitution." @MoyerLee. Our response to<span class='match'> the </span>government's support package falling short for<span class='match'> the </span>#selfemployed
## 
## #COVID2019 #covid19UK #CoronaCrisis #CoronaVillains #lockdown #keyworkers https://t.co/JNEYxggQm2</li>
##   <li>Well, well, well.
## “But his timing was near perfect…” 
## from
## “Jeff #Bezos sold $3.4bn of #Amazon stock just before Covid-19 collapse”
## https://t.co/sfsgRv1UZ4
## #Covid19 #Capitalism</li>
##   <li>Safe Guidelines for Kids and Socializing During COVID-19 https://t.co/0dhB7MGXnL</li>
##   <li>Covid-19 is exposing yet another weakness is American infrastructure: high-speed rail https://t.co/UsJjiFI1RL</li>
##   <li>I'd like to wish<span class='match'> the </span>Prime Minister and<span class='match'> the </span>others in<span class='match'> the </span>Cabinet affected by #Covid19 a speedy recovery! https://t.co/42tPFhGUBf</li>
##   <li>@WhitneyM02 @AceAnbender Just so you know Mount Sinai medical students are not allowed to participate in any patient care for any patients currently. All rotations and clinical experiences have been suspended due to COVID-19.</li>
##   <li>Join me in telling our officials: COVID-19 cannot be fought without<span class='match'> the </span>help of all manufacturers in my state: https://t.co/MU4kOVmgS6 #CreatorsRespond #palletsmovetheworld</li>
##   <li>We Plan Group : Inbound call support during Covid-19 pandemic - WCCF https://t.co/hCP4qPO27R
## 
## #Wales #contactcentre #CustomerService #Covid19 #business #callcentre</li>
##   <li>@BernieSanders has proven himself a true leader in this time of crisis. What will you do @realDonaldTrump ?
## #BernieIsOurFDR #COVID19 #DemExit https://t.co/aXcOj2Re3d</li>
##   <li>Hey @GovHerbert
## 
## You may want to look at this. 
## 
## You are doing NOTHING! 
## 
## Do. Your. Job. #COVID19 #ShelterInPlace NOW
## 
## This is<span class='match'> the </span>point of no return for intervention to prevent Utah's hospital system from being overloaded by Coronavirus:  https://t.co/rhn1hQG3j6 #COVIDActNow</li>
##   <li>Thank you for your service! #COVID19 #coronavirus #Caregivers https://t.co/pX4TfVa9JM</li>
##   <li>@joeldanger_ @FallonTonight sick-but it's not covid 19 cuz i can't find a thermometer in a store to check for fever and can't get tested cuz i don't have<span class='match'> the </span>3 prereq's- 1.fever, 2, traveled, 3, known contact with s/o diagnosed with covid19 - chicken broth aka sick chicken broth</li>
##   <li>Thank you to Kerry Kennelly and his  team at @Kerrys_Eye for shining a special spotlight and an apt caption on<span class='match'> the </span>response of #Kerry #volunteers in relation to #COVID19 and highlight<span class='match'> the </span>supports available to local groups from our team at<span class='match'> the </span>Kerry Volunteer Centre #community https://t.co/fInaytZkgo</li>
##   <li>67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/BttntWJlQc</li>
##   <li>WE ARE HIRING! 
## We are still actively hiring through<span class='match'> the </span>#COVID19 crisis. Now more than ever, we need dedicated, service-oriented people who want to be part of something bigger than themselves and are committed to<span class='match'> the </span>#Sheriff office mission Apply now! https://t.co/hPGtsidvZc</li>
##   <li>Open https://t.co/k54kJA8thZ which is a one-stop tracker for<span class='match'> the </span>number of confirmed COVID-19 cases in India. Made by @amitbhawani Bhai.</li>
##   <li>@mcdon_s @JudicialWatch Do you think your President is protecting you? if so think again 
## ..the world is at war with a virus spreading, regardless of politics   People are dying, it can happen to you and to your loved one 
## Knowledge is power, learn about<span class='match'> the </span>enemy called Covid-19 and protect yourself.</li>
##   <li>Currently speaking to another fellow maker in SG who runs a small manufacturing firm. We'll be pulling our resources &amp; brainpower <U+0001F9E0> together to design new ideas <U+0001F4A1> &amp; build solutions to help battle<span class='match'> the </span>#COVID19 situation. | #makers #electronics #iot #arduino @arduino</li>
##   <li>Mark Zuckerberg, Priscilla Chan and Bill Gates to fund $25M #coronavirus research group - via <U+2066>@CBSNews<U+2069> <U+2066>@czbiohub<U+2069> #COVID2019 #serology <U+2066>@ChanZuckerberg<U+2069> <U+2066>@BillGates<U+2069>  https://t.co/i8heM9598U</li>
##   <li>Very much looking forward to our discussion this coming Wednesday! Thank you very much Nana Kay @SmartestNk and Swiss Cognitive @SwissCognitive for<span class='match'> the </span>opportunity! @Nanoappsm @tantriclens @HeinzVHoenen @TopCyberNews #coronavirus #CoronavirusOutbreak  #CoronavirusPandemic https://t.co/vDbYPwVTV2</li>
##   <li>Overhearing my 8yr old playing Harry Potter with a best buddy over video. They invented some spells that would help them sneak past Nagini<span class='match'> the </span>snake into Hogwarts. The two of them seem to have conjured protective shields to protect wizards such as themselves from #Covid19. <U+0001F625></li>
##   <li>MEDC | Application Process Now Live for Michigan Small Business Relief Program Funding - Up to $20 million in grants and loans now available to Michigan’s small businesses impacted by COVID-19 outbreak
## https://t.co/c5l4bin2qs</li>
##   <li>Numbers of Corona cases keeps on increasing in USA, every minute.
##  It has now crossed 83,000. Just few hours back it was over 75,000.
## 
## It’s devastating. Extremely devastating. <U+0001F628><U+0001F628>
## 
##  #CoronavirusOubreak https://t.co/x995v3Dnmy</li>
##   <li>@DPrasanthNair Reliance is doing something with<span class='match'> the </span>money it has
##  https://t.co/G9yHh93XHK</li>
##   <li>Cuba is helping Spain and countless other countries deal with #COVID19 pandemic. 
## 
## US can get help from Cuba instead of causing brain drain in developing countries. 
## 
## Unfortunately they keep Cuba under sanctions. 
## @BrezhMalaba @Sizzle76 @TimoOlkkonen @hwendec @ShingiMunyeza https://t.co/8ZRCBEUWLZ</li>
##   <li>Covid-19: PM Jacinda Ardern provides latest update https://t.co/zltDQ5rnP7 https://t.co/Ud8k6Lv6eR</li>
##   <li>An informative PSA from Dr. Jeffery VanWingen on safe grocery shopping during COVID-19. This is<span class='match'> the </span>most current video for New CDC data, safe takeout food practices, and an updated practice for safe grocery shopping/handling. https://t.co/wUT987safR</li>
##   <li>Ripple Labs Donates $200k to Combat COVID-19 Pandemic https://t.co/9xPN3VXRT3 https://t.co/Fw5qaCgJiP</li>
##   <li>For our complete analysis of #coronavirus scenarios for #jobs, #GDP, #oilprices, #humancapital, and more, visit https://t.co/qdh5D8rl6g. https://t.co/Z5cCuNOMBn</li>
##   <li>Watching #trump kiss his own ass daily in<span class='match'> the </span>#Coronavirus press briefing is like watching<span class='match'> the </span>contortionist in<span class='match'> the </span>circus sideshow. We’re all paying dearly to see it but it is doing us absolutely no good.</li>
##   <li>The latest The Lilach Bullock Daily! https://t.co/zpXrI805et Thanks to @artgirl2 @weareallbeggars #usnsmercy #covid19</li>
##   <li>By far<span class='match'> the </span>worst day for new cases of #COVID19 in<span class='match'> the </span>state. Unfortunatley, Gov Inslee was duped into suggesting a deceleration was occurring due to case reporting issues at Washington State Department of Health. 
## 
## cc: @komonews @KING5Seattle @KIRO7Seattle @Q13FOX</li>
##   <li>Every effort is being made to support<span class='match'> the </span>front lines, let’s hope this catches on quickly enough to save lives.  #COVID19 #PPEshortage https://t.co/aWTYgmBaFc</li>
##   <li>If you don’t have to go out into<span class='match'> the </span>community for business, please stay home. This is<span class='match'> the </span>only way that we are going to be successful in eliminating<span class='match'> the </span>spread of COVID-19. Please and thank you!</li>
##   <li>In<span class='match'> the </span>news: Colorado Coronavirus Updates: What You Need To Know Today https://t.co/CyLXlaVHKJ #coronavirus #COVID19 #2019ncov</li>
##   <li>One of<span class='match'> the </span>most difficult, yet important, aspects of a #remoteworkforce is ensuring your employees are still secure at home. Check out our tips. 
## 
## #covid19 #workfromhome #cybersecurity #networksecurity #cloudsecurity
## https://t.co/xL0BBL0C50</li>
##   <li>Now Africa must ban all people from these sh*t countries from entering it shores and spreading #COVID2019 #CoronaVillains <U+0001F92A> https://t.co/5NZ6KwtPk4</li>
##   <li>Summer 2020 is about to be WILD once<span class='match'> the </span>heat ends this COVID-19 quarantine mess. But then when fall comes it’s gonna mutate and we’re gonna be under house arrest again.</li>
##   <li>#LockDownRadio @stream_times The latest Covid-19 cases across<span class='match'> the </span>world as<span class='match'> the </span>virus surpass half a million infections. https://t.co/nWqNOwVplb</li>
##   <li>At this point, I don't give a flying f*ck who<span class='match'> the </span>Blue Candidate is, I'll vote Blue, to stop T from killing us. Being alive after<span class='match'> the </span>election will enable us to deal with whoever we got into office, if they are really That Awful. They can't possibly be This Awful. #coronavirus</li>
##   <li>@CNN @OhioNursesAssoc  I saw<span class='match'> the </span>interview about masks. Thinking about options for anyone that has a homemade mask. I could put them on our https://t.co/5hLmABptNl site for free to broaden<span class='match'> the </span>effort. I am seeing duplication, but this can be streamlined to save time. #COVID19</li>
##   <li>Aehr Comments on COVID-19 and Measures to Operate at Near Full Capacity as Global Supplier to Critical Infrastructure Customers https://t.co/3TODl6GH2u</li>
##   <li>Gov. Cuomo is doing a great job keeping<span class='match'> the </span>citizens of NY updated on<span class='match'> the </span>COVID-19 outbreak! #nycovid19</li>
##   <li>According to<span class='match'> the </span>"Novel Coronavirus Pneumonia Prevention and Control Plan(Sixth Edition)", asymptomatic infection refers to infected people that does not show symptoms of<span class='match'> the </span>Covid-19(such as fever, cough, sore throat, respiratory tract infections etc.)but<span class='match'> the </span>IgM antibody test +</li>
##   <li>tinder not putting out any offer in this trying times...
## 
## aw<U+1ECD>n ahun o<U+1E63>i #COVID2019</li>
##   <li>G2G Webinar on "Govn't Funding - Coronavirus Response" will be held tomorrow at 12PM &amp; again at 3PM. Learn about legislation responding to<span class='match'> the </span>coronavirus/COVID-19 and additional programs. Register online: 12PM-1PM - https://t.co/sndW7Xwh6n ; 3PM-4PM - https://t.co/g6zoG4PoEe https://t.co/MJShNYnYfX</li>
##   <li>Rookie mistake 
## 
## 1 bottle of wine in<span class='match'> the </span>house....
## 
## *Heads online to rectify mistake 
## 
## #CoronaLockdown #Covid_19 #IrelandLockdown #TorisCocoon #compromisedimmunesystem https://t.co/PP0gdlWIY1</li>
##   <li>I hope everyone stays safe #coronavirus</li>
##   <li>@moreki_mo covid 19 will go but stupidity is permanent<U+0001F922></li>
##   <li>@TraceAdkins @ViacomCBS It is so sad that it wasn't seen by many people staying inside because of covid-19.</li>
##   <li>Wish to have one in this moment! #designinspiration #Innovation #COVID2019 https://t.co/57jhYfBeIQ</li>
##   <li>The health and safety of Ontarians is our top priority. Important updates on COVID19 as of Thursday, March 26, 2020 at 730PM. #FlattenTheCurve #COVID19 https://t.co/qfRz0eNSti</li>
##   <li>Are you using<span class='match'> the </span>right tools for secure work from home? #COVID19 https://t.co/jQ7WvGIbid</li>
##   <li>@KeishaBottoms <U+0001F31F> IS A SUPER STAR<U+0001F31F>
## 
## She took up<span class='match'> the </span>plight of making sure<span class='match'> the </span>homeless is provided for during this COVID-19 pandemic &amp; Governor Kemp commended her and said he's leaning on her for this.</li>
##   <li>Here’s to #trackingnotslacking while #socialdistancing! We are open for business and following social distancing practices to protect our teams, customers, and community https://t.co/hQpUGbvqSW. We will continue to track<span class='match'> the </span>situation and do our part to help #flattenthecurve.</li>
##   <li>COVID-19 Just-in-Time ECHO for Primary Care is a drop-in series starting on 3/27. Experts will be on hand to answer questions &amp; to share information about<span class='match'> the </span>spread of<span class='match'> the </span>virus in Colorado, Go to https://t.co/jkIoFR7pff for more information and to register.</li>
##   <li>We are going to clap daily to reinvigorate our superhuman @NHSuk workers in a show of support for their herculean efforts and bravery in<span class='match'> the </span>battle against #COVID<U+30FC>19  and in defiance against<span class='match'> the </span>disease. We will continue clapping until we get rid of it.  #clapforNHS #NHS https://t.co/u3gCddJY3a</li>
##   <li>Gather round and crowd in, everybody! We’re here to tell you some methods for preventing coronavirus. #nicaragua #COVID #coronavirus #salud https://t.co/wCkj9FFWCA</li>
##   <li>Oh no....I just heard a rumour that COVID 19 can possibly cause sterility in middle aged males. 
## With our PM in mind, what about a whip round for urgent research people?? ... On second thoughts, FUCK THAT</li>
##   <li>“We are preparing for<span class='match'> the </span>most serious scenario” on #COVID19, stresses @adriandix. @cbcnewsbc</li>
##   <li>Now it's really starting to feel real. This is horrifying and so sad. #COVID19
## 
## https://t.co/8Bih1oeDsk</li>
##   <li>Patriots fans on<span class='match'> the </span>@NFL discussing canceling<span class='match'> the </span>entire season. #NFL #COVID19 https://t.co/ReGpVPfx7Z</li>
##   <li>70 new cases and 8 new deaths in #India 
## 431 new cases and 18 new deaths in #Brazil
## 138 new cases and 1 new death in #Pakistan
## 1 new case in #Guatemala
## 634 new cases and 3 new deaths in #Canada
## 50 new cases and 5 new deaths in #Morocco
## 
## #CoronavirusOubreak #CoronaVillains https://t.co/ccuKBrNXE9</li>
##   <li>@jimmyfallon @chrissyteigen #RETWEEETME Forgive student loan debt for all healthcare professionals! #HealthcareHeroes #COVID19</li>
##   <li>Working from home or just isolating, when you run into issues with your #computer, #remote support can help resolve many issues #coronavirus #covid-19 #selfisolate #windows #apple GreyFusion IT Support is a #Oxfordshire #UK Based small business. https://t.co/EPA6UkREcn https://t.co/W1EPVOfXv8</li>
##   <li>SNMMI has developed a COVID-19 Resource Center to consolidate information and resources for<span class='match'> the </span>nuclear medicine community. Access via<span class='match'> the </span>SNMMI home page or at https://t.co/2qNtbU5J0a. https://t.co/njs9CuOYUD</li>
##   <li>Apple launches COVID-19 screening app and website - The Verge https://t.co/IRfiMTWZKW</li>
##   <li>@allinwithchris @chrislhayes @11thHour @maddow @AC360 @andersoncooper @ChrisCuomo @donlemon @GovPritzker Someone talk about<span class='match'> the </span>fact that less than 16,000 people have been tested for Covid-19 in IL, a state with 12 million. @GovPritzker is doing his best but we need more TESTS</li>
##   <li><U+0001F1E8><U+0001F1F3><U+0001F1F5><U+0001F1F0> Eight Chinese doctors who are specialists in coronavirus are coming today on special flight in Pakistan https://t.co/640yjnHIlH #StopTheSpreadOfCorona 
## #Covid_19</li>
##   <li>Mark Zuckerberg Commits $25 Million to Bill Gates' Research on COVID-19 Therapeutics https://t.co/Knvyc9mIcT - #engineering, #technology and #science from @IntEngineering</li>
##   <li>We’re offering support for our customers impacted by these challenging times. For current Genesis owners financing through Genesis Finance, you can defer your payments for up to three months if you’ve lost your job or suffer a medically-related hardship due to COVID-19. https://t.co/1bTszaAYx4</li>
##   <li>Wild. Check this out! #covid19 https://t.co/GRlBpa6KxQ</li>
##   <li>The U.S. Environmental Protection Agency no longer requires petrochemical and other companies in<span class='match'> the </span>U.S. to follow most of its laws. Learn what this means for #fenceline communities in<span class='match'> the </span>time of #coronavirus.  https://t.co/bqlMTfpp9P https://t.co/PnaIBdU1KC</li>
##   <li>#NEW Monmouth County accounts for two of<span class='match'> the </span>19 new deaths. Ocean County had one new death related to #COVID19. https://t.co/yXLOaUQwpG</li>
##   <li>Morning <U+0001F601>
## Today I will be tidying &amp; repairing my shed... <U+0001F600>
## What are your plans?
## #lockdown #coronacrisis #coronavirus #COVID19</li>
##   <li>Apple Launches COVID-19 Screening Website and App (Slashdot) https://t.co/0GKv1zodRb</li>
##   <li>Thank you #NHSheroes for all you are doing  #clapforourcarers #StayHomeSaveLives #COVID2019 #NHS #NHSThankYou #NHSCovidHeroes <U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F><U+2764><U+FE0F> https://t.co/DRpQlGApD4</li>
##   <li>Playin this board like a BOSS! <U+0001F4AA> 
## 
## #coronavirus #SocialDistanacing #Radio #Nirvana #FITZHAPPENS 
## 
## What’s your favorite NIRVANA Jam? https://t.co/CEsBrumSW3</li>
##   <li>@cornell_kate @BradLepp @MacLeodLisa @TAPA_TO 3/ Also a concern for small NFP arts orgs who have very little funding  and support to begin with: how do we make sure monetary help that may come down<span class='match'> the </span>line is not disproportionately allocated so that<span class='match'> the </span>small NFP arts orgs also have a fighting chance post-COVID-19?</li>
##   <li>FIFA and WHO have teamed up to combat<span class='match'> the </span>coronavirus (COVID-19) by launching a new awareness campaign led by world-renowned footballers, who are calling on all people around<span class='match'> the </span>world to follow five key steps to stop<span class='match'> the </span>spread of<span class='match'> the </span>disease. Link: https://t.co/tnaS5qTcg5</li>
##   <li>This is just a part of<span class='match'> the </span>queue for a local Sainsbury to do some grocery shopping... There are at least 30 sth people in<span class='match'> the </span>queue in a Friday evening, one hour before closing... #coronavirus #CoronaLockdown #coronauk https://t.co/ZhlHgWULS4</li>
##   <li>#IndiaUnited
## #COVID2019 
## 
## As a physician I can understand that medicines are usually bitter but needed for treatment.
## Same is true of is this lockdown; but we shall come out safer and stronger.
## #IndiaFightsCorona</li>
##   <li>I'm on a different plane of social distancing, I'm not even talking to real people. I talk to Animal Crossing villagers and Otome characters. #covid19 #QuarantineLife #AnimalCrossingNewHorizons #acnh #otome #mysticmessenger #SocialDistanacing</li>
##   <li>Stop<span class='match'> the </span>spread of COVID-19 in immigration detention centres #SaferAtHome - Sign<span class='match'> the </span>Petition! https://t.co/esG71n7agn via @ChangeAUS</li>
##   <li>"Many apparel, footwear and accessories retailers, already weakened by limited discretionary spending, may not survive this challenging period".
## @qut @QUT_AMPR #RetailWorkers
## #retail #COVID19
## https://t.co/vuVGAY1iiI</li>
##   <li>It's only a matter of time before<span class='match'> the </span>MLM recruiters start using COVID-19 as a marketing ploy.</li>
##   <li>@hypnodebi how sweet Debi!  Thank you very much :)  Stay strong &amp; healthy.  #coronavirus #COVID2019</li>
##   <li>Conor McGregor’s coach: COVID-19 restrictions won’t hamper Khabib, Ferguson <U+2013> if fight happens https://t.co/QfyocuTYJM</li>
##   <li>Immediate response by our honourable minister @SucharitaYSRCP 
## Regarding<span class='match'> the </span>cop who misused his power was suspended .
## 
## #CoronaLockdown #APFightsCorona #COVID2019 #StayHomeSaveLives https://t.co/UC9JlzjNjV https://t.co/Grjo9ol8yz</li>
##   <li>Another COVID-19-related closure for Canyon Lake-area parks.
## https://t.co/55JkfRyfHH</li>
##   <li>WHO is asking 18 months for preparation of vaccine of #Chinesevirus19, by<span class='match'> the </span>time it would be ready, China would launch advance version of virus #Pro Covid 19.</li>
##   <li>.@realDonaldTrump really is a record setter. 1. He let #COVID<U+30FC>19 spread unabated 2. He crashed<span class='match'> the </span>mkt. w/no response 3. He crashes economy w/his late state of emergency 4. He breaks<span class='match'> the </span>Fed bank w/a “bail-out” 5. Now he’s pulling it all back &amp; he’s gonna kill more people!</li>
##   <li>#COVID2019 
## #PelosiPork is to find political promises that<span class='match'> the </span>DEMOCRATS made. It's reverse fundraising. "I give you money than your organization gives DONATIONS to<span class='match'> the </span>DNC"
## #Trump2020NowMoreThanEver 
## #WakeUpAmerica https://t.co/1NqIl7pAMC</li>
##   <li>As communicators, we have<span class='match'> the </span>power to help. Read more on how PR professionals can help inform during COVID-19 from PRSA's blog: https://t.co/nSElXzXHA6 #PRsay #PRSA https://t.co/Qbb38zTVa8</li>
##   <li>@aimim_national @asadowaisi
## AIMIM MLA Mufti Mohammad.
## FUCK you asshole, bastard get him injected with COVID-19....no doctors should treat him.....</li>
##   <li>The latest #sask numbers of confirmed #covid19 cases. #thelatestbuzz #covid19Canada #COVID19SK #COVID19Sask https://t.co/GlolE88qwA</li>
##   <li>Great to hear everyone clapping on<span class='match'> the </span>balconies atm .....<span class='match'> the </span>least we can do! Remember  #StayHomeSaveLives #COVID2019 <U+0001F44F><U+0001F44F><U+0001F44F><U+0001F64F></li>
##   <li>@realDonaldTrump How many? #coronavirus</li>
##   <li>We know y’all bored #coronavirus #StayHomeDallas  https://t.co/nkkNLk2dmQ</li>
##   <li>First time I’ve seen emergency alerts used for public health purposes #COVID19 https://t.co/cdwhHvinQm</li>
##   <li>@SafaricomPLC At this age and time i expected safaricom to be out offering solutions to this thing covid 19
## Stop kutunyanganya tu yet you don't give back to<span class='match'> the </span>community</li>
##   <li>@BethRigby Beth, I have desperately tried to get government/NHS leadership to look at a new test for Covid-19, proven in Lab 10 years research. Simple swab results in 5 mins. Please help connect me with right person. Another day lost, more deaths. Thank you. Paul Evans.</li>
##   <li>To continue to build and engage community,<span class='match'> the </span>Riversdale House Museum has transformed its preservation garden into a “Victory” Garden where our gardener, Amy Winkler, leaves bits of herbs for patrons to pick up and enjoy. 
## 
## History meets Health and Wellness and beats Covid 19! https://t.co/3cIIQ0mHH6</li>
##   <li>NY hospital nurse: “Patients stream in with non-stop coughing, sweaty, fever &amp; fear in their eyes." I haven't slept because my mind won't shut off. I cried as I peeled off<span class='match'> the </span>PPE, sweaty w/ mask indentations. I cried<span class='match'> the </span>entire ride home.” #coronavirus  https://t.co/OMYpiRFi05</li>
##   <li>In<span class='match'> the </span>very same @nytimes article saying that<span class='match'> the </span>US is now number one in confirmed #coronavirus cases, this is a direct quote:
## 
## "the American medical system is unsurpassed and its public health system has a reputation as one of<span class='match'> the </span>finest in<span class='match'> the </span>world". What?! <U+0001F914><U+0001F615><U+0001F926></li>
##   <li>#FromTheRight: 'Who's<span class='match'> the </span>sh*thole country now?': Journalist mocks US as COVID-19 infections rise | Reporting by @theblaze 
## 
## #MediaBias #MediaWatch #Coronavirus
## 
## https://t.co/GvLQdbHXqj</li>
##   <li>@paulkrugman What's really strange is that neither climate change or COVID-19 have anything at all to do with politics. Politicizing them is an artificial overlay by people who are afraid that either or both of those things could cost them money. Which is inhumane, criminal and short-sighted.</li>
##   <li>What if #indyref had gone differently... would Scotland be dealing with #coronavirus better as an independent country? 
## 
## No agenda here, just interested in what people think...</li>
##   <li>This is a fantastic resource created by fellow @bowdoinalumni #polarbear @deray <U+2764><U+FE0F> Thank you for all that you do!! #COVID2019 #FlattenTheCurve #WhileAtHome https://t.co/xgb5YPviuW</li>
##   <li>From everyone at IDS, a sincere thank you to first responders, medical workers, and all those working to fight COVID-19. We commend you for your tireless care and commitment during these difficult times.  
## #healthcareappreciation #covid19 https://t.co/A8N3x8kCTv</li>
##   <li>So what happens once isolated due to Covid19 in #Zambia? Do you get access to TV, Radio  or Phone to keep yourself preoccupied with something while adhering to<span class='match'> the </span>#COVID19 terms???  #ZedTwitter</li>
##   <li>Breaking #coronavirus
## Italy coronavirus deaths rise by 919, highest daily tally since... https://t.co/2PkQXNGy7P via @MailOnline</li>
##   <li>@anyway223 @LeeHolly81 @realDonaldTrump @WhiteHouse But people who didn’t know they had Covid-19 would have spread it anyways while they were at work, at<span class='match'> the </span>gym, and/or shopping. Doesn’t that lead to<span class='match'> the </span>media informing<span class='match'> the </span>American public about<span class='match'> the </span>virus as legitimate?</li>
##   <li>Despite this covid-19 I still have to take<span class='match'> the </span>written test for my license tmrrw. The audacity <U+0001F612><U+0001F644></li>
##   <li>@KhalidHabash Let’s hope that we’ll see our country invests in such an important industry. Just imagine how much money Gilead will get if it manages to come up with a medicine or vaccine for covid-19.</li>
##   <li>$XERS - Xeris Pharma cuts Gvoke copay amid Covid-19 https://t.co/Zfd448J1qn</li>
##   <li>@drewgel_ @tribelaw Exactly what’s going on in Arizona. We’re not testing cause governor wants to keep numbers down to keep economy moving. 
## 
## #DollarsOverLives
## 
## https://t.co/v198qVxZpV</li>
##   <li>WOW just sickening for profit healthcare at work. Ppl dying unnecessarily is BY DESIGN not an unfortunate by-product of our heartless #Epic fail healthcare system #facepalm #COVID19 #coronavirus it’s not #SocialismKills it’s #CapitalismKills https://t.co/XkgFZstT5g</li>
##   <li>@NTarnopolsky 
## @moutet 
## Just in case you missed Theo's call.
## Incredibly powerful
## #coronavirus https://t.co/7K4F3xXnOg</li>
##   <li>Oh NDC COVID 19 team,is dis all you can do..... https://t.co/gQpbuOL4jf</li>
##   <li>Remember when Trump said COVID-19 was under control? In what way is<span class='match'> the </span>most positive cases in<span class='match'> the </span>world under control?</li>
##   <li>Number of Alachua County COVID-19 cases rises to 49; UF cases at 20 https://t.co/7u2gVocKUY via @TheAlligator</li>
##   <li>I think<span class='match'> the </span>new most searched word on @Google will be #coronavirus” this year!</li>
##   <li>*All Governors,*
## *Senators,*
## *Reps or*
## *Ministers etc who have contacted covid-19 should be treated in his or her State Hospitals, in order to enjoy<span class='match'> the </span>benefits of their GOOD GOVERNANCE.*</li>
##   <li>@kazweida I’m starting to believe common sense was<span class='match'> the </span>1st casualty of #COVID19</li>
##   <li>Lawyer friends and others who have been looking for advice from<span class='match'> the </span>Employments Standards Branch on whether employers can temporarily lay off workers in British Columbia due to COVID-19, your search is over. https://t.co/CHLSdKSUmN @fortelawyer @Kirsten_Hume</li>
##   <li>I think #Covid_19 has shown us that congested urban living reliant on public transportation is not America’s future. Oh, and straws will be making a come back, just watch. #coronavirus #CoronavirusLockdown #CoronaVirusChallenge #COVID19 #COVIDIDIOTS</li>
##   <li>I can’t wait for<span class='match'> the </span>day when no one ever has to hear<span class='match'> the </span>word #COVID19 AGAIN</li>
##   <li>Just a reminder, we're still operating business as usual, just not face-to-face. We are still keeping Social Distance and Working Remotely, For Now | Hettler Insurance Agency... https://t.co/2IWbADTZRJ #getbettertogether #factsnotfear #covid19 #coronavirus #hettlerinsurancedotcom</li>
##   <li>Join us on March 31st to learn how you can do your business as usual during #COVID19. We have a complete survival guide for this challenging time. https://t.co/jjasjfVCHm</li>
##   <li>Thank You <U+0001F49A> to all<span class='match'> the </span>frontline workers around<span class='match'> the </span>country <U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB><U+0001F44F><U+0001F3FB> 
## 
## Lets all play our part by #SocialDistanacing 
## 
## #ClapForOurCarers 
## #FrontLineHeroes
## #ApplaudTheFrontLineWorkers 
## #COVID2019
## @roinnslainte @DttasIrl https://t.co/60pAgyLGho</li>
##   <li>The #childcare issue during<span class='match'> the </span>#COVID19NC pandemic is very tricky, especially for first responders and medical personnel. 
## 
## #ncpol #nchealth #nced #CoronavirusNC 
## https://t.co/IFoom0KAj8</li>
##   <li>Thanks to @TheIABM for a great virtual conference this evening <U+0001F44F> lots of great speakers “How Coronavirus is impacting<span class='match'> the </span>media industry" #Covid19 #mediaindustry #MediaTech #Media #OTT #SvOD #Content</li>
##   <li>.@RepKenMarchant Please vote YES current COVID-19 package <U+2013> it extends<span class='match'> the </span>#MFP program, reimburses<span class='match'> the </span>time of community support staff during individuals' hospital stays &amp; allows disability providers to receive emergency small business loans!</li>
##   <li>Just in:
## 
## Health minister Zweli Mkhize reveals that<span class='match'> the </span>tests of<span class='match'> the </span>28-year old woman who died this morning came back negative for coronavirus, meaning there is one fatality due to Covid-19 in SA. https://t.co/7RLkl39eOQ</li>
##   <li>And what about @DMcIntyreWWE, @Akam_WWE, @Rezar_WWE, @WWE_MandyRose, @Erik_WWE, @Ivar_WWE, etc.? It seems that #postponewrestlemania is most likely to avoid<span class='match'> the </span>#coronavirus. They decided to #StayHomeSaveLives. https://t.co/52qwYBXajB</li>
##   <li>My boyfriend's great aunt (in Italy) just passed away due to COVID-19. Although he didn't talk to her regularly, he says he'll always remember how she made<span class='match'> the </span>best panzerotti. If you can, please spare a thought for his family.</li>
##   <li><U+2066>@ClevelandMag<U+2069> asked me about how I’m transitioning into e-learning. Fellow teachers, can you relate? Article by: <U+2066>@DillStew<U+2069> #edchat #teachertoteacher @teacher2teacher #COVID19 #coronateacher  https://t.co/M39uq8BTPx</li>
##   <li>So we had our GCSE group chat... anyone up for a lockdown group chat? Send me your snaps I’m hella bored #covid19 #coronavirus #lockdown</li>
##   <li>#IndiaFightsCorona Will we be able to break<span class='match'> the </span>Chain???  Enemy of<span class='match'> the </span>Nation, anyone defying #Lockdown21 . #COVID19 https://t.co/Rxf2H4GvmX</li>
##   <li>@TerrySerio Mentioning ad agencies from<span class='match'> the </span>80s made me think of Siimon Reynolds and his 80s Grim Reaper AIDS ad.
## 
## So, I googled him &amp; turns out he thinks #ScottyFomMarketing's ad campaigns for coronavirus are pretty lame
## 
## Has anyone failed upwards as hard as ScoMo?
## https://t.co/cEUdOKwEA0</li>
##   <li>The ‘Limerick COVID-19 Community Response’ will see a coordinated centre in place at<span class='match'> the </span>Limerick GAA headquarters at Castletroy. @LimerickCLG @LimerickCouncil @gardainfo
## @GardaTraffic
## https://t.co/ClftlLiWj3</li>
##   <li>Sometimes I go over<span class='match'> the </span>tweets from very smart and well-recognized specialists in<span class='match'> the </span>field and I recall early in March some mocking and thinking that people are over reacting to #COVID19 and calling it “flu-like” with lower mortality than influenza.</li>
##   <li>What’s up, #Lebanon?  Well, there’s one-of-a-kind perfect storm <U+2014> A triple threat:
## Corruption is #endemic <U+0001F62B>;<span class='match'> the </span>financial crisis is now an #epidemic <U+0001F616>; and #coronavirus is #pandemic <U+0001F637>  #COVID19. We endure and we pray. @AUB_Lebanon @AUBMC_Official @AUBAlumni #social_distancing https://t.co/azLk7YezL2</li>
##   <li>End of Jan, @realDonaldTrump closed all flights coming from China to slow<span class='match'> the </span>#COVID19 spread in<span class='match'> the </span>US.
## 
## Feb 2nd, NYC Health Comm, Dr. Barbot says chances of people getting virus is low &amp; encourages NYers to go out &amp; ride bus/subway &amp; go to parade.
## 
## #DemocratsLiePeopleDie https://t.co/G9WT5lWCWB</li>
##   <li>To everyone pointing out how many USians die from other things to downplay<span class='match'> the </span>#COVID19 threat:
## 
## 1. Yes, we should do more to limit deaths from cars, guns, smoking, junk food, seasonal flu, etc.
## 
## 2. Those deaths don't grow *exponentially* from inaction. It's not<span class='match'> the </span>same. At all.</li>
##   <li>@ikaveri No matter how many of them have shook hands with @BorisJohnson, their is absolutely no panic. On<span class='match'> the </span>other hand, Indian authorities in Punjab quarantine around 40,000 residents from 20 villages following Covid-19 outbreak linked to just one man ‘Giani Jagdev Singh’. Fools</li>
##   <li>Countless Americans will die because of @realDonaldTrump’s incompetence.
## 
## Trump wants to erase<span class='match'> the </span>memory of him downplaying<span class='match'> the </span>#coronavirus. 
## 
## Don’t let him.
## 
## #25theAmendmentNow https://t.co/nRQPvcnNno</li>
##   <li>@greatbong https://t.co/MAVZYJGKHn
## 
## Published in TOI, different strokes for diff folks.</li>
##   <li>Don't be a #COVIDIDIOT
## (Tho I've read it's probably thanks to our own covididiot, #rudygobert that US didn't have a sports crowd-related explosive #coronavirus outbreak<span class='match'> the </span>way<span class='match'> the </span>unfortunate #Italians did, so there's that<U+0001F644>) https://t.co/5ycbagI90t</li>
##   <li>@wikileaks #JulianAssange must be released NOW! COVID-19 targets people with weaker immune systems or preexisting medical conditions! Assange's immune system is already on<span class='match'> the </span>verge of collapse &amp; he has a CHRONIC LUNG CONDITION! 
## #COVID2019
## https://t.co/ihcVZYvPs8</li>
##   <li>And within this systemic deficiencies in #SDG-mandated #healthcare quality, lies<span class='match'> the </span>vast opportunity for #entrepreneurs to create impactful solutions against #COVID19 ...especially under #CoronaLockdown &amp; #Quarantine 
## 
## Click to read more: https://t.co/E5jzDD4M32</li>
##   <li>Spain records 769 deaths in 24 hours to take their toll of fatalities to 4,858 #Coronavirus https://t.co/oSHfleMmiu https://t.co/Q1zqJQDBQq</li>
##   <li>WARZONE TOP 1 (FEAT RICKY - THE ONE) #MW @Activision @InfinityWard #coronavirus #TOP1 #COD #Warzone #Walkthrough
## https://t.co/UKj6n2MtOl</li>
##   <li>@laurenTarshis Your future book on COVID-19 is writing itself.  #historyunfolding</li>
##   <li>Thank you #COVID19 
## #LockdownHouseParty https://t.co/LfeDQLAGlp</li>
##   <li>#COVID19 shouldn't stop our children from learning. So, here's<span class='match'> the </span>chance to continue learning from your radio... https://t.co/hpk37erD5v</li>
##   <li>UK people just put<span class='match'> the </span>Great back into Great Britain. Quite incredile support for our AMAZING NHS STAFF. Proud to be British and thankful for all those who continue to risk their own lives to help us beat COVID-19. <U+0001F1EC><U+0001F1E7><U+0001F44F><U+0001F64F><U+0001F4AA> #stayhome #doyourbit #Noneofusareasstrongasallofus https://t.co/QuN7UdtCXo</li>
##   <li>I know a symptom of COVID-19 is shortness of breath, but I got big ass yitties that already make it difficult for me to breath and my anxiety telling me that I have COVID-19 isn’t helping with<span class='match'> the </span>whole breathing thing either.</li>
##   <li>The #CoronaPandemic has shown<span class='match'> the </span>serious problems inherent in our economy. It’s hard to make ends meet normally and this situation is just making it worse.
## 
## Demand that companies take action to protect workers from #COVID19! https://t.co/a12E7tJCMq</li>
##   <li>Under-reporting #COVID<U+30FC>19 deaths is irresponsible and dangerous. Not testing people for<span class='match'> the </span>#coronavirus is also irresponsible/dangerous. This administration is lying to us! 
## 
## Doctors And Nurses Say We're Under Reporting COVID-19 Deaths In The US  https://t.co/HJsZUtUCzx</li>
##   <li>@NotKennyRogers Chuck was exposed to COVID-19. The virus is now self -quarantined for 14 days.</li>
##   <li>Talking to children about COVID 19 #edchat https://t.co/eHlWZXIN6z</li>
##   <li>Bethesda Rehab Hospital in St. Paul is converted into<span class='match'> the </span>metro’s first COVID-19 crisis hospital. https://t.co/IMkRin5bqU</li>
##   <li>@CDCgov  are there any safety measures for essential infrastructure workers who have gain access to home and  businesses of all kind in order to curve<span class='match'> the </span>spread or contraction of COVID-19?</li>
##   <li>damn sylvia has covid-19 everyone say goodbye :( https://t.co/VccAUYBLDD</li>
##   <li>UPDATE: 92 confirmed cases on<span class='match'> the </span>Navajo reservation.
## 
## Webpage updated interactive graph and map:
## 
## (1) https://t.co/QzcGjJzPtX
##  
## (2) https://t.co/A4HNnTTuSA https://t.co/ONBYY4QOmy</li>
##   <li>Day 8 of being off work due to #COVID19..... 
## 
## Thinking about doing a TikTok dance <U+0001F926><U+0001F3FC><U+200D>♀<U+FE0F></li>
##   <li>So many teams playing their part to protect us all @newcastlehosps thanks @carolinedocNHS &amp; comms team, so much progress &amp; more ideas in progress <U+0001F44D><U+0001F3FD> #COVID19 https://t.co/xmj4mELsvl</li>
##   <li>Whole @AlderHey family pitching in to join<span class='match'> the </span>battle against #COVID2019. #NHSheroes https://t.co/gTBfc20O08</li>
##   <li>"I believe it was a reckless decision to bring students back on campus at this time. It is unfortunate that President Falwell chose to not keep his word to us," Lynchburg Mayor Treney Tweedy says. https://t.co/64G99b9NPd @smartin_write #Coronavirus #JerryFalwellJr</li>
##   <li>I keep seeing gays posting heartfealt messages about<span class='match'> the </span>people affected by<span class='match'> the </span>COVID-19 then right after posting some humorous shit about<span class='match'> the </span>virus and saying they cant wait for this quarantine to be over so they can get fucked up. How is that even right?</li>
##   <li>@Michael_Corlee Please show managers my tweet - and tell them we think some companies are acting like ambulance chasers or vultures. The #COVID19 situation in schools is demanding a lot from leadership. Want to really help? Go volunteer at a local district to hand out meals.</li>
##   <li>All international passenger aircrafts to/from #India are suspended till 1830 hrs GMT April 14, 2020. Please DO NOT make any bookings for travel before checking for updates on travel restrictions to India. 
## 
## #coronavirus #COVID19 #coronavirusindia #CoronaVirusDE #CoronaVirusUpdate https://t.co/SRDieG3L5v</li>
##   <li>You, a pleb: coronavirus
## 
## Me, an intellectual: COVID-19 https://t.co/9kqiaX7UlQ</li>
##   <li>Proud to work for Google. Google is committing $800M+ in new #COVID19 response efforts https://t.co/KMbN0X7eP5</li>
##   <li>Latest updates on COVID-19 (Coronavirus) https://t.co/HlFrcxFOeL</li>
##   <li>“The @Ravens and The Stephen and Renee Bisciotti Foundation have combined to donate $1 million to support four non-profit organizations in their efforts to combat<span class='match'> the </span>#COVID19 public health crisis.” https://t.co/6UU1oqBcWW #NFL https://t.co/P4JBUHIgl9</li>
##   <li>@The_PraveenArya Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>How does<span class='match'> the </span>Israeli-Egyptian siege of Gaza affect<span class='match'> the </span>fight against coronavirus. #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/0lNZN3d4m2</li>
##   <li>Ah yeah, this random homosexual telling me to shut up because I am literally trying to encourage gay men not to hook up with random people off Grindr in<span class='match'> the </span>hopes of preventing<span class='match'> the </span>further spread of COVID-19. I am truly<span class='match'> the </span>worst!!!! https://t.co/QRHgbzJxWc</li>
##   <li>Someone please tell me #coronavirus was a just an #AprilFools prank.</li>
##   <li>"It is important that banks and supervisors are able to commit their full resources to respond to<span class='match'> the </span>impact of COVID-19," said<span class='match'> the </span>chair of<span class='match'> the </span>GHOS and governor of<span class='match'> the </span>Bank of France
## 
## #baseliii #deferred #COVID19 
## 
## https://t.co/c3itvdm9Fv</li>
##   <li>@DigitalFawad "How hackers are using #Coronavirus fears"
## Any news on governments an bigpharma on this topic?</li>
##   <li>Do not pay tithes and offerings to any pastor who cannot heal a #COVID-19 patient.</li>
##   <li>Last year... around this time...we were so much hyped about #Endgame... This year...we are looking for #Avengers 
## Never knew that #Thanos will come in form of #Coronavirus
## #CoronavirusOutbreak #AvengersEndgame  #FightAgainstCoronavirus</li>
##   <li>It also takes into account<span class='match'> the </span>current trend in<span class='match'> the </span>spread of COVID-19 in Ghana since<span class='match'> the </span>suspension of<span class='match'> the </span>mass registration exercise on Saturday, 21st March 2020, following<span class='match'> the </span>service on<span class='match'> the </span>NIA of an interlocutory injunction application.</li>
##   <li>Check out these top 5 tips for securely working from home. #remotework #COVID19 https://t.co/KO5D2NTN2w</li>
##   <li>We are fighting two pandemics 
## Covid 19 and Stupidity....... https://t.co/0cQscAJmVd</li>
##   <li>@RudyGiuliani @RealCandaceO Do you need to get #COVID19 mayor in order to have a smidgen of empathy? Terrible comment on ur character if so. 
## 2nd point.. this is about curbing a domino effect that will impact every American directly if not taken deadly serious - so please rethink ur callousness 
## #COVID2019</li>
##   <li>Welp... My shorty’s mom and grandma have been hospitalized for pneumonia and covid-19...</li>
##   <li>re-testing<span class='match'> the </span>lows or even slightly lower.
## 
## https://t.co/IV1eVllDfi
## 
## #covid19 #health #coronavirusimpact
## #capitalpreservation #tradingplan #marketcorrection #paultudorjones #PTJ #marketwizard #marketopportunity</li>
##   <li>@disclosetv What do you expect when<span class='match'> the </span>liberal MSM US media has lied and created false narratives about nearly EVERYTHING.  When they suddenly went hysteric about #COVID19, many didn't believe them because they had lost ALL credibility.  Terribly sad. https://t.co/RDGw7mt92j</li>
##   <li>Where is The Great America? U.S. BANK MORTGAGE IS OFFERING FORBEARANCE TO THIER CUSTOMERS AS IF THATS HELPING, HOW WOULD A FAMILY COME UP WITH 6K in 90 DAYS ALL AT ONCE IF THEY BEEN OUT OF WORK. #USBANK #COVID19 #TRUMP</li>
##   <li>Stay safe and healthy everyone #COVID19 #handwashing #SocialDistanacing</li>
##   <li>I appriciate<span class='match'> the </span>measures taken by<span class='match'> the </span>government in this covid-19 crisis but when entire country is lockdown<span class='match'> the </span>street animals aren't, what if they are infected like street dogs, they sneeze out in surrounding. Can The measures be taken to take care of this thing? 
## @mygovindia</li>
##   <li>The 1.6 million migrant workers in<span class='match'> the </span>United States employed through temporary work visa programs form part of our communities and are at<span class='match'> the </span>front lines of<span class='match'> the </span>U.S. Covid-19 response.  They also lack many protections. @MigrationthtWks https://t.co/znDsxXTGlW</li>
##   <li>Appalled that<span class='match'> the </span>Ed dept hadn’t done something about teachers at higher risk of Covid-19, and yes, I really shouldn’t be finishing out<span class='match'> the </span>term.  Leaving work this afternoon, knowing I was (hopefully) going to greatly lower my chances of getting sick was *such* a weight</li>
##   <li>This advocacy tries to enlighten<span class='match'> the </span>public about how to stay safe as<span class='match'> the </span>#covid19 pandemic continues to spread across<span class='match'> the </span>World.Nigeria is not left out...be safe, #stopthespread 
## 
## https://t.co/GNAuMvMMz6</li>
##   <li>This is what #COVID19 has done to us...<U+0001F494> https://t.co/xIaqyacpRX</li>
##   <li>Trump demonized China over COVID-19. This stoked concern that China would cut off hospital supply exports.
## 
## EU has its own China worries, and applied export restrictions.
## 
## New customs data: Chinese PPE exports did not fall as much as feared.
## 
## My latest 1/
## https://t.co/hAR7h3w3rf</li>
##   <li>#LIVE : #Texas governor <U+2066>@GregAbbott_TX<U+2069> gives #coronavirus #update -- March 26, 2020
## https://t.co/GiyOZgli3q</li>
##   <li>7 Scientifically Proven Benefits Of Gratitude That Will Motivate You To Give Thanks Year-Round https://t.co/zKSPaKNbHj
## 
## #sales #salesleadership #salespeople #salesmotivation #salescoach #salestraining #positive #leadership #newnormal #podcast #motivation #covid19 #coronavirus https://t.co/zSR4enHGKn</li>
##   <li>Here's what this dude said about R. Kelly: 
## 
## "It’s covid -19, he ain’t gone catch it.. Let that jawn been covid -14 then he got a argument"</li>
##   <li>Coronavirus: Disabled woman fears benefits could be stripped while she fights COVID-19 <U+2013> Well, they sanctioned my daughter for not attending a face-to-face appointment at<span class='match'> the </span>jobcentre AFTER her doc had told her to self-iso...Felixstowe JCP was open when  https://t.co/GaPPOxXYOq</li>
##   <li>@Klockitdown @kathygriffin @latimes @TheCDZ As an ICU nurse, I find your comment despicable but considering you voted for Trump I would expect nothing less.  I'd be very careful with your pronouncements COVID-19 is an equal opportunity it will come for you no matter who you are or who you voted for. GOD doesn't like ugly!!</li>
##   <li>To show how things change in<span class='match'> the </span>blink of an eye, Hong Kong and Italy had<span class='match'> the </span>highest life expectancies on Earth. #CoronaVirus sadly changed that in an instant. Life is fragile. We are learning that God still reigns supreme in<span class='match'> the </span>affairs of man!
## 
## #FreeLeahSharibu #RenosNuggets</li>
##   <li>EVERYBODY MATTERS #COVID19</li>
##   <li>Taiwan, Hong Kong, and Singapore: Success Stories in Fight Against COVID-19 https://t.co/9EtXe0Al9Y</li>
##   <li>Some #foreignmissions encourage their #citizens to leave #Bangladesh https://t.co/7sbye09KMq
## #Coronavirus #BritishHighCommission #UnitedStates #Britain #UnitedKingdom</li>
##   <li>Important reminder on #FundamentalRights and #borders amidst #COVID-19 border closures in #Europe by @coe and @EURightsAgency https://t.co/sfbSdSbCqm</li>
##   <li>Can a Landlord Make You Disclose Coronavirus Status? https://t.co/9KSmDefnaS</li>
##   <li>What a year this week has been. The KILI Carrier team loves medical professionals, and this week we want to bring attention to<span class='match'> the </span>incredible individuals working in hospitals every day amidst a global pandemic. Thank you. You're saving<span class='match'> the </span>world #COVID19 https://t.co/xhwskZsp5T</li>
##   <li>Really interesting article on<span class='match'> the </span>@SkySportsNews app tonight. 
## 'Atalanta-Valencia clash a 'biological bomb'' The most #COVID2019 outbreak areas in Italy and Spain all connected to one football match. #StayHomeSaveLives #Social_Distancing #ProtectTheNHS
## https://t.co/9RUWrH1ZW0</li>
##   <li>Coronavirus Tweets from UK authorities #COVID19 https://t.co/MV6C87mmbk</li>
##   <li>I do not want to downplay any deaths from<span class='match'> the </span>covid-19 but someone needs to step up and look at<span class='match'> the </span>actual numbers.  The death rate in<span class='match'> the </span>US is currently at 1.5% of<span class='match'> the </span>known cases.  At this rate why are we driving<span class='match'> the </span>country crazy.  The flu did more and no one had a stay home</li>
##   <li>A South Korean Covid-19 Czar Has Some Advice for Trump https://t.co/tTGtdJCwpB</li>
##   <li>This Friday’s COVID-19 quarantine survival pack:
## - Game of Thrones <U+2705>
## - @beerdbrewing’s Dogs &amp; Boats<U+2705>
## - Bottle cap coaster <U+2705>
## <U+2022>
## <U+2022>
## <U+2022>
## 
## #craftbeer #beer #beerstagram #instabeer #beerlover #beergeek #drinklocal #ipa… https://t.co/JhGTH2VaA2</li>
##   <li>How not to feel like a lousy parent during COVID-19 <U+0001F44F><U+0001F3FD><U+0001F44F><U+0001F3FD>  from @alysonschafer on @healthing_ca  https://t.co/tQja0OxQ5X</li>
##   <li>I applauded our @NHSuk Thankyou to all of you. You are<span class='match'> the </span>real heroes. 
## @piersmorgan @itvnews @BBCNews #Applaudingnhs #NHS #COVID2019 #Spidermanapplaudsnhs https://t.co/Fw9xE4RXkK</li>
##   <li>One of a huge series of tweets sharing clips of Movies you might enjoy whilst we’re all self-isolating.
## 
## BEN HUR (1959)
## 
## #staypositive #film #COVID_19uk #coronaUK #staypositive #coronavirus #coronavirus #Covid_19 #selfisolation <U+0001F3AC>
## 
##  https://t.co/07c6M1U1Mb</li>
##   <li>Via hopGram: from BeerBusGuide "Day two of lockdown and we've decided to up<span class='match'> the </span>strength of medication #covid19" #hopGram @hop_gram https://t.co/O7e12Jt8Zf</li>
##   <li>Medscape: BREAKING: UK health secretary MattHancock also tests positive for #coronavirus along with Prime Minister BorisJohnson.  https://t.co/OQokWAyMcm https://t.co/k6cl9C8itP</li>
##   <li>A sexual assault allegation against Joe Biden has ignited a firestorm of controversy https://t.co/RcHookxHMS #COVID19 #timstwitterlisteningparty #CoronaLockdown #AnimalCrossingNewHorizons #ImAwakeThisLateBecause #FridayMotivation #Qanon</li>
##   <li>#Coronavirus Update - #Plaquenil Shortages, #IVIG and #ibuprofen
## #Myositis #autoimmune #rheumatology #dermatology #Neurology 
## 
## https://t.co/jgKHLh9FzP https://t.co/P2cuqeJFmP</li>
##   <li>Tesla Donates 500+ sets of PPE Masks &amp; Gowns To Denver Hospital.  Thank you <U+2066>@elonmusk<U+2069>!  https://t.co/4yNxEk8WOS</li>
##   <li>@bosswala Covid-19
## 
## https://t.co/yDAQQpy6YG</li>
##   <li>@NCDCgov @EpidAlert @drasatrust @nighealthwatch @FMICNigeria @Fmohnigeria @LSMOH @NOA_Nigeria @sydney_talker said he has shown some of<span class='match'> the </span>symptoms of #COVID19 and wants to be tested. Don't deny him please.
## 
## Test him!</li>
##   <li>Hey @CNN @MSNBC @FoxNews any of you care to even mention this ? The UK has DOWNGRADED COVID-19 and just not a peep in<span class='match'> the </span>American news media. Guess just blindly pushing<span class='match'> the </span>apocalypse narrative is better for ratings/clicks. https://t.co/b9LoeIe7qq</li>
##   <li>Silver lining... #chicago #COVID19 https://t.co/X1WwwvVIe6</li>
##   <li>#bbcnews #C4News Sir James Dyson offering to make ventilators to help with ICU treatment for #coronavirusuk #covid19UK in<span class='match'> the </span>NHS is like Elon Musk offering to design a submarine to help<span class='match'> the </span>NHS deal with #coronavirus</li>
##   <li>PAUSE FOR APPLAUSE <U+0001F44F>Show you care TONIGHT at 8pm &amp; give a big round of applause for<span class='match'> the </span>amazing work of our Frontline workers https://t.co/YDCAgkT5RO
## #Covid19 #CoronavirusIreland #ApplauseForMedicalWorkers #ClapForOurCarers</li>
##   <li>The next calamity <U+2013> Covid-19 could devastate poor countries https://t.co/DKdl6z7cVC</li>
##   <li>A letter to<span class='match'> the </span>UK from Italy: this is what we know about your future
## #coronavirus
## #CoronaLockdown
## #COVID19
## https://t.co/u58k3ExzkJ</li>
##   <li>COVID-19: Enugu govt closes all borders, markets as 2 cases confirmed - https://t.co/hFtBKMw6sH</li>
##   <li>AILA Asylum Committee vice chair  Lindsay Harris’ new post on Think Immigration describes<span class='match'> the </span>recent actions by<span class='match'> the </span>administration which will further harm asylum seekers amid<span class='match'> the </span>COVID-19 crisis, and urges action now https://t.co/eKLmlGx0oI
## 
## @AILANational @Prof_LMHarris #COVID19</li>
##   <li>Davido's fiancee chioma tested positive for  #COVID19  #StayAtHomeAndStaySafe https://t.co/4H2ze4qVAf</li>
##   <li>The #wellbeing of our students and staff is still<span class='match'> the </span>number one priority for all of us @DLDcollege during this #coronavirus crisis. Please continue to #BeKindAndStaySafe <U+2764><U+FE0F>@GoodSchoolsUK @BSAboarding @Alpha_PlusGroup @isaschools https://t.co/hD3vOJnVyJ</li>
##   <li>Today @GovEvers signed an Emergency Order that, among other things, laxes scope of practice regulations on physician assistants in<span class='match'> the </span>state. 
## 
## Read why PAs were calling for<span class='match'> the </span>emergency action to help respond to COVID-19: https://t.co/lGGu1rQhSe</li>
##   <li>Respiratory therapists go to school for this. A nurse can’t go face to face with a covid-19 patient and stick a tube down their throat. Unless they hire more RTs, more risks will arise by not having proper care for<span class='match'> the </span>employees.</li>
##   <li>Change out of scrubs at work. Change shoes before I get in<span class='match'> the </span>car. When I get home, scrubs and shoes go in garage. Scrubs go into a tub with disinfectant where pre-soak prior to washing machine. Coffee mug and food containers go in dishwasher immediately. #COVID19 #NurseTwitter https://t.co/Q9DfEfHvzm</li>
##   <li>Iowa announces 56 new COVID-19 cases https://t.co/X6zUAeqlwH</li>
##   <li>Xencor, Vir partner on #COVID19 antibodies research https://t.co/nupL1XdfAZ</li>
##   <li>#UAlberta is here for Edmonton and Alberta. The U of A provided housing for Fort McMurray when they needed it, and is providing help during<span class='match'> the </span>#COVID19 pandemic. #abpse https://t.co/DAb4n5enT3</li>
##   <li>We remain unwavering in our mission to improve<span class='match'> the </span>lives of individuals living with epilepsy. We want to assure<span class='match'> the </span>epilepsy community that NeuroPace will continue to work diligently to support health care providers and those living with<span class='match'> the </span>RNS System. https://t.co/qBVaFasfxP</li>
##   <li>Covit 19 is really starting to piss me off! Not<span class='match'> the </span>music, man...
## #coronavirus #COVID19 #Rammstein #TillLindemann https://t.co/jQLOSMoLlG</li>
##   <li>Rumour &amp; speculation can fuel anxiety.<U+00A0>Having access to quality, reliable information about<span class='match'> the </span>virus can help you<U+00A0>feel<U+00A0>more in control.<U+00A0>Websites like NHS https://t.co/vWnT6FIZuZ &amp; https://t.co/ZQSwnWicak https://t.co/lbFsklt3r4 are<span class='match'> the </span>most accurate and updated daily #covid_19uk https://t.co/8rFAo1JeHn</li>
##   <li>Haha<U+0001F602> what<U+0001F647> if we<U+0001F46B>... violated<U+0001F6AB>  COVID-19<U+0001F489><U+0001F9EC> social distancing<U+0001F46F>, lockdown<U+0001F512>, and quarantine<U+0001F517> procedures?  <U+0001F920><U+0001F60E>Haha just kidding... <U+0001F60B><U+0001F60B><U+0001F92A>
## 
## Unless? <U+0001F633><U+0001F633><U+0001F495><U+2763><U+FE0F><U+0001F498></li>
##   <li>Assalamualaikum. So due to covid 19, my team is doing 1F1H campaign to collect<span class='match'> the </span>donations to buy<span class='match'> the </span>handcream for<span class='match'> the </span>fronliners. Those who want to donate, only RM41/tube. Let's help<span class='match'> the </span>frontliners! https://t.co/y2S9kfeHTb</li>
##   <li>@bigricanman I've heard rumors people are putting down their animals because they can get covid-19, could you help me get<span class='match'> the </span>word out for people to stop it. If dogs and cats have had their shots, feline corona virus is one of them, for both dogs and cats. I have few followers. https://t.co/lOCDQnkC2F</li>
##   <li>@WAPFLondon @cabinetofficeuk @MattHancock @CabinetOffice Clearly based solely on mortality rates, but also note re-classification means "cases of COVID-19 are no longer managed by HCID treatment centres only." Because there aren't enough of those... If you get sick do make sure you let<span class='match'> the </span>doc you'll be fine without a ventilator.</li>
##   <li>Team Cohesio is here to help and support you and your team during this challenging time.
## 
## #CohesioGroup #COVID19 https://t.co/AIIkxDa96Y</li>
##   <li>Amid #COVID<U+30FC>19 #lockdown, people face hurdle crossing #AndhraPradesh-#Telangana border https://www.aninews.inundefined https://t.co/cGATq0YS8P</li>
##   <li>A recent @TheEconomist / @YouGov poll shows that 46% of U.S. voters expect<span class='match'> the </span>current situation with<span class='match'> the </span>#coronavirus #outbreak will go on for several months. See what other voters thoughts are on<span class='match'> the </span>#pandemic in today's @lunchtimepol: https://t.co/hzDn0bubI7 https://t.co/h1mMrHQP2E</li>
##   <li>it provides to small business owners- https://t.co/6r9UfFKkMY</li>
##   <li>COVID-19: Licensing: Frequently Asked Questions https://t.co/BWpwhochXG</li>
##   <li>#StopCoronaVirus
## Be informed
## 
## Prevention is better than cure. Stay clean and healthy.
## #Burundi
## #Covid_19 
## #COVID19 https://t.co/Cj3akSpOnw</li>
##   <li>@ngkhalela Please what is<span class='match'> the </span>latest from<span class='match'> the </span>rivers state governor on COVID 19 as we rely 92.3 for information</li>
##   <li>Governor Ige announces new developments in how<span class='match'> the </span>state is trying to limit COVID-19 from spreading
## https://t.co/dzYNzmyDdn Want The Answers To Stop Corona,Many Who Carry Corona Are Eviharette smokers Blowing their smoke n germs in<span class='match'> the </span>Air n You don’t wanna Confront n You gotta.</li>
##   <li>@mdubowitz Criminal regime has been looting Iran for forty-one years!
## #COVIDSanctionsLie #IslamicRepublicVirus #KhameneiVirus #COVID2019</li>
##   <li>@chrissyfarr Read this article @ https://t.co/Df1jeNKnEl I think it will help you. #StayHome #stuckathome #COVID2019</li>
##   <li>@gabrieloguda Seems to me like<span class='match'> the </span>Police are actually seeing<span class='match'> the </span>spread of Corona instead of ensuring a curfew to curb Covid-19</li>
##   <li>Morning world :) this video (https://t.co/C5TpLGBNcR) is just brilliant :) **Note** Don't listen round kids! lol #CoronaLockdown #COVID19 #CoronaVirus</li>
##   <li>On a day when<span class='match'> the </span>number of cases crossed 500,000 Italy's tally increased past<span class='match'> the </span>80,000 mark
## 
## Italy progression
## March 26: 80,539 cases
## March 20:  47,021 cases
## March 14:  21,157 cases
## March 8:     7,375 cases
## March 2:   2,036 cases
## February 25: 323 cases
## 
## #CoronaVirus #Italy</li>
##   <li>@w_terrence OK. Listen here MR. WILLIAMS. First,<span class='match'> the </span>reason why china came to eat bats, is because they didn't have enough food to eat back in<span class='match'> the </span>days. So it's a culture now. And i'm fine with covid-19 being called<span class='match'> the </span>chinese virus because you're right. It did come from china</li>
##   <li>To all members of @BAPS1953 Start a conversation about your experience of #COVID19 here https://t.co/T9PT3fhHbR #WereInThisTogether #SharedFacts #datacollection</li>
##   <li>Everyone moaning that<span class='match'> the </span>football season is over.  Just remember this you have a chance to play again in<span class='match'> the </span>new season others that have lost their lives to Coronavirus don’t #coronavirus #football #anotherchance</li>
##   <li>8 crew members on Air New Zealand test COVID-19 positive https://t.co/SsMezRvfMm https://t.co/HrFUDjZ2N2</li>
##   <li>@nistula @OlgaTellis I grew up watching my uncle giving turmeric water to chicks during bird flu attack. Only thing which saved his lot. Till more scientific solutions emerge for #Coronavirus , a good habit to continue &amp; share.</li>
##   <li>PSA Safe Grocery Shopping in COVID-19 Pandemic <U+2013> UPDATED!!! - YouTube https://t.co/qD7TJ2DCbV</li>
##   <li>If 2020 was a tats 
## 
## #COVID19 
## #lockdown 
## #21daysLockdownSA https://t.co/gmdX5X1Yac</li>
##   <li>Really strange times we are living right now. It tends to shed<span class='match'> the </span>bullshit in our lives and leave<span class='match'> the </span>truth of who we are and what we feel. Take care of each other.
## #covid_19 #2020 #humanity @ Louisville, Kentucky https://t.co/s6H9lcA6Of</li>
##   <li>NHS clap <U+0001F44F> so lovely. So proud to be part of such a phenomenal organisation. #nhs #nhsheroes #covid_19 #thankyou @ Bristol, United Kingdom https://t.co/ARrlK4gyCo</li>
##   <li>A message from Mobile, Alabama about #COVID19 and #ADOS https://t.co/ADDzkMF1R3</li>
##   <li>Lost all respect for #DrBirx now #Trump partisan.She just 1)ragged on NY #healthcare workers begging for supplies &amp; 2)said since NY hasn't used all its ventilators yet all is good. Maybe out silk dresses/scarves go see #Elmhurst &amp; #mtsinai (nurses in Hefty bags) NYC  #coronavirus</li>
##   <li>The Barn Theatre (@theBarnTheatre) is at risk of closure but is doing some amazing work in light of<span class='match'> the </span>COVID-19 crisis, including currently livestreaming a performance of Henry V online! Donate to<span class='match'> the </span>organisation here: https://t.co/rOJ1ZNu8wN #WorldTheatreDay #cirencester</li>
##   <li>Every day. Every day until this is over...#hunkerdown. #StayHome #Coronavirus https://t.co/jcOQJbQw2i</li>
##   <li>My COVID-19 journey so far  https://t.co/PtOlyMRDs0</li>
##   <li>China seems to have won its war against<span class='match'> the </span>#coronavirus . Amazingly,<span class='match'> the </span>total number of known active cases has already collapsed by 94% from a peak of ~58,000 recorded on Feb 17. Yesterday there were just 3460 cases left. https://t.co/IRngUBDmGS</li>
##   <li>I wish people were shouting USA USA USA not because<span class='match'> the </span>US tops<span class='match'> the </span>#coronavirus list or<span class='match'> the </span>#MassIncarceration list but because we finally joined<span class='match'> the </span>rest of<span class='match'> the </span>world and adopted #MedicareForAll https://t.co/PWPH9HV7Mn</li>
##   <li>Texas Roadhouse CEO and founder Kent Taylor will give up his pay for<span class='match'> the </span>rest of<span class='match'> the </span>year so that<span class='match'> the </span>money can go to “front-line workers” amid an industry crunch due to restrictions aimed at slowing<span class='match'> the </span>spread of COVID-19 #smallbu…https://t.co/j4HbjvmBWW https://t.co/JzUKWiDoHO</li>
##   <li>"I know my health conditions make contracting #COVID19 extremely dangerous for me, but I must work to pay<span class='match'> the </span>bills...Our country has forgotten about people like me. Or worse, they know we exist and choose to ignore us." -Christine Reynolds, @MissouriPPC #PoorPeoplesCampaign</li>
##   <li>@CFRAOttawa what a weird picture to use for your article in 2020. Showcasing<span class='match'> the </span>#blackberry Z10 &amp; Q10 from 2013 featuring<span class='match'> the </span>defunct BB10? Will a story about computers feature a commodore 64? It did catch my attention so maybe it was successful!
## 
## https://t.co/ZODXdCIdzq</li>
##   <li>Complex Event Analysis on latest NEWS: 
## 20200327 0901 PST 
## Top News Focus : 
## (coronavirus,covid-19,virus), (china,coronavirus,trump), (coronavirus,post-abc,trump)
## https://t.co/zZJa98cAj3</li>
##   <li>I don't fully understand @Amazon's #Coronavirus shipping prioritization. An ammo box (waterproof storage for junk in my jeep) will be here in two days, but my floss won't arrive for over a month... #merikuh</li>
##   <li>@tanamongeau freshly self employed mostly out of work bc of COVID-19 here so I get nothing from<span class='match'> the </span>British government during this time. No holiday pay and still awaiting my universal credit :(
## £AndraLeijon
## ily</li>
##   <li>@KTHopkins OmG you stupid women you are just trying to incite trouble and undermine<span class='match'> the </span>gov police Joe public  next ot will be fore service then you will turn on<span class='match'> the </span>NHS  just shut it you should promote #StayHomeSaveLives #StayAtHomeAndStaySafe #COVID19 or so you just think there no need</li>
##   <li>#USA #LosAngeles #Coronavirus
## 
## A US Navy hospital ship has arrived in<span class='match'> the </span>metropolis of Los Angeles.  The floating hospital "USNS Mercy" with its 1000 sick beds moored at<span class='match'> the </span>port of Los Angeles on Friday.  Coronavirus patients should not be treated on<span class='match'> the </span>272 meter long ship.</li>
##   <li>Invited Commentary: Neurologist on<span class='match'> the </span>frontline feels solidarity from Barcelonians - Neurology Blogs https://t.co/dxw2yQmSiv</li>
##   <li>.@DrRoyHerbstYale will co-moderate a #LungCancer town hall to support oncologists during<span class='match'> the </span>current #COVID19 pandemic. @Annechiangmd and Dr. KurtSchalper will join as panelists. @SmilowCancer @YaleMed @YNHH For more info: https://t.co/Y6UWhx4hqc https://t.co/1A2v7V3wTz</li>
##   <li>@KTRTRS
## Good Morning Sir,
## This year almost all ULBs Property Tax collection is effected due to Elections, Pattana Pragathi and now Covid-19.
## To pay salaries, cc charges from general fund becomes difficult fo<span class='match'> the </span>upcoming months. 1/n..</li>
##   <li>This is bad as #coronavirus. animal behaves better than this. https://t.co/FRoOu80EML</li>
##   <li>Is there any other party in Jamaica to vote for ??? #COVID2019 #jlp https://t.co/axnDZlzPws</li>
##   <li>Buhari Commends Nigerians For ‘Unity In Fighting COVID-19’ https://t.co/6GViVLp2xT https://t.co/PA5ikFgQwj</li>
##   <li>Many older people are waking up today to #COVID19 'cocooning'
## We have some information and advice here https://t.co/HcH2PMmHNx
## 
## If you know an older person who is not online please call them - numbers for helplines here <U+0001F447> https://t.co/K2JcsVzLJc</li>
##   <li>The Rich staying rich. Our fault for buying his products. The billionaire (worth $4.5 billion) Houston Rockets owner Tilman Fertitta has put 40,000 people out of work. Fertitta’s Landry Inc. restaurants aand he also owns a casino.  @RapSheet @espn @NBA #coronavirus #BreakingNews</li>
##   <li>How will<span class='match'> the </span>#coronavirus crisis shape<span class='match'> the </span>food system if we do nothing? https://t.co/7RPZAqj1TE</li>
##   <li>Blowing bubbles to help pass<span class='match'> the </span>time and yes my head almost hits this roof<U+0001F633> #blowingbubbles #childhoodactivity #passingthetime #tallpeopleproblems #coronavirus #home https://t.co/CnaWg0WIbK</li>
##   <li>This past Sunday, Kyle channeled his inner-Jim Bakker and became a televangelist. We talk about that on this episode...
## 
## iTunes: https://t.co/eYotFxzV06
## Spotify: https://t.co/bM6x5l1wvG
## @podomatic: https://t.co/1YAoZLfUM1
## #PODCASTINGCOVID  #Coronavirus #onlinechurch https://t.co/UlxkkllCVU</li>
##   <li>We've three hours to get<span class='match'> the </span>cans in!  #CoronaLockdown #IsolationLife #COVID19</li>
##   <li>NYC nurse died from<span class='match'> the </span>Covid-19 and he looked young.  <U+0001F625></li>
##   <li>@cspan @RepThomasMassie That pork filled bill is an affront. Congress could craft a simple bill dealing solely with COVID-19 relief, but are choosing not to. The House gave itself a raise &amp; millions to NPR, &amp;  Kennedy Center for<span class='match'> the </span>Performing Arts. The money should be for survival essentials not bling</li>
##   <li>Trump orders GM to start ventilator production for COVID-19 amid contract dispute https://t.co/hbse45yCn2 #TechNews</li>
##   <li>The state income tax filing and payment deadline was extended to July 15 due to #COVID19. Please contact 
## @MassRevenue for questions and read more here: https://t.co/rOS9NEYsmy https://t.co/gARnQ3vxys</li>
##   <li>Ethiopia gov't in western and southern Oromiya!To prevent<span class='match'> the </span>spread of corona virus information very crucial .
## Blocking information at these time. It's violation of human right .
## # Reconnect<span class='match'> the </span>West &amp; southern 
## # COVID 19
## # ETHIOPIA</li>
##   <li>COVID-19 Update on Road Defect Repairs (potholes) https://t.co/D2QDiiPWqE</li>
##   <li>This is<span class='match'> the </span>first useful video I have seen about COVID-19. Help yourself, protect your family, educate yourself, and avoid<span class='match'> the </span>mass hysteria and hyperbole: https://t.co/Qc0QgADzdA</li>
##   <li>@GabrielMacht @realDonaldTrump Believe me, covid-19 isn't a joke. In my town in Lombardy, Italy, we have been closed in our houses for one month and things aren't getting better. Streets are empty, no noises, only<span class='match'> the </span>sirens of<span class='match'> the </span>ambulance day and night. Hundreds people are dying every day. It's a nightmare.</li>
##   <li>Onbehalf of my self  and family I’m donating an undisclose amount collectible via FG for<span class='match'> the </span>fight against COVID -19... Thank you..<U+0001F601><U+0001F601><U+0001F601>...</li>
##   <li>With<span class='match'> the </span>order that all bars and restaurants close in-house service to combat<span class='match'> the </span>coronavirus outbreak, we’ve gathered a list of restaurants offering various takeout and delivery options so you can continue to support your favorite restaurants.
## 
## https://t.co/8DQPsxv4hv https://t.co/aCSf0B8NyZ</li>
##   <li>Germany Closes Border to Europeans, But Migrants Still Allowed  In.  #Covid19 #coronavirus https://t.co/1YLGEBpn2r</li>
##   <li>This Covid 19 shit got me soooo paranoid <U+0001F62B><U+0001F62B><U+0001F62B> every time I cough I feel like praying <U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE> God pls let them find a cure pls <U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE> y’all be safe and careful!</li>
##   <li>@GavinNewsom 
## It would be nice to give us a specific area of people who are infected with Covid-19 and not just<span class='match'> the </span>county.</li>
##   <li>I'm trying to make lemonade out of<span class='match'> the </span>big fat bitter lemon that is COVID-19. Here, I share my strategies, and a suggestion for you if you find yourself with time on your hands during<span class='match'> the </span>coronavirus quarantine. How to Make Lemonade  https://t.co/9XTDCJYCFE</li>
##   <li>US now has<span class='match'> the </span>world's most confirmed #COVID-19 cases with 82,404 https://t.co/yEGIGiwC4S https://t.co/s2m4pmbw1J</li>
##   <li>https://t.co/lCSnzfu7oz 
## Good Night World <U+0001F30D>
## Baby with a good Attitude &amp; Energy <U+2795><U+2795><U+2795> we will go out and fight<span class='match'> the </span>Coronavirus (COVID-19) <U+0001F621>
## Sweet Dreams Baby <U+0001F634><U+0001F634><U+0001F634>
## STAYIN' ALIVE
## (Bee Gees)
## #music <U+0001F3B5><U+0001F3B6><U+0001F3B6>
## Sending  LOVE <U+0001F496><U+0001F496><U+0001F496> from Tenerife Canary <U+0001F618><U+0001F618><U+0001F618></li>
##   <li>Atypical Illness Levels
## https://t.co/9qN1iova8e
## #StayAtHome #COVID19 #Coronavirus #Virus #FlattenTheCurve #VirusSpread #Epidemic #SocialDistancing #Pandemic @Kinsa</li>
##   <li>Chancellor announces support scheme for self-employed 
## #COVID2019 #selfemployed #isolation #Government
## https://t.co/wAzSCOHeqQ</li>
##   <li>Our generation.
## 8th class me: #earthquake
## 10th class me: #war_threads
## College me: #flood
## University me:: #Dubble_sawari_bnd
## Job: #coronavirus 
## Salary shadi k waqat dajal ajaega<U+0001F637><U+0001F611><U+0001F621>
## 
## @umairbhatti301 
## 
## #CoronaLockdown 
## #StayHomeSaveLives 
## #coronavirusinpakistan</li>
##   <li>Live update #COVID19 Zimbabwe on lock down for 21 days from 30 March 2020. #Covid19zimlockdown #COVID19zimbabwe #COVID19 #Zimbabwe #Covid19Zim https://t.co/f9NNJMi0CO</li>
##   <li>Idle thought, what if Trumps campaign understand that if they reopen things it will cause a resurgence in #COVID19 cases and they actually calculate that because they see his approval numbers going up now and they think it's an October surprise they control @PodSaveAmerica <U+0001F440><U+0001F914></li>
##   <li>@Razvan05280230 You'll need to contact our live support team <U+2013> due to<span class='match'> the </span>recent global health crisis related to COVID-19, we're operating with limited assistance.</li>
##   <li>So with<span class='match'> the </span>600 a week on unemployment plus<span class='match'> the </span>1200, a family of 4 is getting a lil over 10,000 in 4 months.
## #ThankYouTrump #trumpbucks @POTUS #COVID2019 #StimulusPlan #stimulusbill #Trump2020 #MAGA</li>
##   <li>#Actors, #Creative #Talent in #Europe #Brace for New #Rules on Set Post-#Coronavirus
## https://t.co/HweCaSfEKB https://t.co/YvnAFn26Cz</li>
##   <li>@ToolstationUK our local hospital (Hairmyres East Kilbride) in desperate need of<span class='match'> the </span>following. Could you donate them? #COVID19 @NHSuk https://t.co/MCi5WfJhxK</li>
##   <li>Countries with stability &amp; prosperity were unable to fight #Coronavirus, how would it be with #Yemen? The country exhausted by a 5-year siege &amp; aggression?
## The intl community should take its responsibility!! #5YearsOfWarOnYemen https://t.co/Jtg0ZGDv06</li>
##   <li>#Breaking COVID 19 brings back USD - Public can now pay for goods and services in USD says RBZ.
## @bbmhlanga 
## @therealprincea 
## @NewsDayZimbabwe https://t.co/IVqcDvI7Gs</li>
##   <li>Major heart sink. Prayers .@realDonaldTrump are you doing<span class='match'> the </span>#Best you can? #COVID2019 #NewYork #America #GodMorningFriday #Italy https://t.co/4oXKy1qwIg</li>
##   <li>STAFF MORALE @ACOSVO is hosting a FREE Zoom call TOMORROW at 10am facilitated by Joette from @AnimateConsults to help you keep staff morale high throughout this difficult period. Reserve your place on here: https://t.co/wGu5jSwnM8
## #COVID-19 #mentalhealthmatters</li>
##   <li>A special message of thanks to all those working in<span class='match'> the </span>NHS from former doctor @amateuradam <U+0001F3E5><U+0001F44F>
## 
## #clapforourcarers #clapforNHS #coronavirus #Covid19 @BBCWorldatOne https://t.co/fCNk5YJwQT</li>
##   <li>We are now entering week 3 where Europe is<span class='match'> the </span>epicentre of<span class='match'> the </span>Coronavirus. These front pages will certainly be remembered: 
## 
## https://t.co/3VFX43Wj59</li>
##   <li>The reality is @realDonaldTrump is a whiny little bitch who has no authority in this situation. He has to do what<span class='match'> the </span>virus dictates to him. It doesn’t matter how he spins it. People will see<span class='match'> the </span>dead piled up. You can’t spin a plague on your house. #coronavirus https://t.co/pKRn9ex1WD</li>
##   <li>What does it mean for someone to stay home when their lives are at greater risk being at home vs exposing themselves to a virus? 
## 
## Create safe spaces for victims of domestic abuse. 
## 
## https://t.co/j2zwVhGUzS
## 
## #violenceagainstwomen #DomesticViolence #COVIDActNow #COVID19 https://t.co/D5MdFbFfcR</li>
##   <li>Hello, my dear friends.
## 
## At this critical moment when Uganda is facing<span class='match'> the </span>COVID-19 epidemic, I sincerely appeal to you to respond to<span class='match'> the </span>Ugandan government's call to stay at home, wash your hands frequently, avoid going to crowded places, and do a good job of self-protection.</li>
##   <li>Its easier to test positive for Covid-19 dissapear in South Africa than in China. The Chinese government knows who you are, where you are and what you are saying  to your friends. #CoronavirusSouthAfrica</li>
##   <li>Bill and Hillary Clinton Send Pizza to Hospital Staffs in New York https://t.co/x1syOhbj5r</li>
##   <li>How much this Covid-19 has made me appreciate<span class='match'> the </span>things that I had taken for granted all my life! Going out, or even  just meeting up with a couple of friends for a drink, seem like luxuries now. Actually, having a drink alone seems like a bit of a luxury now because... (contd)</li>
##   <li>@MeghanMcCain Hey @MeghanMcCain, could you include<span class='match'> the </span>#EverydayHeros who pick up<span class='match'> the </span>trash &amp; recycling in your list next time? They are handling waste from homes with #coronavirus. Thx! #CoronavirusOutbreak @RepublicService @RumpkeNews @BetteMidler @TonyDanza @RichardShermanF @cindymccain</li>
##   <li>2020 is like an old Computer:
## Full of old fashioned thoughts and a virus. We don’t want both <U+0001F44D><U+0001F3FB>#COVID19 #SayNoToRacism @DiePARTEI  #StayHome</li>
##   <li>BCHL COVID-19 Update (March 27) <U+2013> Now What ???    https://t.co/rR9gCGmKF4 https://t.co/1l005sJIyX</li>
##   <li>For<span class='match'> the </span>sake of humanity can you eat regular foods only.
## 
## #ChineseVirus19
## #COVID2019</li>
##   <li>Extremely important. 
## How to distinguish between Covid-19, flu and cold. 
## Please share widely. https://t.co/c7MZT6Fh7u</li>
##   <li>Yeah sex is cool but have u ever jumped into ur significant others arms at max speed after not seeing them for 6 weeks? Yeah me neither thank u COVID-19 me and @KratzSean72 really appreciate you atm</li>
##   <li>25 million for<span class='match'> the </span>arts when Americans are losing jobs right &amp; left. Businesses are closing!!!!  #Coronavirus</li>
##   <li>Nurses are not getting<span class='match'> the </span>protections they desperately need to fight #COVID19. @NationalNurses is demanding Congress act now. Add your name:  https://t.co/JZMxXs1bBB</li>
##   <li>Boy goes to urgent care clinic with covid-19, is turned away because of no insurance and told to go to a public hospital.  He died.  https://t.co/41FWvFWGIP</li>
##   <li>COVID 19 Wireless Emergency Alert https://t.co/Mw8X3PyR59</li>
##   <li>My mom literally texted me checking in just to warn me about a lockdown and say that trump is going to explain why covid-19 is happening. “changes are coming”</li>
##   <li>Thanks to @realDonaldTrump's dismantling of government infrastructure and dismissal of science, I am gravely worried about my ER doc sister: #coronavirus Doctors Are Writing Their Wills https://t.co/lqAM1jalXU</li>
##   <li>While all of you out there are worried about #COVID19 , I have rolled my ankle once again and now I wait patiently for death</li>
##   <li>When you need to get back to<span class='match'> the </span>herd to get some of that sweet sweet immunity #COVID19 https://t.co/o4IBlZv11O</li>
##   <li>My mum and her neighbors out clapping for #HealthCareWorkers because im a nurse makes me all emosh <U+0001F49E><U+0001F970> #nurselife #covid19 #coronavirus</li>
##   <li>Instacart says they’ll give you 2 weeks pay in case of a COVID-19 diagnosis, but offers no protection against it and no hazard pay. They just made it so if people wanna be jerks and hit our ratings because TP is out, that won’t affect our access to “the good batches.”</li>
##   <li>Things to do inside with your kids #COVID19 https://t.co/aymp91JTBh</li>
##   <li>Indianapolis 500 postponed until August because of COVID-19
## https://t.co/4XDDFNsww6</li>
##   <li>Noone:
## Literally noone:
## 12 yr olds:I have<span class='match'> the </span>corona virus mom I can’t clean my room ima contaminate everything<U+0001F605>
## #coronavirus #nevadastrong #COVID19 #StayHome #StaySafeStayHome #StayTheFHome #cleanhouse #CleanHands</li>
##   <li>COVID-19 modelling shows BC's experience could be more like South Korea's than Italy's https://t.co/u8BuS5DT5m</li>
##   <li>@wsfa12news This is a graph put out by NPR...pretty dang frightening, but hoping<span class='match'> the </span>"stay at home" advice is being followed to flatten<span class='match'> the </span>COVID-19 graph. https://t.co/KDJYQHscxg</li>
##   <li>Important message from @mayorgimenez about #COVID19 today, March 26. #coronavirus https://t.co/d4CsL0uAIA</li>
##   <li>Coronavirus rising: #JamesCityCounty positive cases go up; state now has 604. Half of<span class='match'> the </span>deaths were in<span class='match'> the </span>Peninsula
## https://t.co/PqtnCkeUSU
## 
## #coronavirus #COVID19 #COVID19Impact #WilliamsburgVA #YorkCountyVA #HamptonVA #NewportNews https://t.co/v6evUa4H0Z</li>
##   <li><U+0001F44F><U+0001F3FB> CLOSE <U+0001F44F><U+0001F3FB> DOWN <U+0001F44F><U+0001F3FB> THE <U+0001F44F><U+0001F3FB> CHINESE <U+0001F44F><U+0001F3FB> MARKET <U+0001F44F><U+0001F3FB>#CoronaLockdown #COVID19 #PrayForBoris #COVID2019</li>
##   <li>CIoJ sends  professional journalist and Prime Minister @BorisJohnson very best wishes for speedy recovery from COVID-19. @Number10press @10DowningStreet</li>
##   <li>Mobile Phone Location Data of Florida Beachgoers During Spring Break Tracked to Show Potential Coronavirus Spread https://t.co/vjvlgZxbGC</li>
##   <li>People who work for big employers get sick too.  California needs to fill in<span class='match'> the </span>gaps left behind by<span class='match'> the </span>federal government to support all workers facing #COVID19. https://t.co/cQs1CF6NpW</li>
##   <li>Love seeing people’s art. This looks like a Covid-19 keep fit class. @Channel4News https://t.co/h05yFdTrbV</li>
##   <li>As<span class='match'> the </span>world responds to<span class='match'> the </span>implications of COVID-19, NTEA will provide you with<span class='match'> the </span>latest information on<span class='match'> the </span>impacts to<span class='match'> the </span>work truck industry. https://t.co/HfH4cmKIRq https://t.co/uBgvhVEBiN</li>
##   <li>It is very interesting to see how<span class='match'> the </span>mainstream media has blacked out this insidious news of a man named Mujeeb Mohammad being arrested because he wanted to spread<span class='match'> the </span>#Coronavirus by sneezing in open. He is an @Infosys employee! Aperfect embodiment for #CoronavirusOutbreak!</li>
##   <li>Andrew Butters, assistant professor of business economics and public policy at<span class='match'> the </span>IU @KelleySchool of Business, offered a national perspective on COVID-19 to @BhamWatch and its public radio partner @WBHM. https://t.co/PGIkwtX9qJ</li>
##   <li>Good news as Cross River State procures 5 ventilators in preparation for any case of COVID-19 in<span class='match'> the </span>state. Cross River is one of<span class='match'> the </span>many states in Nigeria yet to report any case of<span class='match'> the </span>dreaded virus. 
## 
## Click<span class='match'> the </span>WhatsApp link below and say "hi"
## https://t.co/h5RofYx1ax. #NMTeam https://t.co/FL6NcrxvjY</li>
##   <li>@PhillipSmyth Didn't China omit ~ 35,000 asymptomatic COVID-19 cases? The actual total should be closer to 115,000 cases in China. Russia has also downplayed COVID-19 cases by coding them as "pneumonia". https://t.co/2Ov3wQyUoD</li>
##   <li>Another company is joining<span class='match'> the </span>war against #COVID19:  @TheOrbFactory, parent company of @ORBToys, is shifting production to help meet<span class='match'> the </span>need for hand sanitizer and other anti-bacterial products around<span class='match'> the </span>world <U+2014>&gt; https://t.co/5OO8ZRMKCK #weknowplay</li>
##   <li>The RetroBeat: Games Done Quick will hold a special marathon to help with COVID-19 relief https://t.co/ipVXdSXKOP #work #future https://t.co/TbHtucuNXl</li>
##   <li>Here’s how to redesign your home for spring during COVID-19
##  https://t.co/PE4EqN9JWQ #Home #PaintingIdeas @DutkoRagen</li>
##   <li>#Huawei’s #Honor, #Xiaomi’s #Redmi and #Oppo’s #Realme gives extended warranty for their products in India due to #Covid19. But big giants like #Apple’s #iPhone, #Samsung, #OnePlus, #LG, #Motorola and other players not yet announced. Royal salutes to Honor, Redmi and Realme.</li>
##   <li>NHS: Protect<span class='match'> the </span>right to have a birth partner during COVID-19 - Sign<span class='match'> the </span>Petition! https://t.co/FBMKjTkW6B via @UKChange</li>
##   <li>@dwhitleysmith @business This one ? #COVID19 #TrumpVirus #trump #CoronavirusUSA #TrumpVirusCoverup https://t.co/E0Cr2JugpK</li>
##   <li>Many small businesses are struggling with COVID-19-related challenges. $2 trillion bill passed by Congress  provides significant relief for businesses under 500 employees. 
## 
## If you are<span class='match'> the </span>owner, CEO or CFO of a small business, you should check this out.
## 
## https://t.co/n87WCtDNBY</li>
##   <li>It's my honor to give congratulation to all your American that you are<span class='match'> the </span>No. 1 in<span class='match'> the </span>whole world for<span class='match'> the </span>confirmed #coronavirus , with<span class='match'> the </span>great/beautiful/excellent leadership of @realDonaldTrump . America will always first.</li>
##   <li>all this holding my breath past people on my run is gonna make me pass out #COVID19</li>
##   <li>Some of them are sick, some are getting very sick and they don't even recover. They're wonderful people. Can someone translate this bullshit for me? WTF!!!.#COVID2019</li>
##   <li>Homeless New Yorkers are already dying from #COVID19 &amp; cases are increasing in<span class='match'> the </span>city’s shelters. @NYGovCuomo @NYCMayor MUST ACT NOW to stem crisis and protect<span class='match'> the </span>most vulnerable. #HomelessCantStayHome https://t.co/u4D6vg41a4 https://t.co/qLie23B53t</li>
##   <li>Johns Hopkins #COVID19 map faulted for erasing Palestinians https://t.co/tzR0dbIcXo https://t.co/sMVfQcBcDj</li>
##   <li>these companies. jfc
## https://t.co/oyov3kLttn</li>
##   <li>@HealthyHousing is hosting a webinar tomorrow (3/27) from 12-1:30 on "Responding to Coronavirus &amp; COVID-19 in Healthy Housing Interventions". Register at: 
## https://t.co/IZfr6BIk5S
## #leadfreekidsOH #OHLeadAction2030
## @OHleadfreekids @OhioHealthyHome</li>
##   <li>It is important you answer children and young people's questions about COVID-19 in a way they can understand, without causing alarm. We've collected resources to help you to have have conversations with kids: https://t.co/xlHxxD6c68 https://t.co/ivN388tnNx</li>
##   <li>When this pandemic is over I think we should sue China, they are Covid 19 free and<span class='match'> the </span>rest country is still in shambles
## 
## #COVID19 
## #CovidNGR 
## #StaySafeNigeria 
## #StayHome</li>
##   <li>@StevieStacks84 @amazon My income has decreased due to COVID-19 so this would be very helpful!</li>
##   <li>@bgtennisnation Crazy &amp; spooky. VERY BEST TIME 2 be buying<span class='match'> the </span>stock market. Before COVID-19, market was overpriced. Still is in some places. 5th greatest buying opp in history of entire stock mkt. WTF is buying $320/share for nasty @dominos &amp; $660/share for sketchy, unauthentic @ChipotleTweets?</li>
##   <li>My baby brother (20 but a baby to me) has pneumonia and possibly COVID-19. 
## I hate today</li>
##   <li>Absolutely loved<span class='match'> the </span>feature on dog walking etiquette in #covid19 pandemic on yesterday's #bbcinsidescience @BBCRadio4 @jenwhyntie What about cat stroking etiquette? Or are cat owners are wondering, where has my cat been? https://t.co/oZdCp42NAo</li>
##   <li>@hokeisit @TedBrownJanSan @BernieSanders Scary how smoothly you MAGA animals disregard truth and facts. Please d8e from #Coronavirus. We need you morons gone. Your kind represents an existential threat to<span class='match'> the </span>rest of us.</li>
##   <li>@FlyersBlueFlame Yup, Seems you are right! 
## https://t.co/vnwPGw4scP</li>
##   <li>#BreakingNews
## 
## Media reports suggest a #COVID19 patient under treatment in #Kochi dies, becomes first casualty in<span class='match'> the </span>state of #Kerala , where<span class='match'> the </span>deadly virus was first reported in India.</li>
##   <li>"Any customer who identifies as a frontline responder to<span class='match'> the </span>COVID-19 outbreak will receive a tall brewed coffee (hot or iced) at no charge until May 3.” https://t.co/8Urqd9TCoi</li>
##   <li>Adopt and adapt strategies to get through #Covid19:
## https://t.co/E7IGnnvX7C</li>
##   <li>Luvs and Lovers<span class='match'> the </span>House has a bill that is for<span class='match'> the </span>people.  #TakeResponsibility   2K/mth for as long as #COVID19 keeps us inside.  Plus real oversight of loans to corps.  Demand it.  Demand it.</li>
##   <li>As case numbers approach 3000, #Miami’s #coronavirus #TestingForCovid19 data suggest we still don’t know how many are infected https://t.co/Ry0ShIyTNS</li>
##   <li>#Colombia and Spain have much in common. We all exercise 'social behavior' - we're very touchy-feely down here. It's been hard to put<span class='match'> the </span>brakes on that... #Coronavirus: 'Why are deaths rising so quickly in Spain?' https://t.co/8NwjIdpM17</li>
##   <li>Check this link for accurate worldwide #COVID2019 updates 
## https://t.co/IbbKq9GOTG</li>
##   <li>The Covid-19 Tales <U+2013> Episode 3 https://t.co/GxtKaOX1fj</li>
##   <li>B.C. measures appear to have slowed<span class='match'> the </span>increase in COVID-19: health officer | National Newswatch https://t.co/cJNaZOSvef</li>
##   <li>Hachi,<span class='match'> the </span>most famous Akita dog, also wears a mask! #COVID19 #StaySafe https://t.co/vm3LGskG2t</li>
##   <li>Anger over Prince Charles's Covid-19 test is a warning sign of divisions to come | Gaby Hinsliff https://t.co/qlviPeEFkp</li>
##   <li>@KatiePhang And what does it prove if HE gets COVID-19?</li>
##   <li>@IrPsych @Twitter @TwitterSupport @SimonHarrisTD @GardaTraffic 'Sedition' ~ conduct/speech inciting people to rebel against<span class='match'> the </span>authority of a state or monarch.
## Hey @MaryLouMcDonald, @LeoVaradkar even, Please ensure Gemma O'Doherty is not deemed as 'essential' in<span class='match'> the </span>capacity as 'journalist'...sadly, that ship's long since sailed.
## #COVID19 https://t.co/LViDThz6LS</li>
##   <li>Stay Safe &amp; fight Covid-19 !
## 
## #Covid19 #Coronavirus #StayAtHome #CoronaOutbreak #Covid19India #Screwexpert https://t.co/DWweoyLIE0</li>
##   <li>@ninjabaseballs @GAMBLETAYLOR1 @ARLnowDOTcom @CDCgov @ABC7News @shomaristone Yes I have as well. There are so many videos showing this. Look up cytokine storm from covid-19. It is very rapid, seemingly no warning. This comes in<span class='match'> the </span>second wave of sickness from it.</li>
##   <li>@Jrwriter1523 @GovLarryHogan @Change James,<span class='match'> the </span>federal government has addressed<span class='match'> the </span>cost of living issue with a $2.2 Trillion Dollar Bill that addresses a wide range of Americans financial  stresses due to COVID-19. In my option before Hogan or<span class='match'> the </span>Federal Government look at any additional measures,</li>
##   <li>Good 60-second read for marketers:
## Mind your tone; Assess which campaigns should be paused/changed; Show your customers you have their backs; Support other businesses. https://t.co/y76Tp6ofiF</li>
##   <li>Can you recover completely from Coronavirus? Can you prevent COVID-19 by wearing a mask? Is there a vaccine? Should you cancel your travel plans? Can you order packages online without being worried? Did it all start from a bat soup?! Read on our latest blog! https://t.co/7BZDNCrHoa</li>
##   <li>I will not listen to any recommendations from @realDonaldTrump.  He spreads nothing but misinformation for his own personal gain. I will follow<span class='match'> the </span>recommendations of<span class='match'> the </span>CDC, Dr. Anthony Fauci, and<span class='match'> the </span>recommendations of my local and state government officials.   #COVID19</li>
##   <li>Rupee Rises 84 Paise Against US Dollars After Govt Announces Welfare Measures to Fight COVID-19 https://t.co/Uuc7GZWDrJ https://t.co/6mFsTE2ORm</li>
##   <li>Thank you NHS well done #NHSThankYou #clapforNHS #COVID2019 https://t.co/aQAXayL8kC</li>
##   <li>Check out my blog and resource page on #COVID19 for friends and family to find reliable information. https://t.co/mmz3eDsnFv</li>
##   <li>Never knew how bad I was at spelling quarantine until COVID-19</li>
##   <li>Amount of coronavirus tests done in France is 36747 as of 15 Mar 2020
## 
## #coronavirus #COVID19 #CoronaVirusUpdates #Covid_19</li>
##   <li>In English here https://t.co/mEItmVTNQG</li>
##   <li>Might be a good time to buy some beef...
## 
## Harmony Beef shut down due to COVID-19 https://t.co/gPkERgV0x6</li>
##   <li>Watch All Trump's false promises regarding<span class='match'> the </span>tests for COVID-19.
## 
## THEN READ MY OP-ED: THE #CORONAVIRUS TESTS ARE IN THE MAIL. THIS IS THE REAL REASON FOR TESTING DELAYS: https://t.co/K3cFfYF2LW 
## https://t.co/fWngXmfPDZ 08
## #VoteBlueNoMatterWho</li>
##   <li>COVID-19 and skin hunger: Vancouver sex therapist Diana Sadat talks about feeding need for intimacy #COVID19Vancouver #Vancouver 
## https://t.co/wz9MqLO13a</li>
##   <li>Join us in thanking our nation's physicians and health care teams on<span class='match'> the </span>front lines of<span class='match'> the </span>#COVID19 pandemic. Leave your words of encouragement in this open letter, and we'll share on Mar. 30, a.k.a.  #DoctorsDay! Shout it loud with us: #WeStandWithDocs. https://t.co/tAR4jVLsSN https://t.co/Qm1WsKnEwF</li>
##   <li>Coronavirus - South Africa: President Cyril Ramaphosa has tested negative for Novel Coronavirus (COVID-19) @GovernmentZA @PresidencyZA @CyrilRamaphosa #Africa #SouthAfrica #Health #Coronavirus #COVID19 https://t.co/md7lI8Bx2f</li>
##   <li>20 years from now I’ll probably still look at this like <U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD><U+0001F595><U+0001F3FD> you COVID-19.</li>
##   <li>As a responsible Opposition <U+2066>@JamaicaPNP<U+2069> have been asking penetrating questions about Ja’s preparedness for #COVID19 as in this extract from Standing Finance  C’mtee held on March 4 https://t.co/eZz6vekMa7</li>
##   <li>@TWDWorldBeyond @JunkyJanker If u mute ur volume, it looks like junky is speaking facts (but fr covid-19 is ruining everything)</li>
##   <li>Just watched another #coronavirus press conference from<span class='match'> the </span>real President of<span class='match'> the </span>United States @NYGovCuomo ... #POTUS sorry @realDonaldTrump but this is<span class='match'> the </span>person your country needs right now.  NY should be proud to have this individual is leading<span class='match'> the </span>charge. https://t.co/FlWZLpz2Ix</li>
##   <li>COVID-19: Makinde sacks aide clamming Sanwo-Olu’s projects for Oyo Governor [PHOTOS] https://t.co/DV5Sbd2k1n</li>
##   <li>Can’t tell whether I am have breathless anxiety from #coronavirus or from watching spiders on @C4Gogglebox #Gogglebox</li>
##   <li>Changing Times: ‘We are all in this together', says ABPCO https://t.co/Bc9NBQK9B5 @ABPCO #EventProfs #MICE #events #meetings #venues #conference #CoronaVirus #covid19</li>
##   <li>There is no virus, what we are seeing right now is a massive psychological warfare operation. It's drill for<span class='match'> the </span>2nd event that is planned,#COVID19  is a just a test,<span class='match'> the </span>global elite are busy mobilizing  everyone who will BE involved in<span class='match'> the </span>Major coming crisis. https://t.co/DHcMErzy2w</li>
##   <li>Are you kidding me?  Delaying cancer surgery because you need space in hospitals for COVID-19 patients.  Doug Ford you need to shutdown those construction sights and flatten<span class='match'> the </span>curve. #DougFord #JohnTory #JustinTrudeau #SocialDistancingNow #covidontario #FlattenTheCurve</li>
##   <li>@Jeremy35299439 @ddwiese @PaulChavaux Well, that’s because they would be DEAD or their families in mouring. 
## 
## My gosh....#COVID19
## 
## This isn’t hard or difficult, medical supplies are greatly lacking!</li>
##   <li>Im sure he sold it so he could donate it to a sick pay find for his employees. It could not possibly been out of greed.  https://t.co/CSTmplamSF</li>
##   <li>Like yesterday, we were all excited about 2020. #COVID19 had other plans. Here's to #NoWastedTime and focus on my business grind. And most all, here's to all<span class='match'> the </span>leave I'm saving and credit hours earned, as I look forward to roaming<span class='match'> the </span>earth again. #BlackGirlsWrite</li>
##   <li>@joe_cressy @JohnTory I'm greatful that<span class='match'> the </span>city is getting hotels for our homeless.This particular would be ideal,where will our homeless go?Please take this hotel into consideration,thank you.#COVID19</li>
##   <li>This is a Slam Dunk 01-MAR-2020 :: <U+00A0>The Origin of<span class='match'> the </span>#CoronaVirus #COVID19 https://t.co/Eryn419SZA “A paranoid is someone who knows a little of what's going on. ”― William S. Burroughs https://t.co/ekTrqkAI62</li>
##   <li>@solid1009 @Princesskachy @betapikin042 @iamNaniboi Wow thanks so much guys <U+0001F450>yes in this trial time we should not forget that he is with us and if he is with us no one can be against us not even<span class='match'> the </span>epidemic disease #COVID19 ones again thanks so much my people of solid FM God bless</li>
##   <li>This is interesting. Why did they lie and say a man had died from #coronavirus when he had not? @BorisJohnson #Coronaconspiracy https://t.co/rzskd8VUKj</li>
##   <li>@Victoria59L @stocat1 @globalnews Damn, if only<span class='match'> the </span>virus waited until<span class='match'> the </span>1st of next month to become a pandemic...
## ... actually May would be better because of Easter and Chinese new year... hmm <U+0001F914> Can we pen #coronavirus down for May 3rd,<span class='match'> the </span>world has things to be doing right now.
## Ah too late, damn!
## Seriosuly: https://t.co/lOn3Uvol1M</li>
##   <li>Trump doing such a great job, that US has overtaken Italy and is just behind China.  Not a set of numbers to be proud of. #COVID<U+30FC>19 https://t.co/gncThEZN38</li>
##   <li>COVID-19: How to be a good citizen? https://t.co/Tgorvab4Iy https://t.co/SKs5PROBXV</li>
##   <li>great, tragic story on crazily shortsighted underfunding. 
## #cuttinglegsfromunderpublic
## Public health workers are on<span class='match'> the </span>front lines of<span class='match'> the </span>fight against coronavirus. But they’ve bled resources for years. https://t.co/WNwS3snZyv via @NCHealthNews</li>
##   <li>@MillicentOmanga @IG_NPS @InteriorKE @kipmurkomen @susankihika Please remind<span class='match'> the </span>government to protect even those enforcing<span class='match'> the </span>law, they need masks too. Or else, we will aid<span class='match'> the </span>spread of Covid-19 rather than slow it. Also let them understand citizens need help not punishment.</li>
##   <li>Why does this Covid-19 make me think that someone is playing a game Plague Inc. with our world? <U+0001F602></li>
##   <li>House lawmakers leave chamber empty amid COVID-19 pandemic  https://t.co/G96uGWqQSm</li>
##   <li>Prabhas &amp; Pawan heartful ga donate chesaru..<U+0001F44D>
## #Covid_19India
## #COVID19</li>
##   <li>@SpeakerPelosi @TeamPelosi YOU... and @SenSchumer are America’s virus <U+0001F9A0> 
## STOP USING #COVID19 AS LEVERAGE <U+203C><U+FE0F>
## #WalkAway from<span class='match'> the </span>@DNC<U+203C><U+FE0F>
## #Democrats are poisonous.
## @TheDemocrats must STOP.
## #Democrat games w/#coronavirus are despicable<U+203C><U+FE0F> https://t.co/aA39s3pVuE</li>
##   <li>@tanamongeau I am in desperate need of money. Lost my job due to covid-19. I have no rent money and down to my last few dollars.
## $elmosaidrawr</li>
##   <li>The fear and anxiety that follows #COVID19's spread, paired with<span class='match'> the </span>disruptive but necessary social distancing measures, can negatively impact our mental health. Even during these trying times, help is available. https://t.co/EXH4wd4j53</li>
##   <li>I created some data visualizations about Covid-19 in<span class='match'> the </span>USA.  
## Remember, "Data Doesn't Lie, but It Doesn't Tell The Whole Story"!! 
## Feel free to share.
## #COVID19 #coronavirus #DataViz 
## https://t.co/Hm4ajksGeM 
## (Works best on desktop)</li>
##   <li>Thank SUPERBUNGLER #Trump: #America now has<span class='match'> the </span>ONE #world record it did NOT want: NUMBER ONE in #coronavirus CASES!!!!
## https://t.co/G9JDAjMN2K</li>
##   <li>United States pledges US$470,000 to combat COVID-19 in Zimbabwe.</li>
##   <li>#amazonfunnies Whoever this guy's son is, is probably very thankful for his dad "@djswingingdiq" for not willing too spend $21 to ship back<span class='match'> the </span>best mask fr daily use.... @ResproUK You should reach out to him and remind him to give it to his son. #CoronavirusUSA #COVID19 https://t.co/w3xW0h6qeF</li>
##   <li>Amazing infographic from @statista showing<span class='match'> the </span>projected impact<span class='match'> the </span>COVID-19 outbreak will have on U.S. ad revenue. https://t.co/izykcUERtS</li>
##   <li>Despite his false claims, Republicans trust Trump for accurate information on COVID-19 over<span class='match'> the </span>CDC https://t.co/NH3DlbuHIz</li>
##   <li>Why not get your kids involved in #NationalWorkoutsAndWellbeingWeek ?! <U+0001F468><U+200D><U+0001F469><U+200D><U+0001F467><U+200D><U+0001F467>
## 
## #StayAtHomeSaveLives #COVID19 #HappierAtCitation https://t.co/ckAUexfGex</li>
##   <li>Our Immigration Community Faces Unemployment: Check out Our Responses to Common Questions. 
## 
## Please share!
## 
## #PublicCharge #Unemployment #Covid19usa #coronavirus 
## 
## https://t.co/nsoejrrLW3</li>
##   <li>"What we need in a pandemic is not social distancing, but physical distancing with social connectedness." - Kurt Stange, David Bergman et al. From our #COVID19 collection, including in-press work from<span class='match'> the </span>global frontlines of #PrimaryCare containment https://t.co/JCHCJUTfrw https://t.co/90QteWRXlG</li>
##   <li>#Selfdistancing till further notice
## #coronavirus #COVID19 #Quarantine #QuarantineAndChill https://t.co/prTCUNHwue</li>
##   <li>@NCDCgov @Fmohnigeria @FMICNigeria @NOA_Nigeria @EpidAlert @DrEOEhanire @nighealthwatch @nmanigeria @WHONigeria @USCDCNIGERIA @LSMOH Covid-19 Tomatos <U+0001F345> sauce. From chef <U+0001F468><U+0001F3FB><U+200D><U+0001F373> Tetes.  CoronaVirus most go. https://t.co/SKCuzBTxKD</li>
##   <li>To<span class='match'> the </span>cruise lines who are asking for gov assistance in<span class='match'> the </span>relief bill... thanks but NO THANKS. If you don’t pay taxes here in US then you can’t be bailed out by US tax dollars. #cruises #CoronavirusPandemic #COVID2019 #getyourmoneyelsewhere @ClayTravis https://t.co/e3FQXdfCu2</li>
##   <li>Another rapid-fire #Fathom ep. in response to<span class='match'> the </span>ongoing Covid-19 crisis. Paul &amp; Chris dive into: 
## 
## <U+0001F41F>Current market &amp; prices 
## <U+0001F41F>The success of #FishToYourDoor including an interview w/ @CelticFishGame
## <U+0001F41F>An update on Gov. support for fishermen 
## 
## Listen: https://t.co/dSxfYg1Ks5</li>
##   <li>My father decided to give rashan to 7 families.I'm sharing it so that u all should also convince yourselves and ur parents to take a step in this difficult situation for<span class='match'> the </span>needy. YOU DON'T NEED TO BE RICH TO DO SO, taking care of atleast 1family won't be a burden.
## #Covid_19</li>
##   <li>I commend all effort that is geared toward #COVID<U+30FC>19 in Lagos State...
## 
## Let's endeavor to stay safe and also abide by<span class='match'> the </span>health tips as given by @NCDCgov, @WHO, @CDCgov
## https://t.co/rcCZgyqyq5
## 
## #DeCatalyst #optimistic #CoronavirusPandemic #Covid19Out</li>
##   <li>At least one member of<span class='match'> the </span>Sixers' ownership group is not having a disastrous week https://t.co/8cD9JoEIsX</li>
##   <li>Tonight at 7 p.m.: This hyper-local event will include medical and health officials, along with other local leaders to provide clear and concise information as central Illinois and<span class='match'> the </span>nation at large face<span class='match'> the </span>COVID-19 pandemic. https://t.co/CYtWp9ixqY</li>
##   <li>The #covid_19 isn’t stopping this #block from practicing #socialdistancing and working out <U+0001F3CB><U+FE0F> #workout #pushupchallenge #pushyourself #covıd19 #healthylifestyle #workoutmotivation #workoutroutine #workouts #palmettobay #hustle #bodypositive #CoronavirusPandemic #ThursdayThoughts https://t.co/grbyf0WYKa</li>
##   <li>France’s national railroad has all but shut down, like much of<span class='match'> the </span>rest of<span class='match'> the </span>country. But yesterday a high-speed TGV train was used to transport Covid-19 patients to hospitals with resources to spare. 8/8
## 
## https://t.co/M2mjppt9af</li>
##   <li>Some good information here!
## 
## https://t.co/XxZ4hxhPuy https://t.co/Vz44xjafCt</li>
##   <li>The French doctor promoting #chloroquine has a history of manipulating data
## Europe 
## 
## #Factcheck 
## https://t.co/bd908Nuhcc</li>
##   <li>At present,<span class='match'> the </span>cost of testing for Covid-19 is Rs 4,500 per examination and<span class='match'> the </span>results are available within 24 hours
## 
## #coronavirus 
## #COVID19 
## #CoronavirusTest 
## 
## https://t.co/baDOkSJoXX</li>
##   <li>Can China’s COVID-19 Statistics Be Trusted? <U+2013> Scott N. Romaniuk and Tobias Burgers give an appraisal of<span class='match'> the </span>system https://t.co/2f9MzeePAv</li>
##   <li>Is 5G<span class='match'> the </span>CAUSE of CORONAVIRUS? (COVID-19) https://t.co/GukjK4ayod via @YouTube</li>
##   <li>@JezebelKat Also perpetually lol'ing at increasing border measures without addressing<span class='match'> the </span>fact that COVID-19 has been community spread for weeks. Not to mention<span class='match'> the </span>fact that they're not even quarantining people properly - US guy I spoke to today was left to his own devices, free to travel.</li>
##   <li>A publication in JMIR showcasing<span class='match'> the </span>work of FETPs in COVID-19 response in<span class='match'> the </span>EMRO region authored by Maj Gen Aamer Ikram and Dr Mirza Amir Baig from Pakistan #COVID19 @DrNausheenPTI
## @SaniaNishtar  @ImranKhanPTI @Sarfraz5678 @PTIofficial @pticmdofficial
## https://t.co/7UNTOy0LcB</li>
##   <li>THREAD: Everything you need to know about how #coronavirus is impacting #retail and #food trends 
## 
## Online shopping has been a mixed bag as different consumer segments respond differently. New online shoppers entered<span class='match'> the </span>category early, while others cut back. https://t.co/zkEXyb1Axz</li>
##   <li>Thank you so much for all<span class='match'> the </span>online orders this week. We hugely appreciate<span class='match'> the </span>support from you lovely lot. The Crumbs car has broken down twice. A bit concerned it may have #COVID19 so please bear with local deliveries!!
## https://t.co/T5usVIO7b0
## #supportlocal #StayHomeSaveLives https://t.co/KsI0rNaAQN</li>
##   <li>We are working on #COVID19 in Italy, France, Greece, Hong Kong, Iraq, Belgium and others. A key priority is to keep our regular medical programmes running for<span class='match'> the </span>hundreds of thousands of patients we care for and for<span class='match'> the </span>extremely vulnerable communities we help around<span class='match'> the </span>world https://t.co/bWTrg4GYWH</li>
##   <li>@ImRight08 Let’s think bigger. 30M tests in 30 days, virus and antibodies. More data! Go, go, go! Let's beat Iceland! We can do it.
## 
## https://t.co/d142lKQTgG
## 
## You inspired me to put together a petition. Thanks! Now pls go sign it and spread<span class='match'> the </span>word!</li>
##   <li>Looking back on my sickness posts from December and wondering now if we were actually dealing with<span class='match'> the </span>#coronavirus It was definitely<span class='match'> the </span>worst thing we'd had as a family and<span class='match'> the </span>worst I'd felt for a long time... Anyone else get abnormally sick in<span class='match'> the </span>Dec-Jan time frame? https://t.co/cmnRCmqBTz</li>
##   <li>@MarciaMathog @davidfrum The US Govt isn't buying up<span class='match'> the </span>ventilatord. Listen to #Trump's Hannity interview. The orange #COVIDIOT is complaining about how much they cost and how many @NYGovCuomo wants (30K).
## He also nixed<span class='match'> the </span>order with GM to make them. 
## He's punishing NYS again.
## #COVID19</li>
##   <li>@JasonSCampbell I Just hope<span class='match'> the </span>@SEC_Enforcement will take a deep dive on unusual volumes in Novartis, Mylan and Teva after<span class='match'> the </span>ongoing promotions from @realDonaldTrump of chloroquine tablets to fight COVID-19? The USA Patients want to know who bought when? @TheDemCoalition</li>
##   <li>Native American(s) COVID-19 <U+0001F602><U+0001F937><U+0001F3FB><U+200D>♂<U+FE0F> https://t.co/jgi0guOQ4l</li>
##   <li>Due to<span class='match'> the </span>COVID-19 pandemic and fluidity of<span class='match'> the </span>current situation, Loma Linda University Health leadership, clinical experts and frontline providers are maintaining a constant focus on managing<span class='match'> the </span>organization’s response. https://t.co/a3Jn4sWM5i</li>
##   <li>Hey, ladies:<U+2063><U+2063>
## <U+2063><U+2063>
## A lot of you are #goinggray against your wishes right now because of Covid-19 salon closures.  <U+2063><U+2063>
## <U+2063><U+2063>
## Some of you see<span class='match'> the </span>salon closures and home confinement as an opportunity to finally ditch the… https://t.co/8j8X5xqym7</li>
##   <li>New Coronavirus Scam Exposed (Fake Cure) https://t.co/TerHVdCS9O via @YouTube
## 
## #Covid19 #Scambait</li>
##   <li>I tried  Covid 19 Web testing,, turns out ndine stress<U+0001F602><U+0001F602><U+0001F602><U+0001F602> https://t.co/WbqskIfMpG</li>
##   <li>#COVID19 cases in New Jersey are now 8,825. 
## Two weeks ago it was 50. 
## That's a 17,550% increase.
## https://t.co/3TcjfDP8fy</li>
##   <li>And we thought Trump was<span class='match'> the </span>most stupid world leader. Sorry America, Johnson wins hands down What did Boris Johnson say before testing positive for Covid-19? https://t.co/8mS3sjLV4I via @YouTube</li>
##   <li>Rs1.7tn stimulus plan to help poor unveiled
## #Covid-19  https://t.co/eX2byg7M9I</li>
##   <li>Make no mistake! This was an engineered "Pandemic!"
## https://t.co/l35uvFRWW3</li>
##   <li>We're about helping our local community thrive <U+0001F338>. Find a business to support or list your business on https://t.co/edoBAedebI <U+0001F448>
## 
## #micovidcare #washtenawcounty #supportlocal #supportsmallbusiness #stayhome #community #restaurants #mentalhealth  #covid19 #coronavirus #mobilize https://t.co/S4mAnENgC2</li>
##   <li>Big Sport struggles to pivot to its new position of immense irrelevance | Marina Hyde. A woman who is not a sports reporter writing about football being irrelevant, feeds into every prejudice you can muster. #Sad https://t.co/oxpm7RQ85y</li>
##   <li>BBC News - Covid-19: The ways viruses can spread in offices
## https://t.co/beJmTUYd4O</li>
##   <li>I love reading @APSForg and their input on #COVID19. Always on point!</li>
##   <li>"Last updated March 26 at 4:45 p.m. ET.
## 
## Oklahoma is reporting 248 confirmed cases of COVID-19 and 7 deaths, according to<span class='match'> the </span>Oklahoma State Department of Health. Community spread has been confirmed in<span class='match'> the </span>state."
## https://t.co/YcoCucZkOP</li>
##   <li>Is<span class='match'> the </span>worst is still to come as #Coronavirus makes its way to #American shores?
## 
## This article explains<span class='match'> the </span>health risks and offers tips on how seniors can stay safe. 
## 
## https://t.co/CwmV4vtEX0 via @SeniorLifeAdv
## 
## #seniorhealth https://t.co/BqmBCDCmXn</li>
##   <li>I wish everyone tested positive for #COVID19 speedy recovery <U+0001F64F><U+0001F64F><U+0001F64F>
## May God be with us all <U+0001F64F><U+0001F64F><U+0001F64F>
## #StayAtHomeAndStaySafe 
## #staysafe</li>
##   <li>The U.S. is facing a severe blood shortage due to an unprecedented number of blood drive cancellations. @RedCross urges healthy individuals to schedule an appointment to donate blood at https://t.co/nxltsx9AkS. #COVID19</li>
##   <li>@RoryHaczewski @BBCNews Been happening since<span class='match'> the </span>year 2000 after<span class='match'> the </span>Montreal Protocol signed in 1987.  Nothing to do with COVID-19.
## 
## https://t.co/IY9WDtC0sN</li>
##   <li>Frank Newport: Six Emerging Conclusions: Public Opinion and COVID-19 https://t.co/CB6XfuVBuD via @Gallup #COVID19</li>
##   <li>@SethAMandel @scottlincicome Well said! "In reality,<span class='match'> the </span>COVID-19 crisis is a once-in-a-lifetime “black swan” event that requires everyone to put aside much of their ideology for a moment, accept<span class='match'> the </span>unfortunate reality we’re given, and just get stuff  done." This is what made America great to begin with.</li>
##   <li>When your leader cares more about oil than you #DieForTheDow #COVID2019 #DonaldTrump #trump #trumpasauras https://t.co/NAiPNMlktp</li>
##   <li>The best thing about this whole situation. Now bring me my booze
## 
## #booze #coronavirus @ The Death Star https://t.co/54q7I3QeBV</li>
##   <li>The Analogy Between Covid-19 and Climate Change Is Eerily Precise | WIRED https://t.co/fKuPSv18Ek</li>
##   <li>If #COVID19 has taught us anything, it's that grocery store clerks, transit workers, nurses, and delivery drivers are essential. Wall street is not. 
## 
## #NDLB2020 #MasksNow</li>
##   <li>Of course. Why haven't we gotten A Rod's take on all of this? When it comes to #coronavirus response there's no greater authority on<span class='match'> the </span>planet than, A Rod. https://t.co/th7xVE6ytL</li>
##   <li>The people of North East are amazing lovers, singers, artists, travellers and honestly alive.
## It's sad that<span class='match'> the </span>Pandemic has showcased<span class='match'> the </span>internal dirt of some morons who don't understand<span class='match'> the </span>beauty of diversity.
## 
## You all are<span class='match'> the </span>best my buddies.
## 
## #COVID2019
## #stopracism</li>
##   <li>Just asking... Shouldn’t all hipsters be shaving off their beards? Surely a beard is risky .... so many germs?  Health hazard!!!! <U+0001F62D> #COVID19 https://t.co/JmUarcjSol</li>
##   <li>Okay, looks like we're getting started. Let's do this thing! #COVID19 #Briefing https://t.co/d5u8v4iuhX</li>
##   <li>I forgot I had a car payment <U+0001F61E>#coronavirus #CoronaLockdown</li>
##   <li>Update BlueDragon650 - Hey Everyone Is Me BlueDragon650 (@Blue_Platinum In Twitter) I Not Going To Post A Video In My YouTube Channel So I Am Going To Write This In Tumblr So Here I Go I Want To Talk This Difficult Time About COVID-19 Is To... https://t.co/Tti43dQj6y</li>
##   <li>British Prime Minister Boris Johnson tests positive for COVID-19 https://t.co/ssx7hu88O4</li>
##   <li>Will COVID-19 be Known as “the Chinese Virus” or “the Trump Virus”? https://t.co/qOpYRw9Qs8 via @grtvnews</li>
##   <li>#Covid-19 Update posted by State Representative Renitta Shannon - #Dekalb CEO Thurmond, updated<span class='match'> the </span>county’s state of emergency with a shelter-in-place order for DeKalb in response to COVID-19. The order is effective Saturday, March 28, 2020, at 9 p.m. until further notice. https://t.co/ekUqRwwgiN</li>
##   <li><U+0001F58B> Support Susan by signing “Where are<span class='match'> the </span>tests!” and I’ll deliver a copy to your officials too: https://t.co/7zOhbPhV3n
## 
## <U+0001F4E8> Last delivered to @tony4wi, Representative Kerkman and Senator Wanggaard  #WIpolitics #COVID19 https://t.co/1A6MQqherv</li>
##   <li>Day 3: Houstonians are losing income &amp; jobs during a lockdown.  
## 
## 68 COVID-19 cases.  
## 
## Will @HarrisCoJudge  ($176k/yr) / @SylvesterTurner ($236k/yr) lead? Give up their pay in shutdown? 
## 
## @realDonaldTrump has. 
## 
## #CoronaLockdown 
## #HypocriteLina #HoustonMayorHypocrite https://t.co/1T99ZsCMOT</li>
##   <li>Brilliant idea and no doubt<span class='match'> the </span>fastest way to a COVID-19 solution. https://t.co/bXFARCrahY</li>
##   <li>FB live @bloodyearlyhour EST Beastmode <U+0001F525>
## Smile, laugh, ♥<U+FE0F> health
## #Togetherwearestrong #teamkentucky #togetherky #healthyathome #teamkentucky
## #governor  #teamworld
## #covid19 #coronavirus
## #socialdistancing… https://t.co/7SbqevPdI5</li>
##   <li>Very accurate thread about being a marketer. I’ve actually been thinking about wanting to pivot back into sales because of some of<span class='match'> the </span>factors @attackofthetext outlines below. (I was affected by a lay-off last month and consulting clients hit pause because of #COVID19 .) https://t.co/WIjNoMBVZd</li>
##   <li>Nigeria Will Go Into Recession If COVID-19 Continues Beyond Six Months <U+2013> Finance Minister https://t.co/i5wqEROLGa https://t.co/volXF1pVYB</li>
##   <li>Bill Gates: "Poor countries<span class='match'> the </span>difficulty doing<span class='match'> the </span>isolation."
## 
## Bill Gates makes a prediction about when coronavirus cases will peak #COVID19 
## 
## "The light is not at<span class='match'> the </span>end of<span class='match'> the </span>tunnel in terms of a mid April reopening."
## 
## https://t.co/kEOr5sldef</li>
##   <li>@citizentvkenya This is unacceptable...
## I thought kenya Police was there to serve<span class='match'> the </span>people??
## Why treat human beings this way??
## Is this guy Covid 19 ama?
## If he has broken<span class='match'> the </span>law can't he be charged?
## What an evil system backed by evil leadership.
## God sees and they shall all pay eventually.</li>
##   <li>Latin America’s COVID-19 cases rise rapidly https://t.co/fnHIC2cyLB</li>
##   <li>SEC Further Extends Filing Deadlines for Companies Impacted by COVID-19 https://t.co/lmdS5L7Bde @KattenLaw</li>
##   <li>Time to being warrior ,
## By being Quarantine.
## 
## My poetry on ...this Test of #21dayLockdown #COVID2019 https://t.co/cJNMK1EURX</li>
##   <li>... have gotten COVID-19?
## 
## Corbyn on a bike man.
## 
## The only difference between these donkeys leading our lions during<span class='match'> the </span>1918 Flu Epedemic is<span class='match'> the </span>bleeding war that preceded it.
## 
## Cor bloimey gav'na!!!
## 
## #ProudToBeBritish</li>
##   <li>Trump wants incidence of #coronavirus positives to be charted by COUNTY. One has to ask why. 
## 1st:<span class='match'> the </span>data is too minimal &amp; useless, considering how sporadic testing is; we're more sure of deaths than positives. 
## 2nd: land-based accounting is useless; this is behavioral-driven.</li>
##   <li>This is hilarious, whoever Photoshop this did really well lol
## .
## .
## .
## #doctorwho #bbcdoctorwho #jodiewhittaker #mydoctor #teamtardis #sonicscrewdriver #ohbrilliant #bbcamerica #coronavirus #covid_19 #toiletpapermayhem… https://t.co/kQxfS9EYCN</li>
##   <li>The @alzassociation shares #dementia #caregiver tips. #COVID19 https://t.co/70PO8PhIoV</li>
##   <li>Technical Difficulties: Courts Face COVID-19 Learning Curve https://t.co/7Is7bCz0B7 #lawfirms #legal #attorneys #lawtwitter</li>
##   <li>In response to<span class='match'> the </span>#coronavirus pandemic,<span class='match'> the </span>Cuomo administration announced that NY will reopen its Affordable Care Act exchange for a month, for people who want to purchase health insurance. Learn more @NYSDOH https://t.co/vBlwKmeDG6</li>
##   <li>East End ACORN leader Elizabeth has a message for @fordnation! We need a #RentBreak now in Ontario! Elizabeth is a PSW and has been laid off due to #COVID19. With April 1st around<span class='match'> the </span>corner, Elizabeth will have to choose between paying rent and buying food. #HamOnt https://t.co/8WXhUMCXK2</li>
##   <li>ICYMI: #UAlberta chemists creating hand sanitizer on campus, as scientists use @WHO recipe to prepare more than 200 litres in 3 hours to meet<span class='match'> the </span>needs of<span class='match'> the </span>community. Learn more: https://t.co/zshrG8Wcu7 #Science #Health @UAlberta https://t.co/pq8IFr6Qps</li>
##   <li>Whatever you're doing in<span class='match'> the </span>US, it's not working...
## #COVID19 https://t.co/3TDNRmfr0f</li>
##   <li>COVID-19: Tackling<span class='match'> the </span>Novel Coronavirus | LSHTM https://t.co/GNYIyn40Jd</li>
##   <li>@FoxNews If I read your screen correctly, NY has 57% of all COVID-19 cases.</li>
##   <li>#Xbox clean up is so much fun #StayHome #COVID2019 https://t.co/9lyidiIkYt</li>
##   <li>@realDonaldTrump do you live in America? Do you really think Counties can take on<span class='match'> the </span>honor system and not abuse<span class='match'> the </span>“social distancing”? Or are you willing to sacrifice a few more dead bodies for<span class='match'> the </span>economy? You said “Zero deaths were acceptable”. Act like it #COVID2019 #CNN</li>
##   <li>AZCentral is reporting that gun stores in<span class='match'> the </span>Phoenix area have been cleared out in response to COVID-19. https://t.co/vGq65jj0S8</li>
##   <li>#COVID19 being defeated https://t.co/vUNDcaRk16</li>
##   <li>The Palestinian Ministry of Health illustrate how dire<span class='match'> the </span>situation is in Gaza: at least 45 percent of resources qualify as “scarce.” #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/dn3cg5m84S</li>
##   <li>@realFemiOtedola @iamlepso Nigerian Businessman pledges 1 Billion Naira to fight COVID-19 https://t.co/AVOJzZhitA</li>
##   <li>is it just me who feels asif nobody is talking about America when it comes to<span class='match'> the </span>coronavirus or am i just going insane lol #coronavirus https://t.co/NiV6SljHs4</li>
##   <li>Self-care in a trying time is not easy or in<span class='match'> the </span>front of our minds. If you’re on service, writing, Zooming, etc., take a break from #COVID19 to soothe yourself, even if only briefly, in your own way. For me, it’s music. @nprmusic https://t.co/xC2cMqNxS2</li>
##   <li>Hey, Denver! Tell me something. Who are you protecting by staying home and practicing  physical distancing? <U+0001F3E0><U+2764><U+FE0F><U+0001F44D><U+0001F3FE>Let’s see how many replies/retweets we can get<U+203C><U+FE0F>@CityofDenver #DoingMyPartCO #COVID19 https://t.co/jJIFvV3wWi</li>
##   <li>#cdnpoli
## #uspoli
## #coronavirus
## #CoronavirusPandemic
## 
## Donald Trump,<span class='match'> the </span>first person elected president on an unrevealed platform of "what does it matter, we're all going to die".
## 
## Opinion: The plague of Donald Trump /via @globeandmail https://t.co/7RVHT7lDgY</li>
##   <li>Want to get all<span class='match'> the </span>facts about COVID-19? Be sure to tune in to watch @Lilly interview Dr. Fauci in ONE hour! We’re premiering right now so go and grab a spot in<span class='match'> the </span>chat! #TeamSuper you can also donate to @UNICEF to help children and families <U+2764><U+FE0F>
## https://t.co/BxASltvNDB</li>
##   <li>#supplyteachers need help now #COVID19 #CoronaLockdown #CoronaUpdate #PrayForBoris #<U+0627><U+0628><U+0648>_<U+0646><U+0648><U+0631><U+0647> #hometasking #ImAwakeThisLateBecause https://t.co/5rbZh2JPVq</li>
##   <li>Keylingo’s Response To COVID-19
## #covid19 #covidresponse #aroundtheworld #heretohelp #heretoserve #translationservices #translation https://t.co/niLh1aGD5v</li>
##   <li>Addressing leaders of 96 cities around<span class='match'> the </span>world @ArvindKejriwal shared how Delhi aggressively pursued policy of identifying contacts of COVID-19 patients &amp; isolating them. He added, We cannot afford to lose a single life to Corona or starvation.
## 
## #KejriwalAtC40 https://t.co/DlmzmUJaaj</li>
##   <li>Also known as, my anxiety showing all<span class='match'> the </span>symptoms of covid-19. https://t.co/8RPqiBqwzi</li>
##   <li>Well this is not good. Now someone I know now has #COVID19. Thankfully I haven’t been in contact with her in<span class='match'> the </span>14 day window.</li>
##   <li>#IndiaFightsCorona: #NarendraModi Modi Shares A Young Girl’s Message
## #coronavirusindia
## 
## https://t.co/UumB6HMPZu</li>
##   <li>All hospitals in Ghana should be treating every patient as a covid-19 case until proven negative. Patients should be asked some basic questions at<span class='match'> the </span>door before being let in. Ambulance services should also ask these questions before they see or pick up a patient.</li>
##   <li>In order to support residents who are ‘shopping local’ for their essential food and medicine supplies, we’re ceasing all car parking charges in #Knowsley town centres with immediate effect. 
## Read all<span class='match'> the </span>latest updates about #Coronavirus in #Knowsley at: 
## https://t.co/HetwH2LVhy https://t.co/L1P1SKjwBB</li>
##   <li>The one good thing about #COVID<U+30FC>19: we are arresting youtube pranksters
## https://t.co/CfEVMIb53v</li>
##   <li>As we are unlikely to get tested if we don't fit into<span class='match'> the </span>category of travel or contact with a confirmed case, make sure if you get these symptoms to get medical help ASAP. Just fever, aches, a cough could be<span class='match'> the </span>flu. Still self isolate until well again. #covid19 https://t.co/GpSo1IJdaE</li>
##   <li>UNITED STATES COMPARED TO ALL OTHER COUNTRIES #CORONAVIRUS CASES.
## 
## This is terrifying and no end appears to be in sight. https://t.co/QsnGbv4Sy5</li>
##   <li>Covid-19: Governor Inuwa Yahaya’s multi-pronged measures and battle against coronavirus pandemic in Gombe https://t.co/iUGS9aQwgt https://t.co/3HPjm184di</li>
##   <li>EmployBridge Chief Workforce Analyst, Joanie Courtney, discusses where<span class='match'> the </span>jobs are while coronavirus shuts down<span class='match'> the </span>job market: https://t.co/jhOVIlFoC7 #COVID19 #Coronavirus #JobMarket #Economy</li>
##   <li>My #poem about<span class='match'> the </span>#coronavirus 'I feel a little stranger' https://t.co/IqjrIuQ9Xy #CONVID19  #wemustallgetbetter #poetry #Poetry_Planet</li>
##   <li>Hope everyone is staying safe! #COVID19 https://t.co/N2FyoC0OmC</li>
##   <li>@tribelaw Lack of Testing, Lack of Testing, Lack of Testing!
## 
## We aren't testing enough people
## We aren't testing many who have come into contact with possible COVID-19 peeps (Easter is coming)
## And we aren't necessarily testing those who were not tested before death to confirm cause</li>
##   <li>A Lawrence County Courthouse worker has tested positive for COVID-19, leading to<span class='match'> the </span>building being shut down entirely except for critical staff.
## 
##  https://t.co/E8eikVOOHU</li>
##   <li>That was a really interesting thread.  Did you see there's an @SlackHQ channel for doctors now: https://t.co/ycONMrvbtc #HITsm https://t.co/VBc10Bvynp</li>
##   <li>Wed (11) our team talked about #Covid_19 &amp; how to avoid being racist while talking about origin stories. We were all in<span class='match'> the </span>office (by choice). 
## 
## The WHO declared<span class='match'> the </span>outbreak pandemic.
## 
## Thurs (12)<span class='match'> the </span>dev team worked from home, as they do every Thurs. I went into<span class='match'> the </span>office.</li>
##   <li>New post on my blog: COVID-19: Nigeria Police vows to punish officers destroying properties in viral video (Watch) https://t.co/EAHS49PQUd</li>
##   <li>One of my friends has COVID-19 :(</li>
##   <li>U.S has more Covid-19 cases than China and Italy. That’s crazy.</li>
##   <li>@realDonaldTrump @WhiteHouse World super powerful man Shri. @realDonaldTrump Sir.Can U not able to kill #COVID2019 .
## It Means Human can Kill Human easily but not Virus. 
## My Suggestion to u all World Leaders:-please try to make hospitals Ventilators instead of atombomb
## @narendramodi @BorisJohnson @KingSalman</li>
##   <li>Ooo my former tv station got called out by our city manager for a misleading story. They made it sound like COVID-19 was present in<span class='match'> the </span>jail system. Idiots.</li>
##   <li>Larry Kudlow should be in jail for reckless endangerment of American lives. #COVID2019 #Covid19usa https://t.co/TQ7dv3A9Vr</li>
##   <li>https://t.co/G4uAqAp3rL f*cking #china</li>
##   <li>Lord, please help our scientists to find<span class='match'> the </span>right medicines for COVID-19.</li>
##   <li><U+0001F9E1> We have distributed Food Packs and Hygiene Kits to vulnerable families who have fled from danger in #Syria.
## 
## Not only are we distributing sanitary products, but we're raising awareness of how people can protect themselves from #Covid19.
## 
## <U+27A1><U+FE0F> Donate: https://t.co/Q5A1H3Gdid https://t.co/UJXcfOAUKv</li>
##   <li>@MKactor77 @georgegalloway I've been told they are testing for<span class='match'> the </span>Corona virus but not specifically<span class='match'> the </span>covid-19 strain.</li>
##   <li>Today<span class='match'> the </span>US surpassed China and Italy in confirmed COVID-19 cases.
## 
## https://t.co/OmrfjY15xo https://t.co/2j1K25rP9N</li>
##   <li>#COVID19outbreak: 18 people home quarantined in Davanagere. 2 test positive for COVID-19 in #Davanagere.
## 
## #COVID19India #COVID19 #Coronavirus https://t.co/3tMLE4T6tT</li>
##   <li>Gov Cuomo says NY State Legislative Session might end after April 1st following Passage of State Budget. 
## #NYState #Nassau #NewYork #NY #Albany #NYC #COVID19 #budget https://t.co/Pxi95gnZSw</li>
##   <li>@NayakRamkrishna @noconversion @sachin_karkera Will this cure patients of COVID 19? You would have saved human lives in Italy and could convert many of them to Hindu religion. Too late. @jimmymathew21</li>
##   <li>Bill Gates suggests a nationwide shut-down from 6-10 weeks for better and quick results.
## 
## Any person with common sense would agree. This is not dramatic. This is absolutely necessary for efficient results in response to rising cases of covid-19.</li>
##   <li>@funder I get all my #coronavirus briefings from America’s Governor, @andrewcuomo 
## 
## I will not listen to a word out of<span class='match'> the </span>mouth of @realDonaldTrump 
## 
## Because he is a lying madman.</li>
##   <li>This should have been put in motion last month. I’m appalled by how slow our country (1st world) is moving in regards to #COVID19 <U+0001F926><U+0001F3FB><U+200D>♂<U+FE0F> https://t.co/d8OTMHx2Aw</li>
##   <li>China Shuts Down All Cinemas, Again
## #COVID_19 #Coronavid19 #CoronaVirusUpdates #CoronaOutbreak #CoronaVirusitaly #Iorestoincasa  #covid_19italia #epidemia
## 
## https://t.co/CowW0BFF6t</li>
##   <li>So according to<span class='match'> the </span>douchebag Governor of my state of MS, he said they are coming to my county of Desoto tomorrow with<span class='match'> the </span>national guard to administer #COVID19 testing to residents who “have symptoms”
## My county has<span class='match'> the </span>highest number of cases. MS don’t care about it’s people!</li>
##   <li>Animals left alone in their natural homes don’t spread disease to humans. But when we encroach on and destroy their homes and poach them for wildlife markets, viruses and diseases such as #COVID19 can be unleashed. #TWGI                       https://t.co/UTlHeQmycx</li>
##   <li>After all this COVID-19 outbreak I pray I don’t develop an OCD disease <U+0001F615> (obsessive-compulsive disorder)::::meaning someone suffering repeatedly from washing hands and cleaning everywhere every minute <U+0001F61E><U+0001F61E><U+0001F61E> #WashYourHands #StayAtHomeAndStaySafe</li>
##   <li>Following increased pressure on<span class='match'> the </span>Government to intensify support to businesses affected by<span class='match'> the </span>economic fall-out from<span class='match'> the </span>COVID-19 crisis, a new scheme has been announced https://t.co/zGDGjIuB65 https://t.co/t0BkGriJCC</li>
##   <li>Watch our live-stream on Friday of #PopeFrancis in prayer for<span class='match'> the </span>end of #coronavirus in<span class='match'> the </span>world, through Eucharistic Adoration and an extraordinary Urbi et Orbi Blessing. A plenary indulgence has been offered.
## 
## Watch here:
## https://t.co/5Gqmumowq1 https://t.co/eBEz4l5g6N</li>
##   <li>@thehill @kayleighmcenany Shameful is POTUS @realDonaldTrump withholding critical information about seriousness of COVID 19 that could have saved thousands of lives. Shameful is defending someone who is heartless, remorseless, cares only about himself and his money.</li>
##   <li>@Vijayabaskarofl @MoHFW_INDIA @CMOTamilNadu @Vijayabaskarofl Dear sir, hatsoff for your efforts to curtail Covid 19. The new CRRI's who has to report for their duties from their home town needs vehicle arrangements.  Kindly ensure arrangements for their travel from home town to their rrspective medical hospital.</li>
##   <li>Climbing<span class='match'> the </span>Deadly Curves of COVID-19 and Capitalism - https://t.co/xH5lHI3B2V https://t.co/qSKe2uaDiw by @NatCounterPunch</li>
##   <li>New post: "An ER Doctor Describes What It's Like to Treat Covid-19" https://t.co/n6YRP42iq4</li>
##   <li>@health_z_wealth Not really!! 
## https://t.co/d1jfm0fxu0</li>
##   <li>The events industry is stepping up in<span class='match'> the </span>fight against COVID-19 <U+2014> here's how
## 
## https://t.co/GfKpd2SV0x https://t.co/QX9twEr0zE</li>
##   <li><U+0001F4F9> | Police in<span class='match'> the </span>French capital Paris applauds<span class='match'> the </span>medical staff at Clamart Hospital for their work against<span class='match'> the </span>#coronavirus in<span class='match'> the </span>country 
## 
## https://t.co/WoSNqDy667</li>
##   <li>Guneev Bhinder and Brad Hanna examine implications of<span class='match'> the </span>Province's order that temporarily suspends<span class='match'> the </span>operation of any limitation provisions of a statute, regulation, rule, by-law or provincial order. #Ontario #McMillan #covid19 https://t.co/USX0xxHIoM https://t.co/mB4dhb0nXp</li>
##   <li>Thank you to all<span class='match'> the </span>nhs staff and also<span class='match'> the </span>key workers too.
## 
## #COVID2019 #clapforourcarers https://t.co/2GeKHXvDeh</li>
##   <li>Saving Seafood’s Fisheries Coalition will work to ensure federal #coronavirus aid “will flow fairly &amp; equitably across regions &amp; fisheries,” says executive director Bob Vanasse. https://t.co/t31chMjxjg</li>
##   <li>I’m on leave from work due to #COVID19 and literally have been contacted every day of<span class='match'> the </span>7 I’ve been out about troubleshooting silly problems. How do I go about reclaiming my PTO hours, since I’ve easily spent several doing work of some sort...</li>
##   <li>Rep. Massie defending his expected decision to force lawmakers back to Washington for a vote on<span class='match'> the </span>#covid19 stimulus bill, which is expected to pass by a wide margin anyways https://t.co/ADizkHiGLu</li>
##   <li>Indianapolis 500 postponed until August because of COVID-19</li>
##   <li>#Iran making progress in search of new funds to fight #coronavirus: Chief banker https://t.co/HVs58wr9te https://t.co/ZPh3RzWU5o</li>
##   <li>NIGHT RECAP: Sheltered in their homes,<span class='match'> the </span>team behind<span class='match'> the </span>@RollingStone Music Now Podcast improvises to keep<span class='match'> the </span>content coming. 
## https://t.co/pTiLUnrJmS 
## 
## #Podcasting #proaudio #covid_19 #coronavirus @SIRIUSXM #podcastpro https://t.co/GUrOQ35lCC</li>
##   <li>Why does @CNN have a commercial for an over<span class='match'> the </span>counter medicine for dry cough at this moment while Anderson Cooper has been interviewing Dr. Fauci and Bill Gates, among others, about #coronavirus</li>
##   <li>In<span class='match'> the </span>news: What's Inside The Senate's $2 Trillion Coronavirus Aid Package https://t.co/eKUAQSMZ74 #coronavirus #COVID19 #2019ncov</li>
##   <li>Wise words from our city...from over 100 years ago! #coronavirus #coronapocolypse #globalpandemic #Louisville #Covid19usa #CoronaLockdown https://t.co/PfWLgqOHUk</li>
##   <li>A woman talking to her loved one in a care center through a window here in central Nebraska. Pray for those confined and unable to see loved ones in<span class='match'> the </span>hospital/care facilities. 
## 
## #COVID<U+30FC>19 #coronavirus https://t.co/PUkGDpimCk</li>
##   <li>@WallStCynic Why indeed.    
## 
## #CoronaLockdown #COVID19 #MAGA</li>
##   <li>Take a look
## #coronavirus #Covid19usa #COVID19 https://t.co/rfeQKTbaOO</li>
##   <li>New stickers spotted around town https://t.co/Po2rtIjHeK #covid #coronavirus #lifeundercoronavirus #Austin #AustinSolidarity #austincovid #austintx #austintexas #ATX @ North Loop, Austin https://t.co/Ke9SJwYyz7</li>
##   <li>67 more B.C. COVID-19 cases, two more deaths in Vancouver region https://t.co/IbFwHnl1tR</li>
##   <li>Maharashtra: COVID-19 count shoots from 125 to 156 in 24 hours https://t.co/6nyuisEgkt</li>
##   <li>The number of positive cases of COVID-19 reported in Washington has grown to 3,207. That’s a 24% increase from yesterday.
## 
## https://t.co/wkuyngRe8N</li>
##   <li>All health field workers: thank you!!!
## Tradespeople: thank you!
## “Essential business”: far too many on this list aren’t “essential” at all.
## Keep washing your hands <U+0001F64F> #COVID19</li>
##   <li>Prevent<span class='match'> the </span>Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/yEkRa0HUOr</li>
##   <li>Global #travel may become more challenging. Don't be left behind. Contact us for your #free consultation. Email info@wisiagent.com
## 
## #immigration #WISI #secondpassport #visafree #COVID19 #Dominica #ThankfulThursday https://t.co/iYODjoQkbg</li>
##   <li>#CoVID 19: Continental contagion_ Africa woefully ill-equipped to cope with  https://t.co/cIk79bXNVK</li>
##   <li>Video: Coronavirus News: The latest on<span class='match'> the </span>covid-19 outbreak - 3/27 (FULL LIVE STREAM)
## https://t.co/Xhz7ZRA244</li>
##   <li>NAEMT issues call to action, demands federal COVID-19 support for EMS https://t.co/sC8EXO94GI</li>
##   <li>Watch @outlaw_renegade's broadcast: covid_19  is being used against you. https://t.co/jP0E0LBfqQ</li>
##   <li>So proud! Even in times of such uncertainty. Acorns Children's Hospice have remained committed to support some of<span class='match'> the </span>most vulnerable members of our community whilst also supporting our amazing #NHS #proud #covid19 https://t.co/qRSIPReu4v</li>
##   <li>#BuildBorderWall #ksleg
## 
## At least 502 people in Missouri have tested positive for COVID-19, a 41% jump in one day https://t.co/e9Avjw2BmU</li>
##   <li>Investment Scheme Advertising Covid-19 ‘Cure’ Leads to Arrest https://t.co/uYpsoEKjNw #fraud "#patent"</li>
##   <li>@realDonaldTrump @generalmotors @Ford Stress of Covid 19 getting to you? Governor Cuomo has your back. Call 1-844-863-9314 for emotional support. It’s<span class='match'> the </span>least New York can do for you.</li>
##   <li>The USA just climbed to<span class='match'> the </span>#1 spot of<span class='match'> the </span>country with<span class='match'> the </span>most COVID-19 cases. Even with limited testing.
## 
## 13,732 new cases just today.
## We could have prevented this with widespread testing at<span class='match'> the </span>start.
## 
## Trump’s incompetence is killing people (and jobs). https://t.co/dVG09s0aOM</li>
##   <li>Bahrain, Belgium report coronavirus treatment touted by Trump is working for patients | Just The News https://t.co/VKC7iH8IWp</li>
##   <li>@TempletonWorld Shout-out to my rockstar twin sister, @Blargsky, who is researching COVID-19 antibodies at @WUSTLmed.</li>
##   <li>A Distance Learning Resource Repository for continuing grade school education during<span class='match'> the </span>COVID-19 shutdown is now available!  Should more resource links be added?  Please retweet &amp; leave suggestions as comments!  https://t.co/2CqdjZqSEK
## #HCPSS #HoCoMD #COVID19 #DistanceLearning</li>
##   <li>#Coronavirus: Italy reports 919 virus deaths in one day <U+0001F637>
## 
## Pray for Egypt
## Pray for Italy 
## Pray for Spain
## Pray for US
## Pray for UK
## Pray for Germany
## Pray for KSA
## Pray for Jordan
## Pray for Iraq
## Pray for Turkey
## Pray for Iran
## Pray for Pakistan
## Pray for India
## Pray for<span class='match'> the </span>world <U+0001F64F></li>
##   <li>@Inevitable_ET @dee_sojournal @shawn_mcadoo @Lilpoo404 @OCDrises @Covid_19_UK Israeli Secret Intelligence Service</li>
##   <li>Best thing about #Contagion being screened during<span class='match'> the </span>current climate? It dis-spells<span class='match'> the </span>notion of Corona being brought about by a tin of bat soup being consumed... #SpoilerAlert #COVID2019 #staywoke</li>
##   <li>Who needs #masks in bulk? 
## 30M #3m 1860 in<span class='match'> the </span>UK 5$ 
## 10M  3M 1860 in #Singapore 5$ 
## 10M  3M 1860 in #Japan 5.60$
## 20M 3M 1860 in Singapore 5.50$ 
## 30M 3M 1860 in #Malaysia 5.37
##  #n95masks #n95 #coronavirus #covid19 
## 
## Need loi and pof
## Contact me via WhatsApp or cell
## +19024497613</li>
##   <li>Keep #DoingMyPartCO to stop<span class='match'> the </span>spread of COVID-19! Per @GovofCO, https://t.co/bU7N3LOgie has raised $7.7M from nearly 4K individuals/foundations/companies. 9K+ volunteers, including 2K health care, have signed up. Apply for relief funds up to $25K at https://t.co/J8h2uKfuUl https://t.co/KIc4CEdw81</li>
##   <li>Coronavirus: US House passes $2 trillion economic relief bill as American cases spread #Coronavirus https://t.co/Se5FPPSs0m</li>
##   <li>'Chaos and panic': Lancet editor says NHS was left unprepared for Covid-19 https://t.co/Lx5a7GsNCI</li>
##   <li>NCDC Confirms 5 New Cases Of Covid-19 In Oyo, Abuja https://t.co/JYW6dKARLn https://t.co/aiZXn4enTj</li>
##   <li>@HarvardBiz explains how you can still manage your team during this time of social distancing https://t.co/glfisE1rpt #SocialDistancinguk #coronavirus #teamwork https://t.co/4kjxipMz71</li>
##   <li>Current status of #coronavirus in India <U+0001F1EE><U+0001F1F3>
## To get more updates please do follow our page.#mediflic
## #staysafe #stayhome #COVIDIDIOTS #CoronaUpdate https://t.co/1CF49CTnrn</li>
##   <li>Councils and Health Professionals urge smokers to #QuitForCovid  https://t.co/TRajkRbjzI</li>
##   <li>@curexcomplex If you’re gonna help with #COVID19 you need your sleep. This is your last abode for your most valuable asset: your mind. Do not encroach on it.</li>
##   <li>China, have mercy on us. https://t.co/YEZDPiGOc4 by @kvh0117</li>
##   <li>@samarasiri Like SGTi-flex COVID-19 (kit)? Is it available for research use only? Isn't for use in diagnostic procedures</li>
##   <li>A catalyst for change: The impact of COVID-19 on Chinese consumers https://t.co/hTz62lEgI7 via @YouTube</li>
##   <li>COVID-19 exposes gaps in cybersecurity safety net as millions work from home https://t.co/lAykdsgGmk   
## #COVID2019 #CyberSecurity #WorkFromHome #hacking2020</li>
##   <li>Changing your #TravelPlans because of #COVID19? Check out our list of links to<span class='match'> the </span>latest policies from #airlines, #cruise lines, #hotels &amp; other #travel operators | https://t.co/6r9Ji5PoOv | https://t.co/5JStsglIQi</li>
##   <li>Watch a doctor demonstrate how to safely bring groceries home during<span class='match'> the </span>#CoronavirusPandemic #CoronavirusOubreak https://t.co/3ptklGGdLQ - Be smart, be safe, my fellow humans. We can still be AMAZING #TogetherAtHome #TogetherApart #ThisTooShallPass - Really! ;0</li>
##   <li>Charles Owino this kind of reasoning belongs to colonial chiefs, When humanity is threatened by a strange disease all U could think will make pple fear are police Cells....boss what are Police Cells compared to COVID-19?
## #coronaviruske #CurfewinKenya https://t.co/cWCXsKJQjx</li>
##   <li>Our researchers and our staff are working from home, but we continue to work diligently on behalf of our partners and projects. Our community-focused research projects have an impact around<span class='match'> the </span>state in helping people during times of disaster.  #NUforNE #NUPPC #COVID<U+30FC>19 https://t.co/zJJCEbvxnC</li>
##   <li>Let’s face it, we are all having to find our way during<span class='match'> the </span>COVID-19 health crisis. Here are a few tips for handling work and kids during COVID-19 isolation from Stephanie Pappas a Contributor to Live Science. https://t.co/RYlm2wvD2Z #covid19us https://t.co/R3a3H9nR8O</li>
##   <li>COVID-19 related phishing attacks record massive 667% spike: Report https://t.co/yTK3RVfhe2</li>
##   <li>When you cannot write<span class='match'> the </span>word COVID-19 in a story without inserting a hashtag before it. #Twitteroverload #COVID19 https://t.co/tx99CH4I81</li>
##   <li>@mayorcantrell LOL imagine being so stupid you couldnt make your own decision. BTW, any one who got #covid19 at mardi gras would have shown symptoms a month and a half before now. You are gross and should be removed from office. #femaleraynagin</li>
##   <li>As we pass<span class='match'> the </span>100k mark of covid-19 cases here in<span class='match'> the </span>US it’s worth taking note of a few things: 
## 
##  1/11</li>
##   <li>#Classof2020 For an Associated Press story, I'd love to hear from #College seniors going thru unusual hardships, loss, uncertain futures, etc, in<span class='match'> the </span>wake of #COVID19. Tell me your story: mdale@ap.org.</li>
##   <li>Physical distance from others but stay socially connected.
## Get fresh air. 
## Wash your hands frequently.
## Support your local, independent restaurants.
## Shop for<span class='match'> the </span>vulnerable.
## Keep working toward your dreams.
## 
## #covid_19 
## #transformyourlife 
## #beyourbestself
## 
## https://t.co/CiAQiosPlp https://t.co/EvqH342Kl6</li>
##   <li>.@adriandix BC's addition minister @DarcyJudy will be out with detailed info on safe supply here in BC.
## #bcpoli #covid19 @news1130</li>
##   <li>B.C. man returns to isolation in China nearly two months after fleeing COVID-19 scare https://t.co/ufHwD46uAE</li>
##   <li>Oops.
## https://t.co/FVWroKbBi1</li>
##   <li>A Lord Of<span class='match'> the </span>Rings podcast with @Gene_Lyons_  @Dick_Ebert  @Roger_Roeper  from @ShatOnTV  could cure COVID-19.... maybe not but it could fix my Quarantine insanity.</li>
##   <li>Warning on<span class='match'> the </span>use of unproven treatments (including Hydroxychloroquine, Azithromycin, and Colchine) for #COVID19 by @cpsbc_ca @BCPharmacists @BCnurses https://t.co/Lkz1DmPi7O</li>
##   <li>Down cycles make #entrepreneur take deeper roots.
## 
## #startup #COVID2019 #CoronaLockdown #business #FridayMotivation</li>
##   <li>16 years old girl died in Paris
## #CORONAVIRUS https://t.co/fDnx1LovAs</li>
##   <li>QBS is actively monitoring Coronavirus (COVID-19) developments. We have compiled valuable resources for you to utilize as<span class='match'> the </span>Coronavirus situation continues to evolve. 
## 
## Learn more about our #COVID19 List of Resources here: https://t.co/se5expHm8s</li>
##   <li>After all this quarantine and COVID-19 sh*t is over, I think it's about time for you to realize that you deserve me.</li>
##   <li>Stay Safe and Stay Healthy!
## 
## #EMWorks is fully committed to helping<span class='match'> the </span>engineering community during COVID-19 crisis and is vigilant to<span class='match'> the </span>changing circumstances. 
## 
## For more details visit https://t.co/G9PM2XqjrN
## 
## #coronavirus</li>
##   <li>Kashmir's #Blocked Internet Could be #Deadly During #Coronavirus Pandemic: RSF https://t.co/yA0AGLVdNh https://t.co/ojFUDZmMVP</li>
##   <li>In<span class='match'> the </span>actual Covid-19 crisis, sharing information is of extreme importance to learn and improve for now and<span class='match'> the </span>future. EUSEM wants to stimulate this by using its network and facilitate<span class='match'> the </span>transference of experiences between participating members from all over Europe.</li>
##   <li>Our live Webinar tomorrow for Egyptian physicians on COVID 19 , we hope to host 700 attendees interactively , registration link https://t.co/9K5e9AnIiN</li>
##   <li>@GregAbbott_TX what do you mean everybody should get back to work and spread more covid-19. We just past china and Italy with<span class='match'> the </span>most cases in<span class='match'> the </span>world. We need to shut everything down and we need to do it now. This is already so out of  hand because yall worry more about the</li>
##   <li>Since Trump is just randomly calling up sports media people who know nothing about virology or pandemic containment about their Covid-19 hot takes, should I wait for a phone call or nah?</li>
##   <li>Uncertainty can create stress and anxiety, especially when we don't generally feel safe. Many people are worried about COVID-19, and mental health can suffer.
## 
## Ways to cope include:
## o   limiting exposure of news
## o   sharing concerns with friends or family…https://t.co/ukLN1GAg9R</li>
##   <li>Good to know. I was wondering about that<U+0001F914> #COVID2019 https://t.co/hTZsfwJlbm</li>
##   <li>Wow this whole COVID-19 situation had me kind of...yearning <U+0001F60F></li>
##   <li>Who<span class='match'> the </span>hell can watch TV shot in<span class='match'> the </span>Old World?  No masks, no distancing, no hand washing.
## 
## #coronavirus #COVID19 #tFv https://t.co/zqYTKylPbk</li>
##   <li>EDITORIAL:
## COVID-19 Is Killing The Case For Socialized Medicine 
## .
## https://t.co/wm8FthdLqX</li>
##   <li>The press was decimated by @Facebook, @Google with their DIY ad platform that small and local advertisers began using instead of local papers.
## 
## To claim that COVID-19 or this President have anything to do with that is hard to stomach.
## 
## Be mad at<span class='match'> the </span>anti-humanist tech douches. https://t.co/0yrxO8Y2rd</li>
##   <li>I heard people are already moving oh .. #lockdown #COVID19</li>
##   <li>Okay I am tired of this shit. Just because #COVID<U+30FC>19 came from china don’t mean y’all call it “cHiNeSe ViRuS”. Y’all know it’s called “#CORONA” but y’all racist ass wanna be like that #ChineseVirus19 and y’all know it has so many names other than that</li>
##   <li>Calm down. You don’t need a #COVID19 test if it’s just sniffles. https://t.co/3jrRf6lFZs</li>
##   <li>$GM NEW ARTICLE : Trump orders GM to start ventilator production for COVID-19 amid contract dispute https://t.co/rvTGGVmwNg Get all<span class='match'> the </span>latest $GM related news here : https://t.co/ikNISAP6Zp https://t.co/XfQX0UEFpo</li>
##   <li>WFH got me tryna find my good side for all<span class='match'> the </span>Zoom conferences <U+0001F4F8>  #covid_19 #covid #wfh #workfromhome #workfromhomelife #dubstep @ Austin, Texas https://t.co/LOEzvP5akl</li>
##   <li>WTF , this is my screen on a Thursday night <U+0001F62D><U+0001F62D>
## Fuck you #CoronaVirus https://t.co/zArQTOhekK</li>
##   <li>Police departments across<span class='match'> the </span>U.S. are taking a lead role in enforcing social distancing rules that health officials say are critical to containing COVID-19. https://t.co/sa8stF3izV https://t.co/j0VK5KzReu</li>
##   <li>Elanco supports organizations and #foodbanks in communities including<span class='match'> the </span>European Food Banks Federation #WeAreElanco #coronavirus <U+2066>@EuroFoodBanks<U+2069>  https://t.co/sRB3YzWaTC</li>
##   <li>His congressional salary should be cut for this stunt #COVID19 https://t.co/bWu3UayjVi</li>
##   <li>@X22Report 666-19 aka COVID-19 is going down.  . https://t.co/qczqf3wi28</li>
##   <li>example "O2 saturation is 90% on room&amp; 95% on 8 litres of oxygen via non-rebreather mask." a case on 23/3 https://t.co/YHt7E6mE8x after 8 liters on 95% via non rebreather mask #nl #rutte3 #who https://t.co/NBBFHKD2ue cant that be done at homes? that would save spreading&amp; space</li>
##   <li>“The UK death toll rose by 181 to 759,<span class='match'> the </span>highest day-on-day increase so far, and<span class='match'> the </span>rate of infection has been doubling every three to four days. Michael Gove announced that 113,777 people have now been tested for Covid-19; of those 14,543 have test…” https://t.co/N9JWp9hTeY</li>
##   <li>@RobinVe97767932 Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs.</li>
##   <li>@maddow just wondering, no news channels are talking about how trump had those hats made in China. He refused to give that business to an American co. How is that okay. And try and call covid 19<span class='match'> the </span>Chinese virus. This man is crazy.</li>
##   <li>@WHO how should we, as citizens, act if<span class='match'> the </span>"official" data is not to be trusted?
## 
## #COVID2019 #CoronavirusMx #BREAKING https://t.co/UwtbNG6U3e</li>
##   <li>#coronavirus family highlight -<span class='match'> the </span>boys swimming in<span class='match'> the </span>Rivanna River, ample social distancing aided by totally freezing water. https://t.co/U9wBr3kryU</li>
##   <li>#coronavirus | #scams | coronavirusscams | Scams spreading along with COVID-19 https://t.co/qidtlzY9yy https://t.co/qAfzRqnGtq</li>
##   <li>who is coming with<span class='match'> the </span>limited edition Covid-19 flavor first, Oreo or Lays?</li>
##   <li>Definitely didn’t want to be #1 in this 
## 
## #COVID19 https://t.co/qYgfJYzTtI</li>
##   <li>An important read from @Adlers1 and @HIVIreland https://t.co/MhKWa4i6tM #mpower</li>
##   <li>I’ma start a petition about how cable should be free or refunded during this #COVID19 nothing is on</li>
##   <li>Major players in<span class='match'> the </span>pickup and delivery segment, like Amazon, are facing big changes amid<span class='match'> the </span>COVID-19 outbreak, including shifts in delivery volume as millions of people across<span class='match'> the </span>U.S. shelter in place and avoid going out into public to work or shop. https://t.co/g1A13IwcdK</li>
##   <li>Governors need federal help fighting coronavirus, and<span class='match'> the </span>cost is stroking Trump's ego https://t.co/svSRsYbrfF</li>
##   <li>South Heartland District Health Department announces two additional COVID-19 cases: https://t.co/CKyzDtgO2A https://t.co/oIOXkHYZMo</li>
##   <li>@NCDCgov  should not forget some people are  asymptomatic carriers
## I don't think anything should stop people from getting tested 
## There are billions of donations already
## Every life count...#covid-19#</li>
##   <li>No resident doctor should be posted at any #COVID19 facility without undergoing<span class='match'> the </span>"essential" training module being conducted by hospital infection control teams, said<span class='match'> the </span>Union Health Ministry.
## https://t.co/wu3mLaAQii</li>
##   <li>Asses. Respond. Mitigate. Recover. https://t.co/7lKWTUQoI3</li>
##   <li>@ToscaAusten @SusanCTurlingt1 @IngrahamAngle Since America has<span class='match'> the </span>third largest Chinese population in<span class='match'> the </span>world and since those heavy populations are in Elmhurst Nassau Suffolk NY and #Florida Broward Miami West Palm Orlando #Seattle #coronavirus #ChineseVirus seems related #COVID19</li>
##   <li>Thinking about #onlinedating ? We want you to stay safe! https://t.co/IhgIgpt67y #SocialDistanacing #COVID19</li>
##   <li>Here is a sad poem by our GI fellow #DaneCook on #COVID19 affecting training. #GItwitter #MedTwitter
## A thread...</li>
##   <li>@Beccamurr @pfc_joker In #Libya, evidently, they figured out how to make #Covid19 (heat resistant) ammo</li>
##   <li>Must Read for all political geeks. The Liberal world is crumbling before our eyes! #OneNation #coronavirus https://t.co/9WYEUzEtUd</li>
##   <li>Edinburgh (Royal Mile, Princes Street) On Covid-19 Lockdown (2020) https://t.co/REeauZ997V via @YouTube</li>
##   <li>Is #russia trending because everyone is calling BS on theirs and China’s #covid-19 numbers by any chance?</li>
##   <li>CuriousAngel: Tell Congress: Don’t let Trump arrest people indefinitely during<span class='match'> the </span>COVID-19 pandemic! https://t.co/GZ7Cs9kV0O</li>
##   <li>@DrTomFrieden #blowhard. @DrOz don't have Thomas Frieden on again. Full of hot air critical of @POTUS but few  solid suggestions. Less talk, more action. He's another biased #BarackObama appointee looking to slam @realDonaldTrump Stop playing politics with #coronavirus   #DrOz</li>
##   <li>STANCOVID19 Message https://t.co/F32yw3tKgy Stanislaus County reports 17 have tested positive for #COVID19 No Deaths Reported #Coronavirus</li>
##   <li>@luigi_warren @Barnes_Law @CFieldofDreams @ClayTravis We have a flu vaccine. And<span class='match'> the </span>CFR for flu is 1/10 Covid 19. Pretty easy to justify actually.</li>
##   <li>@matthew_d_green @mattblaze You mean every single person that attended<span class='match'> the </span>last #Ethereum conference came down with #COVID2019? Is that correct?</li>
##   <li>It's very emotional and heart touching to see all<span class='match'> the </span>people saying Ameen in one voice when Imam Sahib prayed against<span class='match'> the </span>Corona virus and to see people calling aazan in night.. Pray that we will always be together even after this calamity is gone.
## #COVID2019
## #unity
## #Muslims</li>
##   <li>Davido’s fiancee, Chioma, now on COVID-19 victims’ list https://t.co/OWweXRWzBi</li>
##   <li>@DeltaCargoATL hello,please I have just been over charged by $55 by your personal at PTI airport office in GSO,NC,I need help getting my money back ASAP ,cause it gonna go a long way in this time of covid-19. Hope someone will reach out to me thanks</li>
##   <li>As on March 27, India can spare just a little over 14000 ventilators with Tamilnadu (4177) &amp; Mah, AP over 1000 each, other states have less than 1000 for #COVID2019 isolation @businessline @srinivasanravi @sharmasupriya
## @RemaNagarajan
## https://t.co/urCsFKM7NV</li>
##   <li>"How to distinguish COVID-19 symptoms from allergies and<span class='match'> the </span>common cold"  https://t.co/gig1Me4pWC</li>
##   <li>Kind attention @CMOTamilNadu
## &amp; @Vijayabaskarofl wake up n act 
## #CoronaUpdate #StayHome
## #lockdown #COVID
## https://t.co/mGkuBEK0gF</li>
##   <li>indonesia is<span class='match'> the </span>only southeast asia country here and its absolutely terrifying, but do you have any good news abt our updates on fighting covid-19? https://t.co/Dr18I5SXzM</li>
##   <li>.@michaelgove @UKgovcomms and most of Westminster/London/English political and health spokespeople still peddling misleading messages about #coronavirus. There is no 'country', 'nation'. You are deliberately excluding #Cymru #Wales #Scotland and north of #Eire #Ireland</li>
##   <li>A quick update from Mayor Tom Brady about Covid-19. https://t.co/vm2t5vRclh</li>
##   <li>@HathwayBrdband we are all working from home. Pls don't let us down. Speed must be good enough. Thank you!
## #work #WorkFromHome #coronavirus #COVID2019 #StayAtHomeSaveLives</li>
##   <li>The moment I realized that I'll be a year older by<span class='match'> the </span>time they let me outta this MF'n house...thanks #COVID19 ! Working from home SUCKS! https://t.co/fJ0YJleAq6</li>
##   <li>1- Airborne 
## 2- hemorrhagic fever 
## 3- hysteria 
## 4- psychosis
## 5- anxiety
## 
## Human extinction in 5 mutations... still want to go out and party? #CoronaLockdown #COVID19 #CoronaUpdate #Quarantine #CoronaCrisis</li>
##   <li>Ventilator vs. respirator, quarantine vs. isolation: Covid-19 pandemic terms, defined https://t.co/48OmKl3gko via @voxdotcom</li>
##   <li>COVID-19: Lagos Assembly passes law to jail lockdown offenders https://t.co/JssAbKzuDs https://t.co/jpryuxDMXx</li>
##   <li>Our partners never stop working! @WDNArgentina held a virtual meeting today to discuss how<span class='match'> the </span>#COVID19 crisis is affecting women in<span class='match'> the </span>country, as well as ideas and strategies to overcome those challenges. https://t.co/tL9kkxRez9</li>
##   <li>So glad I’m able to take two weeks paid time off to help my folks and watch my daughter. But FFS I’m gonna gain 50 lbs by<span class='match'> the </span>end of it. I cannot stop eating. #CoronaLockdown #SelfIsolation #COVID19 #Covid19PigOut #NonStopEating #CoronaFoodBinge #QuarantineWithGirlScoutCookies</li>
##   <li>5 Ways To Rethink #CustomerExperience In The Face Of The #COVID19 via @kerrybodine 
## QUI TAKEAWAY: Just do<span class='match'> the </span>right thing. Spotlighting @zoom_us.
## https://t.co/KCfnjcAM2r #CX</li>
##   <li>As antibiotic resistance becomes a global challenge, developments such as these, which could lead to potential treatments for infections, are welcomed.
## 
## #cannabis #marijuana #antimicrobial #COVID19 #Coronavirus https://t.co/ZYDSyR54B7 https://t.co/sTBvAq7i01</li>
##   <li>BC announced a list of essential services. These #bcbiz are encouraged to remain open to preserve life, health, public safety and basic societal functioning while following PHO guidelines to ensure safe ops and reduce<span class='match'> the </span>risk of transmission of #COVID-19. https://t.co/ve7H1WVYd1 https://t.co/2vCiOD2qgM</li>
##   <li>Coronavirus (COVID-19) Resources for Photographers (UPDATED 3/26/20) https://t.co/Co6sGoOVsU</li>
##   <li>Looking for a podcast to answer your questions about #COVID19? Decided our Petri Dish Minisodes on #SARSCoV2 are too stupid or profane or NSFW? Check out this much more intelligent and acceptable alternative! https://t.co/24qYDgpmCA</li>
##   <li>@SethAbramson Cases in WA are doubling approx. every week. We are at nearly 4K cases.<U+0001F9A0>s are not political! trump is heinous! <U+0001F92F><U+0001F92C>#WashingtonStrong #COVID19 #CoronavirusOutbreak #COVID #TrumpMadness #COVID2019 #TrumpVirus2020 #WeGotThisWA @GovInslee @PattyMurray @MariaCantwell @RepDennyHeck https://t.co/YDjl20k33P</li>
##   <li>Apple releases COVID-19 app, website based on CDC guidance - https://t.co/18FY5eQ1Mm
## #technews #techison https://t.co/EqqtJfBbQs</li>
##   <li>Saw this in a FB group today - a woman offered if u need groceries, I will park my car right beside yours. You leave your kiddos in your car with snacks and I will guard them with my life. #PhysicalDistancing. If needed, I would fly out of my car ♡ #caremongering #COVID19</li>
##   <li>COVID-19 or Master-Kit?
## 
## Among more than 150,000 users of MasterKit, there are no infected Corona-Virus!!! 
## Master Kit will help you achieve results in a more efficient way.
## Learn more here https://t.co/YKh0udyNwP
## 
## #masterkit #covid19 #coronavirs #virus #psichology https://t.co/bmIDtwEK0t</li>
##   <li>Ireland heading for recession this year as Covid-19 hits economy, ESRI warns https://t.co/qQWYmfzPY6</li>
##   <li>In an alternate universe where Covid-19 wasn’t a pandemic, Aaliyah just announced she was dropping her 14th studio album<U+0001F49E></li>
##   <li>If I keep eating all<span class='match'> the </span>carbs at home and gain<span class='match'> the </span>#COVID19, then I am going to need to see what all<span class='match'> the </span>fuss is all about with these SPANX leggings. 
## 
## affiliate link: https://t.co/KCEhKe8IQA https://t.co/25CoZ1J1CU</li>
##   <li>It’s hard to believe you’re saying that as well. Looking at your track record, you’re not going know who you’re talking to.  #SadButTrue #COVID19 #coronavirus https://t.co/uIaxHqqPWM</li>
##   <li>1/ As most of us #StayHome to help slow #COVID-19, we're fighting boredom too! And despite our best efforts to focus on something productive (like learning Chinese), it can be hard to concentrate.</li>
##   <li>this is<span class='match'> the </span>maps on Indonesian COVID-19 https://t.co/4LvEqkDWCG</li>
##   <li>It's 80° in Tennessee today,  nobody is staying home.  When are you going to do something, Governor @GovBillLee? 
## 
## Your prayers aren't working,  and these #COVID19 Covidiots are gonna keep this thing going until they cost us football.</li>
##   <li>#NeeraTandenisaLiar
## 
## The Sanders campaign wanted<span class='match'> the </span>primaries postponed due to COVID-19, told voters<span class='match'> the </span>truth about<span class='match'> the </span>risks, and asked people to follow their consciences. @neeratanden knows this, but she doesn't care about<span class='match'> the </span>truth. She only cares about smearing Bernie. https://t.co/5g1Zae5pu4</li>
##   <li>#NSTsports Dybala says #Covid19 left him struggling for breath https://t.co/8Uze4N4Ios</li>
##   <li>There are now 8,825 confirmed #COVID19 positives statewide, with 108 deaths... Backlog for testing is about seven days... 1,872 people are awaiting results https://t.co/yyCiF4yQf2</li>
##   <li>There are now 7 confirmed cases of #COVID-19. It important that we adhere to<span class='match'> the </span>21 day lockdown as announced by @edmnangagwa, as we continue to fight against<span class='match'> the </span>virus.
## Remember to practice good personal hygiene &amp; wash hands frequent with soap &amp; water. Unity of purpose is key https://t.co/wKQFNWJdo1</li>
##   <li>Great webinar from<span class='match'> the </span>#CDC on underlying medical conditions in patients with #COVID19: some take-home points are 1) do not discontinue ACEI and ARB in pts with HTN 2) no evidence to recommend against taking ibuprofen 3) obese young people are at higher risk 4) smoking is a risk. https://t.co/KGwLMHD62L</li>
##   <li>#Coronavirus death rates in<span class='match'> the </span>U.S. are lower in our Country now because our hospitals aren’t as over-stressed as other places and we still have supplies and equipment. Things could change rapidly if we don’t infection growth rates. #AllIn #ChrisHayes</li>
##   <li>The world is on lockdown because of fake numbers!
## How can anyone with a brain not see what's going on???
## #Plandemic #plannedemic #COVID19 #Coronavirusireland #coronavirus
## https://t.co/aXKLSUQNT4</li>
##   <li>Join us at 10 tonight @RTERadio1 for<span class='match'> the </span>Leap of Faith with<span class='match'> the </span>voices of different faiths and belief, sharing their insight into their comprehension of #coronavirus @dunne_op @frpaddybyrne @IrishHospice @churchofireland @DrUmarAlQadri @rogerchilds2u @FionaEnglish1 @iankilroy https://t.co/1qg4Xs4bn2</li>
##   <li>The hospital where I was born is now being called<span class='match'> the </span>epicenter of New Jersey Covid-19. https://t.co/G4vWvF8FJG</li>
##   <li>#Coronavirus death toll crosses 4,000 in #Spain as country's health system collapses under overwhelming pressure on emergency services https://t.co/ErP0B5x1cH</li>
##   <li>COVID-19 needs a Manhattan Project https://t.co/dRovk7kth9 
## 
## #NationalActionEssential
## @maddow</li>
##   <li>Need breakfast brought in to your office during this difficult times? Contact us for more details.
## Assorted pastries and specialty coffee options. 
## .
## .
## .
## .
## .
## .
## mitteracreative #specialtycoffee #pastries #covid_19… https://t.co/KLJOw4OUEG</li>
##   <li>Don’t blame it on... #China
## 
## #Covid19usa #COVID19 #COVID2019 #coronavirus #CoronaLockdown #CoronaVillains #CoronaUpdate #TrumpPressConf #TrumpPlague #TrumpVirus #MichaelJackson https://t.co/l98XpTpc7K</li>
##   <li>@tribelaw It’s now &gt;100,00. 
## 
## The impact to<span class='match'> the </span>US from covid-19 will shock and change<span class='match'> the </span>world</li>
##   <li>Sign<span class='match'> the </span>petition to make sure that any #COVID19 vaccine developed with public money is made affordable to all #Coronavirus https://t.co/OgPV4WXWTr</li>
##   <li>Police personnel from #TeamDurga unit of Hospet #police crackdown on those defying<span class='match'> the </span>#LockDown orders unnecessarily in #Hospet, #Ballari. @DeccanHerald @CMofKarnataka @BSBommai @DgpKarnataka @D_Roopa_IPS #Covid19 #CoronaVirus #Lockdown #Karnataka. https://t.co/pTLy2NhlPN</li>
##   <li>Thing one and thing two helping make figures. #covid19 #newpi @AcademicChatter https://t.co/pzA0o3AHJY</li>
##   <li>Name of District and state of India effected by Coronavirus 
## #CoronaLockdown #COVID2019india #covid19 #CoronavirusOutbreak 
## Source <U+0001F447>
## https://t.co/5y8DuXuuGf https://t.co/IjK0wHPnR2</li>
##   <li>Global doctors on COVID-19 and nuclear war https://t.co/eR0KITn47d</li>
##   <li>If they actually delay this bill and<span class='match'> the </span>relief it will be bring to Americans they are lower then scum. #cortez #massie #amash #attentionseeker 
## 
## There is no need to require a recorded vote for<span class='match'> the </span>#CARESAct passed unanimously by<span class='match'> the </span>#Senate #COVID2019 #CoronavirusPandemic https://t.co/GT7tF4sdxi</li>
##   <li>At Blue Yonder, we are committed to helping our customers throughout<span class='match'> the </span>supply chain derive insights into<span class='match'> the </span>#COVID-19 pandemic and how to adapt quickly. Check out this blog series to learn more: #coronavirus  https://t.co/1WvOiy51El</li>
##   <li>From 15 March, there has been 23k new benefit claims - up tenfold in NI. There has been on average 4k phonecalls a day. Huge demand on @CommunitiesNI staff #UC #COVID19</li>
##   <li>@WHO @CDCgov @VDHgov @ahahospitals would it be best, in a relatively low hit area, to try to get #COVID2019 while #ventilators and beds are still available? https://t.co/naWLz2dTAI</li>
##   <li>"The Cult of<span class='match'> the </span>Shining City Embraces<span class='match'> the </span>Plague"
## 
## https://t.co/pESdYpC6oe
## 
## #COVID #COVID19 #coronavirus #coronavirusoutbreak #CoronaVirusUpdate #pandemic #stayhome</li>
##   <li>@nikkimwalls I've been, if anything, Tweeting more than usual regards poetry/poems/rhymes: I don't think I have any to add regards Covid-19 discourse, and agree that writing does not all<span class='match'> the </span>sudden go void of importance..</li>
##   <li>Frontline #essential workers working over 20-hours a week should have access to #healthbenefits ! Time for #CVS to provide them to #parttime #pharmacist and #tech in<span class='match'> the </span>fight again #COVID19 #APhA https://t.co/xJrVfnv3Xi</li>
##   <li>To cut your risk of contracting<span class='match'> the </span>corona virus, avoid touching your eyes, nose or mouth with unwashed hands.
## Educate your children about<span class='match'> the </span>importance of sanitization at this point.
## #Vignan4Nation #VignanSchools #coronavirus #corona #preventcorona #socialdistancing https://t.co/CLIWGtYByz</li>
##   <li>COVID-19 https://t.co/YiTrwJ5RBK</li>
##   <li>FBI issues warning about COVID-19 stimulus-package scams #blockchain #tech #technology https://t.co/gomQ14XdX7 https://t.co/d5sDz00GEK</li>
##   <li>@AirbnbHelp I am aware of that page, thank you, I check it daily. If you would extent<span class='match'> the </span>covid-19 policy then more people will cancel their April and May bookings (bookings that were made before March 14!) then hosts will be at liberty to help<span class='match'> the </span>frontline workers if<span class='match'> the </span>can.</li>
##   <li>Impact of cardiac injury <U+27A1><U+FE0F>outcome of #COVID19 #epeeps #cardiotwitter <U+2066>@DavidDuncker<U+2069> <U+2066>@Dominik_Linz<U+2069> <U+2066>@DrJohSteinfurt<U+2069> <U+2066><U+2066>@DhirajGuptaBHRS<U+2069> <U+2066>@SchakrabartiEP<U+2069> <U+2066>@drjwdietrich<U+2069> @MDTolgaAksu<U+2069> <U+2066>@ALFIEEP1<U+2069> https://t.co/fSeCob8aW6</li>
##   <li>Can everyone stfu about politics wether u like Boris or not<span class='match'> the </span>country and world is dealing with a pandemic that due to<span class='match'> the </span>popularity of travel is difficult to stop. Instead of criticising<span class='match'> the </span>nhs and<span class='match'> the </span>government maybe be greatful that their trying to fight this. #COVID2019 https://t.co/B2Zyg94CWf</li>
##   <li>@BorisJohnson Buying ventilators saves lives. Why are you not doing so? Are blue passports that important? No 10 accused of putting 'Brexit over breathing' in Covid-19 ventilator row
## 
## https://t.co/ZXLx1MTttO</li>
##   <li>Emerging data suggest that SARS-CoV-2 could infect<span class='match'> the </span>nervous system and may possibly be responsible for some of<span class='match'> the </span>acute respiratory failure found in patients with COVID<U+2010>19.
## 
## https://t.co/coMhB7OM4k 
## 
## #covid19 #covid #coronavirus #Wuhan #virology #News #SARSCoV2</li>
##   <li>.@CMSGov announces #Medicare telehealth expansion: enabling beneficiaries to receive a wider range of health care services during #COVID19 pandemic. No traveling required. https://t.co/AHx7bVQXIh https://t.co/DGDgwqARWu</li>
##   <li>And now they award<span class='match'> the </span>ventilator contract to a rat who deserted<span class='match'> the </span>sinking ship &amp; legged it to Singapore causing 100s job losses. They ignored ventilator manufacturers in UK, who employ our citizens &amp; pay their taxes. They don't give a damn. #ventilators #COVID19 https://t.co/48ibCyImEK</li>
##   <li>If you want to help me for #free please get this app https://t.co/ZSnPY2Qqzg #coronavirus #CoronaLockdown</li>
##   <li>Coronavirus: Campaigners call for HS2 works to be halted immediately | inews https://t.co/Wf8tJWxaam</li>
##   <li>Samples are prepared for #COVID19 testing at MHS Labs in Monroeville on Friday, March 27, 2020. https://t.co/Hh6jtHAqfx</li>
##   <li>RECAP Susquehanna Valley EMS says<span class='match'> the </span>calls happened on 3/21 &amp; 3/24. Says<span class='match'> the </span>calls were not for COVID-19 cases at<span class='match'> the </span>time so workers were not wearing protective gear....</li>
##   <li>‘Stay at home’: Further Covid-19 restrictions announced https://t.co/fZNLIoUoXc https://t.co/BKuODv2kKg</li>
##   <li>@ConsumerSOS @MercedesGlobal @BootsUK Cool.  I don't have COVID 19.  I'm just post menopausal.</li>
##   <li><U+0001F4EC> I delivered this <U+2709><U+FE0F> from Eben, a <U+0001F5F3> verified voter in Pittsburgh, Pa., to @SenBobCasey, @USRepMikeDoyle and @SenToomey #PA18 #PApol #COVID19
## 
## <U+0001F4DD> Write your own: https://t.co/z5540KFSKD https://t.co/p8QER1ETh6</li>
##   <li>@tribelaw Over exhausted healthcare system is<span class='match'> the </span>mortality rate is so different. We’re relatively early in<span class='match'> the </span>stages and we still have beds and manpower to care for<span class='match'> the </span>infected. Check<span class='match'> the </span>mortality rate again in 3-5 weeks. Also, wait until Florida cases really skyrocket. <U+0001F622> #coronavirus</li>
##   <li>This is for all #NHS workers and all others on<span class='match'> the </span>front line. Well done haverhill. You have made us proud #COVID2019 https://t.co/Mv6ZnsgO8I</li>
##   <li>@aajtak Jiska COVID-19 attack kr liya h to chahe jitna v test karwa lo result positive hi ayega unless proper treatment is not given....</li>
##   <li>Lolz remember when JANUARY seemed  like such a long month?
## 
## March comes along all, "Winter Has Arrived".
## 
## #COVID<U+30FC>19</li>
##   <li>“There is something powerful about naming this as grief. It helps us feel what’s inside of us...When you name it, you feel it and it moves through you.”
## 
## Best and most useful read of<span class='match'> the </span>week <U+0001F447> @HarvardBiz #COVID19 https://t.co/DrqEIvPkPU</li>
##   <li>It's pub quiz Friday. #COVID19 https://t.co/DWqzuDmTQC</li>
##   <li>We made a CORONAVIRUS!  // UK DOCTOR // Covid-19 Vlog #7 https://t.co/ZtYqqinRjN via @YouTube</li>
##   <li>@ReginaA1981 At<span class='match'> the </span>system. Now all of those people who voted for Trump or third party are killing people. It’s sad. And like him they refuse to accept responsibility.  I’m praying for your doctors, my husband, my niece and all of them on<span class='match'> the </span>frontline in this fight against #coronavirus.</li>
##   <li>@MBJMemphis Bravo! @DwellsyRents is calling for nationwide ban on residential evictions, long term repayment schedules &amp; moratorium on reporting failure to pay rent due to #COVID2019 https://t.co/KqJXvlFbfX</li>
##   <li>Because “war” gaming is what we do. 
## 
## Some interesting thoughts in this article. Worth<span class='match'> the </span>read.  https://t.co/FXEAOvnoH7</li>
##   <li>My wife runs @NowBoardingMed from home. We’ve set<span class='match'> the </span>lights on<span class='match'> the </span>pet hotel to shine blue tonight in support of<span class='match'> the </span>@NHSuk #NHSheroes. Thank you for all of your hard work, bravery, and selflessness. #StayHomeSaveLives #COVID2019 #NHS #clapforourcarers https://t.co/w4GcaacUyj</li>
##   <li>satgas covid-19 @sigwyn_KRJ @infomitigasi https://t.co/qVC8mWkJZu https://t.co/W8rJg9ZADi</li>
##   <li>While a majority of<span class='match'> the </span>world's students learn from home Singapore's K-12 and tertiary institutions are only now beginning to implement remote learning incrementally.
## 
## #edtechasia #edtech #covidedtech #futureoflearning #futureofwork 
## 
## https://t.co/0OTc2p5r7R https://t.co/a2bpt1w4B0</li>
##   <li>@Polysomzzz Hopefully we won't have to feel sorry for people dying due to TDS. The FDA is testing it <U+0001F601><U+0001F44D>
## https://t.co/TZm0sZJlAP</li>
##   <li>Equally, we want to know we have a President,( not a General) who is thinking about<span class='match'> the </span>seriousness of<span class='match'> the </span>COVID- 19 Pandemic, and is committed to creating measures that protects all #Nigerians, so #WhereIsBuhari https://t.co/AdtLgqVYqd</li>
##   <li>@TMobileHelp They probably will have<span class='match'> the </span>#covid19 vaccine out before I get my issue resolved. #tmobilesucks #saynotobadcustomerservice #badcustomerservice</li>
##   <li>@KTRTRS @TelanganaCMO Sir please address one of<span class='match'> the </span>most imp pt, all schools have charged us for academic year..But due to this Covid 19 schools are closed till June. Request Govt can recommend to move<span class='match'> the </span>first term fee to second ,it would be of great financial help. <U+0001F64F><U+0001F64F><U+0001F64F><U+0001F64F><U+0001F64F></li>
##   <li>#Germany deploys 15K soldiers to combat #COVID-19 crisis 
## 
## https://t.co/5nEzFJDG3c https://t.co/6VGpivg16k</li>
##   <li>What Could be<span class='match'> the </span>Possible Economic Fallout For The Bahamas with COVID-19.
## 
## 1. Increased Debt to GDP
## 2. Increased Expenditure and Low Revenue 
## 3. Depletion of Foreign Reserves 
## 4. Increase Poverty among Vulnerable Communities
## 5.  Economic Contraction
## 6. Increase Debt Levels</li>
##   <li>No Treatment &amp; No Way to Return Home: Patients at Delhi Hospitals Say Hunger, Not Covid-19, May Kill Them https://t.co/WDdGhXVntL https://t.co/2UzFDtsRFB</li>
##   <li>Our company continues to help combat COVID-19 with<span class='match'> the </span>launch of a new, rapid test that delivers results in minutes.
## 
## #ProudToBeAbbott @AbbottNews https://t.co/RpAjnc5M5g</li>
##   <li>The Turner Report: Seven dead from COVID-19 in Oklahoma, 248 cases reported... https://t.co/RsshO4nz2j</li>
##   <li>@livecnn , how are<span class='match'> the </span>homeless managing this covid 19?</li>
##   <li>How is it for you? #COVID19
## #workingfromhome https://t.co/mq6NNI3zkA</li>
##   <li>#Coronavirus Response Volunteers ready for action https://t.co/dK5LXPZFeA via @rgneighbours #rdguk</li>
##   <li>"We are in a crisis! A pandemic! The coronavirus is spreading. The uncertainty of<span class='match'> the </span>unknown is probably<span class='match'> the </span>most unsettling of<span class='match'> the </span>whole situation. Especially for someone with an underlying health condition."
## 
## #COVID19 #millionsmissing #pwme #myalgicE
## 
## https://t.co/1yQgU4O3bg</li>
##   <li>Here's<span class='match'> the </span>key coronavirus COVID-19 symptom nobody is talking about
## One nurse in Kirkland has noticed a common symptom throughout every patient she has treated with COVID-19. Patient who has tested for positive for COVID-19 has had red eyes.</li>
##   <li>Covid-19: Davido’s Baby Mama, Chioma Tests Positive https://t.co/1QJi6KlTK8 https://t.co/1XVLGftrVo</li>
##   <li>you know,<span class='match'> the </span>under 40 crowd---Bernie's base---is<span class='match'> the </span>least likely to die from COVID-19
## 
## it's<span class='match'> the </span>over 40s that can't afford to be out and about
## 
## and with<span class='match'> the </span>#CorporateCoup in Washington, seems like a good time for<span class='match'> the </span>youth to revolt
## 
## #CoronavirusCapitalism</li>
##   <li>Christian VIRUS denier calling it &amp;quot;mass hysteria&amp;quot; dies of COVID 19 in VA https://t.co/eOfz1lICIk  #JustPlainPolitics</li>
##   <li>#CoronavirusOubreak
## #ChineseVirus 
## #21daylockdown #Lockdown21 
## Upto 5th april time is very crucial now actually people are coming out who are finding symptoms ,if people follow it seriously we will definitely beat corona</li>
##   <li>I just signed up for<span class='match'> the </span>free Adobe Summit. 5 ways to learn new career skills for free during<span class='match'> the </span>COVID-19 crisishttps://www.fastcompany.com/90482602/5-ways-to-learn-new-career-skills-for-free-during-the-covid-19-crisis</li>
##   <li>I told my own self that I had bigger goals. <U+0001F30D>
## .
## .
## #tbt #model #fitness #ucf #blessed #astronomical #entrepreneur #goals #models #miamimodel #thinkingbig #entrepreneurmindset #coronavirus #quarantine @ Miami Beach,… https://t.co/vvbtAEYmIe</li>
##   <li>Wearing a crop top to keep yourself accountable #coronavirus</li>
##   <li>@adeife_01 @KemiAsekun @MBuhari Maybe her thought process has been distorted by COVID-19.</li>
##   <li>.@CMOIreland tells @rtenews in 1% of cases in Western world #COVID19 results in mortality.</li>
##   <li>Hospital suppliers take to<span class='match'> the </span>skies to combat dire shortages of COVID-19 gear https://t.co/bnpnxZeOwn</li>
##   <li>@chrislhayes Not to mention<span class='match'> the </span>littering of 100’s of used masks and gloves all over places like Walmart parking lots potentially carrying #COVID19 #CoronaVirus 
## It’s a worldwide issue. We<span class='match'> the </span>citizens of earth as a COLLECTIVE need to wake up and unite
## In Love
## Wishing you safety <U+0001F64F></li>
##   <li>NEW! "Wing Whiskers &amp; The K-9 Grapevine" - Imagine if somebody handed you<span class='match'> the </span>armpit
## 
## <U+0001F3A7> https://t.co/zt0Vyn2hTp
## <U+0001F310> https://t.co/TgUrRaJYFC
## 
## #thetragedyacademy #podernfamily #podcast #podcasts #memes #covid19 #covid-19 #coronavirus #stayathome #socialdistancing #quarantinelife https://t.co/1JsxPIl4kG</li>
##   <li>@Alex_Stafford Hello Alex, can you help me obtain daily Covid-19 cases data by date by nhs region for past dates? Only totals are provided and are overwritten. https://t.co/JEvJ0NHhcq</li>
##   <li>@_alexforrest @COdendahl @BorisJohnson And I think I heard a poll on<span class='match'> the </span>radio saying that 94% of labour voters approved of his approach to Covid-19!!</li>
##   <li>OK #selfemployed here’s<span class='match'> the </span>criteria
## 
## https://t.co/mJYouvm4aq</li>
##   <li>Financial advisor talks about<span class='match'> the </span>#economiccrisis during<span class='match'> the </span>#coronavirus pandemic. https://t.co/jPVQcbSxwY</li>
##   <li>I am a women of my word. The postman at<span class='match'> the </span>Hinsdale post office appreciated that I brought him lotion for his dry hands #COVID19 #WeAreInThisTogether https://t.co/awk9N6H4CX</li>
##   <li>Woohoo! Thanks to @realDonaldTrump we’re #1 again! USA! USA! #coronavirus</li>
##   <li>We've added #FAQs to our website about #COVID19, #schoolclosures and more https://t.co/xGfYjoMMiA https://t.co/ik4kM2iDM6</li>
##   <li>Playing with #snapchatfilters tonight...probably gon catch some heat for this one...<U+0001F602>
## #COVID19 #QuarantineLife #coronavirus #SocialDistanacing #CoronaLockdown https://t.co/bK5FTHKKJi</li>
##   <li>How does this government plan to keep<span class='match'> the </span>healthcare sector alive when health workers are at risk without proper safety equipment? 
## 
## How does this government plan to keep<span class='match'> the </span>economy alive post-COVID-19 when labourers are at risk of death and starvation?</li>
##   <li>We are a local #essex #southend #cbd company who have supplied #cbdproducts to over 32 countries.
## 
## #cbd #essentialoil #cbdoil #natural #remedy #healthandwellness #healthy #health #organic #natural #cure #CBDoil #coronavirus #infusions #coffee #cosmetics #petcbd..... https://t.co/3MbI3p0jum</li>
##   <li><U+0001F4F7> Chloroquine Death Lies; Dr. Robert Epstein; Official Covid-19 Numbers; US Prepared 3.26.20 https://t.co/Ql4Ygvn4n7 America Can We Talk? Chloroquine Death Lies Interview with Dr. Robert Epstein HOW Big Media Contorts... https://t.co/2ZTQWsQ49z</li>
##   <li>#coronavirus #Covid19usa #COVID<U+30FC>19  
## NYC COVID19 cases report https://t.co/ScFsxNxOV7</li>
##   <li>India’s use of chloroquine to prevent Covid-19 based on data from Chinese studies
## 
## @ChandnaHimani reports 
## 
## #ThePrintExclusive
## 
## https://t.co/ihNmU9idut</li>
##   <li>netflix and chill with my girls
## #quarantine #coronavirus #bishwat https://t.co/VGHt2ELexA</li>
##   <li>Do we really want to go back to how it was. Remember<span class='match'> the </span>greed, wars, suffering &amp; unhappiness. The #coronavirus has given us<span class='match'> the </span>opportunity to start again. #saveourlives #saveourplanet</li>
##   <li>Oooops; #NYC administrators thought they were prepared?! Now #NY having some of<span class='match'> the </span>largest numbers of infections <U+0001F615><U+0001F637> #covid19 https://t.co/iy8aI1XHHZ</li>
##   <li>Review with your crews universal precautions and do not let anyone on your crew take these exposures lightly.  Decon after each contact. Take this serious because you are<span class='match'> the </span>designated adult. [3 of 3]
## #firefighters #firstresponders #fireservice #coronavirus #covid19 #staysafe</li>
##   <li>In response to COVID-19, motor carriers hauling vaccines, antivirals, prescription drugs, protective equipment, or other medical assets are temporarily waived from following hours of service requirements. https://t.co/uOOi2JDa2s</li>
##   <li>Farming in Michigan Durning<span class='match'> the </span>Epidemic. Check it out!
## #farming #johndeere #COVID2019 #coronavirus #Michigan #Quarantine  
## 
## https://t.co/BDdSBtLoeA</li>
##   <li>Philippine DOH is making major strategic errors and<span class='match'> the </span>Filipinos are paying<span class='match'> the </span>price #COVID19 @teddyboylocsin @cnnphilippines</li>
##   <li>.@Education_AIR Plain Language Fact Sheet on #COVID19  https://t.co/iUbhtK7RB8 https://t.co/DX92vZqhmI</li>
##   <li>@deb_schell Take care of yourself. A friend of mine lost his uncle yesterday to COVID-19</li>
##   <li>Public Health Director Linda DeNorcey says 7 Guam residents who contracted COVID-19 have now recovered from<span class='match'> the </span>disease. https://t.co/vZ04dV6GkC</li>
##   <li>Aynı KKTC Onlem Paketi:  
## 
## UK government says self-employed will get coronavirus grants worth 80% of their average earnings #COVID19 https://t.co/3SK6m8zYGU</li>
##   <li>Province says Oshawa Superstore employee with COVID-19 has died. This is why we need to do more to protect workers &amp; close non essential businesses. https://t.co/DPH5aM3alk</li>
##   <li>@danapond42 Coronavirus is just a name given to<span class='match'> the </span>type of infection covid-19 is<span class='match'> the </span>infection https://t.co/9r2idhwHz1</li>
##   <li>The next calamity <U+2013> Covid-19 could devastate poor countries.   https://t.co/aIolavfomC</li>
##   <li>@FriedrickJane So much WINNING!!!! The USA now leads<span class='match'> the </span>world COVID-19 infections!  Trump is awesome. NOT!!!</li>
##   <li>Brilliant speech @neasa_neasa !!! #Dail #COVID2019 https://t.co/MuGoEE49kB</li>
##   <li>A message from one of our Directors:
## 
## My 2 year old niece knows "Stay inside". Why can't you?
## 
## The government are not "trying to control you" they are trying to save you! #coronavirus</li>
##   <li><U+0001F4E3> New Podcast! "Empire-Episode55-EllenBrown" on @Spreaker #covid_19_help #economics #stipend #ubi #universalbasicincome https://t.co/FP7nnBn98B</li>
##   <li>How we think about control, what we can and can’t control, is an important component of mental health. Telehealth calls can help. Good mental health is more important than ever when self-isolating. Good ideas from #coronavirus Town Hall  @CNN @AC360</li>
##   <li>And let us not forget our collaborator @GloriusGroup @GloriusFrank who thoughtfully “loaned” us Marco- who btw had to race to return home thanks to Covid-19. https://t.co/MHTcioj3uV</li>
##   <li>Thank you for this leadership, @SpeakerPelosi. You're right that these essential supports for families shouldn't even be up for debate - families need economic stability to get through #coronavirus and every major health crisis they face throughout their lives https://t.co/vL2pJSOPA2</li>
##   <li>@realDonaldTrump @CDCgov 
## Time to put drive through testing on<span class='match'> the </span>I95 Highway 
## Before<span class='match'> the </span>epidemic explodes down south. #coronavirus https://t.co/0f1VeX40cY</li>
##   <li>Vital Tips For Construction Contractors Amid COVID-19 Economic Downturn https://t.co/TNaaIBJ8jc https://t.co/mY99Okrxfp</li>
##   <li>Latest information about #COVID<U+30FC>19 in Kurdistan, visit @Kurdistan website: https://t.co/xADzIqtxL4
## 
## For information on what<span class='match'> the </span>coronavirus is and how to protect yourself against it, see https://t.co/5f85SE70hg
## 
## KRG Health Ministry is closely monitoring for any cases of COVID19. https://t.co/sRXwlqieUX</li>
##   <li>Massive shoutout to @waitrose #Ponteland for ‘Care Boxes’ filled w/essential items for<span class='match'> the </span>most vulnerable people in our community. Every ‘box’ I delivered this pm was met with a wide smile, friendly greeting &amp; big thank you. Well done people of #Northumberland #lockdown #COVID19 https://t.co/2C5loh3bot</li>
##   <li>Just going to leave this here for you all that think covid 19 is a hoax.
## #Covid19usa 
## #COVIDIDIOT
## 
## https://t.co/Ze7TzM5vAJ</li>
##   <li>Stars&gt;People&gt;Country Singer Joe Diffie Tests Positive For COVID-19..https://t.co/njjhAmZ8dJ #people https://t.co/fhL62FePVd</li>
##   <li>Never liked 
## #SwachchhBharat 
## #AADHAR 
## #JanDhan
## #DigitalIndia
## #DBT
## #Ujjawala 
## #AyushmanBharat 
## Wasn't that wrong or else living in #COVID2019 would be much more difficult thank you #NarendraModi to lead our country</li>
##   <li>JUST IN: Prince William County resident dies after testing positive for<span class='match'> the </span>virus that causes COVID-19, health officials confirm https://t.co/sySqZTmCq9 https://t.co/ZRMWTaDPZI</li>
##   <li>if coronavirus was cereal, covid-19 would be corn flakes<U+0001F922></li>
##   <li>#coronavirus Top mortality rate changes from yesterday:- 
## Italy 10.19%-&gt;10.03%
## Indonesia NoEntry-&gt;8.32%
## Iran 7.60%-&gt;7.35%
## Spain 7.34%-&gt;7.70%
## Netherlands 5.83%-&gt;6.33%
## France 5.82%-&gt;6.05%
## UK 4.96%-&gt;=
## China 4.04%-&gt;4.05%
## Belgium 3.53%-&gt;3.97%
## Global 4.53%-&gt;4.58%</li>
##   <li>#Creators of #XRP #token and #leading #American #exchange #firm #Ripple has said it would donate $100k to fighting #novel #coronavirus.
## 
## https://t.co/t02FwBUFco
## 
## #Rakamoto #ThursdayThoughts #Blockchain #Crypto #Bitcoin #Digital #Money #Coins #Dollar #Banks</li>
##   <li>During these massive shifts from COVID-19, I've heard lots of educators discussing taking this opportunity to envision new systems and spaces for education built on equity and freedom. If this is you, make time to watch #CripCamp on Netflix.</li>
##   <li>so<span class='match'> the </span>police officers are immune to Covid 19<U+0001F607><U+0001F607>?? how do they enforce social distance yet they are crowded in lorries without masks surely...Police will suffer alot in this pandemic
## #CurfewKenya https://t.co/62u4NlYlIt</li>
##   <li>#Hayekianknowledgeproblem: spare a thought for those locked in their rooms at backpackers hotels and camping grounds #COVID19 https://t.co/UM4yXdeoqx</li>
##   <li>Fact or fiction: How much do you know about<span class='match'> the </span>coronavirus disease (COVID-19)? @unicef https://t.co/zMzQPnGRGU</li>
##   <li>@kgeremolla @Clint_Mentality COVID-19 is<span class='match'> the </span>designated name</li>
##   <li>@Pikoyio this just in, covid-19 has blocked<span class='match'> the </span>sun</li>
##   <li>@Dyane357 Now is<span class='match'> the </span>best time to learn, grab your 20% discount on my machine learning course https://t.co/JmxyXmL83I #learnmltoday</li>
##   <li>"When you have 15 people, and<span class='match'> the </span>15 within a couple of days is going to be down to close to zero, that's a pretty good job we've done." -- Trump on<span class='match'> the </span>number of #COVID2019 cases in<span class='match'> the </span>U.S., Feb 26th
## 
## March 26th: 81k cases of #coronavirus with 1,178 deaths. #CoronavirusPandemic</li>
##   <li>#Mohamed_bin_Zayed, India PM review global fight against #COVID_19 https://t.co/BFEFEQvjyt
## #Sharjah24 https://t.co/BYfGvCZqOC</li>
##   <li>ICYMI:  Chauncy Glover tests positive for COVID-19 https://t.co/ZkV1rGoyxn #abc13 #KTRK</li>
##   <li>Don't forget that covid-19 is everywhere,so always wash your hands,use sanitizers and social distancing is very important....</li>
##   <li>Save<span class='match'> the </span>bailout money for farmers and food industry workers and #foodsecurity https://t.co/OzEyFFgwnR</li>
##   <li>Lots of craft distilleries are helping<span class='match'> the </span>fight against #coronavirus by making #handsanitizer such as @OneEightD and @cottonandreed (here): https://t.co/d0FZILBanU</li>
##   <li>US President Donald Trump on Thursday signed<span class='match'> the </span>Taiwan Allies International Protection and Enhancement Initiative (TAIPEI) Act of 2019 into law, before he talked with Chinese President Xi Jinping (習近平) by telephone about<span class='match'> the </span>COVID-19 pandemic.</li>
##   <li>Such an amazing atmosphere to be a part of! 
## 
## Stay strong everybody! We will get through this! <U+0001F49E><U+0001F49E>
## 
## #BritainGetTalking #COVID2019 #clapforNHS https://t.co/OTliaWv5vH</li>
##   <li>Stop Press : #SelfEmployed Support during #Coronavirus as announced today 
## Grant available for 80% of average monthly profit over last 3 years capped at £2500 per month. Traded profit up to £50 000.. Extra 4 weeks to file tax return. If  #eligible HMRC will contact you direct.</li>
##   <li>"Ireland and so many other countries failed to halt foreign travel, or at least quarantine incoming travelers, quickly enough. And why we failed to implement testing quickly enough." #COVID19ireland  
## 
## https://t.co/F34akFqmn4</li>
##   <li>We have low numbers because people are not getting tested at<span class='match'> the </span>rate it is done in other countries. #coronavirus is highly communicable, check d numbers in Italy, USA &amp; UK. 
## 
## #PresidentCovik #StaySafeNigeria #chioma</li>
##   <li>Apparently Cardi B has some good takes on COVID 19 stuff but she still has shit takes on transgender people and<span class='match'> the </span>concept of not drugging/stealing from people right?
## 
## I’m not<span class='match'> the </span>most informed but last I heard that hadn’t changed.</li>
##   <li>Mayor Francis Suarez is convinced thousands in #Miami have<span class='match'> the </span>#coronavirus, thinks<span class='match'> the </span>governor should lock down Florida, and says its impact 'can become apocalyptic' https://t.co/dDi5MRY94U via @businessinsider</li>
##   <li>Because of COVID-19, friends of mine in Newy have had to Livestream their wedding...which means I'll actually get to see it!</li>
##   <li>COVID-19 pick up lines, a thread:
## 
## “You can’t spell quarantine without U R A Q T” <U+0001F609></li>
##   <li>@drgregkelly    https://t.co/S8E1QOKyP1     Can’t see any education department doing this...</li>
##   <li>COVID-19: 365 People Die in France in One Day
## https://t.co/YxAz2eJA5K</li>
##   <li>#SEOs talk #pivoting and #planning for a #future after COVID-19 https://t.co/RJfJ7AgKoA by @geochingu https://t.co/8saSa4KJWk</li>
##   <li>Thank you everyone for all your hard work...thank you again .. remember stay safe and stay strong.  #thankyou #together #strongertogether #strong #healthy #veteran #family #covıd19 https://t.co/enCzTfAGU5</li>
##   <li>Obour should be labeled "number one local causative agent of Covid 19 agent in Ghana. We go drain in stomach by midday tomorrow.</li>
##   <li>@DavidDobrik yo David, my first car payment is coming up and I lost both of my jobs due to COVID-19 :'( help a brother out! 
## $squintsfresh</li>
##   <li>Self quarantine effect. 
## Can bring out good humour at time 
## #COVID19 #humour #kashmir https://t.co/cer9F1OX86</li>
##   <li>Everyone is feeling<span class='match'> the </span>impact of social isolation these days, including America's older adults. "COVID-19 isn’t just a danger to older people’s physical health" https://t.co/GPupzocISi via @APA</li>
##   <li>Perfect <U+0001F602> #COVID2019 #coronavirusinpakistan #CoronavirusOutbreak https://t.co/CsPPofcZlo</li>
##   <li>Covid-19: 15L who flew back to India between Jan 18-Mar 23 under lens https://t.co/JcuwrK88HK</li>
##   <li>Great to be first and leading<span class='match'> the </span>world eh?
## 
## Discrimination in any form is never an actual defence. 
## 
##  @realDonaldTrump
## #COVID2019
## BBC News - US now nation with most coronavirus cases
## https://t.co/jIQ9EBU34I</li>
##   <li>@IngrahamAngle @realDonaldTrump Life is not a ratings game. 
## 
## Trump’s slow response to COVID-19, allowed it spread thorough<span class='match'> the </span>whole nation before it was taken seriously. 
## 
## This crisis would not have happened if he  had pushed for early testing and isolation in January. 
## 
## Anyone should be able to see that. https://t.co/wF1WabmfcM</li>
##   <li>Covid-19 death reported in West Papua | Loop Tonga https://t.co/nRHApUZNR2 via @skinnergj - CRNews</li>
##   <li>Jeff Bezos sold $3.4bn of Amazon stock just before Covid-19 collapse https://t.co/uUbwJjoBWD</li>
##   <li>The severity of covid-19 is not in<span class='match'> the </span>virus itself it's in its impacts on<span class='match'> the </span>infrastructures and economy. That concept has been understood at a middle class and ^ level but has not been shared to lower class communities or properly communicated</li>
##   <li>House members angry at being forced to return to Washington amid COVID-19: Sources There is anger from Democratic members about<span class='match'> the </span>mixed messages being sent from Democ https://t.co/Kg53UocgI4</li>
##   <li>USA First. Now you can lockdown. #COVID2019 , #usalockdown , #LockdownNow , #Coronavirus https://t.co/Ay950d2PBL</li>
##   <li>UPDATE: City of Wetaskiwin amends plastic bag bylaw amidst COVID-19 pandemic https://t.co/kaoYrpcP5b</li>
##   <li>DISGRACED mom Kate #mccann tells people to stay home... during #COVID19 
## 
## The hypocrite who traded staying home to GET DRUNK at dinner  at<span class='match'> the </span>TAPAS BAR https://t.co/wcVgpX3AsZ</li>
##   <li>Buhari lauds COVID-19 donations https://t.co/u8cjxoDXzh https://t.co/D30XTkOzap</li>
##   <li>British Columbia is testing for Covid-19 faster than South Korea did https://t.co/ITHiwsgQqn via @scmpnews</li>
##   <li>@looknorthBBC Can are local representatives support<span class='match'> the </span>employees at Wren with this petition
## 
## https://t.co/s5LKof9Jxf</li>
##   <li>@oswaldtheson Listen to SLiMM-Stay_Safe_Covid-19_Freestyle.mp3 by ALEX<span class='match'> the </span>Friend on #SoundCloud
## https://t.co/Ize4iEytxE</li>
##   <li>Coronavirus pandemic:
## From 0 to 250,000 cases: 4 months
## From 250,000 to 500,000 cases: 1 week
## 
## #COVID<U+30FC>19 #COVID #CoronavirusPandemic #coronavirus #USA #Italy #China #India #Spain #Canada #Australia #UK</li>
##   <li><U+0001F6A8>#Italy becomes second country after<span class='match'> the </span>#US to surpass #China in confirmed #Coronavirus cases after reporting 5959 new cases. https://t.co/fW2cqSPmXW</li>
##   <li>California reports 29 new cases and 1 new death bringing total confirmed cases there to 4,044 and 83 total deaths.
## 
## #CoronaVirus #Covid19 #CoronaVirusOutbreak</li>
##   <li>You'll have seen<span class='match'> the </span>permanent #COVID19 page at<span class='match'> the </span>top of your timeline. It includes news and information on<span class='match'> the </span>global situation. 
## 
## Now there's one specifically for Ireland, with content from @HSELive, @SimonHarrisTD, @CMOIreland and others: https://t.co/oN7g7R2Hfi https://t.co/xiPtP3t0jc</li>
##   <li>@POTUS @realDonaldTrump did you healthcare checked if<span class='match'> the </span>#Coronavirus can spread by moscito’s and what if they spread it too cows and sheep, pigs  is<span class='match'> the </span>flesh or milk contaminated. Because here we have it already in our sewage.  Good luck with<span class='match'> the </span>fight against COVID19</li>
##   <li>Has<span class='match'> the </span>COVID-19 pandemic influenced how you plan to manage your finances after this is all over?</li>
##   <li>You are one of<span class='match'> the </span>people who should lose their job once this pandemic is over.  Howard is a COVID-19 treatment hospital. That’s why they received<span class='match'> the </span>funds. https://t.co/d48tA5QKAd</li>
##   <li>Car-free Kingsland Point Park is AMAZING. Kids can be independent. No worrying about cars zooming around<span class='match'> the </span>bend from<span class='match'> the </span>bridge.
## 
## #SilverLining of #COVID19/#SocialDistancing in #SleepyHollowNY. https://t.co/G6f7TxvpWn</li>
##   <li>Do you know<span class='match'> the </span>signs of stress in children? How to talk to them about #COVID-19? We have tips in our family guide to help parents and children during this uncertain and difficult time. https://t.co/XdZ3CQaz6O</li>
##   <li>@tomarankit92 Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>Good interview. Gen. Semonite explains<span class='match'> the </span>process &amp; teamwork involved. #COVID19 https://t.co/RTOrwt0oi6</li>
##   <li>FedEx stood up a special operation with The White House, U.S. Dept of Health and Human Services, FEMA Federal Emergency Management Agency, major retailers and healthcare companies to help move COVID-19 tests: https://t.co/H8zueIhgWU #TeamFedEx https://t.co/tHYMwzTMa5</li>
##   <li>Plasma from recovered patients can help treat other cases of covid19.
## 
## https://t.co/E5yugbsqf6</li>
##   <li>The COVID-19 crisis continues and it’s vital that we continue to limit social contact and practice good hygiene. Most of all we can come together by staying apart <U+2013> at least six feet apart when walking, shopping, or spending time outdoors. 
## 
## <U+27A1><U+FE0F> https://t.co/PHPoELv5zR https://t.co/s8KFtQG04b</li>
##   <li>Please note that Metro Care &amp; Share Society has decided to temporarily close its retail store due to<span class='match'> the </span>COVID-19 pandemic until further notice. We will update you here once things settle down. Stay safe everyone!</li>
##   <li>Tim Kennedy - Founding Fathers: “Give me liberty or give me death.”
## Greatest Generation: “Give me victory or give me death.”
## Current Generation: “Give me $1500 I don’t care<span class='match'> the </span>cost.” 
## 
## #corona #coronavirus #CoronavirusOutbreak #COVID19 #COVID2019 #stimulusbill</li>
##   <li>Of course Trump calls in<span class='match'> the </span>experts. Wtf #TrumpVirus #COVID19 https://t.co/QU446ORs0b</li>
##   <li>How? Surely we should be obtaining tips here<U+0001F481><U+200D>♂<U+FE0F>#COVID19 #Covid19SA #LockdownSA https://t.co/oREgpXiXz8</li>
##   <li>wondering if covid-19 coochie taste different</li>
##   <li>Atmos Energy donates $1.5 million to feed students, families amid COVID-19 pandemic https://t.co/pghAPKIolH</li>
##   <li>Next holiday destination? Is it Las Kitchenas? Los Lounges? St Bedwa? Porto Gardenas? Costa del Balconia? #lockdown #COVID2019  #coronavirusuk</li>
##   <li>Interest and penalty free extension on corporate taxes, personal taxes and instalments until August 31, 2020. #smallbusiness #tax #CRA #personaltax #askaCPA #COVID19 https://t.co/xIsZoEAO39</li>
##   <li>RIWI Signs New $1 Million Contract and Strikes Data Partnership with ThinkData for Public Health Response to COVID-19 in 16 Countries
## 
## Full Story: https://t.co/3cjt965Xfi
## 
##  @RIWIdata $RWCRF $RIW.CA #OTC #OTCMarkets #OTCStocks #CSEStocks #SmallCaps #RIWIdata #RIWI #Internet</li>
##   <li>'Multiple' new cases of COVID-19 confirmed in Boerne, Kendall County https://t.co/yII2CLzwlD https://t.co/hdTdn0kqEq</li>
##   <li>Thanks to all<span class='match'> the </span>doctors, nurses, technicians and other health workers who are giving their 200% to save all of us #hcwshoutout #coronavirus #together #CoronavirusLockdown</li>
##   <li>@ivanmq47_ivan @HDSandtoes @PaulVCataldo @GovMurphy If not controlled, one flu patient gets 14 person affected. If uncontrolled COVID 19 affects 5500. So ten people having flu can affect, 140 people and ten having CORONA can affect 55000. This virus spreads faster in exponential terms. Stay home. Read about case 31 South Korea.</li>
##   <li>With #COVID19 spreading worldwide, experts have been urging people to practice voluntary Social Distancing. Small negligence at this moment can be very much harmful to your health &amp; that of those around you.
## 
## #lockdown21 #21daylockdown #21dayschallenge #JantaCurfewChallenge https://t.co/slIG39cL52</li>
##   <li>Salesforce Care Free Rapid Response Solutions to Help Companies Navigate COVID-19 https://t.co/6OLCq24vBd via @salesforce</li>
##   <li>As #COVID19 cases multiply, @YaleMed, @YaleNursing and @YaleSPH are working swiftly w/ local hospital to adapt and prepare.
## 
## Hundreds have volunteered, and to ease<span class='match'> the </span>strain on @YNHH, a field hospital is constructed inside Payne Whitney gym.
## 
##  #Yale #NHV https://t.co/thv5GgARI7</li>
##   <li>Release Julian Assange from Belmarsh Prison before COVID-19 spreads - Sign<span class='match'> the </span>Petition! https://t.co/zrY9N7y9Dm via @Change</li>
##   <li>Rex Murphy: The financial impact of COVID-19 is enough to make Canadians sick with worry, via @NationalPost https://t.co/Q7c1oqgc7T</li>
##   <li>Man travels 5 km to buy safety pin during lockdown; Vehicle in police station https://t.co/cr8KuHkPpr #coronavirus</li>
##   <li>File under “not happening” - Coronavirus: Los Angeles to shelter in place for months, mayor tells us - Business Insider https://t.co/knRt8N6sin</li>
##   <li>South Korea reveals how to win Covid-19 war - Asia Times https://t.co/YnBfyIKYmJ</li>
##   <li>Touch of class that <U+0001F44F><U+0001F3FB><U+0001F60D> so proud of our NHS and what they do, not only during Covid-19 but every day <U+0001F64C><U+0001F3FB> filled up seeing<span class='match'> the </span>old lady over<span class='match'> the </span>road come out her front door to clap <U+0001F622> #clapforNHS</li>
##   <li>@thaispicytravel @muno0103 So our wedding has been postponed for obvious reasons and we had 115 chocolate Lindt bunnies as wedding favours - time for a bunny wedding of course! #CoronavirusLockdown #lindt #COVID19 #wedding https://t.co/C9bll18TB5</li>
##   <li>Is it just me, or allowing only 3 people into Tesco/Sainsbury’s in jesmond just gonna make people panic buy more??? #COVID19 #CoronaLockdown #UKlockdown</li>
##   <li>Almighty God where are you?
## Plz forgive us.
## #coronavirus 
## #ItalyCoronavirus 
## #IndiaFightsCorona https://t.co/FsJxQ2VYg9</li>
##   <li>Canada's Six Biggest Banks Take Steps to Help Canadians Impacted by COVID-19 https://t.co/j30XM4G6A9</li>
##   <li>Even as this pandemic is killing our country before our eyes, Trump still manages to call his competition nicknames. #shameful #COVID<U+30FC>19 #ResignNow #DontKillGrandma</li>
##   <li>@mtracey Hello there Mr. Tracey,<span class='match'> the </span>only reason that Trump didn’t take full(and very much neded)advantage of<span class='match'> the </span>DPA is because it puts full and absolute responsibility on Trump, no squirming or blaming can change that. Trump avoids responsibility like, well, COVID-19.
## 
## #TrumpPandemic</li>
##   <li>Ministry of Technology and Innovation could help in different ways by providing practical solutions in<span class='match'> the </span>preparation for combating #COVID19. 
## 
## For instance, developing accessories to make<span class='match'> the </span>few respiratory machines Ethiopia has to support multiple patients, etc.</li>
##   <li>Salute to all healthcare professionals, Doctors and Nurses across<span class='match'> the </span>globe, who are our there risking their lives and working tirelessly in a fight against #coronavirus through these highly difficult time. https://t.co/fjGdnSneBU</li>
##   <li>The socioeconomic consequences of #COVID19 could be disastrous, especially in terms of #foodsecurity for many communities and countries https://t.co/IHcB0JrUJC</li>
##   <li>Lockdown with this one. Playing Mario (badly) and enjoying a nice glass of red. #covid_19 #makingthemostofquarantine https://t.co/cqRggr17vT</li>
##   <li>Yes we need<span class='match'> the </span>US Army in Vancouver BC to investigate<span class='match'> the </span>Chinese criminals who spread<span class='match'> the </span>covid19 COVID-19 in Canada: Canada 'strongly opposes' U.S. suggestion to put troops at border https://t.co/GapbbYs3nN</li>
##   <li>“Space missions around<span class='match'> the </span>world are on hold<U+2014>a poignant reminder of how COVID-19 has upended civilization.” https://t.co/88cAm5YKxu</li>
##   <li>Dear Mr @realDonaldTrump 
## 
## America needs you to grab<span class='match'> the </span>Covid-19 by<span class='match'> the </span>pussy!! 
## 
## Sincerely, 
## The American People</li>
##   <li>@DTRecruitment @10DowningStreet @RishiSunak Hi David, for<span class='match'> the </span>latest guidance please visit https://t.co/m6viGM49hA Thanks</li>
##   <li>While many people are staying home and social distancing, cleaning companies are on<span class='match'> the </span>front lines trying to keep<span class='match'> the </span>germs away. Management at Jani-King in Lafayette say they’ve been busy. https://t.co/3Igq1jksUS</li>
##   <li>@ezralevant Not yet in<span class='match'> the </span>UK, but there is already talk of<span class='match'> the </span>huge debt this will create which will ultimately be paid for in taxes.
## #CoronaHoax #COVID19</li>
##   <li>I wanna see after<span class='match'> the </span>crisis people being like "I led a totally normal life, didn't have to self quarantine,<span class='match'> the </span>virus was a scam"
## 
## Yea because we all stayed in bro, you're welcome we saved your life lmao
## 
## #coronavirus #COVID19 #StayAtHome #Quarantine</li>
##   <li>@news18dotcom All<span class='match'> the </span>effected countries should come together and take China to International Court to pay dearly for its criminal activity of creating covid-19 like monsters killing<span class='match'> the </span>innocents with no fault of their .....</li>
##   <li>#covid-19 #coronavirus #pandemic -- UK Column News - 27th March 2020 https://t.co/YEbk5JPV0t via @YouTube</li>
##   <li>So I wanted to make something inspired by<span class='match'> the </span>panic-buying going on. 
## For everyone in Australia and abroad facing lockdown: Stay safe, stay clean and stay sane. 
## #coronavirus #covid_19 #virus #toiletpaper  #staysafe #art https://t.co/eD7Mjyz7EQ</li>
##   <li>Masha #Kano is leading on<span class='match'> the </span>fight for #COVID19 https://t.co/G6ntnGQgaW</li>
##   <li>President Trump talks about #COVID19 almost everyday for 30 days......
## How then did they top<span class='match'> the </span>list?
## I thought Presidential DAILY SPEECH is what will settle this plague.... https://t.co/rtSBQrkbm5</li>
##   <li>Be careful with<span class='match'> the </span>Home Office #HomeOffice #COVID2019 https://t.co/lWFwILpC1H</li>
##   <li>When Bollywood Actors &amp; Actresses will Donate Money <U+0001F4B5> to India in #coronavirus 
## #CoronaLockdown</li>
##   <li>I HAVE BEEN UNEMPLOYED FOR A WHOLE FUCKING MONTH NOW. GIMME MY MONEY. FUCK #COVID19 https://t.co/lXJ0F157yP</li>
##   <li>Food Take<U+2014>Out Advice from @barfblogben during COVID<U+2014>19 https://t.co/4xutGjHat0 https://t.co/urxyRHveL1</li>
##   <li>@jackblack @GassLeak As<span class='match'> the </span>last man standing in my office whilst everyone else is self-isolating, my lunch breaks are far more enjoyable... #tribute #SelfIsolation #COVID2019 https://t.co/g1dfDO1PgY</li>
##   <li>@realDonaldTrumpput @VP in charge of #CoronavirusOubreak 
## Two morons. . .Heck of a job by #FuckfaceVonClownstick and #OrangeAssKisser 
##  #TrumpPressConf</li>
##   <li>@KTRTRS @KTRoffice @CommissionrGHMC @Director_EVDM @GHMCOnline @Eatala_Rajender  We are panic by such videos in viral where ppl spread that a covid 19 suspect being taken from Karwan area. Is it true? We have to take preventive measures seriously in<span class='match'> the </span>area if its true.</li>
##   <li>Covid-19 patients recovering is<span class='match'> the </span>only content I want to see</li>
##   <li>3 More COVID-19 Deaths Reported in Region | News | San Diego County News Center https://t.co/bYNmVY57od</li>
##   <li>#Coronavirus cases confirmed at #BC seniors’ homes. North #Vancouver’s Lynn Valley Care Centre, 46 residents and 24 staff have tested positive. At Vancouver’s Haro Park Centre, 30 residents and 28 staff have contracted<span class='match'> the </span>virus. https://t.co/pykNKf02Ex https://t.co/H8N84uQ8s5</li>
##   <li>#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 discover great artists now on https://t.co/PZqZAxv5zf Hell If I Know by Travis Dolter @travisdolter via @oddball_music listen here https://t.co/tmYHgdAL43 https://t.co/JdkRQqevEL</li>
##   <li>"The reality is that probably<span class='match'> the </span>majority of school districts, and there are more than 13,000 of them, don’t have<span class='match'> the </span>ability to provide continuous virtual online instruction," @AASADan tells @BloombergNews3.  https://t.co/C6FeiIMSuy @AASAHQ https://t.co/wjkgrL9hto</li>
##   <li>The whole world is calm and I can still hear noise inside my head !! 
## 
## #Covid_19 #Quarantine</li>
##   <li>#Cuba's Foreign Minister @BrunoRguezP stated that Washington's hostility towards his country cannot affect Cuban solidarity with nations in need.
## #UnitedStates #COVID19 #Coronavirus
## https://t.co/0IWOpBFtqG</li>
##   <li>Check out this story which provides further explanation on why U of T made<span class='match'> the </span>very difficult decision to cancel this year's spring convocation ceremonies: https://t.co/Tp6gDdwVjg</li>
##   <li>We must work together to defeat human enemy COVID 19 basis on HUMANITY around<span class='match'> the </span>
## GLOBE .
## 
## BECAUSE ,
## 
## Unity is a remedy https://t.co/DnHWZIqhGS</li>
##   <li>Italy had close to a thousand corona virus related deaths in<span class='match'> the </span>last 24 hours. HOLY F@$K!!! #COVID19</li>
##   <li>We've added a list of resources for residents to our #COVID19 page: https://t.co/xobEyOoAzZ #SATX https://t.co/XAlrJvygSu</li>
##   <li>COVID-19 Consumer Warnings and Safety Tips https://t.co/h5ebW47cgV Free resources from<span class='match'> the </span>FCC!
## 
## #stayhappy #accountspayable #covid19 https://t.co/qifa1huIzU</li>
##   <li>This infuriated me! All<span class='match'> the </span>recent stockpiling of food and people are beginning to realise they can’t store/eat it before runs out of date! Think of how many people could have actually eaten this if not for your selfishness #covid19 #foodwaste #appalling https://t.co/Fi4RHMchWq</li>
##   <li>Last night I listened to @djdnice &amp; party with a purpose on @instagram   Registered over 400K to #vote .  Rockin<span class='match'> the </span>#oldschool jams and joints.  I see you @MichelleObama @TherealTaraji I see you @terrycrews . I was partying with @kings and @queens #CouchParty during #COVID2019</li>
##   <li>Curious to know how COVID - 19 will affect<span class='match'> the </span>Indian Economy. Hear from Dr. Ajit Ranade, President and Chief Economist at Aditya Birla Group and Head Academic Board of Meghnad Desai Academy in a live webinar on 2nd April at 5:00pm. To register https://t.co/qD6DFEaPjf https://t.co/uCwhhEzQLW</li>
##   <li>Funny thing is that alot of people have Covid-19 and have recovered before realizing.
## #COVID19 #CoronavirusOutbreak #StayAtHomeAndStaySafe #COVID</li>
##   <li>#WATCHVIDEO Meghalaya CM @SangmaConrad visited a locality in Shillong and requested<span class='match'> the </span>citizens to maintain #SocialDistancing to contain<span class='match'> the </span>spread of coronavirus
## 
## #Time8News #Meghalaya #Coronavirus #COVID19 https://t.co/FRXZJHnkOx</li>
##   <li>Hey @Mike_Pence @VP I asked you yesterday about being a Christian. Seriously. HOW THE HELL CAN YOU STAND WITH THIS MANIAC? As a “Christian” you must believe in hell. Newsflash: that’s where you’re going. #COVID19</li>
##   <li>More than<span class='match'> the </span>regular announcements of<span class='match'> the </span>number of positive cases of COVID-19, I bliv<span class='match'> the </span>@NCDCgov should share<span class='match'> the </span>statistics of<span class='match'> the </span>number of people that has been tested. Let us know info on<span class='match'> the </span>'case to test' ratio.</li>
##   <li>@INnationalist @sp56632410 @srjawed @Reuters I’d be totally okay with it if you don’t relate it to ANY ethnic group, it’s pure racism (not rapist) if you do. The virus has its name COVID-19.</li>
##   <li>Luxury Swiss apartment-style hotel launches Covid-19 guest package https://t.co/bKQbum7v4f</li>
##   <li>YES WE BELIEVE IT WAS ENTIRELY POSSIBLE TO **ELIMINATE** #COVID19 FROM AUS. OVER THE COURSE OF A MONTH OR TWO. YES, WE DO. THAT IS NEITHER DELUSIONAL NOR IRRESPONSIBLE TO SAY. WHAT *IS* IRRESPONSIBLE IS TO DEFEND THIS GOVT. BY SAYING THAT WAS NOT POSSIBLE. CUT IT THE FUCK OUT.</li>
##   <li>Liberal media, Hillary Clinton mock President Trump over rise in COVID-19 cases in US
## 
## https://t.co/NBKKrnBO6v</li>
##   <li>Today Pizza from our local restaurant around<span class='match'> the </span>corner. Support your local restaurants and help them get through<span class='match'> the </span>crisis. #CoronaVirusDE #COVID19de #COVID2019 #StayHome https://t.co/mFxzLMzRmG</li>
##   <li>Working on some #DigitalArt during #CoronaLockdown - very blessed to have some work! Check out my #Photoshop process <U+0001F58C><U+0001F3A8>#BigHeadCartoon #COVID19 #WatchMeDraw #watchparty #coronavirus #QuarantineLife https://t.co/n95i0KPtaR</li>
##   <li>#China promotes #CoronaPandemie #coronavirus with #wildlife food #again. #Animalabusers #VirusChina https://t.co/2GQSV0ZFeG</li>
##   <li>Today I’m suppose to be waking up in a villa with my hun drinking espresso’s and having breakfast with some wild animals...but noooooooo Covid-19</li>
##   <li>You can fill in your own comment.
## https://t.co/wvqK6EXUyT</li>
##   <li>I'm afraid people are not really aware how long covid-19 could take. Even if<span class='match'> the </span>lockdowns are to end before/during summer there's a very high risk that we'll have to do this all over again come winter.
## 
## So, indefinite hiatus sounds ominous to me. Donate if you can. https://t.co/rQMrvmbKVq</li>
##   <li>Report: Digital Songs sales chart shows record low numbers within<span class='match'> the </span>top 10, specifically with<span class='match'> the </span>#2 song “Sweet Night” as it logs ~11,000 downloads in its debut week (down 35% from previous record-low).
## 
## Music analyst suggest<span class='match'> the </span>decline in sales are due to COVID-19 pandemic.</li>
##   <li>Ponoka resident’s negative COVID-19 test not ‘all that reassuring’ https://t.co/BFmqlT8lVp</li>
##   <li>Crying <U+0001F923> #pressconference #COVID2019 
## 
## We've all been there... just not live on TV at a government broadcast haha https://t.co/uCnMPEPTbX</li>
##   <li>The City of Vancouver has set up a referral system to link essential workers with licensed childcare providers during<span class='match'> the </span>COVID-19 crisis. https://t.co/QRUVTkLAsj</li>
##   <li>@amandavanstone Items posted like this brighten up<span class='match'> the </span>days with this COVID-19 #StayHomeAustralia</li>
##   <li>#Coronavirus
## 
## We are in a fallen world.  
## Read Genesis 3
## 
## It started off as a Paridise but then man rebelled against God.
## 
## Turn back to God and seek Him daily and watch Him change your life for<span class='match'> the </span>better!
## 
## Make this your plan from now on. Ask Him to guide your ways.
## 
## Psalm 91
## <U+0001F447> https://t.co/PuFrM81n2L</li>
##   <li>#Coronavirus It's cool tho, coz now<span class='match'> the </span>US is actually number one in<span class='match'> the </span>world for something other than money spent on military power lmao</li>
##   <li>If anyone wants to follow along with<span class='match'> the </span>workouts I’ve been kindly given by my Pt for<span class='match'> the </span>next 30 days I’m happy to share as I go.  Don’t be deceived they are harder than they look <U+0001F61D>#homeworkouts #coronavirus @suziekennedy and I are on day two <U+0001F64C><U+2764><U+FE0F>#xrp</li>
##   <li>Can we trust<span class='match'> the </span>Oxford study on Covid-19 infections? | Coronavirus outbreak | The Guardian https://t.co/dYxfq0qDxb</li>
##   <li>@Aaroncheruiyot @IG_NPS There is a reality we can't run away from. Our law enforcement officers are a joke to democracy then there is<span class='match'> the </span>#Covid_19; we can't manage it if we have such police officers.</li>
##   <li>Keep fighting. Stay strong <U+0001F4AA><U+0001F4AA><U+0001F4AA>
## 
## #YNWA #YNWAlawancorona #COVID19 #StayAtHome 
## 
## @LFCIndonesia https://t.co/wwMNTU2W3J</li>
##   <li>He tested positive for #coronavirus . Please don't listen to people who have no sense. https://t.co/hOgIMTXJMm</li>
##   <li>Everyone, this is very serious. we have officially passed 101,000 #COVOD19 cases. #Quarantine #coronavirus #WashingtonPost https://t.co/DZME5EqWgc</li>
##   <li>@MobilePunch @Mobilepunch why indicating a Christ cross behind<span class='match'> the </span>death. Mind you not only Christians are affect by<span class='match'> the </span>covid 19. @MobilePunch  @NCDCgov</li>
##   <li>Visit St. Louis Children’s Hospital’s Sproutlight Sponsor page for resources to keep your family healthy during #COVID19: https://t.co/oPeAVwT0sV @STLChildrens</li>
##   <li>How can<span class='match'> the </span>richest country in<span class='match'> the </span>world not have enough ventilators? Why didn't we start<span class='match'> the </span>process of emergency hospitals before it got to this point? did we think<span class='match'> the </span>virus was gonna stay in China? How can we do better next time? #coronavirus #WhiteHouseBriefing</li>
##   <li>#coronavirus #USA just today USA has 13685 new cases, and its still going on. #staysafe #StayHome</li>
##   <li>Luxury after Covid-19: Changed for (the) Good? - Bain &amp; Company https://t.co/fXAr6v1Joo</li>
##   <li>@realDonaldTrump Washington State, New York and California please remember that your President said, "FUCK YOU" when you asked for help during<span class='match'> the </span>Covid 19 crisis.  Vote 2020.</li>
##   <li>Really bad news out of Italy (919), Spain (569), UK (181), Netherlands (112). No letup from #COVID19</li>
##   <li>21st birthday party guests infected with COVID-19 after case linked to Aspen ski trip https://t.co/uG5gCODurc via @theage</li>
##   <li>Covid-19 will not end until this pussyhole catch it <U+0001F937><U+0001F3FE><U+200D>♂<U+FE0F><U+0001F928><U+0001F602> https://t.co/H3WNurFPin</li>
##   <li>As IRC in Palabek refugee settlement, Lamwo district, we visited<span class='match'> the </span>border points at Madi-Opei &amp; Apiriti..supported officers with PPE and IPC supplies, offered health education on Covid-19 and taught them good hand hygiene for their protection and safety#StopCovid19 @RESCUEorg https://t.co/sQyF7OKl13</li>
##   <li>Belly full . Showered . Glass of wine . What a Friday night #COVID19</li>
##   <li>Read about<span class='match'> the </span>impacts of<span class='match'> the </span>COVID-19 pandemic on<span class='match'> the </span>public charge rule, border closings, and other immigration policies in<span class='match'> the </span>BBA's latest Issue Spot blog post: https://t.co/jlpkOE0co6</li>
##   <li>@lookner They are reporting better numbers because they are cooking<span class='match'> the </span>books, not reporting<span class='match'> the </span>true numbers. Lots of people dead from "pneumonia" but due to lack of tests can't be classified as Covid 19</li>
##   <li>American Airlines flight attendant dies of COVID-19, highlighting risks that airline workers have faced while helping get passengers home (AAL) https://t.co/upusjxfgWS #work https://t.co/7AedgNa9cn</li>
##   <li>Could blood type affect your risk of COVID19? https://t.co/jL47qxaMtb</li>
##   <li>Even though<span class='match'> the </span>govt is denying #CommunityTransmission of #coronavirus,<span class='match'> the </span>states are preparing themselves to address such cases, reports @TheNaveena. 
## 
## @Eatala_Rajender 
## @WHO 
## #IndiaVsCorona
## #IndiaFightsCOVID19 
## #CoronavirusOubreak https://t.co/xdosHl46on</li>
##   <li>Thread from a science journalist about<span class='match'> the </span>#COVID19 pandemic. Scroll up. https://t.co/LFJ9v8GqvX</li>
##   <li>Day 5 of complete #anosmia &amp; #ageusia (loss of smell/taste) &amp; other niggly symptoms. Is this #COVID19? #NHS staff testing would be helpful ... working from home as I self-isolate. For now, I'll continue a daily "tastebud test" in form of a tabasco shot https://t.co/YmgSKSDx0I</li>
##   <li>We want to keep our parks open so you can use them for daily exercise. It's important though, that you follow<span class='match'> the </span>Government's guidance on social distancing, so please be safe and follow<span class='match'> the </span>rules - https://t.co/Oks59pyF4u https://t.co/x358oj0hFt</li>
##   <li>Shots of crowds gathering on Grand Strand beaches Friday amidst<span class='match'> the </span>#COVID19 #coronavirus pandemic. On Mar. 23 #SouthCarolina Gov. @henrymcmaster announced that he issued an Executive Order directing state &amp; local law-enforcement officers to disperse groups of three or more. https://t.co/Dw48zqW11i</li>
##   <li>@fasha_miss With<span class='match'> the </span>Covid-19 measures in place, we highly recommend you to avoid visit our branches if you don't have something important.
## 
## Prioritize your health and safety!</li>
##   <li>Watch me make a number of dumb tik toks during unemployment due to #covid19</li>
##   <li>What happens to all<span class='match'> the </span>Coronavirus / COVID 19 protective gear( gloves, masks, suits) Whats<span class='match'> the </span>modus of disposal? Which country are they being dumped into?</li>
##   <li>The best thing I think I have ever spent money on was my @DeskCycle, and I have never fully appreciated until #COVID19</li>
##   <li>@add_shogun @MarkDice @Acosta Actually out of 340 million people, it's a very small number..especially compared to<span class='match'> the </span>massive number of flu deaths that we've become accustomed to.  
## The good news is that many more who were ill with COVID-19 are surviving..many more are asymptomatic or have mild symptoms.</li>
##   <li>"DeKalb city council unanimously approves tax suspensions for hotels, restaurants amid COVID-19
## Hotel tax suspended through end of year, restaurant tax suspended through June 30" #MoreWithUs</li>
##   <li>Checkout this bullshit:
## 
## https://t.co/PJSfBltOmo</li>
##   <li>"Covidguilt"...the guilt you feel sticking your child infront of<span class='match'> the </span>tv/iPad/iPhone to be able to get some work done when you're on lockdown. #COVID2019 #covid19UK #COVID19</li>
##   <li>@MarkLevineNYC Why, in<span class='match'> the </span>name of God, would you not get tested? If it is Covid 19 people need to know. First of all to get an accurate accounting of<span class='match'> the </span>spread of<span class='match'> the </span>virus, and second so anyone that you came in contact with can take precautions around their own families.</li>
##   <li>#ICE Uses Its Power to Mitigate #Coronavirus Threat to #America https://t.co/AeobsRybHu via @AmActionNews</li>
##   <li>@SAMKLEF Remember me too ooo 5k na money ooo. And u even better than FG that only keep up for house with fear of covid-19 https://t.co/0h4wjy82ru</li>
##   <li>Is POTUS correct about<span class='match'> the </span>Chinese Virus? Truth in<span class='match'> the </span>video #NarendraModi @POTUS  @WHO @BBCWorld @TOIIndiaNews #COVID2019 #ChineseVirus19 @PMOIndia @ArnabGoswamiRtv @ndtv @RahulGandhi @ https://t.co/3UC4xkgh0F</li>
##   <li>New COVID-19 numbers for<span class='match'> the </span>state are out.. https://t.co/GaWnwNgtkh</li>
##   <li>This is not a playing matter': Perdue plant employees walk out over COVID-19 concerns
## 
## Close to 50 employees who walked out Monday morning say some workers on<span class='match'> the </span>production line were in contact with people who tested positive for COVID-19 https://t.co/mSwDtm10Om</li>
##   <li>I got 4.75 hearts <U+0001F602><U+0001F602> I did<span class='match'> the </span>#MiraSwatchesChallenge to support 
## @mirabeautyapp COVID-19 relief fund for makeup artists and beauty professionals out of work. Send love and hearts to who need help. Please donate if you can: https://t.co/K1h0AAyy5X https://t.co/oVx3Ww93Gd</li>
##   <li>Wow Chioma is positive while<span class='match'> the </span>baby she breastfeeds is negative. Something about this COVID-19<span class='match'> the </span>world is yet to know <U+2639><U+FE0F></li>
##   <li>An employee at Wahiawa General Hospital tests positive for COVID-19
## https://t.co/ySZvjeDmRL</li>
##   <li>@PrakashJavdekar @DD_Bharati @narendramodi @PIB_India @DDNewslive @BJP4India @BJP4Maharashtra Thank you sir,
## We really very happy to watch our popular show on TV again. 
## Assure that we will be winners against covid 19.</li>
##   <li>The fact that<span class='match'> the </span>USA overtook China in number of Covid-19 cases yet Trump still wants to “open<span class='match'> the </span>country for business by easter” says a fucking lot about what they think is important.</li>
##   <li>32 million Americans last week filed for unemployment   #Coronavirus</li>
##   <li>For their tireless effort towards curbing Covid 19. https://t.co/1BpzyyMNSP</li>
##   <li>@963ReachFM But one of<span class='match'> the </span>three #coronavirus cases is in<span class='match'> the </span>ICU in #Grandeprairie.  Not exactly good statistics!</li>
##   <li>So, working<span class='match'> the </span>numbers… ~330M people in<span class='match'> the </span>USA. 7.8B worldwide. The COVID-19 has twice<span class='match'> the </span>infection rate as<span class='match'> the </span>flu, and 10x<span class='match'> the </span>mortality rate. Flu infects about 5-20% of<span class='match'> the </span>population. So, reasonable estimate: 500k to 1M fatalities in<span class='match'> the </span>US, 31M worldwide. <U+0001F61F></li>
##   <li>Worried about infection from take-out or groceries? Watch these 3 tips. - CNN Video https://t.co/e4Ml37cy5m</li>
##   <li>Looking for #COVIDconfessions: what’s<span class='match'> the </span>most bizarre thing you’ve done to protect yourself from<span class='match'> the </span>#COVID19 virus? 
## 
## Me: I’ve left this package in my foyer since Tuesday. Figured I’ll give it a few days for<span class='match'> the </span>germs to die off before changing my printer cartridges. <U+0001F601> 
## 
## You? https://t.co/612V94zAbJ</li>
##   <li>Important piece in @JAMAPediatrics on neonatal outcomes of mothers infected with #COVID19. Most infants not infected.
## 
## Fever seems to be an important differentiator here ... like most viral syndromes in neonates. 
## 
## https://t.co/wFMUrWmU8n</li>
##   <li>The 58 new cases of #COVID19 in #MontcoPa included people from 30 municipalities, including 3 areas that reported their first cases <U+2013> #Hatboro Borough and #Salford and #WestPottsgrove townships</li>
##   <li>@HillaryClinton #HillaryClinton #COVID19 #Coronavirus #CoronaLockdown Hillary<span class='match'> the </span>state where you live is #1</li>
##   <li>@AdrianM94325697 It says they shut down.
## https://t.co/LElAGIR3gu</li>
##   <li>I stayed at home ,You stay with me? #<U+0E42><U+0E04><U+0E27><U+0E34><U+0E14>19<U+0E40><U+0E23><U+0E32><U+0E15><U+0E49><U+0E2D><U+0E07><U+0E23><U+0E2D><U+0E14> #<U+0E42><U+0E04><U+0E27><U+0E34><U+0E14>19 #COVID19 #<U+0E2D><U+0E22><U+0E39><U+0E48><U+0E1A><U+0E49><U+0E32><U+0E19><U+0E2B><U+0E22><U+0E38><U+0E14><U+0E40><U+0E0A><U+0E37><U+0E49><U+0E2D><U+0E40><U+0E1E><U+0E37><U+0E48><U+0E2D><U+0E0A><U+0E32><U+0E15><U+0E34> #<U+0E2D><U+0E22><U+0E39><U+0E48><U+0E1A><U+0E49><U+0E32><U+0E19> #spiderman2099 https://t.co/xuhjUgHkbL</li>
##   <li>@Giants Hopefully not #coronavirus</li>
##   <li>Join @IMA_Today for<span class='match'> the </span>webinar “How Employers Can Respond to COVID-19 and Frequently Asked Questions” on Tuesday, March 31, at 11 AM. For more info + to register: https://t.co/Ciix2XRGzF</li>
##   <li>If POTUS really wanted to throw a date out there, he should have gone with Memorial Day. Everyone would have thought it doable, and he’d still get to pander to his base. #Coronavirus</li>
##   <li>Pretty sure 6 trillion is an accurate measurement of how badly @realDonaldTrump 's sorry excuse for an administration has fucked up<span class='match'> the </span>response to #coronavirus https://t.co/tBYgCHi0qe</li>
##   <li>BBC Sport - #Coronavirus: All football below National League to end https://t.co/bIl0JXJTNL Hope it is a warming shot to what is going to be announced as regards to<span class='match'> the </span>4 professional leagues Come on FA, shows guts not <U+0001F4B0> face</li>
##   <li>Is The Apple Store Down ?: Apple published a new Press Release https://t.co/Ri0N8WjKeJ</li>
##   <li>Daily numbers update in WA: 516 cases &amp; 28 more deaths from COVID-19. That makes it 3,723 total positives &amp; 175 fatalities. #StayHome #FlattenTheCurve #coronavirusWA</li>
##   <li>i’m gonna break<span class='match'> the </span>trend of COVID-19 tweets n just say that playing for @UD_WBB is<span class='match'> the </span>best decision i’ve ever made. wish i could be on campus playin ball w my girls right now. love &amp; miss you guys<U+0001F499> https://t.co/pnZlOROFxs</li>
##   <li>might sell my nudes for extra income during<span class='match'> the </span>apocalypse <U+2623><U+FE0F><U+0001F9DF><U+200D>♀<U+FE0F> #coronavirus</li>
##   <li>@arabbitorduck @Zigmanfreud @PopC_Theology Good news is end of flu season around<span class='match'> the </span>corner, will definitely help hospitals tackle COVID-19.</li>
##   <li>WATCH: Everyday life continues to change for people across<span class='match'> the </span>country as COVID-19 spreads. #MTPDaily
## 
## @chucktodd: “For many of us, it's hard to fully grasp how suddenly, and dramatically, our daily lives have changed as we've climbed this curve.” https://t.co/Og2cgl1vJ6</li>
##   <li>Whatbis<span class='match'> the </span>matter with these politicians?? They are smiling and back slapping like they just landed a man in<span class='match'> the </span>moon.! 
## 
## Yesterday they were crying about people dying!!??
## 
## #OutOfTouch #Democrats #COVID2019 #PelosiHatesAmericans 
## @SusanLiTV 
## @BullsBearsFBN</li>
##   <li>Also, disinfecting your phone won’t matter much if you’re not practicing good hygiene. So remember to wash your hands regularly, don’t touch your face, and other many surfaces. https://t.co/GpfzQ3J05J #OppoCares @Oppo_Kenya @jumaf3 https://t.co/E9sA1c2Agv</li>
##   <li>#COVID19 shows people’s true colours... #CoronavirusOutbreak #coronavirus #StayHome https://t.co/x1jxp2qrne</li>
##   <li>@DrHilaryJones Why is<span class='match'> the </span>UK's Corvid-19 recovery rate not increasing? It has been at 135 for a number of days now. @piersmorgan #corvid19 #coronavirus</li>
##   <li>Is he withholding supplies and equipment from<span class='match'> the </span>citizens of Michigan and Washington? Did he tell vpotus not to call their governors? #HellIsHot #UnfitToLead
## #failure #loser #coronavirus</li>
##   <li>Spanish minister laughs talking about #covid19 situation. He met illegally #venezuela vice-president.
## 
## @sanchezcastejon is not going to fire him up.
## 
## Any country is going to denounce them?
## 
## @abc @cbs @cnn @thetimes @nytimes @BBCWorld https://t.co/ZluGexvkmc</li>
##   <li>@SpeakerPelosi U shoved in $300 million for National Endowment for<span class='match'> the </span>Arts, $300 million for National Endowment for Humanities in<span class='match'> the </span>COVID-19 bill. $600 million would purchase 42, 857,142 disposable hazmat suits at $14 each. What a piece of slime you are.</li>
##   <li>#StayHomeRw @WHO @kanangire. The best way for fighting #COVID-19. #StayHome https://t.co/FLwOWCawFh</li>
##   <li>Canada would not be Canada without its charities. The COVID-19 crisis is threatening to destroy them. 
## Everybody is struggling at this time but if charities are allowed to fail, it will be<span class='match'> the </span>most vulnerable of us who suffers.  #HelpTheHelpers https://t.co/4nU1CzILTq</li>
##   <li>#HCWshoutout to all<span class='match'> the </span>people working on<span class='match'> the </span>front lines trying to save lives while putting themselves at risk during this pandemic, special #HCWshoutout to my Aunt working in<span class='match'> the </span>ICU in NYC. #stayinside #COVID2019 #StaySafeStayHome</li>
##   <li>Citizen Scientists Are Helping Researchers Design New Drugs to Combat COVID-19 https://t.co/ey21v8Kdmh https://t.co/V8lEIlxOlS</li>
##   <li>@fordnation Virus stays on metal for 3hrs. Workers stations are not being cleaned during shift change. These workers come home to vulnerable family members. More needs to be done to protect these workers! I’m counting on you Mr. Ford! Thank you and stay safe! #COVID2019</li>
##   <li>You are not here: The numbers that<span class='match'> the </span>U.S. is reporting for COVID-19 aren't what they seem to be https://t.co/GzYK4yUWHN</li>
##   <li>Sadly, there is not a clip of this "medicine experiment" online. It was a really emotional episode where he (@DrPhil)  guest-starred on @Oprah. I wondered why they were crying. I get it now.
## 
## #coronavirus #COVID19 #ventilators #VentilatorShortage</li>
##   <li>#Covid 19 save world https://t.co/unfKlVzJeF</li>
##   <li>@seanrestes hit<span class='match'> the </span>jackpot @GiantEagle on 117th in CLE but could only buy one tub. <U+0001F637><U+0001F9A0>#coronavirus #WereInThisTogether  #StayHomeOhio https://t.co/b3b7y3z1Dh</li>
##   <li>NHS Aberdeenshire COVID-19 Testing Guidelines https://t.co/iZpSPPvPHh</li>
##   <li>@DDNational @PrakashJavdekar thank you for<span class='match'> the </span>ramayan....hope lord Ram will help us to get away from Covid 19
## Jai shree ram https://t.co/mRG6pGULHP</li>
##   <li>Important safety info. #coronavirus #COVID<U+30FC>19  https://t.co/BdiCtqLk3q</li>
##   <li>Raymond J. de Souza: When<span class='match'> the </span>going got tough due to COVID-19, Justin Trudeau showed his true authoritarian colours https://t.co/h4wsrrRthC via @nationalpost</li>
##   <li>Things to do during lockdown... 
## 
## #LifeintimeofCorona
## #CoronaLockdown
## #coronavirus https://t.co/dhjHcx6D0K</li>
##   <li>We're number 1!  In Covid-19 cases.<U+0001F631> #TrumpVirus</li>
##   <li>This #coronavirus is like<span class='match'> the </span>TV show #FallingSkies</li>
##   <li>St. John's funeral home a COVID-19 'mini-epicentre' after more than 60 cases traced to two wakes https://t.co/GjWhvj0m8L via @nationalpost</li>
##   <li>Biotechnology Innovation Organization summit outlines what #industry needs for #COVID-19 response. I am Biotech @IAmBiotech https://t.co/gKEO12AZjX https://t.co/SAQfyOdnlA</li>
##   <li>United in this fight: Nadal, Djokovic extend generous COVID-19 pledges https://t.co/0bxmMnghSX @TwitterNews @nytimes @CNN @NickRiccardi @USATODAY @politico @AP @WSJ @MSNBC @Newsweek @MariaTeresa1 @Salon</li>
##   <li>@ceesmcd women cont to be at<span class='match'> the </span>forefront of COVID-19 recovery</li>
##   <li>This is my profound daily tweet about #COVID19.  Please like it. Also, #StayHomeSaveLives</li>
##   <li>@GOPChairwoman @senatemajldr @realDonaldTrump I hope someone in your immediate family gets covid 19   We know you value money more than life GREED!</li>
##   <li>@hackingdata @COVID19Tracking @propublica You inspired me to put together a petition. Thanks!
## 
## Now go sign it and spread<span class='match'> the </span>word! https://t.co/d142lKQTgG
## 
## Let’s think bigger. 30M tests in 30 days. Go, go, go! Let's beat Iceland! We can do it.</li>
##   <li>Coronavirus Australia: Chinese owned property developer Risland flies more than 82 tonnes of medical supplies to Wuhan. 
## How and why was this allowed, right under our border security noses during one of<span class='match'> the </span>world’s worst times! What a disgrace! #COVID2019  https://t.co/17CWohaBFT</li>
##   <li>31 states are currently reporting 10 or fewer deaths from #Coronavirus. But I actually think<span class='match'> the </span>numbers are much higher, because I think it's been here most of<span class='match'> the </span>winter and contributed mightily to CDC labeling several "epidemic" spikes for pneumonia in January &amp; February.</li>
##   <li>Finally, a sliver of hope and smart move ... “Additionally,<span class='match'> the </span>self-employed, sole proprietors, and freelance and gig economy workers are also eligible to apply.” #stimulus #smb #smallbiz #COVID19  https://t.co/JBMnHoaLjy</li>
##   <li>BREAKING: Michigan reports 801 new cases and 3,657 total cases
## 
## TOTAL DEATHS: 92
## #michigan #coronavirus</li>
##   <li>COVID-19 cannabis shortages, grow your own by @TheYoungJurks https://t.co/3QrHMTvy60 #mapoli #magov</li>
##   <li>#Covid19 has infected more people in<span class='match'> the </span>US than in any other country worldwide - including China, where coronavirus first emerged back in December.</li>
##   <li>A green reboot: In addition to threatening millions of lives and<span class='match'> the </span>global economy, COVID-19 has demonstrated that societies are capable of transforming themselves... there's no better time than now to usher in systemic economic change. https://t.co/ICdKWbIZJd https://t.co/AArgPjszgs</li>
##   <li>@MauricioRojasmr #COVID19 New Cases
## 
## +11,533 <U+0001F1FA><U+0001F1F8> USA
## 
## +6,273<U+0001F1EA><U+0001F1F8> Spain
## +6,240<U+0001F1E9><U+0001F1EA> Germany
## +5,909<U+0001F1EE><U+0001F1F9> Italy
## +3,809<U+0001F1EB><U+0001F1F7> France
## +2,926<U+0001F1EE><U+0001F1F7> Iran
## +2,885<U+0001F1EC><U+0001F1E7> UK
## +2,069<U+0001F1F9><U+0001F1F7> Turkey
## +1,172<U+0001F1F3><U+0001F1F1> Netherlands
## +1,117<U+0001F1E8><U+0001F1ED> Switzerland
## +1,049<U+0001F1E7><U+0001F1EA> Belgium
## 
## +733<U+0001F1E6><U+0001F1F9> Austria
## +724<U+0001F1F5><U+0001F1F9> Portugal
## +567<U+0001F1E8><U+0001F1E6> Canada
## 
## Source: Worldometer</li>
##   <li>@Swamy39 Sir you have very good diplomatic<U+0001F91D>r’ship with china, as per your sources how worst #ChinaVirus19 has effected <U+0001F1E8><U+0001F1F3>&amp; there denial mode to own<span class='match'> the </span>#COVID2019 origin when #WuhanOutbreak has given birth to it #ChinaLiedPeopleDied &amp; #ChineseBioterrorism impact on <U+0001F1EE><U+0001F1F3>future<U+0001F468><U+200D><U+0001F468><U+200D><U+0001F466><U+200D><U+0001F466><U+0001F64F></li>
##   <li>I’ve noticed this many times, or rather<span class='match'> the </span>lack thereof, in N American hospital videos of their staff. They don’t have suits, they only have one mask, their heads are about 30% exposed, etc. China showed<span class='match'> the </span>world how to fight #coronavirus  We need to learn now #cdnpoli https://t.co/VVDOAZVBri</li>
##   <li>Answer<span class='match'> the </span>question<span class='match'> the </span>man asked, who is making these testing kits?? #COVID19</li>
##   <li>UK government will begin coronavirus tests for health workers on<span class='match'> the </span>frontlines #COVID19 https://t.co/6Izyor5wDC</li>
##   <li>LODGED #RobertFrost
## 
## The rain to<span class='match'> the </span>wind said,
## “You push and I'll pelt.”
## They so smote<span class='match'> the </span>garden bed
## That<span class='match'> the </span>flowers actually knelt,
## And lay down--though not dead.
## I know how<span class='match'> the </span>flowers felt.
## 
## (Right now, everyone, with<span class='match'> the </span>#COVID19 crisis)</li>
##   <li>“There is strong evidence that exposure to air pollution increases susceptibility to respiratory viral infections by decreasing immune function.”
## Cheers for BC,<span class='match'> the </span>ONE Canadian province telling<span class='match'> the </span>public not to burn biomass because of #COVID19.
## https://t.co/RIAVObtDQy https://t.co/fjyJ8JdLcH</li>
##   <li>Today, Hubbard Street announces<span class='match'> the </span>immediate and indefinite closure of<span class='match'> the </span>Lou Conte Dance Studio. Faculty will continue be paid for a few weeks. HS predicts<span class='match'> the </span>financial impact of<span class='match'> the </span>covid-19 health crisis on<span class='match'> the </span>org will exceed $1M.</li>
##   <li>@NicolaSturgeon I am a carer to my husband who is dietetic and has asthma and also he is disabled as well and I am with him for more than 35hours a week but my question is with me being a carer can I get tested to see if I have<span class='match'> the </span>covid-19 or not</li>
##   <li>The critical role of laboratory medicine during coronavirus disease 2019 (COVID-19) and other viral outbreaks : Clinical Chemistry and Laboratory Medicine (CCLM) | @scoopit https://t.co/EvDdsneP6r</li>
##   <li>with private hospitals with acute capabilities in<span class='match'> the </span>city so that Covid-19 patients can be isolated and treated appropriately.
## 
## They would like acute hospitals to also be on standby to care for very acute patients on a referral basis.
## 
## Interested healthcare workers should reach</li>
##   <li>#Covid19: Irresponsible nation filled with greed should be stripped of veto power and UNSC seat for hiding facts knowingly or unknowingly.</li>
##   <li>Just like<span class='match'> the </span>Economy of this Cow-N-Tree called South Africa, you are not included and<span class='match'> the </span>plans to deal with Covid-19 absolutely do not include you,it businesses, businesses and businesses.
## And we all know<span class='match'> the </span>owners of businesses in this Cow-N-Tree <U+0001F98D><U+0001F98D><U+0001F98D>
## <U+270C><U+0001F3FF><U+0001F1FF><U+0001F1E6><U+0001F1FF><U+0001F1E6><U+0001F1FF><U+0001F1E6><U+0001F1FF><U+0001F1E6></li>
##   <li>Immensely proud of my colleagues at UCL who are part of<span class='match'> the </span>incredible global fight against COVID - 19 https://t.co/v1AjsDCeS3</li>
##   <li>Teenage boy whose death was linked to coronavirus turned away from urgent care for not having insurance https://t.co/uxnE60TYwz</li>
##   <li>@TVMohandasPai @BDUTT @ShekharGupta @sardesairajdeep @ndtv Sir, these Lutyens are either hiding in their burrows or looking for something new to defame Modiji and RSS on Covid-19 . Such a shame #KabulGurdwaraAttack</li>
##   <li>Oh @Ocado thank you! Just had a lovely chat with one of your fabulous drivers (2 metres apart obvs) - life is great again! #COVID2019 #delivery #2weekwaitworthit #smallthings https://t.co/BsSFwm3kCM</li>
##   <li>Good evening Gila County! As many of us have heard or seen earlier today, we posted that we now have one (1) confirmed case in Gila County. 
## Just a reminder: To prevent<span class='match'> the </span>spread of  COVID-19.  Stay home if sick; Wash hands; Cover cough; Clean/disinfect; use social distancing https://t.co/97PREIQpc2</li>
##   <li>On March 20, SCU told students that they had just days to move out. The decision to close<span class='match'> the </span>residence halls, neighboring housing and graduate and law residences was made after a law student living in<span class='match'> the </span>law residences tested positive for COVID-19.
## https://t.co/KWtwVll2T5</li>
##   <li>Exactly zero people believe that China has or is accurately reporting Covid-19 data. https://t.co/7Idm0chSd1</li>
##   <li>@JoeBuscaino because 6 month re-payment plan is not enough! How many properties do you own sir!? #CancelRent #COVID19</li>
##   <li>Support Students with Disabilities: Get resources and tips to help students with disabilities during<span class='match'> the </span>#COVID19 pandemic https://t.co/2AoxsZMFDv #specialneeds @AFTunion https://t.co/W6PmHjvsvX</li>
##   <li>@GregAbbott_TX Governor, I’m TDY to New York for military training for several months. When I return are you saying I can’t be at home with my wife and kids for another 14 days? Where am I supposed to go? #COVID19</li>
##   <li><U+0001F481><U+200D>♀<U+FE0F>Social Distancing is<span class='match'> the </span>key to prevent<span class='match'> the </span>spread of <U+0001F9A0>Corona Virus.
## 
## Practice Safe Social Distancing!
## 
## Covid-19 - Be Aware, Stay Alert!
## 
## #HDOR #COVID19 #CoronaVirus #FlattenTheCurve #StopTheSpread #IndiaFightsCorona #StayHomeStayHealthy #CoronaStopKarona #CoronavirusOutbreak https://t.co/9cEcU3b79E</li>
##   <li>Almost 120000 people have recovered from #COVID19 across<span class='match'> the </span>world ...We are winning<span class='match'> the </span>war <U+0001F4AA> #CovidNGR</li>
##   <li>This is my HUGE concern - you would be shocked to hear how many people don't know how to use a computer, let alone have access to one - sad but true... it's is ludicrous to insist on #MeansTesting, in a #pandemic 
## #NoMeansTesting #MoneyToThePeople 
## #EmergencyUBI #COVID19 <U+0001F64F><U+2695><U+FE0F><U+0001F911><U+0001F64F> https://t.co/gOzpigLmvA</li>
##   <li>Dr. Fauci Answers Trevor’s Questions About Coronavirus | The Daily Socia... https://t.co/qAMBJTi1rz via @YouTube
## MUST WATCH! If only because he has same charming Brooklyn accent &amp; humour as my Dad, who was also from that neck of<span class='match'> the </span>woods. More seriously, best info on #covid19.</li>
##   <li><U+0001F4D6> So, Lockdown starts Today March 26, 2020 and what does Isaiah 26 vs 20 say?Check your #Bibles God's WORD is #TRUTH <U+0001F64C>Continue reading after...Amen! 
## JESUS is coming soon!<U+0001F54A><U+23F3><U+0001F64C>
## #COVID2019 #Lockdown21 #DaysofNoah  #ABORTIONisMurder #GODSWrath #Repent #ChineseVirus19 #WordofGod https://t.co/wvkUfAZ4pB</li>
##   <li>"Economic stress on families resulting from<span class='match'> the </span>#COVID19 outbreak &amp; its secondary impacts may increase<span class='match'> the </span>potential for #childlabor; #childmarriage, #earlymarriage &amp; #forcedmarriage of girls &amp; other negative coping strategies." @PlanCanada @ChildLaborCLC https://t.co/zKR5gPNCfz</li>
##   <li>@realDonaldTrump 
## 
## I hope you investigate this H1b foreign worker program and at<span class='match'> the </span>very least suspend it until after<span class='match'> the </span>#economy is back to where it was b4 #COVID19 
## 
##  #Americans need #jobs before foreign workers #AmericaFirst #maga #KAG2020 #Trump #Leadership #2020Elections</li>
##   <li>Sir @narendramodi @realDonaldTrump After we are out of this forced bad phase in our lifes What should World Community do with #China,who forced almost whole world into recession by infected with 
## China Virus-19 #ChineseVirus19 #coronavirus #COVID #COVID19 #coronavirusinindia</li>
##   <li>Talking to a child psychologist tonight about children's #coronavirus worries, do you have any questions we can put to him on #TheNine tonight? with @BBCLauraMiller</li>
##   <li>Hi @EUHomeAffairs @Place_Beauvau @BMI_Bund @foreignoffice @Justitiedep @ministerieJenV thousands of refugees are at risk of #COVID19 on Greek islands due to crowded unsanitary conditions. Will you act now to #LeaveNoOneBehind and save lives? <U+0001F449> https://t.co/uD5M3BBPtp</li>
##   <li>COVID-19: Infection spread appears to be slowing in B.C., figures suggest https://t.co/C8CEzBWjaU</li>
##   <li>Without my HCQ I cannot get out of bed most days. #lupuswarriors #coronavirus #WithoutMyHCQ #Hydroxychloroquine #Plaquenil https://t.co/aXayZnOkhV</li>
##   <li>THANK YOU to all<span class='match'> the </span>health and social care staff on<span class='match'> the </span>frontline who are working tirelessly in<span class='match'> the </span>fight against #coronavirus #NHSThankYou #clapforthenhs #clapforourcarers #staysafestayhome https://t.co/Z1HFEVoC84</li>
##   <li>My mom is a vendor. I can’t tell her not to go to work because we’ll starve. She can’t not take any cash payments because she needs<span class='match'> the </span>cash to buy forex to buy more stock. She can’t do anything with ecocash and swipe<U+0001F494> #coronavirus</li>
##   <li>@richieSF2016 Too bad<span class='match'> the </span>people you dad shot and killed never got<span class='match'> the </span>chance to see covid 19 , H1N1, Zika etc</li>
##   <li>Didn’t get to hear<span class='match'> the </span>claps personally tonight as I was still in work but loving<span class='match'> the </span>videos being sent in by friends and family!<U+2764><U+FE0F><U+0001F64C><U+0001F3FB>#NHS #clapforourcarers #thankyou #Covid19 #workingtogether https://t.co/ErdD4Yy4Dl</li>
##   <li>Spoke to a customer for work today and she almost started crying because she got diagnosed with Covid-19 today! Don't take it lightly man, if you can stay home! Only go out if you absolutely cannot make it another without that item</li>
##   <li>@Mariam_Bhadmus One house of representatives was busy defending<span class='match'> the </span>purchase of car on a fireworks program in Tvc ,that it's basic need for them. They can be using their personal car for govt work .
## Well got to know<span class='match'> the </span>car had being planned ahead way b4 this Covid 19 issue</li>
##   <li>CHESTERTOWN<U+00A0><U+2014> The Kent County Health Department on Friday morning, in conjunction with<span class='match'> the </span>Kent County Commissioners, reported a second confirmed case of COVID-19 in Kent County. The individual was identified as a man in his 70s who lives in Kent an… https://t.co/hY5fqIp1Lb</li>
##   <li>@Dimyan please sign and share https://t.co/axRIoVzp87 @OregonGovBrown</li>
##   <li>Hospital ship Mercy arrives at Port of Los Angeles https://t.co/o3Pcz0ROLt via @YouTube #Covid19 #CoronaVirus</li>
##   <li>@guyverhofstadt So, Guy,maybe you could advise just how many ventilators have been supplied to Italy, Spain and other countries currently overwhelmed by #coronavirus. It's a simple question.</li>
##   <li>A new group for #IndependentShops in #Sheffield to connect with customers online during<span class='match'> the </span>#Coronavirus crisis over on #Facebook
## 
## Business owners, please use this group to share your links, offers and updates with customers through these difficult times.
## 
## https://t.co/AsLHFnU2GB</li>
##   <li>#TBJoshua #CoronavirusOutbreak will end today. 
## Just in: @NCDCgov 81 cases confirmed. 
## Is okay motor jam us last last<U+0001F683><U+0001F683><U+0001F683><U+0001F683><U+0001F683><U+0001F683><U+0001F683> #ChineseVirus19 #COVID19</li>
##   <li>@xwilkinson92 @NicolaCairnX @RishiSunak @BorisJohnson @MattHancock Alex, I've been looking at it for some SME colleagues of mine, and I'm a bit confused about<span class='match'> the </span>eligibility info on<span class='match'> the </span>BBB site. It seems to be saying<span class='match'> the </span>only eligible proposals are those which would be acceptable to<span class='match'> the </span>lender minus<span class='match'> the </span>circumstances of<span class='match'> the </span>Covid-19 pandemic?</li>
##   <li>in case you needed a reminder that holy shit this [COVID-19] is bad, https://t.co/oRGmbD26wc</li>
##   <li>‘Are you on glue?’: Twitter scoffs at WSJ op-ed claiming #coronavirus crisis is Trump’s ‘path to greatness’ https://t.co/BsSXsWybgN</li>
##   <li>‘People Are Dying’: Battling #Coronavirus Inside a N.Y.C.
## https://t.co/mDJUK0k5Qg</li>
##   <li>Why is pandemic preparedness planning important?
## 
## This was<span class='match'> the </span>European advice that<span class='match'> the </span>UK disregarded for eleven years.
## 
## We simply weren’t prepared.
## 
## #coronavirus 
## #COVID19 
##  https://t.co/dTuiOjpnnk</li>
##   <li>Featured this in my round-up for a reason - @sirjohnhargrave 
## #CoCo #COVID19 #journalism https://t.co/bTOmJRaH8H</li>
##   <li>McDonald‘s Shuts Down All but Five Israel Restaurants to Service Medical Staff for Free https://t.co/3C3IsmoDvt via  @BreitbartNews #Coronavirus https://t.co/oXC9nybUWq</li>
##   <li>Media Release: SA racing industry introduces further COVID-19 measures.
## 
## "Our aim is to keep racing going, just as it has been able to in Hong Kong and Japan during this pandemic." - Nick Redin TRSA CEO
## 
## Read more: https://t.co/3uqpIrW5YW
## 
## @tabcomaumedia  @Racing https://t.co/tiUXoT5FFb</li>
##   <li>CORONAVIRUS UPDATE: The federal REAL ID deadline has been pushed back a year to October 2021 amid<span class='match'> the </span>ongoing response to<span class='match'> the </span>coronavirus pandemic. https://t.co/8sTORIOB8x</li>
##   <li>OMG<U+0001F630>
## #新型コロナウイルス #新型肺炎 
## Video reveals lung damage in US coronavirus patient: 'People need to take this seriously' - CNN https://t.co/80Q4xpvtKe</li>
##   <li>Why are grown men STILL wearing flip flops in public? That’s how #COVID19 started.</li>
##   <li>A War Sans Cavalry: Horse Ownership in<span class='match'> the </span>Age of COVID-19 https://t.co/7oRsxqag0l</li>
##   <li>Nickelodeon, Disney Airing Content to Address Kids' COVID-19 Concerns 
## #WAITT #KidsTogether 
## https://t.co/3RuelPC31K https://t.co/Bud4ZAfstT</li>
##   <li>#CoronaVirus #COVID<U+30FC>19 
## #TrumpLiesAmericansDie 
## Day 67 of<span class='match'> the </span>#Trumpdemic https://t.co/LsgAdeIES6</li>
##   <li>NEWS FLASH: Davido’s Chioma has tested positive for #COVID19.    <U+0001F494></li>
##   <li>Is this not escalating<span class='match'> the </span>chances for infections even more,the police have turned out to<span class='match'> the </span>1st danger ahead of #COVID19 #CurfewinKenya @ntvkenya https://t.co/tIYHtEzd9D</li>
##   <li>Poignant and important article about<span class='match'> the </span>doctors' first hand experience with COVID-19 in Bergamo's modern hospital.
## https://t.co/Q2u6G28EmP</li>
##   <li>@SweetKat111 @realDonaldTrump @NYCHealthCommr You are correct on one point. He halted travel from China on 1/31. He's literally done nothing else,<span class='match'> the </span>extreme measures required, to stem<span class='match'> the </span>flow of Covid-19 in<span class='match'> the </span>US. As of today you ahve<span class='match'> the </span>highest number of cases in<span class='match'> the </span>world, outpacing China, who has 3X your population.</li>
##   <li>Lacombe Police providing tips for local business owners during<span class='match'> the </span>COVID-19 pandemic https://t.co/nS9ZWfKneV</li>
##   <li>Should I become a pandemic influencer? #COVID19</li>
##   <li>@PattyHajdu @SenateCA RED Carpet = how fitting since<span class='match'> the </span>#corrupt incompetent #CANADAGovernment has blood on its hands #Agenda21 #BIOWeapon #CHINA #CHINAVIRUS #CCPVIRUS #CoronaVIRUS #COVID19 @JustinTrudeau https://t.co/2TRjWWMpQ4</li>
##   <li>Does this mean CDC will have record low flu cases and deaths since they are all being counted as COVID-19?
## WE ARE WATCHING!
## @CDCgov 
## @realDonaldTrump @VP</li>
##   <li>#PuertoRico digs in their heels deeper to restrict movement on<span class='match'> the </span>island. Only even numbered vehicle license plates M-W-F and odd numbered for Tu-Th-Sa 
## 
## #Covid19 #measures https://t.co/CAThy9HMCE</li>
##   <li>Some good news: @NYGovCuomo set to release 1,100 people incarcerated for technical violations of parole. #COVID19 
## 
## Thank you to all<span class='match'> the </span>advocates &amp; organizers who kept<span class='match'> the </span>pressure on! This will save lives. Now it’s time to #FreeOurElders and grant clemencies across<span class='match'> the </span>state.</li>
##   <li>https://t.co/ZG20w3LF4V Donations to The Jockey Club Safety Net Foundation to go to COVID-19 Relief</li>
##   <li>@imVkohli pls step up <U+0001F64F>
## 
## https://t.co/EZDYWBnVuh</li>
##   <li>#Coronavirus with so much information out there, lets ensure we make<span class='match'> the </span>right decisions when it comes to<span class='match'> the </span>virus and follow<span class='match'> the </span>professional advice from our department heads.
## 
## Please all, lets take this seriously. Support one another at distance.
## https://t.co/l1ebFMUeLn https://t.co/jLdlLBCfxb</li>
##   <li>@kathygriffin @lookner I just heard<span class='match'> the </span>news that her mother passed away. My prayers go out to you and and your family. I lost my mother three years ago and still have not gotten over it. Also heard you’re in<span class='match'> the </span>hospital trying to find out if you’ve got that COVID-19. Hopefully you do not have it.</li>
##   <li>Poland reports 58 new cases and 2 new deaths bringing total confirmed cases there to 1,221 and 16 total deaths, with 170 new cases reported today.
## 
## #CoronaVirus #Covid19 #CoronaVirusOutbreak</li>
##   <li>@SkeltonSophie @SamHeughan Sorry, I’m a nurse who works in ICU and this information is not accurate. This is not information that is passed along to healthcare workers. The CDC and WHO are reliable sources for COVID-19 facts.</li>
##   <li>Seems @AirCanada isn’t very keen on responding to questions either. #COVID19</li>
##   <li>Stay at home. Do not travel if it can be avoided. Covid-19 travels by plane. If you are "stuck" in quarantine, please wait until you can travel without spreading<span class='match'> the </span>disease further. Stay where you are. Healthy "shedders" exist too.</li>
##   <li>I didn't hear any clap because I was inside<span class='match'> the </span>isolation room with suspected Covid19 tracheostomy patient. My patient's needs is<span class='match'> the </span>utmost importance.  #PleaseStayAtHome #clapforourcarers #clapforNHS #clapforthenhs #clapforournhs #ThankYouNHS #covid19 #COVID2019</li>
##   <li>my friends and I reuniting after this covid-19 stuff is over https://t.co/1vh4ENdtYU</li>
##   <li>WHERE are ALL these Covid-19 TESTS<U+2049><U+FE0F>
## 
## To Control Outbreaks &amp; Property MAP Hotspots WE MUST TEST anyone with Symptoms &amp; who has been EXPOSED &amp; What’s with this LAG in getting RESULTS<U+2049><U+FE0F>
## A WEEK<U+2049><U+FE0F>Really<U+2049><U+FE0F>
## 
## TESTING is<span class='match'> the </span>KEY to CONTROL<U+203C><U+FE0F>
## 
## TRUMP is CLUELESS<U+203C><U+FE0F><U+0001F644>
## 
## TEST TEST TEST TEST<U+203C><U+FE0F> https://t.co/oM9WQcNwzd</li>
##   <li>[BREAKING NEWS] | Covid-19: 1170 confirmed cases in South Africa https://t.co/a9BNq4l66p https://t.co/UYADhE9sko</li>
##   <li>Internal @USArmy memo says measures to halt COVID-19 'have proven hugely insufficient’.
## 
## https://t.co/YFZTTej3Kf</li>
##   <li>Stuck at Home? It might be your time to shine in<span class='match'> the </span>kitchen! Stay Safe &amp; Stay Home. 
## 
## #CoronavirusPandemic #Coronavirus #COVID19 #USA #CoronavirusLockdown https://t.co/TOwsXu8Rzp</li>
##   <li>How I prep myself to leave my home to get things (groceries etc).
## 
## It was nice to see<span class='match'> the </span>majority of ppl w gloves &amp; masks <U+0001F637>while staying 6 ft away from eachother<U+0001F44D><U+0001F3FC>
## 
## I hope this helps encourage you to practice<span class='match'> the </span>same habits<U+2764><U+FE0F>
## #AllInThisTogether #CoronaVirus #californialockdown https://t.co/FzU2STPmpf</li>
##   <li>Resident at Kirkhaven tests positive for COVID-19
## https://t.co/bKVttNecDz</li>
##   <li>The US has more ACTIVE cases of COVID19 than China’s total cumulative cases. <U+0001F633> #COVID19 https://t.co/buPA9CpAwd</li>
##   <li>@nbstv You keep making buffoonery apologies in<span class='match'> the </span>face of a pandemic. #COVID19 knows no skin color. When People start dying, you will regret why didn't beat them off<span class='match'> the </span>streets. Always remember you can only admit 55 Patients into ICU. Let People #StaySafeStayHome #STAYSAFEUG</li>
##   <li>@DonaldJTrumpJr @thebradfordfile Sick, sick, sick people. Not talking #coronavirus either.</li>
##   <li>@1Naasty @kikaltz Thank you for<span class='match'> the </span>thread. I needed this. Known about this since<span class='match'> the </span>Clintons wore purple after @POTUS won.
## Follow all politicians World Wide wearing purple ties and being all submissive. Such 'roaches.
## So funny and pathetic at this point in time #WeKnow #Covid19 #UsHouse #WWG1WGA https://t.co/sdEzbHdBEk</li>
##   <li>#Coronavirus and conspiracy theories - an impartial analysis https://t.co/3PQZchYE3i #BitChute</li>
##   <li>I feel like I’m deadass failing at parenting with covid-19 ... how exactly does a person who has been diagnosed with ocd, has several chronic conditions, and people pretend is a community organizer actually parent in<span class='match'> the </span>most compassionate and trauma free way?</li>
##   <li>Hi @KristaKiuru @elenabonetti @GEOgovuk @CharlieFlanagan @BMFSFJ domestic violence has been increasing at an alarming rate during #COVID19 lockdowns. Please take immediate emergency action to prevent and combat violence against women and domestic violence. https://t.co/Hx8Qe34j3m</li>
##   <li>Sam Neil helping us through this all #COVID19  https://t.co/iHuW13jH2O</li>
##   <li>the only reason<span class='match'> the </span>united states surpassed italy and china for<span class='match'> the </span>most confirmed cases of covid-19 is simply because more people in<span class='match'> the </span>us are being tested for it</li>
##   <li>So...there is a stay-at home order out.  I get an email from my mortgage company still wanting their money on time, tells us we can pay on line but will charge us $95 convince fee.  ARE YOU F****ing serious???? Shame on you! #COVID2019 #QuarantineLife #GTFOH</li>
##   <li>Found out earlier this week one of my best friends has #COVID19 <U+0001F64F><U+0001F3FE><U+0001F64F><U+0001F3FE></li>
##   <li>A 37 minute voice note explaining how COVID-19 is linked to 5G. https://t.co/Y7aRBIweQB</li>
##   <li>@jayvanbavel Governments have had that ability for ages. It’s almost common knowledge now - so much so that Israel openly announced that they would track locations of ppl w/ #coronavirus to identify who they contacted. But afaik, only governments and cell phone operators have these data.</li>
##   <li>COVID-19 gives this song an entirely new meaning        https://t.co/h10JZs9U6b</li>
##   <li>What if we all put our stimulus checks together. We could do some real financial damage. Like buy land and build on it or buy stocks. #StimulusPlan #COVID2019</li>
##   <li>.@Anomaly joins<span class='match'> the </span>fight against #Coronavirus. https://t.co/pump4Qcv6m https://t.co/X8N0Rmys5Y</li>
##   <li>#CoronavirusOubreak
## #GodMorningFriday
## No medicine no expense
## Cancer patients who have been cured by<span class='match'> the </span>devotion given by Sant Rampal Ji Maharaj have become popular among all.
## Lord kabir
## Must watch ishwar tv 8:3 https://t.co/x7d9r3EWru</li>
##   <li>the hospital i go to for my eye got an abundance of covid-19 cases and some people are saying appointments are gettinh cancelled because of it</li>
##   <li>#ICE statement on COVID-19: Enforcement and Removal Operations
## https://t.co/f1dEAZ6mns
## 18 Mar 2020
## 
## #QUOTE to delay enforcement actions until after<span class='match'> the </span>crisis or utilize alternatives to detention, as appropriate.
## 
## #CoronaVirus #WuhanVirus
## 
## qt-covid19-news-094 by #BorderObserver</li>
##   <li>@renoomokri @Imamofpeace @MBuhari Here from buhari himself...#ImamOfPeace he is speechless #StayAtHomeAndStaySafe #COVID19 https://t.co/mRUzBTufGX</li>
##   <li>@singhvirat2010 @palkisu No. Mention of COVID-19</li>
##   <li>Healthcare workers exposure risk assessment &amp; management-The tool used by healthcare facilities cared for or admitted #COVID2019 patients determine<span class='match'> the </span>risk of virus infection of all who have expose and then provides recommendations for management #healthcare
## #HealthCareWorkers https://t.co/wmsWN7Y3Rm</li>
##   <li>Self employed since June 2019. Tough times ahead....
## Received this text from a client <U+0001F49B> #selfemployed #coronavirus #stayathome #Ayrshire #Scotland https://t.co/3iq1Wk64Up</li>
##   <li>How about, instead of Celebrity Love Island, we have "Celebrity Fruit Pickers", "Celebrity Delivery Drivers", "Celebrity 111 operators"?
## 
## #COVID2019 
## #essentialwork</li>
##   <li>Video:  In Gibson County, deputies do grocery shopping for those most vulnerable to COVID-19 https://t.co/1O8TVmGmzM</li>
##   <li>What does it take for people to understand<span class='match'> the </span>horror ahead? It’s been another terrible day in Italy with 919 deaths. <U+0001F5A4> <U+0001F1EE><U+0001F1F9>  Total #COVID19 deaths is now 9,134. And 6,000 new infections today. Hospitals &amp; medical staff overwhelmed. And a young COVID29 nurse has taken her life. https://t.co/jb1U2L5P9b</li>
##   <li>#NewtGingrich : #Coronavirus spread because of #Chinese government mismanagement, corruption and dishonesty
## 
## https://t.co/Fl30NsN7jj</li>
##   <li>PIIE: Four areas cry out for collective action from #G20 countries, TrumanTed writes: 
## 1<U+FE0F><U+20E3> Financial support for poorer countries
## 2<U+FE0F><U+20E3> Curbing destructive trade practices
## 3<U+FE0F><U+20E3> Macroeconomic support
## 4<U+FE0F><U+20E3> Prudent, responsible financial supervision
## https://t.co/WS1xUntn8D #finance #m…</li>
##   <li>Innovation and collaboration at work @MassChallengeHT to help urgently solve<span class='match'> the </span>massive #COVID19 challenge- https://t.co/AQUnToIBD1</li>
##   <li>Calling it. Births are gonna jump up around 9 months from now. #COVID19</li>
##   <li>This mofo’s brain is a “holding cell” for dumb shit. #coronavirus #TrumpVirus #TrumpPressConf #TrumpPressConference #25thAmendmentNow #TrumpLiesAboutCoronavirus</li>
##   <li>Johnson’s #coronavirus campaign got off to stuttering start (Dominic Cummings must pay price for that), but<span class='match'> the </span>UK is here now, more or less doing<span class='match'> the </span>right thing, privileging life over all else. But<span class='match'> the </span>US? God save you from that murderous maniac. #NewYork</li>
##   <li>Fair play @VodafoneIreland! It would be good to see more multi national corporations step up to support our charities at this time of need for so many. #coronavirus https://t.co/RyuONqNQhh</li>
##   <li>Yea.  You want to mentally wrap your mind around scarey at a biblical level of scary?  In about 4 weeks<span class='match'> the </span>infection rates in @GOP+30 districts will exceed<span class='match'> the </span>Blue #Covid19 hotspots where all<span class='match'> the </span>people, medicine and skills are.  People will be fleeing into those Blue Hotspots.</li>
##   <li>Nesting.
## 
## Family style.
## 
## These kids will have<span class='match'> the </span>best memories ever because of #COVID19 
## 
## Lemons to lemonade. https://t.co/r6HP3W3awE</li>
##   <li>@QCGov We need more space to isolate our PUIs, PUMs and covid-19 patients at only one big place. Please open<span class='match'> the </span>Philippine Arena as our isolation area. There are 300 small villas that can accomodate 5 individuals each.</li>
##   <li>#Violations_Documentation_Center in #Syria issues a press statement regarding<span class='match'> the </span>measures taken by UNHCR and<span class='match'> the </span>Lebanese government to prevent<span class='match'> the </span>spread of<span class='match'> the </span>COVID-19 virus in Syrian refugee camps
## 
## https://t.co/P4xWi0TQab</li>
##   <li>Staten Island Corona Virus Community Map Description List of emergency services on Staten Island NYC #helpsi #covid19 https://t.co/awwHS8VuyE</li>
##   <li>New York State Sikh temple preparing food to be delivered free of cost to 28,000 residents of New York who need a hot vegetarian indian meal. All is well. #NewYork #WuFlu #ChineseVirus #KungFlu #CoronaVirus #Sikh</li>
##   <li>@mashoto_ Anyway not having you next to me won't stop COVID 19</li>
##   <li>I hope when this #COVID2019 is over, #Canadians choose to #travel within our great country <U+0001F1E8><U+0001F1E6> and support Our economy first and foremost</li>
##   <li>6/7 Humans have suffered pandemics every 100 years or so. We are not<span class='match'> the </span>only living things fighting to survive on this planet. Viruses and bacteria are here too. We don't need to spread hate towards others. We need kindness and empathy. #coronavirus #China #covid19</li>
##   <li>@freetalkerr @BukkyAjayi15 *won ma di eni ike ni lagbara olohun.( How far with<span class='match'> the </span>equipment brought in from China by Jack Maa. If this was a govt that wants good things for<span class='match'> the </span>wellbeing of her citizens, they wouldn't high jack all to Abuja. I pray non of your families get this Covid-19 cos then u'll kn</li>
##   <li>CORONA virus to whole world:
## #coronavirustruth #coronavirus https://t.co/wJ5AXsTl9n</li>
##   <li>Now on https://t.co/0J2UdYHyh5
## 
## Covid 19: Hunger will kill more than coronavirus <U+2013> Activist, Ikimi cautions governors</li>
##   <li>MSD COVID-19 Update, March 26, 2020 https://t.co/Arb0H2Joeg https://t.co/V2xxhZhr2S</li>
##   <li>It’s time for @GovAndyBeshear 5 pm update on #COVID<U+30FC>19 https://t.co/vigTYQFqA2</li>
##   <li>Our heroes:
## Nurses &amp; Doctors
## Police &amp; defence personnel
## Volunteers 
## Teachers
## 
## #auspol
## #COVID19 
## #lockusdown 
## #Australia</li>
##   <li>Nets' Kyrie Irving Donates 200K 'Beyond Burgers' to NYC Food Bank amid COVID-19 https://t.co/v0lTAkG1NB https://t.co/lVeMS1j2lG</li>
##   <li>Hey everyone! I am helping Folding at Home (https://t.co/l2N1qugHj2) to crunch some numbers ... They have some projects related to COVID-19... You are welcome to join Team GCM with<span class='match'> the </span>team code: 253794 #coronavirus #CoronavirusOutbreak #COVID19</li>
##   <li>Shit hit<span class='match'> the </span>fan thanks COVID-19</li>
##   <li>#CNNTownHall does ibuprofen really make covid 19 worse?</li>
##   <li>Trump Cabinet's Bible teacher says gays cause 'God's wrath' in COVID-19 blog post
## https://t.co/Ws4c8ZtQj1</li>
##   <li>Boris Johnson and Matt Hancock may have mild symptoms at<span class='match'> the </span>moment but<span class='match'> the </span>#Coronavirus doesn't always show it's hand early on...
## 
## #CoronaUpdate
## https://t.co/qwxe8IKokr</li>
##   <li>West London clapping for NHS...#coronavirus https://t.co/G6DbZdjBFT</li>
##   <li>@realDonaldTrump @generalmotors @Ford Oh, are we giving up on<span class='match'> the </span>miracle that magically<span class='match'> the </span>#COVID19 will disappear?</li>
##   <li>The Economic Impact of COVID-19
## 
## <U+0001F449> Economic data from<span class='match'> the </span>first two months of 2020 reveals<span class='match'> the </span>damage done to<span class='match'> the </span>China’s economy.
## 
## @enricomolinari @Dahl_Consult @dmonett @sallyeaves @Droit_IA @antgrasso @ShiCooks @postoff25 @kashthefuturist @theomitsa
## 
## https://t.co/I3I3kyyDHX</li>
##   <li>@Asmali77 Law abiding citizens. #COVID19 is no joke.</li>
##   <li>the International Monetary Fund (IMF) has said<span class='match'> the </span>world is facing a recession which is worse than 2009
## 
## https://t.co/pzlJf58JAW</li>
##   <li>We have a new internet star in Chicago, and<span class='match'> the </span>75-year-old woman is a maven for social distancing. @NatalieBomke reports: https://t.co/AM9tg73zL7</li>
##   <li>Coronavirus: Air New Zealand cuts domestic flights as travel ban deadline looms:
## https://t.co/T23iADF0yz
## #Aviation #Airline #Aircraft #Airports #COVID19 #Coronavirus https://t.co/e1U8L4j0Ru</li>
##   <li>V ve to admit PM @ImranKhanPTI &amp; his whole team involved in Corona National Security r doing professional work<U+0001F44D><U+0001F44F>
## They r keep updating public abt situation.
## They ve made thousand ICUs, Quarantine Buildings, Public awareness etc. WHO &amp; Washington Post also admitted it.
## #COVID19</li>
##   <li>This is what #MAGA is dying for!
## 
## WINNING Trump style. USA No.1
## 
## And in record time.
## 
## 29 days ago, "We are going substantially down not up."
## 
## Congratulations @realDonaldTrump,   you really are<span class='match'> the </span>BEST! 
## 
## Historically inept!
## 
## #COVID19 #KAG2020 #trump2020  #ETTD https://t.co/Sb7t973LlN</li>
##   <li>Lets support existing projects. Please refer to this list instead of mine: https://t.co/3auAwmCdo4</li>
##   <li>every headline about<span class='match'> the </span>damage of containment is wrong. every contained case, every prevented case, is a win, is a diamond salvaged out of<span class='match'> the </span>dark. #coronavirus #covid19 #quarantine #isolation #economy</li>
##   <li>Tenants in #Parkdale raising banners along Jameson this afternoon.
## 
## Amid<span class='match'> the </span>#COVID<U+30FC>19 crisis, and seeing no sign of support from<span class='match'> the </span>government, working class renters are organizing in across #Toronto, making<span class='match'> the </span>decision to keep their rent.
## 
## No of us are alone. #KeepYourRent https://t.co/W55YtiQuI8</li>
##   <li>League news and appeal update. https://t.co/urljhOJBXb</li>
##   <li>If you’re job hunting after all this is over and they ask, “do you have any questions for us?”, ask how they treated their employees during COVID-19</li>
##   <li>Blockable offense #COVID19 #covid19UK https://t.co/PMlarlBHrw</li>
##   <li>Venture Church has an official COVID-19 case.  Here is our statement - https://t.co/oL9jYc01rL</li>
##   <li>@HerbJWesson Who probably pay rent every month and would immeasurably helped by a rent freeze during<span class='match'> the </span>#COVID19 outbreak</li>
##   <li>Tennessee National Guard response to<span class='match'> the </span>COVID-19 pandemic, March 26, 20... https://t.co/hTySvbQmTS via @YouTube</li>
##   <li>True. #COVID2019 #coronavirus #macron #confinement https://t.co/6wHHO58Ry5</li>
##   <li>When this Covid-19 crisis is over, can we keep<span class='match'> the </span>'new' way to shop for groceries? Orderly, calm - it was bliss.
## 
## @Tesco @asda @sainsburys @LidlGB @AldiUK</li>
##   <li>Coronaphobia: Covid-19 warriors live in torment https://t.co/yRTX0TuO03</li>
##   <li>Let’s quarantine<span class='match'> the </span>president. #fucktrump #covid19</li>
##   <li>@EvieLancaster I think she’s got more problems than Covid-19</li>
##   <li>Is this enough proof he needs to be removed from office?!!
## 
## Someone with<span class='match'> the </span>authority, please chime in here...
## #COVID19 
## #COVID2019 https://t.co/uyzvvd7HZb</li>
##   <li>So many small businesses and companies we partner with have been extremely hard hit because of COVID-19 and con cancellations, and we can't in good conscience ask for donations for prizes.
## 
## We hope to bring it back in 2021, &amp; in<span class='match'> the </span>meantime please stay healthy!</li>
##   <li>@realDonaldTrump We will die if you try to undermine #COVID19 #Quarantine</li>
##   <li>#NewGameJustInvented
## America’s Got COVID-19</li>
##   <li>It seems that #5g is being installed at this time in many schools during<span class='match'> the </span>quarantine process. This original post is from FB: IJ Hribal if you are on FB share from her. I am posting so more people are informed. #covert5g #coronavirus https://t.co/D5Vo2Weuie</li>
##   <li>Mumbai man who went out during lockdown hit by pan by brother, dies: Police
## 
## #Coronavirus 
## 
## (reports @jaynaidu87) 
## 
## https://t.co/FXuzS6xema https://t.co/qjqPAvieBi</li>
##   <li>Experts: N. Korea Must Admit to COVID-19 Cases, Request Help Before Sanctions Lifted  https://t.co/LhMh87WwNG @voanews</li>
##   <li>@A_Rosie_Life He may get<span class='match'> the </span>#DieForJezus virus, but he's still gonna infect everyone he touches with<span class='match'> the </span>#Coronavirus. Willful ignorance and irresponsible risky behavior is no excuse for this criminal act.</li>
##   <li>@mcuban Agree #coronavirus #employers</li>
##   <li>Just became aware of<span class='match'> the </span>fact that if I get taken out by<span class='match'> the </span>virus at least I’ll be in<span class='match'> the </span>27’s club #covid19</li>
##   <li>The COVID-19 nightmares have started <U+0001F974></li>
##   <li>Remember what Tedros Adhanom Ghebreyesus, W.H.O.’s director general said? “You cannot fight a fire blindfolded...And we cannot stop this pandemic<U+200B> i<U+200B>f we don’t know who is infected.” At this point<span class='match'> the </span>chances of getting tested for #COVID19 are extremely low. @mallorymoench https://t.co/kXr2vvVTx9</li>
##   <li>The family members of Kashmiri prisoners who have been lodged in different jails across India since Article 370 was scrapped, have expressed concern in<span class='match'> the </span>wake of<span class='match'> the </span>coronavirus (COVID-19) outbreak that has gripped<span class='match'> the </span>entire world.
## #CoronisedWorld_Media_IOK https://t.co/jaiBF2igXz</li>
##   <li>COVID-19: IPOB leader, Nnamdi Kanu, announces N50m to fight coronavirus https://t.co/mzrrgDxvx1 https://t.co/2VAR1jJoNJ</li>
##   <li>@NCDCgov @DrEOEhanire @Fmohnigeria @LSMOH @ProfAkinAbayomi Now you see,place ban since and some people were waiting for their daughter to enter 9ja first,risking<span class='match'> the </span>life of millions...this is how bad our leadership is!!!#COVID19</li>
##   <li>A Frontline Guide for Local Decision-Makers- for COVID-19 pandemic response
## @AfricaCDC
## @MOH_Kenya @CSMutahi_Kagwe
## @CDCKenya
## @NEPAD_AMRH
## @NEPAD_Agency @Amref_Kenya
## @USAmbKenya @USAID
## @UNICEFKenya @WHOKenya
## @WHOAFRO
## 
## https://t.co/qywTHZfPPm
## 
## https://t.co/AdnwD5snsz</li>
##   <li>Below is a link to a listing of institutional and programmatic accrediting organizations recognized by CHEA or USDE that are providing information about any changes that these accrediting organizations are making to their standards or practices. https://t.co/Tw5bEOgTc5 #COVID19 https://t.co/YG5ZtnfzHV</li>
##   <li>We are faced with two opposing challenges in bringing<span class='match'> the </span>power of science to bear on<span class='match'> the </span>COVID-19 epidemic:
## 
## On<span class='match'> the </span>one hand, we need to accelerate<span class='match'> the </span>pace of dissemination, getting useful clinical data out as fast and as widely as possible.
## 
## 1/5</li>
##   <li>my parents are taking my little sister to<span class='match'> the </span>ER cause she has severe shortness of breath rn. my parents, sisters, &amp; i were tested for covid-19 this afternoon but my little sister is by far<span class='match'> the </span>worst off &amp; my parents are super concerned &amp; none of us knows what's gonna happen next</li>
##   <li>Premiere Online Doctor, https://t.co/mhZvdfseeq Waives Primary Care Fees for COVID-19-Quarantined Patients https://t.co/Z3MolGU0A7</li>
##   <li>Brock is currently experiencing an increase in Phishing scams related to<span class='match'> the </span>COVID-19 virus. Please be cautious on opening any emails related to<span class='match'> the </span>COVID-19 virus. If unsure, please call<span class='match'> the </span>Help Desk and forward<span class='match'> the </span>email to itsecurity@brocku.ca #BrockU</li>
##   <li>Nearly 1 in 5 Canadians behind on financial payments: survey https://t.co/3GdKNuZAat #humanresources #HR #workplace #payroll #covid19 #pandemic #financiawellness https://t.co/36m3y0Uoty</li>
##   <li>“Coronavirus introduced us to a whole new mental health concern, and a very different answer to<span class='match'> the </span>question, ‘How do we meet people where they’re at?’,” says founder Ariela Safira. “So just about a week ago, we decided to create a digital offering.” https://t.co/SQd96TlQpb</li>
##   <li>Updated graph of confirmed #coronavirus #COVID_19 #COVID19 cases in<span class='match'> the </span>US over<span class='match'> the </span>last ten weeks as more and more tests are completed https://t.co/FYvN7JRHim</li>
##   <li>Yesterday's #coronavirus haiku &amp; a link to my letter to @SenatorBurr, ICYMI. Motivation to
## write is hard to find. / But Burr’s / con job inspired me. Cardinal &amp; Pine https://t.co/AEsStP29i3</li>
##   <li>Descriptive study COVID19 maternal and neonatal outcomes #newborn #COVID2019 #pregnancy #neonatal #obstetric_and_gynacology #pediatrics  https://t.co/wUMiqJUZKy</li>
##   <li>Welcome relief for many #thriftythursday #hmrc #accountants #smallbusinesssupport #askaspreys #aspreys #coronavirus #COVID2019 https://t.co/u2FV19EoDr</li>
##   <li>Hear it ...
## #Covid--19 #CoronaVirus
## Numbers Game: How long is a lockdown? https://t.co/U6aTC6uRf9</li>
##   <li>@jajaimeso is a virologist at @Cornell who is featured in a new podcast! Check out what he has to say about<span class='match'> the </span>#COVID19 and what he knows about it. #CoronaLockdown. @CornellCFI @CVirology
## 
## https://t.co/NHsEJ88t0V https://t.co/hyxSMvGECs</li>
##   <li>"Your marketing efforts in<span class='match'> the </span>wake of<span class='match'> the </span>coronavirus will give you an advantage towards your competitors and will enable you to continue running your business by strengthening your online presence."
## 
## #ContentIsKing #Coronavirus #DigitalMarketing
## 
## https://t.co/IAVk4xHljz</li>
##   <li>@globalnews It will be a public nuisance charge at best. #COVIDIDIOT #COVID2019 #coronavirus</li>
##   <li>@RealMichaelGuy @BilldeBlasio @FilmLinc Give it time. When Marines were sailing to Omaha beach, they weren't saying "this is no Antietam." Maybe it won't be that bad but there's a chance more Americans are killed by COVID-19 than in<span class='match'> the </span>entire second world war.</li>
##   <li>#Breaking| #Iran's health infrastructure strong, ready for possible peak in #coronavirus outbreak, President Rouhani says on state TV</li>
##   <li>@NikkiHaley Let's make a public call for these organizations to donate these monies towards COVID-19 life saving efforts.</li>
##   <li>#COVID19 Update: MI-08 <U+2066>@RepSlotkin<U+2069> speaking moments ago in favor of House passing<span class='match'> the </span>CARES ACT relief bill <U+2066>@1320WILS<U+2069> https://t.co/gDlj9pY1VP</li>
##   <li>@tspadventure I also made a last minute decision to move home (to florida) from NYC because of COVID-19. Not as drastic as your move, but it was a whirlwind for sure!</li>
##   <li>Read about<span class='match'> the </span>experience of final year medical student @DanielHuddart during COVID - 19 and how he is helping bring together students during<span class='match'> the </span>#COVID19 crisis #MedStudentCovid #BecomingaDr 
## https://t.co/5qbTHm09Zp</li>
##   <li>@RomfordRecorder @BBCNews @itvnews   - This is a brilliant idea !!   #nhs #COVID19 https://t.co/iTB9swTJlq</li>
##   <li>[denverpost] Trump signs $2.2 trillion  #Coronavirus stimulus after swift congressional votes https://t.co/KBh2XwAUzR</li>
##   <li>Coronavirus: US becomes first country to surpass 100,000 cases #COVID19 #Coronavirus https://t.co/yqGzTHonZy</li>
##   <li>BREAKING: Washington State announces 493 new cases of #COVID19 (3,700 Total). Death toll now stands at 175 (+28). 
## 
## Approximately 7% of<span class='match'> the </span>+53K tests conducted in<span class='match'> the </span>state have come back positive. 
## 
## cc: @Lookner @BNODesk https://t.co/juwkFgMhWW</li>
##   <li>@COVID_Australia @TammyJolle Artania cruise ship looks to be a well infected.
## Most were supposed to be flown out to Germany tomorrow...
## https://t.co/kwnWScqutW</li>
##   <li>CBSL new governor <U+0001F602> @chaturaalwis #COVID2019 #COVID19LK https://t.co/WxU2szRNhv</li>
##   <li>.@GovNedLamont refuses to take action to save lives by releasing as many people as possible to reduce<span class='match'> the </span>spread of #COVID19 inside CT jails &amp; prisons. In response, groups, faith leaders, &amp; lawmakers convened a digital press conference to demand action.
## 
## https://t.co/fnYdNP2D7h https://t.co/805CFabPnE</li>
##   <li>@PersuramBhakt Hi, in purview of COVID-19, we are currently operating at reduced strength. This has been done to ensure<span class='match'> the </span>safety of our staff. We encourage you to use #AirtelThanks app for service requests.</li>
##   <li>Prime Income Trust Provides an Update on Operations in Light of<span class='match'> the </span>Covid-19 Pandemic https://t.co/1SSaLrEF2w</li>
##   <li>The ingredients in this recipe for stress seem to apply perfectly to living in an age of #COVID19 (e.g. unpredictability, novelty, loss of control etc) https://t.co/fTcrZ4IG1N</li>
##   <li>Quiet on<span class='match'> the </span>N11 this morning. #CoronaLockdown #coronavirus https://t.co/Y1yaScXnBu</li>
##   <li>My beds been hella squeaky since I moved in November, thanks to COVID-19 I finally had<span class='match'> the </span>time to fix it</li>
##   <li>The Legal Aid Society hopes to secure release for 22 teens held inside facilities they call "breeding grounds" for COVID-19. https://t.co/a0GJiwM3Aw</li>
##   <li>Does it really matter whether Donald Trump called COVID-19 a hoax or called Democrats’ timely warnings about it and criticisms of him a hoax? Are not both assertions criminally irresponsible? 1/2</li>
##   <li>Follow @EmbHNSuiza (Embassy of Honduras in Switzerland) to get news and exchange on #Honduras diaspora in #Switzerland and alerts on #COVID19 #FF #FollowFriday</li>
##   <li>UNACCEPTABLE: In<span class='match'> the </span>midst of<span class='match'> the </span>#COVID19 public health crisis,<span class='match'> the </span>Trump admin is rolling back #CleanerCars standards put in place to protect our health and wallets. @realDonaldTrump and @EPAAWheeler are #StuckInReverse. https://t.co/8dmeOyRFxk</li>
##   <li>Updated content.
## 
## Useful websites for COVID-19 information.
## 
## https://t.co/0C09ByabTc</li>
##   <li>The evidence on Covid-19 is not as clear as we think
## 
## There is room for different interpretations of<span class='match'> the </span>data
##  https://t.co/Wx5pPJeS7H</li>
##   <li>“I’m very reassured at this point at<span class='match'> the </span>foresight and proactive thinking and actions of<span class='match'> the </span>health care community,” said Dr. Chris Spitters,<span class='match'> the </span>health district’s interim health officer. 
## 
## Hospitals Preparing for COVID-19&gt;&gt; https://t.co/phltjl28cn
## 
## #COVID19</li>
##   <li>Why are you OUT of masks for your #Ohio workers @amazon when they're busting their asses and risking themselves to make sure people are getting what THEY need.
## 
##  &gt; #MoreMasksNeeded &lt;
## 
## #CoronavirusOubreak #COVID2019 #COVID<U+30FC>19 #StayHome #lockdown #CoronavirusPandemic #AmazonPrime</li>
##   <li>COVID-19 Respone https://t.co/vHqHWsan8T https://t.co/0pxQK4HSFS</li>
##   <li>SAVE THE DATE on March 30 @ 5pm!
## 
## As covid-19 is set to change<span class='match'> the </span>economic landscape, yours truly will share career tips on how employees can manage potential career risks. 
## 
## View<span class='match'> the </span>webinar on
## https://t.co/ozxdZNdvhC or https://t.co/JFfevACqRP https://t.co/0uipSVMXfO</li>
##   <li>The housing sector is pulling together during<span class='match'> the </span>COVID-19 crisis https://t.co/1DmoPIHvWN</li>
##   <li>My students in Families and Crime are doing a survey project, but #COVID19 threw a wrench in their recruiting efforts. Help them out, please? We need respondents aged 18-35. #soctwitter #AcademicTwitter https://t.co/zDjVMyv23H</li>
##   <li>PLEASE STAY IN THE HOUSE...
## 
## Coronavirus: US leads<span class='match'> the </span>world in number of confirmed cases #Coronavirus https://t.co/HKffxU10cK</li>
##   <li>The states with<span class='match'> the </span>worst #Coronavirus problems are all run by Democrats.</li>
##   <li>Have You Heard? <U+0001F4F0> <U+0001F495>Dr. Kizzmekia Corbett, a doctor with<span class='match'> the </span>National Institute of Allergy and Infectious Diseases (NIAID), is leading efforts to develop a vaccine for<span class='match'> the </span>#coronavirus.<U+2800>
## <U+2800>
## Corbett’s work started in January when researchers first learn… https://t.co/pUQuVMTU0w https://t.co/XsOZ6lu1IM</li>
##   <li>Convalescent Plasma to Treat #COVID-19: Will it become<span class='match'> the </span>standard treatment till a definite treatment  is found?  https://t.co/txILaavSr4</li>
##   <li>A thought just occurred to me: @AEricksonAU may have covered<span class='match'> the </span>biggest off-field story in #Crew96 history but @_jcmyers now has<span class='match'> the </span>2nd biggest off-field story ever. #COVID19 #CoronavirusOutbreak #SaveTheCrew #SavedTheCrew</li>
##   <li>@ShelSosa their answer for COVID-19 and people wanting to go back home is: we understand but rent is still due and your lease goes til July :) if you don’t want to pay it now they’ll add it on monthly next semester</li>
##   <li>. Due to COVID-19 Our nation is in great loss and everyone is facing problem.Pls help Modiji,Grace period after due date of atleast 60 days should be given for payment of credit cards of all<span class='match'> the </span>banks. Also interest and penalty should be waived off without impacting credit score</li>
##   <li>Clippers Owner Steve Ballmer Donates $25 Mil to COVID-19 Relief
## https://t.co/EBZDX7sTNx</li>
##   <li>Kentucky strong!<U+0001F499>Thanks <U+2066>@AndyBeshearKY<U+2069>  https://t.co/H9IDwojrGM</li>
##   <li>#COVID2019 it's a big worldwide trouble! But it can be destroyed by discipline and<span class='match'> the </span>science discoveries. The virus can't be<span class='match'> the </span>end of<span class='match'> the </span>human life, but<span class='match'> the </span>human life must fight as well as<span class='match'> the </span>brave soldiers. I don't wanna miss a thing: 
## https://t.co/yDgpacaliB</li>
##   <li>Does Americans not know that if our population isn't tested, you cannot get adequate data on rate of infection of Covid-19 or efficacy of social distancing? Dr Birx surely knows this but choses to lie in order to make leader go back to work to shut up 45.Another MAGA rally FFS.<U+0001F925></li>
##   <li>@SmithsonianMag Japan has<span class='match'> the </span>highest debt to GDP ratio in<span class='match'> the </span>world, its national debt is 226% of GDP. The United States may surpass Japan's world record after COVID-19. https://t.co/Q3JKbxgQbO</li>
##   <li>Government is pressing ahead with A https://t.co/zWR75M0o9T</li>
##   <li>Dr. Fauci tells Steph Curry that testing in America is "going in<span class='match'> the </span>right direction."
## 
## Says, "if you have only aches, pains and a fever, stay where you are and contact your physician."
## 
## Says don't overload hospitals. 
## 
## #SCASKSFAUCI 
## #Coronavirus</li>
##   <li>The Colorado Symphony Orchestra shows what you should be capable of when working from home https://t.co/WwzYXWj544 #WorkFromHome #Workathome #WAHA #Coronavirus #Covid19</li>
##   <li>India Deploys Defence Units to Help Civilian Authorities in<span class='match'> the </span>Fight Against COVID-19: https://t.co/pz1fFlVKtQ via @SputnikInt</li>
##   <li>Aileen's 1 Yr Anniversary Update &amp; How we are responding to COVID-19 pandemic https://t.co/tVtSLlWN3R As we collectively face social and economic impacts of<span class='match'> the </span>ongoing pandemic, we wanted to update our friends and family about where Aileen’s is on its first anniversary.</li>
##   <li>@MedeaCulpa Wait. Are you reporting this as a symptom or are you saying you don't like<span class='match'> the </span>smell of Bustelo? Not to freak you out, but loss of sense of smell is a symptom of Covid-19.</li>
##   <li>Officials speak about<span class='match'> the </span>coronavirus in Madison County.
## 
##  https://t.co/WLg5Pmg5yp</li>
##   <li>Hi! I’ll be streaming for charity LIVE tomorrow on @Twitch for<span class='match'> the </span>#TwitchStreamAid. We’re raising money to help @WHO fight COVID-19. Keep following along for more updates and when I’ll be live! Tune in to https://t.co/4nZFKeWlwv https://t.co/M8tcAwr2tD</li>
##   <li>The hard data from #China's bout with COVID-19 shows even a late and lumpy control response may save<span class='match'> the </span>U.S. economy - RIABiz https://t.co/iwZAG5Rd3B</li>
##   <li>Share it. Spread it faster than #Covid19 https://t.co/3epgBUqLza</li>
##   <li>Brilliant Infographic!
## There are plenty of them like that. Some world leaders looks like Admin Head of #WhatsApp
## Groups.
## @DrTedros @HassanRouhani @Pontifex @sanchezcastejon 
## Last but not<span class='match'> the </span>least @POTUS
## 
## All of them are hit badly by #COVID19 https://t.co/mdLlpRb1s9</li>
##   <li>...and friends, however possible. We have a long fight ahead of us, but I feel confident that we will continue<span class='match'> the </span>fight to build a healthcare system that places equity, inclusion, and well-being above<span class='match'> the </span>bottom line . #COVID2019 #UCSFMaskDrive #FlattenTheCurve #UCSFProud</li>
##   <li>Does anyone know if there is a special unemployment form for 1099 workers in CA? Or are gig-workers and self employed just supposed to file on<span class='match'> the </span>regular website? @LongBeachMayor @CAgovernor #coronavirus #unemployment</li>
##   <li>.@Maryam_Rajavi
## Deaths of 6 prisoners in<span class='match'> the </span>Greater Tehran Penitentiary (Fashafouyeh)will start a serial of deaths in #Iran'ian prisons due to<span class='match'> the </span>rgm’s failure to release<span class='match'> the </span>inmates despite<span class='match'> the </span>#coronavirus emergency, a #crimeagainsthumanity w/ regards to prisoners in #Iran</li>
##   <li>@CashApp Please help me out @CashApp $tfortk this #COVID19 really hurting my wallet T_T</li>
##   <li>Please watch this pleasantly weird educational clip.
## 
## Also checkout her #Masks4All page: https://t.co/oiZRbSoCit
## 
## #MaskUp
## #WearAMask
## #WearAFuckingMask
## #diymask
## #UniversalMasking
## #StayHome
## #WashYourHands 
## #SocialDistancing 
## #coronavirus
## #COVID19 
## #FlattenTheCurve 
## #SlowTheSpread https://t.co/5NeMSXPOsU</li>
##   <li>'Tip of<span class='match'> the </span>iceberg': is our destruction of nature responsible for Covid-19? https://t.co/iWk91s6A9R</li>
##   <li>#Supportyourlocals Corona-Courage Halle https://t.co/p3WUKYX4dQ via @startnext #COVID2019 #StayHome #CoronaHilfe</li>
##   <li><U+0001F44F> Clap For Our Carers <U+0001F44F> 
## 
## At 8pm tonight, let’s put our hands together to show our appreciation for our heroes of<span class='match'> the </span>NHS &amp; other vital public services for their inspiring Covid-19 work. 
## 
## From your garden/yard, listen for a local tribute too. 
## 
## #ClapForOurCarers #ClapForNHS https://t.co/jDIkOgc1Yv</li>
##   <li>@iainmartin1 #Trump needs to be removed from office immediately for<span class='match'> the </span>safety of<span class='match'> the </span>American peolpe. This isn't just bad optics, as you state Iain, this is madness! #COVID19</li>
##   <li>"Massachusetts Gov. Charlie Baker said he filed for federal disaster assistance that, if granted, would help communities recover from<span class='match'> the </span>impact of<span class='match'> the </span>coronavirus pandemic." https://t.co/zuN8bIwWOE #GovBaker #Massachusetts #coronavirus #federalassistance</li>
##   <li>@JoeSilverman7 I hope it comes back. I'm very optimistic on Covid 19.</li>
##   <li>@SenSchumer The labor movement will continue to work with @SenSchumer and<span class='match'> the </span>New York City Congressional delegation to make sure that New York City’s workers and their families’ interests continue to be represented in<span class='match'> the </span>negotiations to come.” https://t.co/8xCSxkNupW #1u #covid19</li>
##   <li>Mossa Fight home workout session to keep<span class='match'> the </span>blood flowin!
## #mossa #fight #homeworkout #homewithkids #singledad #exercise #fitness #keepmoving #getmoving #letsmove #move #athome #workout #StayHome #isolation #quarantine #funathome #tech #keepbusy #COVID<U+30FC>19 #COVID #COVID19 #corona https://t.co/1lGcG1zpLN</li>
##   <li>Agreed, @MassAGO. Thank you for working to keep equity at<span class='match'> the </span>heart of our #COVID19 response. @MassGovernor @RepPressley @PavlosCarlene @CherylABartlett @BUSPH https://t.co/FtSgforovc</li>
##   <li>suddenly have this thought. if someone wakes up from coma in 2020,<span class='match'> the </span>person must be baffled about<span class='match'> the </span>whole covid-19 situation like super confused. would<span class='match'> the </span>person rather be back in comatose or not?</li>
##   <li>I'm into generator rentals.
##  Book your generator before 12am.
## 
## TB Joshua is not sleeping today.<U+0001F602><U+0001F602> #StaySafeNigeria #COVID19 https://t.co/cyKZWBd1BH</li>
##   <li>Los Angeles County Emergency Operations Center COVID-19 Update - March 27, 2020 https://t.co/7YWJlNceQX via @Granicus</li>
##   <li>When ObiWan had enough of who didn’t quarantine themselves at home
## #COVID19 #StayAtHomeAndStaySafe original pic : @thestandardth https://t.co/uHNadZe72h</li>
##   <li>@ScottAdamsSays did you know that American Samoa has no incidents of COVID-19? Mini-Mike for president</li>
##   <li>@catmemesonly @pgcornwell @abouddandachi You’re citing a tweet from 2/28.  But of course healthcare is A+ in<span class='match'> the </span>US.  That’s why<span class='match'> the </span>death rate for COVID-19 is tracking to less than 1% here as opposed to places like Italy and Spain where they have single payer systems.</li>
##   <li>The SIEGE crowd loves Covid-19: except when they’re in a crowded jail awaiting federal charges and terrified of catching it. To wit: John Cameron Denton, Atomwaffen’s erstwhile leader, asked for a pandemic-related release recently (h/t @DdesimoneDaniel) https://t.co/NVEHiDy9aK</li>
##   <li>UPDATE: The West Virginia Department of Health says<span class='match'> the </span>patient earlier reported as<span class='match'> the </span>state's 1st COVID-19 death is actually alive.
## https://t.co/V11QPA44Hf</li>
##   <li>My host-dad has really good english. But medical english. And he always speaks about<span class='match'> the </span>COVID-19... so my brain gets all mushy and all i can say to him is just “wow” or “uhm” or “god, when will it end”</li>
##   <li>not sure what gyujeong was trying to say but i guess he said “stay strong fuck covid-19, wear mask, wash your hands” fjdjddj king with his message oof stan groovyroom gyujeong https://t.co/0aWqg3cEVz</li>
##   <li>#songoftheday = BAD MARRIAGE: "MOURNING HOPE" (#songsforourtimes #9) - Boston's premium hard rock band flips their sound upside down for a haunting, acoustic song that seems to be about losing someone to<span class='match'> the </span>#coronavirus. https://t.co/LUUcKvxs2J https://t.co/Z0DPpzVpG9</li>
##   <li>@mewes_jan @alexandreafonso Not quite. In contrast to Sweden, secondary schools are closed in #Iceland, thus lowering exposure rates, and preprimary schools are open but exercise particular #covid19 measures: 
## https://t.co/6hYXAprEGO</li>
##   <li>@joshtpm Where are<span class='match'> the </span>lawyers? Maybe<span class='match'> the </span>1% will think twice if they think they will be liable to<span class='match'> the </span>families of those who succumb because they got COVID 19 at work.</li>
##   <li>I feel like we have a chemistry until further notice!
## https://t.co/30F7EIyEc0</li>
##   <li>#Australia To date, state and territory health authorities have reported 3,359 confirmed cases of #COVID19 in Australia, including 14 deaths.
## 
## #CoronaVirusAustralia 
## #COVID19 #CoronaVirus https://t.co/noOqHBV3GP</li>
##   <li>@tatereeves why are you trying to kill<span class='match'> the </span>citizens of<span class='match'> the </span>great state of Mississippi? When this ends, and<span class='match'> the </span>bodies are piled up, you will be held accountable. #ignorant #COVID<U+30FC>19</li>
##   <li>COVID-19 doesn’t affect rats and snakes so most of y’all will be fine<U+0001F922><U+0001F922></li>
##   <li>I’m sorry I don’t give<span class='match'> the </span>world new musik. 
## 
## been going thro it &amp; covid-19 &amp; having to be isolated in one space made it harder to get my mind functioning.</li>
##   <li>LIVE: Downing Street briefing after Boris Johnson tests positive for covid-19. / Twitter https://t.co/JBbqfZG32U</li>
##   <li>Trying to stay healthy and sane. Quarantine day 11. 
## #quarantine #corona #covıd19 #stayhome #healthylifestyle #sanity #healthy #healthyliving #losangeles @ Oak Park, California https://t.co/33w7rCFNCt</li>
##   <li>What is<span class='match'> the </span>best way to allocate precious PPE resources for #COVID19  Keeping<span class='match'> the </span>Coronavirus from Infecting Health-Care Workers https://t.co/eK6rSL0lh1 via @NewYorker</li>
##   <li>Half an hour until today's #DrinksWithDeena brought to you by #DontTouchYourFace: Not touching your face is, like, way better than being poked in<span class='match'> the </span>eye. So don't touch your face. #COVID19AB #AlbertaCares @CMOH_Alberta #COVID19 #StayHomeSaveLives #StayHomeAlberta</li>
##   <li>Chaos and dissipative structures...? #TheGuardian #ManuelAlmendro #Coronavirus https://t.co/o1G5yHGTep</li>
##   <li>@Imamofpeace Buhari share<span class='match'> the </span>COVID-19 relief donations to<span class='match'> the </span>poor masses or #BuhariResign <U+0001F644></li>
##   <li>So<span class='match'> the </span>douchebag in<span class='match'> the </span>White House decided to rage on Governor Inslee about his failed Presidential campaign instead of sticking to<span class='match'> the </span>point of Covid-19 during<span class='match'> the </span>press conference. What a tool. <U+0001F595>45, <U+0001F595>45 <U+0001F595>45</li>
##   <li>COVID-19: Border traffic down and fewer Canadians in U.S. shop parking lots https://t.co/fZ0u62g0kw</li>
##   <li>Am I<span class='match'> the </span>only one feeling like education/e-learning should be an escape from #coronavirus? We're constantly told how students are traumatized, let's not add to it. #TeachFromHome</li>
##   <li>While other major cable news network are interviewing doctors, scientists and patients, Hannity and Trump complain about Obama and<span class='match'> the </span>Swine Flu...tonight.  On<span class='match'> the </span>same night that US broke<span class='match'> the </span>world record of having<span class='match'> the </span>most confirmed cases of COVID-19. https://t.co/faCClLegA5</li>
##   <li>The Covid-19 culprit is us, not pangolins (Opinion) - https://t.co/3B9lXxHVvl</li>
##   <li>Seems I may need to start weening myself off from watching anything on @msbnc if they continue showing these rally #covid19 briefings which are useless. 
## 
## Missing @maddow, @TheLastWord @allinwithchris &amp; @DeadlineWH will be hard but I've done harder things.</li>
##   <li>These #NYC KILLER bastards DO IT again, also in crisis of #COVID<U+30FC>19 #CoronavirusPandemic KILLING is<span class='match'> the </span>bloody #Agenda of .@BilldeBlasio .@JustinBrannan .@NYGovCuomo .@DonnaLupardo .@nycgov .@NYCACC .@THECITYN .@c_kimNYC .@NYSenat .@HarveyforNY https://t.co/bS8yBmy4ZX</li>
##   <li>he is telling<span class='match'> the </span>truth..
## agar itna khauf hey to #Contagion movie dekh lo jis main pehlay sy #Covid19 ki prediction hen https://t.co/gzhKpYhp4b</li>
##   <li>A mural in Atlanta Georgia that represents unity our leaders had should be reflected today doing this COVID-19 crisis! https://t.co/S1C0hYQLEZ</li>
##   <li>Mr. President!!  Who attacked<span class='match'> the </span>U.S. in 1917??  #coronavirus #CoronaLockdown #COVID19</li>
##   <li>White House photo of Trump in<span class='match'> the </span>signing ceremony right now. 
## 
## Trump and his Cabinet members &amp; GOP leaders in Congress are all crowded into a tiny space behind his desk. #coronavirus https://t.co/PBPIAVI8TQ</li>
##   <li>16 in precautionary isolation at Columbus assisted-living facility after contact with COVID-19 positive person. https://t.co/n0b1qapuzz</li>
##   <li>Some people are not serious talking about “I need fresh air” this virus is REAL  stay home or else you will really need AIR God forbid you get #COVID19</li>
##   <li>@Linecookingchri @this_aggression @VV101isPresent @kyledcheney @heatherscope You don't need a revolution, just one person with COVID-19 to get close enough to sneeze on him.</li>
##   <li>Daily Cuomo: New York governor tells federal government to 'do your job' https://t.co/FsYXaK9hZc</li>
##   <li>@afshinrattansi combat spread of COVID -19.And I am not talking about neighbours with large private front or back gardens who regularly interact close together over garden fences via talking etc during long Spring/ Summer months of daylight sunny hours where idle hands to cause</li>
##   <li>It is hard to understand why anyone would choose this approach when<span class='match'> the </span>little that we know points in<span class='match'> the </span>exact opposite direction #SwedenInDenial
## 
## Swedish PM warned over 'Russian roulette-style' Covid-19 strategy https://t.co/f39X1CGxTd</li>
##   <li>never participating in online class again. just asked a guest lecturer from<span class='match'> the </span>state department abt mike pompeo calling COVID-19<span class='match'> the </span>“wuhan virus” and she skrrted out. i will be dropping out now</li>
##   <li>Coming soon to an urban area near you : homeless and uninsured COVID-19-stricken zombies dying in<span class='match'> the </span>streets.<U+0001F9DF><U+0001F9DF><U+200D>♂<U+FE0F> https://t.co/LN2xE1WRDK</li>
##   <li>We are proud to support<span class='match'> the </span>@NHLBlackhawks  and Chicago Community COVID-19 Response Fund during<span class='match'> the </span>pandemic. More information on<span class='match'> the </span>donation-matching initiative at https://t.co/U47ZUvsBRI</li>
##   <li>I’m a Doctor on<span class='match'> the </span>Frontlines of COVID-19. Ask Me Anything. https://t.co/tegTnKXSRd via @YouTube</li>
##   <li>Sure, I'm biased but #canyonsteachersrock! All across CSD, educators are pivoting to a new way of teaching, learning, connecting. We just ask for patience as @canyonsdistrict moves to this new normal. https://t.co/s8s6yNtIgi</li>
##   <li>We will see you all soon. Until then, #StayHomeSaveLives and #ComeBackLater <U+0001F499>
## 
## For answers to your most frequently asked questions, please see https://t.co/s91f1hdNRG https://t.co/TlosAcnjqs</li>
##   <li>Threw together a couple of quick graphs. So far, it appears that Cambridge (thankfully) does not have a disproportionately high amount of COVID-19 cases. The orange line represents<span class='match'> the </span>fact that Cambridge contains 7.4% of Middlesex County's population. #cambma https://t.co/YtJWlDK8nN</li>
##   <li>@nashtnmom1 @DavetasticVoyge @MCmuckraker Of course, this link doesn't exist.
## https://t.co/5PV4y9gCcb</li>
##   <li>A lot of us are having bad dreams right now. Here's to peaceful sleep <U+0001F634><U+0001F4A4>.
## 
## #rest #dreams #covid_19 #coronavirus #sleep @ Toluca Lake, California https://t.co/qJqSlHXouu</li>
##   <li>@piersmorgan Our little village HADDENHAM In Cambridgeshire came out and clapped in appreciation for all<span class='match'> the </span>hard work<span class='match'> the </span>NHS is doing x #COVID2019 #NHS</li>
##   <li>Put this alongside those ALS / resuscitation guidelines
## https://t.co/erjictaSgc https://t.co/muVqCySxru</li>
##   <li>We need to work together to help #PlankTheCurve. <U+0001F1E6><U+0001F1FA> in <U+0001F1E8><U+0001F1E6>, please continue to monitor @GovCanHealth, @CPHO_Canada, &amp; local health authorities for reliable updates on<span class='match'> the </span>situation in your area, as well as for tips on combatting<span class='match'> the </span>spread of #COVID19 https://t.co/n9EKrmmUIh (1/2)</li>
##   <li>The @CityOfNOLA health &amp; safety officials, with support from @LouisianaGov Office of Homeland Security &amp; Preparedness, conducted cleanup &amp; securing of homeless encampments along with<span class='match'> the </span>temporary transfer of homeless residents into an alternative location.  #COVID19. https://t.co/R4wv0n9Eoh</li>
##   <li>Potential Game Changer! FDA approves 5 minute #COVID19 test for release as early as next week.  https://t.co/XXXOZ4pthK</li>
##   <li>Providers and parents can find<span class='match'> the </span>latest child care data, news, policies, and documents related to COVID-19 from @GADeptEarlyCare at https://t.co/CWcPfuqRht. https://t.co/cdVVubHzdh</li>
##   <li>Actually touched and proud to be #British standing on my door cheering for<span class='match'> the </span>brave @NHSuk @NHS workers. #COVID2019 #clapforourcarers #ThursdayThoughts #solidarity</li>
##   <li>Teenage boy whose death was linked to coronavirus turned away from urgent care for not having insurance https://t.co/PUiGl9vfAt a9429946.html And I can guarantee you that this sort of thing will be taking place over and over and over again in<span class='match'> the </span>coming months...</li>
##   <li>It CAN be done!!! <U+0001F9FB> I just have one question...how long will it take to grow into<span class='match'> the </span>size tool I need??? <U+0001F923><U+0001F389> #tpShortageOf2020 #gardening #covid19  #LOL #WashYourHands #WipeYourButt <U+0001F9A0><U+0001F631><U+0001F923> https://t.co/IEPx5xMFej</li>
##   <li>NSW and Victoria are expected to push for tougher lockdown measures today, with one infectious disease expert warning “every day matters now”. @newscomauHQ #coronavirus #coronavirusaustralia #covid19australia #COVID19Aus #Covid_19australia 
## https://t.co/lE2YAY4C24</li>
##   <li>#COVID19 #CoronavirusPandemic Govt. must conduct Aadhar linked testing of these migrant labourers on move back home. #ChineseWohanVirus carriers among them can prove disastrous. Aadhar linked testing will ensure tracing &amp; Isolation
## Think over it https://t.co/d1koXax39R</li>
##   <li>Gov. Andrew Cuomo Admits Stockpile of Thousands of Unused Ventilators https://t.co/poCK1kkmX1 Shocked Face #Covid19 @cnnbrk #Cuomo</li>
##   <li>Please retweet. The truth will set us free.
## #COVID19 #TrumpVirusCoverup #themasterofdisaster #accountability #SaveLives https://t.co/7WZlm3FypV</li>
##   <li>Mostly younger males, notice.... Too clever to obey<span class='match'> the </span>rules about social distancing &amp; too tough to catch #Covid19 apparently... Thought restaurants were only takeaway food now &amp; pubs all shut????   Qld. Beautiful one day, stupid<span class='match'> the </span>next. #auspol https://t.co/TlBoUayr9u</li>
##   <li>@RehamKhan1 Covid-19 therapy will be invented soon in shaa Allaah, but your jealousy will never be cured because it is on<span class='match'> the </span>last stage, then you are to burn. <U+0001F923><U+0001F602><U+0001F923></li>
##   <li>@K24Tv Owino has always been defending these apes stuck in stone age! There's a difference between enforcing law and police brutality. 
## Brutality meted on fellow citizens will not stop COVID 19 spread! Nonsense</li>
##   <li>@Rounding3rdSB @msmithsb16 @NCAA Only<span class='match'> the </span>NCAA can do something worse than COVID-19!</li>
##   <li>*Kasheer gass'e ne kehen.
##  Meanwhile toll reaches: 27
## May Allah protect us all. 
## #coronavirus</li>
##   <li>The floor is lava ... confinement <U+0001F644> #confinement #RestezChezVous #COVID19france #coronavirus #COVID19 #couch #thefloorislava https://t.co/SWV51VyuMn</li>
##   <li>Boris should have just washed his hands!!!! #CoronaLockdown #BorisJohnson #COVID2019</li>
##   <li>The World Health Organization has a whole page of guidance and advice for pregnant women! If you’re expecting, please check it out! https://t.co/jAVENlZQzo #Coronavirus #Covid19 #NikkiBella</li>
##   <li>Two more cases of covid-19 declared in sudan. You,<span class='match'> the </span>emotional people don press<span class='match'> the </span>authority to operate<span class='match'> the </span>airport as you did before .your fake arguments will cost<span class='match'> the </span>country much</li>
##   <li>60% of<span class='match'> the </span>health facilities in #Yemen went out of service due to direct targeting by US-Saudi airstrikes, which killed many patients. You can imagine<span class='match'> the </span>catastrophe if Saudi was able to enter #Coronavirus to #Yemen! #5YearsOfWarOnYemen https://t.co/ysA4uhPGTa</li>
##   <li>Senate’s Pro-Corporate COVID-19 Bailout EXPLAINED https://t.co/ZpFwB5Qb5o via @YouTube</li>
##   <li>COVID-19: Coping with<span class='match'> the </span>shortage of ventilators https://t.co/IlfCsg9e0u</li>
##   <li>@arisescaflowne Wish it was an option. Greatly reduced income due to COVID-19. No refi.</li>
##   <li>Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among<span class='match'> the </span>first in Virginia to die from virus https://t.co/cb7M7z8CpP</li>
##   <li>It was a pleasure working with<span class='match'> the </span>inestimable @lynellgeorge on this beautiful essay for @highcountrynews, an ode to #LosAngeles as it settles into #COVID19 restrictions. https://t.co/d0uvPeqXfF</li>
##   <li>Women's mean level of haemoglobin is 12% less than men. #COVID19</li>
##   <li>Inspired by applause for healthcare workers in<span class='match'> the </span>UK from COVID19 #clapforcarers, #clapfornhs, I ask for everyone to pray daily for:
## + All suffering by COVID-19, 
## + All scientists, doctors &amp; public officials, 
## + All willing to serve in harm's way daily &amp;
## + Those who passed away.</li>
##   <li>#CoronaLockdown #PrayForBoris I'm sure all<span class='match'> the </span>NHS staff wish Boris Johnson all<span class='match'> the </span>best with his private healthcare now that he's got Covid-19.</li>
##   <li>Covid 19 is really hitting us hard</li>
##   <li>@Lee_in_Iowa @RockyMountViews @AnnieHall58 Got bloodwork done on Mar 17. I go out to get<span class='match'> the </span>mail every day or two. Have a Dr. appointment in April and not sure if I will go or not.
## #COVID19 #WashYourHands</li>
##   <li>In<span class='match'> the </span>midst of  #coronavirus pandemic, how is it useful for<span class='match'> the </span>media to get politicians and physicians to publicly spar with @realDonaldTrump on your television programs? This is a legitimate question. At this moment,  how is tearing down Trump helping<span class='match'> the </span>world? @cnn @msnbc</li>
##   <li>#HealthCanada asks #cannabis industry for help with #COVID19 testing
## 
## https://t.co/ZTMNmMyxq1</li>
##   <li>The quarantinee in Hubei, China was lifted two days ago and civil unrest has broken out and turned violent as desperate people beging turning on their neighbors. #coronavirus https://t.co/tFoLBvDf26</li>
##   <li>Eiffel Tower pays tribute to 'heroes' fighting COVID-19 -- https://t.co/EYrl6TcOiz</li>
##   <li>How Other Countries COVID-19 Are Successful Treating COVID-19 - YouTube https://t.co/UnRqSkWk5y</li>
##   <li>And just like that… we are all on welfare! #Coronavirus</li>
##   <li>Joseph Wu and his colleagues wrote in The Lancet on Jan 31, 2020: “On<span class='match'> the </span>present trajectory, 2019-nCoV could be about to become a global epidemic RESIGN NOW!  #coronavirus https://t.co/LJJPkhb9eA</li>
##   <li>Team MVT is watching our Patron @frankturner in<span class='match'> the </span>first gig of his #IndependentVenueLove online tour helping support different grassroots music venues and their staff. For advice for music venues during this crisis head to our website here: https://t.co/Vz19FfYlha https://t.co/mLBIBT6SRp</li>
##   <li>@RepThomasMassie, you just can’t avoid your party’s theme of trying to kill<span class='match'> the </span>elderly, can you? Just over 1/3 of House Members (147 to be precise) are over<span class='match'> the </span>age of 65 and you want all 435 of them in one room? Knock it off.
## #COVID<U+30FC>19 #Coronavirus https://t.co/x4pBZCPaRY</li>
##   <li>Stay home, stay safe. To effectively combat<span class='match'> the </span>spread of #COVID19 we are asking our residents to comply with<span class='match'> the </span>newly-issued Stay at Home Order. Learn more at https://t.co/ynorsIlnKm.</li>
##   <li>So, we know getting CT's incarcerated youth out of<span class='match'> the </span>path of COVID-19 is possible.  @GovNedLamont please call on @CTCorrections to do<span class='match'> the </span>same for<span class='match'> the </span>children in it's care (and<span class='match'> the </span>adults too)</li>
##   <li>Tragic to see patients die this way <U+0001F64F><U+0001F3FD><U+0001F614>. #COVID2019 #coronavirus #nurselife  https://t.co/8wlHMQ2R1N</li>
##   <li>Police to intensify roadblocks across<span class='match'> the </span>country to curb COVID-19 spread https://t.co/NiGLTQ1gN2 https://t.co/pfgLLYCqck</li>
##   <li>#hbaimpact hosting a global webinar on #COVID19   Women making a difference in healthcare. https://t.co/gYixkQ1Cox</li>
##   <li>Asda Portrack. Queuing already. #Coronavirus #ASDA #CoronaUpdate #Northeast #StocktonStrong #staysafe #staystrong https://t.co/9sUpRmRonC</li>
##   <li>Words matter
## Words convey a message
## And if you're among those pushing to call it "Wuhan virus", you probably know that
## Covid-19,<span class='match'> the </span>disease caused by<span class='match'> the </span>coronavirus Sars CoV-2? No
## You don't care about factual descriptions of what it is
## You just wanna convey your little message</li>
##   <li>With no offence to brothers of  Punjab &amp; Sindh ;That hopefully they had realised what Kp &amp; Kashmir have been through all these tough times. 
## #Curfew #coronavirusinpakistan #CoronavirusOubreak
## #lockdown</li>
##   <li>BREAKING: Uganda records five new coronavirus cases raising<span class='match'> the </span>total number to 23. President @KagutaMuseveni says 227 returnees from Dubai &amp; other places were tested. #COVID19 #COVID19UG https://t.co/g3aImw05fi</li>
##   <li>Now they are just statistics.
## 
## They were people with dreams, plans, families.
## They were not animals or trees. 
## They were not cast&amp;crew in a movie that will end.
## People have died. People are dying. 
## The world is sick.
## 
## Feels very surreal and just like a staged play.
## #coronavirus</li>
##   <li>It’s<span class='match'> the </span>least we can do!! #COVID19 https://t.co/nfBG54wqJ1</li>
##   <li>For @theprogressive, @sarahljaffe wrote about<span class='match'> the </span>ways that specific workers' labor is undervalued, and how we can build a better world post-coronavirus. https://t.co/Y7uu5Mt2hI</li>
##   <li>These are African Countries without #Coronavirus cases;
## 
## <U+0001F1F2><U+0001F1FC> Malawi
## <U+0001F1E7><U+0001F1EE> Burundi
## <U+0001F1F8><U+0001F1F1> Sierra Leone
## <U+0001F1E7><U+0001F1FC> Botswana
## <U+0001F1F1><U+0001F1F8> Lesotho
## <U+0001F1F8><U+0001F1F9> Sao Tome and Principe
## <U+0001F1F0><U+0001F1F2> Comoros
## <U+0001F1F8><U+0001F1F8> South Sudan.
## 
## @kubatana @kwirirayi
## @LynneStactia @begottensun @263Chat @newswireZW @NewsDayZimbabwe</li>
##   <li>Hard in pratice. 1. No time to think as social media is talking nonstop about #COVID19 2. Those w<span class='match'> the </span>‘great’ lives are also just hiding at home from #COVID19. And as<span class='match'> the </span>weirdness of celebs during #COVID19 has confirmed nobody’s life is ever really worth envying anyway. https://t.co/GvtewFsOh3</li>
##   <li>@Covid_19_UK @poodlesthiks We have to make this one Viral! Q 23 666 33</li>
##   <li>Governor Cuomo slams ‘reckless’ COVID-19 bill: ‘It does nothing in terms of lost revenue’ https://t.co/tBBGoTHiPz</li>
##   <li>"UK government will begin coronavirus tests for health workers on<span class='match'> the </span>frontlines" #COVID19 https://t.co/4EZaCkqnZ3</li>
##   <li>@drharshvardhan Sir, private lab will charge 4500 for covid-19 test we can't afford that much if i want to do a test for my family if we have 8 members in a family then we need 36000 rs that is huge amount for us. People will die more if we get hit badly by this virus</li>
##   <li>@ericuman Why pay $130 to catch #COVID2019 when I can get VD for $50 at<span class='match'> the </span>local parlor</li>
##   <li>Health officials in New York will allow hospitals to split ventilators between two patients as they try to deal with<span class='match'> the </span>influx of patients who have been diagnosed with COVID-19 https://t.co/okaVfR9fZP</li>
##   <li>That's exactly  why Dr. Fauci is NO LONGER UP FRONT<U+0001F64B><U+200D>♀<U+FE0F><U+0001F64F><U+0001F1FA><U+0001F1F8>
## #Trump&amp;BirxsLIE
## #TrumpPressConf 
## #TrumpVirus 
## #TrumpVirusCoverup 
## #TrumpLiedPeopleDied 
## #COVID19 <U+0001F64F> https://t.co/wsdCrhucBE</li>
##   <li>Waitse our government and ma Comrade. They love finding and using "word/phrase of<span class='match'> the </span>day" ne. The other day it was CIC for Cyril. Then yesterday is was "the invisible enemy." Wonder what will be today's word. #CoronavirusSouthAfrica #Covid_19 #LockdownSA</li>
##   <li>GEORGIANS my legislators have decided NOT do everything they can to SAVE LIVES!!! We must remember they could have prevented more deaths by PUSHING @GovKemp to SHUT #GEORGIA DOWN! #ATL #COVID19 #CarrollCo #DouglasGA #leadership #Incompetant
## 
## https://t.co/dEhP0VFsIT</li>
##   <li>Calm before<span class='match'> the </span>storm I feel! Nice weather, money announcements etc but if people carry on not listening to<span class='match'> the </span>government then we are in for a troubling few months! #COVID19 #coronavirus #StayHomeSaveLives</li>
##   <li>66 research programs on COVID-19. https://t.co/RxYij6dW1j</li>
##   <li>@DavidDobrik DAVID!NATALIE!I couldn’t do anything for my bffs bday this year, or even get her a present because of COVID-19.lockdown &amp; laid off :/ she’s been working her ass off 40+ hrs a week at<span class='match'> the </span>grocery store! PLEASE HELP ME MAKE HER BDAY SPECIAL! She deserves<span class='match'> the </span>world! <U+2764><U+FE0F>love you guys! https://t.co/vbI4nREiKL</li>
##   <li>‘Are we really offering to buy computers?’ Cambridge faculty on hardship fund in wake of COVID-19 https://t.co/jHYO7VclP1 https://t.co/DhcynxASYW</li>
##   <li>.@CNN, really enjoying<span class='match'> the </span>conversation between
## @andersoncooper, @drsanjaygupta
## and @BillGates on<span class='match'> the </span>#coronavirus #COVID19.
## 
## Thank you guys for<span class='match'> the </span>#CNNTownHall; it's very informative.</li>
##   <li>Let us help you create your new business design!
## .
## .
## .
## #OnlineBusiness  #successmindset #transformation #AI #businessopportunity #Qurantine #Covid_19 #WFH #logoin30minutes
## 
## https://t.co/lRy2FlsNCt https://t.co/ZObWSgfRIW</li>
##   <li>Total confirmed deaths due to COVID-19 per million people https://t.co/HOZl0WYHBU</li>
##   <li>Wonder how #BorisJohnson is feeling about his early ‘herd immunity’ approach now... Latest from @BevanShields in #London where<span class='match'> the </span>mighty have fallen ill. https://t.co/i4S5dx2NN7 #CoronaLockdown #coronavirus</li>
##   <li>@NSSF Serious question: The local gun shops are experiencing an incredible uptick in business during this COVID 19 pandemic . Why? What is relationship between a public health emergency and sudden need for increased personal firearms?</li>
##   <li>FDA says patients can self-administer Covid-19 tests, but not at home https://t.co/2ZJjlMcSbM</li>
##   <li>@bobbidog @lucysaunderspr Everything is disrupted by #COVID19 even #TheArchers are being rationed</li>
##   <li>In a bid to curb<span class='match'> the </span>rise in<span class='match'> the </span>number of novel corona virus disease (COVID-19) cases in Muntinlupa City,<span class='match'> the </span>local government is set to purchase testing kits through its Quick Response Fund and eyes to conduct mass testing of its city residents. Read: https://t.co/yM4XRSwhXQ https://t.co/G6TAPzclAX</li>
##   <li>@realDonaldTrump Your moral &amp; financial bankruptcies was your legacy before your minority-rule administration took office. 
## 
## Now you’re killing Americans needlessly. Now your costing<span class='match'> the </span>nation trillions through your pathetic response to #coronavirus
## 
## Your end comes 11.03.2020 https://t.co/894FBKnlOF</li>
##   <li>@LaurieKrebsbac1 @421karl @ddale8 trust me you don't want incompetent yes people like CDC chief Robert Redfield or Deb Birx replace Fauci as "the expert" on<span class='match'> the </span>task force; they will say anything to curry favor w/ his orangeness (read excerpt from interview) SMDH #COVID19 
## https://t.co/kjHtG9FcwO</li>
##   <li>FERC Announces Policies and Procedures to Continue Work During COVID-19 Emergency https://t.co/GvmIIvmSpA | by @shearmanlaw</li>
##   <li>Many Floridians will die bc of gov: "DeSantis’ approach to-COVID-19 crisis-earned him a nat. reputation as-real-life version of-doofy-yet-dangerous Amity Island mayor from Jaws-“They’re playing golf-but they’re social distancing-taking their own cart.” FL-hot spot for<span class='match'> the </span>spread. https://t.co/f6Zf1T9gAV</li>
##   <li>This should provide some clarity in<span class='match'> the </span>challenge of safely managing<span class='match'> the </span>long term tracheostomy patients #COVID2019 @jnthnplmr @janesmi12241049 @SiLVaH_UK @UHP_NHS https://t.co/YxV9xDhCZA</li>
##   <li>Our neighbours measures in addressing<span class='match'> the </span>Covid-19 pandemic which can be a good reference too! @MuhyiddinYassin @AzminAli @Mustapa_Mohamed @fromKMR @Kudsia_Kahar https://t.co/a3xLxBQWju</li>
##   <li>England’s chief medical officer down with covid-19 of all people.</li>
##   <li>The #Utah Economic Response Task Force will host a follow-up Facts &amp; FAQs live conference call TODAY, March 26 at 4:00 p.m. with an overview of<span class='match'> the </span>federal stimulus package and highlight innovative business solutions. Join us at: https://t.co/9qprX5hNJp
## #stimuluspackage #covid19</li>
##   <li>The health department says<span class='match'> the </span>cases have not presented any new symptoms, but that fever, cough, and muscle aches continue to be among<span class='match'> the </span>most common symptoms. https://t.co/9q6UFBJqS4</li>
##   <li>@runcaralisarun #COVID2019 affected</li>
##   <li>@alluarjun Annaya<U+0001F64F>
## The COVID-19 Kosam Annaya donate 1 Crore 25 lakhs to<span class='match'> the </span>People of Andhra Pradesh , Telangana &amp; Kerala... 
## @AAYuvathaHyd
## @AlluSirish
## @Arjun_KumarAA
## @HellkingSai
## @SaiCharan_AADhf
## @MusicThaman
## #StayHome #staysafe Please <U+0001F64F> https://t.co/lrP0NRssfv</li>
##   <li>From free lunches to business loans to pet assistance, we’ve put together a list of resources to help you during<span class='match'> the </span>COVID-19 pandemic. Are we missing something? Email editor@eugeneweekly.com. https://t.co/u1YduFvALy https://t.co/quNDXyfjEz</li>
##   <li>Update: GTBank Isoltion Centre Almost completed. To be handed over tomorrow @gtbank @gtbank #StaySafeNigeria #COVID19 https://t.co/r8n3ovXuFo</li>
##   <li>Blue Cross changes policy to encourage use of #telehealth during #coronavirus pandemic https://t.co/XuJrWKO5gp https://t.co/OZXhrF3YeJ</li>
##   <li>Coronavirus in Africa: How prepared is<span class='match'> the </span>continent? | Covid-19 Special https://t.co/1wNuBB7kvj via @YouTube</li>
##   <li>Every organisation in<span class='match'> the </span>world has a role to play in countering<span class='match'> the </span>devastating effects of this global crisis. That of @savechildrenuk @save_children is, and has always been, to uphold #ChildRights everywhere. "Protecting a Generation from #COVID19" <U+2935><U+FE0F> https://t.co/wY9WclLiYB</li>
##   <li>Free on-street parking is now available for social care and NHS workers in West Sussex during<span class='match'> the </span>#coronavirus outbreak <U+0001F17F><U+FE0F><U+0001F697>
## 
## Read<span class='match'> the </span>full story: <U+27A1><U+FE0F> https://t.co/IPV0I2ge4Q https://t.co/B0UhfnVCxo</li>
##   <li>.#IndigenousPeoples are<span class='match'> the </span>among populations at disproportionate risk in public health emergencies. To read<span class='match'> the </span>report #COVID<U+30FC>19: How to include marginalized and vulnerable people in risk communication and community engagement <U+0001F449> https://t.co/KlD7SLMo7g #WeAreIndigenous https://t.co/BVqVOK5Ho3</li>
##   <li>Amidst Covid-19, on hold for 37 mins with<span class='match'> the </span>insurance company to get a life saving drug. Told to call another number and wait. Next time I will just hospitalize a patient with<span class='match'> the </span>same condition. Trying not to do this due to covid19. No good deed goes unpunished. <U+0001F621></li>
##   <li>@GovSisolak #GovernorPhotoOp could act RE #Rent &amp; #Mortgages or call a virtual Special Session, but won’t. He &amp; @AaronDFordNV have ignored this #WheelchairUser FOR 14 MONTHS!!!!  #COVID19
## UNREAD SISOLAK EMAIL:https://t.co/z28sEfv2Uc.
## GoFundMe/Video:https://t.co/Egn35Gzyye. https://t.co/ksucj1KleR</li>
##   <li>This covid-19 is effect on global economy https://t.co/2CBxJrZU1L</li>
##   <li>@maya206 Bravo. That is why stories like<span class='match'> the </span>one of @washingtonpost are  so scary. https://t.co/3m24tvHec9 #Covid19usa #COVID2019</li>
##   <li>#COVID19 has and is likely to affect people from many countries.
## Do not attach it to any ethnicity or nationality.
## Be empathetic to all those who are affected, in and from any country <U+2013> they deserve our support, compassion and kindness. https://t.co/XuifPSW7eY</li>
##   <li>@TELE_TOTA Please acquaint yourself with<span class='match'> the </span>new twitter guidelines and stop spreading misinformation.
## 
## https://t.co/AIPCNtaI7H</li>
##   <li>Seen on<span class='match'> the </span>street around<span class='match'> the </span>corner from our house on a little bike ride with our kids yesterday.
## #COVID19 https://t.co/XQWziZe4fn</li>
##   <li>@terencecorcoran @nationalpost Bullshit. Twenty- and thirty-somethings are also getting sick and dying. Even healthy young people. 
## Why don't you shove your 'business-before-humanity' stance where<span class='match'> the </span>sun don't shine... We are ALL at risk. #coronavirus #FlattenTheCurve</li>
##   <li>I doubt @Number10cat will endorse this method of #covid19 social distancing. https://t.co/JwYYYM4FF1</li>
##   <li>I went out thinking nobody would be outside, living on a main road and all that. There was fireworks, people clapping, horns beeping. It’s affecting fucking everyone. #ClapForOurCarers #ClapForOurNHS #Coronavirus</li>
##   <li>@pramod_dhayal @drharshvardhan @RaghusharmaINC @BJP4Rajasthan Really so hard job dr pramod, but these people don't  understand <span class='match'> the </span>situation  of covid 19 .if people  will do like this it will  be not easy  to control<span class='match'> the </span>spreads of  after that  conditions  would be more worse. Oh GOD please give <span class='match'> the </span>strength  from overcome <span class='match'> the </span>situation</li>
##   <li>@StrathcoCounty What can we do with<span class='match'> the </span>additional waste accumulated during<span class='match'> the </span>COVID 19 isolation?</li>
##   <li>How far should you physically distance yourself from others? <U+0001F3D2> That far. #COVID19 #Toronto #Canada https://t.co/3nCE3LTsFJ</li>
##   <li>Prominent Nigerian businesses and individuals have come to<span class='match'> the </span>aid of Nigerians in this difficult time. 
## 
## It is now<span class='match'> the </span>turn of MTN. 
## Let’s feel you at this time. In a BIG way.
## The end
## Alkanchi Nasiru Ahmad
## #StaySafeNigeria #COVID19</li>
##   <li>COVID-19 UPDATE | The Ministry of Health has confirmed an eighth case of COVID-19 was recorded in Namibia. Dr Kalumbi Shangula was speaking on a panel discussion on<span class='match'> the </span>lockdown of Khomas and Erongo regions. https://t.co/5Dm29MoYG4</li>
##   <li>In one day, Massachusetts reported 10 new deaths attributable to COVID-19. https://t.co/nYSWZk1t5K https://t.co/bYeE3eIMMM</li>
##   <li>@MysterySolvent Fauci's face says it all with Lincoln's somber look behind him. 
## 
## Covid-19 circle jerk.</li>
##   <li>COVID-19 vs. H1N1-09: What a difference a decade can make - American Thinker https://t.co/sCIyrWBAEw</li>
##   <li>ABMS-Developed Tech Could Help Military Telecommute During COVID-19 https://t.co/LOscwcZjg1</li>
##   <li>COVID-19 AND NIGERIA POLITICAL ELITE 
## 
## Even though a part of me really wants COVID-19 to wipe out(just like most Nigerians want) our so called Political Elite because of<span class='match'> the </span>mess they put Nigeria and Nigerians in. 
## 
## I also Firmly...</li>
##   <li>#COVID19 Screening Tool: This tool will help you determine next steps to take from your computer or device. #Coronavirus https://t.co/7REMA7FIoh</li>
##   <li>2500 American Troop Will Be In Darwin Next Week 
## Some possibly Infected With The Covid+19 Virus<U+0001F60E>
## Didn't Scotty Close Our Boarders.? https://t.co/30lymh9v0U</li>
##   <li>The US response, unfortunately, has been very different.  We blew<span class='match'> the </span>testing, didn't produce masks, didn't build respirators, didn't practice social distancing until too late.
## 
## As of today, we're #1 in<span class='match'> the </span>world in #COVID19 cases, and rising fast.  We're not on a good track.</li>
##   <li>A 16-year-old girl from #Paris dies of #COVID19 after 2 tests initially showed up negative. Let this be a reminder to us that this virus doesn’t know age or health. It can get anyone. Please listen to<span class='match'> the </span>doctors and stay home until this is under control.  https://t.co/5cCjtrksFn</li>
##   <li>#DoYourPart to help #StoptheSpread of #COVID19. Please avoid large groups, going to city parks/playgrounds, and maintain social distancing to help contain<span class='match'> the </span>spread of<span class='match'> the </span>virus. @CvilleCityHall @TJHealthy https://t.co/MZwjc9T3lK</li>
##   <li>While having to deal with<span class='match'> the </span>#COVID19 pandemic, area health authorities also worry about an increase in #overdoses in #Brockville.
## 
## #fentanyl #addiction #drugs #opioids
## 
## https://t.co/QArQymOdQZ</li>
##   <li>Costco in Brookfield, CT is doing their part to combat #COVID19 #COVIDCT . They cheerfully wipe down your shopping cart handle with disinfectant when you enter<span class='match'> the </span>store. https://t.co/ho6xrlfFkh</li>
##   <li>the US done passed China in #Covid19 cases ... wtf really going on out here ??????</li>
##   <li>We aren’t allowed out of our rooms until we:
## -Are kinder to all humans no matter their race, religion, OG country, whom they love
## -Treat animals with respect 
## -Treat<span class='match'> the </span>earth with respect, and stop denying<span class='match'> the </span>climate is in fact changing
## -Stop ghosting women 
## #COVID19 #corona</li>
##   <li>@kathygriffin Unless you are a member of<span class='match'> the </span>corrupt Trump crime family (his hideous spawn), his despicable minions or wealthy billionaire friends, you don't qualify for COVID-19 testing.  Sorry @kathygriffin. Love you<U+0001F495></li>
##   <li>@HassanAliJoho @ODPP_KE @NPSOfficial_KE @MOH_Kenya @StateHouseKenya The disturbing brutally witnessed in likoni,  Mombasa is a clear indicator of a failed law enforcement and even more worrying,  a leadership that is not in control 
## Is it a coup or a curfew??
## #CurfewinKenya 
## #COVID19 
## #stopbrutality</li>
##   <li>You are making<span class='match'> the </span>biggest mistake of your life!.  No matter how intelligent and educated we are,  we can't underestimate<span class='match'> the </span>power of #ALLAH ..ALLAH please save us from covid 19.only allah can save us from corona vairus.
## #Covid19usa #CoronaLockdown #massie #FridayMotivation</li>
##   <li>Friend asks: where are<span class='match'> the </span>Adrian Dix and Bonnie Henry action figures
## https://t.co/fsf9QUmNPT</li>
##   <li>What was<span class='match'> the </span>keyword in<span class='match'> the </span>the message from<span class='match'> the </span>President of @AmerMedicalAssn in<span class='match'> the </span>midst of #COVID19? @PatriceHarrisMD says 'TRUST'! Her main message? Need #PPEshortage #PPE. Currently LIVE at #AMWALEADS2020 #AMWA105 from @AMWADoctors @DrRGebhard @ChinEliza @ptkirchgraber https://t.co/VaSxCXxDly</li>
##   <li>As if we need another reminder of exactly why he’s so dangerous, but FYI, here you go.  #COVID19 #TrumpCrimeFamily  https://t.co/oYknBnBRhU</li>
##   <li>@Stogger2001 @MoustafaZeidy @OG_MaraJade There is a luxury, contactless hotel in Switzerland capitalizing on this in style.  Luxury covid-19 packages at Le Bijou.  A hustler mind set will ALWAYS make cash and jump on opportunities.</li>
##   <li>Present updates about #COVID2019 
## #CoronavirusOutbreak #Covid19usa #COVID #CoronaLockdown https://t.co/U59lj2j80G</li>
##   <li>The @LWV_WI filed a federal lawsuit seeking to "protect self-quarantining voters who cannot safely obtain a witness signature on their mail-in ballot during<span class='match'> the </span>COVID-19 pandemic."  
## 
## The complaint is here: https://t.co/3tmEiVCLTb https://t.co/L484pdEL06</li>
##   <li>Who is joining us in 10 minutes to #clapforNHS? Let’s show our appreciation #ThankYouNHS #COVID2019</li>
##   <li>Mets Could Be Heavily Affected By COVID-19 Agreement https://t.co/RQ44FaroF4 #Mets #LGM</li>
##   <li>COVID-19: NMA seeks Executive Order on total lockdown - https://t.co/oOnCatdeEr https://t.co/yYWyhy1r8B</li>
##   <li>A white man just saw me walking towards him and walked across<span class='match'> the </span>street. I thought it was bc I’m black... but remembered #COVID19 was still a thing... you get a pass sir. https://t.co/YYsUa74dwT</li>
##   <li>COVID-19 Crash: How China's Economy May Offer a Glimpse of<span class='match'> the </span>Future https://t.co/Dpi45Q5c5g</li>
##   <li>There is cause to believe that<span class='match'> the </span>youth was denied care for COVID-19 because he did not have health insurance.
## 
## https://t.co/i4lKUlelr4</li>
##   <li>Everyday more #research is becoming available &amp; our understanding of #Coronavirus is getting better
## 
## We are #learning new ways to fight it
## 
## The existing guidelines will #improve accordingly
## 
## Salutes to our #Doctors &amp; #scientists who are fighting at<span class='match'> the </span>forefront
## 
## #Doctor_Bashing https://t.co/5F44NEqman</li>
##   <li>@shannonrwatts I just ordered something online and they said they will accept returns after 30 days as long as I notify them I need a return because they understand covid-19 will make returns difficult</li>
##   <li><U+0001F1E8><U+0001F1F3> #Wuhan resumed<span class='match'> the </span>outbound and inbound transportation on Saturday after its 65-day lockdown due to<span class='match'> the </span>outbreak of COVID-19. 
## 
## The first passenger train arrived its Wuchang Station, and metro line-2 also restarted to operation on Saturday morning. #COVID19 
## #coronaviruschina https://t.co/nPkGV9kPVW</li>
##   <li>if my lungs dont fail bc of covid-19 it’ll be because my partners dad insists on spraying<span class='match'> the </span>entire house with fly spray over a single fly</li>
##   <li>Filed on September 5, 2013, about 7 years before<span class='match'> the </span>world is hit by<span class='match'> the </span>COVID-19 pandemic, Senate Bill no. 1573 known as<span class='match'> the </span>Pandemic and All-Hazards Preparedness Act aims to help prepare<span class='match'> the </span>Philippines against a pandemic or a deadly virus.
## 
## #COVID19PH
## #MiriamSantiago https://t.co/2dviBH9lRs</li>
##   <li><U+0001F3E2> 'They're winning praise all over<span class='match'> the </span>city' https://t.co/QuCM9vmdZ8</li>
##   <li>#drewbrees donating $5 million to #covid_19 relief in Louisiana https://t.co/EwllSaA3Rx</li>
##   <li>A 25-year-old woman from #Ariyalur, who was working at a #Chennai mall tested positive for #COVID-19. https://t.co/9vwWIcyooJ</li>
##   <li>Bimbang” #Covid19 <U+0001F1EE><U+0001F1F9><U+0001F1F2><U+0001F1FE> Everything will be back soon. https://t.co/jDdU15G6ej</li>
##   <li>@j_mcelroy @cbcnewsbc Can you ask them why Vancouver is not in lockdown? Also these numbers are of those showing serious #Covid19 symptoms who are tested not mild (not tested). For<span class='match'> the </span>mild cases are they tracking sources? They are equally contagious. https://t.co/wiEPDVzOpr</li>
##   <li>@bbclaurak Why didn't you challenge her on reports of govt manipulation of #coronavirus deaths figures?</li>
##   <li>Ontario has 993 confirmed cases of COVID-19, 135 confirmed in<span class='match'> the </span>past day, an increase of 16%. There have been 18 deaths. A record 3,375 test results were completed in<span class='match'> the </span>past 24 hours, but there is a 3-day backlog on average, based on<span class='match'> the </span>current testing rate.</li>
##   <li>How to act during<span class='match'> the </span>COVID-19 outbreak, by @SpanishLuvSongs https://t.co/veS2WvNnCC</li>
##   <li>I’m like 95% sure I’m unemployed cause of this #COVID19 thing but we’ll see</li>
##   <li>#confinementtotal On https://t.co/4zZsRPZYwX Listen now Devil In Me by RumRunners @rumrunnersuk via @infinitehive on https://t.co/C2Tndcnl74 #QuarantineLife #StayHome #covid19 https://t.co/6GyxLt72WL</li>
##   <li>#StayHomeSaveLives  seems to mean less to your staff, then it does to other councils. @carolinenokes now would be a good opportunity to add clarity from a government’s pov. Speak up before COVID-19 destroys lives, when clearly can be avoided.</li>
##   <li>Now, everyone in my city use face mask. Maybe because of #COVID19 so people aware that healthy lifestyle is important. People afraid to infected by Corona</li>
##   <li>Oliver Wyman's data and healthcare experts developed<span class='match'> the </span>#OWCovid19 Scenario Generator to forecast<span class='match'> the </span>number of confirmed COVID-19 cases in a region and scenarios for hospital capacity in US geographies. Access through link below. https://t.co/KDw6qJp3TV</li>
##   <li>If there's a proven treatment that prevents Covid-19 infection that's available in limited amounts &amp; you can only get it if you kiss Trump's ass, that would explain why no one's worried. Wouldn't it be crazy if that conspiracy theory got started? #Trumpdemic #LiarInChief https://t.co/VYIcLesg6y</li>
##   <li>@CutthroatShop @lana_manson @smithlocke11 @gjhghg16 @YoungJyoung6350 @ChrisEvans_USA @ChrisEvans @KimKardashian Omg go put on a Trump rally, go celebrate your poor leader and remember that covid-19 is just a hoax, you Trumpist will come out just fine. Trump promises. PLEASE!</li>
##   <li>@maschanyet_ imagine her being<span class='match'> the </span>one discovering<span class='match'> the </span>cure for covid 19 then<span class='match'> the </span>whole nation fell for this pretty scientist</li>
##   <li>The Music Industry's First Coronavirus Survivor Describes<span class='match'> the </span>Ordeal https://t.co/rqGaA8ewAz #Hollywood #Music #coronavirus
## #chinavirus</li>
##   <li>Go Smart, Go digital In this Covid19 work from home era.             
## .
## .
## .
## .
## .
## .
## .
##  #COVID19 #coronavirusinlagos #Curfew #SouthAfricaLockdown #ABetterNigeria #lagoslockdown #LetsFightCovid19  #StayHome #thursdaymorning #CoronavirusPandemic #vaka3629 #clapforNHS #clapforourcarers https://t.co/wXCaQ4G8eE</li>
##   <li>Two guards at Saskatoon Correction Centre test positive for COVID-19 https://t.co/cdYgsMFojP</li>
##   <li>#COVID19 got this emergency alert on phone now.. that’s a good one.</li>
##   <li>@FrielSfriel @jeremyscahill No evidence it jumped from pangolins... 
## 
## https://t.co/z2qvU83EB7</li>
##   <li>Now available, our COVID-19 exclusive Tee<U+2622><U+FE0F>They’re made to order..and will be available until 4/1<U+2601><U+FE0F>
## Cop now at https://t.co/mx67SMWGDn <U+0001F919><U+0001F3FC> https://t.co/ttKDyfjEFS</li>
##   <li>@russdiemon Riding this out alone. Scared but hopefully. #COVID19</li>
##   <li>#HrithikRoshan's latest post is a hit, but for a change it is not<span class='match'> the </span>superstar but his pet dog that is drawing a lot of attention. #coronavirus #covid19india
## https://t.co/bXm9CLTw1X</li>
##   <li>@MinofHealthUG @rkabushenga Thank you Abacus for for standing with @MinofHealthUG  demonstrating action in<span class='match'> the </span>fight against COVID-19</li>
##   <li>Coronavirus Tips and Supplies Guide: What to Buy (and Avoid) in Case of Quarantine <U+2013> Don't: hoard toilet paper and medical masks. Do: make sure you have plenty of food, water, and indoor activities. https://t.co/MdhWI8aqGu https://t.co/yOCnBNHE7U</li>
##   <li>If Covid 19 is gotten under control and MLB has a season, they should play every game of<span class='match'> the </span>entire post season this year at Hiram Bithorn Stadium in Puerto Rico. It would mean they could play in warm weather into Nov and Dec and be a boost to PR’s economy.</li>
##   <li>Could Robots Be Deployed to Front Line in Fighting COVID-19?: Title: Could Robots Be Deployed to Front Line in Fighting COVID-19? Category: Health News Created: 3/25/2020 12:00:00 AM Last Editorial Review: 3/26/2020 12:00:00 AM https://t.co/9IrMybtlfz</li>
##   <li>As a #paramadic Chief, my #COVID19 quick take:
## 
## 1) @BC_EHS &amp; my @APBC873 brothers/sister are amazing.
## 
## 2) Please don't go out in groups. At all.
## 
## 3) #Coffee only from home, as a strange (yet kind) hand &gt; lid &gt; face isn't going to work for a while.
## 
## #wegotthis</li>
##   <li>@marklopeztkd It is NOT Wuhan virus - it is covid-19 !! please use accurate terminology! Funny video though <U+0001F923></li>
##   <li>Coronavirus explained: Where it came from and how to stop it | DW News | Virus Information News  Full article -&gt; https://t.co/kOgpPOD3mi #covid19 #coronavirus #virus #pandemic #coronavirusoutbreak #coronavirusepidemic #quarantine #selfquarantine #outbreak #COVID<U+30FC>19 https://t.co/TdBgy0HrlA</li>
##   <li>When Football (Soccer) returns from<span class='match'> the </span>long extended break #COVID2019 https://t.co/YkZ4A6mHn5</li>
##   <li>@GeriSoc statement on corvid-19
## https://t.co/COVcMDvN4k</li>
##   <li>@prof_carrington very early findings...HCQ (not<span class='match'> the </span>same as CQ) basical is likely to attenuate severe progression of COVID-19 through inhibiting<span class='match'> the </span>cytokine storm by reducing CD154 expression in T cells...</li>
##   <li><U+0001D5E3><U+0001D5E5><U+0001D5D8><U+0001D5E6><U+0001D5E6> <U+0001D5E5><U+0001D5E2><U+0001D5E2><U+0001D5E0>
## <U+0001F1ED><U+0001F1F3> #Honduras: The National Risk System (SINAGER) communicated<span class='match'> the </span>following measures for<span class='match'> the </span>entry of Hondurans to<span class='match'> the </span>country: https://t.co/PtlHn0gvow
## 
## #SomosArias #crisismanagement #riskmanagment #quedateencasa #stayhome #covid19 #lawfirms #coronavirus</li>
##   <li>These 3 pre-existing conditions make #COVID19 harder to treat. https://t.co/WcU5R17EXG</li>
##   <li>We may have experienced slight surge in confirmed cases of #COVID19. You and I have a patriotic duty at this trying moment.
## 
## Practice self isolation if you have just returned from a country with high risk.
## 
## Practice personal hygiene, and follow safety guidelines from @NCDCgov. https://t.co/vQGqfOUZpL</li>
##   <li>May God protect us all from<span class='match'> the </span>Corona virus and bring back Peace in our lives, Ameen. 
## 
## May God grant Paradise to<span class='match'> the </span>martyrs during this Pandemic and bless<span class='match'> the </span>affected with Shifaa, Ameen.
## 
## #COVID19 #Ireland #Prayer #Humanity #WeAreFightingCorona https://t.co/ZUmcuRO3Vq</li>
##   <li>Check out Jonathan Valdez's video! #TikTok #CoronavirusOubreak  https://t.co/XRRhQRqYAT</li>
##   <li>PUBLIC HEALTH MTL #COVID19: We've seen in acceleration of<span class='match'> the </span>number of cases in<span class='match'> the </span>last week.</li>
##   <li>Did you have coronavirus earlier this year? The 8 signs Covid-19 may have already struck https://t.co/takkQQ6DnF</li>
##   <li>Being at home does not mean you are alone. I am offering discounted consultations to help others. Contact me now to schedule an appointment &amp; share to help others 
## #foodallergy #COVID19 #consultant #Advocate #support https://t.co/BWjqxMFFLO</li>
##   <li>Ganesh Naik appeals to doctors to keep clinics &amp; hospitals open during Coronavirus lockdown
## #LiveUptoNobleProfession #Coronavirus #navimumbai 
## https://t.co/lA42OQtyyv
## @NaikSpeaks @isandeepgnaik</li>
##   <li>Little social distancing cookout this evening. #coronavirus #MyHuntington https://t.co/htsyRBxxow</li>
##   <li>My poor mom, y’all. She’s at high risk with COVID-19 because of her heart &amp; lung diseases and compromised immune system. My grandma is in<span class='match'> the </span>hospital not doing well and I went over to talk with my mom, while practicing social distancing.. 6 feet apart, and she’s just crying and</li>
##   <li>Governors Tell Outsiders From ‘Hot Zone’ to Stay Away as Virus Divides States https://t.co/EWipqyohZS #coronavirus #CoronaVtj https://t.co/wKS6bRGv4U</li>
##   <li>@RepThomasMassie What kind of person are you?!  To unnecessarily expose House members to COVID-19 to vote in person when they can easily vote remotely or by unanimous consent?  We aren't living in 1776!!  Get with<span class='match'> the </span>times.</li>
##   <li>All City of Sacramento public counters are temporarily closed in response to COVID-19. The Department of Utilities is not shutting off services for non-payment and will waive late fees. Visit our online resources and tools available. https://t.co/KraHOel1me</li>
##   <li>Teams are stronger than heroes <U+0001F60E>
## https://t.co/1Zpo20qzDE</li>
##   <li>#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 On https://t.co/4zZsRPZYwX Listen now She Moved Through The Fair by Hats Off Gentlemen It's Adequate @itsadequate on https://t.co/C2Tndcnl74 https://t.co/blbD5rxkvJ</li>
##   <li>Looking for something to watch while being quarantined? Check out my son’s latest short films! 
## #proudmom #QuarantineLife #QuarantineWatchParty #coronavirus #filmmakers #shortfilms #SupportTheArts https://t.co/2PpcOwEDbH</li>
##   <li>@Comcast Why won’t you come fix internet? Our entire neighborhood is w/o service (less than 1Mbps).
## 
## How can we do remote school for our college kids or work from home?
## 
## Rep said you would fix it after #COVID19 - what!?!
## 
## HELP!
## 
## @GovTimWalz @WCCO @KSTP @kare11 @FOX9 @amyklobuchar</li>
##   <li>So apparently one of<span class='match'> the </span>side affects of Covid-19 that nobody is talking about is it makes people REALLY FUCKING STUPID! Go home idiots!</li>
##   <li>Antron Security will be supporting #clapforNHS and #clapforourcarers to recognise and applaud<span class='match'> the </span>great work everyone in<span class='match'> the </span>#NHS is doing everyday. They take risks to keep us all safe. #covid19.</li>
##   <li>Was just outside and birds don't give a fuck about #COVID19</li>
##   <li>Decatur doctor shares COVID-19 experience https://t.co/hoizaFpGjp via @YouTube</li>
##   <li>@SarahLudford  https://t.co/WgF1By8K1M
## A professor on Covid 19</li>
##   <li>Congress provided $25 billion for transit service in<span class='match'> the </span>#COVID-19 economic stabilization. Learn more, and tell your representatives thanks. https://t.co/BCaphY7RTw #TransitIsEssential</li>
##   <li>@VWGroup CEO says factory shutdowns cost 2 billion euros per week, urges discipline in following medical advice. Story on @TheTerminal #FlattenTheCurve  #COVID2019 #coronavirus</li>
##   <li>We at @CdnFeedChildren stand with 150 Canadian charities asking<span class='match'> the </span>federal government for urgent financial aid and action to help sustain<span class='match'> the </span>important work we all do as we navigate #COVID19 #FeedChildren https://t.co/RCGqNrgOP4 https://t.co/Mi8zEyNvru</li>
##   <li>@MarthaKarua Surely from<span class='match'> the </span>images coming from Kenya. It seems<span class='match'> the </span>govt has declared war on its on citizens instead of war on<span class='match'> the </span>virus. The people of Kenya are fighting two fronts one is<span class='match'> the </span>covid-19. And 2nd is stupidity from<span class='match'> the </span>govt.</li>
##   <li>UPDATE: iBIO’s COVID-19 PPE Response Fund just ordered 62,500 #PPE<U+00A0>items valued at more than $400,000<U+00A0>thanks to @HorizonNews Seed Donation. Join<span class='match'> the </span>fight. Help save lives. Donate: https://t.co/jFwa6xt4d6 @HorizonCEOTW #iBIOCOVID19PPEResponseFund #COVID19 #IL https://t.co/qiIJZivQNa</li>
##   <li>Malaysia's vegetable supply to be disrupted in coming months due to<U+00A0>movement control order, say farmers https://t.co/Tm1wbW8J9I https://t.co/L3lDuip0iW</li>
##   <li>@lopakanungo @eartherian @HathwayBrdband @ACTFibernet Can you share<span class='match'> the </span>procedure of mailing to nodal officers directly. Bcz when i mailed to delhi nodal officer on her  mail id provided on hathway website. It send me back computer generated mail only regarding COVID-19 or shortage staff...blaah blaah...<U+0001F611><U+0001F611><U+0001F97A></li>
##   <li>You should limit your contact with people as much as possible.
## 
## Practice Self-Isolation.
## 
## Stay home and avoid attending activities or gatherings where you may come in close contact with other people.
## 
## #TeamFiji #Fiji #LegalAidFiji #COVID19 https://t.co/bSruMggEQn</li>
##   <li>Need a change from<span class='match'> the </span>doom &amp; gloom around #COVID2019 <U+2753>
## ONLINE this Friday 10.15 at @FriendsofEurope is @vestager on Europe’s digital future. 
## #womenintech #leadership  https://t.co/GhYtYZdwfD</li>
##   <li>With everyone at home, home accidents are on<span class='match'> the </span>rise. Use this helpful resource to help keep your family safe in these times, and always! https://t.co/SJMSTXCrvF
## 
## #homesafety #COVID19 #home #safety #kids #parents #StayAtHomeAndStaySafe #StayHome</li>
##   <li>@BillyWarpinjur Spreading some COVID-19 Love among his sycophants.</li>
##   <li>How about words of encouragement by giving them a refund for their meal plans, room and board fees and any other resources they no longer have access to due to covid-19 many of these students had to take out loans and y’all want to take everything away and not reimburse them! https://t.co/ZecjilcaBc</li>
##   <li>Nets' Kyrie Irving Donates 200K 'Beyond Burgers' to NYC Food Bank amid COVID-19 | Bleacher Report https://t.co/QeAIGKRe4N</li>
##   <li>Is<span class='match'> the </span>Covid-19 test free from MOH? Anyone know?</li>
##   <li>Stop fake solidarity, messages and clapping for heros. #Switzerland can put their money where their mouth is. Buy ventilators.
## Mountain light show sends message to #Swiss
## #Covid_19 https://t.co/N8EebbDEI6</li>
##   <li>#Singapore has tapped into its reserves for only<span class='match'> the </span>2nd time in history &amp; announced a S$48bn (US$33.7bn) stimulus plan to combat<span class='match'> the </span>economic impact of #COVID2019. Combined with<span class='match'> the </span>measures announced in<span class='match'> the </span>budget it brings<span class='match'> the </span>total fiscal boost to S$55bn, or 11% of GDP. 
## 7/12</li>
##   <li>@TwitterSupport @Twitter @FudBankNg for there poor during this #COVID19Nigeria lockdown time in Nigeria. I will be glad if this is done. Thank you 2/2
## Picture of past food distributions #StaySafeNigeria #COVID19 # https://t.co/mepMTfIqRv</li>
##   <li>@drkellyhenning @ParentsvsVape #Fake #News.  Using a real pandemic (#coronavirus ) to spread their hatred of personal freedom and tobacco.  If people want to smoke, let them!</li>
##   <li>Sign and Share our petition below to #StopTheRent and protect University staff and students during this crisis 
## #Students8Demands #COVID19
## https://t.co/9bBGWOmV3o</li>
##   <li>May I please ask for prayers for my boyfriend's daughter Jenn? She tested positive for #coronavirus &amp; had been ok at home but her breathing has gotten worse &amp; so she's had to be hospitalized today! <U+0001F631><U+0001F494> Thanks in advance!! Take good care everyone! #MaskUp #Masks #coronavirus <U+0001F64F><U+0001F494></li>
##   <li>My whole road just clapped. Big up<span class='match'> the </span>NHS #NHSheroes #NHSThankYou #COVID2019</li>
##   <li>Dear @realDonaldTrump, I know you’ve been really busy with Covid-19, but would you please take a moment of your time to consider a full pardon for #JoeExotic #TigerKing #CaroleKilledHerHusband https://t.co/u6MBFkJJIy</li>
##   <li>@humkakare coronavirus is a type of virus that has been known about for centuries. covid 19 is just a form of it. stop spreading false information and panic</li>
##   <li>#SouthIndia actors are helping poor &amp; Governments fight #Coronavirus by donating huge despite earning less than #Bollywood. But @iamsrk @BeingSalmanKhan @akshaykumar @aamir_khan @karanjohar @yrf @SrBachchan @KapilSharmaK9 @sonamakapoor wouldn’t care a bit and will never donate.</li>
##   <li>As we navigate uncharted territory in these unprecedented times, it’s important to look for glimmers of hope amongst<span class='match'> the </span>chaos. It isn’t difficult to find several examples of brands/businesses engaging in social good during<span class='match'> the </span>COVID-19 crisis. https://t.co/RzsOp24dxb</li>
##   <li>Idk what will get to me first...
## 
## This being an “essential worker” and learning everything yourself at home with strict due dates 
## 
## Or covid-19
## 
## <U+0001F61E></li>
##   <li>Confirmed Cases and Deaths by Country, Territory, or Conveyance
## The coronavirus COVID-19 is affecting 198 countries and territories around<span class='match'> the </span>world and 1 international conveyance (the Diamond Princess cruise ship harbored in Yokohama, Japan). https://t.co/o9JbG27nT0</li>
##   <li>Just one more reason us #Texans love #heb! #coronavirus 
## 
## https://t.co/izYX2mCJpz</li>
##   <li>Don’t be thick !!!  #coronavirus #CoronaVillains https://t.co/unyw7rTz0p</li>
##   <li>The irony is Toorak and Armadale have<span class='match'> the </span>highest number of positive #Covid_19 cases. I live in Armadale, I don’t want it - why do others think this is okay? Stay inside your glorious mansions, surely you have enough things to keep you occupied. https://t.co/jk8b6rpD3j</li>
##   <li>World, i am loving<span class='match'> the </span>true selfless acts all around<span class='match'> the </span>world. @snmrrw is giving up his salary to help low-level employees all over<span class='match'> the </span>country during this horrible #COVID19 pandemic. *starts slow clap* Kudos, Sean! Amazing act of kindness, love and selflessness! https://t.co/lmZEYhQU5X</li>
##   <li>@mattgaetz @RepMattGaetz It's a COVID-19 treatment center dipshit</li>
##   <li>TRUMP ISN’T AT WAR HE NEEDS TO JOIN THE WAR AND NOT DODGE THIS ONE! OUR DOCTORS AND NURSES ARE FIGHTING TO SAVE LIVES WITHOUT THE WEAPONS TO DEFEND. THE UNITED STATES OF AMERICA HAS TO DO BETTER TO HELP DOCTORS AND NURSES SURVIVE TO CONTINUE FIGHTING THE COVID-19 WAR.</li>
##   <li>.. “As long as this continues, it’s going to have a significant impact on people’s everyday lives.” @txcomptroller @Glenn_Hegar tells me TX’s jobless rate may hit 1980s “oil bust” levels +<span class='match'> the </span>turnaround could take time. More later on @KHOU #khou11 #COVID19</li>
##   <li>The end of another challenging week as we all readjust to fully remote working dealing with a range of issues to maintain community safety &amp; ensure our service continuity. Proud of<span class='match'> the </span>team for their resilience, adaptability, team work &amp; commitment #StayHomeSaveLives #COVID19</li>
##   <li>COVID 19 and your pets: March 25th update https://t.co/fkgx2OjEGY via @YouTube</li>
##   <li>Committed to providing reliable supply in uncertain times. #patientsafety #COVID19 #FlattenTheCurve https://t.co/9o5dQUIeG6</li>
##   <li>@tescotringarea so impressed with your covid 19 precautions for shoppers today. Well done and thank you!</li>
##   <li>On to<span class='match'> the </span>Senate for<span class='match'> the </span>Minnesota COVID-19 aid bill, which passed<span class='match'> the </span>House 99-4. #mnleg</li>
##   <li>Does anyone have malaria?
## 
## If you have malaria, you could sell your infection for $2,000 per person you infect in states with treatment bans for COVID-19.</li>
##   <li>Is dereliction of duty an impeachable offense? #COVID19 #TrumpPandemic https://t.co/TV6wbrgnCd</li>
##   <li>@sudhirchaudhary    Door to door test should be done to check corona positive patient as some people are hiding this problem so that it becomes more dangerous for other people also. I think this door to door test will help to recover from corona <U+0001F64F><U+0001F3FB>jai hind <U+0001F1EE><U+0001F1F3>#covid19</li>
##   <li>#coronavirusindia #Covid_19india I see many people is making congregation infront of grocery shop, vegetable shop (in TV), which have potential to spread #COVID2019. Please go out only if necessary during this lockdown, so government does not have  to implement another lockdown.</li>
##   <li><U+0001F44F>"Until about<span class='match'> the </span>third week of January, only a few pharmaceutical executives, drug-safety inspectors and dogged China hawks cared that a large share of<span class='match'> the </span>world’s supply of antibiotics depends on a handful of Chinese factories." https://t.co/J7JS3qkkPY</li>
##   <li>Tough times don't last, tough people do!!! #TogetherApart #COVID19</li>
##   <li>My niece Melissa, an RN, prepared for work in<span class='match'> the </span>world of COVID-19. https://t.co/n1ULsOD3Bq</li>
##   <li>Keeping BC safe &amp; healthy: Please watch @JJHorgan and @MikeFarnworthBC announce new measures to help protect supply chains and ensure compliance with @DrBonnieHenry orders. #TogetherApart #COVID19 #bcpoli [full release here: https://t.co/uHt4TgliWb] #bcpoli #COVID19BC</li>
##   <li>"Royal Pains" If I Were a Sick Man (TV Episode 2009) - IMDb - 11 years ago #Covid19 #WuhanVirus  https://t.co/D3ZbmBoU2M</li>
##   <li>#Egypt reports 41 new #coronavirus cases and 6 new deaths, bringing<span class='match'> the </span>country’s total to 536 and 30 deaths. Whilst, 116 cases have recovered and discharged from hospitals: @mohpegypt https://t.co/37InX06vRC</li>
##   <li>Is this pandemic a sign that we should start embracing<span class='match'> the </span>virtual world <U+0001F914>?
## #virtualworld #COVID19 #virusoutbreak</li>
##   <li>Google Chrome 81 to be released next month, on April 7. Google to resume Chrome updates it paused last week due to COVID-19... via @zdnet #infosec #tech #ThursdayThoughts https://t.co/rNQW5h2Q15</li>
##   <li>This is me any time I’m at<span class='match'> the </span>grocery store and someone coughs or sneezes. <U+0001F631><U+0001F637> #coronavirus https://t.co/ZoHZslmvk2</li>
##   <li>Christian pastor who thought COVID-19 is just ‘mass hysteria’ is among<span class='match'> the </span>first in Virginia to die from virus https://t.co/1ndUUQURf3</li>
##   <li>I hope everyone is taking notes during this #coronavirus epidemic, because some people don't deserve a welcome back to civil society when this is all over....... #DieForTheDow #True Colors https://t.co/yhC89Dl5AB</li>
##   <li>stay home and stay safe. Clsspsdrugs #COVID<U+30FC>19#covidnyc #SundayThoughts #COVID19 #StayHome.</li>
##   <li>You can guarantee that all<span class='match'> the </span>vile lefties &amp; liberals gloating over @BorisJohnson &amp; @MattHancock contacting #coronavirus, there won't be a single patriot amongst them.
## 
## It's not just Boris, Matt &amp;<span class='match'> the </span>@Conservatives they hate, they hate Britain too.
## 
## Abhorrent sick TRAITORS.</li>
##   <li>We are about to open our Mashauri #COVID-19 Idea Challenge for university students. Please share<span class='match'> the </span>link to anyone who you believe may be interested
## https://t.co/xe0IP1N8Cu https://t.co/X8xqJL7zFu</li>
##   <li>I’m sick right now not with covid-19 but all I do is stay home and getting paid for it <U+0001F602>. https://t.co/k7Z1ucGaPK</li>
##   <li>BREAKING: The CARES Act $2.2 trillion stimulus was signed into law today to help small and medium size businesses access loans to cover #payroll. 
## 
## Read all about it in<span class='match'> the </span>#TriNetblog: https://t.co/rXTAalUC2q
## 
## #YourPeopleMatter #COVID19 #breakingnews #stimulus #payroll #SMBloan https://t.co/wBlm5y7zeO</li>
##   <li>Better a thousand times careful than once dead.
## #CoronaUpdate #Covid_19 #Motivation</li>
##   <li>@realDonaldTrump @generalmotors @Ford Maybe if you got your shit together and give coherent speeches everyone wouldn't be confused.
## https://t.co/kb9E5lD21W
## #TrumpLiesPeopleDie #TrumpIsTheWORSTPresidentEVER #TrumpRecession #coronavirus #Trumpdemic #TrumpPlague #TrumpVirus</li>
##   <li>Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/nyCKhWIN2b</li>
##   <li>Survey : have you been able to get tested for Covid -19.</li>
##   <li>Been thinking about what<span class='match'> the </span>#COVID19 crisis would be like without<span class='match'> the </span>internet.  Ability to work from home, get key information, order groceries online.  Social distancing would be much harder without it.  Probably saving likes.</li>
##   <li>@GraemeStraughn a lot of<span class='match'> the </span>MTA workers have tested positive for COVID-19, between safety concerns for workers and riders, they've slashed operations by over 25% and rising due to a steep drop in ridership. They can't afford to run efficiently. You're gonna have to walk, friend :/</li>
##   <li>We created<span class='match'> the </span>ABM COVID-19 Resource Hub, w/ advice from our team &amp; trusted industry leaders to provide support and insights on how to best adjust to<span class='match'> the </span>new challenges posed by COVID-19. 
## https://t.co/zeWEw1KUvd #abm #accountbasedmarketing #community #stayhome  @madisonlogic</li>
##   <li>Even while practicing social distancing, community is important! Make sure to check in with those you know.  #COVID19 https://t.co/C3GyNsm3Mt</li>
##   <li>@RealBrandonDonk @realjuliasong @ericgarcetti  
## 
## A magnum opus in<span class='match'> the </span>catalog of bad ideas. #Covid19 
## 
## How about you stop sipping whiskey while<span class='match'> the </span>world falls apart and govern?</li>
##   <li>I cannot believe ANY of<span class='match'> the </span>numbers from either China or<span class='match'> the </span>US to be accurate. Both countries (+many others) that are reporting numbers of citizens that THEY KNOW OF. 
## There are MANY "undocumented" that are quietly mourning their own, burying their own. There's more. #COVID<U+30FC>19</li>
##   <li>@realDonaldTrump Can we just focus on taking care of Covid-19 first? Oil and gas aren’t going to matter at all if people are dead - and they Are Dying. We just passed China with most cases of<span class='match'> the </span>virus - winning???</li>
##   <li>#COVID19 has introduced me to telemedicine and I love it.</li>
##   <li>Students, if you have questions about COVID-19, OUSD is doing a live web chat at 11am today. Go to https://t.co/CfLwx6kAoy to join<span class='match'> the </span>video conference! We’ll post<span class='match'> the </span>link to<span class='match'> the </span>recording if you can’t attend. https://t.co/xGXOESk913</li>
##   <li>A nurse in America resigned cause her supervisor wanted to take advantage of her. . .  Despite knowing her medical history, she still insisted on sending her to<span class='match'> the </span>#COVID19 Patients are. 
## 
## That is so cruel to these great people working their ass of so others might live. https://t.co/jDbPCT4t0a</li>
##   <li>Just because you wear gloves to<span class='match'> the </span>grocery store to prevent<span class='match'> the </span>spread of #coronavirus , DOESNT mean your preventing it-you touch<span class='match'> the </span>cart, you touch<span class='match'> the </span>product, you touch your wallet, you touch everything- so you are spreading it-</li>
##   <li><U+0001F48A> #LALATE <U+0001F48A> #BREAKINGNEWS 
## #LA #Coronavirus Cases: #Hollywood and #Melrose Surge, 20 Deaths in County
## LIVE ▶<U+FE0F>▶<U+FE0F> https://t.co/JkzHNrUZXf
## "LA" "Coronavirus"
## "Exponential Threat"
## #CoronaVillains
## #CoronavirusOubreak 1</li>
##   <li>“Relatively young people <U+2014> age 30 through 50 <U+2014> often male, with little to no known past medical history are getting sick from this virus, getting intubated, [and] dying."
## 
## “Social distancing is not solely for protecting your grandparents.” https://t.co/HIulwS53pB</li>
##   <li>Hopefully an accurate "Are you immune to #Covid19" test will be confirmed soon. #HerdImmunity #Covid19UK #Covid19 https://t.co/vm9pETk0HI</li>
##   <li>The quintessential dilemma - in terms of style, should it be "coronavirus", "COVID-19", "Covid" or something else? I know that semantic consistency in external comms isn't exactly a priority at<span class='match'> the </span>moment but still</li>
##   <li>@Dyson is making 15,000 #ventilators to help fight #COVID19 in<span class='match'> the </span>#UK and elsewhere
## 
## https://t.co/R2L1syxHc6</li>
##   <li>Our #CharityOfTheYear needs your support! 
## Most of<span class='match'> the </span>funds generated from<span class='match'> the </span>@EmmausBurnley store goes to keeping<span class='match'> the </span>companions in a safe home. COVID-19 poses a significant risk as stores have had to close. Find out more: https://t.co/cdFMBXX8U8 #burnley #homelessness</li>
##   <li>@firozyehya @hussain_imtiyaz @JmuKmrPolice Decades of conflct hv made us to nt trust each othr bt ths is d time wen v shd wok hand in hand.#COVID19 hs taught us mny thngs,let it teach us to trust each othr.times r scary, presure is mounting, bt v each othr hv 2 shw compasion  empathy n as public v have to folow fr own gud</li>
##   <li>Looking for ideas for ministry during<span class='match'> the </span>#coronavirus crisis? Look no further:-) Click and find our 23 #church tested ideas from @tnbaptist churches! CLICK&gt; https://t.co/Jsrocmmg21</li>
##   <li>#covid19 #coronavirus #WuFlu per JHopkins', current cases US: https://t.co/e3fCKUrM28</li>
##   <li>Does @MOH_Kenya plan to release #COVID19 cases broken down by age and gender @KRabera</li>
##   <li>'Don't waste your time': Trump urges Pence not to bother calling Washington or Michigan governors https://t.co/6XA4NSI5Lw #News #Coronavirus via @dcexaminer https://t.co/fSOKbQit1G</li>
##   <li>The cross-agency collaborative called<span class='match'> the </span>Economic Rapid Response Taskforce has created a clearinghouse for businesses to better answer your COVID-19 related questions. #NMEcon https://t.co/5NnE1Avcjn</li>
##   <li>Keep Fresno Beautiful is committed to<span class='match'> the </span>safety and well-being of its staff and volunteers. We are closely monitoring<span class='match'> the </span>COVID-19 pandemic. In<span class='match'> the </span>interest of public safety and out of an abundance of caution, we have decided to suspend all KFB events until further notice. https://t.co/DaAkDVmNuN</li>
##   <li>Another great thread to read on COVID-19: https://t.co/0nX7DZDddB</li>
##   <li>My answer to How happy now is President Trump to make<span class='match'> the </span>USA number 1 in<span class='match'> the </span>world in<span class='match'> the </span>number of Corona virus COVID-19 infected 85,000 cases and rising? https://t.co/i5MsoQ5h4L</li>
##   <li>@JustDnoes Have you been tested?  The real question, in that ANY of us could have COVID-19 and be asymptomatic at present, should be "Is getting her stuff to Florida worth putting yourself and others at risk?"</li>
##   <li>The @EPA is telling Corporate America there’s no sheriff in town. Using COVID-19 as an excuse to not enforce pollution regulations will increase<span class='match'> the </span>health risks of all Americans, especially vulnerable communities. 
## 
## Amplify this message! #EPADoYourJob https://t.co/QKsK73ko7H https://t.co/qKWdg4L0NN</li>
##   <li>Great webinar last night with @jselingo @dianecamp6 @clark2college on College Search and COVID-19 - you can access<span class='match'> the </span>archive here #collegeadmissions https://t.co/hXTlDSl8G2</li>
##   <li>sejournal : Pinterest Introduces ‘Today’ Tab With Focus on COVID-19 Related Content via MattGSouthern: https://t.co/GfvAIhEQcr 
## 
## #SMM #SocialMediaMarketing #DigitalMarketing https://t.co/Zy7VPMOS7U (via Twitter https://t.co/WMZqQtYZAF) https://t.co/7HBfMtWFYY</li>
##   <li>'Insurance Companies Provide Covid-19 focused plans' a story by our PG students Hita Prakash and Prafula Grace for Deccan Herald
## 
## https://t.co/kTvXxkVElp</li>
##   <li>Via @rockoftalk “Updated worksheet for<span class='match'> the </span>#CoronaVirus Daily Tracker as of 4pm of 3/26/20
## The 3 Tabs are for<span class='match'> the </span>Following:
## -United States #Covid19 Stats Tracker
## -New Mexico Daily Tracker
## -State by State Comparison ranked by % of Tested Positive”    https://t.co/k7oN4GESwg</li>
##   <li>For all my single followers:  #coronavirus https://t.co/UhWU4SXLhR</li>
##   <li>WATCH: The women and men who may never become mums and dads due to #coronavirus.
## 
## Tonight on @itvnews at 10 I’ve been speaking to them about<span class='match'> the </span>devastation of having IVF cancelled, meaning some will miss their moment to conceive.
## 
## Thanks to all of them.
## 
##  https://t.co/X9kfnQkClO</li>
##   <li>Thank you @KarenAnnSantill and @CrossroadsRI for being on<span class='match'> the </span>front lines and ensuring that all Rhode Islanders have a safe place to stay during<span class='match'> the </span>COVID-19 pandemic. https://t.co/aookYYRqBB</li>
##   <li>Why is Georgia succeeding with<span class='match'> the </span>#Coronavirus where many Western countries are failing? https://t.co/Cq0DkHTQQj https://t.co/ZRFZEVIyuB</li>
##   <li>Sometimes in business it is not good to be sincere as long as you appear sincere. 
## #COVID19 #business #startup</li>
##   <li>https://t.co/oEq1EiL0NR Use Donor-Advised Funds to Support Community-Based Organizations During<span class='match'> the </span>COVID-19 Pandemic</li>
##   <li>GitHub Trending Archive, 25 Mar 2020, Python. J535D165/CoronaWatchNL, COVID19Tracking/covid-tracking-data, coronasafe/care, hexway/r00kie-kr00kie, crinny/b0mb3r, turicas/covid19-br, KalleHallden/BookOmatic, datasets/covid-19, xuannianz/EfficientDet https://t.co/S4keH86sKo</li>
##   <li>I wish<span class='match'> the </span>cops can use such force to fight corruption. What is role of @PoliceKE ? Protect &amp; serve or reign  terror. Is force meted out necessary @FredMatiangi @NPSC_KE . @MOH_Kenya will have more injury related case than covid 19</li>
##   <li>#LastingEffects of #SARSCoV2 #coronavirus 
## 2.  Less hand shakes means reduced likely hood of transmitting other diseases, less visits to<span class='match'> the </span>hospital and reduced healthcare costs. Will<span class='match'> the </span>elbow shake catch on? Cultural shifts in<span class='match'> the </span>works.</li>
##   <li>Don’t panic. This is almost certainly not reinfection. DNA amplification (PCR) tests could be falsely positive for #COVID19 if there’s lingering viral genetic material after<span class='match'> the </span>disease has subsided or from cross contamination in<span class='match'> the </span>lab. I’m not concerned. #CoronaUpdate https://t.co/jD6qEXBgM5</li>
##   <li>@GovCanHealth @CPHO_Canada This may be helpful to better screen people: https://t.co/PQlnkaBOxU</li>
##   <li>Bird lays off about 30% of workforce amid COVID-19 pandemic https://t.co/Epk7rinBRf</li>
##   <li>@heisyouknow_ @sportingintel Exactly. Fucking smug virtue signalling from a short sighted selfish UK electorate, already spreading their memes backing Boris despite his criminal negligence in dealing with COVID 19</li>
##   <li>#coronavirus Tip
## No "Chop-chop" in your written-during-the-pandemic script dialogue. Utterly f***ed-out. Also detectives named Jack.
## 
## "But 'Chop-chop' reveals character," you say. Well figure out a more interesting way.
## 
## ALSO - interviewees - quit saying "That's a good question."</li>
##   <li>I don’t drive &amp; if this was a campaign about environmental impact I might have some sympathy. However this is #CoronaVirus &amp; I can’t see any people risking higher transmission of #CoronaVirus.  
## This looks like dangerous over reach. #PoliceState #Authoritarian. https://t.co/zMQL8epQdY</li>
##   <li>"Coronavirus: US leads<span class='match'> the </span>world in number of confirmed cases" #Coronavirus @Haquesahebppji https://t.co/cDVKCqYJ05</li>
##   <li>COVID-19 and medical cannabis patients: What you need to know https://t.co/b5YVxTRLzz via @Leafly</li>
##   <li>@netflix bigmouthnetflix #covıd19 #quarantine #bigmouth #bubblebath #hormonemonster #hormonemonstress #netflix #quarantineandchill #conniethehormonemonstress @ Fort Wayne, Indiana https://t.co/A9XiP13a5G</li>
##   <li>Unhinged D-List Actor @MichaelRapaport Michael Rapaport (<U+26A0><U+FE0F> graphic language) rant about https://t.co/WmDk1AWCKQ President Trump including his young son Barron in unthinkable foul tirad #Quarantine this lame #coronavirus #COVID2019 #michaelrappaport #BREAKING your ears #Unhinged https://t.co/ixgMBxm5P3</li>
##   <li>This is<span class='match'> the </span>most important article I've read thus far regarding COVID-19. Essential insight into<span class='match'> the </span>past, present and future of<span class='match'> the </span>pandemic. https://t.co/6DjNBtJyFP</li>
##   <li>Look at these hypocrites clapping their hands when all along u wanted to sell<span class='match'> the </span>NHS off. All along u voted for NHS multicultural staff to go back where we came from NOW YOU WANNA CLAP FOR US???? BITCH PLEASE!!!! 
## #coronavirus</li>
##   <li>#USA #WashingtonDC #Coronavirus
## 
## A rapid test has been approved in<span class='match'> the </span>United States, which is intended to detect infection with coronavirus within a few minutes.  The test kits were evaluated by a mobile laboratory that was only about<span class='match'> the </span>size of a toaster and</li>
##   <li>Are grocery stores and pharmacies vectors for<span class='match'> the </span>coronavirus? https://t.co/YMiIPWlX0Z</li>
##   <li>Covid-19: Omar shares meme seeking essential services status for barbers https://t.co/9fRhUhk2Z1</li>
##   <li>How is everyone feeling about #POTUS #TRUMP #EO calling up 1M Military Reserves <U+0001F633> FOR USA 
## My fam is Military, something is up<U+0001F633>
## I don’t think it is JUST about #COVID19 #DeepStateCabal 
## #StayAtHome #coronavirus 
## #pray #PrayTogether <U+0001F64F><U+0001F3FC><U+0001F1FA><U+0001F1F8> https://t.co/KK9LpKMuz5</li>
##   <li>05-06) thoughts on<span class='match'> the </span>#clapforourcarers #SaglikcilariniAlkisla and<span class='match'> the </span>#coronavirus these days. may be a little #black yet #offensive https://t.co/sLZCcdgFmT</li>
##   <li>#breakingnews #remove #fake #nails #salon non #essentialbusinesses #nailtips #covid #coronavirus How to remove fake nails at home and more nail tips for coronavirus quarantine https://t.co/o2eZef3SYN via @nypost</li>
##   <li>Some people aren't committing to social distancing. Top worldwide brands are supporting<span class='match'> the </span>campaign.
## 
## #SocialDistancing #Corona #COVID2019 https://t.co/cij0n0EmKg</li>
##   <li>Turns out we don’t need to quarantine at all. COVID-19 can be stopped with essential oils and crystals! A girl on Instagram said so!</li>
##   <li>#Coronavirus #FightCOVID19 #India
## How<span class='match'> the </span>World is Drawing inspiration from India. Must Watch<U+0001F447> 
## https://t.co/v0rGgR13HJ</li>
##   <li>Expert in Cuba points home as a barrier to fight Covid-19 https://t.co/3qXo6L0chV</li>
##   <li>Please @NYGovCuomo make sure any early release prisoners are either quarantined for 2 weeks or tested for #COVID<U+30FC>19  ! We have to stop<span class='match'> the </span>spread ! Thank you ! #testcovid19 #manditoryquarantine</li>
##   <li><U+2066>@sidneychoccy<U+2069>
## Coronavirus (COVID-19): advice for people with animals - https://t.co/vlsOFm4uBz https://t.co/T8wA5PkOAr</li>
##   <li>@channelstv Why dem close market? 
## Are they sending groceries to residents? 
## #Covid_19 #COVIDIDIOT</li>
##   <li>Stocks fall as US Covid-19 cases overtake China https://t.co/1BRC84MD1d https://t.co/inezyVRtTv</li>
##   <li>Covid-19 teaches us that we are all global citizens connected by a single virus that recognises none of our natural or man-made diversity: not<span class='match'> the </span>colour of our skin, nor our passports, or<span class='match'> the </span>gods we worship. For<span class='match'> the </span>virus, what matters is<span class='match'> the </span>fact of our common humanity.#mathia</li>
##   <li>Here is some happy thoughts about COVID-19 for Friday amid all<span class='match'> the </span>depressing news. https://t.co/6R1AgATrw3 #covid19 sort of #funfriday https://t.co/DuXMYTthad</li>
##   <li>There always has to be that one guy who ruins it for everyone. #COVID19 #coronavirus https://t.co/xVRpVGX220</li>
##   <li>#NHSCovidHeroes why on earth has #PrinceCharles been given a covid 19 test and yet there’s working heroes frontline who can’t access tests?!</li>
##   <li>@erniehardeman Please explain how you are going to prevent<span class='match'> the </span>spread of #COVID19 when you are allowing 50K migrant workers into<span class='match'> the </span>country.They won’t quarantine and they won’t social distance.Where will<span class='match'> the </span>oversight and enforcement come from? Farmers are in it for<span class='match'> the </span>money,they won’t comply</li>
##   <li>All things being equal, I should be getting ready to rub<span class='match'> the </span>legs and crack<span class='match'> the </span>backs of some hairy footballer’s in Galway around about now but COVID-19 has put paid to that. I miss football  #DeTown</li>
##   <li>Today’s lunch time. I thought about working out lol. #stayhome #covid19 #fortworth #texas #817 #homegym #lift @ Fort Worth, Texas https://t.co/EiXLaw22Hh</li>
##   <li>'This isn't something you want to get': Saskatoon man details what it's like to get sick from COVID-19
## https://t.co/6KE843bbHx https://t.co/eS47psjvIc</li>
##   <li>COVID-19 (Coronavirus) PTA Resources - Family Resources | National PTA: https://t.co/HfKqohJPc1</li>
##   <li>Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/bjg7xRv3Fk</li>
##   <li>Google is offering up its own stimulus package to advertisers https://t.co/KT8dPwXxqB</li>
##   <li>How has your medical team been using #telehealth in<span class='match'> the </span>wake of #COVID19?  
## Learn more about modmed Telehealth at https://t.co/4foJirsaY4
## 
## *modmed Telehealth is a feature of Modernizing Medicine's #EHR software, EMA.</li>
##   <li>#Trump could be heading for genocide of his own people because they failed to act. Even now they’re dithering.
## He &amp; his government could have prevented this!
## Why didn’t they? It all boils down to <U+0001F4B0><U+0001F4B0><U+0001F4B0>above lives. <U+0001F621><U+0001F621><U+0001F621>
## 
## I’m aghast. <U+0001F62A>
## 
## #iCOVID19 #COVID19usa #POTUS #Coronavirus https://t.co/4YbngKr7dx</li>
##   <li>If Covid-19 didnt fuck things up, i would be drunk at MMP right now</li>
##   <li>Dark clouds emerges #Covid__19 k9 scanning........central fusage ejected.....Thunder, lightning....... https://t.co/EJM0GpFZow</li>
##   <li>I'm having a rave with my #kittys #meow Charlie says <U+0001F37B><U+0001F923><U+0001F923><U+0001F923><U+0001F923>#bored #COVID19 #COVID_19uk #funny #rave #cats https://t.co/SZUdrgjVmL</li>
##   <li>Israeli siege imposed on Gaza increases<span class='match'> the </span>suffering every day. Is there who hears their suffering? #SaveGazaFromCorona #COVID_19 #Act4Palestine https://t.co/p8DUQ5EHqA</li>
##   <li>We hope<span class='match'> the </span>Susan B. Anthony list uses their nifty new Lancet access to read all<span class='match'> the </span>papers that say ABORTION IS SAFE. #ChooseHope #coronavirus</li>
##   <li>@louanity Well sneezing isnt reely a covid 19 thing its just normal your fine</li>
##   <li>Probably not doing my #COVID19 pneumonia and other health problems any good, but am VERY angry looking up how many 1000s of people in<span class='match'> the </span>UK die each year from: car crashes, smoking, alcohol abuse, domestic violence etc and this Tory government has slashed<span class='match'> the </span>#NHS for TEN YEARS.</li>
##   <li>Because @realDonaldTrump didn't prepare he's now suggesting doing drug testing on  Americans who are 'dying' from #COVID19 &amp; use them as Guinea pigs! 
## #TrumpKnewDidNothing</li>
##   <li>Even cats can do it.
## 
## #coronavirus #COVID2019 #SocialDistance https://t.co/CWDBrulFFB</li>
##   <li>“We need to stay connected, even though we are social distancing,” says Dr. Bonnie Henry. #bcpoli #COVID19 #coronavirus</li>
##   <li>Friends I realised why economic, Political &amp; centers of China is not effected from COVID-19
## #BoycottChineseGoods #IndiaVsCorona #India @PMOIndia @narendramodi @AmitShah @News18UP @ANI @timesofindia @PTI_News</li>
##   <li>If this is so recent... well, 1) Rihanna still hasn't forgot how to sing somehow 2) it's disaster cuz it means only covid-19 quarantine made Rihanna go back to studio... we doomed lol</li>
##   <li>Plz join with @WHO #SafeHands<U+00A0>challenge! Hand washing is one of<span class='match'> the </span>vital precautions to stay safe from  #COVID19. My humble request @KChiruTweets  @pragyanojha @pranabpdas @awasthis @dr_maheshsharma to join<span class='match'> the </span>#SafeHands<U+00A0>challenge &amp; plz share a video. #StayHomeSaveLives https://t.co/HUxC46V0Om</li>
##   <li>This week, designers created objects and structures to help fight coronavirus "
## 
## This week on Dezeen, Carlo Ratti designed an intensive care unit for Covid-19 patients from shipping containers and Dyson prepared to provide 15,000 ventilators for<span class='match'> the </span>NHS.… https://t.co/LNTxzBaFtJ https://t.co/zKBM2OKYKN</li>
##   <li>I really wish I hadn’t skipped my hair appointment when I had it a few weeks ago. 
##  #coronavirus #CoronaLockdown https://t.co/dHJ7onTdK9</li>
##   <li>[New blog] The role of #HR #technology in light of COVID-19: A letter from Leoforce https://t.co/haKINOBpHx https://t.co/eRLpjSrfq8</li>
##   <li>COVID-19: Sound Sultan Gets Creative, Holds Album Listening Party On Instagram Live - https://t.co/2YxqQ4R1Df https://t.co/grJR0QLoJV</li>
##   <li>Capitalism Has its Limits:
## 
## Judith Butler discuss<span class='match'> the </span>COVID-19 pandemic, and its escalating political and social<U+00A0>effects in America.
## https://t.co/svjeD6h3Fh</li>
##   <li>I fought boko haram while naked so am scared of #COVID19</li>
##   <li>An awful lot of people have little understanding of:
## A/ risk and what it means to minimise it
## B/ how minimising #COVID2019 requires us *all* to accept we have our part to play
## C/ The guidance is so simple yet not to be followed. #StayHomeSaveLives https://t.co/pyQgBV5O9Q</li>
##   <li>#Joke by Anders1984. This is a well thought out joke. #coronavirus https://t.co/sVOTyeIhcF</li>
##   <li>i cant get his d word inside my a word cause of this quarantine and covid-19. i literally hate it here sm</li>
##   <li>Glad to see this leadership from @bcbcgreg , @jockfinlayson , and everyone at<span class='match'> the </span>@BizCouncilBC.
## 
## https://t.co/zI4Jhm83fM https://t.co/zXdme0jSKJ</li>
##   <li>60% of<span class='match'> the </span>health facilities in #Yemen went out of service due to direct targeting by US-Saudi airstrikes, which killed many patients. You can imagine<span class='match'> the </span>catastrophe if Saudi was able to enter #Coronavirus to #Yemen! #5YearsOfWarOnYemen https://t.co/jNhBuwoKA9</li>
##   <li>Some of you still think this a a joke or just a flu <U+0001F912>? People are dying everyday, why can’t y’all stay at home, forget about going to<span class='match'> the </span>beach etc. Look at Italy <U+0001F1EE><U+0001F1F9> <U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D> 919 people died. This sh*t is real. Stay at home please #COVID19 #StayAtHomeAndStaySafe #Italy https://t.co/1dIqTMPv4U</li>
##   <li>Heartened today by @UnitedWay of Illinois &amp;<span class='match'> the </span>Alliance of Illinois Community Foundations coming together to launch<span class='match'> the </span>Illinois COVID-19 Response Fund, a statewide fundraising effort to uplift nonprofits that support Illinoisans who have been impacted by this pandemic. https://t.co/82CyRHbvM2</li>
##   <li>CA Bridge Report: Supporting Hospitals and MAT in<span class='match'> the </span>time of COVID-19 - https://t.co/n3YEKULIz5 https://t.co/4yRFBqrEc2</li>
##   <li>@mekus102 @Amakaokolidd @denniso_igbin Oga.
## 
## Ees like you want me to send COVID-19 commandos to your house ba? <U+0001F928></li>
##   <li>@Junichi_Masuda Hope you like it. I have 100+ medallions. https://t.co/SVPRdt3lRI #starmie #staryu #rainbow #mandala #logo #patterns #love #COVID19 #pokemon https://t.co/G8YEmgLxgf</li>
##   <li>I am hosting a virtual Town Hall on #COVID19 this Saturday at noon. Visit<span class='match'> the </span>Facebook event page for details on how to participate and submit questions: https://t.co/4S7XKYqt6Z</li>
##   <li>BREAKING: 3rd person dies of virus in state; gov announces $116M plan to support health care providers. Full story: https://t.co/335P6nWzRg https://t.co/DKYloiGivg</li>
##   <li>Boxing gyms have been hit hard by COVID-19 shutdowns - The Ring https://t.co/0YZgtVRieG #Boxing @oysterbaybomber</li>
##   <li>Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/ZHe8wTcVm9</li>
##   <li>@ashokpathak1604
## Sir, today's guidelines regarding COVID-19 pandemic are much appreciable, I have no words to thank u for ur compassion towards our BOI Staff.
## @mkg_boi @amandilwar 
## #IndiaFightsCorona 
## #Proudpublicservant 
## #StayHomeStaySafe</li>
##   <li>B.C. egg, chicken farms facing down challenge of COVID-19 https://t.co/IjglljN44w</li>
##   <li>The Infowars app sold products like supplements and protein powder, broadcast The Alex Jones Show live, and posted videos and articles from Jones and others.”
## #COVID<U+30FC>19
## #MurderForProfit
## #WealthOverHealth</li>
##   <li>Look guys it's not ideal for everyone<span class='match'> the </span>shutdown but if it saves lives and slows<span class='match'> the </span>growth of this f#@%ing disease #COVID19. 2 weeks is not a lot to ask and will be 100% worth it let's all do this together #proudtobeirish <U+0001F1EE><U+0001F1EA><U+0001F4AA><U+0001F4AA>  #LetsDoThisTogether</li>
##   <li>Top story: Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/NA0iq36xBZ, see more https://t.co/aIHishjAHg</li>
##   <li>Selling in COVID-19: How to Talk to Prospects in<span class='match'> the </span>Bleakest of Times https://t.co/6kAJzCsRXW https://t.co/IJPJYaJ6zz</li>
##   <li>These are real people imprisoned for cannabis that are at risk during this #COVID19 pandemic  #cannabisjournalism https://t.co/vMcMfdHjtf</li>
##   <li>How can you support<span class='match'> the </span>travel industry?
## 
## 1. Postpone your trip but NOT cancel it
## 2. Buy a travel certificate for your future travel plans
## 3. Support them on social media
## 4. Refer business to them
## 5. Send your love &amp; thank you notes!
## 
## #covid-19 #covid19 #coronavirus https://t.co/FY1Ms41Sqr</li>
##   <li>Provide feedback on problems faced by people due to COVID-19 outbreak: PM tells RJ 
## https://t.co/NLn9JfDBvJ
## 
## via NaMo App https://t.co/4sAvgveGuk</li>
##   <li>If there is a baby boom in 9 months...it'll consist entirely of first born kids! <U+0001F62C>
## 
## #coronavirus #CoronaLockdown #WorkFromHome</li>
##   <li>Manufacturing #virus as #bioweopon is 10000 time more difficult than making vaccine. US and EU are struggling to make #vaccine for #COVID19. As time passes hope is bcming dimming &amp; economic collapse bcm inevitable. China will rise leader if not as superpower
## @Praecursator007</li>
##   <li>Our nation Clapped for our @NHSuk to thank them for everything that they are doing for us and everything they always do for us! #thankthenhs #nhs #thankyounhs #covid19 this will be<span class='match'> the </span>hardest time for our planet, we need to appreciate those who help us https://t.co/A9bL1QeVB0</li>
##   <li>@anyaparampil Me trying to figure out what #Venezuela has<span class='match'> the </span>United Atates May need/want to pull a  #Noriega in<span class='match'> the </span>middle of a damn #pandemic 
## 
## #TrumpMadness #TrumpVirus #TrumpRecession #TrumpVirusCoverup #TrumpIsTheVirus #TrumptheWorstPresidentEVER #coronavirus #COVID19 https://t.co/tHetp8mDAx</li>
##   <li>If your employer says you’re being ‘#Furloughed’, this means they’re using @GOVuk's new '#CoronaVirus Job Retention scheme' <U+0001F4BC>
## You can read more about<span class='match'> the </span>scheme on<span class='match'> the </span>@CitizensAdvice website
## https://t.co/9ltojYG3KW https://t.co/hCrAF0bUu9</li>
##   <li>@paanagam @Thiraivimarsaga That’s going to be after #COVID19 Chaos... for that people have started money now...</li>
##   <li>Epidemiologist Behind Highly-Cited #Coronavirus Model Drastically Downgrades Original 2.2 Million US &amp; 500,000 UK Death Toll Projection | Oxford professor suggests fewer than 1 out of 1000 infected become ill enough to require hospitalization. #COVID19 https://t.co/6hkffMl2IS</li>
##   <li>#BREAKING: Governor Andrew Cuomo says deaths from<span class='match'> the </span>#Coronavirus are up from 385 to 519 in New York State, that’s 134 new deaths. #BreakingNews</li>
##   <li>@kumar856 That's why china influenced #WHO to change its name from Chinese #WuhanVirus to #COVID19</li>
##   <li>Am commending<span class='match'> the </span>#NEWS @tvcnewsng @channelstv @CNN and a few others for given we<span class='match'> the </span>people an update on this deadly #COVID19. I pray may God help us all. #StayAtHomeAndStaySafe #StaySafeNigeria</li>
##   <li>Today #NYC #COVID19 https://t.co/7OmIGhiwD8</li>
##   <li>BARDA: Athersys' Cell Therapy “Highly Relevant” for COVID-19 https://t.co/bosApC3MSU https://t.co/GaIMOxQDgp</li>
##   <li>Coronavirus: US becomes first country to surpass 100,000 cases #Coronavirus https://t.co/xnpyhdJpW2</li>
##   <li>Robert E. Kelly <U+2014> and his rambunctious kiddos <U+2014> returned to TV to offer some much needed comedic relief during<span class='match'> the </span>COVID-19 pandemic. https://t.co/SPM0QgHroP</li>
##   <li>#BREAKING #COVID19 Just passed<span class='match'> the </span>100K Mark in<span class='match'> the </span>US https://t.co/Wc6BUARx17</li>
##   <li>I hate quarantine. I have no structure in my day to day life without going to school. I cant focus myself enough to get this shit done. Fuck COVID-19!</li>
##   <li>North Carolina now has more than 760 cases of COVID-19, including one staffer at<span class='match'> the </span>federal prison complex in Butner. Two more Granville citizens have tested positive. 
## https://t.co/fD2OMTiGqd</li>
##   <li>Bill Gates: Trump's plan to reopen<span class='match'> the </span>country 'will not work' https://t.co/S4CoggyW19</li>
##   <li>The multiplier effect of<span class='match'> the </span>Chioma case will definitely increase<span class='match'> the </span>#Covid19 in Nigeria. Days ago, she was at a party.</li>
##   <li>What we're all doing in isolation. #COVID19 #AnimalCrossing #ACNH #NintendoSwitch #isolation #lockdown https://t.co/nr3UyaNt11</li>
##   <li>“Everything that happens only once can never happen twice. But everything that happens twice will surely happen a third time.” (Paul Coehlo). 2008 crisis and Covid-19. Prepare for<span class='match'> the </span>next disruption!
## #Galaxies #AgileManagement #Management #Leadership https://t.co/I2m1kvTcq5</li>
##   <li>Rihanna Donates Personal Protective Equipment to New York for COVID-19 Outbreak https://t.co/Fg7IjXOc7d</li>
##   <li>Global community/government already did have a chance: WHO
## 
## WHO =World Health Organization 
## 
## It said on January 14th that #coronavirus wasn't a problem.  
## 
## #COVID2019 #COVID<U+30FC>19 #coronavirus #COVID19 #WuhanVirus #WuhanFlu https://t.co/s6UxgrlcX8</li>
##   <li>The provincial government announced some big changes Friday as<span class='match'> the </span>number of confirmed COVID-19 cases rose to 542 in Alberta. https://t.co/x8goSxZRnU</li>
##   <li>...not everything.
## 
## #Lockdown21 #COVID2019 #ChineseVirus19 #IndiaBattlesCoronavirus #QuarantineLife #StayHomeSaveLives https://t.co/N3HYQyC1oJ</li>
##   <li>House erupts after lawmaker’s COVID-19 speech goes totally off<span class='match'> the </span>rails (We will not be silenced!) https://t.co/Hwon4V1gLL</li>
##   <li>What<span class='match'> the </span>f***?!
## #COVID19
## #CoronaLockdown https://t.co/CQtmISBj7N</li>
##   <li>@abcnews One day of marginally lower number this early is hardly pointless
## The infectious nature of #COVID2019 =<span class='match'> the </span>#Contagion will spread far &amp; wide while population mobility happens.
## #StayHomeAustralia #StayHomeSaveLives</li>
##   <li>My life is nothing but a monster set of nested if-then-else statements and it boggles my mine when people don’t approach things in<span class='match'> the </span>same way. The development of<span class='match'> the </span>skills to apply a simple deductive reasoning in any situation is sorely missing in our curriculums. #COVID19</li>
##   <li>Covering<span class='match'> the </span>Blue needs you. So many officers &amp; K9s wounded/injured lately, not to mention<span class='match'> the </span>#coronavirus. If you can help, please contact us. #CoveringtheBlue #liftinguplawenforcement</li>
##   <li>ICYMI: We had a fantastic Grand Rounds this morning with Pulmonary/Critical Care experts from #MGH, @BIDMChealth, and @BrighamWomens discussing<span class='match'> the </span>respiratory aspects of #COVID19. You can watch it here: https://t.co/M6XoXDexWF</li>
##   <li>Ford Strikes Back At Coronavirus By Restarting Production. These are<span class='match'> the </span>plants COVID-19 won't stop. #covid19 #industrynews #trucks Read: https://t.co/iCRL8DA0ay https://t.co/R0wQ9O4zrx</li>
##   <li>When you hit<span class='match'> the </span>blunt too hard and dont want to cough because of COVID-19 https://t.co/0gOU2Vkzvd</li>
##   <li>Video: Santa Monica Pier sits completely empty amid COVID-19 pandemic | ABC News
## https://t.co/ukhBo9PRLF</li>
##   <li>@BorisJohnson What now? Statutory sick pay? 94.25£ per week? #COVID19</li>
##   <li>We’ve welcomed<span class='match'> the </span>‘positive intent’ of<span class='match'> the </span>#selfemployment #coronavirus package announced by<span class='match'> the </span>Government. It will provide reassurance to many. But<span class='match'> the </span>detail is key for those in London that account for around 20% of<span class='match'> the </span>UK’s self-employed. Our CEO @RichardDABurge has (1/2) https://t.co/hGLGMK8Teq</li>
##   <li>@AirCanada  @AirCanadaRouge #acft parked at #yyz @TorontoPearson on taxiway waiting for #COVID19 to be beaten. #stayhome #avgeek https://t.co/w8366aW1iJ</li>
##   <li>#CISO's must consider #COVID19-related ramifications on a large scale and not lose sight of #cybersecurity roadmaps, which actually simplify #WFH choices. https://t.co/j5wT6mDjZH https://t.co/AXiH3uVmtV</li>
##   <li>No evidence against #Ibuprofen in #COVID-19 infection https://t.co/zzqmY0q0AQ</li>
##   <li>If Baudrillard is correct then Covid-19 is actually a computer virus ;)</li>
##   <li>The past few weeks have been tough for a lot of people, but it's also been a time of kindness, where people are donating their time, money and resources to others without hesitation.
## #kindness #reno #biggestlitlecity 
## https://t.co/4M1oR1a6Md</li>
##   <li>@cincykids Just like everything else we won't take it seriously until it hits us personally. The lagged response time allowed us to witness how fast a pandemic can spread concealed within<span class='match'> the </span>everyday flow of our globalised ecosystem. 
## 
## #Covid19
## 
## https://t.co/mVrYjtEJu1</li>
##   <li>@AskAnshul Muslims are more threat to our country. majority of infected and effected Covid-19 cases are from Muslim community. https://t.co/NYdF0dU2To</li>
##   <li>Community transmission in Pakistan. 
## '10pc of Covid-19 cases in Sindh are locally transmitted': CM Shah sounds alarm https://t.co/TsbGYrI4oC</li>
##   <li>President Nana Akufo-Addo gives his fourth update to Ghanaians on<span class='match'> the </span>country's fight against COVID-19. Watch on Citi TV's Facebook page here: https://t.co/PlcZTsSQwi</li>
##   <li>It’s devastating we need this because<span class='match'> the </span>#TrumpVirusCoverup wouldn’t acquire testing in time for<span class='match'> the </span>prevention of this crisis. Thanks to our Nationa Guard for their tireless work. Terrified for our healthcare workers who are fighting #coronavirus w/out proper protection https://t.co/UITbrb3XL9</li>
##   <li>Live look at my house until #coronavirus is gone https://t.co/ao5bYGKpue</li>
##   <li>And if I were Bill Gates here's how much I would spend to combat COVID19: $50 billion https://t.co/xIgtMaL7wC</li>
##   <li>@ZiyanJunaideen @TheGrumpyLankan @DulithHerath It's not China virus <U+0001F611> it's coronavirus or Covid-19</li>
##   <li>Even amid #Coronavirus pandemic outbreak &amp;<span class='match'> the </span>increasing death toll,<span class='match'> the </span>US continues its full blockade on #Yemen and its sanctions on #Iran!!
## Isn't this inhumanity enough to prove whose<span class='match'> the </span>real criminal behind developing #COVID19? #5YearsOfWarOnYemen https://t.co/g7TZjynB1p</li>
##   <li>@Cajunwealth @JoeBiden He’s really saying if you don’t bow down to me and praise me, then you and your state will suffer. People with #COVID19 will lose their lives with this attitude. National embarrassment and very sad.</li>
##   <li>Pinterest provides some tips on how brands should approach promotions amid<span class='match'> the </span>COVID-19 pandemic https://t.co/sA6YT8KAPs</li>
##   <li>13 years from now gonna be a ton of #Quaranteens running around.
## 
## #CoronaLockdown #COVID19
## #dadjoke
## 
## https://t.co/K1KpsQCTr3</li>
##   <li>@BaneleRadebe7 Stay safe from this Covid-19 my angle. God bless.<U+0001F493></li>
##   <li>Where is Nigel? #COVID19</li>
##   <li>Something to get ur mind off #Covid19. No matter how much u Rewatch this, u still get<span class='match'> the </span>same reaction <U+0001F923><U+0001F602><U+0001F92A> Goodluck! https://t.co/LE9grJqc5I</li>
##   <li>COVID-19: City of Vancouver to provide update on coronavirus impacts https://t.co/FkqDtlqdnm</li>
##   <li>If you are feeling hopeless about<span class='match'> the </span>Covid-19 situation right now, my header will surely brighten your mood. Check it.
## #CurfewKenya</li>
##   <li>David Walsh creator of MONA always a unique perspective -here’s his statement about COVID-19  #closingMONA #CultureinQuarantine   https://t.co/YVNxCjQgyG  @monamuseum</li>
##   <li>How hackers are using COVID-19 fears to push new scams and malware https://t.co/aGa3kT3DjO https://t.co/SCjmgFNqTj</li>
##   <li>Public gyms are being asked to either scale down or cease their operations, as<span class='match'> the </span>gov't continues to implement restrictions in a bid to contain<span class='match'> the </span>spread of COVID-19 across<span class='match'> the </span>island  
## https://t.co/KwawLvsOgo</li>
##   <li>@Poundland I am self-isolating and my manager wants to give me a week paid holiday while I'm not on holiday! I don't want to waste my holiday!
## What should I do? I am sick with<span class='match'> the </span>symptoms of #coronavirus</li>
##   <li>Washington Gas is proud to announce our new campaign #PositiveEnergy! We want to thank YOU<U+2014>the unsung heroes who are working on<span class='match'> the </span>front lines during<span class='match'> the </span>#COVID19 crisis. From educators to delivery workers, join us to say thank you and help send some #PositiveEnergy to others. https://t.co/9chmKhQp5R</li>
##   <li>@LizRNC @nytimes This is true only if you believe<span class='match'> the </span>liying communist Chinese government. #COVID19</li>
##   <li>How many tests for COVID-19 are being performed around<span class='match'> the </span>world? https://t.co/22wyCi7Tb1 https://t.co/PpHEQtX9Mi</li>
##   <li>Oliphant said Global Affairs has gone from an average of 6,000 consular cases per year to hundreds of thousands during<span class='match'> the </span>#COVID19 response. He credits DM Marta Morgan for making<span class='match'> the </span>department more nimble and public facing than ever. #cdnpoli #cdnfp</li>
##   <li>@LHSummers This is how to recognize<span class='match'> the </span>people for whom it is safe to go back to work. https://t.co/GLFqClAkIV</li>
##   <li>Scomo just announced that<span class='match'> the </span>10 second rule doesn’t apply unless you’re at K-mart on a Tuesday arvo. Or you’re observing<span class='match'> the </span>new 6 second rule. #scomo #auspol #covid19 #coronavirusaustralia #corona</li>
##   <li>Does #coronavirus know about this march 29th 7:02 pm deadline? https://t.co/9xMpmYTrzP</li>
##   <li>At least everyone’s weekends suck now, not only #entrepreneurs. We never had any. Happy Friday! 
## 
## #COVID19 #TGIF #CoronaLockdown #startup #founder #CovidBroke</li>
##   <li>@harrisonlowman @TheAgenda Thanks for<span class='match'> the </span>shout-out, @harrisonlowman. You guys @TheAgenda are doing a great job keeping Ontarians up-to-date with accurate and concrete information about #COVID2019. Please remind everyone to #StayHome if they can and stay safe.</li>
##   <li>First Vancouver community centre opens to protect homeless from COVID-19 https://t.co/NlSv63oB0W</li>
##   <li>@MikeTaylorShow Hey Mike!  Don't forget, according to Clay, more people die every year on<span class='match'> the </span>road ways than Covid 19. So stop your bitching.  (sigh)</li>
##   <li>@WHOPakistan @UNICEF this is true #Pakistan
## #Peace #loving #caring and #fighter
## #COVID2019 #Covid_19 https://t.co/zBAcpYemLq</li>
##   <li>@KatyTurNBC It looks like a cure for #COVID19</li>
##   <li>Local Twitter: For 10 years, I've been working with<span class='match'> the </span>Ardmore Food Pantry to help deal with food insecurity on<span class='match'> the </span>Main Line -- COVID-19 is making our job harder and putting more in need.  Please support us if you can.  https://t.co/P7S7gfM3dV</li>
##   <li>Latest figures for #coronavirusitalla dispiriting. Surge in new positives in Lombardy lifts<span class='match'> the </span>national increase to 6153:<span class='match'> the </span>highest rise since Saturday. Numbers in hospital up 6.6% in a day. #COVID19 #italy #Italia</li>
##   <li>‘Times are tough’: Residents flock to pop-up food bank in Santa Rosa amid COVID-19 crisis https://t.co/R9QNUk2bLJ</li>
##   <li>Vogue Arabia pays tribute to all<span class='match'> the </span>medical staff and healthcare workers in Lebanon fighting<span class='match'> the </span>battle against Covid-19, with an exclusive portfolio. These are their stories. #StayHome https://t.co/54f4vTOQic</li>
##   <li>NC House Select Committee on #COVID19 will not hold in-person public comment due to current health conditions. Committee instead invites remote participation by sending suggestions &amp; concerns through comment portal: 
## https://t.co/t37Y3qezQ0
## 
## @ncIMPACTsog @uncsog</li>
##   <li>Larry Rasky, long time Biden aide, died of coronavirus- see his recent  Twitter feed #COVID19 https://t.co/Ahsg34BDja</li>
##   <li>Great for you @brikeilarcnn !!! I wish<span class='match'> the </span>rest of<span class='match'> the </span>media would not accept<span class='match'> the </span>bullshit coming out of<span class='match'> the </span>White House. Keep up<span class='match'> the </span>great work!!  #couldahadyang #YangWasRight #COVID2019 https://t.co/sSVDCJqfln</li>
##   <li>Two Saskatoon correction officers test positive for COVID-19 #yxe https://t.co/3QdT2iGqOD</li>
##   <li>@Wavinya_Ndeti @Asamoh_ Yes madame Governor, What measures have you put in place to safe your Machakos people from #COVID19, as their Governor? And are working hand in hand with MOH to reinforce your efforts ?</li>
##   <li>Dr. Birx Claims Trump Is ‘Attentive to<span class='match'> the </span>Scientific Literature and<span class='match'> the </span>Details’ of Covid-19 https://t.co/8fWrOKKUOd https://t.co/DkJf0bInBx</li>
##   <li>'Vaccines won't work': US virologist breaks down COVID-19, how to curb s... https://t.co/FlcwDu5XGM via @YouTube</li>
##   <li>Any nose <U+0001F443> or mouth <U+0001F444> here<U+0001F637>??
## Ladies your overgoing your flexibility limits
## Less fight Covid-19..cover your nose and mouth...leave breasts alone we shall see them later<U+0001F602> https://t.co/CWucdtBbXt</li>
##   <li>"Coronavirus: US leads<span class='match'> the </span>world in number of confirmed cases" #Coronavirus https://t.co/ne5UHsaQ6t</li>
##   <li>Hear @GovAndyBeshear's daily #COVID19 update for Kentucky today at 5 on @840WHAS &amp; https://t.co/PsGI0GRrPj. https://t.co/sjX9O78wg1</li>
##   <li>Updated COVID-19 area briefs:
## 
## https://t.co/wEVeoVsL7s</li>
##   <li>Head of TSA workers union  in Knoxville, is ill and had contact w/ man who tested positive for COVID-19. 
## 
## However, he still cant tested - @tatecurtis has<span class='match'> the </span>story https://t.co/84AYUgEc5o</li>
##   <li>I am now an #MBRUCommunityImmunity Ambassador. I am responsible to protect myself and my community from #COVID-19. https://t.co/2e5qNPEhbL</li>
##   <li>@MENnewsdesk One thing #COVID19 has taught me is that there really are selfish c###$ out there <U+0001F92C></li>
##   <li>Stupid kenyan police teargas citizens unprovoked,shoot in<span class='match'> the </span>air and clobber them carelessly,people run over each other,hold and touch one another and falling over,coughing and yelling,is that not aiding in<span class='match'> the </span>spread of corona #COVID19 while enforcing #CurfewinKenya</li>
##   <li>Covid-19 isn't a joke guys<U+0001F62D><U+0001F62D><U+0001F62D></li>
##   <li>The county’s total is now at 93 cases of COVID-19. https://t.co/oQGwwjPzSI</li>
##   <li>Times like this is when I don’t understand why we don’t pay our scientists and healthcare workers like professional athletes #pandemia #COVID2019</li>
##   <li>Is it just me or does anyone else hear Waylon Jennings singing<span class='match'> the </span>Dukes of Hazard theme whenever they talk about flattening<span class='match'> the </span>curve? #COVID19</li>
##   <li>@profplum99 @mattwridley Per usual, beat<span class='match'> the </span>curve. Viruses aren't. Those potentially crafting them are. #COVID19
## #coronavirus
## 
## https://t.co/qBRM6EjdiS</li>
##   <li>The worst part about having a profile that celebrates actively contracting a potentially deadly disease is that I can't say shit to people acting unnecessarily recklessly during a pandemic.
## 
## #hypocrite #covid19</li>
##   <li>#ICYMI: Sencorp modifies thermoforming machines for face masks during #COVID<U+30FC>19.  Learn more: https://t.co/1o72ttEvym https://t.co/4muDYJDy3X</li>
##   <li>Someone I know thinks it’s no big deal to “have a few friends over” during<span class='match'> the </span>Washington State “stay at home” order.
## 
## Please, tell me what your thoughts are, and be blunt.  #COVID #Covid19usa #coronavirus</li>
##   <li>How do you "Stay Home, Stay Healthy" without a home? Here's how @LIHIhousing is keeping<span class='match'> the </span>homeless healthy in #Seattle via @theappeal https://t.co/pVODrRne2x by @jaywillis</li>
##   <li>These grants will address<span class='match'> the </span>anticipated food and essential supply needs -- and they're also helping kids with childhood cancer. https://t.co/QaI2ZrqUG0</li>
##   <li>To prevent infection and to slow transmission of COVID-19, do<span class='match'> the </span>following:
## 
## Wash your hands regularly with soap and water, or clean them with alcohol-based hand rub.
## Maintain at least 1 metre distance between you and people coughing or sneezing.
## Avoid touching your face. https://t.co/p2JDCsu55b</li>
##   <li>Can we get this put on<span class='match'> the </span>t-shirt! “At some point a library is going to save your ass,” Brixey says. “As long as you keep a library central to your life, you will always see how relevant it can be.” HT @ALALibrary  https://t.co/TthhqfRtiv</li>
##   <li>I just miss my mom like yeah we FaceTime and text but like I want to give her a big hug so please #COVID19 go away come back another day</li>
##   <li>@MBuhari I believe Nigeria Govt can do better if we can make effective use of<span class='match'> the </span>relief funds and do away from corruption in any forms
## #covid-19
## @NCDCgov 
## @NGRPresident 
## @NGRSenate 
## @HouseNGR 
## @kwaragovt 
## @IlorinInfo</li>
##   <li>Global confirmed COVID-19 cases top 500,000: Johns Hopkins University - People's Daily Online https://t.co/DdLO2qKXCQ</li>
##   <li>“We know that when emergencies hit, women and girls come last.” @CARE releases recommendations for health services delivery actors, NGOs, national governments, and international donors on how to mitigate<span class='match'> the </span>disproportionate #gender impact of #COVID19. https://t.co/z79msUhQO8</li>
##   <li>Coronavirus: NSW reports 212 new cases of COVID-19 in 24 hours https://t.co/OBDvdKuEYI via @skinnergj - CRNews</li>
##   <li>I’ve not refreshed this tab for a couple of days or so. Frightening. #covid19 https://t.co/FpKNtjJJop</li>
##   <li>Coronavirus: India 'super spreader' quarantines 40,000 people   - all down to ONE preacher #COVID19  https://t.co/wWaVPVZMHN</li>
##   <li>5G’s potential shines amidst COVID-19 pandemic - https://t.co/XWbWRmPXlf #5G</li>
##   <li>@NicolaSturgeon Can I ask why you are allowing Covid-19 to be recorded as a cause of death without any tests? Why also are<span class='match'> the </span>NHS unwilling to test<span class='match'> the </span>staff and vulnerable high-risk patients of a rehabilitation home after a recorded Covid-19 death?</li>
##   <li>there are roughly 7.7 billion of us
## there should be 0
## #govegan #antinatalism #animallovers #AnimalCruelty #ClimateChange #extinction #coronavirus</li>
##   <li>These people are fake Christians, and dangerous. #StopTheMadness #COVID2019 https://t.co/LDS0ohlYR7</li>
##   <li>And we now lead<span class='match'> the </span>world in number of confirmed cases. I thought everything was under control? @realDonaldTrump and it seems many Americans STILL don’t have access to testing even with COVID-19 symptoms!! https://t.co/c81mJTvfTu</li>
##   <li>Greek island refugee camps face #coronavirus ‘disaster’, aid groups warn - ‘We have not seen a credible emergency plan to protect and treat people living there.’ https://t.co/AVRcSzb1yx #asylumseekers #refugees #health #pandemic #greece https://t.co/NkH17SAXb7</li>
##   <li>I just want to go wine tasting and eat bread. #IsolationLife #COVID19</li>
##   <li>Plz speak for yourself
## I was not scammed
## Recognized<span class='match'> the </span>farce right from<span class='match'> the </span>start
## Stats from<span class='match'> the </span>common flu convinced me of<span class='match'> the </span>BS of this Sham-Dem-ick <U+0001F637><U+0001F927><U+0001F922><U+0001F92E>
## @realDonaldTrump 
## #coronavirus 
## #QAnon 
## #WWGIWGA https://t.co/1OknoFfrJy</li>
##   <li>For peace of mind on fears over birthing alone during #Covid19 - this from @MidwivesRCM &amp; @RCObsGyn 
## 
## If your birth partner is well and showing no symptoms, they should be allowed to be in<span class='match'> the </span>maternity suite. https://t.co/lt8x5O96RX</li>
##   <li>Italy records 969 coronavirus deaths, dashing hopes of turnaround | World news | The Guardian https://t.co/SeVTsBGLNv</li>
##   <li><U+0001F628><U+0001F628> Seriously, it adviserable you don't use @GloWorld Service during this isolation period <U+0001F630>. I swear you go run mad, how can some stay safe with you guys bayi ?  I hope we can count on you guys @AirtelNigeria @MTNNG #stayathome #covid-19</li>
##   <li>1/ @OneWeb's bankruptcy is official. CEO Adrian Steckel said in a statement that<span class='match'> the </span>"current situation is a consequence of<span class='match'> the </span>economic impact of<span class='match'> the </span>COVID-19 crisis."
## Softbank reportedly passed on giving<span class='match'> the </span>company more financing this week.</li>
##   <li>I am terrified I’ll get this virus and my lungs will be uncooperative and I’ll end up on a ventilator (if there are any). And, I swear, if anyone tries to play that Hawaiian version of “Over<span class='match'> the </span>Rainbow” as I slip away, I will fucking HAUNT you! #COVID19</li>
##   <li>CHINA U SCREW ME OVER I HATE ALL U, HOW DARE U SHESHE MY FUCKN COUNTRY
## 
## #china #onetwofucku #newzealand #nz #us #CoronaLockdown #coronavirus #COVID19nz #help #safe
## 
## also spread positivity in this bad time people, much love to my brothers and sisters around<span class='match'> the </span>world, stay safe</li>
##   <li>Tune in to @ThisisRiverside RN, #RiversideReports presented by me &amp; featuring an interview with @DrRosena Tooting MP and much more... #riversideradio #southwestlondon #windrush
## #coronavirus</li>
##   <li>Are you getting one of<span class='match'> the </span>Coronavirus stimulus checks? Find out here. #coronovirus #covid19 #stimulus https://t.co/6IgxXCHqZP</li>
##   <li>Take a look at this compilation from<span class='match'> the </span>@usccfoundation detailing<span class='match'> the </span>drug industry’s ongoing work to develop #vaccine and treatment options for<span class='match'> the </span>#COVID19 pandemic, and<span class='match'> the </span>business community’s larger philanthropic and relief efforts as well: https://t.co/VhHVVdGlqZ</li>
##   <li>Someone that worked with my brother had covid 19 and they worked together for a week and just found out today and is still hanging out around<span class='match'> the </span>house and being around his gf and kids bc he isn’t feeling symptoms right now.. i knewthis would happen</li>
##   <li>Locsin: March 27 last day to take foreign tourists to airports for outbound 'sweeper flights' #COVID19 #LuzonLockdown https://t.co/PTaRzZPdis</li>
##   <li>Oh those snacks were supposed to last<span class='match'> the </span>whole time?? <U+0001F609><U+0001F60A><U+0001F602><U+0001F36A><U+0001F369><U+0001F37F><U+0001F9C1><U+0001F366>
## 
## #Snacks #StayHome #ShelterInPlace  #Covid_19 #Quarantine #WashYourHands #VanillaFringeBoutique https://t.co/WkupeINodL</li>
##   <li>Sir ,
## The way you explain and make<span class='match'> the </span>layman understand about<span class='match'> the </span>COVID-19 situation of<span class='match'> the </span>state is absolutely fantastic.
## In such situations having a press conference daily to address<span class='match'> the </span>people is so important and you are doing a fabulous job Sir  <U+0001F64F> https://t.co/vScnquawXb</li>
##   <li>If you want a kitten, ask for a pony. #coronavirus https://t.co/AJuaCQJyEq</li>
##   <li>@realDonaldTrump It’s too late. Youve failed. Where are<span class='match'> the </span>#CovidTests #wherearethetests #WhereAreTheTestskits #Covid19 #Noeaster #Weneedtestkits #Trumpresign #GOPRESIGN #TrumpVirus #Resign</li>
##   <li>@segalink Mine auto correct all harsh tag #COVID19Lagos #COVID19Nigeria #CoronarVirus #Covid19 #CovidNGR</li>
##   <li>Covid-19, Coronavirus Day 6 <U+0001F915>
## 
## a video update in 3 parts because inexplicably I cannot upload longer videos here 
## 
## Part 1
## 
## #COVID2019 #coronavirus #Covid_19 #nyc https://t.co/WZKvgJS0LW</li>
##   <li>There are 240 people on this @awayhomeamerica Zoom meeting centering racial equity in #COVID19 response to #EndYouthHomelessness led by our Founding 8 board who are young adults with lived expertise. This is what justice &amp; liberation look like!</li>
##   <li>The #coronavirus ISN’T a flu<U+2014>it‘s a respiratory virus that‘s much more serious. Deaths are up to 1090, with a mortality rate is 1.45% (4.4% worldwide), which could translate into 3,349,000 DEATHS based on 70% of 231,000,000 of 330,000,000 Americans contracting<span class='match'> the </span>virus. https://t.co/n1BpVgqZBy</li>
##   <li>Just spitballing here but can we implement a 6 foot rule for cars on<span class='match'> the </span>road, too? It would be great if Brenda in her silver accord wasn’t always up my ass <U+0001F937><U+0001F3FC><U+200D>♀<U+FE0F> #coronavirus #SocialDistanacing #SocialDistance</li>
##   <li>@MayorOfLA &amp; @GavinNewsom with some sobering stats on Los Angeles. At<span class='match'> the </span>current rate LA County will be where NYC is in terms of cases per capita by next week. #coronavirus.</li>
##   <li>Congratulations niggas landed their first diss track #COVID19 https://t.co/el6ACBITeC</li>
##   <li>@StephenCurry30 Much respect <U+0001F44A><U+0001F3FD> from a seasoned educator! #eachoneteachone #coronavirus</li>
##   <li>A nice overview of options for researches in<span class='match'> the </span>time of #COVID19 by @FKondylis and @markus_gold. Many of us are thinking about field enumerators who are daily wage earners &amp; as a research community its time to have some tough conversations about how we treat our foot soldiers... https://t.co/rOXD7MWhU5</li>
##   <li>No Treatment &amp; No Way to Return Home: Patients at Delhi Hospitals Say Hunger, Not Covid-19, May Kill Them https://t.co/AvKdSVGTEG via @rightrelevance thanks @rahuleaswar</li>
##   <li>So<span class='match'> the </span>United States just exceeded 100,000 confirmed cases of COVID-19, eclipsing<span class='match'> the </span>Chinese.  Finally,<span class='match'> the </span>Criminal-in-Chief has achieved world-class status in his core competence - failure.</li>
##   <li>ISTE Convenes Sector-Wide Response to Supporting Educators in Responding to COVID-19 https://t.co/Ta6njK8fCW #npt</li>
##   <li>COVID-19 IS RUINING MY LIFE</li>
##   <li>God is angry with<span class='match'> the </span>Earth,He shut down<span class='match'> the </span>church, mosque, school and even<span class='match'> the </span>government parastatas let's pray and ask God for Mercy...#COVID19 #StayAtHomeAndStaySafe #CoronavirusOutbreak #coronaupdatesindia #CoronaUpdates  @realDonaldTrump</li>
##   <li>Thank you to<span class='match'> the </span>NHS! <U+0001F44F><U+0001F3FC><U+2764><U+FE0F>
## #COVID2019 #NHSThankYou #ClapForCarers #StayHomeSaveLives https://t.co/0SyFKPjGBC</li>
##   <li>Warnings Ignored: A Timeline of Trump’s COVID-19 Response https://t.co/dBARZsvBlh via @BulwarkOnline</li>
##   <li>@technocrat_arun Hi, in light of COVID-19, we’re operating with a limited team and it may take longer than usual to respond to your query. This will not impact our services and commitment to our customers. You may either use our app or log on to our website for any immediate service needs.</li>
##   <li>The USA is number one again. We have<span class='match'> the </span>most confirmed COVID-19 cases, worldwide. Given how little we've actually tested, we're probably astronomically undercounting.</li>
##   <li>Final Fantasy XV, FFX-2, Donkey Kong Country 1-3, Mega Man Legends, Animal Crossing New Horizons, original RE 1-3, RE Code: Veronica &amp; 80s/90s movies
## 
## My time away from<span class='match'> the </span>world is being well spent. #videogames #Dreamcast #PS4 #PS1 #SNES #ACNH #ResidentEvil #COVID19 #coronavirus</li>
##   <li>London Woman Dies Of Suspected Covid-19 After Being Told She Was ‘Not Priority’ https://t.co/h8Vav7Qd5X</li>
##   <li>COVID-19 continues to impact different areas of our service delivery.  For<span class='match'> the </span>latest updates, click here:  https://t.co/2Vr3iohFdD.  For a full list of service updates, visit: https://t.co/vas3e83Csc https://t.co/Sb28VrV9ut</li>
##   <li>The ACR is here to support radiology residency programs with newly curated, FREE online Residency Training Resources https://t.co/hY9dKMxTVZ
## <U+2714><U+FE0F> #ACRCPI e-books
## <U+2714><U+FE0F> New #COVID19 #ACRCaseinPoint cases added weekly
## <U+2714><U+FE0F> #Radiology Well-Being Curriculum 
## and more! https://t.co/vKFqekf6YQ</li>
##   <li>My spouse has been put in charge of<span class='match'> the </span>#COVID19 floor of<span class='match'> the </span>hospital.  I am so proud and in such despare at<span class='match'> the </span>same time...</li>
##   <li>@KevinScarbinsky Just like a <U+0001F3C8> or <U+0001F3C0> game, COVID-19 has all<span class='match'> the </span>momentum and somehow we<span class='match'> the </span>public have to slow it down and get back in<span class='match'> the </span>game <U+0001F937><U+0001F3FB><U+200D>♂<U+FE0F></li>
##   <li>BREAKING: Health officials say that<span class='match'> the </span>COVID-19 test for a 61-year-old woman who passed away yesterday, Mar. 25, came back positive today. https://t.co/LtLPUZuMQC</li>
##   <li>103 year old #Iran woman survives #Coronavirus...
## 
## There is #HOPE!!!
## 
## #COVID19US
## #COV19US
## #CoronavirusUSA
## #COVID19
## #COV19 https://t.co/awwMulcEoi</li>
##   <li>The fallout of spring break in Florida. #COVID19 #COVID #SocialDistancing #Florida #pandemic #pandemicpanic #Epidemic @kevinmd @ZDoggMD @kennethafisher https://t.co/kcXUJqu7bS</li>
##   <li>i cant listen to this tory government , its too fucking dangerous 
## ill listen to my NHS 
## 
## #coronavirus</li>
##   <li>. @KPMG Global Head of Telecoms and Media @alexholttweets, looks at how companies are responding to<span class='match'> the </span>demand on consumer networks to now be<span class='match'> the </span>backbone for business as well. #telecoms #media #COVID19 https://t.co/HUgEszjvLG</li>
##   <li>Hillsborough County has unanimously passed a 24-Hour "Safer at Home" directive. #coronavirus https://t.co/zt2GtlaQ8Y</li>
##   <li>Mad and sad because I can’t afford @JeffreeStar bloodlust pallet due to not having work rn. Fuck this #coronavirus. It’s preventing me to experience true happiness, that is @JeffreeStar cosmetics<U+0001F625><U+0001F613></li>
##   <li>@DrRosena Why only seven days? #coronavirus #covid19</li>
##   <li>HOW TO SUPPORT BUSINESSES WITHOUT PUTTING PEOPLE AT RISK DURING COVID 19 LOCKDOWN https://t.co/IvMMNbIzKI https://t.co/J8u4tMlU7m</li>
##   <li>Share your #coronavirus #quarantine stories. We want to amplify them: https://t.co/PKDjHv8gl5 https://t.co/ZQvhQFDvP4</li>
##   <li>#StayAtHome isn’t just a personal commitment during #COVID19, it has to be a commitment by<span class='match'> the </span>govt to enable people to stay in their homes, through moratoria on foreclosures, evictions, utility cutoffs, and adequate unemployment compensation. And, it shouldn’t be temporary. https://t.co/4wGkHy4ZMH</li>
##   <li>I assume "automatic" still means a case by case basis. In an emergency, or in cases of govt use, WTO TRIPS Art. 31(b) negotiation is not required. But decision still has to be case by case under 31(a). #IP &amp; #coronavirus @WCL_PIJIP @IP_policy https://t.co/1Cm7iCMqj0</li>
##   <li>Met in<span class='match'> the </span>end after 68th day of 
## #COVID19 #Korea. 
## 
## Red: Quarantined 
## Blue : Free / Cured
## Gray : Total test confirmation 
## 
## https://t.co/feXdR7YfQM https://t.co/QYlb2ORfSU</li>
##   <li>Call @ato_gov_au if you are having difficulties meeting your tax and super obligations because of COVID-19 (novel coronavirus). Phone<span class='match'> the </span>Emergency Support Infoline on 1800 806 218 for help tailored to your circumstances</li>
##   <li>It's a well known fact that #COVID19 #coronavirus is heavier than air so that when expelled with a cough or sneeze it will be propelled forward up to a couple of metres before falling to<span class='match'> the </span>ground
## They employ teams of people in London licking it up before it can harm<span class='match'> the </span>public https://t.co/blHArhZkvA</li>
##   <li>HAPPENING NOW: We're bringing you 'The State of Michigan: A Virtual Town Hall on COVID-19' airing live now on @WOODTV 
## Listen to it live on NEWSRADIO WOOD 106.9 FM/1300 AM:
## https://t.co/FeNWepziUP https://t.co/kq1eoK2LdI</li>
##   <li>Day off today spending some quality time with<span class='match'> the </span>boys. Lovely daffs out today <U+0001F60D><U+0001F60D> #covid_19 #lockdown #dayoff #daffodils #thejoysofnature https://t.co/YVrT2C7THb</li>
##   <li>The President’s Coronavirus Guidelines for America -- 15 Days to Slow<span class='match'> the </span>Spread of #coronavirus (#COVID19 )
##  More at : https://t.co/lkadsalNOR
## 
## #CoronaLockdown #COVID #Covid_19 #COVID2019 #Covid19usa https://t.co/WtZnK3d7Oo</li>
##   <li>Our real heroes <U+0001F9B8><U+200D>♂<U+FE0F> <U+0001F9B8><U+200D>♀<U+FE0F> 
## #COVID19 
## #StayAtHomeAndStaySafe 
## #StaySafeNigeria https://t.co/ulH7agd95Q</li>
##   <li>Reminder that<span class='match'> the </span>money being sent out as Covid-19 stimulus may need to be paid back, at least partially, by people on their 2020 taxes.
## https://t.co/xAimrkOLTU https://t.co/h6Ff3V70sh</li>
##   <li>Hoping Sweden’s downward trend in new ICU admissions continues https://t.co/2bzyg1z3O4 #COVID19 https://t.co/zolGhBms7T</li>
##   <li>Lana Condor Called Trump Out for His Racist 'Chinese Virus' COVID-19 Rhetoric https://t.co/J0ssFNlDZR</li>
##   <li>Army truck going west on PA RT322 in Centre County with 2 field tent pods heading somewhere, just now. #COVID19 #sarscovid2 #coronavirus
## 
## <U+0001F632><U+0001F622></li>
##   <li>#Coronavirus is fuelling conflict between<span class='match'> the </span>old and<span class='match'> the </span>young.
## 
## We must put in measures to protect not just<span class='match'> the </span>old, but<span class='match'> the </span>young as well.
## 
## Explainer by two researchers. https://t.co/WHX6h7Rhed</li>
##   <li>Accu#WEATHERs free COVID-19 warning service extended to new states as severe weather looms https://t.co/4OrSpt7HVs #Tweet4Mee</li>
##   <li>Please help our fellow Americans in Michigan if you can!
## #COVID19 #TrumptheWorstPresidentEVER #TrumpLiesAmericansDie #GOPDeathPanels https://t.co/ApZiN22cRq</li>
##   <li>@HinduHaiHum5 @Uppolice @hardoipolice @dgpup @TheAtul_IND @112UttarPradesh @UpdeshRana07 <U+0001F437>ke aulaad
## Send jail for lifetime  Only solution for this people #CoronavirusOutbreak #CoronaLockdown #coronavirusindia #coronavirus</li>
##   <li>Please help! @MQmentalhealth - a charity I’m a proud ambassador for - is conducting a survey about #mentalhealth and #COVID2019. Please fill it out if you have time, it’s a vital subject we need to get up to speed on working on. 
## 
## https://t.co/PsKsifnEgv</li>
##   <li>Great article by @ayeshatulloch &amp; co on<span class='match'> the </span>benefits of citizen science in<span class='match'> the </span>times of #COVID<U+30FC>19 https://t.co/3oxOkfxdzt</li>
##   <li>This man is inspiring. Americans need to stick together and realize no one will care for #Us except each other. They jobs depend on exploiting us as much as they can get away with. #Coronavirus is just making it more obvious. #NotMeUs #solidaritycovid19 
##  https://t.co/UyK8NqWGSL</li>
##   <li>Social distancing alone will not mitigate COVID-19's impact. We must also make testing free and readily available and guarantee paid leave for all sick and quarantined workers, among other actions. During such an uncertain time, we must also prioritize mental health.</li>
##   <li>Have weighted blanket companies come out with a new “Global Pandemic” range yet or are we just supposed to layer<span class='match'> the </span>ones we have?
## #coronavirus #StopTheSpread</li>
##   <li>Report #Fitch: #Moroccan Economy Can Overcome<span class='match'> the </span>#Covid_19- Crisis https://t.co/2MIJl4JZbT</li>
##   <li>Is<span class='match'> the </span>COVID-19 pandemic a good time to buy a car? - Marketplace https://t.co/VXg03r3hxk</li>
##   <li>Never seen them together, hmm? #CoronaLockdown #COVID19 #chriswhitty #mrburns #thesimpsons #gmtv https://t.co/VmYbAzhuaK</li>
##   <li>Kiddos at home during COVID-19 school closure for students are probably using their devices to play online games. Our FOOF (Find out on Fridays) segment this week is about FORTNITE- which is a popular choice for many children. https://t.co/YdnUwZxo3n</li>
##   <li>If you would like to donate to Foodlink's COVID-19 Response Fund, and help us nourish our neighbors and navigate this public health crisis, please visit: https://t.co/0YLX0K4wGk https://t.co/1doz2PbjWU</li>
##   <li>No change in numbers for<span class='match'> the </span>next 2-3 weeks concerning<span class='match'> the </span>spread of #Coronavirus. #PressConference #UKlockdown</li>
##   <li>African Development Bank launches record breaking $3 billion “Fight COVID-19” Social Bond https://t.co/YfqGeDdXSy</li>
##   <li>COVID-19 puts women in New Zealand’s sex trade in more danger than ever; why isn’t<span class='match'> the </span>decrim lobby helping? https://t.co/hDWSXRZQ9Q via @FeministCurrent</li>
##   <li>I am addicted to<span class='match'> the </span>NYT Spelling Bee. Every day for a year, I start and do not stop until I reach<span class='match'> the </span>top level. I have noticed a correlation between COVID-19 progression and how close to<span class='match'> the </span>3 AM EDT release time of<span class='match'> the </span>puzzle I start it. We all have our comforts...</li>
##   <li>DHS says they will release new data points for positive #COVID19 cases - like age and gender, "in an effort to be transparent." Then why not tell us<span class='match'> the </span>locations of these positive cases? @DHSWI</li>
##   <li>"India's response to COVID-19 has been preemptive, pro-active and graded " Read detailed timeline and statement by<span class='match'> the </span>Government below on
## #CoronaUpdate
## #CoronaLockdown 
## #CoronavirusOutbreak https://t.co/hblXdOlwD8</li>
##   <li>An important thing during<span class='match'> the </span>virus lockdown is to stay positive and use your time as an opportunity to learn! 
## .<U+2060>
## .<U+2060>
## .<U+2060>
## #annaskydancer #skydancer #pilotlife #pilot #piloteyes #airshowlife #covid-19 #coronavirus #hopeforthebest https://t.co/vplN4J7JsC</li>
##   <li>Has it been determined whether or not a patient who has recovered from Covid-19 will be immune to future illness by<span class='match'> the </span>same virus? #nprconversation</li>
##   <li>Stay home. A simple message but 2 people living in difficult relationships its much more complicated, specially women/kids. Stress &amp; isolation could bring out dark sides, make abusive situations worse. Call for help. Report abuse. Call 9-1-1 #DomesticAbuse #SexualAbuse #Covid_19</li>
##   <li>@ewarren Omg death rate of 3% thats bad but a black man has a better chance of being murdered in chicago than getting covid -19 you RACIST</li>
##   <li>@_sabanaqvi when<span class='match'> the </span>entire world is at a crisis<span class='match'> the </span>likes of which is not seen recently, she wants communal rift. wah! some morals you have. u r really more dangerous than COVID-19!! you should be quarantined permanently!! u r not human, for sure!!</li>
##   <li>Even though my fam and I were put under quarantine by 111 #COVID19 line this Mon, I haven’t actually left<span class='match'> the </span>house since last Fri. My first mild symptoms showed week ago today. So, I’ve been self isolating for over 7 days now but nowhere near ready to come out of self isolation.</li>
##   <li>Our amazing libraries team <U+0001F44F> has set up an exciting virtual library to help people keep their love of literature going while libraries are closed during<span class='match'> the </span>#Coronavirus pandemic - log on and enjoy from Monday 30 March!
## @BathnesL
## 
## https://t.co/PTlSdN2Kn6 https://t.co/usfWfMZSDo</li>
##   <li>for any who who planned on taking<span class='match'> the </span>July bar exam https://t.co/WIYWrUDwpp</li>
##   <li>We need to provide our underprivileged kids with smart phones URGENTLY so that they can resume online classes and utilise their time more constructively.
## Anyone in Bhilai having old phone lying in working condition it’s time to Gift it to<span class='match'> the </span>needy. Small gift big help #COVID19 https://t.co/JGbf8eiot3</li>
##   <li>#coronavirus love you all https://t.co/FaXQNQrN3D</li>
##   <li>@A57102266 @chad_rummer @BethLynch2020 @davidaxelrod ... just aren't going<span class='match'> the </span>way they feel it should. #RealityCheck for Dems is that some Bernie supporters will never be anything other than just Bernie supporters. They've no greater vision/hope for <U+0001F1FA><U+0001F1F8> outside of<span class='match'> the </span>Bernie sphere. #BinaryChoice #HCWShoutout to<span class='match'> the </span>Covid_19 heros.</li>
##   <li>@RNCResearch @IvankaTrump USA is Number 1 in Covid-19 cases in<span class='match'> the </span>world.  Bill is only needed because they failed to heed Pandemic Plan.</li>
##   <li>A little bit of good news to start<span class='match'> the </span>weekend, a team at @uofigrainger has been hard at work to develop a ventilator to help during<span class='match'> the </span>#Covid19 pandemic. It's truly amazing what we can accomplish when we all work together.
## 
## https://t.co/WmMZWn0Xqa</li>
##   <li>Ministers representing<span class='match'> the </span>#COVID19 #NationalCommandCouncil updating<span class='match'> the </span>nation on<span class='match'> the </span>status of Day One: #LockdownSA in Pretoria. #StayAtHome for<span class='match'> the </span>next 21 Days to prevent #CoronaVirus spread. https://t.co/mLOT3SZYXk</li>
##   <li>If your #nanny is working for you during<span class='match'> the </span>#COVID-19 and is not sick, should you terminate them and have them collect unemployment? Here's everything you need to consider. https://t.co/FL62hqDFHV #coronavirus</li>
##   <li>Just wondering what kind of problems we will face if we decide to scrap these 2-3 months and start<span class='match'> the </span>calendar again from February? <U+0001F914><U+0001F914><U+0001F914><U+0001F914><U+0001F914>
## 
## #QuarantineLife  #Quarantine #COVID2019</li>
##   <li>@Acosta I wonder which of those rich white men and token rich woman is going to come down with #COVID19 ?</li>
##   <li>New Mexico now up to 191 COVID-19 cases, a breakdown
## 
## @rulljoe reports
## 
## https://t.co/3ooewVRjjq</li>
##   <li>Validation of #COVID2019 serology hard
## No gold standard in most patients only 80% pos-times to IgM &amp;G uncertain. Many coronavirus serotypes</li>
##   <li>The eNASCAR @iRacing Pro Invitational Series scratches @NASCAR drivers' competitive itch as<span class='match'> the </span>#coronavirus continues to disrupt<span class='match'> the </span>2020 sports calendar.
## 
## @ClintBowyer: "When all odds are against them, racers figure it out."
## 
## <U+0001F517> STORY: https://t.co/uNtWuch0KS</li>
##   <li>The #COVID19 lockdown lead to me getting creative and making a completely different #Funko video for my channel! 
## 
## Link’s Funko Pop Idol 2020 Ep1 Disney Semi Final! https://t.co/eXTXHSjLAn https://t.co/T8OsiINCG8</li>
##   <li>@BorisJohnson PM Boris Johnson
## Chief Medical Officer Chris Whitty
## Health Secretary Matt Hancock
## 
## Obviously not practising what they preach
## #oneruleforus #COVID19 #SocialDistancing</li>
##   <li>Join us Fri March 27 at 3 pm EDT for a Facebook Live broadcast with pulmonologist Adam Smith, MD. He'll be answering your top questions about #Coronavirus / #COVID<U+30FC>19 &amp; lung health. https://t.co/oB4PogSeve https://t.co/SiZZDRqic4</li>
##   <li>@ladydayisings Namaste, you can read it here: Thread by @MicrobiomDigest: There is a great need for accelerated publication of papers on #COVID19 studies. But if a… https://t.co/whwTAE9RGV. Enjoy :) <U+0001F916></li>
##   <li>@wellandjackfish Covid 19 Blue</li>
##   <li>How is<span class='match'> the </span>COVID-19 crisis impacting minds? We asked a former monk how to deal with<span class='match'> the </span>stress. @EntrepreneurOrg  https://t.co/0uSVrmQDf0 via @Inc</li>
##   <li>Businesses looking for information or to apply for business grants as a result of<span class='match'> the </span>covid-19 outbreak can visit https://t.co/QpRxbAtNpo https://t.co/4FqwyInBNm</li>
##   <li>5 Reasons Why Police Should Reduce Custodial Arrests in Light of COVID-19 via @Arnold_Ventures:  https://t.co/GspSgkW4RC</li>
##   <li>More thoughts on #COVID19 - Had a phone appt with my family doc today. I was calling to get my inhalers reordered in case I get sick and can’t get into a doctor...Flovent is on backorder because all kinds of people got<span class='match'> the </span>Rx in a panic. Ventolin is in stock.</li>
##   <li>No bank bailouts? No deferred mortgage payments? This bill will further assist<span class='match'> the </span>wealthy and serve their interest only. We need assistance! @USATODAY @DenverChannel @GovofCO #Banks #StimulusPlan #Government #coronavirus #help</li>
##   <li>STATEMENT: Lance McCarthy, CEO, Princess Alexandra Hospital NHS Trust said: “We can confirm sadly, three patients, two in their 70s and one in their 90s, who had underlying conditions have passed away at The Princess Alexandra Hospital. They had tested positive for COVID-19."</li>
##   <li>.@JoeBiden All healthcare workers who are putting their lives on<span class='match'> the </span>line every day bc of #COVID2019 should have their education debt forgiven. It’s<span class='match'> the </span>least we can do. #hcwshoutout https://t.co/u60cgWuB41</li>
##   <li>This is great news for growers! Thank you @SecPompeo and @SecretarySonny! #covid19 #h2a https://t.co/410mWcih8E</li>
##   <li>Quarantined and Adding weight. Most importantly Staying Safe. Have anyone heard from #PresidentCovik #StayAtHomeAndStaySafe #COVID19 #StaySafeNigeria https://t.co/XKmbi3Qbyy</li>
##   <li>L @xBrightLightsx_
## C @The__COVID__19 dear god
## E @FatalTease
## S @ChoosenGuard probably not
## F @WolfWitchVyxen oof
## O @MzHottieD <U+0001F937><U+200D>♀<U+FE0F>
## B @BabyNPie
## A @BadAoifeBad <U+0001F60F>
## P @PorkRindParker Um haha okay then https://t.co/a7pIW4m48S</li>
##   <li>To support<span class='match'> the </span>overall #COVID-19 response, @AllianceRxWP has committed to donating $25,000 to<span class='match'> the </span>@CDCFound Emergency Response Fund. Together, we can stop<span class='match'> the </span>spread of #coronavirus. https://t.co/O4pfSA2IGf
## #allofus #stayathome https://t.co/MnRA0ldQ9a</li>
##   <li>Help slow<span class='match'> the </span>spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download<span class='match'> the </span>app     It is simple to use and will help https://t.co/Oj0GWN8pe0</li>
##   <li>@Cumbrian_Carer @alun_curliss @afneil No and it won’t be included in<span class='match'> the </span>figures - covid-19 would have to be a contributing factor to<span class='match'> the </span>death</li>
##   <li>Thank you to those Minnesota distilleries who have produced hand sanitizer for those on<span class='match'> the </span>frontlines of this fight against #COVID19</li>
##   <li>Getting this as a tat with<span class='match'> the </span>caption: “COVID-19? Completed it mate.” https://t.co/eIy3TTBlLD</li>
##   <li>@vargoe21 @InfoMinZW @nickmangwana and company at times choose<span class='match'> the </span>hard way... We told them way back in time to have<span class='match'> the </span>handle verified.
## Right now, twitter might be flagging them for constant #Covid19 reports... they are filtering news feeds to people</li>
##   <li>Even before #COVID19 closures, schools across<span class='match'> the </span>country were striving to keep kids in school to keep them fed. Filmed in 2016, this is a glimpse at what rural districts like @OwsleySchools do *every week* to support children who are food-insecure. #DPLIS https://t.co/TaheLpWwfZ</li>
##   <li>I feel like if I can't keep my sense of humour through this horror, I may lose my mind. My heart goes out to all people throughout<span class='match'> the </span>world struggling to stay alive. Their cries are deafening. Please help each other any way you can. #COVID19 https://t.co/6RH2B1xsot</li>
##   <li>Update 2020-03-27 - COVID-19 New Measures and a Recap - https://t.co/gbJN3WHe9w #CdnTax #cdnpoli #COVIDCanada #COVID19Canada #incometax #smallbusiness https://t.co/lVeuKryDSQ</li>
##   <li>As we learn more about #COVID19, epidemiologists can provide daily forecast updates because<span class='match'> the </span>@WHO understands a dynamic dataset requires a dynamic model. Committing to open source international registries and (artificially) intelligent schema should be<span class='match'> the </span>new standard. https://t.co/VLj23bO93f</li>
##   <li>#MSM is asking @CDCgov /Dr. FAUCCI to take over all communication from @POTUS /@WhiteHouse /@realDonaldTrump, I request all media to do<span class='match'> the </span>same for absolute truth and nothing but.
## 
## #coronavirus #COVID19 #SocialDistanacing</li>
##   <li>Pre-virus, homes were getting more affordable. https://t.co/RwaYdMZ1lF #PhoenixAZ #AZ #housingmarket #COVID19</li>
##   <li>COVID-19 case confimed at Save-On in Kamloops https://t.co/ZaYFjxvgp0</li>
##   <li>I wish I had more $ coming in rn. I’m grateful for what I do have coming in, but it’d be nice if I had a side hustle I could do from home so I’d have a little extra to throw at debt <U+0001F62D><U+0001F623><U+0001F926><U+0001F3FC><U+200D>♀<U+FE0F> Going from 4 jobs to none in a matter of days sucks #COVID19 #unemployed #SelfIsolation</li>
##   <li>@BorisJohnson @MattHancock @CMO_England... Get well soon. Thank you for all your hard work to get this country through this most difficult of times. <U+0001F1EC><U+0001F1E7> #coronavirus #nhs #wewillbeatthis</li>
##   <li>let's sunbathe in<span class='match'> the </span>morning
## #COVID19 
## #Covid19Out https://t.co/n4OV875sd5</li>
##   <li>CL Students!!! We miss you! The weather is gorgeous! Take a walk outside- maybe you will see Ms. Moran out taking her dog Echo and her toilet paper for a walk<U+0001F602>. #ThursdayMotivation #COVID<U+30FC>19 https://t.co/aOckT8ov8r</li>
##   <li>In a series of advisories, @Mintz_Law's Anne Bruno and Dan Kajunski review new &amp; updated #SEC guidance for public companies affected by #COVID19  https://t.co/FOAUltyAhb https://t.co/w8VcMEZUVY</li>
##   <li>@CMOMaharashtra @AUThackeray @AjitPawarSpeaks @PMOIndia Sir, if possible plz set up temporary camps across Maharashtra 4 people who are stuck in #COVID19 crisis away from their homes. It will help ease<span class='match'> the </span>tension on<span class='match'> the </span>Police dept and would stop<span class='match'> the </span>disease. #IndiaFightsCorona</li>
##   <li>@bryer @CEaston66 I understand what you are saying but they are testing for<span class='match'> the </span>virus when patients enter hospital to ensure<span class='match'> the </span>safety of NHS staff. Are you saying that<span class='match'> the </span>death toll announced each day could be anything &amp; therefore<span class='match'> the </span>figures for COVID-19 deaths are not correct.</li>
##   <li>I'm old enough to remember when @realDonaldTrump said it was 1 person from China w/ #coronavirus19 &amp; soon<span class='match'> the </span>U.S. would be down to 0 cases of 
## 
## #CongratulationsAmerica we're No#1 with 83,113 #COVID19 cases &amp; counting. Yep more than those shithole countries 
## 
## THIS is #KAG @GOP<U+0001F914>? https://t.co/ZbB7eCcxBf</li>
##   <li>More than 3 million have Americans filed for unemployment due to<span class='match'> the </span>#coronavirus. If there has ever been a time to buck some capitalistic tendencies, I’d say now is a good time. #helpothers https://t.co/Fqy2aJbs47</li>
##   <li>@baileylbbh NO COVID-19 HACKED HER</li>
##   <li>I am now an #MBRUCommunityImmunity Ambassador. I am responsible to protect myself and my community from #COVID-19. I challenge @originalissac @vinuevarghese to take<span class='match'> the </span>course.<U+00A0>https://t.co/si2w76nH7j https://t.co/y8VzLqfjtO</li>
##   <li>@ITGuy_JR @karaisshort @_LoveTarajah I'm lucky that my parents are boomers and had canned goods and then stood in line to get toilet paper, but I'm still worried that I might have exposed them to COVID-19. But they also don't seem to give a fuck, so https://t.co/SDw1GdljkC</li>
##   <li>Heartfelt Appreciation to<span class='match'> the </span>Amir of Kuwait and his Government for<span class='match'> the </span>commendable efforts in curbing<span class='match'> the </span>deadly COVID-19  #ThankYou_AmirOfKuwait</li>
##   <li>Part 3 
## @narendramodi @PMOIndia @myogiadityanath @mygovindia @AdminLKO 
## #CoronavirusOubreak 
## #BeSafeEveryone https://t.co/NDVDYwj7IG</li>
##   <li>Read our FAQs about<span class='match'> the </span>IRS code allowing #employers to make tax-free payments or reimbursements to employees as “qualified disaster payments” to help employees cope with #COVID19: https://t.co/XHebZaBhKT</li>
##   <li>I’m listening to these people asking for a raise <U+0001F633> shit you lucky your ass still has a job! 
## 
## #blessed 
## #workingfromhome
## #BeatCoronaVirus 
## #coronavirus</li>
##   <li>Urgent!!!! call on .@GavinNewsom .@NYGovCuomo RELEASE thousands of incarcerated humans N California &amp;  NY's  vulnerable 2 #COVID19 Slavery.Prisons.jails. Slavery.detention centers have NO place 2 quarantine/ protect people 4m pandemic #RELEASE #LetThemGo #ClemencyCoastToCoast https://t.co/vgF6Z2FzTW</li>
##   <li>@liuna183 Looks like<span class='match'> the </span>union hasn’t been listening to our countries health officials,<span class='match'> the </span>people in<span class='match'> the </span>union are from<span class='match'> the </span>field they know this isn’t safe! #COVID19Ontario #COVID2019 https://t.co/7h7fmXQTZa</li>
##   <li>Take this seriously! Sign<span class='match'> the </span>pledge to help stop COVID-19 while also defending our basic rights. https://t.co/h46e2oDfot</li>
##   <li>Are you watching. @NYGovCuomo giving daily briefing rn (it’s Q&amp;A going on right now). Watch it on @CNN @cnni @Reuters or whatever.
## He’s giving<span class='match'> the </span>numbers, facts, forecast, spirit, basically everything you need to keep yourself educated &amp; rational + Tokyo can learn from. #COVID19 https://t.co/P7HeJH9Mbt</li>
##   <li>Gonna tell us that 'cure' or what?<U+0001F64F> #coronavirus #COVID19
## 
## #NBA #WeTheNorth #RTZ #NBATwitter https://t.co/IjAudsvNNC</li>
##   <li>While #COVID19 is<span class='match'> the </span>health concern on most people’s minds right now, please remember<span class='match'> the </span>mental health of college kids who are home for this extended break. 
## 
## A lot of us had our first taste of freedom, and may be feeling isolated or lost during this unprecedented event.</li>
##   <li>@AndyOstroy @realDonaldTrump Calling it<span class='match'> the </span>Chinese Virus when speaking directly with<span class='match'> the </span>head of China might undermine negotiations.  Negotiating for Chinese cooperation re: addressing COVID-19 is more beneficial to<span class='match'> the </span>US citizens than  "standing up" to Xi over a name would be.</li>
##   <li>Ms Kanika Tekriwal, Co-Founder &amp; CEO, @JetSetGo2 shares how their top management conducts virtual meetings thrice a day to evaluate their work &amp; ensure high productivity across teams. Visit: https://t.co/VlbfWYav8n to learn more. #COVID19 #coronavirusIndia @PMOIndia @jetsetgoin https://t.co/g0wYVF5ZYk</li>
##   <li>Listening now! Thanks for<span class='match'> the </span>break from all<span class='match'> the </span>#Covid19 news/politics that I’ve been listening to. https://t.co/SnULEDKyYC</li>
##   <li>Amazing day on booley bay <U+0001F49B> real social distancing! Beach to myself <U+0001F60A> #SocialDistanacing #coronavirus https://t.co/deWMOATBsM</li>
##   <li>Breaking: Ohio becomes<span class='match'> the </span>16th State to surpass 1,000 cases
## 
## #Ohio #COVID2019 #CoronaVirusUpdate #CoronavirusOutbreak #USA</li>
##   <li>4 dead, 138 sick and 2 with COVID-19 aboard cruise ship https://t.co/A4WLINp67h</li>
##   <li>For now, it is @BBhuttoZardari and @MuradAliShahPPP who are leading<span class='match'> the </span>charge against<span class='match'> the </span>#coronavirus pandemic in Pakistan.  
## #coronavirusinpakistan
## https://t.co/qME10ITmnz</li>
##   <li>If you’re a proud American, please tell me how proud THIS makes you. A teenager died because he was denied treatment for coronavirus because he didn’t have health insurance. Do u understand now why healthcare is a right &amp; why we need universal healthcare?? https://t.co/1cphJntWcC</li>
##   <li>Watch "A Praying City - Chicago Responding to<span class='match'> the </span>COVID-19 Crisis in United Prayer" on YouTube https://t.co/jzg6DZd89w</li>
##   <li>@KeithMcLean3 @Scribulatora Bureaucracy can only move so fast. Documentation requires input time. Printing cheque’s takes time. Transferring digitally takes time. Handing out debit cards takes time. 
## 
## We are in an emergency. Some of<span class='match'> the </span>bureaucrats are surely COVid-19 patients. Replacing them takes time.</li>
##   <li>Why should @Boeing benefit from a bailout for a problem they have been having since before<span class='match'> the </span>#coronavirus outbreak? @SenSchumer @SenGillibrand 
## 
## If anyone needs to benefit from it, its boeing employees.</li>
##   <li>@BBCBusiness Please put us in touch with Terry to see if we can help?
## Thank you. #helpindarktimes #coronavirus BBC News - ‘I’m devastated there’s no support for me’ https://t.co/5RrFCIfeKu</li>
##   <li>There have now been 9 deaths connected to<span class='match'> the </span>COVID-19 pandemic in Wisconsin. And there are now confirmed cases in 37 counties
## https://t.co/ivTjvAhph9</li>
##   <li>@shatrughan100 Banned chinese product. Spain. Purchased of covid-19 test toolkit which is fail to detect proper only 30% is been detectable. So, we<span class='match'> the </span>people of India need to charge 200% tax on chinese product. Which will remain international rule and  will be safer.</li>
##   <li>@294thMPCo @POTUS @USCongress You are clearly not aware of how infectious disease works. #COVID19  is likely to kill 1 million to 50 million Americans in<span class='match'> the </span>next year.
## 
## Sometimes, you shut down to save lives.</li>
##   <li>Feeling down in<span class='match'> the </span>dumps? Change your name to NHS and go for a walk at 8pm. #clapforourcarers #NHS #nhsvolunteers #COVID2019 #cornoravirusuk #StayHomeSaveLives https://t.co/aYVuYMlTsu</li>
##   <li>I just published New Laughter Research and COVID-19: Laugh for Longevity? https://t.co/du8KTvTqWL</li>
##   <li>India did kill #Sikhs  in 1984 and now again in #kabulattack it is shame Ashraf ghani and india is bussy in terrorisem when whole world is fighting #coronavirus @Ayesha0789 @Abrar9255 #KhalistanIN2020 https://t.co/KklgdkqsBF</li>
##   <li>Metro Weekly Digital Edition: District of Coronavirus. #coronavirus #lgbtq #washingtondc #magazine - https://t.co/QgMz5ASYf3 https://t.co/ctA9k8V9OX</li>
##   <li>For<span class='match'> the </span>latest resources on COVID-19, go here: https://t.co/9nBcU9Tx00 https://t.co/xTUVAPDaIR</li>
##   <li>11. Thou shalt not post any group picture without a pre-Covid-19 disclaimer or thou wilst be dragged on<span class='match'> the </span>internet. https://t.co/DY1t74dE81</li>
##   <li>@DeborahMahmoud1 Hmm.. there must be a reason<span class='match'> the </span>WHO has declared this a global pandemic. Firstly it’s far more virulent than flu. This article from<span class='match'> the </span>spectator may backs up your reality. https://t.co/Hv4OQXltks 1/2</li>
##   <li>Received email from my doctors office, they are no longer accepting patients as they have been temporarily been converted to a respiratory clinic for patients with COVID-19 , they do have some things that they can see you for but strict guidelines</li>
##   <li>Leave your message of support for<span class='match'> the </span>NHS <U+0001F499>
## #NHSheroes #COVID19 #NHS #Retweet  https://t.co/cgXmlG99uh</li>
##   <li>‘To understand<span class='match'> the </span>emergence of viruses such as #COVID19 you have to understand<span class='match'> the </span>forces putting them in our path. 
## 
## They have to do with<span class='match'> the </span>rise of industrial scale farming and<span class='match'> the </span>marginalisation of millions of smallholder farmers.’
## 
## https://t.co/7bZ5opZdMz</li>
##   <li>@itsjadasworllld let me find it. Someone in China had it recovered and got it again 
## 
## https://t.co/ATIq5EYt7u</li>
##   <li>Cuomo never stops trying to kill parties like Green, WFP, Libertarian, even during a crisis. He's been showing great leadership lately on<span class='match'> the </span>#COVID19
## front, but he's still an asshole. https://t.co/bbleAS8eol</li>
##   <li>50 new COVID-19 cases, no deaths reported in Kentucky
## https://t.co/tvCx8lZ0Wu https://t.co/5Ln88A3pwS</li>
##   <li>Humans have switch of molecular control. Must have developed transmission control protocol also....
## 
## Is it a kind of internet of covid 19 molecules....
## 
## Somewhere 1 mbps, somewhere 100mbps....
## 
## https://t.co/ZCFwVjtVr3</li>
##   <li>Updated periodically, a Covid-19 treatment and vaccine development progress tracker from<span class='match'> the </span>Milken Institute. #infectiousdisease  #covid19 #fda https://t.co/IQ3ChM3tnD</li>
##   <li>@briantylercohen Trump can’t handle reality or truth.
## The truth is COVID-19 is real.
## Trump and enablers need alternative reality.
## Alternative reality permits trump truth narcissism.
## Trump's truth narcissism spins his whims.
## His enablers feast on these whims.</li>
##   <li>The good news is,the choice is yours.<U+2764>#PresidentCovik #COVID19  #StaySafeNigeria https://t.co/Opbns3ivRg</li>
##   <li>#StayAtHomeSaveLives  tune to radio. Make social distancing. #Covid_19
## @sasmitpatra @gyana_r_das @tarique_koshish @IPR_Odisha @CMO_Odisha https://t.co/qkyDv1acU5</li>
##   <li>@obiage_li They are trying to encourage social distancing in this era of COVID-19 so that customers won’t have any reason to come to their office.</li>
##   <li>@NorbertElekes How are they confirming these cases? Covid-19 is still in<span class='match'> the </span>researching phase. All<span class='match'> the </span>information on its affects are not definitive. From what we know,<span class='match'> the </span>symptoms are comparable to pneumonia, or influzena. How do we determine it's not one of those two from Covid-19?</li>
##   <li>For some reason, I'm thinking of Jim Jones in Jamestown.
## 
## Today, US #covid19 confirmed cases are rising at 25%/day, deaths at 30%/day, and testing only at 18%/day.
## 
## It's all going to get 5 times worse in<span class='match'> the </span>next week. https://t.co/B3FdB3XLuO</li>
##   <li>Genomic Study Points to Natural Origin of COVID-19 https://t.co/iRqRxXqsxY</li>
##   <li>#Coronavirus Help &amp; Support from Sunderland City Council https://t.co/hngTTR4ADt</li>
##   <li>@GavinNewsom @MayorOfLA tRump does not care - his eye is only on his almighty dollar and how it affects his own personal interests. He’s in denial that people are suffering physically and financially. COVID-19 is here for a long time.  https://t.co/KXHbARd4id</li>
##   <li>BREAKING at 1:30 (ET): US House just passed<span class='match'> the </span>3rd #COVID19 relief bill which contains emergency funding for state and local governments and school districts. https://t.co/KLJ8wB7oJz</li>
##   <li>Covid-19: Obasanjo Donates Former Ogun Residence As Isolation Centre NewsBreak - https://t.co/XsyHUXgV5w https://t.co/pgaYCyKaEl</li>
##   <li>Lodge Locked Down After French Tourist Tests Positive For COVID-19: https://t.co/K0qT62lm88 #Namibia https://t.co/bWidTwVlo6</li>
##   <li>@mrdutchempire Food ,
## I am locked down with my husband , my daughter and son, my domestic and her 3 year old.
## Help would be so appreciated .
## We are supporting each other and being emotional supports for each other
## It is tough <U+2764><U+0001F9E1><U+0001F49B><U+0001F49A><U+0001F499><U+0001F49C><U+0001F90E>
## 
##  #COVID19  #SouthAfrica #Nigeria  #MrDutch</li>
##   <li>The latest The Option Strategist newsletter places<span class='match'> the </span>recent recovery rally into context with where our technical measures are. #breadth #options #volatility #putcallratio #index #ideas #covid_19 #technicals #oversold #promoTOS29 #newsletter #theoptionstrategist $spy $vxx https://t.co/zZZRzPeQZW</li>
##   <li>Has anybody thought of using Cruise Ships to manage overflow of patients during COVID-19 outbreak?</li>
##   <li>Facebook Page Keeping your Children busy at home- COVID-19 developed by Kayla @ Stonehaven and many of our educators adding ideas- please check it out</li>
##   <li>Still not scared of<span class='match'> the </span>#coronavirus. but I will go out of my way to avoid getting it. I hate getting sick...
## #Tucker #TuckerCarlsonTonight</li>
##   <li>Watch "COVID-19: What Older Adults Need to Know" on YouTube https://t.co/ECs9LGhUWB</li>
##   <li>Coronavirus: school closures mean an increased risk of hunger for families around<span class='match'> the </span>world.
## 
## @LanaWhittaker6 shares her insights. #childhunger #childhoodpoverty #COVID19 https://t.co/aEow5URVcv</li>
##   <li>Has anyone checked on this girl? It’s been 13 days since this interview. #CoronaLockdown #COVID2019 https://t.co/p6YYcRQWq7</li>
##   <li>so... at this signing ceremony, where are<span class='match'> the </span>Democrats who were involved in crafting and passing this legislation? #coronavirus</li>
##   <li>ASM COVID-19 International Summit Sets Research Priorities<U+00A0> | https://t.co/4ek4k6aSMx https://t.co/VO8QYHj4jz</li>
##   <li>May God have mercy on your heartless soul! #coronavirus</li>
##   <li>Today, this man, my dad, lost his fight to #coronavirus after being diagnosed with lymphoma. My heart <U+0001F494> breaks as we come to terms with his sudden death. Keep your loved ones close and hold them tightly, and appreciate<span class='match'> the </span>time you have together before it’s too late. https://t.co/I84ae8zBdC</li>
##   <li>@aintnotnever @truemagic68 As if you know her. I guess all<span class='match'> the </span>celebs donating to<span class='match'> the </span>#COVID19 effort should just stop doing that to appease your hate?</li>
##   <li>The time I want a damn twinkie. Ima go zombieland on #Covid19 https://t.co/GB39tQNMoM</li>
##   <li>WOW at tomorrow's @nytimes front page.
## 
## #unemployed #Jobless #COVID19 #COVID #DieForTheDow #coronavirus #TrumpVirus #COVID19US #CoronavirusUSA #news #TrumpMadness #media https://t.co/SF2h42SZsb</li>
##   <li>aye this covid-19 needs to chill sis is about to take wrestling from me after she took therapy and freedom</li>
##   <li>Pelosi wasn’t going to be accused of letting a crisis go to waste.  My latest:
## https://t.co/EEPHwxnNC0</li>
##   <li>Contagious Divides by Nayan Shah demonstrates how Chinese Americans have ALWAYS been portrayed as a medical menace.  There is nothing new with this #COVID2019 anti-Asian #racism.  #evangelicals4justice  https://t.co/sIuFVfn3Qj https://t.co/HUD51LnQ3g</li>
##   <li>As cool as this type of data is,<span class='match'> the </span>context of COVID-19 is not.  
## 
## To those who are paranoid about being tracked, this is<span class='match'> the </span>price of convenience.  Nothing is free in this world. https://t.co/R3qKfSAUsf</li>
##   <li>COVID-19 CoronaVirus Correlation of Seasonal Temperature to Virus Spread https://t.co/4VSYEYTbKj #SmartenAnalytics #COVID19Updates #FightCoronavirus #fightCOVID19 #stayathome #coronavirusindia #PredictiveAnalytics #Datascience https://t.co/Nip3VAGyCf</li>
##   <li>@scottlynn46 @AntWBA434 @DJames1731 @piersmorgan COVID-19 patients average time on ventilator: 11 - 21 days (vs. 3 - 4 days for non-COVID-19 patients). "We have patients that have been 20 days 30 days on a ventilator. The longer you are on a ventilator,<span class='match'> the </span>more likely you are not going get off a ventilator"
## WHO quote</li>
##   <li>Bedford Superstore closes after employee tests positive for COVID-19 | CBC News https://t.co/2XSA2j11PT https://t.co/Xx4DbXZYGd</li>
##   <li>Health centre records high family planning requests amid COVID-19 lockdown
## https://t.co/XGuAXJJ3ZX</li>
##   <li>So what happens once you recover from COVID-19? While a lot remains to be learned, here are some questions answered. via @wef 
## https://t.co/dUMwpf5QDf</li>
##   <li>Congressman from Butler, PA tests positive for  #COVID19 
## https://t.co/Mf2PInHzDX</li>
##   <li>To help mitigate<span class='match'> the </span>spread of COVID-19 and protect<span class='match'> the </span>health and safety of our campus community,<span class='match'> the </span>Ed Lumley Centre for Engineering Innovation @UWindsor is closed until further notice.
## 
## Visit #UWindsorENG's COVID-19 webpage for more details: https://t.co/0qqhI3QA6g https://t.co/FKe490fHIk</li>
##   <li>@NYGovCuomo Trump should learn from that #TrumpIsTheWORSTPresidentEVER #COVID19</li>
##   <li>#coronavirus
##  I'm Dr K.Samiuddin. Vice President, IIHP. Homeo medicines are effective for viral diseases. In past we controlled japanese encephalitis, Dengue, Swine flu, other viral diseases. I request you to kindly take<span class='match'> the </span>services of Homeopathic Doctors in this critical time.</li>
##   <li>Washington reports 195 new cases bringing total confirmed cases there to 3,207 and 147 total deaths, with 619 new cases and 15 new deaths reported today.
## 
## #CoronaVirus #Covid19 #CoronaVirusOutbreak</li>
##   <li>USPS issues statement on mail service during COVID-19 outbreak https://t.co/aEbnUX5dnW</li>
##   <li>Subhanallah Adzan Memanggil Di saat Virus Corona, https://t.co/kCfPO6scLR via @YouTube please sub to this manhe is indonesian and islam and if your english use a translator or this is a discussion of covid 19</li>
##   <li>Excellent info from Dr Fauci on #coronavirus misinformation. Really worth<span class='match'> the </span>watch! @LethalWC_USA @passionforhomes @civale10 @CCforeverRiggs @Tillylawson6 @LeGrandeWee @StarLord_1979 
## https://t.co/Alr69VC24o</li>
##   <li>Tackle climate crisis and poverty with zeal of Covid-19 fight, scientists urge. <U+2066>@fionaharvey<U+2069> <U+2066>@guardian<U+2069> #ClimateEmergency #TellTheTruth #ActNow #RebelForLife https://t.co/cHYZMubO1z</li>
##   <li>@Stat079 If COVID-19 doesn’t finish me off, this will!</li>
##   <li>Its essential sonographers follow precautions &amp; protocols for #COVID19 Important simple steps - increased room &amp; equipment cleaning, ongoing hand washing &amp; hygiene, limiting additional room attendees, &amp; shortening examinations Would a targeted scan work for<span class='match'> the </span>clinical symptoms?</li>
##   <li>@WolfgangBaber3 @washingtonpost Super. China did a better job than<span class='match'> the </span>US at controlling COVID-19.</li>
##   <li>Best healthcare system in<span class='match'> the </span>world world, right @GOP? https://t.co/YlINfh0Ifo</li>
##   <li>"I will die single" nature took it seriously.
## #COVID19</li>
##   <li>my little sister: when’s<span class='match'> the </span>next time you’re coming over?!?
## 
## me: not for at least two weeks sis! because of covid-19
## 
## sis: well TELL COVID-19 TO SUCK YOUR LEFT TOE!!!</li>
##   <li>This is terrifying. #CoronaLockdown #coronavirus #COVID19 #StayAtHomeAndStaySafe 
##  https://t.co/tTHOixWDGZ</li>
##   <li>If you were laid off this week, here's a tip to see what industries are still hiring right now. 
## 
## Please retweet, this can help. #coronavirus #Hiring #jobs https://t.co/Ty1Yw3WCV7</li>
##   <li>Seven tips to manage your mental health and well-being during<span class='match'> the </span>COVID-19 outbreak https://t.co/RotVVxEkgr</li>
##   <li>@MetropolisatMet @aninhaceleste How dare you contribute to this outbreak.  There is no way to justify keeping a mall open at this time.  All of<span class='match'> the </span>malls on<span class='match'> the </span>east coast owned by Ivanhoe Cambridge have been shutdown, but for some reason they just don’t care about BC. #ShutItDownNow #COVID19 #Metropolis</li>
##   <li>.@united I work with @AVCcons and<span class='match'> the </span>should not be treated so poorly regarding flights for their shows. I expect someone to reach out and make this situation work<span class='match'> the </span>#COVID19 situation</li>
##   <li>Enjoy a feature on APA's ad contest "Best in Show" award winner David Hancock of<span class='match'> the </span>Northwest Arkansas Democrat-Gazette. Plus, find timely COVID-19 resources, updates on<span class='match'> the </span>APA convention, and much more, in this week's APW:  
## 
## https://t.co/ZOooUW3Jik https://t.co/D58bjhzeRt</li>
##   <li>There would’ve been a #coronavirus pandemic if #Trump wasn’t President. 
## I’m thinking it’d look a whole lot different though.</li>
##   <li>Ensuring Data Security and Privacy During Coronavirus/COVID-19 https://t.co/NIh6Z1IJa2</li>
##   <li>Watching Midway in 4K and drinking Czech Beer. 
## #CoronaLockdown 
## #COVID19 https://t.co/T0edAuRVmc</li>
##   <li>@DisabledResist This is<span class='match'> the </span>beginning of<span class='match'> the </span>“first wave”. we’re at least a year+ away from having a cure globally distributed <U+0001F489><U+0001F9A0> even once we finally flatten<span class='match'> the </span>curb, it will be short lived until<span class='match'> the </span>next spike. It’s estimated at least 80% of Americans will get #COVID19 by 2021 https://t.co/PP3JI7a8mb</li>
##   <li>Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/tZRuFarTAr #SmartNews</li>
##   <li>I still have many n95 masks for sale. DM for info. 
## 
## #yvr #RichmondBC #COVID19 #coronavirus</li>
##   <li>Don't #Break The #Rules
## #StayHome 
## #alter #alterdubai #alterpinoy
## https://t.co/oxcRysHRcY</li>
##   <li>The @NewYorker has been doing a fantastic job of covering<span class='match'> the </span>coronavirus. This explainer makes it easy even for ME to understand why COVID-19 is so deadly.
## 
## https://t.co/q4YvSXiyyF</li>
##   <li>What is one thing you can smile about even amidst #covid_19 ?! 
## 
## Share it below <U+0001F447><U+0001F3FC>
## 
## Even though it may be negative on<span class='match'> the </span>outside, I encourage you to stay in faith and be positive on<span class='match'> the </span>inside. https://t.co/pHz9K5wXLe</li>
##   <li>Here's<span class='match'> the </span>thread for<span class='match'> the </span>#coronavirus task force briefing that is expected to begin momentarily from<span class='match'> the </span>#WhiteHouse. https://t.co/Sjc3U2ZZWY</li>
##   <li>A local memory care facility is getting creative to bring families together. Check out<span class='match'> the </span>"Family Connect Window" complete with chairs &amp; pillows @ Marjorie House Memory Care in McMinnville 
## 
## #InThisTogether #Oregon #StopTheSpread #GoodNews #covid19 #Coronavirus #pnw #news #fox12 https://t.co/wNthUjGweJ</li>
##   <li>@UzorDave @KLeagueUnited We've yet to get confirmation on that. A lot depends on how well<span class='match'> the </span>#COVID19 situation is contained.</li>
##   <li>What's<span class='match'> the </span>name of this fruit? I had eaten in yercuad.. #coronavirus looks like <U+0001F914> https://t.co/wevwcHETMg</li>
##   <li>We're so proud to be an @AIPFoundation partner, which is switching its factory from producing lifesaving motorcycle helmets to facemasks in response to<span class='match'> the </span>current #Covid19 crisis - with @GreigCraft 
## https://t.co/SS19gdlhmD</li>
##   <li>BEST FOOD FOR STRONG HAIR
## Stay Home. Stay Safe.
## 
## #Staysafe #Coronavirus #HelpFightCorona #IndiaFightsCorona #ElixirSupportsLockDown
## #ElixirSalon #Elixified #ElixirUnisexsalon #ElixirBegumpet #ElixirSalonBegumpet #ElixirSalonKPHBColony #BeautySalon https://t.co/xv9MxGUtBl</li>
##   <li>URGENT CALL TO ACTION- SIGN LANGUAGE INTERPRETERS/TRANSLATORS/ SELF EMPLOYED. MAKE SURE YOUR VOICE IS HEARD.Thus far, two congressional efforts related to emergency economic relief from<span class='match'> the </span>effects of COVID-19 have been signed into law:</li>
##   <li>@CoruscaKhaya @tito_mboweni @Delphine_DG @thabileoka @Richards_Karin @rationalhill @redgenkosi @SAReserveBank An admission that National Treasury is seriously concerned about<span class='match'> the </span>consequences of this downgrade. WIGBI exit only end of April, delayed by COVID-19 delay of rebalancing. Those outside Treasury that said ratings don’t matter will see why it matters. Uncharted territory!</li>
##   <li>I’m so over COVID-19! This is affecting my job and<span class='match'> the </span>line of work I do! I truly miss working with my clients.</li>
##   <li>Oh please tell us more!!
## #COVID19 #hope https://t.co/XJF4Lj5Pua</li>
##   <li>Due to Covid-19, I will be adopting a slightly different approach to<span class='match'> the </span>car buying experience. I am now offering at home test-drives anywhere in Winnipeg and surrounding areas. This will… https://t.co/pOFFuYq1H9</li>
##   <li>@seanhannity Your entire network told<span class='match'> the </span>world #coronavirus was a hoax 3 weeks ago. You own this. All of you own these 1500+ deaths.</li>
##   <li>So Paul Adom Otchere of all people sat down and thought to himself that a satire programme about<span class='match'> the </span>political  party in Ghana that will gain most from<span class='match'> the </span> covid-19 will be funny and interesting. Smh.</li>
##   <li>My medical advice is to avoid groups (and therefore #coronavirus) like @DeionNBCMT was trying to avoid these bison! #COVID2019 https://t.co/gyblAKUFE2</li>
##   <li>Just gonna put this out there, but seeing some of<span class='match'> the </span>posts from healthcare workers in New York talking about how bad things are getting is making something clear.
## They really need ventilators and no one is going to order enough for them.
## 
## #COVID19</li>
##   <li>It seems we all agree that<span class='match'> the </span>action was uncalled for, unnecessary, inhuman and wrong. Should we leave<span class='match'> the </span>matter without investigating where<span class='match'> the </span>orders came from,<span class='match'> the </span>intention and hold someone responsible? #COVID2019 #RugabaQuotes</li>
##   <li>The blood of Jesus Christ is cleansing<span class='match'> the </span>Earth, COVID-19 is dying off from now; in<span class='match'> the </span>mighty name of Jesus, Amen!!! https://t.co/zggorjMs6N</li>
##   <li>Twitter is becoming as bad as Facebook. Can we focus on positive things for a day? I promise there’s still a lot of great things in life and<span class='match'> the </span>world if you look for them. COVID-19 isn’t going anywhere anytime soon. Constantly focusing on it isn’t good for mental health.</li>
##   <li>Novel coronavirus(COVID-19)outbreak-Fighting new coronaviruses(Wuhan  pn... https://t.co/B6XGk46aBy <U+6765>自 @YouTube</li>
##   <li>When you need a quick meal idea! https://t.co/y30AJue9jD
## 
## #recipes #recipe #food #foodie #Foodies #RecipeOfTheDay #allyoucaneat #chicken #bacon #thursday #stayhomechallenge #StayHomeSA #coronavirus #CoronavirusPandemic #CoronavirusUSA</li>
##   <li>Fucking Twitter battles #COVID19 #trump #lockdown #economy #justice #trusttheplan #SocialDistanacing #pedowood #</li>
##   <li>Nigeria: Addition of information on local measures to tackle<span class='match'> the </span>spread of coronavirus (COVID-19). Information on possible return flights to<span class='match'> the </span>UK following<span class='match'> the </span>closure of all international commercial flights into Nigeria until 23 April .. #TravelAdvice https://t.co/nhit2wbR23</li>
##   <li>Warriors' Stephen Curry interviews nation's top infectious disease expert on Covid-19 - National Basketball Association News - https://t.co/mDMlHHh8Pn</li>
##   <li>Today, despite these strange times, I submitted my final assignment for a @CIPR_UK Diploma in #InternalComms delivered by<span class='match'> the </span>@pracademy. The last couple of weeks have been a struggle, but now it's over, I wonder if I will miss working on non #COVID19 #comms  for a while?.... https://t.co/9y7wsCpBIY</li>
##   <li>10 potential ballot measures have been suspended including:
## In AZ to reveal<span class='match'> the </span>source of political media funding
## In MI to limit lobbying 
## In AK to create a citizen redistricting panel
## 
## #coronavirus #Michigan #Arkansas #Arizona #election2020 #election 
## 
## https://t.co/DkXcMZVPwy</li>
##   <li>#CNNTownHall Could I get CoVid-19 from a restaurant delivery?</li>
##   <li>@GovMikeDeWine please make sure to wear an @Indians tie and hat at tomorrow's #COVID2019 briefing.  #GoTribe #OHIO</li>
##   <li>Man, fuck COVID-19. This fucking asshole of a virus prevented me from getting myself some fuckin' spaghetti. I am very fucking hungry for spaghetti, but because of<span class='match'> the </span>quarantine and panic shopping I was not allowed to get them. I fucking hate Coronavirus more than my country.</li>
##   <li>I love this game #FM20 #Covid_19 https://t.co/qfE4OZS4lh</li>
##   <li>Bhilwara's Tale of Negligence: Infected Doctors, Latest COVID-19 Case Hint at Possible Community Spread - News18...</li>
##   <li>A group of lawyers are suing<span class='match'> the </span>Chinese government over coronavirus  https://t.co/ko8Tb1cD0I <U+2022><U+2022><U+2022> 
## #CoronavirusOutbreak  #COVID19
## #coronavirus</li>
##   <li>United States reaches 100k+ covid-19 cases till today.</li>
##   <li>@cpiranio @cpiranio we’re going to be providing different forms of assistance throughout<span class='match'> the </span>community going forward in light of<span class='match'> the </span>#coronavirus, including delivery service. Would you like to sign up?</li>
##   <li>Those who recover from #COVID19 shouldn't think they have lifelong immunity against any future COVIDxx. It will mutate. Different strains will emerge over time. (Remember *annual* flu jabs? Each one different from<span class='match'> the </span>year before, even different jab needed for different regions.)</li>
##   <li>Goosebumps... #COVID19 https://t.co/TGnegl3fE1</li>
##   <li>Prevent<span class='match'> the </span>Next #COVID-19 - Shut Down U.S. Wet Meat Markets! https://t.co/CzOYeNRZEU</li>
##   <li>Coronavirus updates LIVE: Rising NSW COVID-19 cases may force state lockdown, Australian cases surpass 3000 https://t.co/UfCUnpVgq5 #Southendairport #sport https://t.co/vf3SlaWbtB</li>
##   <li>Spice industry faces huge crisis after suspension of exports in wake of COVID-19 https://t.co/97eKtUGRxl https://t.co/QJgRKUAwIm</li>
##   <li>1,353 Deaths in The U.S. at<span class='match'> the </span>Time of This Post <U+2014>- COVID-19 is a Serious Crisis - This Virus must be taken Seriously if we want to stop<span class='match'> the </span>spread. Protect Yourself and Your Family. Fight The Spread! https://t.co/OuGLWwFmoV</li>
##   <li>@Serwaa_Amihere If Ghana has been exposed by COVID_19, what will you say about<span class='match'> the </span>almighty US, China, Italy and others where even<span class='match'> the </span>blind can feel<span class='match'> the </span>effects of<span class='match'> the </span>pandemic. Even our individual homes, have we acquired everything?</li>
##   <li>It’s heart-wrenching to watch people infected with covid-19 lie down helpless on<span class='match'> the </span>floor in<span class='match'> the </span>big economies like Spain.Kenya should prepare for<span class='match'> the </span>worse #COVID19KE #CurfewinKenya #Kenyans https://t.co/ltvCWOkNBG</li>
##   <li>@MDHealthDept Your #COVID19 site now includes new stats, including "ever hospitalized" &amp; "released from isolation." What exactly does<span class='match'> the </span>second one mean? Are these considered "hospitalized and recovered/discharged"? Does<span class='match'> the </span>delta indicate how many people are still hospitalized?</li>
##   <li>@GavinNewsom @CAgovernor @Fremont_CA @FremontPD @LilyMei4Fremont @ACSOSheriffs @AlamedaCountyDA @AlamedaCounty @AGBecerra @CDCgov @ScottHaggerty1 @BobWieckowskiCA @RepSwalwell Telsa had 2 known cases of COVID and still got to keep<span class='match'> the </span>factory open?
## 
## https://t.co/4lCLKLH6nG
## 
## $tsla</li>
##   <li>In my new investigation for @BylineTimes I reveal how<span class='match'> the </span>speculative Oxford model which said Britons might already be developing herd immunity to #COVID19, making national headlines, was promoted by a PR agency tied to<span class='match'> the </span>govt's Nudge Unit and Ministry of Defence https://t.co/mB3hj05coD</li>
##   <li>Bruno's followed by homemade cookies (thanks for<span class='match'> the </span><U+0001F36A> delivery, mom)  
## 
## #CoronavirusOutbreak #CoronavirusPandemic #coronavirus #COVID19 
## #StayAtHome #StayAtHomeOrder https://t.co/Y8SvIkeVjY</li>
##   <li>@OgbeniDipo Buhari can never address Nigerians on covid-19.(coz he doesn't know about it).. Correct your hash tag to covik1-9 virus... Maybe then we go reason am.</li>
##   <li>Offline: COVID-19 and<span class='match'> the </span>NHS<U+2014>“a national scandal” 
## 
## https://t.co/f1dgG65Vmz</li>
##   <li>#TexasStateUniversity loaned four ventilators to Ascension Seton Williamson in Round Rock and is planning on donating two to Dell Seton Medical Center in Austin to help combat<span class='match'> the </span>#COVID-19 pandemic. #coronavirus https://t.co/9uX5doNRUg</li>
##   <li>Q1: Why is it important to practice #kindness during<span class='match'> the </span>coronavirus pandemic? #TEARtalk #Covid19 https://t.co/KGMxvGRZOE</li>
##   <li>Just so you all know before President Blowhard tells you otherwise,<span class='match'> the </span>UAW opposes him trying to get right back to work in<span class='match'> the </span>plants. He’s going to have another battle on his hands. #TrumpPressConf #COVID19</li>
##   <li>Links to COVID-19 information #wpgpoli 
## 
## Federal Information
## https://t.co/cVIH4wMbn3
## 
## Provincial Information
## https://t.co/hGSHKNnO7i
## 
## Municipal Information
## https://t.co/bbXpaOU8LN https://t.co/zdFl7xnDqK</li>
##   <li>@brainpop made a great video for kids about COVID-19 https://t.co/ZpCB37PQ9n</li>
##   <li>@PrakashJavdekar @narendramodi @DDNational On public demand can you also help overcome #VentilatorShortage for #COVID19 patients?</li>
##   <li>But but but! He predicted #Coronavirus!!! <U+0001F914> We just didn't listen <U+0001F649><U+0001F64A> Don't you know ANYTHING <U+0001F644>
## #EpsteinsBuddy https://t.co/Hzu99lpNzo</li>
##   <li>This guy is incredible. For<span class='match'> the </span>record,<span class='match'> the </span>medical community is NOT saying “step it back a second, you’re gonna be fine.” <U+0001F926><U+0001F3FB><U+200D>♂<U+FE0F> Listen to<span class='match'> the </span>frontline doctors who are actually taking care of patients and telling you to #stayhome, not<span class='match'> the </span>ones who just play doctors on TV. #COVID19 https://t.co/TvmTzAZql8</li>
##   <li>Soapbox: Rethinking SaaS product access for SMBs during<span class='match'> the </span>COVID-19 crisis https://t.co/um0AW4oxTh https://t.co/UwIUbIlTS8</li>
##   <li>Very shameful set of leaders.  Can you imagine how<span class='match'> the </span>Minister of Health was making noise all round that they were ready for #COVID19.  And<span class='match'> the </span>brainless, opportunist Lai Mohammed giving false assurances to Nigerians. Where are they now. Notin on d ground, if not @jidesanwoolu</li>
##   <li>Universities in China are helping their government in research for antidote that can cure covid 19. Universities in Nigeria are closing together with nursery schools.. <U+0001F602>
## #COVID19Nigeria #Covid19Out #togetherwecanhelp #KickCOVIDOut #StayHomeSaveLives #StayHome</li>
##   <li>Pandemic 
## Time https://t.co/xLeh4uaFbQ</li>
##   <li>Apple Covid-19 app https://t.co/6b7bcYWzMW</li>
##   <li>How long does #coronavirus survive on surfaces?<U+2063>
## <U+2063>
## Plastic: 72 hours<U+2063>
## Stainless steel: 48 hours<U+2063>
## Cardboard: 24 hours<U+2063>
## Copper: 4 hours<U+2063>
## Air via liquid droplets: About 3 hours<U+2063> <U+2063>
## 
## Source: @NEJM, available at https://t.co/L5QpZMNKy6 https://t.co/18Bstq4Xz0</li>
##   <li>Most upcoming meetings and events have been canceled, including Leo Club, Teen Family Support groups,<span class='match'> the </span>Mom's Retreat in Galena, etc. If you have a question about an event, meeting, or program, visit our website for a list of closures/cancelations. https://t.co/BSF3mJHjEu</li>
##   <li>@rob_dinh Thanks for<span class='match'> the </span>update! One of my co-workers wife had a colleague that just past from COVID-19.</li>
##   <li>People are giving up on<span class='match'> the </span>stock market amid<span class='match'> the </span>coronavirus outbreak. Why they'll regret it https://t.co/vL5Sgcp2Ho</li>
##   <li>Welcome package for people returning to #southkorea including protecting masks, disposable thermometers, sanitizer and even trash bag for contaminated garbage #covid19 https://t.co/aVE8Q513gW</li>
##   <li>@DisneyParks I demand a #VirtualReality program that allows anyone to take a vacation at a "structurally-correct" virtual @Disneyland and @WaltDisneyWorld (like stay at a hotel, visit<span class='match'> the </span>parks, eat, etc.); all using a virtual reality headset. #COVID19</li>
##   <li>Global GCs: New Lessons on COVID-19 Response https://t.co/Z5pQj1buQG via @corpcounsel</li>
##   <li>Dominic Raab has been warned of<span class='match'> the </span>dire conditions hundreds of Scots stranded abroad are facing due to<span class='match'> the </span>#coronavirus pandemic
## 
## https://t.co/qnLHEOckW3</li>
##   <li>@dougducey @JaredDillingham @azfamily @SenMcSallyAZ @SenatorSinema AZ does not follow CDC guidelines: "But at<span class='match'> the </span>encampment near<span class='match'> the </span>Human Services Campus in downtown Phoenix, mobile restrooms and hand-washing stations have not been provided." https://t.co/5jeSYDDLdM</li>
##   <li>Everybody stay safe<U+0001F64F><U+0001F3FB><U+0001F62D>. #COVID2019 #CoronaLockdown https://t.co/nYeRJUKvlo</li>
##   <li>The U.S. now has more confirmed #COVID-19 cases than any other nation...Imagine having<span class='match'> the </span>audacity to refer to certain places as "shithole countries".... https://t.co/YIddjxURBb</li>
##   <li>Along with being on top of it from<span class='match'> the </span>start, their people didn’t panic buy. This could of been us to but no... <U+0001F623><U+0001F92C><U+0001F97A>
## 
## Lesson from South Korea on how to slow<span class='match'> the </span>COVID-19 spread | ABC News https://t.co/MivhBkcepO via @YouTube</li>
##   <li>Hahaha...I found this one while watching ‘Chup Chup Ke’ movie
## When Covid-19 patient silently left hospital’s...Doctors &amp; nurses be like...
## Just for fun
## #CoronaLockdown #CoronaVirusUpdate #CoronavirusOutbreak https://t.co/sU5ZNtgwHM</li>
##   <li>COVID-19: IPMAN assures Nigerians of supply, distribution of petroleum products https://t.co/9qi1svV9qS https://t.co/lNauGx9UTa</li>
##   <li>'The instinct is to hug and embrace people': Family plans funeral under COVID-19 rules https://t.co/b2Aaj0lRIr</li>
##   <li>“Journalists can listen in to court proceedings from home, never previously permitted at<span class='match'> the </span>famous courthouse. It’s a groundbreaking step.”- comment from @kirkkorner about ways courts are facilitating media access as response to<span class='match'> the </span>crisis @HMCTSgovuk #coronavirus https://t.co/HMMZGSdXfa</li>
##   <li>A thread on Friday afternoon's #COVID19 update from #Yukon CMOH Dr. Brendan Hanley, and @Premier_Silver. https://t.co/bLHxNNwoxt</li>
##   <li>How Will Trump Use COVID-19 for War Isolation? https://t.co/8qJ8u9SIVR</li>
##   <li>Who else misses concerts? We sure do! @neil_threedaysgrace  
## <U+0001F4F8>@johnindiveriphoto  
## .
## .
## .
## #musicphotography #threedaysgrace #edbd2019 #orlando #tour #tourphotographer #gig #gigphotographer #drummer #rock #rockandroll #htbarp #covid19 #musiwiremedia https://t.co/1FITrSjqhf</li>
##   <li>@BBCFOUR now if you fancy an engrossing &amp; exciting escape from #covid19 for a couple of hours. 
## 
## #Cromwell, starring Richard Harris &amp; Alec Guinness. 
## 
## It is historically faithful &amp; quite spectacular, giving an insight into<span class='match'> the </span>leading up to &amp; horror of<span class='match'> the </span>English Civil War.</li>
##   <li>Have you updated your digital properties yet? We’ve added a Digital Marketing Guide to help you! #COVID19 #Marketing #Audiology https://t.co/JOE5ZT0g3W</li>
##   <li>Summer heat won’t magically stop<span class='match'> the </span>coronavirus outbreak https://t.co/NGsuYuGN5i</li>
##   <li>Just watched this wild documentary on COVID-19 in China. Thank god we don’t live in a communist country but I can totally see<span class='match'> the </span>US getting to this point. https://t.co/drOrDlljBV</li>
##   <li>If children rarely contract or become ill with COVID-19, why is it important for them to isolate during this time? Dr. John Williams, chief of Children’s Hospital’s Division of Pediatric Infectious Diseases at UPMC Children's, explains why in this video: https://t.co/Ao7Vd1drgy</li>
##   <li>Most state officials have ordered restaurants and bars closed, with<span class='match'> the </span>exception of delivery. But is food delivery safe? Here’s what you need to know. #covid19 https://t.co/2rXb4WnQXx https://t.co/ygJySP3HUx</li>
##   <li>Cleaning and disinfecting are essential to preventing #COVID19 contamination from spreading into and throughout your household. It is recommended to clean visibly dirty surfaces BEFORE disinfecting.
##  
## Read more: https://t.co/qLVPHWWwIz https://t.co/I5L0ziGkRw</li>
##   <li>Dr. Birx: Coronavirus Data Doesn't Match The Doomsday Media Predictions.
## #TruthMatters #coronavirus #WuhanVirus #ChinaVirus 
## https://t.co/rnZ20FgxEH</li>
##   <li>He brought a picture of a plane to<span class='match'> the </span>presser. What<span class='match'> the </span>fuck. #coronavirus</li>
##   <li>Due to<span class='match'> the </span>unforeseen circumstances of<span class='match'> the </span>COVID-19 pandemic,<span class='match'> the </span>2020 Aubrey FFA Livestock Show and Sale will be canceled. We want to share a little about each student and their livestock projects from this year and ways you can support them. Read More&gt;&gt; https://t.co/ExyFxvzLY1 https://t.co/Y6Y0BFLjls</li>
##   <li>The Humber Bridge Board has taken<span class='match'> the </span>decision to close<span class='match'> the </span>toll booths to protect members of staff, key workers and those travelling for essential reasons  https://t.co/metw16baoj via @HumBridgeNews</li>
##   <li>I got a question. If your partner &amp; you’re future child both got covid-19 &amp; they both needed a ventilator, but there’s only one who are you putting on<span class='match'> the </span>ventilator ?</li>
##   <li>Tennessee unemployment claims surge 15-fold due to pandemic https://t.co/4DpGqCkRID #coronavirus #economy</li>
##   <li>My dad was watching NRL and I made a comment about how no one was in<span class='match'> the </span>crowds because of Covid-19 and then we both realised it was a replay from 2016</li>
##   <li>He's still minimizing it. He BOLD-FACED LIED about<span class='match'> the </span>#covid19 survival times on surfaces.
## 
## @Trevornoah 
## You need to talk to experts that are not aligned with<span class='match'> the </span>US government. You're helping tow<span class='match'> the </span>line. https://t.co/O3ivlSpoSW</li>
##   <li>@mschlapp Didn’t you (among others) say that this was a hoax and in-turn ended up exposing folks to COVID-19 at CPAC, having to self-quarantine? Or was that also “fake news”? Please stop. Just stop. You’re better than this.</li>
##   <li>The Office *COVID-19* edition: https://t.co/WbB9uJBbNl</li>
##   <li>Hey, China. Maybe you should have held your hackers off for a bit while COVID-19 ravaged<span class='match'> the </span>planet. Just a suggestion https://t.co/F8IKsRAkQt via @TheRegister https://t.co/bWiajOvaKc</li>
##   <li>@_Am_ne_sia_ @margaritamimi1 @Kittyfoster11 @briantylercohen @realDonaldTrump https://t.co/wdCZRDxcus
## 
## The FDA and<span class='match'> the </span>CDC created their own testing guidelines which is why it took so long to scale testing in<span class='match'> the </span>US. Lots of people are claiming that we rejected WHO test kits, which would mean that WHO created test kits to distribute.</li>
##   <li>Viewpoint: COVID-19 Shows Us Why We Should Keep ICE Out of Hospitals https://t.co/3mELA4altc https://t.co/RFdh9aacw1</li>
##   <li>Level 2 Research Operations Plans officially submitted.  The plan is: work from home. Don't come to campus.  And, yes, CompTaG has special permission to run "experiments" on our computers, including generating random point sets!
## 
## #covid19 #research #SocialDistancing @dlmillman</li>
##   <li>Thank you, @sherrodbrown and @robportman, for passing<span class='match'> the </span>latest COVID-19 stimulus package, which allocates $130 billion to hospitals and health systems. Your leadership on this issue has moved our nation one step closer to an end to this global pandemic.</li>
##   <li>@amandabarren @MorriseyWV WSAZ if everyone is ordered to stay inside. Then why is<span class='match'> the </span>ABORTION CLINIC in Charleston WV open?  The security guard is using vital PPE’s our hospitals need #ProLife #coronavirus https://t.co/W1q0MZoToJ</li>
##   <li>#SocialDistancing #CoronaLockdown #Coronavirus #COVID19 Check and listen now Midnight Kahuna_Brother Sun, Sister Moon by Midnight Kahuna @midnightkahuna on https://t.co/4zZsRPZYwX https://t.co/IDrj62GPk1</li>
##   <li>A decent night sleep, followed by waking up and realizing, "ah shit, another day of Covid-19 in<span class='match'> the </span>world" is getting really old.</li>
##   <li>California reports 1 new case bringing total confirmed cases there to 3,829 and 78 total deaths, with 831 new cases and 13 new deaths reported today.
## 
## #CoronaVirus #Covid19 #CoronaVirusOutbreak</li>
##   <li>"Coronavirus: Cases surpass half a million worldwide" #Coronavirus https://t.co/PiS4TcjkpB</li>
##   <li>Soldiers will be deployed to ensure overseas travellers comply with mandatory self-isolation rules as strict new COVID-19 quarantine measures come into effect, forcing all returning Australians into hotel rooms for two weeks.
## https://t.co/OIAE9I5pUz</li>
##   <li>@hughhewitt @realDonaldTrump Hugh, if you weren't such a closed minded conservative, you'd be able to hear how much bullshit Drumpf spews. A press briefing is not<span class='match'> the </span>place for him to whine about how much he spent to run for office. Capice? #2MinutesHomage #CommanderDementedBooBaby #Covid_19</li>
##   <li>Riding through<span class='match'> the </span>Adelaide Hills (yes I was solo) when I came across this art on a locals fence <U+0001F1E6><U+0001F1FA><U+0001F49B> #covid19australia #coronavirus https://t.co/psctK7MQvk</li>
##   <li>@BBCRadio4 #anyquestions @ilorafinlay #COVID19 we must not forget children and particularly child carers at<span class='match'> the </span>moment.</li>
##   <li>NYC ER nurse Covid-19 Discussion/Q&amp;A https://t.co/55pGQmxNsj</li>
##   <li>A 10-year-old boy in Florida has tested positive for #coronavirus. He was one of 23 new cases that tested positive on Wednesday, &amp; someone strikingly young for an area that originally had most of its cases in people aged 65
## 
## #CoronavirusOutbreak  #COVID19 https://t.co/npx37tdm3H</li>
##   <li>#Trump @realDonaldTrump Please finish<span class='match'> the </span>wall (and even a little bit higher), so that nobody can escape #coronavirus</li>
##   <li>#coronavirus daily data 
## #USA NEW CASE 17166 
## #CHINA NEW CASE 55
## #ITALY NEW CASE 6203
## #SPAIN 8271
## #GERMANY 6615
## #INDIA NEW CASE ONLY 55
## 
## thank you @narendramodi #PMO for protect India. https://t.co/UbTUIgHKoI</li>
##   <li>I just think it’s a hoot that I regularly stock up on one kind of hand sanitizer because I’m emetophobic, but it’s NOT<span class='match'> the </span>kind that kills COVID-19. <U+0001F611></li>
##   <li>Context Discriminant Analysis on latest NEWS 
## 2020/03/27 23:01:52 PST
## Top level Topics -coronavirus,coronavirus,covid-19,covid-19,health,health
## https://t.co/SoUeftYaBK</li>
##   <li>COVID-19: What you need to know about Health and Safety and Working On-Site  
## https://t.co/WqwCTMhEGr</li>
##   <li>@realDonaldTrump You can spend billions of $ on military, arms and wars miles away from your homeland every year, but you can't afford to test  your own citizens for #COVID19?!?
## What am I missing here?</li>
##   <li>How does one #StayAtHome  in a society that depends on everyone being out??
## #COVID19Kenya #KomeshaCorona #COVID19</li>
##   <li>From Silchar to Aligarh, medical colleges prep for COVID-19 https://t.co/rZ1KPaYNxo</li>
##   <li>How to protect your self from<span class='match'> the </span>corona virus.
## https://t.co/S006RsGpbK
## 
## #CoronavirusOutbreak #COVID19outbreak #COVID19 #USA #stage3 #WorkFromHome</li>
##   <li>From<span class='match'> the </span>Dome to Your Home: The House and Senate are in recess. Read this week’s report for information on COVID-19 resources. https://t.co/DaerOcqN3Z #StrongSCcities https://t.co/c9YTPfSHFl</li>
##   <li>Spring is here in Memphis and with<span class='match'> the </span>warmer weather hopefully a break in<span class='match'> the </span>number of #COVID2019 cases.  Praying for those in<span class='match'> the </span>hospital!  Bless those who are caring for all who are affected!  @SurgeryUTHSC @uthsc @MemphisDocs @LeBonheurChild @StJude #N95 #SocialDistancing https://t.co/6dSdxLVF0I</li>
##   <li>Covid-19 has help somehow shaa
## I mean, before who knew about NCDC..
## #TBJoshua 
## #StayAtHomeAndStaySafe 
## #PresidentCovik 
## #davido 
## #staysafe</li>
##   <li>Across Appalachia, community newsrooms<U+2013> from daily papers to online publications to rural weeklies<U+2013> are adapting to covering<span class='match'> the </span>novel coronavirus in new and innovative ways. https://t.co/S7RO5xl2xi https://t.co/vKwA3q9hTN</li>
##   <li>Obscure 1990’s SciFi show “Sliders” on point with<span class='match'> the </span>current state of affairs. #sliders #90s #coronavirus https://t.co/LduwaHYmyS</li>
##   <li>CANCELED: The alumni baseball game gathering previously scheduled for Tuesday, April 7 in Indianapolis has been canceled due to COVID-19. We will miss seeing you, but keep in contact! Drop us a line and let us know what you’re up to! #TogetherGU #AlumniGU</li>
##   <li>County of San Diego reports 58 new confirmed #coronavirus cases, our highest daily total, bringing<span class='match'> the </span>total to 341. Testing is still limited and health officials estimate<span class='match'> the </span>actual total is 10x higher with<span class='match'> the </span>numbers still trending higher. #flattenthecurve #inthistogether https://t.co/C15vyM1uXS</li>
##   <li>@jemobabu Most coronavirus deaths reported in a day:
## 
## - Italy: 919
## 
## - Spain: 773
## 
## - China: 254
## 
## If this doesn't make one has sense to care about himself as others.... Then go out and get your death dose. And in Kenya, you know a police death is faster than #COVID19</li>
##   <li>@Gunjantripathi6 @samirs45678 @MedhajNewsApp Sir can we have any forecast or deadline of covid 19 as per our one and only samir sir. As I have seen his forecasts were true in<span class='match'> the </span>past.plz sir we will have huge mental relief.plz sir write something.</li>
##   <li>The US$800 million will go towards producing medical supplies used to fight COVID-19, and in ad credits to government and health organizations and businesses.
## #YahooFinance
## https://t.co/ZnFVknZqly</li>
##   <li>THIS is ridiculous. 
## 
## My uncle is about to tend to a possible patient with COVID-19 and this is all<span class='match'> the </span>hospital has to protect him.
## 
## He is trying to keep a great attitude about<span class='match'> the </span>whole thing though... https://t.co/K9umdLOgtJ</li>
##   <li>I miss<span class='match'> the </span>days when you sneezed and people would say “Bless you”, now they just look at you all weird “get<span class='match'> the </span>fuck away from here” <U+0001F923><U+0001F923><U+0001F923>
## #CoronaVirus<U+0001F5E3></li>
##   <li>Still paying for your gym membership during COVID-19? Here's what you can do to freeze it https://t.co/OO1NqB5sAK</li>
##   <li>The display of solidarity last night with NHS workers was heartwarming.
## 
## We must urgently work to ensure that all our NHS workers have access to Personal Protective Equipment.
## 
## I am committed to continuing to listen and to work tirelessly on behalf of healthcare staff.
## 
## #COVID19 https://t.co/0VdX7pBF2p</li>
##   <li>@nxcare The A9 Stratford to Stansted service has been cancelled but<span class='match'> the </span>link to<span class='match'> the </span>refund form on your Covid 19 website is not working</li>
##   <li>I’ve read about<span class='match'> the </span>UK using levaquin as part of their chemo regimen to attack cancer cells. Wonder if it would help attack<span class='match'> the </span>COVID-19...</li>
##   <li>#HMRC has confirmed that #businesses should cancel their #VAT #DirectDebit if they wish to defer VAT payments until 30 June 2020.
## 
## #COVID19 #Coronavirus #Cumbria https://t.co/XHpr8bdGzy</li>
##   <li>Toilet paper's becoming harder to find each day, and many elderly and disabled are going without. But @Woolworths and Meals on Wheels have come to<span class='match'> the </span>rescue, teaming up to deliver some essential goods. https://t.co/16XT1hF4ho @annamcgraw_7 #coronavirus #7NEWS https://t.co/HCOdmgFVCO</li>
##   <li>Please watch this hilarious video of me playing horn. Content that doesn’t include covid-19<U+263A><U+FE0F> https://t.co/Lzr6Se3mAL</li>
##   <li>#Coronavirus update from @scotfooddrink https://t.co/AseNRk0SRC</li>
##   <li>Literally just down<span class='match'> the </span>road....
## 
## As<span class='match'> the </span>#CoronaVirus pandemic continues to claim lives, a temporary mortuary has been constructed in<span class='match'> the </span>main car park of<span class='match'> the </span>South #Essex Crematorium at #CorbetsTey, #Upminster. https://t.co/FPOguMal0H</li>
##   <li>Are you going to capitalize any previously accrued interest, like @usedgov @MyFedLoan are doing with<span class='match'> the </span>emergency administrative Covid-19 forbearance? If so, you probably aren't going to help as many as you're giving off<span class='match'> the </span>impression of helping. At least be honest. https://t.co/rY4pM5BFVq</li>
##   <li>Well that was dramatic. #COVID19 #coronavirus #CoronaLockdown</li>
##   <li>@TorontoStar For<span class='match'> the </span>sake of Covid-19 infection control,( +C-Diff ,Flu ,MRSA, VRE) Big Policy changes are needed. Full-time positions need to be created , to stop healthcare workers from working three different jobs/care home facilities etc.  to get a full time hours. It’s important for H&amp;S https://t.co/lpaNkk2piK</li>
##   <li>Each institution’s allotted amount will be determined by a formula based on full-time equivalent enrollment of Pell Grant recipients at an institution (75 percent) and using full-time equivalent enrollment of non-Pell students (25 percent). #highered  #COVID19 #CapinEd https://t.co/TUPhI7aUVy</li>
##   <li>For those that actually believe China’s COVID-19 death numbers #ChinaLiedPeopleDied https://t.co/zvsiKwBUXu</li>
##   <li>@suttontownhall @nickhorner @RoyalSutColTC Looking forward to<span class='match'> the </span>town hall helping<span class='match'> the </span>community during #covid19</li>
##   <li>SIR model of infection. I really love<span class='match'> the </span>animations in<span class='match'> the </span>@3blue1brown  videos. #CoronaLockdown #coronavirus #selfisolating  #3blue1brown
## https://t.co/bNSSKOtgha</li>
##   <li>Professor Robert @RBReich just said that we need to put<span class='match'> the </span>economy in what I would compare to a medically induced coma and bring it back after<span class='match'> the </span>medical problem of COVID-19 has been dealt with successfully. People’s lives must come first - and deal with<span class='match'> the </span>money later.</li>
##   <li>@segalink @MBuhari So he is receiving  treatment for COVID-19 and working at<span class='match'> the </span>same time</li>
##   <li>Learning to live with 6 feet of separation ain’t easy. <U+2014> Hive https://t.co/kF4AwriCut #covid19 #hive #pandemic #stayathome #shopping #6feet #socialdistancing #canada #starwars #darth</li>
##   <li>Stop it! Stop it now! #DeborahBirx #koolaid #COVID19 https://t.co/RJdDDMoQ0R https://t.co/Nl7M2EB1dR</li>
##   <li>@RahulDev005 @MoHFW_INDIA @drharshvardhan @IndianMedAssn @ndtvindia Despite giving assurance of withdrawing<span class='match'> the </span>ads, if<span class='match'> the </span>advertiser continues with claims regarding efficacy against #coronavirus #COVID kindly report to @moayush @AIIA_NDelhi @MIB_India Stay vigilant, #StayHomeStaySafe #FollowASCI</li>
##   <li>Good night, South Africa <U+0001F1FF><U+0001F1E6> Tomorrow we wake up to a new normal. Let us do it right, so it's only 21 days. 
##  #LockdownSA #21daysLockdownSA #GautengCOVID19 #COVID19SouthAfrica #COVID2019</li>
##   <li>#DonaldTrump: Navy vessel with medical supplies coming to #NYC to serve as a hospital. Should be arriving on Monday. "I think I'm going to go out and kiss it goodbye. ... We'll be waving together. I suspect<span class='match'> the </span>media will be following." #coronavirus #TrumpPressConf</li>
##   <li>What<span class='match'> the </span>world needs now.... https://t.co/kQ0lq1vzvK #COVID19 @BerkleeCollege students</li>
##   <li>What an absolute liar you are. Nothing changes then. Even in a global crisis, your still a despicable human being. #COVID19 https://t.co/glSpvBNXes</li>
##   <li>In<span class='match'> the </span>latest numbers as of March 26 noon in new maps released by<span class='match'> the </span>health director-general yesterday,<U+00A0>the number of hotspots designated as red zones has continued to grow in tandem with<span class='match'> the </span>increase in<span class='match'> the </span>total cumulative confirmed Covid-19 cases. 
## 
## #covid19 #malaysia https://t.co/9PjOZgiYRq</li>
##   <li>Find out what you need in order to get tested: https://t.co/Gx0ur6Enya
## 
## #COVID #COVID<U+30FC>19 https://t.co/DHKiQ9Xvuh</li>
##   <li>Number of days to double #Covid19 confirmed cases (March 26). Canada: 2. USA: 4. World: 7. China: 45. Italy: 7. Spain: 5. Germany: 5. Iran: 11. France: 5. Switzerland: 5. UK: 5.  South Korea: 24.  Netherlands: 5. Austria: 5. Japan: 14.  Singapore: 8. https://t.co/oNmPLoHCwW</li>
##   <li>we have upheld<span class='match'> the </span>national &amp; international laws, however, unfortunately,the state authorities have been abducting &amp; extra-judicially murdering<span class='match'> the </span>Baloch dissidents,carrying out military operations in #Balochisthan .
## 
## #COVID2019  
## #Enforceddisappearances  https://t.co/gsPNycuQs1</li>
##   <li>OKC's Gallinari helping fund COVID-19 test kits https://t.co/mqQaPyNmeu</li>
##   <li>162 cases of Covid-19 from<span class='match'> the </span>Ruby Princess in NSW alone. Who has taken responsibilty and apologised?</li>
##   <li>Which system is better equipped to prepare for, manage, minimise or avert a major crisis such as<span class='match'> the </span>Covid-19 pandemic? #COVID19 #COVID<U+30FC>19 #covid19UK please retweet for big sample, constructive comments welcome.</li>
##   <li>Stay at home guys.... #CoronaVirus #AnimalCrossing #Day3 #ACNH #NintendoSwitch https://t.co/N0aGrPvuUc</li>
##   <li>"I've always wanted to be a neighbourhood ~influencer~."
## 
## - my dad while putting up<span class='match'> the </span>Christmas lights #coronavirus</li>
##   <li>#COVID19 Checklist 
## 
## <U+0001F447><U+0001F3FE> https://t.co/nfdQ4zC6g0</li>
##   <li>There are now 1,170 cases of #COVID19 #Coronavirus in #NewOrleans, 57 of which resulted in death. 
## 
## Continue to stay home except for essential needs. https://t.co/XOY9kQgJ6A</li>
##   <li>@BAOMS_Chair More here on all PPE masks gowns gloves hand hygiene https://t.co/Ky3bk8V6gB @EvidenceAid</li>
##   <li>https://t.co/h4GOyE3dLS
## 
## Why exercise is important for your hair during lockdown covid 19 https://t.co/S985DIFmnu</li>
##   <li>We're supposed to be having #FUN by this age of our time , we lost our teen years to wars , threatening and displacement.
## 
## And now this #Covid_19 shits going on ...
## It's apocalypse
## 
## #StayHome 
## #StayAtHome 
## #WeAreStillYoung</li>
##   <li><U+0001F43B>Senior Spotlight: MSU softball<U+0001F94E> senior pitcher Stephanie Rundlett discussed some of<span class='match'> the </span>impact of<span class='match'> the </span>#coronavirus,<span class='match'> the </span>season getting cancelled and plans for<span class='match'> the </span>future.
## Read<U+0001F199><U+0001F449>https://t.co/Hksic2cuWW
## #TheMorganWay #MEAC
## #GoBears<U+0001F537><U+0001F536> https://t.co/xlA97OFL12</li>
##   <li>This is being opportunistic and selfish.
## Trying to steal African Professionals and leave Africa vulnerable to #COVID19 https://t.co/WxxUNzyXsb</li>
##   <li>Well Said!
## 
## “The fact is we save our economy by first saving lives, and we have to do it in that order.” ~ Mike DeWine, Gov of Ohio (R)
## 
## #coronavirus</li>
##   <li>*sighs heavily*
## We know, we know
## 
## Here you go: https://t.co/a8nP9cWE8q https://t.co/M4M2tAn78i</li>
##   <li>Join @HealthiestIowa #HealthyChoicesCount #SocialMediaChallenge for Iowans of all ages! Post a photo or video of yourself (or family members) participating in healthy habits on Facebook, Twitter or Instagram. Learn more, https://t.co/HiPy6WY9nh</li>
##   <li>Loving #GreatBrtishHomeChorus, over 100k people have joined! Proud to be #GBHCAlto, 18000+ singing along this afternoon. #COVID2019 challenged through music.</li>
##   <li>COVID-19: Commission creates first ever rescEU stockpile of medical equipment https://t.co/xNt2uc4Asq</li>
##   <li>Below is a link to a video explaining what<span class='match'> the </span>survey is about. My aunt in california is onto something with her cannabis research and how it affects covid 19. PLEASE if you have tested positive take<span class='match'> the </span>survey!
## Https:/www.cannabisque.gov/covid19
## https://t.co/kYw7grerE2</li>
##   <li>Love home office days but I miss traveling and I kinda miss you guys @Marriott it won’t be much longer! #coronavirus lockdown</li>
##   <li>Word on<span class='match'> the </span>street is that Ebury Forex is asking clients with profitable open positions for margin calls, sounds like somebody is in trouble, perhaps<span class='match'> the </span>first of many? https://t.co/Zl2XdUNpld
## 
## #Forex #fx #GBP #COVID2019</li>
##   <li>@kidungprasetia @muddrockk looh sopo nick e?, covid-19 a?,</li>
##   <li>PRAYING MEDIC DECODE: Q, Trump, COVID 19 &amp; What's Coming https://t.co/pdCyIsOI3s via @YouTube</li>
##   <li>CoronaVirus Updates: Informational dashboard provides continuous updates on COVID-19 in San Antonio - FOX 29 https://t.co/oX56Esfjlz #CoronaVirusUpdates</li>
##   <li>When they said you were too old and fragile to be PM, but now that young clown has COVID-19.. <U+0001F4AA><U+0001F3FB><U+0001F468><U+0001F3FB><U+200D><U+0001F9B3><U+0001F9A0> https://t.co/V4I1vLpVdU</li>
##   <li>#SouthAfrica: COVID-19 Lockdown Update I Minister Patel says larger part of<span class='match'> the </span>economy shut down https://t.co/CQf9pikq4M</li>
##   <li>@ByronYork Pres Trump's ratings are 60%. Democrats, Independence &amp; Republicans are seeing a real leader Pres Trump. And millions more people are seeing how fake news is lying to their faces. Now fake news is threatening<span class='match'> the </span>health of every single American by not airing #CoronaVirus updates. https://t.co/Sr2alofKR6</li>
##   <li>Be honest! Don't pretend it's business as usual when it's clearly not. Try to be positive but keep<span class='match'> the </span>information flowing #DigitalTaunton #COVID2019</li>
##   <li>Arizona Waives Emissions Testing For Seniors To Reduce COVID-19 Risk https://t.co/l4jfYTvR4A</li>
##   <li>‘Slight chance of optimism’ that COVID-19 growth rate slowing https://t.co/26PWnurtIk #BC #COVID19Canada</li>
##   <li>Our Executive Director, @NoreenSpring spoke with @brendanmarkcole of @Newsweek on experiencing a spike in calls to our Find Food Hotline due to<span class='match'> the </span>massive impact #COVID19 has had on vulnerable communities &amp;<span class='match'> the </span>state of hunger across<span class='match'> the </span>country. https://t.co/EiARUoAua4</li>
##   <li>IMPORTANT: The CDC just confirmed that #coronavirus alters<span class='match'> the </span>shape of a woman’s index toe. If you need help spotting<span class='match'> the </span>change please send me a picture of your feet and I will help you identify it.</li>
##   <li>@GSTTnhs are working very hard to help our #COVID19 patients
## 
## I want to personally thank the
##  @GSTTanaesthesia team for their innovation and support, <span class='match'> the </span> @GSTT_ICU team for their drive and compassion and<span class='match'> the </span> @LClinical for their dedication to patients
## 
## #proud #honoured 
## #NHS</li>
##   <li>https://t.co/ch8F8S4cx5
## Covid-19 spreading countries visualizer link #COVID19 #india #CoronaVirusFacts https://t.co/DcPx7GXBQg</li>
##   <li>Kind of a jolt when you check<span class='match'> the </span>weather and your favorite weather site now includes a COVID-19 tab. https://t.co/BjpnOPC3XX</li>
##   <li>@vmochama WTF?  Not only is #COVID19 worse in USA, California is particularly impacted. Plus, we don't have Tim Hortons in California!!!!</li>
##   <li>Looks promising so far  , fingers crossed. #COVID19 #coronavirus https://t.co/xS6McJL9hb</li>
##   <li>REACTing bi-weekly shares a selection of<span class='match'> the </span>most relevant articles published on COVID-19. 
## 
## https://t.co/cFpHYMAGpC</li>
##   <li>Another well played. To all<span class='match'> the </span>people in our street doing #clapforNHS #COVID2019 Esp as two of our neighbours are working in critical care #NHSheroes</li>
##   <li>Who Going To The #EasterMassacre <U+0001F423>
## #COVID2019 " That Aint Right!"
## #StayHomeSaveLives <U+0001F691> https://t.co/jxAQOZ87zM</li>
##   <li>@bukmstr39 @toddstarnes Perspective: visit your tweet every 3-4 days for<span class='match'> the </span>next two months.  Then add<span class='match'> the </span>numbers for<span class='match'> the </span>dead that<span class='match'> the </span>hospitals don't bother counting as Covid-19 stats since they don't test obvious critical cases or corpses.   This is 2x as contagious and at least 10x as deadly.</li>
##   <li>@jdanton I'm here for my 2024 COVID 19 booster</li>
##   <li>From 1.26.20. @realDonaldTrump just basically used this line, But for<span class='match'> the </span>#coronavirus .......
## 
## @federalreserve @POTUS and everyone else can wash their hands of everything and blame<span class='match'> the </span>virus. 
## 
## @RepThomasMassie is right, something isn't right. The stimulus bill is a #trojanhorse https://t.co/OcuybgnKLL</li>
##   <li>Some thoughts on how donors should use<span class='match'> the </span>COVID-19 crisis to assess non-profits’ long-term strengths and potential -&gt; https://t.co/IPIjXduEC4 via @GenevaGlobal</li>
##   <li>Good woman,
## 
## Must you further your education before deciding to render humanitarian services to your country?? It's unfair.
## I'm sure most microbiologists presently conducting research &amp; investigations in labs about #COVID<U+30FC>19 virus don't have such outstanding result of yours. https://t.co/eSpCoagdtI</li>
##   <li>75% of consumers think that brands should communicate their activities, while 78% think that they should assist in our daily lives. Added pressure on brands during<span class='match'> the </span>#coronavirus crisis &gt; https://t.co/jefmIMDxvV
## 
## #coronaupdate #business #marketing</li>
##   <li>We always mocked that products made in China expire soon!
## 
## China proved us wrong by developing #COVID19!</li>
##   <li>The PM was panicked into abandoning a sensible Covid-19 strategy, and has plunged society into crisis 
## 
## Yet another journo with most impressive medical qualifications gives us<span class='match'> the </span>benefit of her superior knowledge!</li>
##   <li>@Orca23456 @KevinMKruse @RightWingWatch @AG_USA Apparently they might get sued by<span class='match'> the </span>family members of folks who die because they contracted COVID-19 at church.</li>
##   <li>Pope Francis: Why are you afraid? Have you yet no faith? Faith begins when we realize we are in need of salvation, we are not self-sufficient @rapplerdotcom #COVID19 #coronavirus</li>
##   <li>What you need to know about<span class='match'> the </span>new COVID-19 benefits program https://t.co/EmK87qM0ei</li>
##   <li>In hindsight, whose Waterloo is it? .. And whose story is it anyway? #Saccades is a one-year sequence of undeveloped photo films, one a week, and<span class='match'> the </span>story is in your hands... Check out  https://t.co/eis2sYFw8r #art #London #China #US #lockdown #photography #Waterloo #COVID19 https://t.co/zr2s19pDBP</li>
##   <li>In this special #AIBMarketTalk podcast, Cathy Bryce, Head of Corporate, Institutional &amp; Business Banking discusses<span class='match'> the </span>impact of Covid-19 on businesses and lessons learnt so far, with AIB’s Oliver Mangan &amp; Tom Hall.  Listen here https://t.co/YjHFw3E1oq https://t.co/YomCrsRabW</li>
##   <li>“No accountability. No clarity. Few specifics.” <U+2014> In other words, typical #Trump <U+0001F621> <U+2014> hope voters in #Michigan #Pennsylvania #Wisconsin #Florida #Ohio #Iowa #Texas #Arizona #Georgia #Tennessee <U+0001F9D0> remember #POTUS downplayed<span class='match'> the </span>#coronavirus if you get it <U+0001F620> https://t.co/Z2hTUkx5Hs</li>
##   <li>Every #American needs to see this #CCP #XiJinpingVirus #ChinaLiedPeopleDied #coronavirus garbage. #ChinaLiedPeopleDie if this is<span class='match'> the </span>best that #BeijingBros can do they are screwed and they know it #ByeByeCCP https://t.co/45G1msjsVQ</li>
##   <li>#Avs player tested positive for coronavirus and has recovered.
## https://t.co/ZyB0nY1hZ3</li>
##   <li>The Cheesecake Factory : Cheesecake factory should pay employees during COVID-19 Outbreak. - Sign<span class='match'> the </span>Petition! https://t.co/znO3cru9UR via @Change</li>
##   <li>@ChinaDaily @MFA_China @chinaorgcn @Echinanews 
## @SCMPNews
## 
## #China spread #ChineseVirus19 i.e. nCOVID-19
## 
## #COVID19 #CORONA is A CHINESE VIRUS.
## 
## I Repeat, #COVID19 is #ChineseVirus.
## 
## @sardanarohit @aajtak 
## @ZeeNews @republic 
## @IndianExpress @indiatvnews 
## @narendramodi @PMOIndia https://t.co/DnKlZtwHPq</li>
##   <li>@LessArmstrong @YouTube Siobhan are you okay? I heard via Caroline you have Covid 19. Sending my love and hopefully a speedy recovery x</li>
##   <li>#covid_19 #daily #truth #time <U+0001F92B> 
## 1. I love #running &amp; working out <U+2014>but with other #people around <U+0001F3C3><U+0001F3FB><U+0001F3CB><U+0001F3FB><U+200D>♀<U+FE0F><U+0001F62D> 
## 2. Newporters: You can make #eyecontact with someone running by who #smiles &amp; you won’t get #coronavirus <U+0001F30A>… https://t.co/m0TzlrGxSa</li>
##   <li>How many of you saw it as PENJARA<U+2014>KAN SOSIAL rather than PEN-JARAKAN SOSIAL first time around? Well I’m one haha #Covid_19 #Social_Distancing #MCO</li>
##   <li>As we practice social distancing, many seniors &amp; vulnerable people in our community are facing challenges with picking up essentials, such as groceries, &amp; caring for themselves. Call and check on them to make sure they have what they need. More: https://t.co/yHpsfltg8d. https://t.co/ppWlTydIWs</li>
##   <li>@Bishop_PastorRW @LakeShowDoe @JasonSpencer_LD @Jaimon10Gl @BleacherReport way less than half and losing more of his flock everday due to this covid 19 because of his stupidity...</li>
##   <li>Criminal defense attorney discusses work limitations due to COVID-19 - WKRG News 5 - https://t.co/mtRGVzcExJ</li>
##   <li>Here's something you can do *right now* to help save<span class='match'> the </span>lives of children during<span class='match'> the </span>#COVID19 pandemic. #personhood https://t.co/F4xzp6MrqP</li>
##   <li>Help slow<span class='match'> the </span>spread of #COVID19 and identify at risk cases sooner by self-reporting your symptoms daily, even if you feel well  <U+0001F64F><U+0001F3FC>. Download<span class='match'> the </span>app https://t.co/MZORZwkTEP</li>
##   <li>@CassieY4 I had a BiPAP for a couple of days, then started getting better. I had interstitial pneumonitis, but probably not COVID-19. It was torture, because I was not allowed to drink<span class='match'> the </span>whole time. Got thrush and was unable to speak.</li>
##   <li>@RoseKeffas_G Same here Sis!                                                               
## Together we will impact and empower women and youth in Africa. Can't wait to have you at<span class='match'> the </span>#Solution17 Studio. Please stay save,<span class='match'> the </span>scourge #COVID19 will be wiped out shortly by God's grace</li>
##   <li>TB JOSHUA about to be dragged like dog wey enter mosque tomorrow #CoronaVirusInNigeria #COVID2019 https://t.co/KR2NupKL5X</li>
##   <li>Government communicators are key in getting information out to their communities, especially as<span class='match'> the </span>#coronavirus crisis continues. Here are some tips on effectively communicating during this time from our #GSMChat community. #TogetherGSM  #lesm #smem https://t.co/vlGKmuT77k</li>
##   <li>Athens COVID-19 update for 26 March 2020 can be viewed at https://t.co/aD116u3uqq. A third case has been reported for McMinn County.</li>
##   <li>Healthy Father Of Six Dies of Coronavirus In Texas
## 
## 'It can kill anyone': 'Perfectly healthy' Texas dad dies from virus https://t.co/jpmfr8LsyP</li>
##   <li>Teen Who Died of Covid-19 Was Denied Treatment Because He Didn't Have Health Insurance https://t.co/eC2A97GuCj</li>
##   <li>Free and family friendly: What to watch while you stay at home | CBC News https://t.co/lx8X3cj6qE</li>
##   <li>My art with a message about #coronavirus https://t.co/M7BeI1NLlT</li>
##   <li>@MikeLMower y’all trying to burn out that COVID-19 <U+0001F602><U+0001F525> https://t.co/lM43Rj9Pk6</li>
##   <li>Barber shop closed because of COVID-19? We got precedent for that! Wanna go 1777 levels? Oh yeah, grow that hair out, slick it back, put it in that ponytail. Maybe smear some bear grease in - can use EVOO in a pinch - and throw some flour on it to look like a fancy officer https://t.co/V0tH2IIFv6</li>
##   <li>Covid-19: A New Humanity, A New World -By Owei Lakemfa https://t.co/H40gJHeIAs https://t.co/D2p9jz5cAj</li>
##   <li>@AOC Screw<span class='match'> the </span>illegals, we want to take care of #Americans first.   If you don't like it you can leave with them too.
## 
## You are a #Coronavirus
## 
## Here is a present for you #MAGA #MAGA #MAGA 
## #Trump2020 #Trump2020 #Trump2020 https://t.co/z9rtdGO6pA</li>
##   <li>Philips ramps up production in response to COVID-19 pandemic - News | Philips https://t.co/Nnjpo4DPP0</li>
##   <li>@DylanKe09193346 @sjanemurf @RTEsport Please do some minimal learning <U+0001F447>
## https://t.co/GBbar6ybOy</li>
##   <li>I'm on day 11 of being crowded by a bunch of people and risking being Covid-19'ed. Practicing distancing big time until further notice. Stress-testing my lungs by climbing 12 flights of stairs and avoiding<span class='match'> the </span>elevator.</li>
##   <li>Those who have Netflix. Search a show called “My Secret Terrius”. It is a Japanese tv show released in 2018. Click on episode 10 of season 1. Fast forward till 54:00 and start reading<span class='match'> the </span>subtitles. #CoronavirusOubreak is bio warfare intended for China &amp; Iran that has backfired.</li>
##   <li>#Coronavirus LIVE updayes: Today's UK death toll increase is<span class='match'> the </span>bigggest day-on-day rise since outbreak began 
## #coronaviruslockdown
## https://t.co/2rzJqM2edV https://t.co/NaEgxwR7Ry</li>
##   <li>@nigerianports @NCDCgov NSCDC found cases of COVID-19 on a vessel, NPA is not aware of it and Twitter is<span class='match'> the </span>place to bring this ignorance?</li>
##   <li>Well in any case @ighalojude is Already a LEGEND however you look at it. 
## For me and all @manutd #fans we will Support him #UnConditionally 
## 
## #StayHomeSaveLives 
## #COVID19 #LetsFightCovid19 
## #SouthAfricaLockdown 
## #PrayForGhana 
## #PrayForNigeria 
## #PrayforWorld https://t.co/zwnai0Fsw1</li>
##   <li>Stop waiting, 
## get going, 
## while slowing...
## 
## #cawee #icftoronto #positivevibes #socialdistancing #covid_19 #whattodo @ Mississauga, Ontario https://t.co/TDDkx23nul</li>
##   <li>Deadly outbreak of #coronavirus jolts #Italy country on lockdown, School, Universities, Restaurants and Ports has been closed as death toll jumps to 9,134. There are 86,498 people are positive for<span class='match'> the </span>infection by virus. Italian Health officials said https://t.co/LEjQalwaQR</li>
##   <li>So wait. #Trump had a “pandemic playbook” and ignored it? So he’s so egotistical that he refused to listen due to his complete ignorance and inability to take intelligent input. Holy shit. #coronavirus @MSNBC</li>
##   <li>A super bad, transmittable, contagious, awful virus is<span class='match'> the </span>2020 take on supercalifragilisticexpialidocious.
## 
## https://t.co/YQwIfzcEKp</li>
##   <li>You need to give your customers something that is valuable now. Don't just keep on pushing<span class='match'> the </span>same products and services as usual #DigitalTaunton #COVID2019</li>
##   <li>@htTweets Please advise<span class='match'> the </span>@PMOIndia regarding<span class='match'> the </span>#FreeandMassTesting of #coronavirus cases. One of<span class='match'> the </span>major “giant” steps needed right now.</li>
##   <li>@brat2381 1/ The first few days<span class='match'> the </span>FL Dept. of Health had their COVID-19 Dashboard on-line, there was a tab allowing you to see how many people in each county had been tested. Then one day<span class='match'> the </span>link to<span class='match'> the </span>dashboard (I had bookmarked it) stopped working. Going back in through their main…</li>
##   <li>@shortfuse70 Hello.  We're providing PTO for associates diagnosed w/ COVID-19, placed under mandatory quarantine &amp; PTO for self isolation &amp; symptoms as verified by an accredited health care professional. All eligible associates will receive their standard pay for up to two weeks.</li>
##   <li>If nothing else - The US Office / #Coronavirus memes might be my new favourite #Instagram rabbit hole</li>
##   <li>Informative tele town hall with @uarizona leaders discussing how<span class='match'> the </span>university is leveraging its world class research and experts for Arizona's COVID-19 response. @UArizonaPres @UAZHealth</li>
##   <li>#FlattenTheCurve #COVID19 
## 
## USA's trajectory is worse than Italy's
## Canada is showing good early signs of flattening<span class='match'> the </span>curve, still requires a lot of effort
## Germany, Spain looking bad
## UK's numbers will rise before coming down https://t.co/tqzh2Ochrp</li>
##   <li>Pay attention, everyone ! Please ! #Coronavirus https://t.co/8GnFcp8uF6</li>
##   <li>@ImranKhanPTI passive immunisation can save our COVID-19 patients.
## #ChineseVirus19
## #COVID2019
## #coronavirusinpakistan #CoronavirusOubreak
## #DrTahirShamsi https://t.co/ZzQxAXvlzx</li>
##   <li>This is<span class='match'> the </span>body I would have had if not for COVID-19 https://t.co/rTNh6xR1aA</li>
##   <li>Why does this look like such 
## a 
## normal 
## morning?
## 
## <U+0001F641>
## 
## Dawn rises on a total lockdown in Ireland 
## 
## #IrelandLockdown #Ireland #WildAtlanticWay #SkelligCoast. #Covid19 
## #Waterville https://t.co/OOlaWhDyST</li>
##   <li>Nurse Karen Reissmann speaks out for tonight's #ClapForOurCarers action to show support and #solidarity to #NHS workers from<span class='match'> the </span>frontline fighting #Covid19   
## We must also oppose<span class='match'> the </span>'hostile environment and #StopToryRacism because... #MigrantsMakeOurNH… https://t.co/AAZz9oLMvB</li>
##   <li>https://t.co/N9mc5UdT2O Bezos And Other Corporate Execs Sold Billions In Stock Before COVID-19 Rocked Market</li>
##   <li>43<U+00A0> <U+00A0> #writers Is #COVID-19 affecting your book launches and promotions? Read my #blogpost to find out how your #socialmedia can help you during<span class='match'> the </span>#pandemic:<U+00A0>https://t.co/etXKa2jDXb #amwriting #writingcommunity #writersnetwork #storyteller</li>
##   <li>Do yourself a favour...
## 
## https://t.co/ROcdT3o9TW
## 
## Please watch this, Quite possibly<span class='match'> the </span>most level headed video I've seen on<span class='match'> the </span>data capturing behind COVID-19.
## 
## It makes a lot of very rational and understandable points.</li>
##   <li>i thought we were in a corona virus pandemic now you’re telling me people are getting covid-19 too?? when will it stop</li>
## </ul>
## 
## 
## $width
## NULL
## 
## $height
## NULL
## 
## $sizingPolicy
## $sizingPolicy$defaultWidth
## NULL
## 
## $sizingPolicy$defaultHeight
## [1] 300
## 
## $sizingPolicy$padding
## NULL
## 
## $sizingPolicy$viewer
## $sizingPolicy$viewer$defaultWidth
## NULL
## 
## $sizingPolicy$viewer$defaultHeight
## NULL
## 
## $sizingPolicy$viewer$padding
## NULL
## 
## $sizingPolicy$viewer$fill
## [1] TRUE
## 
## $sizingPolicy$viewer$suppress
## [1] FALSE
## 
## $sizingPolicy$viewer$paneHeight
## NULL
## 
## 
## $sizingPolicy$browser
## $sizingPolicy$browser$defaultWidth
## NULL
## 
## $sizingPolicy$browser$defaultHeight
## NULL
## 
## $sizingPolicy$browser$padding
## NULL
## 
## $sizingPolicy$browser$fill
## [1] FALSE
## 
## $sizingPolicy$browser$external
## [1] FALSE
## 
## 
## $sizingPolicy$knitr
## $sizingPolicy$knitr$defaultWidth
## NULL
## 
## $sizingPolicy$knitr$defaultHeight
## [1] "100%"
## 
## $sizingPolicy$knitr$figure
## [1] FALSE
## 
## 
## 
## $dependencies
## NULL
## 
## $elementId
## NULL
## 
## $preRenderHook
## NULL
## 
## $jsHooks
## list()
## 
## $<NA>
## NULL
## 
## $<NA>
## NULL
# pattern 즉 정규표현 구성을 지정하는 옵션값 설정

이처럼 간단해 보일지 모르지만 강조해야할 몇 가지 세부 사항이 있습니다. 첫 번째는 정규표현식 검색이 대소 문자를 구분한다는 것입니다. 이 말은 곧, " THe "라는 표현은 어떤 패턴과도 매칭되지 않는다는 것을 의미합니다..

str_extract_all(covid19_tw_sample$text, " THe ")[1:10] # 정규표현식은 대소 문자를 구별하므로 "THe"와는 아무 것도 일치하지 않습니다.
## [[1]]
## character(0)
## 
## [[2]]
## character(0)
## 
## [[3]]
## character(0)
## 
## [[4]]
## character(0)
## 
## [[5]]
## character(0)
## 
## [[6]]
## character(0)
## 
## [[7]]
## character(0)
## 
## [[8]]
## character(0)
## 
## [[9]]
## character(0)
## 
## [[10]]
## character(0)

숫자는 어떨까요? 다행히 모든 숫자(문자도 마찬가지입니다)는 리터럴 문자로 간주됩니다. 패턴 “100”을 테스트 해봅시다.

covid19_tw_sample$text[14]
## [1] "@RudyGiuliani @jeffgiesea @charliekirk11 Preventative measures that succeed in preventing people from getting COVID-19 have a 100% \"effective\" rate. I'd rather not get sick in the first place, thank you, Doctor G, Rudy."
str_extract_all(covid19_tw_sample$text[14], "100") # 모든 숫자는 리터럴 문자입니다.
## [[1]]
## [1] "100"

메타 문자

이제 우리는 메타문자(metacharacter)에 대해서 학습할 것입니다. 가장 기본적인 유형의 정규 표현식은 자신과 일치하는 리터럴 문자입니다. 하지만 모든 문자가 리터럴 문자는 아닙니다. 정규 표현을 구성하는 데 있어서 특수 목적을 갖고 그 역할을 수행하는 문자들도 있습니다. 그것이 바로 메타문자입니다. 이런 유형의 문자는 특별한 의미가 있기 때문에 일괄적으로 리터럴 문자들을 찾아내는 데 유용합니다.

정규표현식에서 metacharacters에는 15개의 종류가 있습니다. 각 기능에 대해서는 앞으로 적용해가면서 배워봅시다.

앞으로 우리는 이러한 메타 문자를 응용하여 정규 표현을 구성하는 법을 알아 볼 것입니다. 사실, 정규 표현식에서 중요한 것은 이 메타 문자가 어떻게 작동하는지 이해하고 적용하는 것입니다. 다행히, 메타 문자의 종류가 아주 많지는 않죠. 하지만 몇몇 메타 문자에는 하나 이상의 의미를 가진 것도 있습니다. 그리고 이 경우 메타 문자의 의미는 사용하는 맥락, 사용 방법, 사용 장소에 따라 달라지게 되죠. 마치 우리가 일상적으로하는 대화에서도 같은 어휘라도, 문맥에 따라 그 의미가 완전히 달라지게 되는 경우가 있는 것 처럼 말이죠. 따라서 이러한 정규 표현의 메타 문자를 이해하고 응용에 익숙해지는 데에는 시간이 다소 걸릴 수 있으며 많은 연습이 필요합니다.

와일드 메타 문자

우리가 배울 첫 메타 문자는 wild 메타 문자로 더 잘 알려진 “.”(점)입니다. 이 메타 문자는 모든 리터럴 문자를 찾는데 (매칭하는데) 사용됩니다.

예를 들어, "t.e"로 구성된 regex를 생각해봅시다. 이 표현은 “the”라는 패턴 뿐만 아니라, “tae”, “tee”, “tie”, “toe” 등 과도 매칭됩니다. 그러나 하나의 점은 하나의 단일 문자와만 일치하므로 “thee”, “tree”, 또는 “tube”와는 매칭되지 않습니다.

위키피디아 페이지의 텍스트를 단어 단위로 토큰화한 결과가 벡터로 할당된 covid19_tw_sample$text 객체에 이 정규표현을 적용해 보겠습니다.

str_extract_all(covid19_tw_sample$text[1:10], "t.e")
## [[1]]
## [1] "the" "the"
## 
## [[2]]
## [1] "the" "the"
## 
## [[3]]
## [1] "the" "the"
## 
## [[4]]
## [1] "the" "the"
## 
## [[5]]
## [1] "the" "the"
## 
## [[6]]
## [1] "tne" "the"
## 
## [[7]]
## [1] "the" "the"
## 
## [[8]]
## [1] "the" "the"
## 
## [[9]]
## character(0)
## 
## [[10]]
## [1] "tle" "the" "tie" "tne"
str_extract_all(covid19_tw_sample$text, "t.e ")
## [[1]]
## [1] "the "
## 
## [[2]]
## [1] "the " "the "
## 
## [[3]]
## [1] "the " "the "
## 
## [[4]]
## [1] "the " "the "
## 
## [[5]]
## [1] "the " "the "
## 
## [[6]]
## [1] "the "
## 
## [[7]]
## character(0)
## 
## [[8]]
## [1] "the "
## 
## [[9]]
## character(0)
## 
## [[10]]
## [1] "tle " "the "
## 
## [[11]]
## [1] "the " "the "
## 
## [[12]]
## [1] "the "
## 
## [[13]]
## [1] "the "
## 
## [[14]]
## [1] "the "
## 
## [[15]]
## character(0)
## 
## [[16]]
## [1] "the " "the "
## 
## [[17]]
## [1] "the " "the "
## 
## [[18]]
## [1] "the "
## 
## [[19]]
## [1] "the " "the " "the " "the "
## 
## [[20]]
## character(0)
## 
## [[21]]
## character(0)
## 
## [[22]]
## character(0)
## 
## [[23]]
## character(0)
## 
## [[24]]
## character(0)
## 
## [[25]]
## character(0)
## 
## [[26]]
## character(0)
## 
## [[27]]
## character(0)
## 
## [[28]]
## [1] "the "
## 
## [[29]]
## [1] "the " "the " "the "
## 
## [[30]]
## character(0)
## 
## [[31]]
## [1] "the "
## 
## [[32]]
## character(0)
## 
## [[33]]
## [1] "the "
## 
## [[34]]
## [1] "the " "the " "the "
## 
## [[35]]
## character(0)
## 
## [[36]]
## character(0)
## 
## [[37]]
## character(0)
## 
## [[38]]
## character(0)
## 
## [[39]]
## character(0)
## 
## [[40]]
## [1] "the "
## 
## [[41]]
## [1] "the " "the "
## 
## [[42]]
## character(0)
## 
## [[43]]
## [1] "the " "the " "the "
## 
## [[44]]
## character(0)
## 
## [[45]]
## [1] "the " "the "
## 
## [[46]]
## [1] "the "
## 
## [[47]]
## character(0)
## 
## [[48]]
## character(0)
## 
## [[49]]
## [1] "the "
## 
## [[50]]
## character(0)
## 
## [[51]]
## [1] "the "
## 
## [[52]]
## character(0)
## 
## [[53]]
## character(0)
## 
## [[54]]
## character(0)
## 
## [[55]]
## character(0)
## 
## [[56]]
## character(0)
## 
## [[57]]
## [1] "the "
## 
## [[58]]
## character(0)
## 
## [[59]]
## character(0)
## 
## [[60]]
## character(0)
## 
## [[61]]
## [1] "the " "the "
## 
## [[62]]
## character(0)
## 
## [[63]]
## [1] "the " "the " "the " "the " "the "
## 
## [[64]]
## character(0)
## 
## [[65]]
## [1] "the "
## 
## [[66]]
## [1] "the "
## 
## [[67]]
## character(0)
## 
## [[68]]
## [1] "the " "the "
## 
## [[69]]
## [1] "the " "the " "the "
## 
## [[70]]
## [1] "the " "the "
## 
## [[71]]
## character(0)
## 
## [[72]]
## [1] "the "
## 
## [[73]]
## character(0)
## 
## [[74]]
## character(0)
## 
## [[75]]
## character(0)
## 
## [[76]]
## character(0)
## 
## [[77]]
## [1] "the "
## 
## [[78]]
## character(0)
## 
## [[79]]
## character(0)
## 
## [[80]]
## character(0)
## 
## [[81]]
## [1] "the " "the " "the "
## 
## [[82]]
## character(0)
## 
## [[83]]
## [1] "the "
## 
## [[84]]
## character(0)
## 
## [[85]]
## [1] "the "
## 
## [[86]]
## character(0)
## 
## [[87]]
## character(0)
## 
## [[88]]
## [1] "the " "the " "the "
## 
## [[89]]
## character(0)
## 
## [[90]]
## character(0)
## 
## [[91]]
## character(0)
## 
## [[92]]
## [1] "the "
## 
## [[93]]
## character(0)
## 
## [[94]]
## [1] "the "
## 
## [[95]]
## [1] "the " "the "
## 
## [[96]]
## character(0)
## 
## [[97]]
## [1] "the "
## 
## [[98]]
## character(0)
## 
## [[99]]
## character(0)
## 
## [[100]]
## character(0)
## 
## [[101]]
## character(0)
## 
## [[102]]
## [1] "the " "the "
## 
## [[103]]
## character(0)
## 
## [[104]]
## character(0)
## 
## [[105]]
## [1] "the " "tee " "the " "the " "the " "the "
## 
## [[106]]
## [1] "the " "the " "the "
## 
## [[107]]
## character(0)
## 
## [[108]]
## [1] "the " "the " "the "
## 
## [[109]]
## [1] "the " "the "
## 
## [[110]]
## [1] "the " "the " "the "
## 
## [[111]]
## [1] "the " "the " "the " "the " "the "
## 
## [[112]]
## [1] "the " "the "
## 
## [[113]]
## character(0)
## 
## [[114]]
## [1] "the "
## 
## [[115]]
## character(0)
## 
## [[116]]
## character(0)
## 
## [[117]]
## [1] "the "
## 
## [[118]]
## character(0)
## 
## [[119]]
## character(0)
## 
## [[120]]
## character(0)
## 
## [[121]]
## character(0)
## 
## [[122]]
## character(0)
## 
## [[123]]
## character(0)
## 
## [[124]]
## character(0)
## 
## [[125]]
## [1] "the "
## 
## [[126]]
## character(0)
## 
## [[127]]
## character(0)
## 
## [[128]]
## [1] "the "
## 
## [[129]]
## [1] "the "
## 
## [[130]]
## [1] "the " "the " "the "
## 
## [[131]]
## [1] "the "
## 
## [[132]]
## character(0)
## 
## [[133]]
## character(0)
## 
## [[134]]
## [1] "the " "the " "the "
## 
## [[135]]
## character(0)
## 
## [[136]]
## character(0)
## 
## [[137]]
## character(0)
## 
## [[138]]
## character(0)
## 
## [[139]]
## character(0)
## 
## [[140]]
## [1] "the " "the "
## 
## [[141]]
## character(0)
## 
## [[142]]
## [1] "the "
## 
## [[143]]
## [1] "the " "the "
## 
## [[144]]
## [1] "the "
## 
## [[145]]
## character(0)
## 
## [[146]]
## character(0)
## 
## [[147]]
## [1] "the " "the "
## 
## [[148]]
## [1] "the "
## 
## [[149]]
## character(0)
## 
## [[150]]
## character(0)
## 
## [[151]]
## character(0)
## 
## [[152]]
## [1] "the "
## 
## [[153]]
## [1] "the " "the "
## 
## [[154]]
## [1] "the " "the " "the "
## 
## [[155]]
## [1] "the "
## 
## [[156]]
## [1] "the " "the "
## 
## [[157]]
## character(0)
## 
## [[158]]
## character(0)
## 
## [[159]]
## [1] "the "
## 
## [[160]]
## [1] "the "
## 
## [[161]]
## character(0)
## 
## [[162]]
## [1] "the "
## 
## [[163]]
## [1] "the " "the " "the " "the " "the "
## 
## [[164]]
## character(0)
## 
## [[165]]
## [1] "the " "the "
## 
## [[166]]
## [1] "the "
## 
## [[167]]
## character(0)
## 
## [[168]]
## character(0)
## 
## [[169]]
## [1] "the " "the "
## 
## [[170]]
## character(0)
## 
## [[171]]
## character(0)
## 
## [[172]]
## character(0)
## 
## [[173]]
## character(0)
## 
## [[174]]
## character(0)
## 
## [[175]]
## character(0)
## 
## [[176]]
## character(0)
## 
## [[177]]
## character(0)
## 
## [[178]]
## character(0)
## 
## [[179]]
## [1] "the " "the "
## 
## [[180]]
## [1] "the "
## 
## [[181]]
## [1] "the "
## 
## [[182]]
## character(0)
## 
## [[183]]
## character(0)
## 
## [[184]]
## character(0)
## 
## [[185]]
## character(0)
## 
## [[186]]
## [1] "the "
## 
## [[187]]
## [1] "the " "the "
## 
## [[188]]
## [1] "the "
## 
## [[189]]
## [1] "the " "the " "the "
## 
## [[190]]
## character(0)
## 
## [[191]]
## character(0)
## 
## [[192]]
## character(0)
## 
## [[193]]
## character(0)
## 
## [[194]]
## character(0)
## 
## [[195]]
## character(0)
## 
## [[196]]
## character(0)
## 
## [[197]]
## [1] "the "
## 
## [[198]]
## character(0)
## 
## [[199]]
## [1] "the "
## 
## [[200]]
## [1] "the "
## 
## [[201]]
## [1] "tre "
## 
## [[202]]
## [1] "the " "the "
## 
## [[203]]
## character(0)
## 
## [[204]]
## character(0)
## 
## [[205]]
## [1] "the "
## 
## [[206]]
## character(0)
## 
## [[207]]
## [1] "the "
## 
## [[208]]
## character(0)
## 
## [[209]]
## [1] "the " "the " "the " "the " "the "
## 
## [[210]]
## [1] "the " "the " "the "
## 
## [[211]]
## [1] "the "
## 
## [[212]]
## character(0)
## 
## [[213]]
## [1] "the " "the "
## 
## [[214]]
## [1] "tle "
## 
## [[215]]
## character(0)
## 
## [[216]]
## character(0)
## 
## [[217]]
## character(0)
## 
## [[218]]
## [1] "the " "the " "the "
## 
## [[219]]
## [1] "the " "the "
## 
## [[220]]
## [1] "the "
## 
## [[221]]
## character(0)
## 
## [[222]]
## [1] "the "
## 
## [[223]]
## character(0)
## 
## [[224]]
## character(0)
## 
## [[225]]
## [1] "the " "the " "the " "the " "the "
## 
## [[226]]
## character(0)
## 
## [[227]]
## character(0)
## 
## [[228]]
## [1] "the "
## 
## [[229]]
## character(0)
## 
## [[230]]
## character(0)
## 
## [[231]]
## [1] "the "
## 
## [[232]]
## [1] "the "
## 
## [[233]]
## [1] "the " "the "
## 
## [[234]]
## character(0)
## 
## [[235]]
## character(0)
## 
## [[236]]
## [1] "the "
## 
## [[237]]
## character(0)
## 
## [[238]]
## character(0)
## 
## [[239]]
## [1] "the "
## 
## [[240]]
## character(0)
## 
## [[241]]
## [1] "the "
## 
## [[242]]
## [1] "the "
## 
## [[243]]
## character(0)
## 
## [[244]]
## [1] "the " "the "
## 
## [[245]]
## character(0)
## 
## [[246]]
## [1] "the "
## 
## [[247]]
## character(0)
## 
## [[248]]
## [1] "the " "the "
## 
## [[249]]
## character(0)
## 
## [[250]]
## character(0)
## 
## [[251]]
## [1] "the " "the "
## 
## [[252]]
## [1] "the "
## 
## [[253]]
## [1] "the "
## 
## [[254]]
## character(0)
## 
## [[255]]
## [1] "the "
## 
## [[256]]
## [1] "the " "the "
## 
## [[257]]
## character(0)
## 
## [[258]]
## character(0)
## 
## [[259]]
## character(0)
## 
## [[260]]
## character(0)
## 
## [[261]]
## character(0)
## 
## [[262]]
## character(0)
## 
## [[263]]
## [1] "the "
## 
## [[264]]
## [1] "the "
## 
## [[265]]
## [1] "the " "the " "the " "the " "tle " "the "
## 
## [[266]]
## [1] "the " "the " "the " "the "
## 
## [[267]]
## [1] "the " "the "
## 
## [[268]]
## character(0)
## 
## [[269]]
## [1] "the " "the " "the "
## 
## [[270]]
## character(0)
## 
## [[271]]
## [1] "the " "the " "the "
## 
## [[272]]
## [1] "the "
## 
## [[273]]
## [1] "the " "the "
## 
## [[274]]
## character(0)
## 
## [[275]]
## character(0)
## 
## [[276]]
## [1] "the " "the "
## 
## [[277]]
## [1] "tte " "the " "the " "the "
## 
## [[278]]
## character(0)
## 
## [[279]]
## [1] "the "
## 
## [[280]]
## [1] "the "
## 
## [[281]]
## [1] "the "
## 
## [[282]]
## character(0)
## 
## [[283]]
## [1] "the " "the " "the "
## 
## [[284]]
## character(0)
## 
## [[285]]
## [1] "the "
## 
## [[286]]
## character(0)
## 
## [[287]]
## character(0)
## 
## [[288]]
## character(0)
## 
## [[289]]
## character(0)
## 
## [[290]]
## [1] "the "
## 
## [[291]]
## [1] "the "
## 
## [[292]]
## character(0)
## 
## [[293]]
## [1] "the "
## 
## [[294]]
## [1] "tee "
## 
## [[295]]
## [1] "the " "the "
## 
## [[296]]
## character(0)
## 
## [[297]]
## character(0)
## 
## [[298]]
## [1] "tle "
## 
## [[299]]
## [1] "the "
## 
## [[300]]
## [1] "the " "the " "the "
## 
## [[301]]
## [1] "the "
## 
## [[302]]
## character(0)
## 
## [[303]]
## [1] "the " "the " "the " "the "
## 
## [[304]]
## character(0)
## 
## [[305]]
## [1] "the "
## 
## [[306]]
## [1] "the "
## 
## [[307]]
## character(0)
## 
## [[308]]
## [1] "the "
## 
## [[309]]
## [1] "the "
## 
## [[310]]
## [1] "the "
## 
## [[311]]
## [1] "the " "the "
## 
## [[312]]
## [1] "the " "the " "the "
## 
## [[313]]
## character(0)
## 
## [[314]]
## [1] "the "
## 
## [[315]]
## [1] "the "
## 
## [[316]]
## character(0)
## 
## [[317]]
## [1] "the "
## 
## [[318]]
## character(0)
## 
## [[319]]
## character(0)
## 
## [[320]]
## [1] "the " "the "
## 
## [[321]]
## [1] "the "
## 
## [[322]]
## [1] "the "
## 
## [[323]]
## character(0)
## 
## [[324]]
## character(0)
## 
## [[325]]
## character(0)
## 
## [[326]]
## character(0)
## 
## [[327]]
## [1] "the "
## 
## [[328]]
## [1] "the "
## 
## [[329]]
## character(0)
## 
## [[330]]
## character(0)
## 
## [[331]]
## [1] "the " "the " "the "
## 
## [[332]]
## [1] "the " "the "
## 
## [[333]]
## character(0)
## 
## [[334]]
## character(0)
## 
## [[335]]
## [1] "the "
## 
## [[336]]
## character(0)
## 
## [[337]]
## [1] "the " "the " "the " "tMe "
## 
## [[338]]
## character(0)
## 
## [[339]]
## [1] "the "
## 
## [[340]]
## character(0)
## 
## [[341]]
## [1] "the "
## 
## [[342]]
## character(0)
## 
## [[343]]
## character(0)
## 
## [[344]]
## [1] "the "
## 
## [[345]]
## [1] "the "
## 
## [[346]]
## [1] "the " "the "
## 
## [[347]]
## [1] "the "
## 
## [[348]]
## character(0)
## 
## [[349]]
## [1] "the " "the " "the " "the " "the "
## 
## [[350]]
## [1] "the " "the "
## 
## [[351]]
## character(0)
## 
## [[352]]
## [1] "the " "the "
## 
## [[353]]
## [1] "the "
## 
## [[354]]
## character(0)
## 
## [[355]]
## character(0)
## 
## [[356]]
## character(0)
## 
## [[357]]
## [1] "the "
## 
## [[358]]
## [1] "the "
## 
## [[359]]
## character(0)
## 
## [[360]]
## [1] "the " "the "
## 
## [[361]]
## [1] "the "
## 
## [[362]]
## [1] "the "
## 
## [[363]]
## [1] "the "
## 
## [[364]]
## character(0)
## 
## [[365]]
## character(0)
## 
## [[366]]
## character(0)
## 
## [[367]]
## character(0)
## 
## [[368]]
## [1] "the "
## 
## [[369]]
## [1] "the " "the "
## 
## [[370]]
## character(0)
## 
## [[371]]
## character(0)
## 
## [[372]]
## [1] "the "
## 
## [[373]]
## character(0)
## 
## [[374]]
## character(0)
## 
## [[375]]
## character(0)
## 
## [[376]]
## character(0)
## 
## [[377]]
## [1] "the "
## 
## [[378]]
## [1] "the " "the " "the " "the "
## 
## [[379]]
## [1] "the "
## 
## [[380]]
## character(0)
## 
## [[381]]
## [1] "the " "the "
## 
## [[382]]
## [1] "the "
## 
## [[383]]
## [1] "the " "the " "the " "the "
## 
## [[384]]
## character(0)
## 
## [[385]]
## [1] "the "
## 
## [[386]]
## character(0)
## 
## [[387]]
## [1] "the "
## 
## [[388]]
## [1] "the " "the "
## 
## [[389]]
## [1] "the "
## 
## [[390]]
## [1] "the "
## 
## [[391]]
## character(0)
## 
## [[392]]
## [1] "the "
## 
## [[393]]
## character(0)
## 
## [[394]]
## character(0)
## 
## [[395]]
## [1] "the "
## 
## [[396]]
## [1] "the "
## 
## [[397]]
## character(0)
## 
## [[398]]
## [1] "the "
## 
## [[399]]
## character(0)
## 
## [[400]]
## character(0)
## 
## [[401]]
## character(0)
## 
## [[402]]
## [1] "the "
## 
## [[403]]
## [1] "the "
## 
## [[404]]
## character(0)
## 
## [[405]]
## character(0)
## 
## [[406]]
## character(0)
## 
## [[407]]
## character(0)
## 
## [[408]]
## [1] "the "
## 
## [[409]]
## character(0)
## 
## [[410]]
## character(0)
## 
## [[411]]
## [1] "the "
## 
## [[412]]
## character(0)
## 
## [[413]]
## [1] "the "
## 
## [[414]]
## character(0)
## 
## [[415]]
## character(0)
## 
## [[416]]
## [1] "the " "the " "the "
## 
## [[417]]
## character(0)
## 
## [[418]]
## [1] "the "
## 
## [[419]]
## character(0)
## 
## [[420]]
## [1] "the "
## 
## [[421]]
## character(0)
## 
## [[422]]
## character(0)
## 
## [[423]]
## [1] "the " "the " "the " "the "
## 
## [[424]]
## character(0)
## 
## [[425]]
## [1] "the "
## 
## [[426]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[427]]
## [1] "the "
## 
## [[428]]
## character(0)
## 
## [[429]]
## character(0)
## 
## [[430]]
## character(0)
## 
## [[431]]
## character(0)
## 
## [[432]]
## [1] "the "
## 
## [[433]]
## character(0)
## 
## [[434]]
## character(0)
## 
## [[435]]
## [1] "the "
## 
## [[436]]
## [1] "the " "the " "the "
## 
## [[437]]
## character(0)
## 
## [[438]]
## character(0)
## 
## [[439]]
## character(0)
## 
## [[440]]
## character(0)
## 
## [[441]]
## [1] "the " "the "
## 
## [[442]]
## [1] "the "
## 
## [[443]]
## [1] "the " "the "
## 
## [[444]]
## character(0)
## 
## [[445]]
## [1] "the "
## 
## [[446]]
## character(0)
## 
## [[447]]
## character(0)
## 
## [[448]]
## [1] "the "
## 
## [[449]]
## [1] "the " "the " "the "
## 
## [[450]]
## [1] "the "
## 
## [[451]]
## [1] "the "
## 
## [[452]]
## [1] "the "
## 
## [[453]]
## [1] "the "
## 
## [[454]]
## character(0)
## 
## [[455]]
## character(0)
## 
## [[456]]
## character(0)
## 
## [[457]]
## [1] "the " "the "
## 
## [[458]]
## [1] "the " "the "
## 
## [[459]]
## [1] "the " "the " "the " "the " "the "
## 
## [[460]]
## character(0)
## 
## [[461]]
## character(0)
## 
## [[462]]
## character(0)
## 
## [[463]]
## [1] "the " "the "
## 
## [[464]]
## character(0)
## 
## [[465]]
## character(0)
## 
## [[466]]
## [1] "the "
## 
## [[467]]
## character(0)
## 
## [[468]]
## [1] "the " "the " "the "
## 
## [[469]]
## [1] "the "
## 
## [[470]]
## character(0)
## 
## [[471]]
## [1] "the "
## 
## [[472]]
## character(0)
## 
## [[473]]
## [1] "the " "the "
## 
## [[474]]
## [1] "the "
## 
## [[475]]
## character(0)
## 
## [[476]]
## [1] "the "
## 
## [[477]]
## [1] "the " "the "
## 
## [[478]]
## [1] "the "
## 
## [[479]]
## character(0)
## 
## [[480]]
## [1] "the " "the "
## 
## [[481]]
## [1] "the "
## 
## [[482]]
## character(0)
## 
## [[483]]
## character(0)
## 
## [[484]]
## [1] "the "
## 
## [[485]]
## character(0)
## 
## [[486]]
## [1] "the "
## 
## [[487]]
## character(0)
## 
## [[488]]
## [1] "the "
## 
## [[489]]
## [1] "the " "the "
## 
## [[490]]
## [1] "the "
## 
## [[491]]
## character(0)
## 
## [[492]]
## character(0)
## 
## [[493]]
## character(0)
## 
## [[494]]
## [1] "the " "the "
## 
## [[495]]
## character(0)
## 
## [[496]]
## character(0)
## 
## [[497]]
## [1] "the "
## 
## [[498]]
## [1] "the "
## 
## [[499]]
## character(0)
## 
## [[500]]
## [1] "the "
## 
## [[501]]
## [1] "the "
## 
## [[502]]
## [1] "the "
## 
## [[503]]
## [1] "the "
## 
## [[504]]
## character(0)
## 
## [[505]]
## [1] "the " "the " "the " "the "
## 
## [[506]]
## character(0)
## 
## [[507]]
## [1] "the "
## 
## [[508]]
## character(0)
## 
## [[509]]
## character(0)
## 
## [[510]]
## character(0)
## 
## [[511]]
## character(0)
## 
## [[512]]
## [1] "the " "the "
## 
## [[513]]
## character(0)
## 
## [[514]]
## [1] "the "
## 
## [[515]]
## [1] "the " "the "
## 
## [[516]]
## character(0)
## 
## [[517]]
## character(0)
## 
## [[518]]
## [1] "the "
## 
## [[519]]
## character(0)
## 
## [[520]]
## character(0)
## 
## [[521]]
## character(0)
## 
## [[522]]
## [1] "the "
## 
## [[523]]
## character(0)
## 
## [[524]]
## [1] "the "
## 
## [[525]]
## character(0)
## 
## [[526]]
## character(0)
## 
## [[527]]
## [1] "the " "the " "the "
## 
## [[528]]
## [1] "the "
## 
## [[529]]
## character(0)
## 
## [[530]]
## character(0)
## 
## [[531]]
## [1] "the "
## 
## [[532]]
## [1] "the "
## 
## [[533]]
## character(0)
## 
## [[534]]
## character(0)
## 
## [[535]]
## character(0)
## 
## [[536]]
## [1] "the "
## 
## [[537]]
## [1] "the "
## 
## [[538]]
## [1] "the " "the "
## 
## [[539]]
## character(0)
## 
## [[540]]
## character(0)
## 
## [[541]]
## character(0)
## 
## [[542]]
## [1] "the " "the " "the " "the "
## 
## [[543]]
## character(0)
## 
## [[544]]
## [1] "the "
## 
## [[545]]
## character(0)
## 
## [[546]]
## [1] "the "
## 
## [[547]]
## character(0)
## 
## [[548]]
## character(0)
## 
## [[549]]
## character(0)
## 
## [[550]]
## [1] "the " "the "
## 
## [[551]]
## character(0)
## 
## [[552]]
## character(0)
## 
## [[553]]
## [1] "the " "the " "the "
## 
## [[554]]
## character(0)
## 
## [[555]]
## character(0)
## 
## [[556]]
## [1] "the " "the "
## 
## [[557]]
## [1] "tle "
## 
## [[558]]
## character(0)
## 
## [[559]]
## [1] "the "
## 
## [[560]]
## [1] "the "
## 
## [[561]]
## character(0)
## 
## [[562]]
## character(0)
## 
## [[563]]
## [1] "the "
## 
## [[564]]
## [1] "the " "the "
## 
## [[565]]
## character(0)
## 
## [[566]]
## character(0)
## 
## [[567]]
## [1] "the " "the "
## 
## [[568]]
## character(0)
## 
## [[569]]
## character(0)
## 
## [[570]]
## character(0)
## 
## [[571]]
## [1] "the "
## 
## [[572]]
## character(0)
## 
## [[573]]
## character(0)
## 
## [[574]]
## character(0)
## 
## [[575]]
## character(0)
## 
## [[576]]
## character(0)
## 
## [[577]]
## [1] "the "
## 
## [[578]]
## [1] "the "
## 
## [[579]]
## character(0)
## 
## [[580]]
## character(0)
## 
## [[581]]
## [1] "the "
## 
## [[582]]
## [1] "the " "the "
## 
## [[583]]
## [1] "the " "the "
## 
## [[584]]
## [1] "the " "the "
## 
## [[585]]
## [1] "the " "the "
## 
## [[586]]
## [1] "the "
## 
## [[587]]
## character(0)
## 
## [[588]]
## character(0)
## 
## [[589]]
## character(0)
## 
## [[590]]
## character(0)
## 
## [[591]]
## character(0)
## 
## [[592]]
## [1] "the " "the " "the "
## 
## [[593]]
## character(0)
## 
## [[594]]
## [1] "the "
## 
## [[595]]
## character(0)
## 
## [[596]]
## character(0)
## 
## [[597]]
## [1] "the " "the "
## 
## [[598]]
## [1] "the "
## 
## [[599]]
## [1] "the " "the "
## 
## [[600]]
## character(0)
## 
## [[601]]
## [1] "the "
## 
## [[602]]
## [1] "the "
## 
## [[603]]
## character(0)
## 
## [[604]]
## character(0)
## 
## [[605]]
## [1] "the " "the "
## 
## [[606]]
## character(0)
## 
## [[607]]
## character(0)
## 
## [[608]]
## [1] "the "
## 
## [[609]]
## character(0)
## 
## [[610]]
## character(0)
## 
## [[611]]
## character(0)
## 
## [[612]]
## character(0)
## 
## [[613]]
## [1] "the "
## 
## [[614]]
## character(0)
## 
## [[615]]
## character(0)
## 
## [[616]]
## character(0)
## 
## [[617]]
## character(0)
## 
## [[618]]
## character(0)
## 
## [[619]]
## [1] "the " "the " "the "
## 
## [[620]]
## [1] "the " "the "
## 
## [[621]]
## character(0)
## 
## [[622]]
## [1] "the " "the " "the "
## 
## [[623]]
## [1] "the " "the "
## 
## [[624]]
## [1] "the "
## 
## [[625]]
## character(0)
## 
## [[626]]
## [1] "the " "the "
## 
## [[627]]
## character(0)
## 
## [[628]]
## [1] "the " "the "
## 
## [[629]]
## character(0)
## 
## [[630]]
## character(0)
## 
## [[631]]
## character(0)
## 
## [[632]]
## character(0)
## 
## [[633]]
## [1] "the " "the " "the "
## 
## [[634]]
## [1] "the "
## 
## [[635]]
## [1] "the "
## 
## [[636]]
## [1] "the "
## 
## [[637]]
## character(0)
## 
## [[638]]
## character(0)
## 
## [[639]]
## [1] "the "
## 
## [[640]]
## [1] "the "
## 
## [[641]]
## character(0)
## 
## [[642]]
## [1] "the " "the "
## 
## [[643]]
## character(0)
## 
## [[644]]
## [1] "the "
## 
## [[645]]
## character(0)
## 
## [[646]]
## character(0)
## 
## [[647]]
## character(0)
## 
## [[648]]
## [1] "the "
## 
## [[649]]
## [1] "the " "the " "the "
## 
## [[650]]
## character(0)
## 
## [[651]]
## character(0)
## 
## [[652]]
## [1] "the " "the " "the "
## 
## [[653]]
## [1] "tre "
## 
## [[654]]
## character(0)
## 
## [[655]]
## character(0)
## 
## [[656]]
## character(0)
## 
## [[657]]
## character(0)
## 
## [[658]]
## [1] "tle " "the " "the "
## 
## [[659]]
## [1] "the "
## 
## [[660]]
## character(0)
## 
## [[661]]
## character(0)
## 
## [[662]]
## character(0)
## 
## [[663]]
## [1] "the "
## 
## [[664]]
## [1] "the " "the "
## 
## [[665]]
## character(0)
## 
## [[666]]
## character(0)
## 
## [[667]]
## [1] "the "
## 
## [[668]]
## character(0)
## 
## [[669]]
## character(0)
## 
## [[670]]
## [1] "the "
## 
## [[671]]
## [1] "the "
## 
## [[672]]
## [1] "the " "the " "the " "the " "the "
## 
## [[673]]
## character(0)
## 
## [[674]]
## [1] "the " "the " "the " "the "
## 
## [[675]]
## [1] "the "
## 
## [[676]]
## [1] "the "
## 
## [[677]]
## [1] "the "
## 
## [[678]]
## character(0)
## 
## [[679]]
## character(0)
## 
## [[680]]
## [1] "the "
## 
## [[681]]
## [1] "the "
## 
## [[682]]
## character(0)
## 
## [[683]]
## character(0)
## 
## [[684]]
## character(0)
## 
## [[685]]
## [1] "the "
## 
## [[686]]
## [1] "the "
## 
## [[687]]
## [1] "the "
## 
## [[688]]
## character(0)
## 
## [[689]]
## [1] "the " "the "
## 
## [[690]]
## character(0)
## 
## [[691]]
## character(0)
## 
## [[692]]
## [1] "the " "the "
## 
## [[693]]
## character(0)
## 
## [[694]]
## character(0)
## 
## [[695]]
## [1] "the " "the " "the "
## 
## [[696]]
## character(0)
## 
## [[697]]
## character(0)
## 
## [[698]]
## [1] "the "
## 
## [[699]]
## [1] "the " "the " "the "
## 
## [[700]]
## character(0)
## 
## [[701]]
## character(0)
## 
## [[702]]
## character(0)
## 
## [[703]]
## character(0)
## 
## [[704]]
## character(0)
## 
## [[705]]
## [1] "the "
## 
## [[706]]
## [1] "the " "the "
## 
## [[707]]
## [1] "the " "the "
## 
## [[708]]
## [1] "the "
## 
## [[709]]
## [1] "the "
## 
## [[710]]
## [1] "the "
## 
## [[711]]
## [1] "the "
## 
## [[712]]
## [1] "the " "the "
## 
## [[713]]
## [1] "the "
## 
## [[714]]
## character(0)
## 
## [[715]]
## [1] "the " "the "
## 
## [[716]]
## [1] "tle " "the "
## 
## [[717]]
## character(0)
## 
## [[718]]
## character(0)
## 
## [[719]]
## [1] "the " "the "
## 
## [[720]]
## [1] "the "
## 
## [[721]]
## [1] "the "
## 
## [[722]]
## [1] "the "
## 
## [[723]]
## [1] "the "
## 
## [[724]]
## character(0)
## 
## [[725]]
## [1] "the "
## 
## [[726]]
## character(0)
## 
## [[727]]
## character(0)
## 
## [[728]]
## character(0)
## 
## [[729]]
## [1] "the "
## 
## [[730]]
## [1] "the "
## 
## [[731]]
## [1] "the "
## 
## [[732]]
## character(0)
## 
## [[733]]
## [1] "the "
## 
## [[734]]
## [1] "the " "the "
## 
## [[735]]
## [1] "the " "the "
## 
## [[736]]
## [1] "the "
## 
## [[737]]
## character(0)
## 
## [[738]]
## character(0)
## 
## [[739]]
## character(0)
## 
## [[740]]
## [1] "the " "the " "the "
## 
## [[741]]
## [1] "the " "the "
## 
## [[742]]
## [1] "the " "the " "the "
## 
## [[743]]
## [1] "the "
## 
## [[744]]
## character(0)
## 
## [[745]]
## [1] "the " "the " "the "
## 
## [[746]]
## [1] "the "
## 
## [[747]]
## character(0)
## 
## [[748]]
## [1] "the " "the "
## 
## [[749]]
## [1] "the "
## 
## [[750]]
## [1] "the "
## 
## [[751]]
## character(0)
## 
## [[752]]
## [1] "the "
## 
## [[753]]
## character(0)
## 
## [[754]]
## [1] "the "
## 
## [[755]]
## [1] "the "
## 
## [[756]]
## [1] "the "
## 
## [[757]]
## character(0)
## 
## [[758]]
## character(0)
## 
## [[759]]
## [1] "the "
## 
## [[760]]
## [1] "the " "the "
## 
## [[761]]
## character(0)
## 
## [[762]]
## [1] "the "
## 
## [[763]]
## [1] "the " "the " "the "
## 
## [[764]]
## character(0)
## 
## [[765]]
## character(0)
## 
## [[766]]
## character(0)
## 
## [[767]]
## character(0)
## 
## [[768]]
## character(0)
## 
## [[769]]
## character(0)
## 
## [[770]]
## character(0)
## 
## [[771]]
## [1] "the " "the "
## 
## [[772]]
## [1] "the " "the "
## 
## [[773]]
## [1] "the "
## 
## [[774]]
## character(0)
## 
## [[775]]
## [1] "the "
## 
## [[776]]
## [1] "the "
## 
## [[777]]
## character(0)
## 
## [[778]]
## character(0)
## 
## [[779]]
## character(0)
## 
## [[780]]
## [1] "the " "the " "the " "the "
## 
## [[781]]
## [1] "the "
## 
## [[782]]
## [1] "the " "the "
## 
## [[783]]
## [1] "the "
## 
## [[784]]
## [1] "the "
## 
## [[785]]
## character(0)
## 
## [[786]]
## [1] "the " "the " "tle " "the "
## 
## [[787]]
## [1] "the " "the "
## 
## [[788]]
## [1] "the "
## 
## [[789]]
## character(0)
## 
## [[790]]
## character(0)
## 
## [[791]]
## [1] "the " "the " "the " "the "
## 
## [[792]]
## [1] "the " "tle "
## 
## [[793]]
## [1] "the " "the " "the "
## 
## [[794]]
## [1] "the "
## 
## [[795]]
## character(0)
## 
## [[796]]
## character(0)
## 
## [[797]]
## character(0)
## 
## [[798]]
## character(0)
## 
## [[799]]
## character(0)
## 
## [[800]]
## character(0)
## 
## [[801]]
## character(0)
## 
## [[802]]
## [1] "the "
## 
## [[803]]
## [1] "the "
## 
## [[804]]
## [1] "the "
## 
## [[805]]
## [1] "the "
## 
## [[806]]
## character(0)
## 
## [[807]]
## character(0)
## 
## [[808]]
## [1] "the "
## 
## [[809]]
## character(0)
## 
## [[810]]
## character(0)
## 
## [[811]]
## [1] "the " "the "
## 
## [[812]]
## [1] "the " "the " "the "
## 
## [[813]]
## [1] "the " "the " "the "
## 
## [[814]]
## [1] "the " "the "
## 
## [[815]]
## character(0)
## 
## [[816]]
## [1] "the " "the "
## 
## [[817]]
## character(0)
## 
## [[818]]
## character(0)
## 
## [[819]]
## [1] "the "
## 
## [[820]]
## [1] "the "
## 
## [[821]]
## [1] "the "
## 
## [[822]]
## character(0)
## 
## [[823]]
## character(0)
## 
## [[824]]
## character(0)
## 
## [[825]]
## [1] "the " "the "
## 
## [[826]]
## [1] "the "
## 
## [[827]]
## character(0)
## 
## [[828]]
## character(0)
## 
## [[829]]
## character(0)
## 
## [[830]]
## [1] "the " "the "
## 
## [[831]]
## character(0)
## 
## [[832]]
## [1] "the " "the " "the "
## 
## [[833]]
## [1] "tle "
## 
## [[834]]
## character(0)
## 
## [[835]]
## [1] "the " "the "
## 
## [[836]]
## character(0)
## 
## [[837]]
## character(0)
## 
## [[838]]
## [1] "the " "the " "the " "the "
## 
## [[839]]
## character(0)
## 
## [[840]]
## [1] "the " "the " "the "
## 
## [[841]]
## [1] "the "
## 
## [[842]]
## [1] "the " "the "
## 
## [[843]]
## [1] "the " "the " "the "
## 
## [[844]]
## [1] "the "
## 
## [[845]]
## [1] "the "
## 
## [[846]]
## [1] "the " "the "
## 
## [[847]]
## [1] "the " "tte " "the "
## 
## [[848]]
## [1] "the "
## 
## [[849]]
## [1] "the " "the " "the "
## 
## [[850]]
## [1] "the "
## 
## [[851]]
## [1] "the "
## 
## [[852]]
## character(0)
## 
## [[853]]
## character(0)
## 
## [[854]]
## character(0)
## 
## [[855]]
## character(0)
## 
## [[856]]
## character(0)
## 
## [[857]]
## character(0)
## 
## [[858]]
## [1] "the "
## 
## [[859]]
## character(0)
## 
## [[860]]
## character(0)
## 
## [[861]]
## [1] "the " "the "
## 
## [[862]]
## character(0)
## 
## [[863]]
## character(0)
## 
## [[864]]
## character(0)
## 
## [[865]]
## [1] "the " "the "
## 
## [[866]]
## [1] "the "
## 
## [[867]]
## character(0)
## 
## [[868]]
## character(0)
## 
## [[869]]
## character(0)
## 
## [[870]]
## character(0)
## 
## [[871]]
## [1] "the " "the " "the " "the "
## 
## [[872]]
## character(0)
## 
## [[873]]
## character(0)
## 
## [[874]]
## character(0)
## 
## [[875]]
## character(0)
## 
## [[876]]
## [1] "the "
## 
## [[877]]
## character(0)
## 
## [[878]]
## character(0)
## 
## [[879]]
## [1] "the "
## 
## [[880]]
## character(0)
## 
## [[881]]
## [1] "the "
## 
## [[882]]
## character(0)
## 
## [[883]]
## [1] "the "
## 
## [[884]]
## character(0)
## 
## [[885]]
## character(0)
## 
## [[886]]
## character(0)
## 
## [[887]]
## character(0)
## 
## [[888]]
## [1] "the " "the "
## 
## [[889]]
## character(0)
## 
## [[890]]
## [1] "the "
## 
## [[891]]
## [1] "the " "the " "the " "the "
## 
## [[892]]
## character(0)
## 
## [[893]]
## [1] "the " "the "
## 
## [[894]]
## [1] "the "
## 
## [[895]]
## [1] "the "
## 
## [[896]]
## [1] "the "
## 
## [[897]]
## character(0)
## 
## [[898]]
## character(0)
## 
## [[899]]
## character(0)
## 
## [[900]]
## [1] "the " "the " "the " "the "
## 
## [[901]]
## character(0)
## 
## [[902]]
## character(0)
## 
## [[903]]
## [1] "the "
## 
## [[904]]
## [1] "the " "the "
## 
## [[905]]
## [1] "the "
## 
## [[906]]
## character(0)
## 
## [[907]]
## [1] "the " "the "
## 
## [[908]]
## [1] "the "
## 
## [[909]]
## [1] "the " "the "
## 
## [[910]]
## [1] "the "
## 
## [[911]]
## character(0)
## 
## [[912]]
## character(0)
## 
## [[913]]
## [1] "the "
## 
## [[914]]
## character(0)
## 
## [[915]]
## character(0)
## 
## [[916]]
## [1] "the "
## 
## [[917]]
## character(0)
## 
## [[918]]
## character(0)
## 
## [[919]]
## [1] "the "
## 
## [[920]]
## character(0)
## 
## [[921]]
## character(0)
## 
## [[922]]
## [1] "the "
## 
## [[923]]
## [1] "the "
## 
## [[924]]
## character(0)
## 
## [[925]]
## [1] "the "
## 
## [[926]]
## [1] "the " "the " "the " "the " "the "
## 
## [[927]]
## [1] "the " "the "
## 
## [[928]]
## [1] "the "
## 
## [[929]]
## character(0)
## 
## [[930]]
## character(0)
## 
## [[931]]
## character(0)
## 
## [[932]]
## character(0)
## 
## [[933]]
## [1] "the " "the "
## 
## [[934]]
## [1] "the " "the "
## 
## [[935]]
## [1] "the " "the "
## 
## [[936]]
## character(0)
## 
## [[937]]
## [1] "the "
## 
## [[938]]
## character(0)
## 
## [[939]]
## character(0)
## 
## [[940]]
## character(0)
## 
## [[941]]
## character(0)
## 
## [[942]]
## [1] "the " "the " "the " "the "
## 
## [[943]]
## [1] "the "
## 
## [[944]]
## [1] "the "
## 
## [[945]]
## [1] "the " "the " "the " "the "
## 
## [[946]]
## [1] "the "
## 
## [[947]]
## character(0)
## 
## [[948]]
## character(0)
## 
## [[949]]
## [1] "the "
## 
## [[950]]
## [1] "the " "tle "
## 
## [[951]]
## character(0)
## 
## [[952]]
## [1] "the " "tre "
## 
## [[953]]
## character(0)
## 
## [[954]]
## character(0)
## 
## [[955]]
## character(0)
## 
## [[956]]
## [1] "the "
## 
## [[957]]
## character(0)
## 
## [[958]]
## character(0)
## 
## [[959]]
## character(0)
## 
## [[960]]
## character(0)
## 
## [[961]]
## [1] "the "
## 
## [[962]]
## [1] "the " "the " "the " "the "
## 
## [[963]]
## [1] "the "
## 
## [[964]]
## [1] "the "
## 
## [[965]]
## [1] "the "
## 
## [[966]]
## character(0)
## 
## [[967]]
## [1] "the "
## 
## [[968]]
## [1] "the "
## 
## [[969]]
## [1] "the "
## 
## [[970]]
## [1] "the " "the "
## 
## [[971]]
## character(0)
## 
## [[972]]
## character(0)
## 
## [[973]]
## character(0)
## 
## [[974]]
## [1] "the " "the "
## 
## [[975]]
## character(0)
## 
## [[976]]
## character(0)
## 
## [[977]]
## character(0)
## 
## [[978]]
## character(0)
## 
## [[979]]
## [1] "the "
## 
## [[980]]
## character(0)
## 
## [[981]]
## character(0)
## 
## [[982]]
## character(0)
## 
## [[983]]
## character(0)
## 
## [[984]]
## character(0)
## 
## [[985]]
## character(0)
## 
## [[986]]
## character(0)
## 
## [[987]]
## [1] "the "
## 
## [[988]]
## character(0)
## 
## [[989]]
## [1] "the " "the " "the "
## 
## [[990]]
## character(0)
## 
## [[991]]
## character(0)
## 
## [[992]]
## character(0)
## 
## [[993]]
## [1] "the "
## 
## [[994]]
## [1] "the " "the "
## 
## [[995]]
## character(0)
## 
## [[996]]
## [1] "the " "the " "the "
## 
## [[997]]
## [1] "the "
## 
## [[998]]
## [1] "the " "the " "the " "the "
## 
## [[999]]
## [1] "the " "the "
## 
## [[1000]]
## [1] "the " "the "
## 
## [[1001]]
## character(0)
## 
## [[1002]]
## [1] "the " "the "
## 
## [[1003]]
## character(0)
## 
## [[1004]]
## character(0)
## 
## [[1005]]
## [1] "the " "the "
## 
## [[1006]]
## character(0)
## 
## [[1007]]
## character(0)
## 
## [[1008]]
## [1] "the "
## 
## [[1009]]
## character(0)
## 
## [[1010]]
## [1] "the "
## 
## [[1011]]
## character(0)
## 
## [[1012]]
## character(0)
## 
## [[1013]]
## [1] "the "
## 
## [[1014]]
## character(0)
## 
## [[1015]]
## [1] "the "
## 
## [[1016]]
## [1] "the "
## 
## [[1017]]
## [1] "the "
## 
## [[1018]]
## [1] "the " "the " "the "
## 
## [[1019]]
## [1] "the "
## 
## [[1020]]
## [1] "the "
## 
## [[1021]]
## character(0)
## 
## [[1022]]
## character(0)
## 
## [[1023]]
## character(0)
## 
## [[1024]]
## character(0)
## 
## [[1025]]
## character(0)
## 
## [[1026]]
## [1] "the "
## 
## [[1027]]
## character(0)
## 
## [[1028]]
## [1] "the " "the "
## 
## [[1029]]
## [1] "the " "the "
## 
## [[1030]]
## character(0)
## 
## [[1031]]
## character(0)
## 
## [[1032]]
## character(0)
## 
## [[1033]]
## character(0)
## 
## [[1034]]
## [1] "the " "the "
## 
## [[1035]]
## character(0)
## 
## [[1036]]
## character(0)
## 
## [[1037]]
## [1] "the " "the " "the "
## 
## [[1038]]
## character(0)
## 
## [[1039]]
## [1] "the " "the " "the " "the "
## 
## [[1040]]
## character(0)
## 
## [[1041]]
## [1] "the "
## 
## [[1042]]
## character(0)
## 
## [[1043]]
## character(0)
## 
## [[1044]]
## character(0)
## 
## [[1045]]
## character(0)
## 
## [[1046]]
## [1] "the " "the "
## 
## [[1047]]
## character(0)
## 
## [[1048]]
## character(0)
## 
## [[1049]]
## [1] "the "
## 
## [[1050]]
## [1] "the "
## 
## [[1051]]
## character(0)
## 
## [[1052]]
## character(0)
## 
## [[1053]]
## character(0)
## 
## [[1054]]
## [1] "the "
## 
## [[1055]]
## [1] "the " "the " "the " "the "
## 
## [[1056]]
## [1] "the " "the " "the "
## 
## [[1057]]
## [1] "the " "the " "the "
## 
## [[1058]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[1059]]
## character(0)
## 
## [[1060]]
## [1] "the " "the "
## 
## [[1061]]
## character(0)
## 
## [[1062]]
## [1] "the " "the "
## 
## [[1063]]
## [1] "the "
## 
## [[1064]]
## character(0)
## 
## [[1065]]
## character(0)
## 
## [[1066]]
## [1] "the " "the "
## 
## [[1067]]
## character(0)
## 
## [[1068]]
## [1] "the "
## 
## [[1069]]
## [1] "the "
## 
## [[1070]]
## character(0)
## 
## [[1071]]
## [1] "the "
## 
## [[1072]]
## character(0)
## 
## [[1073]]
## character(0)
## 
## [[1074]]
## [1] "the " "the " "the " "the " "the "
## 
## [[1075]]
## [1] "the "
## 
## [[1076]]
## character(0)
## 
## [[1077]]
## [1] "the " "the " "the "
## 
## [[1078]]
## character(0)
## 
## [[1079]]
## [1] "the "
## 
## [[1080]]
## character(0)
## 
## [[1081]]
## character(0)
## 
## [[1082]]
## [1] "the "
## 
## [[1083]]
## character(0)
## 
## [[1084]]
## character(0)
## 
## [[1085]]
## [1] "the "
## 
## [[1086]]
## character(0)
## 
## [[1087]]
## [1] "the "
## 
## [[1088]]
## character(0)
## 
## [[1089]]
## character(0)
## 
## [[1090]]
## character(0)
## 
## [[1091]]
## [1] "the " "the " "the "
## 
## [[1092]]
## character(0)
## 
## [[1093]]
## character(0)
## 
## [[1094]]
## character(0)
## 
## [[1095]]
## [1] "the " "the " "the "
## 
## [[1096]]
## character(0)
## 
## [[1097]]
## [1] "the "
## 
## [[1098]]
## [1] "the "
## 
## [[1099]]
## character(0)
## 
## [[1100]]
## character(0)
## 
## [[1101]]
## character(0)
## 
## [[1102]]
## character(0)
## 
## [[1103]]
## character(0)
## 
## [[1104]]
## character(0)
## 
## [[1105]]
## character(0)
## 
## [[1106]]
## character(0)
## 
## [[1107]]
## character(0)
## 
## [[1108]]
## character(0)
## 
## [[1109]]
## character(0)
## 
## [[1110]]
## character(0)
## 
## [[1111]]
## [1] "the " "tle " "the " "the "
## 
## [[1112]]
## [1] "the " "the "
## 
## [[1113]]
## [1] "the "
## 
## [[1114]]
## [1] "the "
## 
## [[1115]]
## character(0)
## 
## [[1116]]
## [1] "the " "the " "the "
## 
## [[1117]]
## character(0)
## 
## [[1118]]
## character(0)
## 
## [[1119]]
## [1] "the " "the " "the " "the "
## 
## [[1120]]
## character(0)
## 
## [[1121]]
## [1] "the " "the " "the " "the "
## 
## [[1122]]
## character(0)
## 
## [[1123]]
## [1] "tee " "tee " "the "
## 
## [[1124]]
## character(0)
## 
## [[1125]]
## character(0)
## 
## [[1126]]
## [1] "the "
## 
## [[1127]]
## [1] "the " "the " "the "
## 
## [[1128]]
## [1] "the " "the " "the "
## 
## [[1129]]
## character(0)
## 
## [[1130]]
## character(0)
## 
## [[1131]]
## [1] "the " "the " "the " "the "
## 
## [[1132]]
## character(0)
## 
## [[1133]]
## [1] "the " "the "
## 
## [[1134]]
## character(0)
## 
## [[1135]]
## character(0)
## 
## [[1136]]
## character(0)
## 
## [[1137]]
## character(0)
## 
## [[1138]]
## character(0)
## 
## [[1139]]
## [1] "the "
## 
## [[1140]]
## [1] "the " "the " "the " "the "
## 
## [[1141]]
## character(0)
## 
## [[1142]]
## [1] "the "
## 
## [[1143]]
## character(0)
## 
## [[1144]]
## [1] "the "
## 
## [[1145]]
## [1] "the " "the " "the "
## 
## [[1146]]
## character(0)
## 
## [[1147]]
## [1] "the " "the " "the "
## 
## [[1148]]
## character(0)
## 
## [[1149]]
## [1] "the "
## 
## [[1150]]
## character(0)
## 
## [[1151]]
## [1] "the " "the " "the "
## 
## [[1152]]
## [1] "the "
## 
## [[1153]]
## character(0)
## 
## [[1154]]
## character(0)
## 
## [[1155]]
## character(0)
## 
## [[1156]]
## character(0)
## 
## [[1157]]
## [1] "the " "the "
## 
## [[1158]]
## [1] "the " "the " "the "
## 
## [[1159]]
## [1] "the "
## 
## [[1160]]
## [1] "the " "the " "the " "the " "the "
## 
## [[1161]]
## character(0)
## 
## [[1162]]
## character(0)
## 
## [[1163]]
## [1] "the "
## 
## [[1164]]
## [1] "the "
## 
## [[1165]]
## [1] "the " "the "
## 
## [[1166]]
## [1] "the "
## 
## [[1167]]
## [1] "the "
## 
## [[1168]]
## [1] "the " "the "
## 
## [[1169]]
## character(0)
## 
## [[1170]]
## [1] "the "
## 
## [[1171]]
## [1] "the "
## 
## [[1172]]
## character(0)
## 
## [[1173]]
## character(0)
## 
## [[1174]]
## character(0)
## 
## [[1175]]
## [1] "the "
## 
## [[1176]]
## [1] "the " "the "
## 
## [[1177]]
## character(0)
## 
## [[1178]]
## [1] "the "
## 
## [[1179]]
## character(0)
## 
## [[1180]]
## character(0)
## 
## [[1181]]
## [1] "the " "the "
## 
## [[1182]]
## character(0)
## 
## [[1183]]
## character(0)
## 
## [[1184]]
## character(0)
## 
## [[1185]]
## [1] "the "
## 
## [[1186]]
## character(0)
## 
## [[1187]]
## character(0)
## 
## [[1188]]
## character(0)
## 
## [[1189]]
## [1] "the " "the " "the "
## 
## [[1190]]
## [1] "the " "the " "the "
## 
## [[1191]]
## character(0)
## 
## [[1192]]
## character(0)
## 
## [[1193]]
## [1] "the "
## 
## [[1194]]
## [1] "the " "the "
## 
## [[1195]]
## [1] "the "
## 
## [[1196]]
## character(0)
## 
## [[1197]]
## character(0)
## 
## [[1198]]
## [1] "the "
## 
## [[1199]]
## [1] "the "
## 
## [[1200]]
## [1] "the "
## 
## [[1201]]
## [1] "the "
## 
## [[1202]]
## character(0)
## 
## [[1203]]
## character(0)
## 
## [[1204]]
## [1] "the " "tle "
## 
## [[1205]]
## [1] "the " "the "
## 
## [[1206]]
## character(0)
## 
## [[1207]]
## character(0)
## 
## [[1208]]
## [1] "the " "the " "the " "the "
## 
## [[1209]]
## [1] "the "
## 
## [[1210]]
## [1] "the "
## 
## [[1211]]
## character(0)
## 
## [[1212]]
## [1] "the " "the "
## 
## [[1213]]
## character(0)
## 
## [[1214]]
## character(0)
## 
## [[1215]]
## character(0)
## 
## [[1216]]
## [1] "the " "the "
## 
## [[1217]]
## [1] "the "
## 
## [[1218]]
## character(0)
## 
## [[1219]]
## character(0)
## 
## [[1220]]
## [1] "the "
## 
## [[1221]]
## character(0)
## 
## [[1222]]
## character(0)
## 
## [[1223]]
## [1] "the "
## 
## [[1224]]
## character(0)
## 
## [[1225]]
## character(0)
## 
## [[1226]]
## [1] "the "
## 
## [[1227]]
## [1] "the "
## 
## [[1228]]
## [1] "the " "the "
## 
## [[1229]]
## character(0)
## 
## [[1230]]
## [1] "the "
## 
## [[1231]]
## character(0)
## 
## [[1232]]
## [1] "the "
## 
## [[1233]]
## character(0)
## 
## [[1234]]
## character(0)
## 
## [[1235]]
## [1] "the "
## 
## [[1236]]
## [1] "the " "the "
## 
## [[1237]]
## character(0)
## 
## [[1238]]
## [1] "the " "the "
## 
## [[1239]]
## character(0)
## 
## [[1240]]
## character(0)
## 
## [[1241]]
## [1] "the " "the "
## 
## [[1242]]
## [1] "the " "the " "the " "the "
## 
## [[1243]]
## [1] "the " "the "
## 
## [[1244]]
## character(0)
## 
## [[1245]]
## [1] "the " "the "
## 
## [[1246]]
## [1] "the " "the " "the "
## 
## [[1247]]
## character(0)
## 
## [[1248]]
## [1] "the "
## 
## [[1249]]
## [1] "the "
## 
## [[1250]]
## [1] "the "
## 
## [[1251]]
## [1] "the "
## 
## [[1252]]
## [1] "the "
## 
## [[1253]]
## [1] "the "
## 
## [[1254]]
## character(0)
## 
## [[1255]]
## [1] "tle "
## 
## [[1256]]
## character(0)
## 
## [[1257]]
## [1] "the "
## 
## [[1258]]
## [1] "the " "the " "the "
## 
## [[1259]]
## character(0)
## 
## [[1260]]
## character(0)
## 
## [[1261]]
## [1] "the "
## 
## [[1262]]
## character(0)
## 
## [[1263]]
## [1] "the "
## 
## [[1264]]
## character(0)
## 
## [[1265]]
## character(0)
## 
## [[1266]]
## character(0)
## 
## [[1267]]
## character(0)
## 
## [[1268]]
## character(0)
## 
## [[1269]]
## character(0)
## 
## [[1270]]
## character(0)
## 
## [[1271]]
## [1] "the " "the "
## 
## [[1272]]
## character(0)
## 
## [[1273]]
## [1] "the "
## 
## [[1274]]
## [1] "the "
## 
## [[1275]]
## [1] "the "
## 
## [[1276]]
## [1] "the "
## 
## [[1277]]
## [1] "the "
## 
## [[1278]]
## character(0)
## 
## [[1279]]
## [1] "the "
## 
## [[1280]]
## [1] "tle "
## 
## [[1281]]
## [1] "the "
## 
## [[1282]]
## [1] "the " "the " "the " "the "
## 
## [[1283]]
## character(0)
## 
## [[1284]]
## [1] "the " "the " "the "
## 
## [[1285]]
## [1] "the " "the " "the "
## 
## [[1286]]
## [1] "the " "the "
## 
## [[1287]]
## [1] "the "
## 
## [[1288]]
## character(0)
## 
## [[1289]]
## [1] "the "
## 
## [[1290]]
## character(0)
## 
## [[1291]]
## [1] "the " "the " "the "
## 
## [[1292]]
## [1] "the " "the "
## 
## [[1293]]
## [1] "the "
## 
## [[1294]]
## [1] "the "
## 
## [[1295]]
## character(0)
## 
## [[1296]]
## character(0)
## 
## [[1297]]
## character(0)
## 
## [[1298]]
## [1] "the "
## 
## [[1299]]
## [1] "the "
## 
## [[1300]]
## character(0)
## 
## [[1301]]
## [1] "the "
## 
## [[1302]]
## character(0)
## 
## [[1303]]
## [1] "the "
## 
## [[1304]]
## character(0)
## 
## [[1305]]
## [1] "the "
## 
## [[1306]]
## character(0)
## 
## [[1307]]
## [1] "the "
## 
## [[1308]]
## [1] "the "
## 
## [[1309]]
## character(0)
## 
## [[1310]]
## [1] "the "
## 
## [[1311]]
## [1] "tie "
## 
## [[1312]]
## character(0)
## 
## [[1313]]
## character(0)
## 
## [[1314]]
## character(0)
## 
## [[1315]]
## character(0)
## 
## [[1316]]
## [1] "the " "the "
## 
## [[1317]]
## character(0)
## 
## [[1318]]
## [1] "the "
## 
## [[1319]]
## character(0)
## 
## [[1320]]
## character(0)
## 
## [[1321]]
## character(0)
## 
## [[1322]]
## [1] "the "
## 
## [[1323]]
## [1] "the "
## 
## [[1324]]
## character(0)
## 
## [[1325]]
## [1] "the "
## 
## [[1326]]
## character(0)
## 
## [[1327]]
## character(0)
## 
## [[1328]]
## [1] "tre " "the "
## 
## [[1329]]
## [1] "the "
## 
## [[1330]]
## character(0)
## 
## [[1331]]
## [1] "the "
## 
## [[1332]]
## [1] "the " "the " "the "
## 
## [[1333]]
## [1] "the "
## 
## [[1334]]
## character(0)
## 
## [[1335]]
## character(0)
## 
## [[1336]]
## character(0)
## 
## [[1337]]
## [1] "the "
## 
## [[1338]]
## [1] "the " "the " "the "
## 
## [[1339]]
## [1] "the "
## 
## [[1340]]
## character(0)
## 
## [[1341]]
## character(0)
## 
## [[1342]]
## [1] "the "
## 
## [[1343]]
## [1] "the "
## 
## [[1344]]
## [1] "the " "the " "the "
## 
## [[1345]]
## character(0)
## 
## [[1346]]
## character(0)
## 
## [[1347]]
## character(0)
## 
## [[1348]]
## character(0)
## 
## [[1349]]
## [1] "the "
## 
## [[1350]]
## [1] "the " "the "
## 
## [[1351]]
## [1] "the "
## 
## [[1352]]
## [1] "the "
## 
## [[1353]]
## character(0)
## 
## [[1354]]
## [1] "the "
## 
## [[1355]]
## character(0)
## 
## [[1356]]
## [1] "the "
## 
## [[1357]]
## [1] "the "
## 
## [[1358]]
## character(0)
## 
## [[1359]]
## [1] "the " "the "
## 
## [[1360]]
## character(0)
## 
## [[1361]]
## character(0)
## 
## [[1362]]
## character(0)
## 
## [[1363]]
## [1] "the " "the " "the "
## 
## [[1364]]
## character(0)
## 
## [[1365]]
## [1] "the " "the " "the " "the "
## 
## [[1366]]
## [1] "the "
## 
## [[1367]]
## [1] "tle "
## 
## [[1368]]
## character(0)
## 
## [[1369]]
## [1] "the "
## 
## [[1370]]
## character(0)
## 
## [[1371]]
## [1] "the "
## 
## [[1372]]
## character(0)
## 
## [[1373]]
## [1] "the " "the " "the "
## 
## [[1374]]
## character(0)
## 
## [[1375]]
## [1] "the "
## 
## [[1376]]
## character(0)
## 
## [[1377]]
## character(0)
## 
## [[1378]]
## character(0)
## 
## [[1379]]
## [1] "the " "the "
## 
## [[1380]]
## character(0)
## 
## [[1381]]
## character(0)
## 
## [[1382]]
## [1] "the "
## 
## [[1383]]
## character(0)
## 
## [[1384]]
## [1] "the " "the "
## 
## [[1385]]
## character(0)
## 
## [[1386]]
## [1] "the " "the "
## 
## [[1387]]
## [1] "the "
## 
## [[1388]]
## character(0)
## 
## [[1389]]
## character(0)
## 
## [[1390]]
## [1] "the "
## 
## [[1391]]
## [1] "the " "the "
## 
## [[1392]]
## character(0)
## 
## [[1393]]
## [1] "the " "the "
## 
## [[1394]]
## [1] "the " "the "
## 
## [[1395]]
## character(0)
## 
## [[1396]]
## character(0)
## 
## [[1397]]
## character(0)
## 
## [[1398]]
## character(0)
## 
## [[1399]]
## character(0)
## 
## [[1400]]
## character(0)
## 
## [[1401]]
## character(0)
## 
## [[1402]]
## [1] "the "
## 
## [[1403]]
## character(0)
## 
## [[1404]]
## character(0)
## 
## [[1405]]
## [1] "the " "the " "the "
## 
## [[1406]]
## character(0)
## 
## [[1407]]
## character(0)
## 
## [[1408]]
## [1] "the "
## 
## [[1409]]
## [1] "the "
## 
## [[1410]]
## [1] "the "
## 
## [[1411]]
## character(0)
## 
## [[1412]]
## character(0)
## 
## [[1413]]
## character(0)
## 
## [[1414]]
## [1] "the "
## 
## [[1415]]
## [1] "the "
## 
## [[1416]]
## character(0)
## 
## [[1417]]
## character(0)
## 
## [[1418]]
## [1] "the " "the " "the "
## 
## [[1419]]
## [1] "the "
## 
## [[1420]]
## [1] "the " "the "
## 
## [[1421]]
## character(0)
## 
## [[1422]]
## character(0)
## 
## [[1423]]
## [1] "the "
## 
## [[1424]]
## [1] "the "
## 
## [[1425]]
## [1] "the "
## 
## [[1426]]
## character(0)
## 
## [[1427]]
## character(0)
## 
## [[1428]]
## character(0)
## 
## [[1429]]
## [1] "the "
## 
## [[1430]]
## character(0)
## 
## [[1431]]
## [1] "the "
## 
## [[1432]]
## character(0)
## 
## [[1433]]
## [1] "the " "the " "the " "the "
## 
## [[1434]]
## [1] "the " "the "
## 
## [[1435]]
## character(0)
## 
## [[1436]]
## character(0)
## 
## [[1437]]
## [1] "the "
## 
## [[1438]]
## [1] "the "
## 
## [[1439]]
## [1] "the " "the "
## 
## [[1440]]
## character(0)
## 
## [[1441]]
## [1] "the " "the "
## 
## [[1442]]
## character(0)
## 
## [[1443]]
## [1] "the "
## 
## [[1444]]
## [1] "the "
## 
## [[1445]]
## character(0)
## 
## [[1446]]
## [1] "the "
## 
## [[1447]]
## character(0)
## 
## [[1448]]
## character(0)
## 
## [[1449]]
## [1] "the " "the "
## 
## [[1450]]
## [1] "the " "the "
## 
## [[1451]]
## character(0)
## 
## [[1452]]
## character(0)
## 
## [[1453]]
## character(0)
## 
## [[1454]]
## [1] "tee " "the "
## 
## [[1455]]
## character(0)
## 
## [[1456]]
## [1] "the "
## 
## [[1457]]
## character(0)
## 
## [[1458]]
## character(0)
## 
## [[1459]]
## [1] "the " "the " "the "
## 
## [[1460]]
## character(0)
## 
## [[1461]]
## [1] "the "
## 
## [[1462]]
## [1] "the " "the " "the " "the "
## 
## [[1463]]
## [1] "the "
## 
## [[1464]]
## character(0)
## 
## [[1465]]
## [1] "the " "the " "the "
## 
## [[1466]]
## [1] "the "
## 
## [[1467]]
## character(0)
## 
## [[1468]]
## [1] "the " "the "
## 
## [[1469]]
## [1] "the "
## 
## [[1470]]
## [1] "the " "the " "the "
## 
## [[1471]]
## character(0)
## 
## [[1472]]
## [1] "the "
## 
## [[1473]]
## [1] "the "
## 
## [[1474]]
## character(0)
## 
## [[1475]]
## character(0)
## 
## [[1476]]
## [1] "the " "the " "the "
## 
## [[1477]]
## character(0)
## 
## [[1478]]
## character(0)
## 
## [[1479]]
## [1] "the "
## 
## [[1480]]
## [1] "the "
## 
## [[1481]]
## [1] "the " "the "
## 
## [[1482]]
## [1] "the " "the " "the " "the " "the "
## 
## [[1483]]
## character(0)
## 
## [[1484]]
## character(0)
## 
## [[1485]]
## character(0)
## 
## [[1486]]
## [1] "the " "the " "the " "the "
## 
## [[1487]]
## character(0)
## 
## [[1488]]
## [1] "the "
## 
## [[1489]]
## [1] "the "
## 
## [[1490]]
## [1] "the "
## 
## [[1491]]
## character(0)
## 
## [[1492]]
## [1] "the "
## 
## [[1493]]
## [1] "the "
## 
## [[1494]]
## [1] "the "
## 
## [[1495]]
## character(0)
## 
## [[1496]]
## character(0)
## 
## [[1497]]
## character(0)
## 
## [[1498]]
## character(0)
## 
## [[1499]]
## [1] "the " "the "
## 
## [[1500]]
## [1] "the " "the "
## 
## [[1501]]
## [1] "the "
## 
## [[1502]]
## character(0)
## 
## [[1503]]
## character(0)
## 
## [[1504]]
## [1] "the " "the "
## 
## [[1505]]
## character(0)
## 
## [[1506]]
## [1] "the "
## 
## [[1507]]
## [1] "the "
## 
## [[1508]]
## [1] "the " "the " "the "
## 
## [[1509]]
## [1] "the " "the " "the "
## 
## [[1510]]
## [1] "the "
## 
## [[1511]]
## character(0)
## 
## [[1512]]
## character(0)
## 
## [[1513]]
## character(0)
## 
## [[1514]]
## [1] "the "
## 
## [[1515]]
## [1] "the "
## 
## [[1516]]
## [1] "the " "the "
## 
## [[1517]]
## [1] "the "
## 
## [[1518]]
## [1] "the " "the " "tle "
## 
## [[1519]]
## character(0)
## 
## [[1520]]
## character(0)
## 
## [[1521]]
## [1] "the "
## 
## [[1522]]
## [1] "the " "the "
## 
## [[1523]]
## character(0)
## 
## [[1524]]
## [1] "the "
## 
## [[1525]]
## [1] "the " "the " "the " "the "
## 
## [[1526]]
## character(0)
## 
## [[1527]]
## [1] "the " "the "
## 
## [[1528]]
## [1] "the "
## 
## [[1529]]
## character(0)
## 
## [[1530]]
## [1] "the "
## 
## [[1531]]
## character(0)
## 
## [[1532]]
## character(0)
## 
## [[1533]]
## character(0)
## 
## [[1534]]
## character(0)
## 
## [[1535]]
## [1] "the " "the " "the "
## 
## [[1536]]
## [1] "the " "the "
## 
## [[1537]]
## [1] "the "
## 
## [[1538]]
## [1] "the " "the " "the "
## 
## [[1539]]
## [1] "the " "the "
## 
## [[1540]]
## character(0)
## 
## [[1541]]
## character(0)
## 
## [[1542]]
## [1] "the "
## 
## [[1543]]
## character(0)
## 
## [[1544]]
## character(0)
## 
## [[1545]]
## character(0)
## 
## [[1546]]
## character(0)
## 
## [[1547]]
## [1] "the "
## 
## [[1548]]
## [1] "the " "the "
## 
## [[1549]]
## [1] "the " "tte "
## 
## [[1550]]
## [1] "the "
## 
## [[1551]]
## [1] "the " "the "
## 
## [[1552]]
## character(0)
## 
## [[1553]]
## [1] "the " "the " "the " "the " "the "
## 
## [[1554]]
## [1] "the "
## 
## [[1555]]
## character(0)
## 
## [[1556]]
## [1] "the "
## 
## [[1557]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[1558]]
## character(0)
## 
## [[1559]]
## character(0)
## 
## [[1560]]
## [1] "the "
## 
## [[1561]]
## [1] "the "
## 
## [[1562]]
## character(0)
## 
## [[1563]]
## [1] "the "
## 
## [[1564]]
## [1] "the " "the "
## 
## [[1565]]
## [1] "the "
## 
## [[1566]]
## character(0)
## 
## [[1567]]
## [1] "the " "the " "the "
## 
## [[1568]]
## [1] "the "
## 
## [[1569]]
## [1] "the " "the "
## 
## [[1570]]
## [1] "the " "the "
## 
## [[1571]]
## [1] "the " "the "
## 
## [[1572]]
## [1] "the "
## 
## [[1573]]
## [1] "the " "the "
## 
## [[1574]]
## character(0)
## 
## [[1575]]
## [1] "the " "the " "the " "the "
## 
## [[1576]]
## character(0)
## 
## [[1577]]
## [1] "the "
## 
## [[1578]]
## character(0)
## 
## [[1579]]
## [1] "the "
## 
## [[1580]]
## [1] "the " "the "
## 
## [[1581]]
## character(0)
## 
## [[1582]]
## [1] "the "
## 
## [[1583]]
## character(0)
## 
## [[1584]]
## [1] "the " "the " "the "
## 
## [[1585]]
## [1] "the "
## 
## [[1586]]
## [1] "the " "the "
## 
## [[1587]]
## [1] "the " "the "
## 
## [[1588]]
## character(0)
## 
## [[1589]]
## character(0)
## 
## [[1590]]
## character(0)
## 
## [[1591]]
## character(0)
## 
## [[1592]]
## character(0)
## 
## [[1593]]
## character(0)
## 
## [[1594]]
## [1] "the " "the " "tre " "the " "the "
## 
## [[1595]]
## character(0)
## 
## [[1596]]
## character(0)
## 
## [[1597]]
## character(0)
## 
## [[1598]]
## character(0)
## 
## [[1599]]
## character(0)
## 
## [[1600]]
## [1] "the " "the " "the "
## 
## [[1601]]
## character(0)
## 
## [[1602]]
## character(0)
## 
## [[1603]]
## character(0)
## 
## [[1604]]
## [1] "the " "the "
## 
## [[1605]]
## [1] "the "
## 
## [[1606]]
## character(0)
## 
## [[1607]]
## character(0)
## 
## [[1608]]
## character(0)
## 
## [[1609]]
## [1] "the " "the "
## 
## [[1610]]
## character(0)
## 
## [[1611]]
## character(0)
## 
## [[1612]]
## [1] "the " "the "
## 
## [[1613]]
## [1] "the " "the " "the "
## 
## [[1614]]
## [1] "the " "the " "the "
## 
## [[1615]]
## [1] "the "
## 
## [[1616]]
## [1] "the " "the "
## 
## [[1617]]
## character(0)
## 
## [[1618]]
## character(0)
## 
## [[1619]]
## character(0)
## 
## [[1620]]
## [1] "the " "the "
## 
## [[1621]]
## character(0)
## 
## [[1622]]
## [1] "the "
## 
## [[1623]]
## character(0)
## 
## [[1624]]
## character(0)
## 
## [[1625]]
## [1] "the " "the "
## 
## [[1626]]
## character(0)
## 
## [[1627]]
## character(0)
## 
## [[1628]]
## character(0)
## 
## [[1629]]
## [1] "the "
## 
## [[1630]]
## character(0)
## 
## [[1631]]
## [1] "the "
## 
## [[1632]]
## character(0)
## 
## [[1633]]
## [1] "the " "the "
## 
## [[1634]]
## character(0)
## 
## [[1635]]
## [1] "the " "the " "the " "the " "the "
## 
## [[1636]]
## character(0)
## 
## [[1637]]
## character(0)
## 
## [[1638]]
## character(0)
## 
## [[1639]]
## [1] "the "
## 
## [[1640]]
## character(0)
## 
## [[1641]]
## [1] "the "
## 
## [[1642]]
## character(0)
## 
## [[1643]]
## character(0)
## 
## [[1644]]
## character(0)
## 
## [[1645]]
## character(0)
## 
## [[1646]]
## [1] "the " "the " "the "
## 
## [[1647]]
## [1] "the " "the " "the "
## 
## [[1648]]
## [1] "the "
## 
## [[1649]]
## character(0)
## 
## [[1650]]
## character(0)
## 
## [[1651]]
## [1] "the "
## 
## [[1652]]
## [1] "the "
## 
## [[1653]]
## character(0)
## 
## [[1654]]
## [1] "the " "the "
## 
## [[1655]]
## [1] "the " "the "
## 
## [[1656]]
## character(0)
## 
## [[1657]]
## [1] "the " "the "
## 
## [[1658]]
## character(0)
## 
## [[1659]]
## [1] "the " "the " "the " "the "
## 
## [[1660]]
## [1] "the " "the " "the "
## 
## [[1661]]
## [1] "the "
## 
## [[1662]]
## character(0)
## 
## [[1663]]
## character(0)
## 
## [[1664]]
## character(0)
## 
## [[1665]]
## [1] "the " "the "
## 
## [[1666]]
## [1] "the " "the "
## 
## [[1667]]
## [1] "the " "the "
## 
## [[1668]]
## [1] "the " "the "
## 
## [[1669]]
## [1] "the " "the " "the "
## 
## [[1670]]
## character(0)
## 
## [[1671]]
## [1] "the " "the "
## 
## [[1672]]
## [1] "the " "the " "the "
## 
## [[1673]]
## character(0)
## 
## [[1674]]
## [1] "the " "the " "the " "the "
## 
## [[1675]]
## character(0)
## 
## [[1676]]
## [1] "the " "the " "the "
## 
## [[1677]]
## [1] "tle "
## 
## [[1678]]
## character(0)
## 
## [[1679]]
## [1] "the " "the " "the " "the "
## 
## [[1680]]
## [1] "the "
## 
## [[1681]]
## [1] "the "
## 
## [[1682]]
## character(0)
## 
## [[1683]]
## character(0)
## 
## [[1684]]
## character(0)
## 
## [[1685]]
## [1] "the "
## 
## [[1686]]
## [1] "the "
## 
## [[1687]]
## character(0)
## 
## [[1688]]
## [1] "the "
## 
## [[1689]]
## [1] "the " "the "
## 
## [[1690]]
## [1] "the " "the "
## 
## [[1691]]
## [1] "the " "the "
## 
## [[1692]]
## [1] "the " "the "
## 
## [[1693]]
## [1] "the " "the "
## 
## [[1694]]
## [1] "the " "the " "the " "the "
## 
## [[1695]]
## character(0)
## 
## [[1696]]
## character(0)
## 
## [[1697]]
## [1] "the " "the "
## 
## [[1698]]
## character(0)
## 
## [[1699]]
## character(0)
## 
## [[1700]]
## [1] "the "
## 
## [[1701]]
## character(0)
## 
## [[1702]]
## [1] "the " "the "
## 
## [[1703]]
## [1] "the " "the "
## 
## [[1704]]
## character(0)
## 
## [[1705]]
## character(0)
## 
## [[1706]]
## [1] "the "
## 
## [[1707]]
## [1] "the "
## 
## [[1708]]
## [1] "the "
## 
## [[1709]]
## [1] "the " "the " "the "
## 
## [[1710]]
## [1] "the "
## 
## [[1711]]
## character(0)
## 
## [[1712]]
## character(0)
## 
## [[1713]]
## character(0)
## 
## [[1714]]
## character(0)
## 
## [[1715]]
## character(0)
## 
## [[1716]]
## character(0)
## 
## [[1717]]
## [1] "the "
## 
## [[1718]]
## character(0)
## 
## [[1719]]
## [1] "the "
## 
## [[1720]]
## [1] "the " "the "
## 
## [[1721]]
## [1] "the "
## 
## [[1722]]
## character(0)
## 
## [[1723]]
## [1] "the "
## 
## [[1724]]
## character(0)
## 
## [[1725]]
## character(0)
## 
## [[1726]]
## [1] "the " "tle "
## 
## [[1727]]
## [1] "the "
## 
## [[1728]]
## [1] "the " "tle "
## 
## [[1729]]
## [1] "the "
## 
## [[1730]]
## character(0)
## 
## [[1731]]
## character(0)
## 
## [[1732]]
## [1] "the "
## 
## [[1733]]
## character(0)
## 
## [[1734]]
## [1] "the "
## 
## [[1735]]
## [1] "the "
## 
## [[1736]]
## [1] "the " "the "
## 
## [[1737]]
## [1] "the " "the " "the "
## 
## [[1738]]
## [1] "the "
## 
## [[1739]]
## character(0)
## 
## [[1740]]
## [1] "the " "the "
## 
## [[1741]]
## [1] "the " "the " "tle " "the " "the " "the "
## 
## [[1742]]
## [1] "the " "the " "the "
## 
## [[1743]]
## [1] "the "
## 
## [[1744]]
## [1] "the "
## 
## [[1745]]
## [1] "the "
## 
## [[1746]]
## character(0)
## 
## [[1747]]
## character(0)
## 
## [[1748]]
## character(0)
## 
## [[1749]]
## character(0)
## 
## [[1750]]
## character(0)
## 
## [[1751]]
## character(0)
## 
## [[1752]]
## character(0)
## 
## [[1753]]
## [1] "the " "the " "the " "the "
## 
## [[1754]]
## character(0)
## 
## [[1755]]
## [1] "the "
## 
## [[1756]]
## [1] "the "
## 
## [[1757]]
## character(0)
## 
## [[1758]]
## character(0)
## 
## [[1759]]
## character(0)
## 
## [[1760]]
## character(0)
## 
## [[1761]]
## [1] "the "
## 
## [[1762]]
## character(0)
## 
## [[1763]]
## [1] "the "
## 
## [[1764]]
## character(0)
## 
## [[1765]]
## character(0)
## 
## [[1766]]
## [1] "the "
## 
## [[1767]]
## character(0)
## 
## [[1768]]
## character(0)
## 
## [[1769]]
## [1] "the "
## 
## [[1770]]
## [1] "the "
## 
## [[1771]]
## character(0)
## 
## [[1772]]
## character(0)
## 
## [[1773]]
## character(0)
## 
## [[1774]]
## character(0)
## 
## [[1775]]
## character(0)
## 
## [[1776]]
## [1] "the "
## 
## [[1777]]
## character(0)
## 
## [[1778]]
## [1] "the "
## 
## [[1779]]
## character(0)
## 
## [[1780]]
## character(0)
## 
## [[1781]]
## [1] "the "
## 
## [[1782]]
## [1] "the " "the " "the "
## 
## [[1783]]
## character(0)
## 
## [[1784]]
## [1] "the " "the "
## 
## [[1785]]
## character(0)
## 
## [[1786]]
## character(0)
## 
## [[1787]]
## [1] "the "
## 
## [[1788]]
## character(0)
## 
## [[1789]]
## [1] "the "
## 
## [[1790]]
## [1] "the "
## 
## [[1791]]
## character(0)
## 
## [[1792]]
## character(0)
## 
## [[1793]]
## [1] "the " "the "
## 
## [[1794]]
## [1] "the "
## 
## [[1795]]
## character(0)
## 
## [[1796]]
## character(0)
## 
## [[1797]]
## [1] "the " "the " "the "
## 
## [[1798]]
## [1] "the "
## 
## [[1799]]
## character(0)
## 
## [[1800]]
## character(0)
## 
## [[1801]]
## character(0)
## 
## [[1802]]
## character(0)
## 
## [[1803]]
## character(0)
## 
## [[1804]]
## character(0)
## 
## [[1805]]
## [1] "the " "the " "the " "the " "the "
## 
## [[1806]]
## character(0)
## 
## [[1807]]
## [1] "the " "the "
## 
## [[1808]]
## [1] "the "
## 
## [[1809]]
## [1] "the "
## 
## [[1810]]
## character(0)
## 
## [[1811]]
## character(0)
## 
## [[1812]]
## [1] "the "
## 
## [[1813]]
## character(0)
## 
## [[1814]]
## [1] "the " "the "
## 
## [[1815]]
## [1] "the " "the "
## 
## [[1816]]
## [1] "the "
## 
## [[1817]]
## character(0)
## 
## [[1818]]
## [1] "tle "
## 
## [[1819]]
## [1] "the " "the "
## 
## [[1820]]
## [1] "the " "the "
## 
## [[1821]]
## [1] "the "
## 
## [[1822]]
## [1] "the " "the "
## 
## [[1823]]
## character(0)
## 
## [[1824]]
## character(0)
## 
## [[1825]]
## [1] "the "
## 
## [[1826]]
## [1] "the "
## 
## [[1827]]
## [1] "the "
## 
## [[1828]]
## [1] "the " "the "
## 
## [[1829]]
## [1] "the "
## 
## [[1830]]
## character(0)
## 
## [[1831]]
## character(0)
## 
## [[1832]]
## [1] "the " "the " "the " "the "
## 
## [[1833]]
## [1] "the " "the " "the "
## 
## [[1834]]
## character(0)
## 
## [[1835]]
## [1] "the "
## 
## [[1836]]
## character(0)
## 
## [[1837]]
## [1] "the "
## 
## [[1838]]
## character(0)
## 
## [[1839]]
## [1] "tle "
## 
## [[1840]]
## character(0)
## 
## [[1841]]
## character(0)
## 
## [[1842]]
## [1] "the "
## 
## [[1843]]
## character(0)
## 
## [[1844]]
## character(0)
## 
## [[1845]]
## character(0)
## 
## [[1846]]
## [1] "the " "the "
## 
## [[1847]]
## [1] "the " "the " "the "
## 
## [[1848]]
## character(0)
## 
## [[1849]]
## character(0)
## 
## [[1850]]
## character(0)
## 
## [[1851]]
## character(0)
## 
## [[1852]]
## [1] "the "
## 
## [[1853]]
## [1] "the " "the "
## 
## [[1854]]
## character(0)
## 
## [[1855]]
## character(0)
## 
## [[1856]]
## character(0)
## 
## [[1857]]
## character(0)
## 
## [[1858]]
## character(0)
## 
## [[1859]]
## [1] "the " "the "
## 
## [[1860]]
## [1] "the "
## 
## [[1861]]
## character(0)
## 
## [[1862]]
## [1] "the "
## 
## [[1863]]
## character(0)
## 
## [[1864]]
## character(0)
## 
## [[1865]]
## character(0)
## 
## [[1866]]
## character(0)
## 
## [[1867]]
## [1] "the "
## 
## [[1868]]
## character(0)
## 
## [[1869]]
## character(0)
## 
## [[1870]]
## character(0)
## 
## [[1871]]
## character(0)
## 
## [[1872]]
## [1] "the "
## 
## [[1873]]
## character(0)
## 
## [[1874]]
## character(0)
## 
## [[1875]]
## [1] "the " "the "
## 
## [[1876]]
## [1] "the "
## 
## [[1877]]
## character(0)
## 
## [[1878]]
## character(0)
## 
## [[1879]]
## [1] "the "
## 
## [[1880]]
## [1] "the "
## 
## [[1881]]
## [1] "the " "the "
## 
## [[1882]]
## character(0)
## 
## [[1883]]
## [1] "the "
## 
## [[1884]]
## [1] "the "
## 
## [[1885]]
## character(0)
## 
## [[1886]]
## [1] "the " "the " "the "
## 
## [[1887]]
## [1] "the "
## 
## [[1888]]
## [1] "the "
## 
## [[1889]]
## character(0)
## 
## [[1890]]
## [1] "the " "the "
## 
## [[1891]]
## character(0)
## 
## [[1892]]
## character(0)
## 
## [[1893]]
## [1] "the "
## 
## [[1894]]
## character(0)
## 
## [[1895]]
## character(0)
## 
## [[1896]]
## [1] "the "
## 
## [[1897]]
## character(0)
## 
## [[1898]]
## character(0)
## 
## [[1899]]
## character(0)
## 
## [[1900]]
## [1] "the " "the " "the "
## 
## [[1901]]
## [1] "the "
## 
## [[1902]]
## [1] "tre " "the " "the " "the "
## 
## [[1903]]
## [1] "the " "the "
## 
## [[1904]]
## character(0)
## 
## [[1905]]
## character(0)
## 
## [[1906]]
## character(0)
## 
## [[1907]]
## [1] "the "
## 
## [[1908]]
## [1] "the " "the "
## 
## [[1909]]
## character(0)
## 
## [[1910]]
## character(0)
## 
## [[1911]]
## character(0)
## 
## [[1912]]
## [1] "the " "the "
## 
## [[1913]]
## character(0)
## 
## [[1914]]
## character(0)
## 
## [[1915]]
## character(0)
## 
## [[1916]]
## [1] "the "
## 
## [[1917]]
## [1] "the " "the "
## 
## [[1918]]
## character(0)
## 
## [[1919]]
## [1] "the " "the "
## 
## [[1920]]
## [1] "the " "the " "the "
## 
## [[1921]]
## [1] "tte "
## 
## [[1922]]
## [1] "the "
## 
## [[1923]]
## character(0)
## 
## [[1924]]
## character(0)
## 
## [[1925]]
## character(0)
## 
## [[1926]]
## character(0)
## 
## [[1927]]
## character(0)
## 
## [[1928]]
## [1] "the "
## 
## [[1929]]
## character(0)
## 
## [[1930]]
## [1] "the " "the "
## 
## [[1931]]
## character(0)
## 
## [[1932]]
## [1] "the "
## 
## [[1933]]
## character(0)
## 
## [[1934]]
## [1] "the " "the "
## 
## [[1935]]
## character(0)
## 
## [[1936]]
## character(0)
## 
## [[1937]]
## [1] "the " "the " "tle "
## 
## [[1938]]
## [1] "the " "the "
## 
## [[1939]]
## character(0)
## 
## [[1940]]
## [1] "the "
## 
## [[1941]]
## character(0)
## 
## [[1942]]
## [1] "the "
## 
## [[1943]]
## character(0)
## 
## [[1944]]
## [1] "the "
## 
## [[1945]]
## [1] "the "
## 
## [[1946]]
## character(0)
## 
## [[1947]]
## character(0)
## 
## [[1948]]
## [1] "the "
## 
## [[1949]]
## [1] "the "
## 
## [[1950]]
## character(0)
## 
## [[1951]]
## [1] "the " "the " "the "
## 
## [[1952]]
## [1] "the " "the " "the "
## 
## [[1953]]
## character(0)
## 
## [[1954]]
## character(0)
## 
## [[1955]]
## [1] "the " "tle "
## 
## [[1956]]
## [1] "the " "the "
## 
## [[1957]]
## [1] "the " "the " "the "
## 
## [[1958]]
## [1] "the "
## 
## [[1959]]
## character(0)
## 
## [[1960]]
## [1] "the "
## 
## [[1961]]
## [1] "the " "the "
## 
## [[1962]]
## [1] "the " "the " "the " "the "
## 
## [[1963]]
## [1] "the "
## 
## [[1964]]
## [1] "the "
## 
## [[1965]]
## character(0)
## 
## [[1966]]
## character(0)
## 
## [[1967]]
## character(0)
## 
## [[1968]]
## character(0)
## 
## [[1969]]
## character(0)
## 
## [[1970]]
## [1] "the "
## 
## [[1971]]
## character(0)
## 
## [[1972]]
## [1] "the " "the "
## 
## [[1973]]
## [1] "the " "the "
## 
## [[1974]]
## character(0)
## 
## [[1975]]
## [1] "tre "
## 
## [[1976]]
## character(0)
## 
## [[1977]]
## [1] "the "
## 
## [[1978]]
## [1] "the " "the " "the "
## 
## [[1979]]
## character(0)
## 
## [[1980]]
## character(0)
## 
## [[1981]]
## [1] "the " "the "
## 
## [[1982]]
## [1] "the "
## 
## [[1983]]
## character(0)
## 
## [[1984]]
## character(0)
## 
## [[1985]]
## character(0)
## 
## [[1986]]
## [1] "the " "the " "the "
## 
## [[1987]]
## character(0)
## 
## [[1988]]
## [1] "the " "the " "the "
## 
## [[1989]]
## character(0)
## 
## [[1990]]
## character(0)
## 
## [[1991]]
## [1] "the " "the "
## 
## [[1992]]
## character(0)
## 
## [[1993]]
## character(0)
## 
## [[1994]]
## character(0)
## 
## [[1995]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[1996]]
## character(0)
## 
## [[1997]]
## character(0)
## 
## [[1998]]
## character(0)
## 
## [[1999]]
## [1] "the " "the "
## 
## [[2000]]
## character(0)
## 
## [[2001]]
## character(0)
## 
## [[2002]]
## character(0)
## 
## [[2003]]
## character(0)
## 
## [[2004]]
## [1] "the " "the "
## 
## [[2005]]
## character(0)
## 
## [[2006]]
## character(0)
## 
## [[2007]]
## [1] "the " "the "
## 
## [[2008]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2009]]
## [1] "the " "the "
## 
## [[2010]]
## character(0)
## 
## [[2011]]
## [1] "the "
## 
## [[2012]]
## [1] "the " "the " "the " "the "
## 
## [[2013]]
## [1] "the "
## 
## [[2014]]
## [1] "the " "the "
## 
## [[2015]]
## character(0)
## 
## [[2016]]
## character(0)
## 
## [[2017]]
## character(0)
## 
## [[2018]]
## character(0)
## 
## [[2019]]
## character(0)
## 
## [[2020]]
## [1] "the "
## 
## [[2021]]
## character(0)
## 
## [[2022]]
## [1] "the "
## 
## [[2023]]
## [1] "the "
## 
## [[2024]]
## [1] "the "
## 
## [[2025]]
## [1] "the "
## 
## [[2026]]
## [1] "the "
## 
## [[2027]]
## character(0)
## 
## [[2028]]
## [1] "the " "the "
## 
## [[2029]]
## character(0)
## 
## [[2030]]
## [1] "the "
## 
## [[2031]]
## [1] "the " "the "
## 
## [[2032]]
## [1] "the " "the " "the "
## 
## [[2033]]
## [1] "the "
## 
## [[2034]]
## character(0)
## 
## [[2035]]
## character(0)
## 
## [[2036]]
## character(0)
## 
## [[2037]]
## [1] "the "
## 
## [[2038]]
## character(0)
## 
## [[2039]]
## [1] "the " "the "
## 
## [[2040]]
## character(0)
## 
## [[2041]]
## [1] "the " "the " "the "
## 
## [[2042]]
## [1] "the " "the "
## 
## [[2043]]
## [1] "the " "the " "the " "the "
## 
## [[2044]]
## character(0)
## 
## [[2045]]
## [1] "the " "the "
## 
## [[2046]]
## character(0)
## 
## [[2047]]
## character(0)
## 
## [[2048]]
## character(0)
## 
## [[2049]]
## character(0)
## 
## [[2050]]
## character(0)
## 
## [[2051]]
## [1] "the " "the " "tle " "the "
## 
## [[2052]]
## character(0)
## 
## [[2053]]
## character(0)
## 
## [[2054]]
## [1] "the "
## 
## [[2055]]
## [1] "the "
## 
## [[2056]]
## character(0)
## 
## [[2057]]
## character(0)
## 
## [[2058]]
## character(0)
## 
## [[2059]]
## character(0)
## 
## [[2060]]
## character(0)
## 
## [[2061]]
## [1] "the "
## 
## [[2062]]
## character(0)
## 
## [[2063]]
## character(0)
## 
## [[2064]]
## character(0)
## 
## [[2065]]
## [1] "the "
## 
## [[2066]]
## [1] "the "
## 
## [[2067]]
## [1] "the "
## 
## [[2068]]
## character(0)
## 
## [[2069]]
## character(0)
## 
## [[2070]]
## [1] "the "
## 
## [[2071]]
## character(0)
## 
## [[2072]]
## [1] "the "
## 
## [[2073]]
## [1] "the " "the "
## 
## [[2074]]
## character(0)
## 
## [[2075]]
## [1] "the "
## 
## [[2076]]
## [1] "the "
## 
## [[2077]]
## [1] "the "
## 
## [[2078]]
## character(0)
## 
## [[2079]]
## [1] "the "
## 
## [[2080]]
## character(0)
## 
## [[2081]]
## character(0)
## 
## [[2082]]
## character(0)
## 
## [[2083]]
## character(0)
## 
## [[2084]]
## character(0)
## 
## [[2085]]
## character(0)
## 
## [[2086]]
## [1] "the "
## 
## [[2087]]
## character(0)
## 
## [[2088]]
## character(0)
## 
## [[2089]]
## character(0)
## 
## [[2090]]
## [1] "the " "the " "the " "the "
## 
## [[2091]]
## [1] "the "
## 
## [[2092]]
## character(0)
## 
## [[2093]]
## character(0)
## 
## [[2094]]
## [1] "the " "the " "the "
## 
## [[2095]]
## character(0)
## 
## [[2096]]
## character(0)
## 
## [[2097]]
## character(0)
## 
## [[2098]]
## [1] "the "
## 
## [[2099]]
## character(0)
## 
## [[2100]]
## [1] "the "
## 
## [[2101]]
## character(0)
## 
## [[2102]]
## character(0)
## 
## [[2103]]
## character(0)
## 
## [[2104]]
## [1] "the "
## 
## [[2105]]
## [1] "the " "the "
## 
## [[2106]]
## character(0)
## 
## [[2107]]
## [1] "the "
## 
## [[2108]]
## character(0)
## 
## [[2109]]
## [1] "the "
## 
## [[2110]]
## [1] "the "
## 
## [[2111]]
## [1] "the " "the " "the " "the "
## 
## [[2112]]
## [1] "the " "the " "the " "the "
## 
## [[2113]]
## character(0)
## 
## [[2114]]
## [1] "the "
## 
## [[2115]]
## [1] "the " "the "
## 
## [[2116]]
## character(0)
## 
## [[2117]]
## character(0)
## 
## [[2118]]
## [1] "the " "the "
## 
## [[2119]]
## character(0)
## 
## [[2120]]
## [1] "the " "the " "the "
## 
## [[2121]]
## [1] "the " "the "
## 
## [[2122]]
## character(0)
## 
## [[2123]]
## [1] "the " "the " "the "
## 
## [[2124]]
## [1] "the "
## 
## [[2125]]
## character(0)
## 
## [[2126]]
## character(0)
## 
## [[2127]]
## character(0)
## 
## [[2128]]
## [1] "the " "the "
## 
## [[2129]]
## [1] "the " "the "
## 
## [[2130]]
## [1] "the " "the " "the " "the " "the " "the " "the "
## 
## [[2131]]
## character(0)
## 
## [[2132]]
## [1] "the " "the "
## 
## [[2133]]
## [1] "the "
## 
## [[2134]]
## [1] "the " "the "
## 
## [[2135]]
## character(0)
## 
## [[2136]]
## [1] "the "
## 
## [[2137]]
## character(0)
## 
## [[2138]]
## character(0)
## 
## [[2139]]
## [1] "the "
## 
## [[2140]]
## [1] "the "
## 
## [[2141]]
## [1] "the "
## 
## [[2142]]
## [1] "the " "the "
## 
## [[2143]]
## [1] "the "
## 
## [[2144]]
## [1] "the " "the "
## 
## [[2145]]
## character(0)
## 
## [[2146]]
## [1] "the " "the "
## 
## [[2147]]
## [1] "the " "the " "the "
## 
## [[2148]]
## character(0)
## 
## [[2149]]
## character(0)
## 
## [[2150]]
## [1] "the "
## 
## [[2151]]
## [1] "the "
## 
## [[2152]]
## character(0)
## 
## [[2153]]
## character(0)
## 
## [[2154]]
## character(0)
## 
## [[2155]]
## [1] "the " "the "
## 
## [[2156]]
## [1] "the " "the " "the "
## 
## [[2157]]
## character(0)
## 
## [[2158]]
## [1] "the " "the "
## 
## [[2159]]
## [1] "the "
## 
## [[2160]]
## [1] "the " "the "
## 
## [[2161]]
## character(0)
## 
## [[2162]]
## [1] "the "
## 
## [[2163]]
## character(0)
## 
## [[2164]]
## [1] "the " "tre "
## 
## [[2165]]
## [1] "the "
## 
## [[2166]]
## [1] "the "
## 
## [[2167]]
## character(0)
## 
## [[2168]]
## [1] "the "
## 
## [[2169]]
## character(0)
## 
## [[2170]]
## [1] "the " "the "
## 
## [[2171]]
## [1] "the " "the "
## 
## [[2172]]
## [1] "the "
## 
## [[2173]]
## character(0)
## 
## [[2174]]
## [1] "the "
## 
## [[2175]]
## character(0)
## 
## [[2176]]
## [1] "the " "the " "the " "the "
## 
## [[2177]]
## character(0)
## 
## [[2178]]
## [1] "the "
## 
## [[2179]]
## [1] "the " "the " "the " "the "
## 
## [[2180]]
## character(0)
## 
## [[2181]]
## [1] "the " "the " "the " "the "
## 
## [[2182]]
## character(0)
## 
## [[2183]]
## [1] "the "
## 
## [[2184]]
## [1] "the " "the "
## 
## [[2185]]
## character(0)
## 
## [[2186]]
## [1] "the " "the "
## 
## [[2187]]
## character(0)
## 
## [[2188]]
## character(0)
## 
## [[2189]]
## character(0)
## 
## [[2190]]
## [1] "the "
## 
## [[2191]]
## [1] "the " "the "
## 
## [[2192]]
## character(0)
## 
## [[2193]]
## character(0)
## 
## [[2194]]
## character(0)
## 
## [[2195]]
## character(0)
## 
## [[2196]]
## [1] "the "
## 
## [[2197]]
## character(0)
## 
## [[2198]]
## [1] "the "
## 
## [[2199]]
## character(0)
## 
## [[2200]]
## [1] "the "
## 
## [[2201]]
## [1] "the "
## 
## [[2202]]
## character(0)
## 
## [[2203]]
## [1] "the "
## 
## [[2204]]
## [1] "the "
## 
## [[2205]]
## [1] "the " "the "
## 
## [[2206]]
## [1] "the " "the " "the "
## 
## [[2207]]
## character(0)
## 
## [[2208]]
## [1] "the " "the " "the "
## 
## [[2209]]
## character(0)
## 
## [[2210]]
## [1] "the "
## 
## [[2211]]
## [1] "the "
## 
## [[2212]]
## [1] "the " "the "
## 
## [[2213]]
## character(0)
## 
## [[2214]]
## character(0)
## 
## [[2215]]
## character(0)
## 
## [[2216]]
## [1] "the "
## 
## [[2217]]
## character(0)
## 
## [[2218]]
## [1] "the "
## 
## [[2219]]
## [1] "the " "the " "the " "the "
## 
## [[2220]]
## [1] "the " "the "
## 
## [[2221]]
## character(0)
## 
## [[2222]]
## character(0)
## 
## [[2223]]
## [1] "the " "the "
## 
## [[2224]]
## character(0)
## 
## [[2225]]
## [1] "the "
## 
## [[2226]]
## [1] "the " "the "
## 
## [[2227]]
## [1] "the "
## 
## [[2228]]
## character(0)
## 
## [[2229]]
## character(0)
## 
## [[2230]]
## character(0)
## 
## [[2231]]
## [1] "the " "the "
## 
## [[2232]]
## character(0)
## 
## [[2233]]
## [1] "the "
## 
## [[2234]]
## [1] "the "
## 
## [[2235]]
## [1] "the " "the "
## 
## [[2236]]
## character(0)
## 
## [[2237]]
## character(0)
## 
## [[2238]]
## [1] "the "
## 
## [[2239]]
## character(0)
## 
## [[2240]]
## character(0)
## 
## [[2241]]
## [1] "the " "the "
## 
## [[2242]]
## character(0)
## 
## [[2243]]
## character(0)
## 
## [[2244]]
## character(0)
## 
## [[2245]]
## character(0)
## 
## [[2246]]
## character(0)
## 
## [[2247]]
## character(0)
## 
## [[2248]]
## [1] "the " "the "
## 
## [[2249]]
## character(0)
## 
## [[2250]]
## character(0)
## 
## [[2251]]
## character(0)
## 
## [[2252]]
## character(0)
## 
## [[2253]]
## [1] "the " "the "
## 
## [[2254]]
## character(0)
## 
## [[2255]]
## character(0)
## 
## [[2256]]
## character(0)
## 
## [[2257]]
## [1] "the " "the "
## 
## [[2258]]
## [1] "the " "the "
## 
## [[2259]]
## character(0)
## 
## [[2260]]
## character(0)
## 
## [[2261]]
## character(0)
## 
## [[2262]]
## [1] "tle "
## 
## [[2263]]
## [1] "the "
## 
## [[2264]]
## [1] "the " "tle "
## 
## [[2265]]
## character(0)
## 
## [[2266]]
## [1] "the " "the " "the " "the "
## 
## [[2267]]
## [1] "the " "the "
## 
## [[2268]]
## [1] "the "
## 
## [[2269]]
## character(0)
## 
## [[2270]]
## character(0)
## 
## [[2271]]
## character(0)
## 
## [[2272]]
## character(0)
## 
## [[2273]]
## character(0)
## 
## [[2274]]
## character(0)
## 
## [[2275]]
## [1] "the "
## 
## [[2276]]
## character(0)
## 
## [[2277]]
## [1] "the "
## 
## [[2278]]
## [1] "the "
## 
## [[2279]]
## character(0)
## 
## [[2280]]
## [1] "tie " "the "
## 
## [[2281]]
## character(0)
## 
## [[2282]]
## character(0)
## 
## [[2283]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2284]]
## character(0)
## 
## [[2285]]
## [1] "the "
## 
## [[2286]]
## character(0)
## 
## [[2287]]
## character(0)
## 
## [[2288]]
## character(0)
## 
## [[2289]]
## [1] "the " "the "
## 
## [[2290]]
## [1] "the " "the " "tle " "tMe "
## 
## [[2291]]
## [1] "the "
## 
## [[2292]]
## [1] "the "
## 
## [[2293]]
## character(0)
## 
## [[2294]]
## [1] "the "
## 
## [[2295]]
## character(0)
## 
## [[2296]]
## [1] "the " "the " "the "
## 
## [[2297]]
## [1] "the "
## 
## [[2298]]
## character(0)
## 
## [[2299]]
## [1] "the " "the "
## 
## [[2300]]
## [1] "the "
## 
## [[2301]]
## [1] "tle "
## 
## [[2302]]
## [1] "the " "the " "the "
## 
## [[2303]]
## [1] "the " "the " "the "
## 
## [[2304]]
## [1] "the "
## 
## [[2305]]
## character(0)
## 
## [[2306]]
## character(0)
## 
## [[2307]]
## character(0)
## 
## [[2308]]
## character(0)
## 
## [[2309]]
## character(0)
## 
## [[2310]]
## character(0)
## 
## [[2311]]
## [1] "the " "the " "the "
## 
## [[2312]]
## character(0)
## 
## [[2313]]
## [1] "the "
## 
## [[2314]]
## character(0)
## 
## [[2315]]
## character(0)
## 
## [[2316]]
## character(0)
## 
## [[2317]]
## [1] "the " "the " "the " "the "
## 
## [[2318]]
## character(0)
## 
## [[2319]]
## character(0)
## 
## [[2320]]
## [1] "the "
## 
## [[2321]]
## [1] "the "
## 
## [[2322]]
## character(0)
## 
## [[2323]]
## character(0)
## 
## [[2324]]
## [1] "the " "the " "the "
## 
## [[2325]]
## [1] "the "
## 
## [[2326]]
## [1] "the " "the "
## 
## [[2327]]
## character(0)
## 
## [[2328]]
## character(0)
## 
## [[2329]]
## character(0)
## 
## [[2330]]
## character(0)
## 
## [[2331]]
## [1] "the " "the " "the "
## 
## [[2332]]
## character(0)
## 
## [[2333]]
## character(0)
## 
## [[2334]]
## character(0)
## 
## [[2335]]
## character(0)
## 
## [[2336]]
## [1] "the " "the "
## 
## [[2337]]
## character(0)
## 
## [[2338]]
## character(0)
## 
## [[2339]]
## [1] "the " "the " "the " "the "
## 
## [[2340]]
## character(0)
## 
## [[2341]]
## character(0)
## 
## [[2342]]
## character(0)
## 
## [[2343]]
## character(0)
## 
## [[2344]]
## [1] "the " "the "
## 
## [[2345]]
## [1] "the "
## 
## [[2346]]
## [1] "the "
## 
## [[2347]]
## [1] "the "
## 
## [[2348]]
## [1] "the "
## 
## [[2349]]
## character(0)
## 
## [[2350]]
## character(0)
## 
## [[2351]]
## [1] "the "
## 
## [[2352]]
## character(0)
## 
## [[2353]]
## [1] "the "
## 
## [[2354]]
## character(0)
## 
## [[2355]]
## [1] "the " "the "
## 
## [[2356]]
## character(0)
## 
## [[2357]]
## [1] "the " "the " "the "
## 
## [[2358]]
## character(0)
## 
## [[2359]]
## [1] "the "
## 
## [[2360]]
## [1] "the "
## 
## [[2361]]
## [1] "the "
## 
## [[2362]]
## character(0)
## 
## [[2363]]
## [1] "the " "the " "the "
## 
## [[2364]]
## character(0)
## 
## [[2365]]
## character(0)
## 
## [[2366]]
## [1] "the " "the " "the "
## 
## [[2367]]
## character(0)
## 
## [[2368]]
## [1] "the "
## 
## [[2369]]
## [1] "the " "the "
## 
## [[2370]]
## [1] "the "
## 
## [[2371]]
## character(0)
## 
## [[2372]]
## character(0)
## 
## [[2373]]
## character(0)
## 
## [[2374]]
## character(0)
## 
## [[2375]]
## [1] "the "
## 
## [[2376]]
## [1] "the " "the "
## 
## [[2377]]
## [1] "the " "the "
## 
## [[2378]]
## character(0)
## 
## [[2379]]
## character(0)
## 
## [[2380]]
## character(0)
## 
## [[2381]]
## character(0)
## 
## [[2382]]
## [1] "the "
## 
## [[2383]]
## [1] "the "
## 
## [[2384]]
## character(0)
## 
## [[2385]]
## [1] "the " "the "
## 
## [[2386]]
## [1] "the "
## 
## [[2387]]
## character(0)
## 
## [[2388]]
## character(0)
## 
## [[2389]]
## [1] "the "
## 
## [[2390]]
## [1] "the "
## 
## [[2391]]
## [1] "the " "the "
## 
## [[2392]]
## character(0)
## 
## [[2393]]
## [1] "the " "the "
## 
## [[2394]]
## [1] "the "
## 
## [[2395]]
## character(0)
## 
## [[2396]]
## [1] "the " "the "
## 
## [[2397]]
## [1] "tre "
## 
## [[2398]]
## [1] "the "
## 
## [[2399]]
## [1] "the "
## 
## [[2400]]
## character(0)
## 
## [[2401]]
## [1] "the "
## 
## [[2402]]
## [1] "the " "the "
## 
## [[2403]]
## [1] "the " "the " "the "
## 
## [[2404]]
## character(0)
## 
## [[2405]]
## character(0)
## 
## [[2406]]
## character(0)
## 
## [[2407]]
## [1] "the "
## 
## [[2408]]
## character(0)
## 
## [[2409]]
## [1] "the " "the "
## 
## [[2410]]
## character(0)
## 
## [[2411]]
## character(0)
## 
## [[2412]]
## [1] "the "
## 
## [[2413]]
## character(0)
## 
## [[2414]]
## character(0)
## 
## [[2415]]
## [1] "the "
## 
## [[2416]]
## character(0)
## 
## [[2417]]
## character(0)
## 
## [[2418]]
## character(0)
## 
## [[2419]]
## [1] "the " "the "
## 
## [[2420]]
## [1] "the " "the " "the "
## 
## [[2421]]
## character(0)
## 
## [[2422]]
## [1] "the "
## 
## [[2423]]
## character(0)
## 
## [[2424]]
## [1] "the "
## 
## [[2425]]
## [1] "the " "the "
## 
## [[2426]]
## [1] "the " "the "
## 
## [[2427]]
## character(0)
## 
## [[2428]]
## [1] "the " "the "
## 
## [[2429]]
## [1] "the "
## 
## [[2430]]
## character(0)
## 
## [[2431]]
## [1] "the "
## 
## [[2432]]
## character(0)
## 
## [[2433]]
## [1] "the " "the "
## 
## [[2434]]
## character(0)
## 
## [[2435]]
## character(0)
## 
## [[2436]]
## character(0)
## 
## [[2437]]
## character(0)
## 
## [[2438]]
## [1] "the "
## 
## [[2439]]
## [1] "the " "tle "
## 
## [[2440]]
## [1] "the " "the "
## 
## [[2441]]
## character(0)
## 
## [[2442]]
## [1] "the " "the " "the "
## 
## [[2443]]
## [1] "the " "the " "the "
## 
## [[2444]]
## character(0)
## 
## [[2445]]
## [1] "the "
## 
## [[2446]]
## [1] "the "
## 
## [[2447]]
## [1] "the " "the "
## 
## [[2448]]
## [1] "the " "the "
## 
## [[2449]]
## [1] "the " "the "
## 
## [[2450]]
## character(0)
## 
## [[2451]]
## character(0)
## 
## [[2452]]
## character(0)
## 
## [[2453]]
## [1] "the "
## 
## [[2454]]
## character(0)
## 
## [[2455]]
## [1] "the "
## 
## [[2456]]
## [1] "the "
## 
## [[2457]]
## [1] "the "
## 
## [[2458]]
## character(0)
## 
## [[2459]]
## character(0)
## 
## [[2460]]
## character(0)
## 
## [[2461]]
## [1] "the "
## 
## [[2462]]
## character(0)
## 
## [[2463]]
## character(0)
## 
## [[2464]]
## [1] "the " "the "
## 
## [[2465]]
## character(0)
## 
## [[2466]]
## character(0)
## 
## [[2467]]
## character(0)
## 
## [[2468]]
## character(0)
## 
## [[2469]]
## [1] "the "
## 
## [[2470]]
## [1] "the " "the "
## 
## [[2471]]
## [1] "the " "the "
## 
## [[2472]]
## character(0)
## 
## [[2473]]
## character(0)
## 
## [[2474]]
## character(0)
## 
## [[2475]]
## character(0)
## 
## [[2476]]
## [1] "the "
## 
## [[2477]]
## character(0)
## 
## [[2478]]
## character(0)
## 
## [[2479]]
## [1] "the "
## 
## [[2480]]
## [1] "the "
## 
## [[2481]]
## [1] "the "
## 
## [[2482]]
## [1] "the "
## 
## [[2483]]
## [1] "the "
## 
## [[2484]]
## character(0)
## 
## [[2485]]
## character(0)
## 
## [[2486]]
## [1] "the " "the " "the "
## 
## [[2487]]
## character(0)
## 
## [[2488]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2489]]
## [1] "the " "the "
## 
## [[2490]]
## [1] "the " "the "
## 
## [[2491]]
## [1] "the "
## 
## [[2492]]
## [1] "the " "the "
## 
## [[2493]]
## character(0)
## 
## [[2494]]
## [1] "the " "the " "the " "the "
## 
## [[2495]]
## character(0)
## 
## [[2496]]
## [1] "the "
## 
## [[2497]]
## [1] "the "
## 
## [[2498]]
## character(0)
## 
## [[2499]]
## [1] "the "
## 
## [[2500]]
## character(0)
## 
## [[2501]]
## [1] "the "
## 
## [[2502]]
## character(0)
## 
## [[2503]]
## character(0)
## 
## [[2504]]
## [1] "the "
## 
## [[2505]]
## [1] "the " "the "
## 
## [[2506]]
## character(0)
## 
## [[2507]]
## character(0)
## 
## [[2508]]
## [1] "the "
## 
## [[2509]]
## [1] "the "
## 
## [[2510]]
## [1] "the "
## 
## [[2511]]
## [1] "the "
## 
## [[2512]]
## [1] "the "
## 
## [[2513]]
## character(0)
## 
## [[2514]]
## character(0)
## 
## [[2515]]
## [1] "the "
## 
## [[2516]]
## character(0)
## 
## [[2517]]
## character(0)
## 
## [[2518]]
## [1] "the " "the "
## 
## [[2519]]
## character(0)
## 
## [[2520]]
## [1] "the " "the " "the "
## 
## [[2521]]
## character(0)
## 
## [[2522]]
## character(0)
## 
## [[2523]]
## character(0)
## 
## [[2524]]
## character(0)
## 
## [[2525]]
## character(0)
## 
## [[2526]]
## [1] "the " "the "
## 
## [[2527]]
## character(0)
## 
## [[2528]]
## character(0)
## 
## [[2529]]
## character(0)
## 
## [[2530]]
## [1] "the " "the " "the " "the "
## 
## [[2531]]
## character(0)
## 
## [[2532]]
## character(0)
## 
## [[2533]]
## character(0)
## 
## [[2534]]
## [1] "the " "the " "the "
## 
## [[2535]]
## character(0)
## 
## [[2536]]
## [1] "the " "the " "the "
## 
## [[2537]]
## [1] "the "
## 
## [[2538]]
## character(0)
## 
## [[2539]]
## [1] "the "
## 
## [[2540]]
## character(0)
## 
## [[2541]]
## [1] "the "
## 
## [[2542]]
## [1] "the " "the "
## 
## [[2543]]
## character(0)
## 
## [[2544]]
## character(0)
## 
## [[2545]]
## character(0)
## 
## [[2546]]
## [1] "the " "the " "the "
## 
## [[2547]]
## character(0)
## 
## [[2548]]
## [1] "the "
## 
## [[2549]]
## [1] "tre "
## 
## [[2550]]
## character(0)
## 
## [[2551]]
## [1] "the "
## 
## [[2552]]
## character(0)
## 
## [[2553]]
## [1] "the "
## 
## [[2554]]
## [1] "the " "the " "the " "tre "
## 
## [[2555]]
## character(0)
## 
## [[2556]]
## [1] "the " "the "
## 
## [[2557]]
## [1] "the "
## 
## [[2558]]
## [1] "the " "the "
## 
## [[2559]]
## [1] "tle " "the "
## 
## [[2560]]
## character(0)
## 
## [[2561]]
## [1] "the "
## 
## [[2562]]
## [1] "the "
## 
## [[2563]]
## character(0)
## 
## [[2564]]
## character(0)
## 
## [[2565]]
## [1] "the "
## 
## [[2566]]
## character(0)
## 
## [[2567]]
## character(0)
## 
## [[2568]]
## [1] "the "
## 
## [[2569]]
## character(0)
## 
## [[2570]]
## character(0)
## 
## [[2571]]
## [1] "the " "the " "the "
## 
## [[2572]]
## character(0)
## 
## [[2573]]
## [1] "the " "the " "tle " "tle "
## 
## [[2574]]
## [1] "the "
## 
## [[2575]]
## [1] "the " "the " "the "
## 
## [[2576]]
## [1] "the "
## 
## [[2577]]
## [1] "the "
## 
## [[2578]]
## character(0)
## 
## [[2579]]
## [1] "the "
## 
## [[2580]]
## [1] "the " "the "
## 
## [[2581]]
## [1] "the " "the "
## 
## [[2582]]
## [1] "the " "the "
## 
## [[2583]]
## character(0)
## 
## [[2584]]
## [1] "the " "the "
## 
## [[2585]]
## [1] "the " "the " "the "
## 
## [[2586]]
## character(0)
## 
## [[2587]]
## [1] "the "
## 
## [[2588]]
## [1] "tle " "the "
## 
## [[2589]]
## character(0)
## 
## [[2590]]
## character(0)
## 
## [[2591]]
## character(0)
## 
## [[2592]]
## character(0)
## 
## [[2593]]
## character(0)
## 
## [[2594]]
## [1] "the "
## 
## [[2595]]
## [1] "the " "the "
## 
## [[2596]]
## [1] "the "
## 
## [[2597]]
## [1] "the " "the "
## 
## [[2598]]
## [1] "the " "tle " "the "
## 
## [[2599]]
## character(0)
## 
## [[2600]]
## character(0)
## 
## [[2601]]
## [1] "the "
## 
## [[2602]]
## character(0)
## 
## [[2603]]
## [1] "the " "the "
## 
## [[2604]]
## character(0)
## 
## [[2605]]
## character(0)
## 
## [[2606]]
## character(0)
## 
## [[2607]]
## [1] "the " "the "
## 
## [[2608]]
## character(0)
## 
## [[2609]]
## [1] "the "
## 
## [[2610]]
## character(0)
## 
## [[2611]]
## character(0)
## 
## [[2612]]
## character(0)
## 
## [[2613]]
## character(0)
## 
## [[2614]]
## [1] "the " "the "
## 
## [[2615]]
## [1] "the "
## 
## [[2616]]
## character(0)
## 
## [[2617]]
## character(0)
## 
## [[2618]]
## character(0)
## 
## [[2619]]
## character(0)
## 
## [[2620]]
## [1] "tle " "the " "the "
## 
## [[2621]]
## [1] "the " "the " "the " "the "
## 
## [[2622]]
## [1] "the " "the "
## 
## [[2623]]
## character(0)
## 
## [[2624]]
## character(0)
## 
## [[2625]]
## [1] "the " "the "
## 
## [[2626]]
## character(0)
## 
## [[2627]]
## [1] "the "
## 
## [[2628]]
## character(0)
## 
## [[2629]]
## character(0)
## 
## [[2630]]
## [1] "the "
## 
## [[2631]]
## character(0)
## 
## [[2632]]
## [1] "the "
## 
## [[2633]]
## [1] "the " "the "
## 
## [[2634]]
## [1] "the " "the "
## 
## [[2635]]
## [1] "the "
## 
## [[2636]]
## character(0)
## 
## [[2637]]
## character(0)
## 
## [[2638]]
## [1] "the " "the "
## 
## [[2639]]
## character(0)
## 
## [[2640]]
## character(0)
## 
## [[2641]]
## character(0)
## 
## [[2642]]
## [1] "the "
## 
## [[2643]]
## character(0)
## 
## [[2644]]
## [1] "the "
## 
## [[2645]]
## [1] "the " "the "
## 
## [[2646]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2647]]
## [1] "the "
## 
## [[2648]]
## character(0)
## 
## [[2649]]
## character(0)
## 
## [[2650]]
## character(0)
## 
## [[2651]]
## character(0)
## 
## [[2652]]
## [1] "the "
## 
## [[2653]]
## character(0)
## 
## [[2654]]
## [1] "the " "the " "the " "the "
## 
## [[2655]]
## [1] "the "
## 
## [[2656]]
## character(0)
## 
## [[2657]]
## character(0)
## 
## [[2658]]
## character(0)
## 
## [[2659]]
## character(0)
## 
## [[2660]]
## character(0)
## 
## [[2661]]
## character(0)
## 
## [[2662]]
## [1] "the " "the "
## 
## [[2663]]
## character(0)
## 
## [[2664]]
## [1] "the "
## 
## [[2665]]
## [1] "the "
## 
## [[2666]]
## [1] "the "
## 
## [[2667]]
## [1] "the "
## 
## [[2668]]
## character(0)
## 
## [[2669]]
## [1] "the " "the "
## 
## [[2670]]
## character(0)
## 
## [[2671]]
## character(0)
## 
## [[2672]]
## [1] "the " "the "
## 
## [[2673]]
## [1] "the "
## 
## [[2674]]
## [1] "the "
## 
## [[2675]]
## [1] "the " "the "
## 
## [[2676]]
## [1] "the " "the "
## 
## [[2677]]
## [1] "the "
## 
## [[2678]]
## [1] "the "
## 
## [[2679]]
## character(0)
## 
## [[2680]]
## character(0)
## 
## [[2681]]
## [1] "the " "the "
## 
## [[2682]]
## [1] "the "
## 
## [[2683]]
## [1] "tre " "the "
## 
## [[2684]]
## [1] "the " "the "
## 
## [[2685]]
## [1] "the "
## 
## [[2686]]
## [1] "the " "the "
## 
## [[2687]]
## [1] "the " "the "
## 
## [[2688]]
## [1] "the "
## 
## [[2689]]
## [1] "the " "the "
## 
## [[2690]]
## character(0)
## 
## [[2691]]
## [1] "the " "the "
## 
## [[2692]]
## [1] "the "
## 
## [[2693]]
## [1] "the "
## 
## [[2694]]
## character(0)
## 
## [[2695]]
## character(0)
## 
## [[2696]]
## character(0)
## 
## [[2697]]
## character(0)
## 
## [[2698]]
## [1] "the "
## 
## [[2699]]
## [1] "the "
## 
## [[2700]]
## [1] "the "
## 
## [[2701]]
## [1] "the "
## 
## [[2702]]
## [1] "the "
## 
## [[2703]]
## character(0)
## 
## [[2704]]
## character(0)
## 
## [[2705]]
## [1] "the "
## 
## [[2706]]
## [1] "the "
## 
## [[2707]]
## character(0)
## 
## [[2708]]
## [1] "the "
## 
## [[2709]]
## character(0)
## 
## [[2710]]
## character(0)
## 
## [[2711]]
## [1] "the " "tle "
## 
## [[2712]]
## character(0)
## 
## [[2713]]
## [1] "the " "the " "the "
## 
## [[2714]]
## character(0)
## 
## [[2715]]
## character(0)
## 
## [[2716]]
## character(0)
## 
## [[2717]]
## character(0)
## 
## [[2718]]
## character(0)
## 
## [[2719]]
## [1] "the "
## 
## [[2720]]
## [1] "the "
## 
## [[2721]]
## [1] "the " "the "
## 
## [[2722]]
## [1] "the " "the " "the "
## 
## [[2723]]
## character(0)
## 
## [[2724]]
## [1] "the " "the " "the " "the "
## 
## [[2725]]
## character(0)
## 
## [[2726]]
## character(0)
## 
## [[2727]]
## character(0)
## 
## [[2728]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[2729]]
## character(0)
## 
## [[2730]]
## character(0)
## 
## [[2731]]
## character(0)
## 
## [[2732]]
## character(0)
## 
## [[2733]]
## [1] "the "
## 
## [[2734]]
## [1] "the "
## 
## [[2735]]
## character(0)
## 
## [[2736]]
## character(0)
## 
## [[2737]]
## [1] "the " "the " "the "
## 
## [[2738]]
## [1] "the " "the " "the "
## 
## [[2739]]
## [1] "the " "the "
## 
## [[2740]]
## [1] "the " "the " "the "
## 
## [[2741]]
## character(0)
## 
## [[2742]]
## character(0)
## 
## [[2743]]
## character(0)
## 
## [[2744]]
## character(0)
## 
## [[2745]]
## character(0)
## 
## [[2746]]
## [1] "the " "tre "
## 
## [[2747]]
## character(0)
## 
## [[2748]]
## [1] "the " "the " "the "
## 
## [[2749]]
## character(0)
## 
## [[2750]]
## character(0)
## 
## [[2751]]
## character(0)
## 
## [[2752]]
## character(0)
## 
## [[2753]]
## character(0)
## 
## [[2754]]
## [1] "the " "the "
## 
## [[2755]]
## [1] "the "
## 
## [[2756]]
## character(0)
## 
## [[2757]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2758]]
## character(0)
## 
## [[2759]]
## [1] "tle "
## 
## [[2760]]
## character(0)
## 
## [[2761]]
## [1] "the "
## 
## [[2762]]
## character(0)
## 
## [[2763]]
## [1] "the "
## 
## [[2764]]
## character(0)
## 
## [[2765]]
## character(0)
## 
## [[2766]]
## character(0)
## 
## [[2767]]
## character(0)
## 
## [[2768]]
## character(0)
## 
## [[2769]]
## [1] "the "
## 
## [[2770]]
## [1] "the " "the "
## 
## [[2771]]
## character(0)
## 
## [[2772]]
## [1] "the " "the "
## 
## [[2773]]
## [1] "the "
## 
## [[2774]]
## character(0)
## 
## [[2775]]
## [1] "the "
## 
## [[2776]]
## character(0)
## 
## [[2777]]
## [1] "tee " "the " "the " "the "
## 
## [[2778]]
## character(0)
## 
## [[2779]]
## [1] "the "
## 
## [[2780]]
## [1] "the " "the "
## 
## [[2781]]
## [1] "the "
## 
## [[2782]]
## [1] "the "
## 
## [[2783]]
## character(0)
## 
## [[2784]]
## character(0)
## 
## [[2785]]
## [1] "the "
## 
## [[2786]]
## [1] "the " "the " "the "
## 
## [[2787]]
## [1] "the "
## 
## [[2788]]
## [1] "the " "the "
## 
## [[2789]]
## character(0)
## 
## [[2790]]
## [1] "the " "the " "the " "the "
## 
## [[2791]]
## [1] "the "
## 
## [[2792]]
## [1] "the "
## 
## [[2793]]
## character(0)
## 
## [[2794]]
## character(0)
## 
## [[2795]]
## [1] "the " "the " "the "
## 
## [[2796]]
## character(0)
## 
## [[2797]]
## character(0)
## 
## [[2798]]
## character(0)
## 
## [[2799]]
## [1] "the " "the "
## 
## [[2800]]
## [1] "the " "tte " "the "
## 
## [[2801]]
## character(0)
## 
## [[2802]]
## character(0)
## 
## [[2803]]
## [1] "the " "the "
## 
## [[2804]]
## character(0)
## 
## [[2805]]
## [1] "the " "the "
## 
## [[2806]]
## [1] "the " "the " "the "
## 
## [[2807]]
## character(0)
## 
## [[2808]]
## [1] "the " "the "
## 
## [[2809]]
## character(0)
## 
## [[2810]]
## character(0)
## 
## [[2811]]
## character(0)
## 
## [[2812]]
## character(0)
## 
## [[2813]]
## [1] "the " "the "
## 
## [[2814]]
## character(0)
## 
## [[2815]]
## character(0)
## 
## [[2816]]
## character(0)
## 
## [[2817]]
## [1] "tre " "the " "the "
## 
## [[2818]]
## character(0)
## 
## [[2819]]
## character(0)
## 
## [[2820]]
## [1] "the " "the "
## 
## [[2821]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2822]]
## [1] "the " "the " "the " "the "
## 
## [[2823]]
## [1] "the "
## 
## [[2824]]
## [1] "the " "the "
## 
## [[2825]]
## character(0)
## 
## [[2826]]
## character(0)
## 
## [[2827]]
## [1] "the "
## 
## [[2828]]
## [1] "the " "the "
## 
## [[2829]]
## [1] "the " "the " "the "
## 
## [[2830]]
## [1] "the "
## 
## [[2831]]
## [1] "the "
## 
## [[2832]]
## [1] "the "
## 
## [[2833]]
## character(0)
## 
## [[2834]]
## character(0)
## 
## [[2835]]
## character(0)
## 
## [[2836]]
## character(0)
## 
## [[2837]]
## character(0)
## 
## [[2838]]
## [1] "the " "the "
## 
## [[2839]]
## [1] "the "
## 
## [[2840]]
## character(0)
## 
## [[2841]]
## [1] "the "
## 
## [[2842]]
## [1] "the "
## 
## [[2843]]
## [1] "the "
## 
## [[2844]]
## character(0)
## 
## [[2845]]
## character(0)
## 
## [[2846]]
## [1] "the " "the "
## 
## [[2847]]
## character(0)
## 
## [[2848]]
## [1] "the " "the "
## 
## [[2849]]
## [1] "the " "the "
## 
## [[2850]]
## [1] "the "
## 
## [[2851]]
## [1] "the " "the "
## 
## [[2852]]
## character(0)
## 
## [[2853]]
## character(0)
## 
## [[2854]]
## [1] "the "
## 
## [[2855]]
## [1] "the " "the "
## 
## [[2856]]
## [1] "the "
## 
## [[2857]]
## [1] "the "
## 
## [[2858]]
## character(0)
## 
## [[2859]]
## character(0)
## 
## [[2860]]
## character(0)
## 
## [[2861]]
## character(0)
## 
## [[2862]]
## character(0)
## 
## [[2863]]
## [1] "the "
## 
## [[2864]]
## [1] "the " "the "
## 
## [[2865]]
## character(0)
## 
## [[2866]]
## [1] "the "
## 
## [[2867]]
## character(0)
## 
## [[2868]]
## character(0)
## 
## [[2869]]
## [1] "the "
## 
## [[2870]]
## [1] "tte "
## 
## [[2871]]
## [1] "the "
## 
## [[2872]]
## [1] "the " "tre " "the "
## 
## [[2873]]
## [1] "tle " "the " "the "
## 
## [[2874]]
## character(0)
## 
## [[2875]]
## [1] "the " "the "
## 
## [[2876]]
## character(0)
## 
## [[2877]]
## character(0)
## 
## [[2878]]
## [1] "the "
## 
## [[2879]]
## [1] "the " "the "
## 
## [[2880]]
## character(0)
## 
## [[2881]]
## character(0)
## 
## [[2882]]
## [1] "the "
## 
## [[2883]]
## character(0)
## 
## [[2884]]
## character(0)
## 
## [[2885]]
## [1] "the "
## 
## [[2886]]
## [1] "the "
## 
## [[2887]]
## character(0)
## 
## [[2888]]
## character(0)
## 
## [[2889]]
## character(0)
## 
## [[2890]]
## character(0)
## 
## [[2891]]
## character(0)
## 
## [[2892]]
## [1] "the "
## 
## [[2893]]
## character(0)
## 
## [[2894]]
## [1] "the "
## 
## [[2895]]
## character(0)
## 
## [[2896]]
## character(0)
## 
## [[2897]]
## [1] "the "
## 
## [[2898]]
## character(0)
## 
## [[2899]]
## [1] "the " "the "
## 
## [[2900]]
## character(0)
## 
## [[2901]]
## [1] "the " "the "
## 
## [[2902]]
## character(0)
## 
## [[2903]]
## character(0)
## 
## [[2904]]
## character(0)
## 
## [[2905]]
## [1] "the " "the "
## 
## [[2906]]
## character(0)
## 
## [[2907]]
## [1] "the " "the " "the " "the " "the "
## 
## [[2908]]
## [1] "the " "the "
## 
## [[2909]]
## [1] "the "
## 
## [[2910]]
## [1] "the " "the " "the " "the "
## 
## [[2911]]
## character(0)
## 
## [[2912]]
## [1] "the " "the " "the "
## 
## [[2913]]
## character(0)
## 
## [[2914]]
## character(0)
## 
## [[2915]]
## character(0)
## 
## [[2916]]
## [1] "the " "the "
## 
## [[2917]]
## character(0)
## 
## [[2918]]
## [1] "the "
## 
## [[2919]]
## [1] "the " "the " "the " "the "
## 
## [[2920]]
## character(0)
## 
## [[2921]]
## character(0)
## 
## [[2922]]
## [1] "the " "the "
## 
## [[2923]]
## character(0)
## 
## [[2924]]
## character(0)
## 
## [[2925]]
## character(0)
## 
## [[2926]]
## character(0)
## 
## [[2927]]
## [1] "the "
## 
## [[2928]]
## character(0)
## 
## [[2929]]
## [1] "the "
## 
## [[2930]]
## character(0)
## 
## [[2931]]
## [1] "the " "tte " "tie "
## 
## [[2932]]
## [1] "the "
## 
## [[2933]]
## character(0)
## 
## [[2934]]
## [1] "the " "the "
## 
## [[2935]]
## [1] "the "
## 
## [[2936]]
## character(0)
## 
## [[2937]]
## [1] "the " "the "
## 
## [[2938]]
## character(0)
## 
## [[2939]]
## [1] "the "
## 
## [[2940]]
## character(0)
## 
## [[2941]]
## character(0)
## 
## [[2942]]
## [1] "the "
## 
## [[2943]]
## [1] "the "
## 
## [[2944]]
## character(0)
## 
## [[2945]]
## character(0)
## 
## [[2946]]
## [1] "the " "the "
## 
## [[2947]]
## character(0)
## 
## [[2948]]
## [1] "the "
## 
## [[2949]]
## [1] "the " "the " "the "
## 
## [[2950]]
## character(0)
## 
## [[2951]]
## character(0)
## 
## [[2952]]
## [1] "the " "the " "the "
## 
## [[2953]]
## character(0)
## 
## [[2954]]
## character(0)
## 
## [[2955]]
## character(0)
## 
## [[2956]]
## character(0)
## 
## [[2957]]
## character(0)
## 
## [[2958]]
## character(0)
## 
## [[2959]]
## character(0)
## 
## [[2960]]
## [1] "the "
## 
## [[2961]]
## character(0)
## 
## [[2962]]
## [1] "the " "the "
## 
## [[2963]]
## character(0)
## 
## [[2964]]
## character(0)
## 
## [[2965]]
## [1] "tee "
## 
## [[2966]]
## character(0)
## 
## [[2967]]
## [1] "the " "the " "the " "the "
## 
## [[2968]]
## character(0)
## 
## [[2969]]
## character(0)
## 
## [[2970]]
## character(0)
## 
## [[2971]]
## [1] "the " "the " "the "
## 
## [[2972]]
## [1] "the "
## 
## [[2973]]
## character(0)
## 
## [[2974]]
## character(0)
## 
## [[2975]]
## [1] "the " "the "
## 
## [[2976]]
## [1] "the "
## 
## [[2977]]
## [1] "the " "tle "
## 
## [[2978]]
## [1] "the "
## 
## [[2979]]
## character(0)
## 
## [[2980]]
## [1] "the " "the " "the "
## 
## [[2981]]
## character(0)
## 
## [[2982]]
## character(0)
## 
## [[2983]]
## [1] "the " "the "
## 
## [[2984]]
## [1] "the " "the " "the "
## 
## [[2985]]
## character(0)
## 
## [[2986]]
## character(0)
## 
## [[2987]]
## character(0)
## 
## [[2988]]
## [1] "the "
## 
## [[2989]]
## character(0)
## 
## [[2990]]
## [1] "the "
## 
## [[2991]]
## [1] "the "
## 
## [[2992]]
## [1] "the "
## 
## [[2993]]
## character(0)
## 
## [[2994]]
## [1] "the "
## 
## [[2995]]
## [1] "the " "the "
## 
## [[2996]]
## [1] "the "
## 
## [[2997]]
## character(0)
## 
## [[2998]]
## character(0)
## 
## [[2999]]
## [1] "the "
## 
## [[3000]]
## character(0)
## 
## [[3001]]
## character(0)
## 
## [[3002]]
## [1] "the " "the "
## 
## [[3003]]
## [1] "the "
## 
## [[3004]]
## [1] "the "
## 
## [[3005]]
## [1] "the "
## 
## [[3006]]
## [1] "the "
## 
## [[3007]]
## [1] "the " "the "
## 
## [[3008]]
## [1] "tle "
## 
## [[3009]]
## [1] "the " "the "
## 
## [[3010]]
## character(0)
## 
## [[3011]]
## character(0)
## 
## [[3012]]
## [1] "the " "the "
## 
## [[3013]]
## [1] "the "
## 
## [[3014]]
## [1] "the "
## 
## [[3015]]
## [1] "the " "the "
## 
## [[3016]]
## [1] "the " "the "
## 
## [[3017]]
## [1] "the "
## 
## [[3018]]
## [1] "the " "the "
## 
## [[3019]]
## [1] "the " "the " "the "
## 
## [[3020]]
## [1] "the "
## 
## [[3021]]
## [1] "the " "the " "the " "the "
## 
## [[3022]]
## [1] "the " "the "
## 
## [[3023]]
## [1] "the " "the "
## 
## [[3024]]
## character(0)
## 
## [[3025]]
## [1] "the " "the " "the "
## 
## [[3026]]
## [1] "the "
## 
## [[3027]]
## character(0)
## 
## [[3028]]
## character(0)
## 
## [[3029]]
## character(0)
## 
## [[3030]]
## [1] "the "
## 
## [[3031]]
## character(0)
## 
## [[3032]]
## character(0)
## 
## [[3033]]
## character(0)
## 
## [[3034]]
## character(0)
## 
## [[3035]]
## character(0)
## 
## [[3036]]
## character(0)
## 
## [[3037]]
## [1] "the " "the "
## 
## [[3038]]
## [1] "the " "the "
## 
## [[3039]]
## character(0)
## 
## [[3040]]
## character(0)
## 
## [[3041]]
## [1] "the " "the "
## 
## [[3042]]
## character(0)
## 
## [[3043]]
## [1] "the " "the "
## 
## [[3044]]
## character(0)
## 
## [[3045]]
## character(0)
## 
## [[3046]]
## character(0)
## 
## [[3047]]
## character(0)
## 
## [[3048]]
## [1] "the "
## 
## [[3049]]
## [1] "the " "the " "the " "the "
## 
## [[3050]]
## character(0)
## 
## [[3051]]
## character(0)
## 
## [[3052]]
## character(0)
## 
## [[3053]]
## character(0)
## 
## [[3054]]
## character(0)
## 
## [[3055]]
## [1] "the " "the "
## 
## [[3056]]
## [1] "the "
## 
## [[3057]]
## [1] "the "
## 
## [[3058]]
## character(0)
## 
## [[3059]]
## [1] "the "
## 
## [[3060]]
## character(0)
## 
## [[3061]]
## [1] "the "
## 
## [[3062]]
## character(0)
## 
## [[3063]]
## [1] "the " "the " "the " "the "
## 
## [[3064]]
## [1] "the " "the "
## 
## [[3065]]
## character(0)
## 
## [[3066]]
## character(0)
## 
## [[3067]]
## character(0)
## 
## [[3068]]
## [1] "the " "the "
## 
## [[3069]]
## [1] "the "
## 
## [[3070]]
## character(0)
## 
## [[3071]]
## character(0)
## 
## [[3072]]
## character(0)
## 
## [[3073]]
## [1] "the " "the "
## 
## [[3074]]
## [1] "the "
## 
## [[3075]]
## [1] "the " "the "
## 
## [[3076]]
## [1] "the "
## 
## [[3077]]
## [1] "the "
## 
## [[3078]]
## character(0)
## 
## [[3079]]
## character(0)
## 
## [[3080]]
## [1] "the " "the " "the "
## 
## [[3081]]
## [1] "the "
## 
## [[3082]]
## character(0)
## 
## [[3083]]
## [1] "the "
## 
## [[3084]]
## character(0)
## 
## [[3085]]
## [1] "the "
## 
## [[3086]]
## [1] "the " "the "
## 
## [[3087]]
## character(0)
## 
## [[3088]]
## [1] "the "
## 
## [[3089]]
## [1] "the " "the "
## 
## [[3090]]
## character(0)
## 
## [[3091]]
## character(0)
## 
## [[3092]]
## [1] "the "
## 
## [[3093]]
## [1] "the "
## 
## [[3094]]
## [1] "the "
## 
## [[3095]]
## character(0)
## 
## [[3096]]
## [1] "the "
## 
## [[3097]]
## [1] "the "
## 
## [[3098]]
## character(0)
## 
## [[3099]]
## [1] "the " "the "
## 
## [[3100]]
## character(0)
## 
## [[3101]]
## [1] "tle "
## 
## [[3102]]
## [1] "the " "the "
## 
## [[3103]]
## [1] "the " "tle "
## 
## [[3104]]
## character(0)
## 
## [[3105]]
## character(0)
## 
## [[3106]]
## [1] "the "
## 
## [[3107]]
## character(0)
## 
## [[3108]]
## [1] "the " "the " "the " "the "
## 
## [[3109]]
## character(0)
## 
## [[3110]]
## character(0)
## 
## [[3111]]
## character(0)
## 
## [[3112]]
## character(0)
## 
## [[3113]]
## [1] "the "
## 
## [[3114]]
## character(0)
## 
## [[3115]]
## character(0)
## 
## [[3116]]
## [1] "the "
## 
## [[3117]]
## character(0)
## 
## [[3118]]
## [1] "the " "the "
## 
## [[3119]]
## [1] "the "
## 
## [[3120]]
## character(0)
## 
## [[3121]]
## character(0)
## 
## [[3122]]
## character(0)
## 
## [[3123]]
## character(0)
## 
## [[3124]]
## [1] "the "
## 
## [[3125]]
## character(0)
## 
## [[3126]]
## character(0)
## 
## [[3127]]
## [1] "the " "the " "the "
## 
## [[3128]]
## character(0)
## 
## [[3129]]
## character(0)
## 
## [[3130]]
## [1] "the " "the " "the "
## 
## [[3131]]
## [1] "the " "the "
## 
## [[3132]]
## character(0)
## 
## [[3133]]
## character(0)
## 
## [[3134]]
## [1] "the "
## 
## [[3135]]
## character(0)
## 
## [[3136]]
## character(0)
## 
## [[3137]]
## [1] "the "
## 
## [[3138]]
## [1] "the " "the " "the " "the "
## 
## [[3139]]
## [1] "the " "the "
## 
## [[3140]]
## [1] "the " "the "
## 
## [[3141]]
## character(0)
## 
## [[3142]]
## [1] "the "
## 
## [[3143]]
## [1] "the "
## 
## [[3144]]
## character(0)
## 
## [[3145]]
## character(0)
## 
## [[3146]]
## [1] "the " "the " "the "
## 
## [[3147]]
## [1] "the "
## 
## [[3148]]
## [1] "the "
## 
## [[3149]]
## character(0)
## 
## [[3150]]
## [1] "the "
## 
## [[3151]]
## character(0)
## 
## [[3152]]
## character(0)
## 
## [[3153]]
## character(0)
## 
## [[3154]]
## character(0)
## 
## [[3155]]
## character(0)
## 
## [[3156]]
## character(0)
## 
## [[3157]]
## character(0)
## 
## [[3158]]
## [1] "the "
## 
## [[3159]]
## character(0)
## 
## [[3160]]
## character(0)
## 
## [[3161]]
## [1] "the "
## 
## [[3162]]
## character(0)
## 
## [[3163]]
## character(0)
## 
## [[3164]]
## [1] "the "
## 
## [[3165]]
## character(0)
## 
## [[3166]]
## character(0)
## 
## [[3167]]
## [1] "the "
## 
## [[3168]]
## [1] "the " "the " "the " "the "
## 
## [[3169]]
## character(0)
## 
## [[3170]]
## character(0)
## 
## [[3171]]
## [1] "the "
## 
## [[3172]]
## [1] "the "
## 
## [[3173]]
## character(0)
## 
## [[3174]]
## [1] "the " "the "
## 
## [[3175]]
## [1] "the "
## 
## [[3176]]
## [1] "the "
## 
## [[3177]]
## character(0)
## 
## [[3178]]
## character(0)
## 
## [[3179]]
## character(0)
## 
## [[3180]]
## character(0)
## 
## [[3181]]
## character(0)
## 
## [[3182]]
## character(0)
## 
## [[3183]]
## character(0)
## 
## [[3184]]
## character(0)
## 
## [[3185]]
## character(0)
## 
## [[3186]]
## character(0)
## 
## [[3187]]
## character(0)
## 
## [[3188]]
## [1] "the "
## 
## [[3189]]
## [1] "the "
## 
## [[3190]]
## character(0)
## 
## [[3191]]
## [1] "the "
## 
## [[3192]]
## [1] "the "
## 
## [[3193]]
## character(0)
## 
## [[3194]]
## [1] "the "
## 
## [[3195]]
## character(0)
## 
## [[3196]]
## [1] "the " "the "
## 
## [[3197]]
## [1] "the "
## 
## [[3198]]
## [1] "the "
## 
## [[3199]]
## character(0)
## 
## [[3200]]
## character(0)
## 
## [[3201]]
## character(0)
## 
## [[3202]]
## [1] "the "
## 
## [[3203]]
## [1] "the "
## 
## [[3204]]
## character(0)
## 
## [[3205]]
## character(0)
## 
## [[3206]]
## [1] "the "
## 
## [[3207]]
## character(0)
## 
## [[3208]]
## [1] "the " "the "
## 
## [[3209]]
## character(0)
## 
## [[3210]]
## [1] "the " "the " "the "
## 
## [[3211]]
## character(0)
## 
## [[3212]]
## [1] "the " "the "
## 
## [[3213]]
## character(0)
## 
## [[3214]]
## character(0)
## 
## [[3215]]
## character(0)
## 
## [[3216]]
## character(0)
## 
## [[3217]]
## [1] "the " "the "
## 
## [[3218]]
## character(0)
## 
## [[3219]]
## [1] "the "
## 
## [[3220]]
## character(0)
## 
## [[3221]]
## character(0)
## 
## [[3222]]
## character(0)
## 
## [[3223]]
## [1] "the "
## 
## [[3224]]
## [1] "the "
## 
## [[3225]]
## character(0)
## 
## [[3226]]
## [1] "the "
## 
## [[3227]]
## [1] "the "
## 
## [[3228]]
## character(0)
## 
## [[3229]]
## character(0)
## 
## [[3230]]
## character(0)
## 
## [[3231]]
## [1] "the " "the "
## 
## [[3232]]
## character(0)
## 
## [[3233]]
## [1] "the "
## 
## [[3234]]
## [1] "the "
## 
## [[3235]]
## [1] "the " "the "
## 
## [[3236]]
## character(0)
## 
## [[3237]]
## [1] "the "
## 
## [[3238]]
## character(0)
## 
## [[3239]]
## character(0)
## 
## [[3240]]
## character(0)
## 
## [[3241]]
## [1] "the " "the " "the "
## 
## [[3242]]
## [1] "the "
## 
## [[3243]]
## character(0)
## 
## [[3244]]
## character(0)
## 
## [[3245]]
## [1] "the " "the "
## 
## [[3246]]
## character(0)
## 
## [[3247]]
## [1] "the " "the " "tle "
## 
## [[3248]]
## character(0)
## 
## [[3249]]
## character(0)
## 
## [[3250]]
## character(0)
## 
## [[3251]]
## character(0)
## 
## [[3252]]
## character(0)
## 
## [[3253]]
## character(0)
## 
## [[3254]]
## [1] "the "
## 
## [[3255]]
## [1] "tee "
## 
## [[3256]]
## character(0)
## 
## [[3257]]
## [1] "the "
## 
## [[3258]]
## [1] "the "
## 
## [[3259]]
## [1] "the " "the "
## 
## [[3260]]
## character(0)
## 
## [[3261]]
## character(0)
## 
## [[3262]]
## [1] "tle "
## 
## [[3263]]
## [1] "the "
## 
## [[3264]]
## character(0)
## 
## [[3265]]
## [1] "the "
## 
## [[3266]]
## character(0)
## 
## [[3267]]
## character(0)
## 
## [[3268]]
## character(0)
## 
## [[3269]]
## [1] "the "
## 
## [[3270]]
## character(0)
## 
## [[3271]]
## character(0)
## 
## [[3272]]
## character(0)
## 
## [[3273]]
## [1] "the " "the "
## 
## [[3274]]
## [1] "the "
## 
## [[3275]]
## [1] "the "
## 
## [[3276]]
## character(0)
## 
## [[3277]]
## [1] "the "
## 
## [[3278]]
## character(0)
## 
## [[3279]]
## character(0)
## 
## [[3280]]
## character(0)
## 
## [[3281]]
## character(0)
## 
## [[3282]]
## character(0)
## 
## [[3283]]
## character(0)
## 
## [[3284]]
## character(0)
## 
## [[3285]]
## character(0)
## 
## [[3286]]
## [1] "the " "the " "the "
## 
## [[3287]]
## character(0)
## 
## [[3288]]
## character(0)
## 
## [[3289]]
## [1] "the "
## 
## [[3290]]
## character(0)
## 
## [[3291]]
## [1] "the " "the " "the " "the "
## 
## [[3292]]
## character(0)
## 
## [[3293]]
## character(0)
## 
## [[3294]]
## [1] "the " "the "
## 
## [[3295]]
## [1] "the "
## 
## [[3296]]
## [1] "the "
## 
## [[3297]]
## character(0)
## 
## [[3298]]
## [1] "the " "the "
## 
## [[3299]]
## [1] "the "
## 
## [[3300]]
## character(0)
## 
## [[3301]]
## character(0)
## 
## [[3302]]
## character(0)
## 
## [[3303]]
## character(0)
## 
## [[3304]]
## [1] "the " "the "
## 
## [[3305]]
## [1] "the "
## 
## [[3306]]
## [1] "the "
## 
## [[3307]]
## character(0)
## 
## [[3308]]
## character(0)
## 
## [[3309]]
## character(0)
## 
## [[3310]]
## [1] "the " "the " "the "
## 
## [[3311]]
## [1] "the " "the "
## 
## [[3312]]
## character(0)
## 
## [[3313]]
## character(0)
## 
## [[3314]]
## [1] "the " "the "
## 
## [[3315]]
## [1] "the "
## 
## [[3316]]
## [1] "the "
## 
## [[3317]]
## [1] "the " "the "
## 
## [[3318]]
## character(0)
## 
## [[3319]]
## character(0)
## 
## [[3320]]
## [1] "the " "the " "the "
## 
## [[3321]]
## character(0)
## 
## [[3322]]
## [1] "the " "the " "the " "the "
## 
## [[3323]]
## character(0)
## 
## [[3324]]
## [1] "the " "the "
## 
## [[3325]]
## character(0)
## 
## [[3326]]
## [1] "the " "the "
## 
## [[3327]]
## character(0)
## 
## [[3328]]
## character(0)
## 
## [[3329]]
## character(0)
## 
## [[3330]]
## [1] "the " "the " "the "
## 
## [[3331]]
## character(0)
## 
## [[3332]]
## character(0)
## 
## [[3333]]
## character(0)
## 
## [[3334]]
## [1] "the " "the " "the " "the "
## 
## [[3335]]
## [1] "the "
## 
## [[3336]]
## character(0)
## 
## [[3337]]
## character(0)
## 
## [[3338]]
## [1] "the "
## 
## [[3339]]
## character(0)
## 
## [[3340]]
## character(0)
## 
## [[3341]]
## [1] "the " "the "
## 
## [[3342]]
## character(0)
## 
## [[3343]]
## [1] "the "
## 
## [[3344]]
## [1] "the " "the " "the "
## 
## [[3345]]
## character(0)
## 
## [[3346]]
## [1] "the "
## 
## [[3347]]
## character(0)
## 
## [[3348]]
## [1] "the " "the "
## 
## [[3349]]
## [1] "the "
## 
## [[3350]]
## [1] "the " "the "
## 
## [[3351]]
## character(0)
## 
## [[3352]]
## [1] "the "
## 
## [[3353]]
## character(0)
## 
## [[3354]]
## [1] "the "
## 
## [[3355]]
## character(0)
## 
## [[3356]]
## [1] "the "
## 
## [[3357]]
## character(0)
## 
## [[3358]]
## character(0)
## 
## [[3359]]
## [1] "the " "the " "the "
## 
## [[3360]]
## [1] "the "
## 
## [[3361]]
## character(0)
## 
## [[3362]]
## [1] "the " "the " "the " "the " "the "
## 
## [[3363]]
## character(0)
## 
## [[3364]]
## character(0)
## 
## [[3365]]
## [1] "the " "the "
## 
## [[3366]]
## character(0)
## 
## [[3367]]
## character(0)
## 
## [[3368]]
## character(0)
## 
## [[3369]]
## character(0)
## 
## [[3370]]
## [1] "the "
## 
## [[3371]]
## [1] "the " "the "
## 
## [[3372]]
## [1] "the "
## 
## [[3373]]
## character(0)
## 
## [[3374]]
## [1] "the "
## 
## [[3375]]
## [1] "the "
## 
## [[3376]]
## [1] "the " "the "
## 
## [[3377]]
## [1] "the "
## 
## [[3378]]
## character(0)
## 
## [[3379]]
## character(0)
## 
## [[3380]]
## character(0)
## 
## [[3381]]
## [1] "the " "the "
## 
## [[3382]]
## character(0)
## 
## [[3383]]
## character(0)
## 
## [[3384]]
## character(0)
## 
## [[3385]]
## character(0)
## 
## [[3386]]
## character(0)
## 
## [[3387]]
## [1] "the " "the "
## 
## [[3388]]
## [1] "the "
## 
## [[3389]]
## [1] "the "
## 
## [[3390]]
## character(0)
## 
## [[3391]]
## [1] "the "
## 
## [[3392]]
## [1] "the " "the "
## 
## [[3393]]
## character(0)
## 
## [[3394]]
## character(0)
## 
## [[3395]]
## [1] "the "
## 
## [[3396]]
## character(0)
## 
## [[3397]]
## character(0)
## 
## [[3398]]
## [1] "the " "the "
## 
## [[3399]]
## character(0)
## 
## [[3400]]
## [1] "the "
## 
## [[3401]]
## character(0)
## 
## [[3402]]
## character(0)
## 
## [[3403]]
## character(0)
## 
## [[3404]]
## character(0)
## 
## [[3405]]
## character(0)
## 
## [[3406]]
## character(0)
## 
## [[3407]]
## [1] "the " "the "
## 
## [[3408]]
## character(0)
## 
## [[3409]]
## [1] "the "
## 
## [[3410]]
## [1] "the "
## 
## [[3411]]
## character(0)
## 
## [[3412]]
## character(0)
## 
## [[3413]]
## character(0)
## 
## [[3414]]
## [1] "the "
## 
## [[3415]]
## character(0)
## 
## [[3416]]
## character(0)
## 
## [[3417]]
## character(0)
## 
## [[3418]]
## character(0)
## 
## [[3419]]
## [1] "the "
## 
## [[3420]]
## character(0)
## 
## [[3421]]
## [1] "the "
## 
## [[3422]]
## [1] "the "
## 
## [[3423]]
## [1] "the "
## 
## [[3424]]
## [1] "the "
## 
## [[3425]]
## [1] "the " "the " "the "
## 
## [[3426]]
## character(0)
## 
## [[3427]]
## character(0)
## 
## [[3428]]
## character(0)
## 
## [[3429]]
## [1] "the "
## 
## [[3430]]
## [1] "the "
## 
## [[3431]]
## [1] "the " "the "
## 
## [[3432]]
## character(0)
## 
## [[3433]]
## character(0)
## 
## [[3434]]
## character(0)
## 
## [[3435]]
## [1] "the "
## 
## [[3436]]
## [1] "the " "the "
## 
## [[3437]]
## [1] "the " "the "
## 
## [[3438]]
## character(0)
## 
## [[3439]]
## character(0)
## 
## [[3440]]
## character(0)
## 
## [[3441]]
## character(0)
## 
## [[3442]]
## character(0)
## 
## [[3443]]
## character(0)
## 
## [[3444]]
## character(0)
## 
## [[3445]]
## character(0)
## 
## [[3446]]
## character(0)
## 
## [[3447]]
## [1] "the "
## 
## [[3448]]
## character(0)
## 
## [[3449]]
## character(0)
## 
## [[3450]]
## [1] "the "
## 
## [[3451]]
## [1] "the "
## 
## [[3452]]
## character(0)
## 
## [[3453]]
## character(0)
## 
## [[3454]]
## [1] "the " "the "
## 
## [[3455]]
## [1] "the "
## 
## [[3456]]
## character(0)
## 
## [[3457]]
## character(0)
## 
## [[3458]]
## [1] "the "
## 
## [[3459]]
## character(0)
## 
## [[3460]]
## character(0)
## 
## [[3461]]
## [1] "the "
## 
## [[3462]]
## [1] "the "
## 
## [[3463]]
## character(0)
## 
## [[3464]]
## [1] "the "
## 
## [[3465]]
## character(0)
## 
## [[3466]]
## [1] "the " "the " "the "
## 
## [[3467]]
## [1] "the " "the " "the "
## 
## [[3468]]
## [1] "the "
## 
## [[3469]]
## [1] "the " "the "
## 
## [[3470]]
## [1] "the " "the "
## 
## [[3471]]
## [1] "the "
## 
## [[3472]]
## [1] "the "
## 
## [[3473]]
## [1] "the "
## 
## [[3474]]
## character(0)
## 
## [[3475]]
## character(0)
## 
## [[3476]]
## character(0)
## 
## [[3477]]
## [1] "the " "tle "
## 
## [[3478]]
## [1] "the "
## 
## [[3479]]
## [1] "the "
## 
## [[3480]]
## character(0)
## 
## [[3481]]
## character(0)
## 
## [[3482]]
## character(0)
## 
## [[3483]]
## character(0)
## 
## [[3484]]
## character(0)
## 
## [[3485]]
## character(0)
## 
## [[3486]]
## character(0)
## 
## [[3487]]
## [1] "the "
## 
## [[3488]]
## character(0)
## 
## [[3489]]
## character(0)
## 
## [[3490]]
## character(0)
## 
## [[3491]]
## [1] "the "
## 
## [[3492]]
## [1] "the "
## 
## [[3493]]
## character(0)
## 
## [[3494]]
## character(0)
## 
## [[3495]]
## character(0)
## 
## [[3496]]
## character(0)
## 
## [[3497]]
## [1] "the " "the "
## 
## [[3498]]
## character(0)
## 
## [[3499]]
## character(0)
## 
## [[3500]]
## character(0)
## 
## [[3501]]
## character(0)
## 
## [[3502]]
## character(0)
## 
## [[3503]]
## [1] "the " "the "
## 
## [[3504]]
## [1] "the " "the "
## 
## [[3505]]
## [1] "the "
## 
## [[3506]]
## character(0)
## 
## [[3507]]
## character(0)
## 
## [[3508]]
## [1] "the " "the " "the "
## 
## [[3509]]
## [1] "the "
## 
## [[3510]]
## [1] "the " "the "
## 
## [[3511]]
## [1] "the "
## 
## [[3512]]
## [1] "the " "the " "tte "
## 
## [[3513]]
## [1] "the " "the "
## 
## [[3514]]
## [1] "the " "the "
## 
## [[3515]]
## [1] "the " "the "
## 
## [[3516]]
## character(0)
## 
## [[3517]]
## [1] "the "
## 
## [[3518]]
## [1] "the "
## 
## [[3519]]
## [1] "the " "tle "
## 
## [[3520]]
## [1] "the "
## 
## [[3521]]
## character(0)
## 
## [[3522]]
## character(0)
## 
## [[3523]]
## character(0)
## 
## [[3524]]
## [1] "the "
## 
## [[3525]]
## character(0)
## 
## [[3526]]
## [1] "the "
## 
## [[3527]]
## [1] "the "
## 
## [[3528]]
## character(0)
## 
## [[3529]]
## [1] "the "
## 
## [[3530]]
## character(0)
## 
## [[3531]]
## [1] "the " "the "
## 
## [[3532]]
## character(0)
## 
## [[3533]]
## character(0)
## 
## [[3534]]
## [1] "the "
## 
## [[3535]]
## [1] "the "
## 
## [[3536]]
## [1] "the "
## 
## [[3537]]
## character(0)
## 
## [[3538]]
## [1] "the "
## 
## [[3539]]
## [1] "the "
## 
## [[3540]]
## [1] "the "
## 
## [[3541]]
## [1] "the "
## 
## [[3542]]
## character(0)
## 
## [[3543]]
## [1] "the " "the "
## 
## [[3544]]
## character(0)
## 
## [[3545]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[3546]]
## character(0)
## 
## [[3547]]
## character(0)
## 
## [[3548]]
## character(0)
## 
## [[3549]]
## character(0)
## 
## [[3550]]
## [1] "the " "the "
## 
## [[3551]]
## character(0)
## 
## [[3552]]
## character(0)
## 
## [[3553]]
## character(0)
## 
## [[3554]]
## character(0)
## 
## [[3555]]
## [1] "the "
## 
## [[3556]]
## [1] "the " "the " "the "
## 
## [[3557]]
## character(0)
## 
## [[3558]]
## character(0)
## 
## [[3559]]
## [1] "the "
## 
## [[3560]]
## [1] "the "
## 
## [[3561]]
## [1] "the "
## 
## [[3562]]
## [1] "the " "the "
## 
## [[3563]]
## [1] "the " "the "
## 
## [[3564]]
## [1] "the "
## 
## [[3565]]
## [1] "the "
## 
## [[3566]]
## character(0)
## 
## [[3567]]
## character(0)
## 
## [[3568]]
## character(0)
## 
## [[3569]]
## [1] "the " "the "
## 
## [[3570]]
## character(0)
## 
## [[3571]]
## [1] "the " "the " "the " "the "
## 
## [[3572]]
## character(0)
## 
## [[3573]]
## character(0)
## 
## [[3574]]
## [1] "the "
## 
## [[3575]]
## character(0)
## 
## [[3576]]
## character(0)
## 
## [[3577]]
## character(0)
## 
## [[3578]]
## [1] "the "
## 
## [[3579]]
## character(0)
## 
## [[3580]]
## [1] "the " "the " "the " "the "
## 
## [[3581]]
## [1] "the " "the "
## 
## [[3582]]
## character(0)
## 
## [[3583]]
## character(0)
## 
## [[3584]]
## [1] "the " "the "
## 
## [[3585]]
## [1] "the "
## 
## [[3586]]
## character(0)
## 
## [[3587]]
## [1] "the " "the "
## 
## [[3588]]
## [1] "the "
## 
## [[3589]]
## [1] "the "
## 
## [[3590]]
## character(0)
## 
## [[3591]]
## [1] "the " "the "
## 
## [[3592]]
## character(0)
## 
## [[3593]]
## [1] "the "
## 
## [[3594]]
## character(0)
## 
## [[3595]]
## character(0)
## 
## [[3596]]
## [1] "the " "the "
## 
## [[3597]]
## [1] "the " "the " "the "
## 
## [[3598]]
## character(0)
## 
## [[3599]]
## character(0)
## 
## [[3600]]
## [1] "the " "the "
## 
## [[3601]]
## [1] "the "
## 
## [[3602]]
## [1] "the "
## 
## [[3603]]
## [1] "the "
## 
## [[3604]]
## [1] "the " "the "
## 
## [[3605]]
## character(0)
## 
## [[3606]]
## character(0)
## 
## [[3607]]
## [1] "the " "the "
## 
## [[3608]]
## character(0)
## 
## [[3609]]
## character(0)
## 
## [[3610]]
## [1] "the " "the "
## 
## [[3611]]
## [1] "the " "the " "the " "the " "the " "the " "the "
## 
## [[3612]]
## character(0)
## 
## [[3613]]
## [1] "the " "the " "the "
## 
## [[3614]]
## character(0)
## 
## [[3615]]
## character(0)
## 
## [[3616]]
## [1] "the "
## 
## [[3617]]
## character(0)
## 
## [[3618]]
## character(0)
## 
## [[3619]]
## character(0)
## 
## [[3620]]
## [1] "the "
## 
## [[3621]]
## character(0)
## 
## [[3622]]
## [1] "the "
## 
## [[3623]]
## [1] "the "
## 
## [[3624]]
## character(0)
## 
## [[3625]]
## character(0)
## 
## [[3626]]
## [1] "the " "the "
## 
## [[3627]]
## [1] "the "
## 
## [[3628]]
## [1] "the "
## 
## [[3629]]
## [1] "the "
## 
## [[3630]]
## [1] "the " "the "
## 
## [[3631]]
## character(0)
## 
## [[3632]]
## character(0)
## 
## [[3633]]
## [1] "the "
## 
## [[3634]]
## [1] "the "
## 
## [[3635]]
## character(0)
## 
## [[3636]]
## [1] "the " "the "
## 
## [[3637]]
## character(0)
## 
## [[3638]]
## [1] "the "
## 
## [[3639]]
## [1] "the " "the " "the "
## 
## [[3640]]
## character(0)
## 
## [[3641]]
## character(0)
## 
## [[3642]]
## [1] "the "
## 
## [[3643]]
## character(0)
## 
## [[3644]]
## character(0)
## 
## [[3645]]
## [1] "the "
## 
## [[3646]]
## character(0)
## 
## [[3647]]
## [1] "the "
## 
## [[3648]]
## character(0)
## 
## [[3649]]
## [1] "the "
## 
## [[3650]]
## character(0)
## 
## [[3651]]
## character(0)
## 
## [[3652]]
## [1] "the "
## 
## [[3653]]
## character(0)
## 
## [[3654]]
## character(0)
## 
## [[3655]]
## character(0)
## 
## [[3656]]
## [1] "the "
## 
## [[3657]]
## character(0)
## 
## [[3658]]
## character(0)
## 
## [[3659]]
## [1] "the "
## 
## [[3660]]
## [1] "the "
## 
## [[3661]]
## [1] "the " "the "
## 
## [[3662]]
## [1] "the "
## 
## [[3663]]
## character(0)
## 
## [[3664]]
## character(0)
## 
## [[3665]]
## [1] "the "
## 
## [[3666]]
## [1] "the "
## 
## [[3667]]
## character(0)
## 
## [[3668]]
## [1] "the "
## 
## [[3669]]
## [1] "the " "the "
## 
## [[3670]]
## [1] "the " "the "
## 
## [[3671]]
## [1] "the "
## 
## [[3672]]
## [1] "the " "the " "the " "the " "the "
## 
## [[3673]]
## [1] "the " "the "
## 
## [[3674]]
## [1] "the " "the " "the " "the " "the "
## 
## [[3675]]
## [1] "the "
## 
## [[3676]]
## character(0)
## 
## [[3677]]
## [1] "the "
## 
## [[3678]]
## character(0)
## 
## [[3679]]
## [1] "the " "the " "the "
## 
## [[3680]]
## [1] "the "
## 
## [[3681]]
## character(0)
## 
## [[3682]]
## character(0)
## 
## [[3683]]
## character(0)
## 
## [[3684]]
## [1] "the "
## 
## [[3685]]
## [1] "the " "the "
## 
## [[3686]]
## character(0)
## 
## [[3687]]
## character(0)
## 
## [[3688]]
## [1] "the "
## 
## [[3689]]
## character(0)
## 
## [[3690]]
## [1] "the " "the "
## 
## [[3691]]
## [1] "the " "the "
## 
## [[3692]]
## character(0)
## 
## [[3693]]
## [1] "the "
## 
## [[3694]]
## character(0)
## 
## [[3695]]
## [1] "the " "the "
## 
## [[3696]]
## [1] "the " "the "
## 
## [[3697]]
## character(0)
## 
## [[3698]]
## character(0)
## 
## [[3699]]
## character(0)
## 
## [[3700]]
## character(0)
## 
## [[3701]]
## character(0)
## 
## [[3702]]
## [1] "the " "the " "the "
## 
## [[3703]]
## [1] "the "
## 
## [[3704]]
## [1] "the " "the "
## 
## [[3705]]
## [1] "the " "the "
## 
## [[3706]]
## character(0)
## 
## [[3707]]
## [1] "the " "the "
## 
## [[3708]]
## [1] "the "
## 
## [[3709]]
## character(0)
## 
## [[3710]]
## character(0)
## 
## [[3711]]
## character(0)
## 
## [[3712]]
## [1] "the "
## 
## [[3713]]
## character(0)
## 
## [[3714]]
## [1] "the " "the " "the " "the " "the " "the "
## 
## [[3715]]
## character(0)
## 
## [[3716]]
## character(0)
## 
## [[3717]]
## character(0)
## 
## [[3718]]
## [1] "the " "the "
## 
## [[3719]]
## character(0)
## 
## [[3720]]
## character(0)
## 
## [[3721]]
## character(0)
## 
## [[3722]]
## [1] "the " "the "
## 
## [[3723]]
## character(0)
## 
## [[3724]]
## character(0)
## 
## [[3725]]
## [1] "the "
## 
## [[3726]]
## character(0)
## 
## [[3727]]
## [1] "the "
## 
## [[3728]]
## character(0)
## 
## [[3729]]
## [1] "the " "the " "the "
## 
## [[3730]]
## [1] "the "
## 
## [[3731]]
## [1] "the " "the " "the " "the " "the "
## 
## [[3732]]
## [1] "the "
## 
## [[3733]]
## character(0)
## 
## [[3734]]
## [1] "the "
## 
## [[3735]]
## character(0)
## 
## [[3736]]
## [1] "the "
## 
## [[3737]]
## [1] "the " "the " "the "
## 
## [[3738]]
## character(0)
## 
## [[3739]]
## character(0)
## 
## [[3740]]
## [1] "the " "the " "the "
## 
## [[3741]]
## [1] "the " "the "
## 
## [[3742]]
## character(0)
## 
## [[3743]]
## character(0)
## 
## [[3744]]
## character(0)
## 
## [[3745]]
## [1] "the "
## 
## [[3746]]
## [1] "the " "the "
## 
## [[3747]]
## character(0)
## 
## [[3748]]
## [1] "the "
## 
## [[3749]]
## character(0)
## 
## [[3750]]
## character(0)
## 
## [[3751]]
## [1] "the "
## 
## [[3752]]
## [1] "the " "the "
## 
## [[3753]]
## character(0)
## 
## [[3754]]
## character(0)
## 
## [[3755]]
## [1] "the " "the "
## 
## [[3756]]
## character(0)
## 
## [[3757]]
## [1] "the " "the "
## 
## [[3758]]
## character(0)
## 
## [[3759]]
## [1] "the "
## 
## [[3760]]
## character(0)
## 
## [[3761]]
## character(0)
## 
## [[3762]]
## [1] "the " "the " "the " "the "
## 
## [[3763]]
## character(0)
## 
## [[3764]]
## character(0)
## 
## [[3765]]
## character(0)
## 
## [[3766]]
## character(0)
## 
## [[3767]]
## character(0)
## 
## [[3768]]
## character(0)
## 
## [[3769]]
## [1] "the "
## 
## [[3770]]
## [1] "the "
## 
## [[3771]]
## [1] "the "
## 
## [[3772]]
## [1] "the "
## 
## [[3773]]
## character(0)
## 
## [[3774]]
## character(0)
## 
## [[3775]]
## [1] "the "
## 
## [[3776]]
## character(0)
## 
## [[3777]]
## character(0)
## 
## [[3778]]
## character(0)
## 
## [[3779]]
## [1] "the "
## 
## [[3780]]
## character(0)
## 
## [[3781]]
## character(0)
## 
## [[3782]]
## [1] "the "
## 
## [[3783]]
## character(0)
## 
## [[3784]]
## character(0)
## 
## [[3785]]
## [1] "the " "the " "the "
## 
## [[3786]]
## character(0)
## 
## [[3787]]
## [1] "the " "the " "the "
## 
## [[3788]]
## [1] "the "
## 
## [[3789]]
## [1] "the "
## 
## [[3790]]
## [1] "the " "the " "the " "the "
## 
## [[3791]]
## character(0)
## 
## [[3792]]
## character(0)
## 
## [[3793]]
## character(0)
## 
## [[3794]]
## character(0)
## 
## [[3795]]
## [1] "the "
## 
## [[3796]]
## [1] "the " "the "
## 
## [[3797]]
## character(0)
## 
## [[3798]]
## character(0)
## 
## [[3799]]
## character(0)
## 
## [[3800]]
## character(0)
## 
## [[3801]]
## character(0)
## 
## [[3802]]
## character(0)
## 
## [[3803]]
## [1] "the "
## 
## [[3804]]
## [1] "the "
## 
## [[3805]]
## character(0)
## 
## [[3806]]
## character(0)
## 
## [[3807]]
## [1] "the " "the "
## 
## [[3808]]
## character(0)
## 
## [[3809]]
## [1] "the " "the "
## 
## [[3810]]
## [1] "the " "the " "the "
## 
## [[3811]]
## character(0)
## 
## [[3812]]
## [1] "the " "the "
## 
## [[3813]]
## [1] "the "
## 
## [[3814]]
## character(0)
## 
## [[3815]]
## character(0)
## 
## [[3816]]
## [1] "the "
## 
## [[3817]]
## character(0)
## 
## [[3818]]
## [1] "the " "the "
## 
## [[3819]]
## [1] "the " "the " "the "
## 
## [[3820]]
## character(0)
## 
## [[3821]]
## character(0)
## 
## [[3822]]
## character(0)
## 
## [[3823]]
## character(0)
## 
## [[3824]]
## [1] "the "
## 
## [[3825]]
## [1] "the "
## 
## [[3826]]
## character(0)
## 
## [[3827]]
## [1] "the "
## 
## [[3828]]
## character(0)
## 
## [[3829]]
## [1] "the "
## 
## [[3830]]
## character(0)
## 
## [[3831]]
## [1] "the "
## 
## [[3832]]
## [1] "the "
## 
## [[3833]]
## character(0)
## 
## [[3834]]
## character(0)
## 
## [[3835]]
## [1] "the "
## 
## [[3836]]
## character(0)
## 
## [[3837]]
## character(0)
## 
## [[3838]]
## [1] "the " "the "
## 
## [[3839]]
## character(0)
## 
## [[3840]]
## [1] "the " "the " "the "
## 
## [[3841]]
## character(0)
## 
## [[3842]]
## [1] "the "
## 
## [[3843]]
## [1] "the " "the " "the "
## 
## [[3844]]
## character(0)
## 
## [[3845]]
## [1] "the "
## 
## [[3846]]
## character(0)
## 
## [[3847]]
## character(0)
## 
## [[3848]]
## [1] "the " "the " "the " "the "
## 
## [[3849]]
## [1] "tle " "the " "tle " "the "
## 
## [[3850]]
## character(0)
## 
## [[3851]]
## [1] "the " "the " "the " "the "
## 
## [[3852]]
## character(0)
## 
## [[3853]]
## [1] "the "
## 
## [[3854]]
## [1] "the " "the "
## 
## [[3855]]
## character(0)
## 
## [[3856]]
## character(0)
## 
## [[3857]]
## character(0)
## 
## [[3858]]
## character(0)
## 
## [[3859]]
## [1] "the "
## 
## [[3860]]
## [1] "the " "the "
## 
## [[3861]]
## character(0)
## 
## [[3862]]
## [1] "the "
## 
## [[3863]]
## character(0)
## 
## [[3864]]
## character(0)
## 
## [[3865]]
## [1] "the "
## 
## [[3866]]
## character(0)
## 
## [[3867]]
## [1] "the " "the "
## 
## [[3868]]
## character(0)
## 
## [[3869]]
## character(0)
## 
## [[3870]]
## character(0)
## 
## [[3871]]
## [1] "the " "the "
## 
## [[3872]]
## character(0)
## 
## [[3873]]
## character(0)
## 
## [[3874]]
## [1] "the "
## 
## [[3875]]
## [1] "the "
## 
## [[3876]]
## [1] "the "
## 
## [[3877]]
## character(0)
## 
## [[3878]]
## [1] "the "
## 
## [[3879]]
## [1] "the "
## 
## [[3880]]
## character(0)
## 
## [[3881]]
## character(0)
## 
## [[3882]]
## character(0)
## 
## [[3883]]
## [1] "the " "the " "the "
## 
## [[3884]]
## character(0)
## 
## [[3885]]
## [1] "the "
## 
## [[3886]]
## [1] "the " "the " "the "
## 
## [[3887]]
## character(0)
## 
## [[3888]]
## character(0)
## 
## [[3889]]
## [1] "the " "the "
## 
## [[3890]]
## [1] "the "
## 
## [[3891]]
## character(0)
## 
## [[3892]]
## [1] "the "
## 
## [[3893]]
## [1] "the "
## 
## [[3894]]
## [1] "the " "the "
## 
## [[3895]]
## [1] "the "
## 
## [[3896]]
## [1] "the " "the "
## 
## [[3897]]
## character(0)
## 
## [[3898]]
## [1] "the "
## 
## [[3899]]
## character(0)
## 
## [[3900]]
## character(0)
## 
## [[3901]]
## [1] "the " "the " "the " "the " "the "
## 
## [[3902]]
## character(0)
## 
## [[3903]]
## [1] "the " "the "
## 
## [[3904]]
## character(0)
## 
## [[3905]]
## [1] "the "
## 
## [[3906]]
## character(0)
## 
## [[3907]]
## [1] "the "
## 
## [[3908]]
## [1] "the "
## 
## [[3909]]
## [1] "the "
## 
## [[3910]]
## [1] "the "
## 
## [[3911]]
## [1] "the "
## 
## [[3912]]
## [1] "the "
## 
## [[3913]]
## character(0)
## 
## [[3914]]
## [1] "the "
## 
## [[3915]]
## [1] "the " "the "
## 
## [[3916]]
## [1] "the "
## 
## [[3917]]
## [1] "the " "the " "the " "the "
## 
## [[3918]]
## character(0)
## 
## [[3919]]
## character(0)
## 
## [[3920]]
## [1] "the "
## 
## [[3921]]
## character(0)
## 
## [[3922]]
## [1] "the "
## 
## [[3923]]
## [1] "the " "the "
## 
## [[3924]]
## [1] "the " "the "
## 
## [[3925]]
## character(0)
## 
## [[3926]]
## [1] "the " "the "
## 
## [[3927]]
## [1] "the "
## 
## [[3928]]
## [1] "the "
## 
## [[3929]]
## [1] "the " "the " "the "
## 
## [[3930]]
## character(0)
## 
## [[3931]]
## character(0)
## 
## [[3932]]
## character(0)
## 
## [[3933]]
## character(0)
## 
## [[3934]]
## [1] "the " "the "
## 
## [[3935]]
## character(0)
## 
## [[3936]]
## [1] "the " "the "
## 
## [[3937]]
## [1] "the "
## 
## [[3938]]
## character(0)
## 
## [[3939]]
## [1] "the "
## 
## [[3940]]
## character(0)
## 
## [[3941]]
## [1] "the " "the " "the "
## 
## [[3942]]
## character(0)
## 
## [[3943]]
## character(0)
## 
## [[3944]]
## [1] "the " "the " "the "
## 
## [[3945]]
## character(0)
## 
## [[3946]]
## [1] "the "
## 
## [[3947]]
## character(0)
## 
## [[3948]]
## character(0)
## 
## [[3949]]
## [1] "the " "the "
## 
## [[3950]]
## [1] "the "
## 
## [[3951]]
## character(0)
## 
## [[3952]]
## [1] "the " "the "
## 
## [[3953]]
## [1] "the " "the " "the " "the "
## 
## [[3954]]
## character(0)
## 
## [[3955]]
## [1] "the "
## 
## [[3956]]
## [1] "the " "the " "the " "the "
## 
## [[3957]]
## character(0)
## 
## [[3958]]
## character(0)
## 
## [[3959]]
## [1] "the "
## 
## [[3960]]
## [1] "the "
## 
## [[3961]]
## character(0)
## 
## [[3962]]
## [1] "the "
## 
## [[3963]]
## [1] "the "
## 
## [[3964]]
## character(0)
## 
## [[3965]]
## character(0)
## 
## [[3966]]
## character(0)
## 
## [[3967]]
## character(0)
## 
## [[3968]]
## character(0)
## 
## [[3969]]
## [1] "the " "tle " "the "
## 
## [[3970]]
## [1] "the " "the "
## 
## [[3971]]
## [1] "the "
## 
## [[3972]]
## [1] "the " "the " "the "
## 
## [[3973]]
## [1] "the "
## 
## [[3974]]
## character(0)
## 
## [[3975]]
## character(0)
## 
## [[3976]]
## [1] "the "
## 
## [[3977]]
## character(0)
## 
## [[3978]]
## character(0)
## 
## [[3979]]
## [1] "tle " "the " "the "
## 
## [[3980]]
## character(0)
## 
## [[3981]]
## [1] "the " "the "
## 
## [[3982]]
## [1] "the "
## 
## [[3983]]
## character(0)
## 
## [[3984]]
## [1] "the "
## 
## [[3985]]
## [1] "the "
## 
## [[3986]]
## [1] "tee " "the "
## 
## [[3987]]
## [1] "the "
## 
## [[3988]]
## character(0)
## 
## [[3989]]
## character(0)
## 
## [[3990]]
## character(0)
## 
## [[3991]]
## character(0)
## 
## [[3992]]
## [1] "the " "the "
## 
## [[3993]]
## [1] "the "
## 
## [[3994]]
## character(0)
## 
## [[3995]]
## [1] "the "
## 
## [[3996]]
## character(0)
## 
## [[3997]]
## character(0)
## 
## [[3998]]
## character(0)
## 
## [[3999]]
## character(0)
## 
## [[4000]]
## [1] "the " "the " "the " "the "
## 
## [[4001]]
## [1] "the " "the "
## 
## [[4002]]
## character(0)
## 
## [[4003]]
## [1] "the "
## 
## [[4004]]
## character(0)
## 
## [[4005]]
## [1] "the "
## 
## [[4006]]
## [1] "the "
## 
## [[4007]]
## character(0)
## 
## [[4008]]
## [1] "the "
## 
## [[4009]]
## [1] "the " "the "
## 
## [[4010]]
## character(0)
## 
## [[4011]]
## [1] "the "
## 
## [[4012]]
## [1] "the " "the " "the "
## 
## [[4013]]
## character(0)
## 
## [[4014]]
## character(0)
## 
## [[4015]]
## character(0)
## 
## [[4016]]
## character(0)
## 
## [[4017]]
## character(0)
## 
## [[4018]]
## [1] "the "
## 
## [[4019]]
## [1] "the "
## 
## [[4020]]
## [1] "the " "the "
## 
## [[4021]]
## [1] "the " "the "
## 
## [[4022]]
## [1] "the " "the " "the " "the "
## 
## [[4023]]
## character(0)
## 
## [[4024]]
## [1] "the "
## 
## [[4025]]
## character(0)
## 
## [[4026]]
## character(0)
## 
## [[4027]]
## [1] "the " "the " "tle "
## 
## [[4028]]
## character(0)
## 
## [[4029]]
## [1] "the "
## 
## [[4030]]
## character(0)
## 
## [[4031]]
## [1] "the "
## 
## [[4032]]
## [1] "the "
## 
## [[4033]]
## character(0)
## 
## [[4034]]
## [1] "the " "the "
## 
## [[4035]]
## character(0)
## 
## [[4036]]
## character(0)
## 
## [[4037]]
## [1] "the "
## 
## [[4038]]
## character(0)
## 
## [[4039]]
## [1] "the "
## 
## [[4040]]
## [1] "the "
## 
## [[4041]]
## character(0)
## 
## [[4042]]
## [1] "tse " "the " "the "
## 
## [[4043]]
## character(0)
## 
## [[4044]]
## [1] "the " "the "
## 
## [[4045]]
## character(0)
## 
## [[4046]]
## [1] "the " "the "
## 
## [[4047]]
## character(0)
## 
## [[4048]]
## [1] "the " "the " "the "
## 
## [[4049]]
## character(0)
## 
## [[4050]]
## character(0)
## 
## [[4051]]
## [1] "the "
## 
## [[4052]]
## character(0)
## 
## [[4053]]
## character(0)
## 
## [[4054]]
## character(0)
## 
## [[4055]]
## [1] "the " "the " "the "
## 
## [[4056]]
## [1] "the "
## 
## [[4057]]
## [1] "the " "the "
## 
## [[4058]]
## character(0)
## 
## [[4059]]
## [1] "the "
## 
## [[4060]]
## [1] "the " "the "
## 
## [[4061]]
## [1] "the "
## 
## [[4062]]
## character(0)
## 
## [[4063]]
## [1] "the "
## 
## [[4064]]
## [1] "the " "the "
## 
## [[4065]]
## character(0)
## 
## [[4066]]
## [1] "the "
## 
## [[4067]]
## [1] "the "
## 
## [[4068]]
## [1] "tre "
## 
## [[4069]]
## character(0)
## 
## [[4070]]
## [1] "the "
## 
## [[4071]]
## [1] "the " "the "
## 
## [[4072]]
## [1] "the " "the "
## 
## [[4073]]
## [1] "the " "the "
## 
## [[4074]]
## [1] "the " "the "
## 
## [[4075]]
## character(0)
## 
## [[4076]]
## character(0)
## 
## [[4077]]
## [1] "the "
## 
## [[4078]]
## character(0)
## 
## [[4079]]
## [1] "the "
## 
## [[4080]]
## [1] "the " "the " "tle "
## 
## [[4081]]
## [1] "the "
## 
## [[4082]]
## character(0)
## 
## [[4083]]
## character(0)
## 
## [[4084]]
## [1] "the " "the " "the " "the "
## 
## [[4085]]
## [1] "the " "the "
## 
## [[4086]]
## character(0)
## 
## [[4087]]
## [1] "the " "the "
## 
## [[4088]]
## [1] "the "
## 
## [[4089]]
## character(0)
## 
## [[4090]]
## character(0)
## 
## [[4091]]
## character(0)
## 
## [[4092]]
## character(0)
## 
## [[4093]]
## [1] "the "
## 
## [[4094]]
## character(0)
## 
## [[4095]]
## character(0)
## 
## [[4096]]
## [1] "the " "the "
## 
## [[4097]]
## [1] "the "
## 
## [[4098]]
## [1] "the " "the "
## 
## [[4099]]
## [1] "the "
## 
## [[4100]]
## [1] "the "
## 
## [[4101]]
## [1] "the "
## 
## [[4102]]
## [1] "the " "the "
## 
## [[4103]]
## [1] "the "
## 
## [[4104]]
## character(0)
## 
## [[4105]]
## [1] "the " "the "
## 
## [[4106]]
## [1] "the "
## 
## [[4107]]
## [1] "the " "the " "the " "the " "the "
## 
## [[4108]]
## character(0)
## 
## [[4109]]
## character(0)
## 
## [[4110]]
## character(0)
## 
## [[4111]]
## [1] "the "
## 
## [[4112]]
## character(0)
## 
## [[4113]]
## character(0)
## 
## [[4114]]
## character(0)
## 
## [[4115]]
## [1] "the "
## 
## [[4116]]
## [1] "the "
## 
## [[4117]]
## [1] "the "
## 
## [[4118]]
## [1] "the "
## 
## [[4119]]
## character(0)
## 
## [[4120]]
## [1] "the " "the "
## 
## [[4121]]
## [1] "the "
## 
## [[4122]]
## [1] "the " "the " "the " "the "
## 
## [[4123]]
## [1] "the "
## 
## [[4124]]
## character(0)
## 
## [[4125]]
## character(0)
## 
## [[4126]]
## character(0)
## 
## [[4127]]
## [1] "the "
## 
## [[4128]]
## character(0)
## 
## [[4129]]
## [1] "the " "the " "the "
## 
## [[4130]]
## [1] "the "
## 
## [[4131]]
## character(0)
## 
## [[4132]]
## character(0)
## 
## [[4133]]
## character(0)
## 
## [[4134]]
## character(0)
## 
## [[4135]]
## [1] "the " "the "
## 
## [[4136]]
## character(0)
## 
## [[4137]]
## character(0)
## 
## [[4138]]
## [1] "the " "the " "the "
## 
## [[4139]]
## [1] "the "
## 
## [[4140]]
## character(0)
## 
## [[4141]]
## [1] "tre "
## 
## [[4142]]
## character(0)
## 
## [[4143]]
## character(0)
## 
## [[4144]]
## character(0)
## 
## [[4145]]
## character(0)
## 
## [[4146]]
## [1] "the "
## 
## [[4147]]
## [1] "the "
## 
## [[4148]]
## character(0)
## 
## [[4149]]
## [1] "the "
## 
## [[4150]]
## character(0)
## 
## [[4151]]
## character(0)
## 
## [[4152]]
## character(0)
## 
## [[4153]]
## character(0)
## 
## [[4154]]
## [1] "the "
## 
## [[4155]]
## character(0)
## 
## [[4156]]
## [1] "the " "the "
## 
## [[4157]]
## [1] "the " "the " "the "
## 
## [[4158]]
## character(0)
## 
## [[4159]]
## character(0)
## 
## [[4160]]
## [1] "the " "the " "the "
## 
## [[4161]]
## character(0)
## 
## [[4162]]
## [1] "the " "the "
## 
## [[4163]]
## character(0)
## 
## [[4164]]
## character(0)
## 
## [[4165]]
## character(0)
## 
## [[4166]]
## [1] "tle "
## 
## [[4167]]
## [1] "the "
## 
## [[4168]]
## character(0)
## 
## [[4169]]
## [1] "the "
## 
## [[4170]]
## character(0)
## 
## [[4171]]
## character(0)
## 
## [[4172]]
## character(0)
## 
## [[4173]]
## character(0)
## 
## [[4174]]
## character(0)
## 
## [[4175]]
## [1] "the "
## 
## [[4176]]
## [1] "the " "the "
## 
## [[4177]]
## character(0)
## 
## [[4178]]
## character(0)
## 
## [[4179]]
## character(0)
## 
## [[4180]]
## [1] "the "
## 
## [[4181]]
## character(0)
## 
## [[4182]]
## [1] "the " "the "
## 
## [[4183]]
## [1] "the " "the " "the " "the " "the "
## 
## [[4184]]
## [1] "the "
## 
## [[4185]]
## character(0)
## 
## [[4186]]
## [1] "the "
## 
## [[4187]]
## character(0)
## 
## [[4188]]
## [1] "the "
## 
## [[4189]]
## [1] "the "
## 
## [[4190]]
## character(0)
## 
## [[4191]]
## character(0)
## 
## [[4192]]
## character(0)
## 
## [[4193]]
## [1] "the "
## 
## [[4194]]
## character(0)
## 
## [[4195]]
## [1] "the " "the " "the " "the " "the "
## 
## [[4196]]
## character(0)
## 
## [[4197]]
## character(0)
## 
## [[4198]]
## character(0)
## 
## [[4199]]
## character(0)
## 
## [[4200]]
## [1] "the "
## 
## [[4201]]
## character(0)
## 
## [[4202]]
## character(0)
## 
## [[4203]]
## character(0)
## 
## [[4204]]
## [1] "the " "the "
## 
## [[4205]]
## character(0)
## 
## [[4206]]
## [1] "the " "the "
## 
## [[4207]]
## character(0)
## 
## [[4208]]
## character(0)
## 
## [[4209]]
## [1] "the "
## 
## [[4210]]
## [1] "the " "the " "the "
## 
## [[4211]]
## character(0)
## 
## [[4212]]
## character(0)
## 
## [[4213]]
## [1] "the "
## 
## [[4214]]
## [1] "the "
## 
## [[4215]]
## character(0)
## 
## [[4216]]
## character(0)
## 
## [[4217]]
## character(0)
## 
## [[4218]]
## [1] "the " "the " "the "
## 
## [[4219]]
## character(0)
## 
## [[4220]]
## character(0)
## 
## [[4221]]
## character(0)
## 
## [[4222]]
## character(0)
## 
## [[4223]]
## [1] "the " "the "
## 
## [[4224]]
## character(0)
## 
## [[4225]]
## [1] "the "
## 
## [[4226]]
## character(0)
## 
## [[4227]]
## character(0)
## 
## [[4228]]
## [1] "the "
## 
## [[4229]]
## [1] "the "
## 
## [[4230]]
## character(0)
## 
## [[4231]]
## [1] "the "
## 
## [[4232]]
## [1] "the "
## 
## [[4233]]
## character(0)
## 
## [[4234]]
## character(0)
## 
## [[4235]]
## [1] "tee " "the " "the "
## 
## [[4236]]
## [1] "the "
## 
## [[4237]]
## character(0)
## 
## [[4238]]
## [1] "the "
## 
## [[4239]]
## character(0)
## 
## [[4240]]
## character(0)
## 
## [[4241]]
## character(0)
## 
## [[4242]]
## character(0)
## 
## [[4243]]
## [1] "the " "the "
## 
## [[4244]]
## [1] "the "
## 
## [[4245]]
## [1] "the " "the "
## 
## [[4246]]
## character(0)
## 
## [[4247]]
## [1] "the " "the "
## 
## [[4248]]
## [1] "the " "the "
## 
## [[4249]]
## [1] "the "
## 
## [[4250]]
## character(0)
## 
## [[4251]]
## [1] "the " "the " "the "
## 
## [[4252]]
## [1] "the "
## 
## [[4253]]
## [1] "the " "the " "the " "the "
## 
## [[4254]]
## character(0)
## 
## [[4255]]
## [1] "tle "
## 
## [[4256]]
## character(0)
## 
## [[4257]]
## [1] "the "
## 
## [[4258]]
## [1] "the "
## 
## [[4259]]
## [1] "the " "the " "the "
## 
## [[4260]]
## character(0)
## 
## [[4261]]
## [1] "the "
## 
## [[4262]]
## character(0)
## 
## [[4263]]
## character(0)
## 
## [[4264]]
## character(0)
## 
## [[4265]]
## [1] "the "
## 
## [[4266]]
## [1] "the " "the " "the "
## 
## [[4267]]
## character(0)
## 
## [[4268]]
## [1] "the " "the " "the "
## 
## [[4269]]
## character(0)
## 
## [[4270]]
## [1] "the "
## 
## [[4271]]
## [1] "the "
## 
## [[4272]]
## character(0)
## 
## [[4273]]
## character(0)
## 
## [[4274]]
## [1] "the " "the "
## 
## [[4275]]
## character(0)
## 
## [[4276]]
## [1] "the "
## 
## [[4277]]
## [1] "the " "the "
## 
## [[4278]]
## [1] "the "
## 
## [[4279]]
## character(0)
## 
## [[4280]]
## [1] "the "
## 
## [[4281]]
## character(0)
## 
## [[4282]]
## [1] "the "
## 
## [[4283]]
## [1] "the " "the " "the "
## 
## [[4284]]
## [1] "the " "the "
## 
## [[4285]]
## character(0)
## 
## [[4286]]
## character(0)
## 
## [[4287]]
## [1] "tue "
## 
## [[4288]]
## character(0)
## 
## [[4289]]
## character(0)
## 
## [[4290]]
## [1] "the "
## 
## [[4291]]
## character(0)
## 
## [[4292]]
## character(0)
## 
## [[4293]]
## character(0)
## 
## [[4294]]
## [1] "the " "the " "the "
## 
## [[4295]]
## [1] "the "
## 
## [[4296]]
## [1] "the " "the "
## 
## [[4297]]
## [1] "the "
## 
## [[4298]]
## character(0)
## 
## [[4299]]
## character(0)
## 
## [[4300]]
## [1] "the " "the " "tle "
## 
## [[4301]]
## character(0)
## 
## [[4302]]
## [1] "the "
## 
## [[4303]]
## character(0)
## 
## [[4304]]
## [1] "the "
## 
## [[4305]]
## character(0)
## 
## [[4306]]
## [1] "the "
## 
## [[4307]]
## character(0)
## 
## [[4308]]
## character(0)
## 
## [[4309]]
## character(0)
## 
## [[4310]]
## [1] "the " "the " "the " "the "
## 
## [[4311]]
## [1] "the "
## 
## [[4312]]
## character(0)
## 
## [[4313]]
## character(0)
## 
## [[4314]]
## [1] "the " "the " "the " "the "
## 
## [[4315]]
## [1] "the " "the "
## 
## [[4316]]
## character(0)
## 
## [[4317]]
## character(0)
## 
## [[4318]]
## character(0)
## 
## [[4319]]
## character(0)
## 
## [[4320]]
## character(0)
## 
## [[4321]]
## [1] "the "
## 
## [[4322]]
## character(0)
## 
## [[4323]]
## character(0)
## 
## [[4324]]
## character(0)
## 
## [[4325]]
## character(0)
## 
## [[4326]]
## [1] "the "
## 
## [[4327]]
## [1] "the " "the "
## 
## [[4328]]
## character(0)
## 
## [[4329]]
## [1] "the " "the "
## 
## [[4330]]
## character(0)
## 
## [[4331]]
## character(0)
## 
## [[4332]]
## character(0)
## 
## [[4333]]
## character(0)
## 
## [[4334]]
## character(0)
## 
## [[4335]]
## [1] "the " "the "
## 
## [[4336]]
## [1] "the "
## 
## [[4337]]
## character(0)
## 
## [[4338]]
## character(0)
## 
## [[4339]]
## character(0)
## 
## [[4340]]
## [1] "the "
## 
## [[4341]]
## character(0)
## 
## [[4342]]
## [1] "tle "
## 
## [[4343]]
## character(0)
## 
## [[4344]]
## character(0)
## 
## [[4345]]
## [1] "the "
## 
## [[4346]]
## [1] "the " "the "
## 
## [[4347]]
## [1] "the "
## 
## [[4348]]
## [1] "the " "the "
## 
## [[4349]]
## [1] "the "
## 
## [[4350]]
## character(0)
## 
## [[4351]]
## character(0)
## 
## [[4352]]
## [1] "the "
## 
## [[4353]]
## character(0)
## 
## [[4354]]
## character(0)
## 
## [[4355]]
## character(0)
## 
## [[4356]]
## character(0)
## 
## [[4357]]
## character(0)
## 
## [[4358]]
## character(0)
## 
## [[4359]]
## [1] "the " "the "
## 
## [[4360]]
## character(0)
## 
## [[4361]]
## [1] "the "
## 
## [[4362]]
## character(0)
## 
## [[4363]]
## [1] "the "
## 
## [[4364]]
## character(0)
## 
## [[4365]]
## character(0)
## 
## [[4366]]
## character(0)
## 
## [[4367]]
## [1] "the "
## 
## [[4368]]
## [1] "the " "the "
## 
## [[4369]]
## [1] "the " "the "
## 
## [[4370]]
## character(0)
## 
## [[4371]]
## character(0)
## 
## [[4372]]
## [1] "the "
## 
## [[4373]]
## character(0)
## 
## [[4374]]
## [1] "the " "the "
## 
## [[4375]]
## character(0)
## 
## [[4376]]
## character(0)
## 
## [[4377]]
## character(0)
## 
## [[4378]]
## [1] "the "
## 
## [[4379]]
## [1] "the " "the "
## 
## [[4380]]
## character(0)
## 
## [[4381]]
## [1] "the "
## 
## [[4382]]
## [1] "the "
## 
## [[4383]]
## [1] "the " "the "
## 
## [[4384]]
## character(0)
## 
## [[4385]]
## [1] "the "
## 
## [[4386]]
## character(0)
## 
## [[4387]]
## character(0)
## 
## [[4388]]
## [1] "the "
## 
## [[4389]]
## character(0)
## 
## [[4390]]
## [1] "the "
## 
## [[4391]]
## [1] "the "
## 
## [[4392]]
## [1] "the "
## 
## [[4393]]
## [1] "the " "the "
## 
## [[4394]]
## [1] "the " "the "
## 
## [[4395]]
## [1] "the "
## 
## [[4396]]
## [1] "the "
## 
## [[4397]]
## [1] "the "
## 
## [[4398]]
## character(0)
## 
## [[4399]]
## character(0)
## 
## [[4400]]
## [1] "the " "the " "the " "the " "the "
## 
## [[4401]]
## character(0)
## 
## [[4402]]
## character(0)
## 
## [[4403]]
## character(0)
## 
## [[4404]]
## character(0)
## 
## [[4405]]
## character(0)
## 
## [[4406]]
## [1] "the "
## 
## [[4407]]
## character(0)
## 
## [[4408]]
## character(0)
## 
## [[4409]]
## [1] "the "
## 
## [[4410]]
## [1] "the " "the "
## 
## [[4411]]
## character(0)
## 
## [[4412]]
## character(0)
## 
## [[4413]]
## character(0)
## 
## [[4414]]
## [1] "the " "the " "the "
## 
## [[4415]]
## character(0)
## 
## [[4416]]
## [1] "the "
## 
## [[4417]]
## character(0)
## 
## [[4418]]
## character(0)
## 
## [[4419]]
## character(0)
## 
## [[4420]]
## [1] "the "
## 
## [[4421]]
## character(0)
## 
## [[4422]]
## [1] "the "
## 
## [[4423]]
## character(0)
## 
## [[4424]]
## character(0)
## 
## [[4425]]
## [1] "the " "the " "the "
## 
## [[4426]]
## [1] "the "
## 
## [[4427]]
## [1] "the " "the " "the "
## 
## [[4428]]
## [1] "the "
## 
## [[4429]]
## [1] "the "
## 
## [[4430]]
## [1] "the " "the "
## 
## [[4431]]
## [1] "the "
## 
## [[4432]]
## [1] "the " "the "
## 
## [[4433]]
## character(0)
## 
## [[4434]]
## character(0)
## 
## [[4435]]
## [1] "the "
## 
## [[4436]]
## [1] "tre "
## 
## [[4437]]
## [1] "the "
## 
## [[4438]]
## character(0)
## 
## [[4439]]
## character(0)
## 
## [[4440]]
## [1] "the " "the "
## 
## [[4441]]
## [1] "the " "the "
## 
## [[4442]]
## character(0)
## 
## [[4443]]
## [1] "the " "the " "tle "
## 
## [[4444]]
## [1] "tee " "tee "
## 
## [[4445]]
## character(0)
## 
## [[4446]]
## [1] "the " "the " "the " "the " "the "
## 
## [[4447]]
## character(0)
## 
## [[4448]]
## character(0)
## 
## [[4449]]
## [1] "the " "the "
## 
## [[4450]]
## character(0)
## 
## [[4451]]
## character(0)
## 
## [[4452]]
## [1] "the "
## 
## [[4453]]
## character(0)
## 
## [[4454]]
## character(0)
## 
## [[4455]]
## [1] "the "
## 
## [[4456]]
## character(0)
## 
## [[4457]]
## character(0)
## 
## [[4458]]
## [1] "the " "the "
## 
## [[4459]]
## character(0)
## 
## [[4460]]
## character(0)
## 
## [[4461]]
## character(0)
## 
## [[4462]]
## [1] "the " "the "
## 
## [[4463]]
## [1] "the "
## 
## [[4464]]
## character(0)
## 
## [[4465]]
## character(0)
## 
## [[4466]]
## [1] "the "
## 
## [[4467]]
## [1] "the " "tle "
## 
## [[4468]]
## [1] "the "
## 
## [[4469]]
## [1] "the " "tre "
## 
## [[4470]]
## [1] "the "
## 
## [[4471]]
## character(0)
## 
## [[4472]]
## [1] "the "
## 
## [[4473]]
## character(0)
## 
## [[4474]]
## [1] "the "
## 
## [[4475]]
## character(0)
## 
## [[4476]]
## character(0)
## 
## [[4477]]
## character(0)
## 
## [[4478]]
## character(0)
## 
## [[4479]]
## [1] "the " "the "
## 
## [[4480]]
## character(0)
## 
## [[4481]]
## character(0)
## 
## [[4482]]
## [1] "the "
## 
## [[4483]]
## character(0)
## 
## [[4484]]
## character(0)
## 
## [[4485]]
## [1] "the " "the " "the " "the "
## 
## [[4486]]
## [1] "the "
## 
## [[4487]]
## character(0)
## 
## [[4488]]
## character(0)
## 
## [[4489]]
## [1] "the " "the " "the " "the "
## 
## [[4490]]
## [1] "the "
## 
## [[4491]]
## [1] "the "
## 
## [[4492]]
## character(0)
## 
## [[4493]]
## [1] "the "
## 
## [[4494]]
## [1] "the " "the " "the " "the "
## 
## [[4495]]
## [1] "the "
## 
## [[4496]]
## character(0)
## 
## [[4497]]
## [1] "the "
## 
## [[4498]]
## [1] "the " "the " "the " "the "
## 
## [[4499]]
## character(0)
## 
## [[4500]]
## [1] "the "
## 
## [[4501]]
## character(0)
## 
## [[4502]]
## character(0)
## 
## [[4503]]
## character(0)
## 
## [[4504]]
## [1] "the "
## 
## [[4505]]
## [1] "the "
## 
## [[4506]]
## [1] "the "
## 
## [[4507]]
## character(0)
## 
## [[4508]]
## character(0)
## 
## [[4509]]
## [1] "the "
## 
## [[4510]]
## character(0)
## 
## [[4511]]
## [1] "the " "the " "the "
## 
## [[4512]]
## character(0)
## 
## [[4513]]
## character(0)
## 
## [[4514]]
## [1] "the " "the " "the "
## 
## [[4515]]
## [1] "the "
## 
## [[4516]]
## character(0)
## 
## [[4517]]
## character(0)
## 
## [[4518]]
## [1] "the " "tle "
## 
## [[4519]]
## [1] "the "
## 
## [[4520]]
## character(0)
## 
## [[4521]]
## [1] "the "
## 
## [[4522]]
## character(0)
## 
## [[4523]]
## [1] "the " "the " "the "
## 
## [[4524]]
## [1] "the " "the " "the "
## 
## [[4525]]
## [1] "the "
## 
## [[4526]]
## character(0)
## 
## [[4527]]
## character(0)
## 
## [[4528]]
## character(0)
## 
## [[4529]]
## [1] "the " "the "
## 
## [[4530]]
## character(0)
## 
## [[4531]]
## character(0)
## 
## [[4532]]
## character(0)
## 
## [[4533]]
## character(0)
## 
## [[4534]]
## character(0)
## 
## [[4535]]
## [1] "the "
## 
## [[4536]]
## character(0)
## 
## [[4537]]
## [1] "the "
## 
## [[4538]]
## [1] "the "
## 
## [[4539]]
## [1] "the " "the "
## 
## [[4540]]
## character(0)
## 
## [[4541]]
## [1] "the "
## 
## [[4542]]
## [1] "the "
## 
## [[4543]]
## character(0)
## 
## [[4544]]
## [1] "the "
## 
## [[4545]]
## character(0)
## 
## [[4546]]
## character(0)
## 
## [[4547]]
## [1] "tre "
## 
## [[4548]]
## [1] "the " "the " "the " "the "
## 
## [[4549]]
## character(0)
## 
## [[4550]]
## character(0)
## 
## [[4551]]
## character(0)
## 
## [[4552]]
## character(0)
## 
## [[4553]]
## [1] "the " "the "
## 
## [[4554]]
## character(0)
## 
## [[4555]]
## [1] "tee "
## 
## [[4556]]
## [1] "the "
## 
## [[4557]]
## [1] "the "
## 
## [[4558]]
## [1] "the "
## 
## [[4559]]
## character(0)
## 
## [[4560]]
## character(0)
## 
## [[4561]]
## character(0)
## 
## [[4562]]
## [1] "the " "the "
## 
## [[4563]]
## character(0)
## 
## [[4564]]
## [1] "the "
## 
## [[4565]]
## [1] "the " "the " "the " "the "
## 
## [[4566]]
## [1] "the "
## 
## [[4567]]
## [1] "the "
## 
## [[4568]]
## [1] "the "
## 
## [[4569]]
## [1] "the "
## 
## [[4570]]
## character(0)
## 
## [[4571]]
## character(0)
## 
## [[4572]]
## [1] "the " "the "
## 
## [[4573]]
## [1] "the "
## 
## [[4574]]
## [1] "the "
## 
## [[4575]]
## [1] "the "
## 
## [[4576]]
## [1] "the "
## 
## [[4577]]
## character(0)
## 
## [[4578]]
## [1] "the " "the " "the "
## 
## [[4579]]
## [1] "the "
## 
## [[4580]]
## [1] "tle " "the " "the "
## 
## [[4581]]
## [1] "the " "the " "the " "the "
## 
## [[4582]]
## [1] "the "
## 
## [[4583]]
## [1] "the "
## 
## [[4584]]
## character(0)
## 
## [[4585]]
## character(0)
## 
## [[4586]]
## character(0)
## 
## [[4587]]
## [1] "the " "the "
## 
## [[4588]]
## character(0)
## 
## [[4589]]
## character(0)
## 
## [[4590]]
## character(0)
## 
## [[4591]]
## character(0)
## 
## [[4592]]
## character(0)
## 
## [[4593]]
## [1] "the " "the "
## 
## [[4594]]
## [1] "the "
## 
## [[4595]]
## character(0)
## 
## [[4596]]
## [1] "the "
## 
## [[4597]]
## [1] "the "
## 
## [[4598]]
## character(0)
## 
## [[4599]]
## [1] "the " "the "
## 
## [[4600]]
## character(0)
## 
## [[4601]]
## character(0)
## 
## [[4602]]
## character(0)
## 
## [[4603]]
## [1] "the " "the " "the "
## 
## [[4604]]
## [1] "the " "the "
## 
## [[4605]]
## [1] "the " "the "
## 
## [[4606]]
## [1] "the "
## 
## [[4607]]
## [1] "the "
## 
## [[4608]]
## [1] "the " "the "
## 
## [[4609]]
## [1] "the "
## 
## [[4610]]
## [1] "the "
## 
## [[4611]]
## character(0)
## 
## [[4612]]
## [1] "the " "the "
## 
## [[4613]]
## [1] "the "
## 
## [[4614]]
## character(0)
## 
## [[4615]]
## character(0)
## 
## [[4616]]
## [1] "tle " "tle "
## 
## [[4617]]
## character(0)
## 
## [[4618]]
## [1] "the " "the "
## 
## [[4619]]
## character(0)
## 
## [[4620]]
## character(0)
## 
## [[4621]]
## [1] "the " "the " "the "
## 
## [[4622]]
## [1] "the " "the " "the " "the "
## 
## [[4623]]
## [1] "the "
## 
## [[4624]]
## [1] "the "
## 
## [[4625]]
## character(0)
## 
## [[4626]]
## [1] "the "
## 
## [[4627]]
## character(0)
## 
## [[4628]]
## [1] "the " "the " "the "
## 
## [[4629]]
## character(0)
## 
## [[4630]]
## [1] "the "
## 
## [[4631]]
## character(0)
## 
## [[4632]]
## character(0)
## 
## [[4633]]
## [1] "the " "the " "the " "the "
## 
## [[4634]]
## [1] "the "
## 
## [[4635]]
## [1] "the "
## 
## [[4636]]
## character(0)
## 
## [[4637]]
## [1] "the " "the "
## 
## [[4638]]
## [1] "the " "the " "the "
## 
## [[4639]]
## character(0)
## 
## [[4640]]
## [1] "the " "the "
## 
## [[4641]]
## character(0)
## 
## [[4642]]
## [1] "the "
## 
## [[4643]]
## character(0)
## 
## [[4644]]
## [1] "the " "the "
## 
## [[4645]]
## character(0)
## 
## [[4646]]
## [1] "the "
## 
## [[4647]]
## [1] "the "
## 
## [[4648]]
## [1] "the "
## 
## [[4649]]
## character(0)
## 
## [[4650]]
## [1] "the "
## 
## [[4651]]
## [1] "the "
## 
## [[4652]]
## [1] "the "
## 
## [[4653]]
## [1] "the "
## 
## [[4654]]
## character(0)
## 
## [[4655]]
## character(0)
## 
## [[4656]]
## character(0)
## 
## [[4657]]
## [1] "the "
## 
## [[4658]]
## [1] "the "
## 
## [[4659]]
## [1] "the " "the "
## 
## [[4660]]
## character(0)
## 
## [[4661]]
## [1] "the "
## 
## [[4662]]
## [1] "the " "the " "the " "the "
## 
## [[4663]]
## character(0)
## 
## [[4664]]
## [1] "the "
## 
## [[4665]]
## character(0)
## 
## [[4666]]
## character(0)
## 
## [[4667]]
## [1] "the "
## 
## [[4668]]
## character(0)
## 
## [[4669]]
## [1] "the "
## 
## [[4670]]
## character(0)
## 
## [[4671]]
## character(0)
## 
## [[4672]]
## [1] "the " "the " "the "
## 
## [[4673]]
## [1] "the "
## 
## [[4674]]
## character(0)
## 
## [[4675]]
## character(0)
## 
## [[4676]]
## character(0)
## 
## [[4677]]
## [1] "the "
## 
## [[4678]]
## [1] "tre "
## 
## [[4679]]
## character(0)
## 
## [[4680]]
## character(0)
## 
## [[4681]]
## [1] "the "
## 
## [[4682]]
## character(0)
## 
## [[4683]]
## character(0)
## 
## [[4684]]
## [1] "the "
## 
## [[4685]]
## character(0)
## 
## [[4686]]
## [1] "the "
## 
## [[4687]]
## character(0)
## 
## [[4688]]
## [1] "the "
## 
## [[4689]]
## character(0)
## 
## [[4690]]
## character(0)
## 
## [[4691]]
## [1] "the "
## 
## [[4692]]
## [1] "the " "the "
## 
## [[4693]]
## character(0)
## 
## [[4694]]
## character(0)
## 
## [[4695]]
## character(0)
## 
## [[4696]]
## character(0)
## 
## [[4697]]
## character(0)
## 
## [[4698]]
## [1] "the " "the "
## 
## [[4699]]
## character(0)
## 
## [[4700]]
## [1] "the "
## 
## [[4701]]
## character(0)
## 
## [[4702]]
## [1] "tre "
## 
## [[4703]]
## character(0)
## 
## [[4704]]
## character(0)
## 
## [[4705]]
## [1] "the " "the " "the " "tre "
## 
## [[4706]]
## character(0)
## 
## [[4707]]
## [1] "the "
## 
## [[4708]]
## character(0)
## 
## [[4709]]
## character(0)
## 
## [[4710]]
## character(0)
## 
## [[4711]]
## [1] "the "
## 
## [[4712]]
## character(0)
## 
## [[4713]]
## character(0)
## 
## [[4714]]
## [1] "the "
## 
## [[4715]]
## [1] "the "
## 
## [[4716]]
## [1] "the "
## 
## [[4717]]
## character(0)
## 
## [[4718]]
## [1] "tle " "the "
## 
## [[4719]]
## character(0)
## 
## [[4720]]
## character(0)
## 
## [[4721]]
## [1] "the "
## 
## [[4722]]
## [1] "the " "the "
## 
## [[4723]]
## [1] "the " "the "
## 
## [[4724]]
## [1] "the " "the "
## 
## [[4725]]
## character(0)
## 
## [[4726]]
## character(0)
## 
## [[4727]]
## character(0)
## 
## [[4728]]
## [1] "the " "the " "the " "the "
## 
## [[4729]]
## character(0)
## 
## [[4730]]
## character(0)
## 
## [[4731]]
## character(0)
## 
## [[4732]]
## [1] "the "
## 
## [[4733]]
## [1] "the " "the "
## 
## [[4734]]
## [1] "the " "the " "the "
## 
## [[4735]]
## [1] "the "
## 
## [[4736]]
## [1] "the "
## 
## [[4737]]
## [1] "the "
## 
## [[4738]]
## [1] "the "
## 
## [[4739]]
## character(0)
## 
## [[4740]]
## [1] "the "
## 
## [[4741]]
## [1] "the "
## 
## [[4742]]
## [1] "the "
## 
## [[4743]]
## character(0)
## 
## [[4744]]
## [1] "the "
## 
## [[4745]]
## [1] "the "
## 
## [[4746]]
## [1] "the " "the "
## 
## [[4747]]
## character(0)
## 
## [[4748]]
## [1] "the "
## 
## [[4749]]
## [1] "the " "the " "the " "the "
## 
## [[4750]]
## [1] "the " "the "
## 
## [[4751]]
## [1] "the "
## 
## [[4752]]
## character(0)
## 
## [[4753]]
## character(0)
## 
## [[4754]]
## character(0)
## 
## [[4755]]
## [1] "the " "the " "the "
## 
## [[4756]]
## character(0)
## 
## [[4757]]
## [1] "the "
## 
## [[4758]]
## [1] "the "
## 
## [[4759]]
## character(0)
## 
## [[4760]]
## [1] "tie "
## 
## [[4761]]
## [1] "the "
## 
## [[4762]]
## character(0)
## 
## [[4763]]
## character(0)
## 
## [[4764]]
## [1] "the "
## 
## [[4765]]
## character(0)
## 
## [[4766]]
## [1] "the " "the "
## 
## [[4767]]
## [1] "the "
## 
## [[4768]]
## character(0)
## 
## [[4769]]
## [1] "the "
## 
## [[4770]]
## character(0)
## 
## [[4771]]
## character(0)
## 
## [[4772]]
## [1] "the " "the "
## 
## [[4773]]
## [1] "the " "the " "the " "the "
## 
## [[4774]]
## [1] "the " "the " "the "
## 
## [[4775]]
## [1] "the " "the "
## 
## [[4776]]
## [1] "the "
## 
## [[4777]]
## [1] "the " "the "
## 
## [[4778]]
## [1] "the "
## 
## [[4779]]
## character(0)
## 
## [[4780]]
## [1] "the "
## 
## [[4781]]
## [1] "the "
## 
## [[4782]]
## [1] "the "
## 
## [[4783]]
## [1] "the " "the " "tle "
## 
## [[4784]]
## character(0)
## 
## [[4785]]
## character(0)
## 
## [[4786]]
## character(0)
## 
## [[4787]]
## character(0)
## 
## [[4788]]
## [1] "the " "the " "the " "the "
## 
## [[4789]]
## [1] "the "
## 
## [[4790]]
## [1] "the " "the "
## 
## [[4791]]
## character(0)
## 
## [[4792]]
## character(0)
## 
## [[4793]]
## character(0)
## 
## [[4794]]
## character(0)
## 
## [[4795]]
## [1] "the "
## 
## [[4796]]
## [1] "the "
## 
## [[4797]]
## [1] "the " "the "
## 
## [[4798]]
## character(0)
## 
## [[4799]]
## [1] "the "
## 
## [[4800]]
## character(0)
## 
## [[4801]]
## [1] "the " "the "
## 
## [[4802]]
## [1] "the " "the "
## 
## [[4803]]
## character(0)
## 
## [[4804]]
## [1] "the "
## 
## [[4805]]
## [1] "the " "the "
## 
## [[4806]]
## character(0)
## 
## [[4807]]
## character(0)
## 
## [[4808]]
## character(0)
## 
## [[4809]]
## [1] "the " "the "
## 
## [[4810]]
## character(0)
## 
## [[4811]]
## character(0)
## 
## [[4812]]
## character(0)
## 
## [[4813]]
## [1] "the " "the "
## 
## [[4814]]
## character(0)
## 
## [[4815]]
## [1] "the "
## 
## [[4816]]
## [1] "the "
## 
## [[4817]]
## character(0)
## 
## [[4818]]
## [1] "the "
## 
## [[4819]]
## character(0)
## 
## [[4820]]
## character(0)
## 
## [[4821]]
## [1] "the " "the "
## 
## [[4822]]
## [1] "the " "the " "the " "tle "
## 
## [[4823]]
## [1] "the " "the "
## 
## [[4824]]
## [1] "the "
## 
## [[4825]]
## character(0)
## 
## [[4826]]
## [1] "the "
## 
## [[4827]]
## [1] "the " "the " "the "
## 
## [[4828]]
## character(0)
## 
## [[4829]]
## character(0)
## 
## [[4830]]
## [1] "the "
## 
## [[4831]]
## [1] "the " "the "
## 
## [[4832]]
## character(0)
## 
## [[4833]]
## character(0)
## 
## [[4834]]
## [1] "the "
## 
## [[4835]]
## [1] "the "
## 
## [[4836]]
## character(0)
## 
## [[4837]]
## [1] "the "
## 
## [[4838]]
## character(0)
## 
## [[4839]]
## character(0)
## 
## [[4840]]
## character(0)
## 
## [[4841]]
## [1] "the "
## 
## [[4842]]
## [1] "the "
## 
## [[4843]]
## [1] "the "
## 
## [[4844]]
## character(0)
## 
## [[4845]]
## character(0)
## 
## [[4846]]
## [1] "the " "tle "
## 
## [[4847]]
## character(0)
## 
## [[4848]]
## [1] "the "
## 
## [[4849]]
## character(0)
## 
## [[4850]]
## character(0)
## 
## [[4851]]
## character(0)
## 
## [[4852]]
## character(0)
## 
## [[4853]]
## character(0)
## 
## [[4854]]
## [1] "the "
## 
## [[4855]]
## [1] "the "
## 
## [[4856]]
## [1] "the " "the " "the "
## 
## [[4857]]
## character(0)
## 
## [[4858]]
## [1] "the "
## 
## [[4859]]
## [1] "the "
## 
## [[4860]]
## character(0)
## 
## [[4861]]
## [1] "the " "the " "the "
## 
## [[4862]]
## character(0)
## 
## [[4863]]
## [1] "the "
## 
## [[4864]]
## character(0)
## 
## [[4865]]
## [1] "the " "the "
## 
## [[4866]]
## [1] "the " "the "
## 
## [[4867]]
## character(0)
## 
## [[4868]]
## character(0)
## 
## [[4869]]
## [1] "the " "the "
## 
## [[4870]]
## [1] "the " "the "
## 
## [[4871]]
## character(0)
## 
## [[4872]]
## [1] "the "
## 
## [[4873]]
## character(0)
## 
## [[4874]]
## character(0)
## 
## [[4875]]
## [1] "the " "the " "the " "the "
## 
## [[4876]]
## [1] "the " "the "
## 
## [[4877]]
## character(0)
## 
## [[4878]]
## [1] "the "
## 
## [[4879]]
## character(0)
## 
## [[4880]]
## character(0)
## 
## [[4881]]
## [1] "the " "the "
## 
## [[4882]]
## [1] "the " "the "
## 
## [[4883]]
## [1] "the " "the " "the "
## 
## [[4884]]
## [1] "the "
## 
## [[4885]]
## character(0)
## 
## [[4886]]
## character(0)
## 
## [[4887]]
## [1] "the " "the "
## 
## [[4888]]
## character(0)
## 
## [[4889]]
## [1] "the "
## 
## [[4890]]
## [1] "the "
## 
## [[4891]]
## character(0)
## 
## [[4892]]
## [1] "the " "the " "the " "the " "the "
## 
## [[4893]]
## character(0)
## 
## [[4894]]
## character(0)
## 
## [[4895]]
## [1] "the " "the " "the "
## 
## [[4896]]
## character(0)
## 
## [[4897]]
## [1] "the "
## 
## [[4898]]
## [1] "the "
## 
## [[4899]]
## character(0)
## 
## [[4900]]
## [1] "the "
## 
## [[4901]]
## character(0)
## 
## [[4902]]
## character(0)
## 
## [[4903]]
## character(0)
## 
## [[4904]]
## character(0)
## 
## [[4905]]
## character(0)
## 
## [[4906]]
## [1] "the " "the " "the " "the "
## 
## [[4907]]
## character(0)
## 
## [[4908]]
## character(0)
## 
## [[4909]]
## character(0)
## 
## [[4910]]
## character(0)
## 
## [[4911]]
## character(0)
## 
## [[4912]]
## character(0)
## 
## [[4913]]
## [1] "the " "the "
## 
## [[4914]]
## character(0)
## 
## [[4915]]
## [1] "the " "the "
## 
## [[4916]]
## character(0)
## 
## [[4917]]
## character(0)
## 
## [[4918]]
## character(0)
## 
## [[4919]]
## character(0)
## 
## [[4920]]
## [1] "the "
## 
## [[4921]]
## [1] "the "
## 
## [[4922]]
## [1] "the "
## 
## [[4923]]
## character(0)
## 
## [[4924]]
## character(0)
## 
## [[4925]]
## [1] "the " "the " "the "
## 
## [[4926]]
## [1] "the " "the "
## 
## [[4927]]
## [1] "the " "the "
## 
## [[4928]]
## character(0)
## 
## [[4929]]
## [1] "the "
## 
## [[4930]]
## character(0)
## 
## [[4931]]
## character(0)
## 
## [[4932]]
## [1] "the "
## 
## [[4933]]
## [1] "the "
## 
## [[4934]]
## character(0)
## 
## [[4935]]
## [1] "the " "the " "the " "the "
## 
## [[4936]]
## character(0)
## 
## [[4937]]
## [1] "the " "the "
## 
## [[4938]]
## [1] "the "
## 
## [[4939]]
## character(0)
## 
## [[4940]]
## [1] "the "
## 
## [[4941]]
## character(0)
## 
## [[4942]]
## [1] "the "
## 
## [[4943]]
## [1] "the "
## 
## [[4944]]
## character(0)
## 
## [[4945]]
## [1] "the "
## 
## [[4946]]
## [1] "the "
## 
## [[4947]]
## [1] "the "
## 
## [[4948]]
## [1] "the "
## 
## [[4949]]
## [1] "the "
## 
## [[4950]]
## character(0)
## 
## [[4951]]
## [1] "the "
## 
## [[4952]]
## character(0)
## 
## [[4953]]
## character(0)
## 
## [[4954]]
## character(0)
## 
## [[4955]]
## character(0)
## 
## [[4956]]
## character(0)
## 
## [[4957]]
## character(0)
## 
## [[4958]]
## character(0)
## 
## [[4959]]
## [1] "the " "the "
## 
## [[4960]]
## [1] "the " "the "
## 
## [[4961]]
## [1] "the "
## 
## [[4962]]
## [1] "the " "the "
## 
## [[4963]]
## character(0)
## 
## [[4964]]
## [1] "the "
## 
## [[4965]]
## character(0)
## 
## [[4966]]
## character(0)
## 
## [[4967]]
## character(0)
## 
## [[4968]]
## character(0)
## 
## [[4969]]
## character(0)
## 
## [[4970]]
## character(0)
## 
## [[4971]]
## character(0)
## 
## [[4972]]
## character(0)
## 
## [[4973]]
## [1] "the "
## 
## [[4974]]
## character(0)
## 
## [[4975]]
## character(0)
## 
## [[4976]]
## [1] "the "
## 
## [[4977]]
## [1] "the "
## 
## [[4978]]
## [1] "the "
## 
## [[4979]]
## [1] "the "
## 
## [[4980]]
## character(0)
## 
## [[4981]]
## character(0)
## 
## [[4982]]
## [1] "the "
## 
## [[4983]]
## character(0)
## 
## [[4984]]
## [1] "the "
## 
## [[4985]]
## [1] "the "
## 
## [[4986]]
## [1] "the " "the " "the "
## 
## [[4987]]
## [1] "the " "the " "the "
## 
## [[4988]]
## character(0)
## 
## [[4989]]
## character(0)
## 
## [[4990]]
## [1] "the "
## 
## [[4991]]
## [1] "the "
## 
## [[4992]]
## character(0)
## 
## [[4993]]
## character(0)
## 
## [[4994]]
## [1] "the "
## 
## [[4995]]
## character(0)
## 
## [[4996]]
## [1] "the " "the "
## 
## [[4997]]
## character(0)
## 
## [[4998]]
## [1] "the "
## 
## [[4999]]
## [1] "the " "the "
## 
## [[5000]]
## character(0)
str_extract_all(covid19_tw_sample$text, " t.e")
## [[1]]
## [1] " the" " the"
## 
## [[2]]
## [1] " the" " the"
## 
## [[3]]
## [1] " the" " the"
## 
## [[4]]
## [1] " the" " the"
## 
## [[5]]
## [1] " the" " the"
## 
## [[6]]
## [1] " the"
## 
## [[7]]
## [1] " the"
## 
## [[8]]
## [1] " the" " the"
## 
## [[9]]
## character(0)
## 
## [[10]]
## [1] " the"
## 
## [[11]]
## [1] " the" " the"
## 
## [[12]]
## [1] " the"
## 
## [[13]]
## [1] " the"
## 
## [[14]]
## [1] " the"
## 
## [[15]]
## character(0)
## 
## [[16]]
## [1] " the" " the"
## 
## [[17]]
## [1] " the" " the"
## 
## [[18]]
## [1] " the"
## 
## [[19]]
## [1] " the" " the" " the" " the" " the"
## 
## [[20]]
## [1] " the"
## 
## [[21]]
## character(0)
## 
## [[22]]
## character(0)
## 
## [[23]]
## character(0)
## 
## [[24]]
## [1] " the"
## 
## [[25]]
## character(0)
## 
## [[26]]
## character(0)
## 
## [[27]]
## character(0)
## 
## [[28]]
## [1] " the"
## 
## [[29]]
## [1] " the" " the" " the"
## 
## [[30]]
## character(0)
## 
## [[31]]
## [1] " the" " the"
## 
## [[32]]
## character(0)
## 
## [[33]]
## [1] " the" " the"
## 
## [[34]]
## [1] " the" " the" " the"
## 
## [[35]]
## character(0)
## 
## [[36]]
## character(0)
## 
## [[37]]
## [1] " twe"
## 
## [[38]]
## character(0)
## 
## [[39]]
## character(0)
## 
## [[40]]
## [1] " the" " the"
## 
## [[41]]
## [1] " the" " the"
## 
## [[42]]
## character(0)
## 
## [[43]]
## [1] " the" " the" " the"
## 
## [[44]]
## character(0)
## 
## [[45]]
## [1] " the" " the"
## 
## [[46]]
## [1] " the"
## 
## [[47]]
## character(0)
## 
## [[48]]
## [1] " the"
## 
## [[49]]
## [1] " the"
## 
## [[50]]
## [1] " the"
## 
## [[51]]
## [1] " the"
## 
## [[52]]
## character(0)
## 
## [[53]]
## character(0)
## 
## [[54]]
## [1] " the"
## 
## [[55]]
## character(0)
## 
## [[56]]
## character(0)
## 
## [[57]]
## [1] " the" " the"
## 
## [[58]]
## character(0)
## 
## [[59]]
## character(0)
## 
## [[60]]
## character(0)
## 
## [[61]]
## [1] " the" " the"
## 
## [[62]]
## character(0)
## 
## [[63]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[64]]
## character(0)
## 
## [[65]]
## [1] " the"
## 
## [[66]]
## [1] " the"
## 
## [[67]]
## character(0)
## 
## [[68]]
## [1] " the" " the"
## 
## [[69]]
## [1] " the" " the" " the"
## 
## [[70]]
## [1] " the" " the"
## 
## [[71]]
## character(0)
## 
## [[72]]
## [1] " the" " tre" " the"
## 
## [[73]]
## character(0)
## 
## [[74]]
## character(0)
## 
## [[75]]
## character(0)
## 
## [[76]]
## character(0)
## 
## [[77]]
## [1] " the" " the" " the"
## 
## [[78]]
## character(0)
## 
## [[79]]
## character(0)
## 
## [[80]]
## character(0)
## 
## [[81]]
## [1] " the" " the" " the"
## 
## [[82]]
## character(0)
## 
## [[83]]
## [1] " the" " the"
## 
## [[84]]
## character(0)
## 
## [[85]]
## [1] " the"
## 
## [[86]]
## character(0)
## 
## [[87]]
## character(0)
## 
## [[88]]
## [1] " the" " the" " the"
## 
## [[89]]
## character(0)
## 
## [[90]]
## [1] " tre" " the"
## 
## [[91]]
## character(0)
## 
## [[92]]
## [1] " the"
## 
## [[93]]
## character(0)
## 
## [[94]]
## [1] " the"
## 
## [[95]]
## [1] " the" " the"
## 
## [[96]]
## character(0)
## 
## [[97]]
## [1] " the"
## 
## [[98]]
## character(0)
## 
## [[99]]
## character(0)
## 
## [[100]]
## character(0)
## 
## [[101]]
## character(0)
## 
## [[102]]
## [1] " the" " the"
## 
## [[103]]
## character(0)
## 
## [[104]]
## character(0)
## 
## [[105]]
## [1] " the" " the" " the" " the" " the"
## 
## [[106]]
## [1] " the" " the" " the"
## 
## [[107]]
## character(0)
## 
## [[108]]
## [1] " the" " the" " the"
## 
## [[109]]
## [1] " the" " the" " the"
## 
## [[110]]
## [1] " the" " the" " the"
## 
## [[111]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[112]]
## [1] " the" " the"
## 
## [[113]]
## [1] " the" " tre"
## 
## [[114]]
## [1] " the"
## 
## [[115]]
## character(0)
## 
## [[116]]
## character(0)
## 
## [[117]]
## [1] " the"
## 
## [[118]]
## character(0)
## 
## [[119]]
## character(0)
## 
## [[120]]
## character(0)
## 
## [[121]]
## character(0)
## 
## [[122]]
## character(0)
## 
## [[123]]
## character(0)
## 
## [[124]]
## character(0)
## 
## [[125]]
## [1] " the"
## 
## [[126]]
## character(0)
## 
## [[127]]
## character(0)
## 
## [[128]]
## [1] " the"
## 
## [[129]]
## [1] " the"
## 
## [[130]]
## [1] " the" " the" " the"
## 
## [[131]]
## [1] " the"
## 
## [[132]]
## character(0)
## 
## [[133]]
## character(0)
## 
## [[134]]
## [1] " the" " the" " the" " the"
## 
## [[135]]
## character(0)
## 
## [[136]]
## character(0)
## 
## [[137]]
## character(0)
## 
## [[138]]
## character(0)
## 
## [[139]]
## character(0)
## 
## [[140]]
## [1] " the" " tee" " the"
## 
## [[141]]
## [1] " the"
## 
## [[142]]
## [1] " the"
## 
## [[143]]
## [1] " the" " the" " the"
## 
## [[144]]
## [1] " the" " the"
## 
## [[145]]
## character(0)
## 
## [[146]]
## character(0)
## 
## [[147]]
## [1] " the" " the" " the" " the" " the"
## 
## [[148]]
## [1] " the"
## 
## [[149]]
## character(0)
## 
## [[150]]
## character(0)
## 
## [[151]]
## character(0)
## 
## [[152]]
## [1] " the"
## 
## [[153]]
## [1] " the" " the"
## 
## [[154]]
## [1] " the" " the" " the"
## 
## [[155]]
## [1] " the"
## 
## [[156]]
## [1] " the" " the" " the"
## 
## [[157]]
## character(0)
## 
## [[158]]
## character(0)
## 
## [[159]]
## [1] " the"
## 
## [[160]]
## [1] " tre" " the"
## 
## [[161]]
## character(0)
## 
## [[162]]
## [1] " the"
## 
## [[163]]
## [1] " the" " the" " the" " the" " the"
## 
## [[164]]
## character(0)
## 
## [[165]]
## [1] " the" " the" " the"
## 
## [[166]]
## [1] " the"
## 
## [[167]]
## character(0)
## 
## [[168]]
## character(0)
## 
## [[169]]
## [1] " the" " the"
## 
## [[170]]
## character(0)
## 
## [[171]]
## character(0)
## 
## [[172]]
## character(0)
## 
## [[173]]
## [1] " the"
## 
## [[174]]
## character(0)
## 
## [[175]]
## character(0)
## 
## [[176]]
## character(0)
## 
## [[177]]
## character(0)
## 
## [[178]]
## character(0)
## 
## [[179]]
## [1] " the" " the"
## 
## [[180]]
## character(0)
## 
## [[181]]
## [1] " the" " the"
## 
## [[182]]
## character(0)
## 
## [[183]]
## [1] " the"
## 
## [[184]]
## character(0)
## 
## [[185]]
## [1] " tre"
## 
## [[186]]
## [1] " the" " the"
## 
## [[187]]
## [1] " the" " the"
## 
## [[188]]
## [1] " the"
## 
## [[189]]
## [1] " the" " the" " the"
## 
## [[190]]
## character(0)
## 
## [[191]]
## character(0)
## 
## [[192]]
## character(0)
## 
## [[193]]
## character(0)
## 
## [[194]]
## character(0)
## 
## [[195]]
## [1] " the"
## 
## [[196]]
## character(0)
## 
## [[197]]
## [1] " the"
## 
## [[198]]
## character(0)
## 
## [[199]]
## [1] " the" " the" " the" " the"
## 
## [[200]]
## [1] " the"
## 
## [[201]]
## character(0)
## 
## [[202]]
## [1] " the" " the"
## 
## [[203]]
## character(0)
## 
## [[204]]
## [1] " the"
## 
## [[205]]
## [1] " the"
## 
## [[206]]
## character(0)
## 
## [[207]]
## [1] " the" " the"
## 
## [[208]]
## character(0)
## 
## [[209]]
## [1] " the" " the" " the" " the" " the"
## 
## [[210]]
## [1] " the" " the" " the" " the"
## 
## [[211]]
## [1] " the"
## 
## [[212]]
## character(0)
## 
## [[213]]
## [1] " the" " the"
## 
## [[214]]
## character(0)
## 
## [[215]]
## [1] " the"
## 
## [[216]]
## character(0)
## 
## [[217]]
## character(0)
## 
## [[218]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[219]]
## [1] " the" " the"
## 
## [[220]]
## [1] " the"
## 
## [[221]]
## character(0)
## 
## [[222]]
## [1] " the"
## 
## [[223]]
## character(0)
## 
## [[224]]
## [1] " the"
## 
## [[225]]
## [1] " the" " the" " the" " the" " the"
## 
## [[226]]
## character(0)
## 
## [[227]]
## character(0)
## 
## [[228]]
## [1] " the"
## 
## [[229]]
## character(0)
## 
## [[230]]
## character(0)
## 
## [[231]]
## [1] " the" " the"
## 
## [[232]]
## [1] " the"
## 
## [[233]]
## [1] " the" " the"
## 
## [[234]]
## character(0)
## 
## [[235]]
## character(0)
## 
## [[236]]
## [1] " the"
## 
## [[237]]
## character(0)
## 
## [[238]]
## [1] " the"
## 
## [[239]]
## [1] " the"
## 
## [[240]]
## character(0)
## 
## [[241]]
## [1] " the"
## 
## [[242]]
## [1] " the"
## 
## [[243]]
## [1] " the"
## 
## [[244]]
## [1] " the" " the"
## 
## [[245]]
## character(0)
## 
## [[246]]
## [1] " the"
## 
## [[247]]
## [1] " the"
## 
## [[248]]
## [1] " the" " the"
## 
## [[249]]
## character(0)
## 
## [[250]]
## character(0)
## 
## [[251]]
## [1] " the" " the"
## 
## [[252]]
## [1] " the"
## 
## [[253]]
## [1] " the" " the"
## 
## [[254]]
## character(0)
## 
## [[255]]
## [1] " the"
## 
## [[256]]
## [1] " the" " the"
## 
## [[257]]
## [1] " tre"
## 
## [[258]]
## character(0)
## 
## [[259]]
## [1] " the"
## 
## [[260]]
## character(0)
## 
## [[261]]
## [1] " the" " the"
## 
## [[262]]
## character(0)
## 
## [[263]]
## [1] " the"
## 
## [[264]]
## [1] " the"
## 
## [[265]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[266]]
## [1] " the" " the" " the" " the" " the"
## 
## [[267]]
## [1] " the" " the"
## 
## [[268]]
## [1] " the" " the"
## 
## [[269]]
## [1] " the" " the" " the"
## 
## [[270]]
## character(0)
## 
## [[271]]
## [1] " the" " the" " the" " the"
## 
## [[272]]
## [1] " the"
## 
## [[273]]
## [1] " the" " the" " the"
## 
## [[274]]
## character(0)
## 
## [[275]]
## character(0)
## 
## [[276]]
## [1] " the" " the" " the"
## 
## [[277]]
## [1] " the" " the" " the"
## 
## [[278]]
## character(0)
## 
## [[279]]
## [1] " the" " tre"
## 
## [[280]]
## [1] " the"
## 
## [[281]]
## [1] " the"
## 
## [[282]]
## character(0)
## 
## [[283]]
## [1] " the" " the" " the"
## 
## [[284]]
## character(0)
## 
## [[285]]
## [1] " the" " tre"
## 
## [[286]]
## character(0)
## 
## [[287]]
## character(0)
## 
## [[288]]
## character(0)
## 
## [[289]]
## character(0)
## 
## [[290]]
## [1] " the"
## 
## [[291]]
## [1] " the" " the"
## 
## [[292]]
## character(0)
## 
## [[293]]
## [1] " the"
## 
## [[294]]
## [1] " tee"
## 
## [[295]]
## [1] " the" " the"
## 
## [[296]]
## character(0)
## 
## [[297]]
## character(0)
## 
## [[298]]
## character(0)
## 
## [[299]]
## [1] " the" " the"
## 
## [[300]]
## [1] " the" " the" " tre" " the"
## 
## [[301]]
## [1] " the"
## 
## [[302]]
## character(0)
## 
## [[303]]
## [1] " the" " the" " the" " the"
## 
## [[304]]
## character(0)
## 
## [[305]]
## [1] " the"
## 
## [[306]]
## [1] " the" " the"
## 
## [[307]]
## character(0)
## 
## [[308]]
## [1] " the"
## 
## [[309]]
## [1] " the"
## 
## [[310]]
## [1] " the"
## 
## [[311]]
## [1] " the" " the"
## 
## [[312]]
## [1] " the" " the" " the" " the"
## 
## [[313]]
## [1] " the" " the" " the"
## 
## [[314]]
## [1] " the" " the" " the"
## 
## [[315]]
## [1] " the"
## 
## [[316]]
## character(0)
## 
## [[317]]
## [1] " the"
## 
## [[318]]
## [1] " twe"
## 
## [[319]]
## character(0)
## 
## [[320]]
## [1] " the" " the"
## 
## [[321]]
## [1] " the"
## 
## [[322]]
## [1] " the"
## 
## [[323]]
## character(0)
## 
## [[324]]
## [1] " the"
## 
## [[325]]
## character(0)
## 
## [[326]]
## character(0)
## 
## [[327]]
## [1] " the"
## 
## [[328]]
## [1] " the"
## 
## [[329]]
## character(0)
## 
## [[330]]
## character(0)
## 
## [[331]]
## [1] " the" " the" " the"
## 
## [[332]]
## [1] " the" " the"
## 
## [[333]]
## character(0)
## 
## [[334]]
## character(0)
## 
## [[335]]
## [1] " the"
## 
## [[336]]
## [1] " the" " the"
## 
## [[337]]
## [1] " the" " the" " the"
## 
## [[338]]
## character(0)
## 
## [[339]]
## [1] " the"
## 
## [[340]]
## [1] " the"
## 
## [[341]]
## [1] " the" " the"
## 
## [[342]]
## character(0)
## 
## [[343]]
## character(0)
## 
## [[344]]
## [1] " the" " the" " the" " the"
## 
## [[345]]
## [1] " the"
## 
## [[346]]
## [1] " the" " the"
## 
## [[347]]
## [1] " the"
## 
## [[348]]
## character(0)
## 
## [[349]]
## [1] " the" " the" " the" " the" " the" " the" " the"
## 
## [[350]]
## [1] " the" " the"
## 
## [[351]]
## character(0)
## 
## [[352]]
## [1] " the" " the"
## 
## [[353]]
## [1] " the"
## 
## [[354]]
## character(0)
## 
## [[355]]
## character(0)
## 
## [[356]]
## character(0)
## 
## [[357]]
## [1] " the"
## 
## [[358]]
## [1] " the"
## 
## [[359]]
## character(0)
## 
## [[360]]
## [1] " the" " the"
## 
## [[361]]
## [1] " the"
## 
## [[362]]
## [1] " the"
## 
## [[363]]
## [1] " the"
## 
## [[364]]
## character(0)
## 
## [[365]]
## [1] " the"
## 
## [[366]]
## character(0)
## 
## [[367]]
## character(0)
## 
## [[368]]
## [1] " the"
## 
## [[369]]
## [1] " the" " the"
## 
## [[370]]
## character(0)
## 
## [[371]]
## character(0)
## 
## [[372]]
## [1] " the"
## 
## [[373]]
## character(0)
## 
## [[374]]
## [1] " the"
## 
## [[375]]
## character(0)
## 
## [[376]]
## character(0)
## 
## [[377]]
## [1] " the"
## 
## [[378]]
## [1] " the" " the" " the" " the"
## 
## [[379]]
## [1] " the"
## 
## [[380]]
## [1] " the"
## 
## [[381]]
## [1] " the" " the"
## 
## [[382]]
## [1] " the"
## 
## [[383]]
## [1] " the" " the" " the" " the"
## 
## [[384]]
## character(0)
## 
## [[385]]
## [1] " the"
## 
## [[386]]
## character(0)
## 
## [[387]]
## [1] " the"
## 
## [[388]]
## [1] " the" " the" " the"
## 
## [[389]]
## [1] " the" " the"
## 
## [[390]]
## [1] " the"
## 
## [[391]]
## character(0)
## 
## [[392]]
## [1] " the"
## 
## [[393]]
## character(0)
## 
## [[394]]
## character(0)
## 
## [[395]]
## [1] " the"
## 
## [[396]]
## [1] " the"
## 
## [[397]]
## character(0)
## 
## [[398]]
## [1] " the"
## 
## [[399]]
## character(0)
## 
## [[400]]
## character(0)
## 
## [[401]]
## character(0)
## 
## [[402]]
## [1] " the"
## 
## [[403]]
## [1] " the"
## 
## [[404]]
## character(0)
## 
## [[405]]
## [1] " the"
## 
## [[406]]
## character(0)
## 
## [[407]]
## character(0)
## 
## [[408]]
## [1] " the"
## 
## [[409]]
## character(0)
## 
## [[410]]
## character(0)
## 
## [[411]]
## [1] " the"
## 
## [[412]]
## character(0)
## 
## [[413]]
## [1] " the"
## 
## [[414]]
## character(0)
## 
## [[415]]
## [1] " tre"
## 
## [[416]]
## [1] " the" " the" " the"
## 
## [[417]]
## character(0)
## 
## [[418]]
## [1] " the"
## 
## [[419]]
## character(0)
## 
## [[420]]
## [1] " the" " the" " tee"
## 
## [[421]]
## character(0)
## 
## [[422]]
## character(0)
## 
## [[423]]
## [1] " the" " the" " the" " the"
## 
## [[424]]
## [1] " the"
## 
## [[425]]
## [1] " the"
## 
## [[426]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[427]]
## [1] " the"
## 
## [[428]]
## character(0)
## 
## [[429]]
## character(0)
## 
## [[430]]
## character(0)
## 
## [[431]]
## character(0)
## 
## [[432]]
## [1] " the"
## 
## [[433]]
## character(0)
## 
## [[434]]
## character(0)
## 
## [[435]]
## [1] " the"
## 
## [[436]]
## [1] " the" " the" " the"
## 
## [[437]]
## character(0)
## 
## [[438]]
## character(0)
## 
## [[439]]
## [1] " tre"
## 
## [[440]]
## character(0)
## 
## [[441]]
## [1] " the" " the"
## 
## [[442]]
## [1] " the"
## 
## [[443]]
## [1] " the" " the" " tre"
## 
## [[444]]
## character(0)
## 
## [[445]]
## [1] " the" " the" " the"
## 
## [[446]]
## character(0)
## 
## [[447]]
## character(0)
## 
## [[448]]
## [1] " the" " the"
## 
## [[449]]
## [1] " the" " the" " the"
## 
## [[450]]
## [1] " the" " the"
## 
## [[451]]
## [1] " the"
## 
## [[452]]
## [1] " the"
## 
## [[453]]
## [1] " the"
## 
## [[454]]
## character(0)
## 
## [[455]]
## character(0)
## 
## [[456]]
## character(0)
## 
## [[457]]
## [1] " the" " the"
## 
## [[458]]
## [1] " the" " the"
## 
## [[459]]
## [1] " the" " the" " the" " the" " the"
## 
## [[460]]
## character(0)
## 
## [[461]]
## character(0)
## 
## [[462]]
## character(0)
## 
## [[463]]
## [1] " the" " the"
## 
## [[464]]
## character(0)
## 
## [[465]]
## character(0)
## 
## [[466]]
## [1] " the"
## 
## [[467]]
## character(0)
## 
## [[468]]
## [1] " the" " the" " the"
## 
## [[469]]
## [1] " the"
## 
## [[470]]
## character(0)
## 
## [[471]]
## [1] " the"
## 
## [[472]]
## [1] " the"
## 
## [[473]]
## [1] " the" " the"
## 
## [[474]]
## [1] " the"
## 
## [[475]]
## character(0)
## 
## [[476]]
## [1] " the"
## 
## [[477]]
## [1] " the" " the" " the"
## 
## [[478]]
## [1] " the" " the"
## 
## [[479]]
## character(0)
## 
## [[480]]
## [1] " the" " the" " the" " the"
## 
## [[481]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[482]]
## [1] " the"
## 
## [[483]]
## [1] " tre"
## 
## [[484]]
## [1] " the"
## 
## [[485]]
## character(0)
## 
## [[486]]
## [1] " the"
## 
## [[487]]
## character(0)
## 
## [[488]]
## [1] " the"
## 
## [[489]]
## [1] " the" " the"
## 
## [[490]]
## [1] " the"
## 
## [[491]]
## character(0)
## 
## [[492]]
## character(0)
## 
## [[493]]
## character(0)
## 
## [[494]]
## [1] " the" " the"
## 
## [[495]]
## character(0)
## 
## [[496]]
## character(0)
## 
## [[497]]
## [1] " the"
## 
## [[498]]
## [1] " the"
## 
## [[499]]
## character(0)
## 
## [[500]]
## [1] " the"
## 
## [[501]]
## [1] " the"
## 
## [[502]]
## [1] " the"
## 
## [[503]]
## [1] " the"
## 
## [[504]]
## character(0)
## 
## [[505]]
## [1] " the" " the" " the" " the"
## 
## [[506]]
## character(0)
## 
## [[507]]
## [1] " the"
## 
## [[508]]
## character(0)
## 
## [[509]]
## [1] " the" " the" " the"
## 
## [[510]]
## character(0)
## 
## [[511]]
## character(0)
## 
## [[512]]
## [1] " the" " the"
## 
## [[513]]
## character(0)
## 
## [[514]]
## [1] " the"
## 
## [[515]]
## [1] " the" " the"
## 
## [[516]]
## character(0)
## 
## [[517]]
## character(0)
## 
## [[518]]
## [1] " the"
## 
## [[519]]
## [1] " the"
## 
## [[520]]
## [1] " the" " the" " the" " the"
## 
## [[521]]
## character(0)
## 
## [[522]]
## [1] " the"
## 
## [[523]]
## character(0)
## 
## [[524]]
## [1] " the" " the" " the"
## 
## [[525]]
## [1] " the"
## 
## [[526]]
## character(0)
## 
## [[527]]
## [1] " the" " the" " the" " the" " the" " the" " the"
## 
## [[528]]
## [1] " the"
## 
## [[529]]
## character(0)
## 
## [[530]]
## [1] " the"
## 
## [[531]]
## [1] " the"
## 
## [[532]]
## [1] " the" " the" " the"
## 
## [[533]]
## [1] " the"
## 
## [[534]]
## character(0)
## 
## [[535]]
## character(0)
## 
## [[536]]
## [1] " the" " the"
## 
## [[537]]
## [1] " the" " the"
## 
## [[538]]
## [1] " the" " the" " the"
## 
## [[539]]
## character(0)
## 
## [[540]]
## character(0)
## 
## [[541]]
## character(0)
## 
## [[542]]
## [1] " the" " the" " twe" " the" " the" " the"
## 
## [[543]]
## character(0)
## 
## [[544]]
## [1] " the"
## 
## [[545]]
## character(0)
## 
## [[546]]
## [1] " the"
## 
## [[547]]
## character(0)
## 
## [[548]]
## character(0)
## 
## [[549]]
## character(0)
## 
## [[550]]
## [1] " the" " the"
## 
## [[551]]
## character(0)
## 
## [[552]]
## character(0)
## 
## [[553]]
## [1] " the" " the" " the"
## 
## [[554]]
## character(0)
## 
## [[555]]
## character(0)
## 
## [[556]]
## [1] " the" " the" " the"
## 
## [[557]]
## character(0)
## 
## [[558]]
## character(0)
## 
## [[559]]
## [1] " the"
## 
## [[560]]
## [1] " the"
## 
## [[561]]
## character(0)
## 
## [[562]]
## character(0)
## 
## [[563]]
## [1] " the"
## 
## [[564]]
## [1] " the" " the"
## 
## [[565]]
## character(0)
## 
## [[566]]
## character(0)
## 
## [[567]]
## [1] " the" " the"
## 
## [[568]]
## character(0)
## 
## [[569]]
## character(0)
## 
## [[570]]
## character(0)
## 
## [[571]]
## [1] " the"
## 
## [[572]]
## [1] " the"
## 
## [[573]]
## character(0)
## 
## [[574]]
## character(0)
## 
## [[575]]
## character(0)
## 
## [[576]]
## character(0)
## 
## [[577]]
## [1] " the"
## 
## [[578]]
## [1] " the"
## 
## [[579]]
## [1] " the"
## 
## [[580]]
## character(0)
## 
## [[581]]
## [1] " the"
## 
## [[582]]
## [1] " the" " the"
## 
## [[583]]
## [1] " the" " the"
## 
## [[584]]
## [1] " the" " the" " the"
## 
## [[585]]
## [1] " the" " the"
## 
## [[586]]
## [1] " the"
## 
## [[587]]
## character(0)
## 
## [[588]]
## character(0)
## 
## [[589]]
## character(0)
## 
## [[590]]
## character(0)
## 
## [[591]]
## character(0)
## 
## [[592]]
## [1] " the" " the" " the" " the"
## 
## [[593]]
## character(0)
## 
## [[594]]
## [1] " the" " the"
## 
## [[595]]
## character(0)
## 
## [[596]]
## character(0)
## 
## [[597]]
## [1] " the" " the"
## 
## [[598]]
## [1] " the"
## 
## [[599]]
## [1] " the" " the"
## 
## [[600]]
## character(0)
## 
## [[601]]
## [1] " the"
## 
## [[602]]
## [1] " the"
## 
## [[603]]
## [1] " the"
## 
## [[604]]
## character(0)
## 
## [[605]]
## [1] " the" " the" " the" " the"
## 
## [[606]]
## character(0)
## 
## [[607]]
## character(0)
## 
## [[608]]
## [1] " the" " the"
## 
## [[609]]
## character(0)
## 
## [[610]]
## character(0)
## 
## [[611]]
## character(0)
## 
## [[612]]
## [1] " twe"
## 
## [[613]]
## [1] " the"
## 
## [[614]]
## character(0)
## 
## [[615]]
## character(0)
## 
## [[616]]
## character(0)
## 
## [[617]]
## character(0)
## 
## [[618]]
## character(0)
## 
## [[619]]
## [1] " the" " the" " the"
## 
## [[620]]
## [1] " the" " the"
## 
## [[621]]
## character(0)
## 
## [[622]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[623]]
## [1] " the" " the"
## 
## [[624]]
## [1] " the"
## 
## [[625]]
## character(0)
## 
## [[626]]
## [1] " the" " the"
## 
## [[627]]
## [1] " the"
## 
## [[628]]
## [1] " the" " the" " the" " the"
## 
## [[629]]
## character(0)
## 
## [[630]]
## character(0)
## 
## [[631]]
## character(0)
## 
## [[632]]
## character(0)
## 
## [[633]]
## [1] " the" " the" " the"
## 
## [[634]]
## [1] " the"
## 
## [[635]]
## [1] " the"
## 
## [[636]]
## [1] " the"
## 
## [[637]]
## character(0)
## 
## [[638]]
## [1] " the"
## 
## [[639]]
## [1] " the"
## 
## [[640]]
## [1] " the"
## 
## [[641]]
## character(0)
## 
## [[642]]
## [1] " the" " the"
## 
## [[643]]
## character(0)
## 
## [[644]]
## [1] " the" " the" " the"
## 
## [[645]]
## [1] " the"
## 
## [[646]]
## character(0)
## 
## [[647]]
## character(0)
## 
## [[648]]
## [1] " the" " the"
## 
## [[649]]
## [1] " the" " the" " the"
## 
## [[650]]
## [1] " twe"
## 
## [[651]]
## character(0)
## 
## [[652]]
## [1] " the" " the" " the"
## 
## [[653]]
## character(0)
## 
## [[654]]
## character(0)
## 
## [[655]]
## character(0)
## 
## [[656]]
## character(0)
## 
## [[657]]
## [1] " the"
## 
## [[658]]
## [1] " the" " the"
## 
## [[659]]
## [1] " the"
## 
## [[660]]
## character(0)
## 
## [[661]]
## character(0)
## 
## [[662]]
## character(0)
## 
## [[663]]
## [1] " the"
## 
## [[664]]
## [1] " the" " the"
## 
## [[665]]
## [1] " the"
## 
## [[666]]
## character(0)
## 
## [[667]]
## [1] " the" " the" " the"
## 
## [[668]]
## [1] " the"
## 
## [[669]]
## character(0)
## 
## [[670]]
## [1] " the"
## 
## [[671]]
## [1] " the"
## 
## [[672]]
## [1] " the" " the" " the" " the" " the"
## 
## [[673]]
## character(0)
## 
## [[674]]
## [1] " the" " the" " the" " the"
## 
## [[675]]
## [1] " the"
## 
## [[676]]
## [1] " the" " the"
## 
## [[677]]
## [1] " the"
## 
## [[678]]
## character(0)
## 
## [[679]]
## character(0)
## 
## [[680]]
## [1] " the"
## 
## [[681]]
## [1] " the"
## 
## [[682]]
## character(0)
## 
## [[683]]
## character(0)
## 
## [[684]]
## [1] " the" " the"
## 
## [[685]]
## [1] " the"
## 
## [[686]]
## [1] " the"
## 
## [[687]]
## [1] " the"
## 
## [[688]]
## character(0)
## 
## [[689]]
## [1] " the" " the" " the" " the"
## 
## [[690]]
## character(0)
## 
## [[691]]
## [1] " the" " the" " the"
## 
## [[692]]
## [1] " the" " the" " the"
## 
## [[693]]
## character(0)
## 
## [[694]]
## character(0)
## 
## [[695]]
## [1] " the" " the" " the" " the"
## 
## [[696]]
## character(0)
## 
## [[697]]
## character(0)
## 
## [[698]]
## [1] " the"
## 
## [[699]]
## [1] " the" " the" " the"
## 
## [[700]]
## character(0)
## 
## [[701]]
## character(0)
## 
## [[702]]
## character(0)
## 
## [[703]]
## character(0)
## 
## [[704]]
## [1] " the"
## 
## [[705]]
## [1] " the"
## 
## [[706]]
## [1] " the" " the"
## 
## [[707]]
## [1] " the" " the" " the"
## 
## [[708]]
## [1] " the"
## 
## [[709]]
## [1] " the" " the"
## 
## [[710]]
## [1] " the"
## 
## [[711]]
## [1] " the" " the"
## 
## [[712]]
## [1] " the" " the" " the"
## 
## [[713]]
## [1] " the"
## 
## [[714]]
## character(0)
## 
## [[715]]
## [1] " the" " the"
## 
## [[716]]
## [1] " the"
## 
## [[717]]
## character(0)
## 
## [[718]]
## character(0)
## 
## [[719]]
## [1] " the"
## 
## [[720]]
## [1] " the"
## 
## [[721]]
## [1] " the"
## 
## [[722]]
## [1] " the"
## 
## [[723]]
## [1] " the"
## 
## [[724]]
## character(0)
## 
## [[725]]
## [1] " the"
## 
## [[726]]
## [1] " the"
## 
## [[727]]
## character(0)
## 
## [[728]]
## character(0)
## 
## [[729]]
## [1] " the"
## 
## [[730]]
## [1] " the"
## 
## [[731]]
## [1] " the"
## 
## [[732]]
## [1] " the"
## 
## [[733]]
## [1] " the"
## 
## [[734]]
## [1] " the" " the"
## 
## [[735]]
## [1] " the" " the"
## 
## [[736]]
## [1] " the"
## 
## [[737]]
## character(0)
## 
## [[738]]
## character(0)
## 
## [[739]]
## character(0)
## 
## [[740]]
## [1] " the" " the" " the"
## 
## [[741]]
## [1] " the" " the"
## 
## [[742]]
## [1] " the" " the" " the"
## 
## [[743]]
## [1] " the"
## 
## [[744]]
## character(0)
## 
## [[745]]
## [1] " the" " the" " the"
## 
## [[746]]
## [1] " the"
## 
## [[747]]
## character(0)
## 
## [[748]]
## [1] " the" " the"
## 
## [[749]]
## [1] " the"
## 
## [[750]]
## [1] " the" " the" " the" " the" " the"
## 
## [[751]]
## character(0)
## 
## [[752]]
## [1] " the"
## 
## [[753]]
## character(0)
## 
## [[754]]
## [1] " the"
## 
## [[755]]
## [1] " tre" " the"
## 
## [[756]]
## [1] " the" " tre"
## 
## [[757]]
## character(0)
## 
## [[758]]
## character(0)
## 
## [[759]]
## [1] " the" " the"
## 
## [[760]]
## [1] " the" " the"
## 
## [[761]]
## character(0)
## 
## [[762]]
## [1] " the" " the"
## 
## [[763]]
## [1] " the" " the" " the" " the"
## 
## [[764]]
## character(0)
## 
## [[765]]
## character(0)
## 
## [[766]]
## character(0)
## 
## [[767]]
## character(0)
## 
## [[768]]
## character(0)
## 
## [[769]]
## character(0)
## 
## [[770]]
## character(0)
## 
## [[771]]
## [1] " the" " the"
## 
## [[772]]
## [1] " the" " the"
## 
## [[773]]
## [1] " the"
## 
## [[774]]
## [1] " the"
## 
## [[775]]
## [1] " the" " the"
## 
## [[776]]
## [1] " the"
## 
## [[777]]
## character(0)
## 
## [[778]]
## character(0)
## 
## [[779]]
## character(0)
## 
## [[780]]
## [1] " the" " the" " the" " the"
## 
## [[781]]
## [1] " the"
## 
## [[782]]
## [1] " the" " the"
## 
## [[783]]
## [1] " the"
## 
## [[784]]
## [1] " the"
## 
## [[785]]
## [1] " the"
## 
## [[786]]
## [1] " the" " the" " the" " the" " the" " the" " the"
## 
## [[787]]
## [1] " the" " the"
## 
## [[788]]
## [1] " the"
## 
## [[789]]
## character(0)
## 
## [[790]]
## character(0)
## 
## [[791]]
## [1] " the" " the" " the" " the" " the" " the" " the" " the"
## 
## [[792]]
## [1] " the"
## 
## [[793]]
## [1] " the" " the" " the"
## 
## [[794]]
## [1] " the"
## 
## [[795]]
## character(0)
## 
## [[796]]
## character(0)
## 
## [[797]]
## character(0)
## 
## [[798]]
## character(0)
## 
## [[799]]
## character(0)
## 
## [[800]]
## character(0)
## 
## [[801]]
## character(0)
## 
## [[802]]
## [1] " the" " the" " the"
## 
## [[803]]
## [1] " the"
## 
## [[804]]
## [1] " the"
## 
## [[805]]
## [1] " the"
## 
## [[806]]
## character(0)
## 
## [[807]]
## character(0)
## 
## [[808]]
## [1] " the"
## 
## [[809]]
## character(0)
## 
## [[810]]
## character(0)
## 
## [[811]]
## [1] " the" " the"
## 
## [[812]]
## [1] " the" " the" " the"
## 
## [[813]]
## [1] " the" " the" " the"
## 
## [[814]]
## [1] " the" " the"
## 
## [[815]]
## character(0)
## 
## [[816]]
## [1] " the" " the"
## 
## [[817]]
## character(0)
## 
## [[818]]
## character(0)
## 
## [[819]]
## [1] " the"
## 
## [[820]]
## [1] " the"
## 
## [[821]]
## character(0)
## 
## [[822]]
## character(0)
## 
## [[823]]
## character(0)
## 
## [[824]]
## character(0)
## 
## [[825]]
## [1] " the" " the"
## 
## [[826]]
## [1] " the"
## 
## [[827]]
## character(0)
## 
## [[828]]
## [1] " the"
## 
## [[829]]
## character(0)
## 
## [[830]]
## [1] " the" " the" " the"
## 
## [[831]]
## character(0)
## 
## [[832]]
## [1] " the" " the" " the"
## 
## [[833]]
## [1] " the"
## 
## [[834]]
## character(0)
## 
## [[835]]
## [1] " the" " the"
## 
## [[836]]
## character(0)
## 
## [[837]]
## character(0)
## 
## [[838]]
## [1] " the" " the" " the" " the"
## 
## [[839]]
## character(0)
## 
## [[840]]
## [1] " the" " the" " the"
## 
## [[841]]
## [1] " the" " the"
## 
## [[842]]
## [1] " the" " the"
## 
## [[843]]
## [1] " the" " the" " the"
## 
## [[844]]
## [1] " the"
## 
## [[845]]
## [1] " the"
## 
## [[846]]
## [1] " the" " the"
## 
## [[847]]
## [1] " the" " the"
## 
## [[848]]
## [1] " the"
## 
## [[849]]
## [1] " the" " the" " the"
## 
## [[850]]
## [1] " the"
## 
## [[851]]
## [1] " the"
## 
## [[852]]
## character(0)
## 
## [[853]]
## character(0)
## 
## [[854]]
## character(0)
## 
## [[855]]
## character(0)
## 
## [[856]]
## character(0)
## 
## [[857]]
## character(0)
## 
## [[858]]
## [1] " the"
## 
## [[859]]
## character(0)
## 
## [[860]]
## character(0)
## 
## [[861]]
## [1] " the" " the"
## 
## [[862]]
## character(0)
## 
## [[863]]
## character(0)
## 
## [[864]]
## character(0)
## 
## [[865]]
## [1] " the" " the"
## 
## [[866]]
## [1] " the" " the"
## 
## [[867]]
## character(0)
## 
## [[868]]
## character(0)
## 
## [[869]]
## character(0)
## 
## [[870]]
## character(0)
## 
## [[871]]
## [1] " the" " the" " the" " the"
## 
## [[872]]
## [1] " the" " the"
## 
## [[873]]
## [1] " the"
## 
## [[874]]
## character(0)
## 
## [[875]]
## character(0)
## 
## [[876]]
## [1] " the" " the"
## 
## [[877]]
## character(0)
## 
## [[878]]
## character(0)
## 
## [[879]]
## [1] " the"
## 
## [[880]]
## [1] " the"
## 
## [[881]]
## [1] " the" " tre"
## 
## [[882]]
## [1] " the"
## 
## [[883]]
## [1] " the"
## 
## [[884]]
## character(0)
## 
## [[885]]
## character(0)
## 
## [[886]]
## character(0)
## 
## [[887]]
## character(0)
## 
## [[888]]
## [1] " the" " the" " the"
## 
## [[889]]
## [1] " tre"
## 
## [[890]]
## [1] " the"
## 
## [[891]]
## [1] " the" " the" " the" " the"
## 
## [[892]]
## [1] " the"
## 
## [[893]]
## [1] " the" " the"
## 
## [[894]]
## [1] " the"
## 
## [[895]]
## [1] " the"
## 
## [[896]]
## [1] " the"
## 
## [[897]]
## character(0)
## 
## [[898]]
## character(0)
## 
## [[899]]
## character(0)
## 
## [[900]]
## [1] " the" " the" " the" " the"
## 
## [[901]]
## character(0)
## 
## [[902]]
## character(0)
## 
## [[903]]
## [1] " the"
## 
## [[904]]
## [1] " the" " the"
## 
## [[905]]
## [1] " the"
## 
## [[906]]
## character(0)
## 
## [[907]]
## [1] " the" " the"
## 
## [[908]]
## [1] " the"
## 
## [[909]]
## [1] " the" " the"
## 
## [[910]]
## [1] " the"
## 
## [[911]]
## character(0)
## 
## [[912]]
## character(0)
## 
## [[913]]
## [1] " the"
## 
## [[914]]
## character(0)
## 
## [[915]]
## character(0)
## 
## [[916]]
## [1] " the"
## 
## [[917]]
## character(0)
## 
## [[918]]
## character(0)
## 
## [[919]]
## [1] " the" " the"
## 
## [[920]]
## character(0)
## 
## [[921]]
## character(0)
## 
## [[922]]
## [1] " the"
## 
## [[923]]
## [1] " the"
## 
## [[924]]
## character(0)
## 
## [[925]]
## [1] " the"
## 
## [[926]]
## [1] " the" " the" " the" " the" " the"
## 
## [[927]]
## [1] " the" " the"
## 
## [[928]]
## [1] " the" " the" " the" " the"
## 
## [[929]]
## character(0)
## 
## [[930]]
## character(0)
## 
## [[931]]
## character(0)
## 
## [[932]]
## character(0)
## 
## [[933]]
## [1] " the" " the"
## 
## [[934]]
## [1] " the" " the"
## 
## [[935]]
## [1] " the" " the"
## 
## [[936]]
## [1] " the" " the"
## 
## [[937]]
## [1] " the" " the" " the"
## 
## [[938]]
## [1] " the"
## 
## [[939]]
## character(0)
## 
## [[940]]
## character(0)
## 
## [[941]]
## character(0)
## 
## [[942]]
## [1] " the" " the" " the" " the"
## 
## [[943]]
## [1] " the"
## 
## [[944]]
## [1] " the"
## 
## [[945]]
## [1] " the" " the" " the" " the"
## 
## [[946]]
## [1] " the"
## 
## [[947]]
## character(0)
## 
## [[948]]
## character(0)
## 
## [[949]]
## [1] " the"
## 
## [[950]]
## [1] " the" " the" " the"
## 
## [[951]]
## character(0)
## 
## [[952]]
## [1] " the"
## 
## [[953]]
## character(0)
## 
## [[954]]
## character(0)
## 
## [[955]]
## character(0)
## 
## [[956]]
## [1] " the"
## 
## [[957]]
## [1] " the"
## 
## [[958]]
## character(0)
## 
## [[959]]
## character(0)
## 
## [[960]]
## character(0)
## 
## [[961]]
## [1] " the"
## 
## [[962]]
## [1] " the" " the" " the" " the"
## 
## [[963]]
## [1] " the"
## 
## [[964]]
## [1] " the"
## 
## [[965]]
## [1] " the"
## 
## [[966]]
## character(0)
## 
## [[967]]
## [1] " the" " the"
## 
## [[968]]
## [1] " the"
## 
## [[969]]
## [1] " the"
## 
## [[970]]
## [1] " the" " the"
## 
## [[971]]
## character(0)
## 
## [[972]]
## character(0)
## 
## [[973]]
## character(0)
## 
## [[974]]
## [1] " the" " the"
## 
## [[975]]
## character(0)
## 
## [[976]]
## [1] " the"
## 
## [[977]]
## character(0)
## 
## [[978]]
## character(0)
## 
## [[979]]
## [1] " the" " the" " the"
## 
## [[980]]
## character(0)
## 
## [[981]]
## character(0)
## 
## [[982]]
## character(0)
## 
## [[983]]
## character(0)
## 
## [[984]]
## [1] " tre"
## 
## [[985]]
## character(0)
## 
## [[986]]
## character(0)
## 
## [[987]]
## [1] " the"
## 
## [[988]]
## character(0)
## 
## [[989]]
## [1] " the" " the" " the"
## 
## [[990]]
## [1] " the"
## 
## [[991]]
## character(0)
## 
## [[992]]
## character(0)
## 
## [[993]]
## [1] " the"
## 
## [[994]]
## [1] " the" " the"
## 
## [[995]]
## character(0)
## 
## [[996]]
## [1] " the" " the" " the"
## 
## [[997]]
## [1] " the" " the"
## 
## [[998]]
## [1] " the" " the" " the" " the"
## 
## [[999]]
## [1] " the" " the"
## 
## [[1000]]
## [1] " the" " the"
## 
## [[1001]]
## character(0)
## 
## [[1002]]
## [1] " the" " the" " the" " the"
## 
## [[1003]]
## character(0)
## 
## [[1004]]
## character(0)
## 
## [[1005]]
## [1] " the" " the" " the"
## 
## [[1006]]
## character(0)
## 
## [[1007]]
## character(0)
## 
## [[1008]]
## [1] " the"
## 
## [[1009]]
## character(0)
## 
## [[1010]]
## [1] " the" " the"
## 
## [[1011]]
## [1] " the" " the"
## 
## [[1012]]
## character(0)
## 
## [[1013]]
## [1] " the" " the"
## 
## [[1014]]
## character(0)
## 
## [[1015]]
## [1] " the"
## 
## [[1016]]
## [1] " tre" " the"
## 
## [[1017]]
## [1] " the"
## 
## [[1018]]
## [1] " the" " the" " the"
## 
## [[1019]]
## [1] " the"
## 
## [[1020]]
## [1] " the"
## 
## [[1021]]
## character(0)
## 
## [[1022]]
## character(0)
## 
## [[1023]]
## character(0)
## 
## [[1024]]
## character(0)
## 
## [[1025]]
## character(0)
## 
## [[1026]]
## [1] " the"
## 
## [[1027]]
## character(0)
## 
## [[1028]]
## [1] " the" " the"
## 
## [[1029]]
## [1] " the" " the"
## 
## [[1030]]
## character(0)
## 
## [[1031]]
## character(0)
## 
## [[1032]]
## character(0)
## 
## [[1033]]
## character(0)
## 
## [[1034]]
## [1] " the" " the"
## 
## [[1035]]
## character(0)
## 
## [[1036]]
## [1] " the"
## 
## [[1037]]
## [1] " the" " the" " the"
## 
## [[1038]]
## character(0)
## 
## [[1039]]
## [1] " the" " the" " the" " the"
## 
## [[1040]]
## [1] " the"
## 
## [[1041]]
## character(0)
## 
## [[1042]]
## character(0)
## 
## [[1043]]
## character(0)
## 
## [[1044]]
## character(0)
## 
## [[1045]]
## character(0)
## 
## [[1046]]
## [1] " the" " the"
## 
## [[1047]]
## [1] " the" " the" " the" " the"
## 
## [[1048]]
## character(0)
## 
## [[1049]]
## [1] " the"
## 
## [[1050]]
## [1] " tre" " the" " twe"
## 
## [[1051]]
## character(0)
## 
## [[1052]]
## character(0)
## 
## [[1053]]
## character(0)
## 
## [[1054]]
## [1] " the"
## 
## [[1055]]
## [1] " the" " the" " the" " the"
## 
## [[1056]]
## [1] " the" " the" " the"
## 
## [[1057]]
## [1] " the" " the" " the"
## 
## [[1058]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1059]]
## character(0)
## 
## [[1060]]
## [1] " the" " the" " the"
## 
## [[1061]]
## character(0)
## 
## [[1062]]
## [1] " the" " the"
## 
## [[1063]]
## [1] " the"
## 
## [[1064]]
## character(0)
## 
## [[1065]]
## character(0)
## 
## [[1066]]
## [1] " the" " the"
## 
## [[1067]]
## character(0)
## 
## [[1068]]
## [1] " the"
## 
## [[1069]]
## [1] " the"
## 
## [[1070]]
## character(0)
## 
## [[1071]]
## [1] " the"
## 
## [[1072]]
## character(0)
## 
## [[1073]]
## character(0)
## 
## [[1074]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1075]]
## [1] " the"
## 
## [[1076]]
## character(0)
## 
## [[1077]]
## [1] " the" " the" " the"
## 
## [[1078]]
## character(0)
## 
## [[1079]]
## [1] " the"
## 
## [[1080]]
## character(0)
## 
## [[1081]]
## character(0)
## 
## [[1082]]
## [1] " the"
## 
## [[1083]]
## character(0)
## 
## [[1084]]
## character(0)
## 
## [[1085]]
## [1] " the" " the" " twe" " the"
## 
## [[1086]]
## character(0)
## 
## [[1087]]
## [1] " the"
## 
## [[1088]]
## character(0)
## 
## [[1089]]
## character(0)
## 
## [[1090]]
## character(0)
## 
## [[1091]]
## [1] " the" " the" " the"
## 
## [[1092]]
## character(0)
## 
## [[1093]]
## character(0)
## 
## [[1094]]
## character(0)
## 
## [[1095]]
## [1] " the" " the" " the"
## 
## [[1096]]
## character(0)
## 
## [[1097]]
## [1] " the"
## 
## [[1098]]
## [1] " the"
## 
## [[1099]]
## [1] " twe" " twe" " tre"
## 
## [[1100]]
## character(0)
## 
## [[1101]]
## character(0)
## 
## [[1102]]
## character(0)
## 
## [[1103]]
## character(0)
## 
## [[1104]]
## character(0)
## 
## [[1105]]
## character(0)
## 
## [[1106]]
## [1] " the"
## 
## [[1107]]
## character(0)
## 
## [[1108]]
## [1] " the" " the"
## 
## [[1109]]
## character(0)
## 
## [[1110]]
## character(0)
## 
## [[1111]]
## [1] " the" " the" " the"
## 
## [[1112]]
## [1] " the" " the"
## 
## [[1113]]
## [1] " the"
## 
## [[1114]]
## [1] " the"
## 
## [[1115]]
## [1] " the"
## 
## [[1116]]
## [1] " the" " the" " the"
## 
## [[1117]]
## character(0)
## 
## [[1118]]
## character(0)
## 
## [[1119]]
## [1] " the" " the" " the" " the"
## 
## [[1120]]
## character(0)
## 
## [[1121]]
## [1] " the" " the" " the" " the"
## 
## [[1122]]
## character(0)
## 
## [[1123]]
## [1] " the"
## 
## [[1124]]
## character(0)
## 
## [[1125]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1126]]
## [1] " the" " the"
## 
## [[1127]]
## [1] " the" " the" " the"
## 
## [[1128]]
## [1] " the" " the" " the" " the"
## 
## [[1129]]
## character(0)
## 
## [[1130]]
## character(0)
## 
## [[1131]]
## [1] " the" " the" " the" " the"
## 
## [[1132]]
## character(0)
## 
## [[1133]]
## [1] " the" " the" " the"
## 
## [[1134]]
## character(0)
## 
## [[1135]]
## character(0)
## 
## [[1136]]
## character(0)
## 
## [[1137]]
## character(0)
## 
## [[1138]]
## [1] " the"
## 
## [[1139]]
## [1] " the"
## 
## [[1140]]
## [1] " the" " the" " the" " the"
## 
## [[1141]]
## [1] " the" " the" " the"
## 
## [[1142]]
## [1] " the"
## 
## [[1143]]
## character(0)
## 
## [[1144]]
## [1] " the"
## 
## [[1145]]
## [1] " the" " the" " the" " the"
## 
## [[1146]]
## character(0)
## 
## [[1147]]
## [1] " the" " the" " the"
## 
## [[1148]]
## character(0)
## 
## [[1149]]
## [1] " the"
## 
## [[1150]]
## character(0)
## 
## [[1151]]
## [1] " the" " the" " the"
## 
## [[1152]]
## [1] " the"
## 
## [[1153]]
## character(0)
## 
## [[1154]]
## [1] " the"
## 
## [[1155]]
## [1] " the"
## 
## [[1156]]
## character(0)
## 
## [[1157]]
## [1] " the" " the"
## 
## [[1158]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1159]]
## [1] " the" " the"
## 
## [[1160]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1161]]
## character(0)
## 
## [[1162]]
## character(0)
## 
## [[1163]]
## [1] " the"
## 
## [[1164]]
## [1] " the"
## 
## [[1165]]
## [1] " the" " the"
## 
## [[1166]]
## [1] " the"
## 
## [[1167]]
## [1] " tie" " tre" " the"
## 
## [[1168]]
## [1] " the" " the"
## 
## [[1169]]
## character(0)
## 
## [[1170]]
## [1] " the"
## 
## [[1171]]
## [1] " the"
## 
## [[1172]]
## character(0)
## 
## [[1173]]
## character(0)
## 
## [[1174]]
## [1] " the" " tre"
## 
## [[1175]]
## [1] " the"
## 
## [[1176]]
## [1] " the" " the"
## 
## [[1177]]
## character(0)
## 
## [[1178]]
## [1] " tre" " the"
## 
## [[1179]]
## character(0)
## 
## [[1180]]
## character(0)
## 
## [[1181]]
## [1] " the" " the"
## 
## [[1182]]
## character(0)
## 
## [[1183]]
## character(0)
## 
## [[1184]]
## character(0)
## 
## [[1185]]
## [1] " the"
## 
## [[1186]]
## character(0)
## 
## [[1187]]
## character(0)
## 
## [[1188]]
## character(0)
## 
## [[1189]]
## [1] " the" " the" " the"
## 
## [[1190]]
## [1] " the" " the" " the"
## 
## [[1191]]
## character(0)
## 
## [[1192]]
## character(0)
## 
## [[1193]]
## [1] " the"
## 
## [[1194]]
## [1] " the" " the"
## 
## [[1195]]
## [1] " the"
## 
## [[1196]]
## character(0)
## 
## [[1197]]
## character(0)
## 
## [[1198]]
## [1] " the"
## 
## [[1199]]
## [1] " the"
## 
## [[1200]]
## [1] " the"
## 
## [[1201]]
## [1] " the" " the"
## 
## [[1202]]
## character(0)
## 
## [[1203]]
## character(0)
## 
## [[1204]]
## [1] " the" " tre"
## 
## [[1205]]
## [1] " the" " the"
## 
## [[1206]]
## [1] " tre"
## 
## [[1207]]
## character(0)
## 
## [[1208]]
## [1] " the" " the" " the" " the"
## 
## [[1209]]
## [1] " the"
## 
## [[1210]]
## [1] " the"
## 
## [[1211]]
## character(0)
## 
## [[1212]]
## [1] " the" " the"
## 
## [[1213]]
## character(0)
## 
## [[1214]]
## character(0)
## 
## [[1215]]
## [1] " the"
## 
## [[1216]]
## [1] " the" " the"
## 
## [[1217]]
## [1] " the"
## 
## [[1218]]
## character(0)
## 
## [[1219]]
## character(0)
## 
## [[1220]]
## [1] " the"
## 
## [[1221]]
## character(0)
## 
## [[1222]]
## character(0)
## 
## [[1223]]
## [1] " the"
## 
## [[1224]]
## character(0)
## 
## [[1225]]
## character(0)
## 
## [[1226]]
## [1] " the"
## 
## [[1227]]
## [1] " the"
## 
## [[1228]]
## [1] " the" " the"
## 
## [[1229]]
## character(0)
## 
## [[1230]]
## [1] " the"
## 
## [[1231]]
## character(0)
## 
## [[1232]]
## [1] " the" " the" " the"
## 
## [[1233]]
## character(0)
## 
## [[1234]]
## character(0)
## 
## [[1235]]
## [1] " the" " the"
## 
## [[1236]]
## [1] " the" " the"
## 
## [[1237]]
## character(0)
## 
## [[1238]]
## [1] " the" " the"
## 
## [[1239]]
## [1] " the" " the"
## 
## [[1240]]
## character(0)
## 
## [[1241]]
## [1] " the" " the"
## 
## [[1242]]
## [1] " the" " the" " the" " the"
## 
## [[1243]]
## [1] " the" " the" " the"
## 
## [[1244]]
## character(0)
## 
## [[1245]]
## [1] " the" " the"
## 
## [[1246]]
## [1] " the" " the" " the"
## 
## [[1247]]
## character(0)
## 
## [[1248]]
## [1] " the" " the"
## 
## [[1249]]
## [1] " the"
## 
## [[1250]]
## [1] " the"
## 
## [[1251]]
## [1] " the"
## 
## [[1252]]
## [1] " the"
## 
## [[1253]]
## [1] " the" " the" " the"
## 
## [[1254]]
## character(0)
## 
## [[1255]]
## character(0)
## 
## [[1256]]
## character(0)
## 
## [[1257]]
## [1] " the"
## 
## [[1258]]
## [1] " the" " the" " the" " the"
## 
## [[1259]]
## character(0)
## 
## [[1260]]
## [1] " the"
## 
## [[1261]]
## [1] " the"
## 
## [[1262]]
## character(0)
## 
## [[1263]]
## [1] " the" " the"
## 
## [[1264]]
## character(0)
## 
## [[1265]]
## character(0)
## 
## [[1266]]
## character(0)
## 
## [[1267]]
## character(0)
## 
## [[1268]]
## [1] " the"
## 
## [[1269]]
## character(0)
## 
## [[1270]]
## character(0)
## 
## [[1271]]
## [1] " the" " the"
## 
## [[1272]]
## character(0)
## 
## [[1273]]
## [1] " the"
## 
## [[1274]]
## [1] " the"
## 
## [[1275]]
## [1] " the"
## 
## [[1276]]
## [1] " the" " the"
## 
## [[1277]]
## [1] " the"
## 
## [[1278]]
## character(0)
## 
## [[1279]]
## [1] " the" " the"
## 
## [[1280]]
## character(0)
## 
## [[1281]]
## [1] " the"
## 
## [[1282]]
## [1] " the" " the" " the" " the"
## 
## [[1283]]
## [1] " the"
## 
## [[1284]]
## [1] " the" " the"
## 
## [[1285]]
## [1] " the" " the" " the"
## 
## [[1286]]
## [1] " the" " the" " the"
## 
## [[1287]]
## [1] " the"
## 
## [[1288]]
## character(0)
## 
## [[1289]]
## [1] " the"
## 
## [[1290]]
## character(0)
## 
## [[1291]]
## [1] " the" " the" " the"
## 
## [[1292]]
## [1] " the" " the"
## 
## [[1293]]
## [1] " the"
## 
## [[1294]]
## [1] " the"
## 
## [[1295]]
## character(0)
## 
## [[1296]]
## character(0)
## 
## [[1297]]
## character(0)
## 
## [[1298]]
## [1] " the"
## 
## [[1299]]
## [1] " the"
## 
## [[1300]]
## character(0)
## 
## [[1301]]
## [1] " the" " the"
## 
## [[1302]]
## character(0)
## 
## [[1303]]
## [1] " the"
## 
## [[1304]]
## character(0)
## 
## [[1305]]
## [1] " the"
## 
## [[1306]]
## character(0)
## 
## [[1307]]
## [1] " the"
## 
## [[1308]]
## [1] " the"
## 
## [[1309]]
## character(0)
## 
## [[1310]]
## [1] " the" " the" " the" " the"
## 
## [[1311]]
## character(0)
## 
## [[1312]]
## character(0)
## 
## [[1313]]
## character(0)
## 
## [[1314]]
## character(0)
## 
## [[1315]]
## character(0)
## 
## [[1316]]
## [1] " the" " the"
## 
## [[1317]]
## character(0)
## 
## [[1318]]
## [1] " the"
## 
## [[1319]]
## character(0)
## 
## [[1320]]
## character(0)
## 
## [[1321]]
## character(0)
## 
## [[1322]]
## [1] " the"
## 
## [[1323]]
## [1] " the"
## 
## [[1324]]
## character(0)
## 
## [[1325]]
## [1] " the" " the"
## 
## [[1326]]
## character(0)
## 
## [[1327]]
## [1] " tre"
## 
## [[1328]]
## [1] " the" " the" " the"
## 
## [[1329]]
## [1] " the"
## 
## [[1330]]
## [1] " the" " the"
## 
## [[1331]]
## [1] " the"
## 
## [[1332]]
## [1] " the" " the" " the"
## 
## [[1333]]
## [1] " the"
## 
## [[1334]]
## character(0)
## 
## [[1335]]
## character(0)
## 
## [[1336]]
## character(0)
## 
## [[1337]]
## [1] " the"
## 
## [[1338]]
## [1] " the" " the" " the"
## 
## [[1339]]
## [1] " the"
## 
## [[1340]]
## [1] " the" " the"
## 
## [[1341]]
## character(0)
## 
## [[1342]]
## [1] " the"
## 
## [[1343]]
## [1] " the"
## 
## [[1344]]
## [1] " the" " the" " the"
## 
## [[1345]]
## character(0)
## 
## [[1346]]
## character(0)
## 
## [[1347]]
## character(0)
## 
## [[1348]]
## character(0)
## 
## [[1349]]
## [1] " the"
## 
## [[1350]]
## [1] " the" " the"
## 
## [[1351]]
## [1] " the" " the"
## 
## [[1352]]
## [1] " the"
## 
## [[1353]]
## character(0)
## 
## [[1354]]
## [1] " the"
## 
## [[1355]]
## character(0)
## 
## [[1356]]
## [1] " the"
## 
## [[1357]]
## [1] " the"
## 
## [[1358]]
## character(0)
## 
## [[1359]]
## [1] " the" " the"
## 
## [[1360]]
## character(0)
## 
## [[1361]]
## character(0)
## 
## [[1362]]
## character(0)
## 
## [[1363]]
## [1] " the" " the" " the"
## 
## [[1364]]
## character(0)
## 
## [[1365]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1366]]
## [1] " the"
## 
## [[1367]]
## [1] " the"
## 
## [[1368]]
## character(0)
## 
## [[1369]]
## [1] " the" " the"
## 
## [[1370]]
## character(0)
## 
## [[1371]]
## [1] " the"
## 
## [[1372]]
## character(0)
## 
## [[1373]]
## [1] " the" " the" " the"
## 
## [[1374]]
## character(0)
## 
## [[1375]]
## [1] " the"
## 
## [[1376]]
## character(0)
## 
## [[1377]]
## character(0)
## 
## [[1378]]
## [1] " the"
## 
## [[1379]]
## [1] " the" " the"
## 
## [[1380]]
## character(0)
## 
## [[1381]]
## [1] " the"
## 
## [[1382]]
## [1] " the"
## 
## [[1383]]
## character(0)
## 
## [[1384]]
## [1] " the" " the" " the" " the"
## 
## [[1385]]
## character(0)
## 
## [[1386]]
## [1] " the" " the"
## 
## [[1387]]
## [1] " the"
## 
## [[1388]]
## character(0)
## 
## [[1389]]
## character(0)
## 
## [[1390]]
## [1] " the"
## 
## [[1391]]
## [1] " the" " the" " the" " the"
## 
## [[1392]]
## character(0)
## 
## [[1393]]
## [1] " the" " the"
## 
## [[1394]]
## [1] " the" " the"
## 
## [[1395]]
## character(0)
## 
## [[1396]]
## character(0)
## 
## [[1397]]
## character(0)
## 
## [[1398]]
## character(0)
## 
## [[1399]]
## character(0)
## 
## [[1400]]
## character(0)
## 
## [[1401]]
## character(0)
## 
## [[1402]]
## [1] " the" " the"
## 
## [[1403]]
## character(0)
## 
## [[1404]]
## character(0)
## 
## [[1405]]
## [1] " the" " the" " the" " the"
## 
## [[1406]]
## [1] " twe" " twe"
## 
## [[1407]]
## [1] " the" " the"
## 
## [[1408]]
## [1] " the"
## 
## [[1409]]
## [1] " the"
## 
## [[1410]]
## [1] " the"
## 
## [[1411]]
## character(0)
## 
## [[1412]]
## character(0)
## 
## [[1413]]
## character(0)
## 
## [[1414]]
## [1] " the"
## 
## [[1415]]
## [1] " the"
## 
## [[1416]]
## character(0)
## 
## [[1417]]
## character(0)
## 
## [[1418]]
## [1] " the" " the" " the"
## 
## [[1419]]
## [1] " the"
## 
## [[1420]]
## [1] " the" " the" " the"
## 
## [[1421]]
## character(0)
## 
## [[1422]]
## character(0)
## 
## [[1423]]
## [1] " the"
## 
## [[1424]]
## [1] " the" " the" " the"
## 
## [[1425]]
## [1] " the"
## 
## [[1426]]
## character(0)
## 
## [[1427]]
## character(0)
## 
## [[1428]]
## character(0)
## 
## [[1429]]
## [1] " the" " the"
## 
## [[1430]]
## character(0)
## 
## [[1431]]
## [1] " the" " tee"
## 
## [[1432]]
## character(0)
## 
## [[1433]]
## [1] " the" " the" " the"
## 
## [[1434]]
## [1] " the" " the"
## 
## [[1435]]
## character(0)
## 
## [[1436]]
## character(0)
## 
## [[1437]]
## [1] " the"
## 
## [[1438]]
## [1] " the"
## 
## [[1439]]
## [1] " the" " the"
## 
## [[1440]]
## character(0)
## 
## [[1441]]
## [1] " the" " the"
## 
## [[1442]]
## character(0)
## 
## [[1443]]
## [1] " the" " the" " the" " the"
## 
## [[1444]]
## [1] " the"
## 
## [[1445]]
## [1] " twe"
## 
## [[1446]]
## [1] " the"
## 
## [[1447]]
## character(0)
## 
## [[1448]]
## character(0)
## 
## [[1449]]
## [1] " the" " the"
## 
## [[1450]]
## [1] " the" " the"
## 
## [[1451]]
## character(0)
## 
## [[1452]]
## character(0)
## 
## [[1453]]
## [1] " the"
## 
## [[1454]]
## [1] " the" " the"
## 
## [[1455]]
## character(0)
## 
## [[1456]]
## [1] " the"
## 
## [[1457]]
## character(0)
## 
## [[1458]]
## character(0)
## 
## [[1459]]
## [1] " the" " the" " the"
## 
## [[1460]]
## character(0)
## 
## [[1461]]
## [1] " the"
## 
## [[1462]]
## [1] " the" " the" " the" " the"
## 
## [[1463]]
## [1] " the"
## 
## [[1464]]
## character(0)
## 
## [[1465]]
## [1] " the" " the" " the"
## 
## [[1466]]
## [1] " the" " the"
## 
## [[1467]]
## character(0)
## 
## [[1468]]
## [1] " the" " the"
## 
## [[1469]]
## [1] " the"
## 
## [[1470]]
## [1] " the" " the" " the" " the"
## 
## [[1471]]
## character(0)
## 
## [[1472]]
## [1] " the"
## 
## [[1473]]
## [1] " the"
## 
## [[1474]]
## character(0)
## 
## [[1475]]
## character(0)
## 
## [[1476]]
## [1] " the" " the" " the" " the"
## 
## [[1477]]
## character(0)
## 
## [[1478]]
## character(0)
## 
## [[1479]]
## [1] " the"
## 
## [[1480]]
## character(0)
## 
## [[1481]]
## [1] " the" " the"
## 
## [[1482]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1483]]
## character(0)
## 
## [[1484]]
## character(0)
## 
## [[1485]]
## character(0)
## 
## [[1486]]
## [1] " the" " the" " the" " the"
## 
## [[1487]]
## character(0)
## 
## [[1488]]
## [1] " the"
## 
## [[1489]]
## [1] " the"
## 
## [[1490]]
## [1] " the"
## 
## [[1491]]
## character(0)
## 
## [[1492]]
## [1] " the"
## 
## [[1493]]
## [1] " the"
## 
## [[1494]]
## [1] " the" " the"
## 
## [[1495]]
## character(0)
## 
## [[1496]]
## character(0)
## 
## [[1497]]
## character(0)
## 
## [[1498]]
## character(0)
## 
## [[1499]]
## [1] " the" " the"
## 
## [[1500]]
## [1] " the" " the"
## 
## [[1501]]
## [1] " the"
## 
## [[1502]]
## character(0)
## 
## [[1503]]
## [1] " tre"
## 
## [[1504]]
## [1] " the" " the" " the"
## 
## [[1505]]
## character(0)
## 
## [[1506]]
## [1] " the"
## 
## [[1507]]
## [1] " the" " the"
## 
## [[1508]]
## [1] " the" " the"
## 
## [[1509]]
## [1] " the" " the" " the"
## 
## [[1510]]
## [1] " the"
## 
## [[1511]]
## character(0)
## 
## [[1512]]
## character(0)
## 
## [[1513]]
## [1] " the"
## 
## [[1514]]
## [1] " the"
## 
## [[1515]]
## [1] " the" " the"
## 
## [[1516]]
## [1] " the" " the"
## 
## [[1517]]
## [1] " the" " the" " the"
## 
## [[1518]]
## [1] " the" " the"
## 
## [[1519]]
## character(0)
## 
## [[1520]]
## [1] " the"
## 
## [[1521]]
## [1] " the"
## 
## [[1522]]
## [1] " the" " the"
## 
## [[1523]]
## character(0)
## 
## [[1524]]
## [1] " the"
## 
## [[1525]]
## [1] " the" " the" " the" " the"
## 
## [[1526]]
## character(0)
## 
## [[1527]]
## [1] " the" " the"
## 
## [[1528]]
## [1] " the"
## 
## [[1529]]
## character(0)
## 
## [[1530]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1531]]
## character(0)
## 
## [[1532]]
## character(0)
## 
## [[1533]]
## character(0)
## 
## [[1534]]
## character(0)
## 
## [[1535]]
## [1] " the" " the" " the"
## 
## [[1536]]
## [1] " the" " the"
## 
## [[1537]]
## [1] " the"
## 
## [[1538]]
## [1] " the" " the" " the"
## 
## [[1539]]
## [1] " the" " the"
## 
## [[1540]]
## character(0)
## 
## [[1541]]
## character(0)
## 
## [[1542]]
## [1] " the"
## 
## [[1543]]
## character(0)
## 
## [[1544]]
## character(0)
## 
## [[1545]]
## character(0)
## 
## [[1546]]
## character(0)
## 
## [[1547]]
## [1] " the"
## 
## [[1548]]
## [1] " the" " the" " the"
## 
## [[1549]]
## [1] " the"
## 
## [[1550]]
## [1] " the"
## 
## [[1551]]
## [1] " the" " the"
## 
## [[1552]]
## character(0)
## 
## [[1553]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1554]]
## [1] " the"
## 
## [[1555]]
## character(0)
## 
## [[1556]]
## [1] " the"
## 
## [[1557]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1558]]
## character(0)
## 
## [[1559]]
## character(0)
## 
## [[1560]]
## [1] " the"
## 
## [[1561]]
## [1] " the"
## 
## [[1562]]
## character(0)
## 
## [[1563]]
## [1] " the"
## 
## [[1564]]
## [1] " the" " the"
## 
## [[1565]]
## [1] " the"
## 
## [[1566]]
## character(0)
## 
## [[1567]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1568]]
## [1] " the"
## 
## [[1569]]
## [1] " the" " the"
## 
## [[1570]]
## [1] " the" " the"
## 
## [[1571]]
## [1] " the" " the"
## 
## [[1572]]
## [1] " the" " the"
## 
## [[1573]]
## [1] " the" " the"
## 
## [[1574]]
## character(0)
## 
## [[1575]]
## [1] " the" " the" " the" " the"
## 
## [[1576]]
## [1] " the"
## 
## [[1577]]
## [1] " the"
## 
## [[1578]]
## character(0)
## 
## [[1579]]
## [1] " the"
## 
## [[1580]]
## [1] " the" " the"
## 
## [[1581]]
## [1] " the" " the" " tre"
## 
## [[1582]]
## [1] " the"
## 
## [[1583]]
## [1] " the" " the"
## 
## [[1584]]
## [1] " the" " the" " the"
## 
## [[1585]]
## [1] " the"
## 
## [[1586]]
## [1] " the" " the"
## 
## [[1587]]
## [1] " the" " the" " the" " the"
## 
## [[1588]]
## character(0)
## 
## [[1589]]
## character(0)
## 
## [[1590]]
## character(0)
## 
## [[1591]]
## character(0)
## 
## [[1592]]
## character(0)
## 
## [[1593]]
## character(0)
## 
## [[1594]]
## [1] " the" " the" " the" " the"
## 
## [[1595]]
## character(0)
## 
## [[1596]]
## character(0)
## 
## [[1597]]
## character(0)
## 
## [[1598]]
## character(0)
## 
## [[1599]]
## character(0)
## 
## [[1600]]
## [1] " the" " the" " the"
## 
## [[1601]]
## [1] " the"
## 
## [[1602]]
## [1] " the" " the"
## 
## [[1603]]
## character(0)
## 
## [[1604]]
## [1] " the" " the"
## 
## [[1605]]
## [1] " the"
## 
## [[1606]]
## character(0)
## 
## [[1607]]
## character(0)
## 
## [[1608]]
## character(0)
## 
## [[1609]]
## [1] " the" " the"
## 
## [[1610]]
## character(0)
## 
## [[1611]]
## character(0)
## 
## [[1612]]
## [1] " the" " the" " the"
## 
## [[1613]]
## [1] " the" " the" " the"
## 
## [[1614]]
## [1] " the" " the" " the"
## 
## [[1615]]
## [1] " the"
## 
## [[1616]]
## [1] " the" " the"
## 
## [[1617]]
## character(0)
## 
## [[1618]]
## character(0)
## 
## [[1619]]
## character(0)
## 
## [[1620]]
## [1] " the" " the"
## 
## [[1621]]
## character(0)
## 
## [[1622]]
## [1] " the" " the"
## 
## [[1623]]
## character(0)
## 
## [[1624]]
## character(0)
## 
## [[1625]]
## [1] " the" " the"
## 
## [[1626]]
## character(0)
## 
## [[1627]]
## character(0)
## 
## [[1628]]
## character(0)
## 
## [[1629]]
## [1] " the"
## 
## [[1630]]
## character(0)
## 
## [[1631]]
## [1] " twe" " the"
## 
## [[1632]]
## character(0)
## 
## [[1633]]
## [1] " the" " the" " the"
## 
## [[1634]]
## character(0)
## 
## [[1635]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1636]]
## character(0)
## 
## [[1637]]
## character(0)
## 
## [[1638]]
## character(0)
## 
## [[1639]]
## [1] " the"
## 
## [[1640]]
## [1] " the"
## 
## [[1641]]
## [1] " the"
## 
## [[1642]]
## character(0)
## 
## [[1643]]
## character(0)
## 
## [[1644]]
## character(0)
## 
## [[1645]]
## character(0)
## 
## [[1646]]
## [1] " the" " the" " the"
## 
## [[1647]]
## [1] " the" " the" " the"
## 
## [[1648]]
## [1] " the"
## 
## [[1649]]
## [1] " tre"
## 
## [[1650]]
## character(0)
## 
## [[1651]]
## [1] " the" " the"
## 
## [[1652]]
## [1] " the"
## 
## [[1653]]
## character(0)
## 
## [[1654]]
## [1] " the" " the"
## 
## [[1655]]
## [1] " the" " the"
## 
## [[1656]]
## character(0)
## 
## [[1657]]
## [1] " the" " the"
## 
## [[1658]]
## character(0)
## 
## [[1659]]
## [1] " the" " the" " the"
## 
## [[1660]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1661]]
## [1] " the"
## 
## [[1662]]
## character(0)
## 
## [[1663]]
## character(0)
## 
## [[1664]]
## character(0)
## 
## [[1665]]
## [1] " the" " the"
## 
## [[1666]]
## [1] " the" " the"
## 
## [[1667]]
## [1] " the" " the"
## 
## [[1668]]
## [1] " the" " the" " the"
## 
## [[1669]]
## [1] " the" " the" " the"
## 
## [[1670]]
## [1] " the"
## 
## [[1671]]
## [1] " the" " the" " the"
## 
## [[1672]]
## [1] " the" " the" " the"
## 
## [[1673]]
## character(0)
## 
## [[1674]]
## [1] " twe" " the" " the" " the" " the"
## 
## [[1675]]
## character(0)
## 
## [[1676]]
## [1] " the" " the" " the" " the"
## 
## [[1677]]
## character(0)
## 
## [[1678]]
## [1] " the"
## 
## [[1679]]
## [1] " the" " the" " the" " the"
## 
## [[1680]]
## [1] " the"
## 
## [[1681]]
## [1] " the"
## 
## [[1682]]
## character(0)
## 
## [[1683]]
## character(0)
## 
## [[1684]]
## character(0)
## 
## [[1685]]
## [1] " the" " the"
## 
## [[1686]]
## [1] " the"
## 
## [[1687]]
## character(0)
## 
## [[1688]]
## [1] " the" " the"
## 
## [[1689]]
## [1] " the" " the"
## 
## [[1690]]
## [1] " the" " the" " the"
## 
## [[1691]]
## [1] " the" " the"
## 
## [[1692]]
## [1] " the" " the"
## 
## [[1693]]
## [1] " the" " the"
## 
## [[1694]]
## [1] " the" " the" " the" " the"
## 
## [[1695]]
## character(0)
## 
## [[1696]]
## character(0)
## 
## [[1697]]
## [1] " the" " the"
## 
## [[1698]]
## character(0)
## 
## [[1699]]
## character(0)
## 
## [[1700]]
## [1] " the"
## 
## [[1701]]
## character(0)
## 
## [[1702]]
## [1] " the" " the" " the" " the"
## 
## [[1703]]
## [1] " the" " the"
## 
## [[1704]]
## [1] " the"
## 
## [[1705]]
## character(0)
## 
## [[1706]]
## [1] " the"
## 
## [[1707]]
## [1] " the" " tre"
## 
## [[1708]]
## [1] " the" " the" " the"
## 
## [[1709]]
## [1] " the" " the" " the"
## 
## [[1710]]
## [1] " the" " the"
## 
## [[1711]]
## character(0)
## 
## [[1712]]
## character(0)
## 
## [[1713]]
## character(0)
## 
## [[1714]]
## character(0)
## 
## [[1715]]
## [1] " the"
## 
## [[1716]]
## character(0)
## 
## [[1717]]
## [1] " the"
## 
## [[1718]]
## character(0)
## 
## [[1719]]
## [1] " the"
## 
## [[1720]]
## [1] " the" " the"
## 
## [[1721]]
## [1] " the"
## 
## [[1722]]
## character(0)
## 
## [[1723]]
## [1] " the"
## 
## [[1724]]
## character(0)
## 
## [[1725]]
## character(0)
## 
## [[1726]]
## [1] " the"
## 
## [[1727]]
## [1] " the" " the"
## 
## [[1728]]
## [1] " the"
## 
## [[1729]]
## [1] " the" " the"
## 
## [[1730]]
## character(0)
## 
## [[1731]]
## character(0)
## 
## [[1732]]
## [1] " the" " the"
## 
## [[1733]]
## character(0)
## 
## [[1734]]
## [1] " the"
## 
## [[1735]]
## [1] " the"
## 
## [[1736]]
## [1] " the" " the"
## 
## [[1737]]
## [1] " the" " the" " the"
## 
## [[1738]]
## [1] " the"
## 
## [[1739]]
## character(0)
## 
## [[1740]]
## [1] " the" " the"
## 
## [[1741]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1742]]
## [1] " the" " the" " the"
## 
## [[1743]]
## [1] " the"
## 
## [[1744]]
## [1] " the"
## 
## [[1745]]
## [1] " the" " the"
## 
## [[1746]]
## character(0)
## 
## [[1747]]
## character(0)
## 
## [[1748]]
## character(0)
## 
## [[1749]]
## [1] " the"
## 
## [[1750]]
## character(0)
## 
## [[1751]]
## [1] " the"
## 
## [[1752]]
## character(0)
## 
## [[1753]]
## [1] " the" " the" " the" " the"
## 
## [[1754]]
## character(0)
## 
## [[1755]]
## [1] " the"
## 
## [[1756]]
## [1] " the"
## 
## [[1757]]
## character(0)
## 
## [[1758]]
## character(0)
## 
## [[1759]]
## character(0)
## 
## [[1760]]
## [1] " the"
## 
## [[1761]]
## [1] " the"
## 
## [[1762]]
## character(0)
## 
## [[1763]]
## [1] " the"
## 
## [[1764]]
## character(0)
## 
## [[1765]]
## character(0)
## 
## [[1766]]
## [1] " the"
## 
## [[1767]]
## character(0)
## 
## [[1768]]
## character(0)
## 
## [[1769]]
## [1] " the" " the"
## 
## [[1770]]
## [1] " the"
## 
## [[1771]]
## character(0)
## 
## [[1772]]
## character(0)
## 
## [[1773]]
## character(0)
## 
## [[1774]]
## character(0)
## 
## [[1775]]
## character(0)
## 
## [[1776]]
## [1] " the"
## 
## [[1777]]
## [1] " the" " the"
## 
## [[1778]]
## [1] " the" " the"
## 
## [[1779]]
## character(0)
## 
## [[1780]]
## character(0)
## 
## [[1781]]
## [1] " the"
## 
## [[1782]]
## [1] " the" " the" " the"
## 
## [[1783]]
## [1] " the"
## 
## [[1784]]
## [1] " the" " the"
## 
## [[1785]]
## [1] " the" " the"
## 
## [[1786]]
## character(0)
## 
## [[1787]]
## [1] " the"
## 
## [[1788]]
## character(0)
## 
## [[1789]]
## [1] " the"
## 
## [[1790]]
## [1] " the"
## 
## [[1791]]
## character(0)
## 
## [[1792]]
## character(0)
## 
## [[1793]]
## [1] " the" " the"
## 
## [[1794]]
## [1] " the"
## 
## [[1795]]
## character(0)
## 
## [[1796]]
## [1] " the" " the" " the"
## 
## [[1797]]
## [1] " the" " the" " the" " the"
## 
## [[1798]]
## [1] " the"
## 
## [[1799]]
## character(0)
## 
## [[1800]]
## character(0)
## 
## [[1801]]
## character(0)
## 
## [[1802]]
## character(0)
## 
## [[1803]]
## character(0)
## 
## [[1804]]
## [1] " the"
## 
## [[1805]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1806]]
## character(0)
## 
## [[1807]]
## [1] " the" " the" " the"
## 
## [[1808]]
## [1] " the"
## 
## [[1809]]
## [1] " the" " the"
## 
## [[1810]]
## character(0)
## 
## [[1811]]
## [1] " tre"
## 
## [[1812]]
## [1] " the"
## 
## [[1813]]
## character(0)
## 
## [[1814]]
## [1] " the" " the" " the"
## 
## [[1815]]
## [1] " the" " the"
## 
## [[1816]]
## [1] " the"
## 
## [[1817]]
## character(0)
## 
## [[1818]]
## character(0)
## 
## [[1819]]
## [1] " the" " the"
## 
## [[1820]]
## [1] " the" " the"
## 
## [[1821]]
## [1] " the"
## 
## [[1822]]
## [1] " the" " the"
## 
## [[1823]]
## character(0)
## 
## [[1824]]
## character(0)
## 
## [[1825]]
## [1] " the"
## 
## [[1826]]
## [1] " the" " the"
## 
## [[1827]]
## [1] " the"
## 
## [[1828]]
## [1] " the" " the"
## 
## [[1829]]
## [1] " the"
## 
## [[1830]]
## character(0)
## 
## [[1831]]
## character(0)
## 
## [[1832]]
## [1] " the" " the" " the" " the" " the"
## 
## [[1833]]
## [1] " the" " the" " the"
## 
## [[1834]]
## character(0)
## 
## [[1835]]
## [1] " the" " the" " the" " the"
## 
## [[1836]]
## character(0)
## 
## [[1837]]
## [1] " the"
## 
## [[1838]]
## character(0)
## 
## [[1839]]
## character(0)
## 
## [[1840]]
## character(0)
## 
## [[1841]]
## character(0)
## 
## [[1842]]
## [1] " the"
## 
## [[1843]]
## character(0)
## 
## [[1844]]
## character(0)
## 
## [[1845]]
## character(0)
## 
## [[1846]]
## [1] " the" " the"
## 
## [[1847]]
## [1] " the" " the" " the"
## 
## [[1848]]
## character(0)
## 
## [[1849]]
## character(0)
## 
## [[1850]]
## character(0)
## 
## [[1851]]
## character(0)
## 
## [[1852]]
## [1] " the"
## 
## [[1853]]
## [1] " the" " the"
## 
## [[1854]]
## character(0)
## 
## [[1855]]
## character(0)
## 
## [[1856]]
## [1] " the"
## 
## [[1857]]
## character(0)
## 
## [[1858]]
## character(0)
## 
## [[1859]]
## [1] " the" " the"
## 
## [[1860]]
## [1] " the"
## 
## [[1861]]
## character(0)
## 
## [[1862]]
## [1] " the"
## 
## [[1863]]
## character(0)
## 
## [[1864]]
## character(0)
## 
## [[1865]]
## [1] " the"
## 
## [[1866]]
## character(0)
## 
## [[1867]]
## [1] " the"
## 
## [[1868]]
## character(0)
## 
## [[1869]]
## character(0)
## 
## [[1870]]
## character(0)
## 
## [[1871]]
## character(0)
## 
## [[1872]]
## [1] " the"
## 
## [[1873]]
## character(0)
## 
## [[1874]]
## character(0)
## 
## [[1875]]
## [1] " the" " the"
## 
## [[1876]]
## [1] " the"
## 
## [[1877]]
## character(0)
## 
## [[1878]]
## character(0)
## 
## [[1879]]
## [1] " the"
## 
## [[1880]]
## [1] " the"
## 
## [[1881]]
## [1] " the" " the"
## 
## [[1882]]
## character(0)
## 
## [[1883]]
## [1] " the"
## 
## [[1884]]
## [1] " the"
## 
## [[1885]]
## character(0)
## 
## [[1886]]
## [1] " the" " the" " the"
## 
## [[1887]]
## [1] " the" " the"
## 
## [[1888]]
## [1] " the"
## 
## [[1889]]
## character(0)
## 
## [[1890]]
## [1] " the" " the"
## 
## [[1891]]
## character(0)
## 
## [[1892]]
## character(0)
## 
## [[1893]]
## [1] " the"
## 
## [[1894]]
## character(0)
## 
## [[1895]]
## character(0)
## 
## [[1896]]
## [1] " the"
## 
## [[1897]]
## character(0)
## 
## [[1898]]
## character(0)
## 
## [[1899]]
## character(0)
## 
## [[1900]]
## [1] " the" " the" " the"
## 
## [[1901]]
## [1] " the"
## 
## [[1902]]
## [1] " the" " the" " the"
## 
## [[1903]]
## [1] " the" " the"
## 
## [[1904]]
## character(0)
## 
## [[1905]]
## character(0)
## 
## [[1906]]
## character(0)
## 
## [[1907]]
## [1] " the"
## 
## [[1908]]
## [1] " the" " the"
## 
## [[1909]]
## character(0)
## 
## [[1910]]
## [1] " the" " the"
## 
## [[1911]]
## character(0)
## 
## [[1912]]
## [1] " the" " the" " the"
## 
## [[1913]]
## character(0)
## 
## [[1914]]
## [1] " the"
## 
## [[1915]]
## [1] " the"
## 
## [[1916]]
## [1] " the" " the"
## 
## [[1917]]
## [1] " the" " the"
## 
## [[1918]]
## character(0)
## 
## [[1919]]
## [1] " the" " the" " the" " the"
## 
## [[1920]]
## [1] " the" " the" " the"
## 
## [[1921]]
## [1] " the"
## 
## [[1922]]
## [1] " the"
## 
## [[1923]]
## character(0)
## 
## [[1924]]
## character(0)
## 
## [[1925]]
## [1] " the"
## 
## [[1926]]
## character(0)
## 
## [[1927]]
## character(0)
## 
## [[1928]]
## [1] " the"
## 
## [[1929]]
## character(0)
## 
## [[1930]]
## [1] " the" " the"
## 
## [[1931]]
## character(0)
## 
## [[1932]]
## [1] " the"
## 
## [[1933]]
## character(0)
## 
## [[1934]]
## [1] " the" " the" " the"
## 
## [[1935]]
## character(0)
## 
## [[1936]]
## [1] " tre"
## 
## [[1937]]
## [1] " the" " the" " the"
## 
## [[1938]]
## [1] " the" " the"
## 
## [[1939]]
## character(0)
## 
## [[1940]]
## [1] " the"
## 
## [[1941]]
## character(0)
## 
## [[1942]]
## [1] " the"
## 
## [[1943]]
## character(0)
## 
## [[1944]]
## [1] " the"
## 
## [[1945]]
## [1] " the"
## 
## [[1946]]
## [1] " the"
## 
## [[1947]]
## character(0)
## 
## [[1948]]
## [1] " the"
## 
## [[1949]]
## [1] " the"
## 
## [[1950]]
## character(0)
## 
## [[1951]]
## [1] " the" " the" " the"
## 
## [[1952]]
## [1] " the" " the" " the" " the"
## 
## [[1953]]
## character(0)
## 
## [[1954]]
## character(0)
## 
## [[1955]]
## [1] " the"
## 
## [[1956]]
## [1] " the" " the" " the"
## 
## [[1957]]
## [1] " twe" " the" " the" " the" " the" " the"
## 
## [[1958]]
## [1] " the" " the"
## 
## [[1959]]
## character(0)
## 
## [[1960]]
## [1] " the"
## 
## [[1961]]
## [1] " the" " the"
## 
## [[1962]]
## [1] " the" " the" " the" " the"
## 
## [[1963]]
## [1] " the"
## 
## [[1964]]
## [1] " the"
## 
## [[1965]]
## character(0)
## 
## [[1966]]
## character(0)
## 
## [[1967]]
## character(0)
## 
## [[1968]]
## [1] " the"
## 
## [[1969]]
## character(0)
## 
## [[1970]]
## [1] " the"
## 
## [[1971]]
## character(0)
## 
## [[1972]]
## [1] " the" " the"
## 
## [[1973]]
## [1] " the" " the"
## 
## [[1974]]
## character(0)
## 
## [[1975]]
## character(0)
## 
## [[1976]]
## character(0)
## 
## [[1977]]
## [1] " the"
## 
## [[1978]]
## [1] " the" " the" " the"
## 
## [[1979]]
## character(0)
## 
## [[1980]]
## character(0)
## 
## [[1981]]
## [1] " the" " the"
## 
## [[1982]]
## [1] " the"
## 
## [[1983]]
## character(0)
## 
## [[1984]]
## character(0)
## 
## [[1985]]
## character(0)
## 
## [[1986]]
## [1] " the" " the" " the" " the"
## 
## [[1987]]
## character(0)
## 
## [[1988]]
## [1] " the" " the" " the"
## 
## [[1989]]
## character(0)
## 
## [[1990]]
## character(0)
## 
## [[1991]]
## [1] " the" " the"
## 
## [[1992]]
## character(0)
## 
## [[1993]]
## character(0)
## 
## [[1994]]
## [1] " the" " the"
## 
## [[1995]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[1996]]
## character(0)
## 
## [[1997]]
## character(0)
## 
## [[1998]]
## character(0)
## 
## [[1999]]
## [1] " the" " the"
## 
## [[2000]]
## character(0)
## 
## [[2001]]
## character(0)
## 
## [[2002]]
## character(0)
## 
## [[2003]]
## character(0)
## 
## [[2004]]
## [1] " the" " the"
## 
## [[2005]]
## character(0)
## 
## [[2006]]
## character(0)
## 
## [[2007]]
## [1] " the" " the" " the" " the"
## 
## [[2008]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2009]]
## [1] " the" " the" " the"
## 
## [[2010]]
## character(0)
## 
## [[2011]]
## [1] " the"
## 
## [[2012]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[2013]]
## [1] " the"
## 
## [[2014]]
## [1] " the" " the"
## 
## [[2015]]
## character(0)
## 
## [[2016]]
## character(0)
## 
## [[2017]]
## character(0)
## 
## [[2018]]
## character(0)
## 
## [[2019]]
## character(0)
## 
## [[2020]]
## [1] " the" " the"
## 
## [[2021]]
## character(0)
## 
## [[2022]]
## [1] " the"
## 
## [[2023]]
## [1] " the" " the"
## 
## [[2024]]
## [1] " the"
## 
## [[2025]]
## [1] " the"
## 
## [[2026]]
## [1] " the" " the"
## 
## [[2027]]
## character(0)
## 
## [[2028]]
## [1] " the" " the"
## 
## [[2029]]
## [1] " the"
## 
## [[2030]]
## [1] " the" " the"
## 
## [[2031]]
## [1] " the" " the"
## 
## [[2032]]
## [1] " the" " the" " the"
## 
## [[2033]]
## [1] " the"
## 
## [[2034]]
## character(0)
## 
## [[2035]]
## [1] " the"
## 
## [[2036]]
## character(0)
## 
## [[2037]]
## [1] " the"
## 
## [[2038]]
## character(0)
## 
## [[2039]]
## [1] " the" " the"
## 
## [[2040]]
## character(0)
## 
## [[2041]]
## [1] " the" " the" " tre" " the"
## 
## [[2042]]
## [1] " the" " the"
## 
## [[2043]]
## [1] " the" " the" " the" " the"
## 
## [[2044]]
## character(0)
## 
## [[2045]]
## [1] " the" " the" " the"
## 
## [[2046]]
## character(0)
## 
## [[2047]]
## character(0)
## 
## [[2048]]
## character(0)
## 
## [[2049]]
## character(0)
## 
## [[2050]]
## character(0)
## 
## [[2051]]
## [1] " the" " the" " the"
## 
## [[2052]]
## character(0)
## 
## [[2053]]
## character(0)
## 
## [[2054]]
## [1] " the"
## 
## [[2055]]
## [1] " the"
## 
## [[2056]]
## character(0)
## 
## [[2057]]
## character(0)
## 
## [[2058]]
## character(0)
## 
## [[2059]]
## character(0)
## 
## [[2060]]
## [1] " tie"
## 
## [[2061]]
## [1] " the"
## 
## [[2062]]
## character(0)
## 
## [[2063]]
## character(0)
## 
## [[2064]]
## character(0)
## 
## [[2065]]
## [1] " the"
## 
## [[2066]]
## [1] " the" " the"
## 
## [[2067]]
## [1] " the"
## 
## [[2068]]
## character(0)
## 
## [[2069]]
## character(0)
## 
## [[2070]]
## [1] " the"
## 
## [[2071]]
## character(0)
## 
## [[2072]]
## [1] " the"
## 
## [[2073]]
## [1] " the" " the"
## 
## [[2074]]
## character(0)
## 
## [[2075]]
## [1] " the"
## 
## [[2076]]
## [1] " the" " the"
## 
## [[2077]]
## [1] " the"
## 
## [[2078]]
## character(0)
## 
## [[2079]]
## [1] " the"
## 
## [[2080]]
## character(0)
## 
## [[2081]]
## character(0)
## 
## [[2082]]
## character(0)
## 
## [[2083]]
## character(0)
## 
## [[2084]]
## character(0)
## 
## [[2085]]
## character(0)
## 
## [[2086]]
## [1] " the"
## 
## [[2087]]
## character(0)
## 
## [[2088]]
## character(0)
## 
## [[2089]]
## character(0)
## 
## [[2090]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2091]]
## [1] " the"
## 
## [[2092]]
## character(0)
## 
## [[2093]]
## character(0)
## 
## [[2094]]
## [1] " the" " the" " the"
## 
## [[2095]]
## character(0)
## 
## [[2096]]
## character(0)
## 
## [[2097]]
## character(0)
## 
## [[2098]]
## [1] " the"
## 
## [[2099]]
## character(0)
## 
## [[2100]]
## [1] " the"
## 
## [[2101]]
## character(0)
## 
## [[2102]]
## character(0)
## 
## [[2103]]
## character(0)
## 
## [[2104]]
## [1] " the"
## 
## [[2105]]
## [1] " the" " the"
## 
## [[2106]]
## character(0)
## 
## [[2107]]
## [1] " the" " the"
## 
## [[2108]]
## character(0)
## 
## [[2109]]
## [1] " the" " tre"
## 
## [[2110]]
## [1] " the"
## 
## [[2111]]
## [1] " the" " the" " the" " the"
## 
## [[2112]]
## [1] " the" " the" " the" " the"
## 
## [[2113]]
## character(0)
## 
## [[2114]]
## [1] " the"
## 
## [[2115]]
## [1] " the" " the" " the"
## 
## [[2116]]
## character(0)
## 
## [[2117]]
## character(0)
## 
## [[2118]]
## [1] " the" " the"
## 
## [[2119]]
## [1] " twe"
## 
## [[2120]]
## [1] " the" " the" " the" " the"
## 
## [[2121]]
## [1] " the" " the" " the"
## 
## [[2122]]
## character(0)
## 
## [[2123]]
## [1] " the" " the" " the"
## 
## [[2124]]
## [1] " the"
## 
## [[2125]]
## character(0)
## 
## [[2126]]
## character(0)
## 
## [[2127]]
## character(0)
## 
## [[2128]]
## [1] " the" " the"
## 
## [[2129]]
## [1] " the" " the"
## 
## [[2130]]
## [1] " the" " the" " the" " the" " the" " the" " the" " the"
## 
## [[2131]]
## character(0)
## 
## [[2132]]
## [1] " the" " the"
## 
## [[2133]]
## [1] " the"
## 
## [[2134]]
## [1] " the" " the" " the"
## 
## [[2135]]
## character(0)
## 
## [[2136]]
## [1] " the"
## 
## [[2137]]
## character(0)
## 
## [[2138]]
## character(0)
## 
## [[2139]]
## [1] " the"
## 
## [[2140]]
## [1] " the"
## 
## [[2141]]
## [1] " the"
## 
## [[2142]]
## [1] " the" " the" " the"
## 
## [[2143]]
## [1] " the"
## 
## [[2144]]
## [1] " the" " the" " the"
## 
## [[2145]]
## character(0)
## 
## [[2146]]
## [1] " the" " the"
## 
## [[2147]]
## [1] " the" " the" " the"
## 
## [[2148]]
## character(0)
## 
## [[2149]]
## character(0)
## 
## [[2150]]
## [1] " the"
## 
## [[2151]]
## [1] " the"
## 
## [[2152]]
## character(0)
## 
## [[2153]]
## character(0)
## 
## [[2154]]
## character(0)
## 
## [[2155]]
## [1] " the" " the"
## 
## [[2156]]
## [1] " the" " the" " the" " the"
## 
## [[2157]]
## character(0)
## 
## [[2158]]
## [1] " the" " the"
## 
## [[2159]]
## character(0)
## 
## [[2160]]
## [1] " the" " the"
## 
## [[2161]]
## [1] " the" " the"
## 
## [[2162]]
## [1] " the"
## 
## [[2163]]
## character(0)
## 
## [[2164]]
## [1] " the"
## 
## [[2165]]
## [1] " the" " the"
## 
## [[2166]]
## [1] " the"
## 
## [[2167]]
## character(0)
## 
## [[2168]]
## [1] " the" " the"
## 
## [[2169]]
## character(0)
## 
## [[2170]]
## [1] " the" " the"
## 
## [[2171]]
## [1] " the" " the"
## 
## [[2172]]
## [1] " the"
## 
## [[2173]]
## character(0)
## 
## [[2174]]
## [1] " the"
## 
## [[2175]]
## character(0)
## 
## [[2176]]
## [1] " the" " the" " the" " the"
## 
## [[2177]]
## character(0)
## 
## [[2178]]
## [1] " the"
## 
## [[2179]]
## [1] " the" " the" " the" " the"
## 
## [[2180]]
## character(0)
## 
## [[2181]]
## [1] " the" " the" " the" " the"
## 
## [[2182]]
## character(0)
## 
## [[2183]]
## [1] " the"
## 
## [[2184]]
## [1] " the" " the"
## 
## [[2185]]
## character(0)
## 
## [[2186]]
## [1] " the" " the"
## 
## [[2187]]
## character(0)
## 
## [[2188]]
## character(0)
## 
## [[2189]]
## character(0)
## 
## [[2190]]
## [1] " the"
## 
## [[2191]]
## [1] " the" " the"
## 
## [[2192]]
## character(0)
## 
## [[2193]]
## character(0)
## 
## [[2194]]
## character(0)
## 
## [[2195]]
## character(0)
## 
## [[2196]]
## [1] " the" " the" " the" " the"
## 
## [[2197]]
## character(0)
## 
## [[2198]]
## [1] " the"
## 
## [[2199]]
## character(0)
## 
## [[2200]]
## [1] " the"
## 
## [[2201]]
## [1] " the" " the"
## 
## [[2202]]
## character(0)
## 
## [[2203]]
## [1] " the"
## 
## [[2204]]
## [1] " the" " the"
## 
## [[2205]]
## [1] " the" " the"
## 
## [[2206]]
## [1] " the" " the" " the"
## 
## [[2207]]
## [1] " the"
## 
## [[2208]]
## [1] " the" " the" " the"
## 
## [[2209]]
## character(0)
## 
## [[2210]]
## [1] " the" " the"
## 
## [[2211]]
## [1] " the" " the"
## 
## [[2212]]
## [1] " the" " the" " the"
## 
## [[2213]]
## [1] " the" " the"
## 
## [[2214]]
## character(0)
## 
## [[2215]]
## character(0)
## 
## [[2216]]
## [1] " the" " the"
## 
## [[2217]]
## character(0)
## 
## [[2218]]
## [1] " the" " the"
## 
## [[2219]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2220]]
## [1] " the" " the"
## 
## [[2221]]
## character(0)
## 
## [[2222]]
## character(0)
## 
## [[2223]]
## [1] " the" " the"
## 
## [[2224]]
## character(0)
## 
## [[2225]]
## [1] " the"
## 
## [[2226]]
## [1] " the" " the"
## 
## [[2227]]
## [1] " the"
## 
## [[2228]]
## character(0)
## 
## [[2229]]
## [1] " the" " the"
## 
## [[2230]]
## character(0)
## 
## [[2231]]
## [1] " the" " the"
## 
## [[2232]]
## character(0)
## 
## [[2233]]
## [1] " the"
## 
## [[2234]]
## [1] " the"
## 
## [[2235]]
## [1] " the" " the"
## 
## [[2236]]
## character(0)
## 
## [[2237]]
## character(0)
## 
## [[2238]]
## [1] " the"
## 
## [[2239]]
## character(0)
## 
## [[2240]]
## character(0)
## 
## [[2241]]
## [1] " the" " the"
## 
## [[2242]]
## character(0)
## 
## [[2243]]
## character(0)
## 
## [[2244]]
## character(0)
## 
## [[2245]]
## character(0)
## 
## [[2246]]
## character(0)
## 
## [[2247]]
## [1] " the"
## 
## [[2248]]
## [1] " the" " the"
## 
## [[2249]]
## character(0)
## 
## [[2250]]
## character(0)
## 
## [[2251]]
## character(0)
## 
## [[2252]]
## character(0)
## 
## [[2253]]
## [1] " the" " the"
## 
## [[2254]]
## character(0)
## 
## [[2255]]
## character(0)
## 
## [[2256]]
## character(0)
## 
## [[2257]]
## [1] " the" " the"
## 
## [[2258]]
## [1] " the" " the"
## 
## [[2259]]
## character(0)
## 
## [[2260]]
## character(0)
## 
## [[2261]]
## character(0)
## 
## [[2262]]
## character(0)
## 
## [[2263]]
## [1] " the"
## 
## [[2264]]
## [1] " the"
## 
## [[2265]]
## character(0)
## 
## [[2266]]
## [1] " the" " the" " the" " the"
## 
## [[2267]]
## [1] " the" " the"
## 
## [[2268]]
## [1] " the"
## 
## [[2269]]
## character(0)
## 
## [[2270]]
## character(0)
## 
## [[2271]]
## character(0)
## 
## [[2272]]
## character(0)
## 
## [[2273]]
## [1] " the"
## 
## [[2274]]
## character(0)
## 
## [[2275]]
## [1] " the"
## 
## [[2276]]
## character(0)
## 
## [[2277]]
## [1] " the" " the"
## 
## [[2278]]
## [1] " the"
## 
## [[2279]]
## character(0)
## 
## [[2280]]
## [1] " the"
## 
## [[2281]]
## character(0)
## 
## [[2282]]
## character(0)
## 
## [[2283]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[2284]]
## character(0)
## 
## [[2285]]
## [1] " the"
## 
## [[2286]]
## character(0)
## 
## [[2287]]
## character(0)
## 
## [[2288]]
## character(0)
## 
## [[2289]]
## [1] " the" " the"
## 
## [[2290]]
## [1] " the" " the"
## 
## [[2291]]
## [1] " the"
## 
## [[2292]]
## [1] " the" " the"
## 
## [[2293]]
## character(0)
## 
## [[2294]]
## [1] " the"
## 
## [[2295]]
## [1] " the"
## 
## [[2296]]
## [1] " the" " the" " the"
## 
## [[2297]]
## [1] " the"
## 
## [[2298]]
## character(0)
## 
## [[2299]]
## [1] " the" " the" " the"
## 
## [[2300]]
## [1] " the"
## 
## [[2301]]
## [1] " the"
## 
## [[2302]]
## [1] " the" " the" " the"
## 
## [[2303]]
## [1] " the" " the" " the"
## 
## [[2304]]
## [1] " the" " the" " the"
## 
## [[2305]]
## character(0)
## 
## [[2306]]
## character(0)
## 
## [[2307]]
## character(0)
## 
## [[2308]]
## character(0)
## 
## [[2309]]
## character(0)
## 
## [[2310]]
## character(0)
## 
## [[2311]]
## [1] " the" " the" " the"
## 
## [[2312]]
## [1] " the"
## 
## [[2313]]
## [1] " the"
## 
## [[2314]]
## character(0)
## 
## [[2315]]
## character(0)
## 
## [[2316]]
## [1] " the"
## 
## [[2317]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2318]]
## [1] " twe"
## 
## [[2319]]
## character(0)
## 
## [[2320]]
## [1] " the"
## 
## [[2321]]
## [1] " the"
## 
## [[2322]]
## character(0)
## 
## [[2323]]
## [1] " the"
## 
## [[2324]]
## [1] " the" " the" " the"
## 
## [[2325]]
## [1] " the"
## 
## [[2326]]
## [1] " the" " the"
## 
## [[2327]]
## character(0)
## 
## [[2328]]
## character(0)
## 
## [[2329]]
## character(0)
## 
## [[2330]]
## character(0)
## 
## [[2331]]
## [1] " the" " the" " the" " tre"
## 
## [[2332]]
## character(0)
## 
## [[2333]]
## character(0)
## 
## [[2334]]
## character(0)
## 
## [[2335]]
## character(0)
## 
## [[2336]]
## [1] " the" " the"
## 
## [[2337]]
## character(0)
## 
## [[2338]]
## character(0)
## 
## [[2339]]
## [1] " the" " the" " the" " the"
## 
## [[2340]]
## character(0)
## 
## [[2341]]
## character(0)
## 
## [[2342]]
## character(0)
## 
## [[2343]]
## character(0)
## 
## [[2344]]
## [1] " the" " the" " the"
## 
## [[2345]]
## [1] " the"
## 
## [[2346]]
## [1] " the" " the" " the" " tee"
## 
## [[2347]]
## [1] " the"
## 
## [[2348]]
## [1] " the"
## 
## [[2349]]
## character(0)
## 
## [[2350]]
## character(0)
## 
## [[2351]]
## [1] " the"
## 
## [[2352]]
## character(0)
## 
## [[2353]]
## [1] " the" " the"
## 
## [[2354]]
## character(0)
## 
## [[2355]]
## [1] " the" " the" " the"
## 
## [[2356]]
## [1] " the"
## 
## [[2357]]
## [1] " the" " the" " the"
## 
## [[2358]]
## [1] " the" " the"
## 
## [[2359]]
## [1] " the"
## 
## [[2360]]
## [1] " the" " the"
## 
## [[2361]]
## [1] " the"
## 
## [[2362]]
## character(0)
## 
## [[2363]]
## [1] " the" " the" " the"
## 
## [[2364]]
## character(0)
## 
## [[2365]]
## character(0)
## 
## [[2366]]
## [1] " the" " the" " the" " the"
## 
## [[2367]]
## character(0)
## 
## [[2368]]
## [1] " the"
## 
## [[2369]]
## [1] " the" " the" " the"
## 
## [[2370]]
## [1] " the"
## 
## [[2371]]
## character(0)
## 
## [[2372]]
## character(0)
## 
## [[2373]]
## character(0)
## 
## [[2374]]
## [1] " the" " tre"
## 
## [[2375]]
## [1] " the"
## 
## [[2376]]
## [1] " the" " the"
## 
## [[2377]]
## [1] " the" " the"
## 
## [[2378]]
## [1] " tre"
## 
## [[2379]]
## character(0)
## 
## [[2380]]
## character(0)
## 
## [[2381]]
## character(0)
## 
## [[2382]]
## [1] " the"
## 
## [[2383]]
## [1] " the"
## 
## [[2384]]
## character(0)
## 
## [[2385]]
## [1] " the" " the"
## 
## [[2386]]
## [1] " the"
## 
## [[2387]]
## character(0)
## 
## [[2388]]
## character(0)
## 
## [[2389]]
## [1] " the"
## 
## [[2390]]
## [1] " the"
## 
## [[2391]]
## [1] " the" " the" " the"
## 
## [[2392]]
## character(0)
## 
## [[2393]]
## [1] " the" " the"
## 
## [[2394]]
## [1] " the"
## 
## [[2395]]
## character(0)
## 
## [[2396]]
## [1] " the" " the"
## 
## [[2397]]
## character(0)
## 
## [[2398]]
## [1] " the"
## 
## [[2399]]
## [1] " the"
## 
## [[2400]]
## character(0)
## 
## [[2401]]
## [1] " the" " the"
## 
## [[2402]]
## [1] " the" " the"
## 
## [[2403]]
## [1] " the" " the" " the"
## 
## [[2404]]
## character(0)
## 
## [[2405]]
## character(0)
## 
## [[2406]]
## character(0)
## 
## [[2407]]
## [1] " the"
## 
## [[2408]]
## character(0)
## 
## [[2409]]
## [1] " the" " the"
## 
## [[2410]]
## character(0)
## 
## [[2411]]
## character(0)
## 
## [[2412]]
## [1] " the"
## 
## [[2413]]
## character(0)
## 
## [[2414]]
## character(0)
## 
## [[2415]]
## [1] " the"
## 
## [[2416]]
## character(0)
## 
## [[2417]]
## character(0)
## 
## [[2418]]
## [1] " the"
## 
## [[2419]]
## [1] " the" " the"
## 
## [[2420]]
## [1] " the" " the" " the"
## 
## [[2421]]
## character(0)
## 
## [[2422]]
## [1] " the"
## 
## [[2423]]
## [1] " the"
## 
## [[2424]]
## [1] " the"
## 
## [[2425]]
## [1] " the" " the"
## 
## [[2426]]
## [1] " the" " the"
## 
## [[2427]]
## character(0)
## 
## [[2428]]
## [1] " the" " the"
## 
## [[2429]]
## [1] " the"
## 
## [[2430]]
## character(0)
## 
## [[2431]]
## [1] " the"
## 
## [[2432]]
## character(0)
## 
## [[2433]]
## [1] " the" " the"
## 
## [[2434]]
## character(0)
## 
## [[2435]]
## character(0)
## 
## [[2436]]
## character(0)
## 
## [[2437]]
## [1] " the" " the" " the"
## 
## [[2438]]
## [1] " the"
## 
## [[2439]]
## [1] " the"
## 
## [[2440]]
## [1] " the" " the" " the"
## 
## [[2441]]
## character(0)
## 
## [[2442]]
## [1] " the" " the" " the"
## 
## [[2443]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2444]]
## character(0)
## 
## [[2445]]
## [1] " the" " the"
## 
## [[2446]]
## [1] " the" " the"
## 
## [[2447]]
## [1] " tre" " the" " the"
## 
## [[2448]]
## [1] " the" " the"
## 
## [[2449]]
## [1] " the" " the" " the"
## 
## [[2450]]
## character(0)
## 
## [[2451]]
## character(0)
## 
## [[2452]]
## character(0)
## 
## [[2453]]
## [1] " the"
## 
## [[2454]]
## character(0)
## 
## [[2455]]
## [1] " the"
## 
## [[2456]]
## [1] " the" " the"
## 
## [[2457]]
## [1] " the"
## 
## [[2458]]
## character(0)
## 
## [[2459]]
## character(0)
## 
## [[2460]]
## [1] " the" " the"
## 
## [[2461]]
## [1] " the" " the"
## 
## [[2462]]
## character(0)
## 
## [[2463]]
## character(0)
## 
## [[2464]]
## [1] " the" " the"
## 
## [[2465]]
## character(0)
## 
## [[2466]]
## [1] " the" " the"
## 
## [[2467]]
## character(0)
## 
## [[2468]]
## character(0)
## 
## [[2469]]
## [1] " the"
## 
## [[2470]]
## [1] " the" " the"
## 
## [[2471]]
## [1] " the" " the"
## 
## [[2472]]
## character(0)
## 
## [[2473]]
## character(0)
## 
## [[2474]]
## character(0)
## 
## [[2475]]
## character(0)
## 
## [[2476]]
## [1] " the" " the"
## 
## [[2477]]
## character(0)
## 
## [[2478]]
## [1] " the"
## 
## [[2479]]
## [1] " the"
## 
## [[2480]]
## [1] " the"
## 
## [[2481]]
## [1] " the"
## 
## [[2482]]
## [1] " the"
## 
## [[2483]]
## [1] " the" " the" " the"
## 
## [[2484]]
## character(0)
## 
## [[2485]]
## character(0)
## 
## [[2486]]
## [1] " the" " the" " the"
## 
## [[2487]]
## character(0)
## 
## [[2488]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2489]]
## [1] " the" " the"
## 
## [[2490]]
## [1] " the" " the"
## 
## [[2491]]
## [1] " the"
## 
## [[2492]]
## [1] " the" " the"
## 
## [[2493]]
## character(0)
## 
## [[2494]]
## [1] " the" " the" " the" " the"
## 
## [[2495]]
## character(0)
## 
## [[2496]]
## [1] " the"
## 
## [[2497]]
## [1] " the" " the" " the"
## 
## [[2498]]
## character(0)
## 
## [[2499]]
## [1] " the"
## 
## [[2500]]
## character(0)
## 
## [[2501]]
## [1] " the"
## 
## [[2502]]
## [1] " the"
## 
## [[2503]]
## character(0)
## 
## [[2504]]
## [1] " the"
## 
## [[2505]]
## [1] " the" " tre" " tre" " the"
## 
## [[2506]]
## character(0)
## 
## [[2507]]
## character(0)
## 
## [[2508]]
## [1] " the"
## 
## [[2509]]
## [1] " the" " the"
## 
## [[2510]]
## [1] " the"
## 
## [[2511]]
## [1] " the"
## 
## [[2512]]
## [1] " the" " the" " the"
## 
## [[2513]]
## character(0)
## 
## [[2514]]
## character(0)
## 
## [[2515]]
## [1] " the"
## 
## [[2516]]
## character(0)
## 
## [[2517]]
## character(0)
## 
## [[2518]]
## [1] " the" " the"
## 
## [[2519]]
## character(0)
## 
## [[2520]]
## [1] " the" " the" " the"
## 
## [[2521]]
## character(0)
## 
## [[2522]]
## character(0)
## 
## [[2523]]
## character(0)
## 
## [[2524]]
## character(0)
## 
## [[2525]]
## character(0)
## 
## [[2526]]
## [1] " the" " the"
## 
## [[2527]]
## character(0)
## 
## [[2528]]
## character(0)
## 
## [[2529]]
## character(0)
## 
## [[2530]]
## [1] " the" " the" " the" " the"
## 
## [[2531]]
## character(0)
## 
## [[2532]]
## character(0)
## 
## [[2533]]
## character(0)
## 
## [[2534]]
## [1] " the" " the" " the"
## 
## [[2535]]
## character(0)
## 
## [[2536]]
## [1] " the" " the" " the"
## 
## [[2537]]
## [1] " the"
## 
## [[2538]]
## character(0)
## 
## [[2539]]
## [1] " the"
## 
## [[2540]]
## character(0)
## 
## [[2541]]
## [1] " the"
## 
## [[2542]]
## [1] " the" " the"
## 
## [[2543]]
## character(0)
## 
## [[2544]]
## character(0)
## 
## [[2545]]
## character(0)
## 
## [[2546]]
## [1] " the" " the" " the"
## 
## [[2547]]
## character(0)
## 
## [[2548]]
## [1] " the"
## 
## [[2549]]
## character(0)
## 
## [[2550]]
## character(0)
## 
## [[2551]]
## [1] " the"
## 
## [[2552]]
## character(0)
## 
## [[2553]]
## [1] " the" " the"
## 
## [[2554]]
## [1] " the" " the" " the"
## 
## [[2555]]
## character(0)
## 
## [[2556]]
## [1] " the" " the" " the"
## 
## [[2557]]
## [1] " the"
## 
## [[2558]]
## [1] " the"
## 
## [[2559]]
## [1] " the"
## 
## [[2560]]
## character(0)
## 
## [[2561]]
## [1] " the"
## 
## [[2562]]
## [1] " the" " the" " the" " the"
## 
## [[2563]]
## character(0)
## 
## [[2564]]
## character(0)
## 
## [[2565]]
## [1] " the"
## 
## [[2566]]
## [1] " the"
## 
## [[2567]]
## character(0)
## 
## [[2568]]
## [1] " the"
## 
## [[2569]]
## character(0)
## 
## [[2570]]
## character(0)
## 
## [[2571]]
## [1] " the" " the" " the"
## 
## [[2572]]
## character(0)
## 
## [[2573]]
## [1] " the" " the"
## 
## [[2574]]
## [1] " the"
## 
## [[2575]]
## [1] " the" " the" " the"
## 
## [[2576]]
## [1] " the"
## 
## [[2577]]
## [1] " the"
## 
## [[2578]]
## [1] " the"
## 
## [[2579]]
## [1] " the" " the"
## 
## [[2580]]
## [1] " the" " the"
## 
## [[2581]]
## [1] " the" " the" " the"
## 
## [[2582]]
## [1] " the" " the" " the"
## 
## [[2583]]
## character(0)
## 
## [[2584]]
## [1] " the" " the"
## 
## [[2585]]
## [1] " the" " the" " the"
## 
## [[2586]]
## character(0)
## 
## [[2587]]
## [1] " the"
## 
## [[2588]]
## [1] " the"
## 
## [[2589]]
## character(0)
## 
## [[2590]]
## character(0)
## 
## [[2591]]
## character(0)
## 
## [[2592]]
## character(0)
## 
## [[2593]]
## character(0)
## 
## [[2594]]
## [1] " the"
## 
## [[2595]]
## [1] " the" " the"
## 
## [[2596]]
## [1] " the"
## 
## [[2597]]
## [1] " the" " the"
## 
## [[2598]]
## [1] " the" " the" " the"
## 
## [[2599]]
## character(0)
## 
## [[2600]]
## character(0)
## 
## [[2601]]
## [1] " the"
## 
## [[2602]]
## character(0)
## 
## [[2603]]
## [1] " the" " the"
## 
## [[2604]]
## character(0)
## 
## [[2605]]
## character(0)
## 
## [[2606]]
## character(0)
## 
## [[2607]]
## [1] " the" " the"
## 
## [[2608]]
## character(0)
## 
## [[2609]]
## [1] " the"
## 
## [[2610]]
## character(0)
## 
## [[2611]]
## character(0)
## 
## [[2612]]
## [1] " the"
## 
## [[2613]]
## character(0)
## 
## [[2614]]
## [1] " the" " the"
## 
## [[2615]]
## [1] " the"
## 
## [[2616]]
## character(0)
## 
## [[2617]]
## character(0)
## 
## [[2618]]
## character(0)
## 
## [[2619]]
## character(0)
## 
## [[2620]]
## [1] " the" " the"
## 
## [[2621]]
## [1] " the" " the" " the" " the"
## 
## [[2622]]
## [1] " the" " the"
## 
## [[2623]]
## [1] " tre"
## 
## [[2624]]
## character(0)
## 
## [[2625]]
## [1] " the" " the"
## 
## [[2626]]
## character(0)
## 
## [[2627]]
## [1] " the"
## 
## [[2628]]
## character(0)
## 
## [[2629]]
## character(0)
## 
## [[2630]]
## [1] " the"
## 
## [[2631]]
## character(0)
## 
## [[2632]]
## [1] " the"
## 
## [[2633]]
## [1] " the" " the"
## 
## [[2634]]
## [1] " the" " the"
## 
## [[2635]]
## [1] " the"
## 
## [[2636]]
## [1] " tre"
## 
## [[2637]]
## character(0)
## 
## [[2638]]
## [1] " the" " the"
## 
## [[2639]]
## character(0)
## 
## [[2640]]
## character(0)
## 
## [[2641]]
## character(0)
## 
## [[2642]]
## [1] " the"
## 
## [[2643]]
## character(0)
## 
## [[2644]]
## [1] " the"
## 
## [[2645]]
## [1] " the" " the" " the"
## 
## [[2646]]
## [1] " the" " the" " the" " the"
## 
## [[2647]]
## [1] " the"
## 
## [[2648]]
## [1] " the" " the"
## 
## [[2649]]
## character(0)
## 
## [[2650]]
## character(0)
## 
## [[2651]]
## [1] " the"
## 
## [[2652]]
## [1] " the"
## 
## [[2653]]
## character(0)
## 
## [[2654]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[2655]]
## [1] " the"
## 
## [[2656]]
## character(0)
## 
## [[2657]]
## character(0)
## 
## [[2658]]
## character(0)
## 
## [[2659]]
## character(0)
## 
## [[2660]]
## character(0)
## 
## [[2661]]
## character(0)
## 
## [[2662]]
## [1] " the" " the"
## 
## [[2663]]
## character(0)
## 
## [[2664]]
## [1] " the"
## 
## [[2665]]
## [1] " tre" " the" " the"
## 
## [[2666]]
## [1] " the"
## 
## [[2667]]
## [1] " the"
## 
## [[2668]]
## character(0)
## 
## [[2669]]
## [1] " the" " the"
## 
## [[2670]]
## character(0)
## 
## [[2671]]
## character(0)
## 
## [[2672]]
## [1] " the" " the"
## 
## [[2673]]
## [1] " the"
## 
## [[2674]]
## [1] " the"
## 
## [[2675]]
## [1] " the" " the"
## 
## [[2676]]
## [1] " the" " the" " the"
## 
## [[2677]]
## [1] " the"
## 
## [[2678]]
## [1] " the"
## 
## [[2679]]
## character(0)
## 
## [[2680]]
## character(0)
## 
## [[2681]]
## [1] " the" " the"
## 
## [[2682]]
## [1] " the"
## 
## [[2683]]
## [1] " the"
## 
## [[2684]]
## [1] " the" " twe" " the"
## 
## [[2685]]
## [1] " the" " the"
## 
## [[2686]]
## [1] " the" " the"
## 
## [[2687]]
## [1] " the" " the"
## 
## [[2688]]
## [1] " the" " the" " the"
## 
## [[2689]]
## [1] " the" " the"
## 
## [[2690]]
## character(0)
## 
## [[2691]]
## [1] " the" " the" " the"
## 
## [[2692]]
## [1] " the"
## 
## [[2693]]
## [1] " the"
## 
## [[2694]]
## [1] " the"
## 
## [[2695]]
## character(0)
## 
## [[2696]]
## character(0)
## 
## [[2697]]
## character(0)
## 
## [[2698]]
## [1] " the"
## 
## [[2699]]
## [1] " the" " the"
## 
## [[2700]]
## [1] " the"
## 
## [[2701]]
## [1] " the"
## 
## [[2702]]
## [1] " the"
## 
## [[2703]]
## character(0)
## 
## [[2704]]
## character(0)
## 
## [[2705]]
## [1] " the"
## 
## [[2706]]
## [1] " the" " the"
## 
## [[2707]]
## character(0)
## 
## [[2708]]
## [1] " the"
## 
## [[2709]]
## character(0)
## 
## [[2710]]
## [1] " the"
## 
## [[2711]]
## [1] " the"
## 
## [[2712]]
## character(0)
## 
## [[2713]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[2714]]
## [1] " twe" " the"
## 
## [[2715]]
## character(0)
## 
## [[2716]]
## character(0)
## 
## [[2717]]
## character(0)
## 
## [[2718]]
## character(0)
## 
## [[2719]]
## [1] " the" " the"
## 
## [[2720]]
## [1] " the"
## 
## [[2721]]
## [1] " the" " the"
## 
## [[2722]]
## [1] " the" " the" " the"
## 
## [[2723]]
## character(0)
## 
## [[2724]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2725]]
## character(0)
## 
## [[2726]]
## character(0)
## 
## [[2727]]
## character(0)
## 
## [[2728]]
## [1] " the" " tre" " the" " the" " the" " the" " the"
## 
## [[2729]]
## [1] " the"
## 
## [[2730]]
## character(0)
## 
## [[2731]]
## character(0)
## 
## [[2732]]
## character(0)
## 
## [[2733]]
## [1] " the"
## 
## [[2734]]
## [1] " the" " the" " the" " the"
## 
## [[2735]]
## character(0)
## 
## [[2736]]
## character(0)
## 
## [[2737]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2738]]
## [1] " the" " the" " the"
## 
## [[2739]]
## [1] " the" " the"
## 
## [[2740]]
## [1] " the" " the" " the"
## 
## [[2741]]
## character(0)
## 
## [[2742]]
## character(0)
## 
## [[2743]]
## character(0)
## 
## [[2744]]
## character(0)
## 
## [[2745]]
## [1] " the"
## 
## [[2746]]
## [1] " the" " the"
## 
## [[2747]]
## character(0)
## 
## [[2748]]
## [1] " the" " the" " the"
## 
## [[2749]]
## character(0)
## 
## [[2750]]
## character(0)
## 
## [[2751]]
## [1] " the"
## 
## [[2752]]
## character(0)
## 
## [[2753]]
## character(0)
## 
## [[2754]]
## [1] " the" " the"
## 
## [[2755]]
## [1] " the"
## 
## [[2756]]
## character(0)
## 
## [[2757]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2758]]
## character(0)
## 
## [[2759]]
## character(0)
## 
## [[2760]]
## character(0)
## 
## [[2761]]
## [1] " the"
## 
## [[2762]]
## [1] " twe"
## 
## [[2763]]
## [1] " the"
## 
## [[2764]]
## character(0)
## 
## [[2765]]
## character(0)
## 
## [[2766]]
## character(0)
## 
## [[2767]]
## character(0)
## 
## [[2768]]
## character(0)
## 
## [[2769]]
## [1] " the"
## 
## [[2770]]
## [1] " the" " the"
## 
## [[2771]]
## character(0)
## 
## [[2772]]
## [1] " tre" " the" " the"
## 
## [[2773]]
## [1] " the"
## 
## [[2774]]
## character(0)
## 
## [[2775]]
## [1] " the"
## 
## [[2776]]
## character(0)
## 
## [[2777]]
## [1] " the" " the" " the"
## 
## [[2778]]
## character(0)
## 
## [[2779]]
## [1] " the"
## 
## [[2780]]
## [1] " the" " the"
## 
## [[2781]]
## [1] " the" " the" " the" " the"
## 
## [[2782]]
## [1] " the"
## 
## [[2783]]
## character(0)
## 
## [[2784]]
## character(0)
## 
## [[2785]]
## [1] " the" " the"
## 
## [[2786]]
## [1] " the" " the" " the"
## 
## [[2787]]
## [1] " the"
## 
## [[2788]]
## [1] " the" " the"
## 
## [[2789]]
## character(0)
## 
## [[2790]]
## [1] " the" " the" " the" " the"
## 
## [[2791]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2792]]
## [1] " tre" " the" " the"
## 
## [[2793]]
## character(0)
## 
## [[2794]]
## character(0)
## 
## [[2795]]
## [1] " the" " the" " the"
## 
## [[2796]]
## character(0)
## 
## [[2797]]
## character(0)
## 
## [[2798]]
## character(0)
## 
## [[2799]]
## [1] " the" " the"
## 
## [[2800]]
## [1] " the" " the" " the"
## 
## [[2801]]
## character(0)
## 
## [[2802]]
## character(0)
## 
## [[2803]]
## [1] " the" " the"
## 
## [[2804]]
## character(0)
## 
## [[2805]]
## [1] " the" " the"
## 
## [[2806]]
## [1] " the" " the" " the" " the"
## 
## [[2807]]
## character(0)
## 
## [[2808]]
## [1] " the" " the" " the"
## 
## [[2809]]
## character(0)
## 
## [[2810]]
## character(0)
## 
## [[2811]]
## character(0)
## 
## [[2812]]
## character(0)
## 
## [[2813]]
## [1] " the" " the"
## 
## [[2814]]
## character(0)
## 
## [[2815]]
## character(0)
## 
## [[2816]]
## character(0)
## 
## [[2817]]
## [1] " the" " the"
## 
## [[2818]]
## character(0)
## 
## [[2819]]
## character(0)
## 
## [[2820]]
## [1] " the" " the" " the"
## 
## [[2821]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2822]]
## [1] " the" " the" " the" " the"
## 
## [[2823]]
## [1] " the" " the"
## 
## [[2824]]
## [1] " the" " the"
## 
## [[2825]]
## character(0)
## 
## [[2826]]
## character(0)
## 
## [[2827]]
## [1] " the"
## 
## [[2828]]
## [1] " the" " the" " the" " the"
## 
## [[2829]]
## [1] " the" " the" " tre" " the"
## 
## [[2830]]
## [1] " the"
## 
## [[2831]]
## [1] " the"
## 
## [[2832]]
## [1] " the"
## 
## [[2833]]
## character(0)
## 
## [[2834]]
## [1] " the"
## 
## [[2835]]
## character(0)
## 
## [[2836]]
## [1] " the"
## 
## [[2837]]
## character(0)
## 
## [[2838]]
## [1] " the" " the"
## 
## [[2839]]
## [1] " the"
## 
## [[2840]]
## character(0)
## 
## [[2841]]
## [1] " the"
## 
## [[2842]]
## [1] " the"
## 
## [[2843]]
## [1] " the"
## 
## [[2844]]
## character(0)
## 
## [[2845]]
## character(0)
## 
## [[2846]]
## [1] " the" " the" " the"
## 
## [[2847]]
## character(0)
## 
## [[2848]]
## [1] " the" " the"
## 
## [[2849]]
## [1] " the" " the"
## 
## [[2850]]
## [1] " the"
## 
## [[2851]]
## [1] " the" " the"
## 
## [[2852]]
## character(0)
## 
## [[2853]]
## [1] " the"
## 
## [[2854]]
## [1] " the"
## 
## [[2855]]
## [1] " the" " the"
## 
## [[2856]]
## [1] " the"
## 
## [[2857]]
## [1] " the"
## 
## [[2858]]
## character(0)
## 
## [[2859]]
## character(0)
## 
## [[2860]]
## character(0)
## 
## [[2861]]
## character(0)
## 
## [[2862]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2863]]
## [1] " the"
## 
## [[2864]]
## [1] " the" " the"
## 
## [[2865]]
## character(0)
## 
## [[2866]]
## [1] " the" " the"
## 
## [[2867]]
## character(0)
## 
## [[2868]]
## character(0)
## 
## [[2869]]
## [1] " the"
## 
## [[2870]]
## character(0)
## 
## [[2871]]
## [1] " the"
## 
## [[2872]]
## [1] " the" " the"
## 
## [[2873]]
## [1] " the" " the"
## 
## [[2874]]
## [1] " the" " the"
## 
## [[2875]]
## [1] " the" " the"
## 
## [[2876]]
## character(0)
## 
## [[2877]]
## character(0)
## 
## [[2878]]
## [1] " the"
## 
## [[2879]]
## [1] " the" " the"
## 
## [[2880]]
## character(0)
## 
## [[2881]]
## character(0)
## 
## [[2882]]
## [1] " the"
## 
## [[2883]]
## character(0)
## 
## [[2884]]
## [1] " the"
## 
## [[2885]]
## [1] " the"
## 
## [[2886]]
## [1] " the" " the"
## 
## [[2887]]
## character(0)
## 
## [[2888]]
## character(0)
## 
## [[2889]]
## character(0)
## 
## [[2890]]
## character(0)
## 
## [[2891]]
## [1] " the"
## 
## [[2892]]
## [1] " the"
## 
## [[2893]]
## character(0)
## 
## [[2894]]
## [1] " the"
## 
## [[2895]]
## character(0)
## 
## [[2896]]
## character(0)
## 
## [[2897]]
## [1] " the"
## 
## [[2898]]
## character(0)
## 
## [[2899]]
## [1] " the" " the"
## 
## [[2900]]
## character(0)
## 
## [[2901]]
## [1] " the" " the"
## 
## [[2902]]
## character(0)
## 
## [[2903]]
## character(0)
## 
## [[2904]]
## character(0)
## 
## [[2905]]
## [1] " the" " the"
## 
## [[2906]]
## character(0)
## 
## [[2907]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2908]]
## [1] " the" " the"
## 
## [[2909]]
## [1] " the"
## 
## [[2910]]
## [1] " the" " the" " the" " the"
## 
## [[2911]]
## [1] " the"
## 
## [[2912]]
## [1] " the" " the" " the"
## 
## [[2913]]
## character(0)
## 
## [[2914]]
## character(0)
## 
## [[2915]]
## [1] " the"
## 
## [[2916]]
## [1] " the" " the"
## 
## [[2917]]
## character(0)
## 
## [[2918]]
## [1] " the"
## 
## [[2919]]
## [1] " the" " the" " the" " the"
## 
## [[2920]]
## character(0)
## 
## [[2921]]
## [1] " the" " the"
## 
## [[2922]]
## [1] " the" " the"
## 
## [[2923]]
## character(0)
## 
## [[2924]]
## character(0)
## 
## [[2925]]
## character(0)
## 
## [[2926]]
## [1] " the"
## 
## [[2927]]
## [1] " the" " the"
## 
## [[2928]]
## character(0)
## 
## [[2929]]
## [1] " the"
## 
## [[2930]]
## character(0)
## 
## [[2931]]
## [1] " the"
## 
## [[2932]]
## [1] " the"
## 
## [[2933]]
## character(0)
## 
## [[2934]]
## [1] " tre" " the" " the"
## 
## [[2935]]
## [1] " the"
## 
## [[2936]]
## character(0)
## 
## [[2937]]
## [1] " the" " the"
## 
## [[2938]]
## character(0)
## 
## [[2939]]
## [1] " the"
## 
## [[2940]]
## character(0)
## 
## [[2941]]
## character(0)
## 
## [[2942]]
## [1] " the"
## 
## [[2943]]
## [1] " the"
## 
## [[2944]]
## character(0)
## 
## [[2945]]
## character(0)
## 
## [[2946]]
## [1] " the" " the"
## 
## [[2947]]
## character(0)
## 
## [[2948]]
## [1] " the"
## 
## [[2949]]
## [1] " the" " the" " the"
## 
## [[2950]]
## [1] " the"
## 
## [[2951]]
## [1] " the"
## 
## [[2952]]
## [1] " the" " the" " the"
## 
## [[2953]]
## character(0)
## 
## [[2954]]
## character(0)
## 
## [[2955]]
## character(0)
## 
## [[2956]]
## character(0)
## 
## [[2957]]
## character(0)
## 
## [[2958]]
## character(0)
## 
## [[2959]]
## character(0)
## 
## [[2960]]
## [1] " the"
## 
## [[2961]]
## [1] " the"
## 
## [[2962]]
## [1] " the" " the"
## 
## [[2963]]
## character(0)
## 
## [[2964]]
## character(0)
## 
## [[2965]]
## character(0)
## 
## [[2966]]
## character(0)
## 
## [[2967]]
## [1] " the" " the" " the" " the"
## 
## [[2968]]
## character(0)
## 
## [[2969]]
## character(0)
## 
## [[2970]]
## character(0)
## 
## [[2971]]
## [1] " the" " the" " the"
## 
## [[2972]]
## [1] " the"
## 
## [[2973]]
## [1] " the" " the"
## 
## [[2974]]
## character(0)
## 
## [[2975]]
## [1] " the" " the"
## 
## [[2976]]
## [1] " the"
## 
## [[2977]]
## [1] " the"
## 
## [[2978]]
## [1] " the"
## 
## [[2979]]
## [1] " the"
## 
## [[2980]]
## [1] " the" " the" " the"
## 
## [[2981]]
## character(0)
## 
## [[2982]]
## character(0)
## 
## [[2983]]
## [1] " the" " the" " the"
## 
## [[2984]]
## [1] " the" " the" " the" " the" " the"
## 
## [[2985]]
## character(0)
## 
## [[2986]]
## character(0)
## 
## [[2987]]
## character(0)
## 
## [[2988]]
## [1] " the"
## 
## [[2989]]
## character(0)
## 
## [[2990]]
## [1] " the" " the"
## 
## [[2991]]
## [1] " the"
## 
## [[2992]]
## [1] " the"
## 
## [[2993]]
## character(0)
## 
## [[2994]]
## [1] " the"
## 
## [[2995]]
## [1] " the" " the"
## 
## [[2996]]
## [1] " the"
## 
## [[2997]]
## character(0)
## 
## [[2998]]
## character(0)
## 
## [[2999]]
## [1] " the"
## 
## [[3000]]
## character(0)
## 
## [[3001]]
## character(0)
## 
## [[3002]]
## [1] " the" " the" " the"
## 
## [[3003]]
## [1] " the"
## 
## [[3004]]
## [1] " the"
## 
## [[3005]]
## [1] " the"
## 
## [[3006]]
## [1] " the"
## 
## [[3007]]
## [1] " the" " the"
## 
## [[3008]]
## character(0)
## 
## [[3009]]
## [1] " the" " the"
## 
## [[3010]]
## character(0)
## 
## [[3011]]
## character(0)
## 
## [[3012]]
## [1] " the" " the"
## 
## [[3013]]
## [1] " the"
## 
## [[3014]]
## [1] " the"
## 
## [[3015]]
## [1] " the" " the" " the"
## 
## [[3016]]
## [1] " the" " the"
## 
## [[3017]]
## [1] " tre" " the"
## 
## [[3018]]
## [1] " the" " the"
## 
## [[3019]]
## [1] " the" " the" " the"
## 
## [[3020]]
## [1] " the"
## 
## [[3021]]
## [1] " the" " the" " the" " the"
## 
## [[3022]]
## [1] " the" " the" " the" " the"
## 
## [[3023]]
## [1] " the" " the"
## 
## [[3024]]
## character(0)
## 
## [[3025]]
## [1] " the" " the" " the"
## 
## [[3026]]
## [1] " the" " the"
## 
## [[3027]]
## character(0)
## 
## [[3028]]
## character(0)
## 
## [[3029]]
## character(0)
## 
## [[3030]]
## [1] " the"
## 
## [[3031]]
## character(0)
## 
## [[3032]]
## character(0)
## 
## [[3033]]
## character(0)
## 
## [[3034]]
## character(0)
## 
## [[3035]]
## character(0)
## 
## [[3036]]
## [1] " the"
## 
## [[3037]]
## [1] " the" " the"
## 
## [[3038]]
## [1] " the" " the"
## 
## [[3039]]
## character(0)
## 
## [[3040]]
## character(0)
## 
## [[3041]]
## [1] " the" " the"
## 
## [[3042]]
## character(0)
## 
## [[3043]]
## [1] " the" " the" " the"
## 
## [[3044]]
## character(0)
## 
## [[3045]]
## character(0)
## 
## [[3046]]
## character(0)
## 
## [[3047]]
## character(0)
## 
## [[3048]]
## [1] " the" " the"
## 
## [[3049]]
## [1] " the" " the" " the" " the"
## 
## [[3050]]
## [1] " the"
## 
## [[3051]]
## character(0)
## 
## [[3052]]
## character(0)
## 
## [[3053]]
## character(0)
## 
## [[3054]]
## character(0)
## 
## [[3055]]
## character(0)
## 
## [[3056]]
## [1] " the"
## 
## [[3057]]
## [1] " the"
## 
## [[3058]]
## [1] " the"
## 
## [[3059]]
## [1] " the"
## 
## [[3060]]
## character(0)
## 
## [[3061]]
## [1] " the"
## 
## [[3062]]
## character(0)
## 
## [[3063]]
## [1] " the" " the" " the" " the"
## 
## [[3064]]
## [1] " the" " the" " tre" " the" " the"
## 
## [[3065]]
## character(0)
## 
## [[3066]]
## character(0)
## 
## [[3067]]
## character(0)
## 
## [[3068]]
## [1] " the" " the" " the"
## 
## [[3069]]
## [1] " the"
## 
## [[3070]]
## character(0)
## 
## [[3071]]
## character(0)
## 
## [[3072]]
## character(0)
## 
## [[3073]]
## [1] " the" " the"
## 
## [[3074]]
## [1] " the"
## 
## [[3075]]
## [1] " the" " the"
## 
## [[3076]]
## [1] " the"
## 
## [[3077]]
## [1] " the"
## 
## [[3078]]
## character(0)
## 
## [[3079]]
## character(0)
## 
## [[3080]]
## [1] " the" " the" " the"
## 
## [[3081]]
## [1] " the"
## 
## [[3082]]
## character(0)
## 
## [[3083]]
## [1] " the"
## 
## [[3084]]
## character(0)
## 
## [[3085]]
## [1] " the"
## 
## [[3086]]
## [1] " the"
## 
## [[3087]]
## character(0)
## 
## [[3088]]
## [1] " the"
## 
## [[3089]]
## [1] " the" " the"
## 
## [[3090]]
## character(0)
## 
## [[3091]]
## character(0)
## 
## [[3092]]
## [1] " the" " the"
## 
## [[3093]]
## [1] " the"
## 
## [[3094]]
## [1] " the"
## 
## [[3095]]
## character(0)
## 
## [[3096]]
## [1] " tre" " the" " the" " the"
## 
## [[3097]]
## [1] " the" " the"
## 
## [[3098]]
## character(0)
## 
## [[3099]]
## [1] " the" " the" " the"
## 
## [[3100]]
## character(0)
## 
## [[3101]]
## character(0)
## 
## [[3102]]
## [1] " the" " the"
## 
## [[3103]]
## [1] " the"
## 
## [[3104]]
## character(0)
## 
## [[3105]]
## character(0)
## 
## [[3106]]
## [1] " the"
## 
## [[3107]]
## [1] " the"
## 
## [[3108]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3109]]
## character(0)
## 
## [[3110]]
## character(0)
## 
## [[3111]]
## character(0)
## 
## [[3112]]
## character(0)
## 
## [[3113]]
## [1] " the"
## 
## [[3114]]
## character(0)
## 
## [[3115]]
## character(0)
## 
## [[3116]]
## [1] " the"
## 
## [[3117]]
## [1] " the"
## 
## [[3118]]
## [1] " the" " the" " the"
## 
## [[3119]]
## [1] " the"
## 
## [[3120]]
## character(0)
## 
## [[3121]]
## character(0)
## 
## [[3122]]
## [1] " the"
## 
## [[3123]]
## character(0)
## 
## [[3124]]
## [1] " the"
## 
## [[3125]]
## character(0)
## 
## [[3126]]
## character(0)
## 
## [[3127]]
## [1] " the" " the" " the" " the"
## 
## [[3128]]
## [1] " the" " the" " the"
## 
## [[3129]]
## character(0)
## 
## [[3130]]
## [1] " the" " the" " the"
## 
## [[3131]]
## [1] " the" " the"
## 
## [[3132]]
## character(0)
## 
## [[3133]]
## [1] " the" " the" " the" " the"
## 
## [[3134]]
## [1] " the"
## 
## [[3135]]
## character(0)
## 
## [[3136]]
## character(0)
## 
## [[3137]]
## [1] " the"
## 
## [[3138]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3139]]
## [1] " the" " the"
## 
## [[3140]]
## [1] " the" " the"
## 
## [[3141]]
## character(0)
## 
## [[3142]]
## [1] " the"
## 
## [[3143]]
## [1] " the"
## 
## [[3144]]
## character(0)
## 
## [[3145]]
## character(0)
## 
## [[3146]]
## [1] " the" " the" " the" " the"
## 
## [[3147]]
## [1] " the"
## 
## [[3148]]
## [1] " the"
## 
## [[3149]]
## character(0)
## 
## [[3150]]
## [1] " the"
## 
## [[3151]]
## character(0)
## 
## [[3152]]
## character(0)
## 
## [[3153]]
## character(0)
## 
## [[3154]]
## character(0)
## 
## [[3155]]
## character(0)
## 
## [[3156]]
## character(0)
## 
## [[3157]]
## character(0)
## 
## [[3158]]
## [1] " the"
## 
## [[3159]]
## character(0)
## 
## [[3160]]
## character(0)
## 
## [[3161]]
## [1] " the"
## 
## [[3162]]
## character(0)
## 
## [[3163]]
## character(0)
## 
## [[3164]]
## [1] " the"
## 
## [[3165]]
## character(0)
## 
## [[3166]]
## character(0)
## 
## [[3167]]
## [1] " the"
## 
## [[3168]]
## [1] " the" " the" " the" " the"
## 
## [[3169]]
## [1] " tre"
## 
## [[3170]]
## character(0)
## 
## [[3171]]
## [1] " the"
## 
## [[3172]]
## [1] " the"
## 
## [[3173]]
## character(0)
## 
## [[3174]]
## [1] " the" " the"
## 
## [[3175]]
## [1] " the"
## 
## [[3176]]
## [1] " the"
## 
## [[3177]]
## character(0)
## 
## [[3178]]
## character(0)
## 
## [[3179]]
## character(0)
## 
## [[3180]]
## character(0)
## 
## [[3181]]
## character(0)
## 
## [[3182]]
## character(0)
## 
## [[3183]]
## character(0)
## 
## [[3184]]
## character(0)
## 
## [[3185]]
## character(0)
## 
## [[3186]]
## character(0)
## 
## [[3187]]
## character(0)
## 
## [[3188]]
## [1] " the"
## 
## [[3189]]
## [1] " the"
## 
## [[3190]]
## character(0)
## 
## [[3191]]
## [1] " the"
## 
## [[3192]]
## [1] " the"
## 
## [[3193]]
## character(0)
## 
## [[3194]]
## [1] " the"
## 
## [[3195]]
## character(0)
## 
## [[3196]]
## [1] " the" " the"
## 
## [[3197]]
## [1] " the"
## 
## [[3198]]
## [1] " the"
## 
## [[3199]]
## character(0)
## 
## [[3200]]
## character(0)
## 
## [[3201]]
## character(0)
## 
## [[3202]]
## [1] " the"
## 
## [[3203]]
## [1] " the" " tre"
## 
## [[3204]]
## character(0)
## 
## [[3205]]
## character(0)
## 
## [[3206]]
## [1] " the"
## 
## [[3207]]
## character(0)
## 
## [[3208]]
## [1] " the" " the"
## 
## [[3209]]
## character(0)
## 
## [[3210]]
## [1] " the" " the" " the"
## 
## [[3211]]
## character(0)
## 
## [[3212]]
## [1] " the" " the" " the"
## 
## [[3213]]
## [1] " the"
## 
## [[3214]]
## character(0)
## 
## [[3215]]
## character(0)
## 
## [[3216]]
## character(0)
## 
## [[3217]]
## [1] " the" " the"
## 
## [[3218]]
## character(0)
## 
## [[3219]]
## [1] " the" " the"
## 
## [[3220]]
## character(0)
## 
## [[3221]]
## character(0)
## 
## [[3222]]
## character(0)
## 
## [[3223]]
## [1] " the"
## 
## [[3224]]
## [1] " the"
## 
## [[3225]]
## character(0)
## 
## [[3226]]
## [1] " the"
## 
## [[3227]]
## [1] " the"
## 
## [[3228]]
## character(0)
## 
## [[3229]]
## character(0)
## 
## [[3230]]
## character(0)
## 
## [[3231]]
## [1] " the" " the"
## 
## [[3232]]
## character(0)
## 
## [[3233]]
## [1] " the"
## 
## [[3234]]
## [1] " the"
## 
## [[3235]]
## [1] " the" " the"
## 
## [[3236]]
## character(0)
## 
## [[3237]]
## [1] " the"
## 
## [[3238]]
## character(0)
## 
## [[3239]]
## character(0)
## 
## [[3240]]
## character(0)
## 
## [[3241]]
## [1] " the" " the" " the"
## 
## [[3242]]
## [1] " the"
## 
## [[3243]]
## character(0)
## 
## [[3244]]
## character(0)
## 
## [[3245]]
## [1] " the" " the"
## 
## [[3246]]
## character(0)
## 
## [[3247]]
## [1] " the" " the"
## 
## [[3248]]
## character(0)
## 
## [[3249]]
## character(0)
## 
## [[3250]]
## [1] " the"
## 
## [[3251]]
## character(0)
## 
## [[3252]]
## character(0)
## 
## [[3253]]
## [1] " tre" " the"
## 
## [[3254]]
## [1] " the"
## 
## [[3255]]
## character(0)
## 
## [[3256]]
## character(0)
## 
## [[3257]]
## [1] " the"
## 
## [[3258]]
## [1] " the"
## 
## [[3259]]
## [1] " the" " the"
## 
## [[3260]]
## character(0)
## 
## [[3261]]
## character(0)
## 
## [[3262]]
## character(0)
## 
## [[3263]]
## [1] " the"
## 
## [[3264]]
## character(0)
## 
## [[3265]]
## [1] " the"
## 
## [[3266]]
## character(0)
## 
## [[3267]]
## character(0)
## 
## [[3268]]
## character(0)
## 
## [[3269]]
## [1] " the" " the"
## 
## [[3270]]
## character(0)
## 
## [[3271]]
## character(0)
## 
## [[3272]]
## character(0)
## 
## [[3273]]
## [1] " the" " the"
## 
## [[3274]]
## [1] " the"
## 
## [[3275]]
## [1] " the"
## 
## [[3276]]
## [1] " the" " tre"
## 
## [[3277]]
## [1] " the"
## 
## [[3278]]
## character(0)
## 
## [[3279]]
## character(0)
## 
## [[3280]]
## character(0)
## 
## [[3281]]
## character(0)
## 
## [[3282]]
## [1] " the"
## 
## [[3283]]
## [1] " the"
## 
## [[3284]]
## character(0)
## 
## [[3285]]
## character(0)
## 
## [[3286]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3287]]
## character(0)
## 
## [[3288]]
## character(0)
## 
## [[3289]]
## [1] " the"
## 
## [[3290]]
## [1] " the" " the"
## 
## [[3291]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3292]]
## character(0)
## 
## [[3293]]
## character(0)
## 
## [[3294]]
## [1] " the" " the"
## 
## [[3295]]
## [1] " the"
## 
## [[3296]]
## [1] " the"
## 
## [[3297]]
## character(0)
## 
## [[3298]]
## [1] " the" " the" " the" " the"
## 
## [[3299]]
## [1] " the"
## 
## [[3300]]
## character(0)
## 
## [[3301]]
## character(0)
## 
## [[3302]]
## character(0)
## 
## [[3303]]
## character(0)
## 
## [[3304]]
## [1] " the" " the"
## 
## [[3305]]
## [1] " the"
## 
## [[3306]]
## [1] " the"
## 
## [[3307]]
## character(0)
## 
## [[3308]]
## character(0)
## 
## [[3309]]
## character(0)
## 
## [[3310]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[3311]]
## [1] " the" " the"
## 
## [[3312]]
## [1] " the"
## 
## [[3313]]
## character(0)
## 
## [[3314]]
## [1] " the" " the"
## 
## [[3315]]
## [1] " the"
## 
## [[3316]]
## [1] " the" " the"
## 
## [[3317]]
## [1] " the" " the"
## 
## [[3318]]
## character(0)
## 
## [[3319]]
## character(0)
## 
## [[3320]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[3321]]
## character(0)
## 
## [[3322]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3323]]
## character(0)
## 
## [[3324]]
## [1] " the" " the"
## 
## [[3325]]
## character(0)
## 
## [[3326]]
## [1] " the" " the" " the" " the"
## 
## [[3327]]
## character(0)
## 
## [[3328]]
## character(0)
## 
## [[3329]]
## character(0)
## 
## [[3330]]
## [1] " the" " the" " the"
## 
## [[3331]]
## character(0)
## 
## [[3332]]
## character(0)
## 
## [[3333]]
## character(0)
## 
## [[3334]]
## [1] " the" " the" " the" " the"
## 
## [[3335]]
## [1] " the"
## 
## [[3336]]
## [1] " tre"
## 
## [[3337]]
## character(0)
## 
## [[3338]]
## [1] " the"
## 
## [[3339]]
## character(0)
## 
## [[3340]]
## character(0)
## 
## [[3341]]
## [1] " the" " the" " the" " the"
## 
## [[3342]]
## character(0)
## 
## [[3343]]
## [1] " the"
## 
## [[3344]]
## [1] " the" " the" " the"
## 
## [[3345]]
## character(0)
## 
## [[3346]]
## [1] " the"
## 
## [[3347]]
## character(0)
## 
## [[3348]]
## [1] " the" " the"
## 
## [[3349]]
## [1] " the"
## 
## [[3350]]
## [1] " the" " the"
## 
## [[3351]]
## character(0)
## 
## [[3352]]
## [1] " the"
## 
## [[3353]]
## character(0)
## 
## [[3354]]
## [1] " the"
## 
## [[3355]]
## character(0)
## 
## [[3356]]
## [1] " the"
## 
## [[3357]]
## character(0)
## 
## [[3358]]
## character(0)
## 
## [[3359]]
## [1] " the" " the" " the"
## 
## [[3360]]
## [1] " the" " tre"
## 
## [[3361]]
## character(0)
## 
## [[3362]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3363]]
## character(0)
## 
## [[3364]]
## character(0)
## 
## [[3365]]
## [1] " the" " the"
## 
## [[3366]]
## character(0)
## 
## [[3367]]
## character(0)
## 
## [[3368]]
## character(0)
## 
## [[3369]]
## character(0)
## 
## [[3370]]
## [1] " the"
## 
## [[3371]]
## [1] " the" " the"
## 
## [[3372]]
## [1] " the"
## 
## [[3373]]
## character(0)
## 
## [[3374]]
## [1] " the"
## 
## [[3375]]
## [1] " the"
## 
## [[3376]]
## [1] " the" " the"
## 
## [[3377]]
## [1] " the"
## 
## [[3378]]
## character(0)
## 
## [[3379]]
## character(0)
## 
## [[3380]]
## character(0)
## 
## [[3381]]
## [1] " the" " the"
## 
## [[3382]]
## character(0)
## 
## [[3383]]
## character(0)
## 
## [[3384]]
## character(0)
## 
## [[3385]]
## character(0)
## 
## [[3386]]
## character(0)
## 
## [[3387]]
## [1] " the" " the"
## 
## [[3388]]
## [1] " the" " the"
## 
## [[3389]]
## [1] " the" " the"
## 
## [[3390]]
## character(0)
## 
## [[3391]]
## [1] " the"
## 
## [[3392]]
## [1] " the" " the"
## 
## [[3393]]
## character(0)
## 
## [[3394]]
## character(0)
## 
## [[3395]]
## [1] " the"
## 
## [[3396]]
## [1] " the"
## 
## [[3397]]
## character(0)
## 
## [[3398]]
## [1] " the" " the"
## 
## [[3399]]
## character(0)
## 
## [[3400]]
## [1] " the"
## 
## [[3401]]
## character(0)
## 
## [[3402]]
## [1] " the"
## 
## [[3403]]
## character(0)
## 
## [[3404]]
## character(0)
## 
## [[3405]]
## character(0)
## 
## [[3406]]
## [1] " the" " the" " the"
## 
## [[3407]]
## [1] " the" " the"
## 
## [[3408]]
## character(0)
## 
## [[3409]]
## [1] " the"
## 
## [[3410]]
## [1] " the"
## 
## [[3411]]
## character(0)
## 
## [[3412]]
## character(0)
## 
## [[3413]]
## character(0)
## 
## [[3414]]
## [1] " the"
## 
## [[3415]]
## character(0)
## 
## [[3416]]
## character(0)
## 
## [[3417]]
## character(0)
## 
## [[3418]]
## [1] " the"
## 
## [[3419]]
## [1] " the" " the" " the"
## 
## [[3420]]
## [1] " the"
## 
## [[3421]]
## [1] " the"
## 
## [[3422]]
## [1] " the"
## 
## [[3423]]
## [1] " the"
## 
## [[3424]]
## [1] " the"
## 
## [[3425]]
## [1] " the" " the" " the"
## 
## [[3426]]
## character(0)
## 
## [[3427]]
## character(0)
## 
## [[3428]]
## character(0)
## 
## [[3429]]
## [1] " the"
## 
## [[3430]]
## [1] " the"
## 
## [[3431]]
## [1] " the" " the"
## 
## [[3432]]
## character(0)
## 
## [[3433]]
## character(0)
## 
## [[3434]]
## character(0)
## 
## [[3435]]
## [1] " the"
## 
## [[3436]]
## [1] " the" " the"
## 
## [[3437]]
## [1] " the" " the"
## 
## [[3438]]
## [1] " the"
## 
## [[3439]]
## character(0)
## 
## [[3440]]
## character(0)
## 
## [[3441]]
## character(0)
## 
## [[3442]]
## character(0)
## 
## [[3443]]
## character(0)
## 
## [[3444]]
## character(0)
## 
## [[3445]]
## character(0)
## 
## [[3446]]
## character(0)
## 
## [[3447]]
## [1] " the" " the"
## 
## [[3448]]
## character(0)
## 
## [[3449]]
## character(0)
## 
## [[3450]]
## [1] " the"
## 
## [[3451]]
## [1] " the"
## 
## [[3452]]
## character(0)
## 
## [[3453]]
## character(0)
## 
## [[3454]]
## [1] " the" " the"
## 
## [[3455]]
## [1] " the"
## 
## [[3456]]
## character(0)
## 
## [[3457]]
## character(0)
## 
## [[3458]]
## [1] " the"
## 
## [[3459]]
## character(0)
## 
## [[3460]]
## character(0)
## 
## [[3461]]
## [1] " the"
## 
## [[3462]]
## [1] " the"
## 
## [[3463]]
## character(0)
## 
## [[3464]]
## [1] " the"
## 
## [[3465]]
## [1] " the"
## 
## [[3466]]
## [1] " the" " the" " the" " the"
## 
## [[3467]]
## [1] " the" " the" " the" " the"
## 
## [[3468]]
## [1] " the"
## 
## [[3469]]
## [1] " the" " the" " tre" " the" " the"
## 
## [[3470]]
## [1] " the" " the"
## 
## [[3471]]
## [1] " the" " the"
## 
## [[3472]]
## [1] " the"
## 
## [[3473]]
## [1] " the"
## 
## [[3474]]
## character(0)
## 
## [[3475]]
## [1] " tre"
## 
## [[3476]]
## character(0)
## 
## [[3477]]
## [1] " the"
## 
## [[3478]]
## [1] " the"
## 
## [[3479]]
## [1] " the"
## 
## [[3480]]
## character(0)
## 
## [[3481]]
## character(0)
## 
## [[3482]]
## character(0)
## 
## [[3483]]
## character(0)
## 
## [[3484]]
## character(0)
## 
## [[3485]]
## character(0)
## 
## [[3486]]
## character(0)
## 
## [[3487]]
## [1] " the" " the"
## 
## [[3488]]
## character(0)
## 
## [[3489]]
## character(0)
## 
## [[3490]]
## character(0)
## 
## [[3491]]
## [1] " the"
## 
## [[3492]]
## [1] " the"
## 
## [[3493]]
## character(0)
## 
## [[3494]]
## character(0)
## 
## [[3495]]
## character(0)
## 
## [[3496]]
## character(0)
## 
## [[3497]]
## [1] " the" " the" " the"
## 
## [[3498]]
## character(0)
## 
## [[3499]]
## character(0)
## 
## [[3500]]
## character(0)
## 
## [[3501]]
## character(0)
## 
## [[3502]]
## character(0)
## 
## [[3503]]
## [1] " the" " the" " the"
## 
## [[3504]]
## [1] " the" " the"
## 
## [[3505]]
## [1] " the" " the" " the" " the"
## 
## [[3506]]
## character(0)
## 
## [[3507]]
## character(0)
## 
## [[3508]]
## [1] " the" " the" " the"
## 
## [[3509]]
## [1] " the"
## 
## [[3510]]
## [1] " the" " the"
## 
## [[3511]]
## [1] " the"
## 
## [[3512]]
## [1] " the" " the" " the"
## 
## [[3513]]
## [1] " the" " the" " the"
## 
## [[3514]]
## [1] " the" " the"
## 
## [[3515]]
## [1] " the" " the" " the"
## 
## [[3516]]
## character(0)
## 
## [[3517]]
## [1] " the"
## 
## [[3518]]
## [1] " the"
## 
## [[3519]]
## [1] " the" " the" " the"
## 
## [[3520]]
## [1] " the"
## 
## [[3521]]
## character(0)
## 
## [[3522]]
## character(0)
## 
## [[3523]]
## character(0)
## 
## [[3524]]
## [1] " the"
## 
## [[3525]]
## character(0)
## 
## [[3526]]
## [1] " the"
## 
## [[3527]]
## [1] " the"
## 
## [[3528]]
## character(0)
## 
## [[3529]]
## [1] " the"
## 
## [[3530]]
## character(0)
## 
## [[3531]]
## [1] " the" " the" " the" " the"
## 
## [[3532]]
## character(0)
## 
## [[3533]]
## character(0)
## 
## [[3534]]
## [1] " the"
## 
## [[3535]]
## [1] " the"
## 
## [[3536]]
## [1] " the"
## 
## [[3537]]
## character(0)
## 
## [[3538]]
## [1] " the"
## 
## [[3539]]
## [1] " the" " the"
## 
## [[3540]]
## [1] " the"
## 
## [[3541]]
## [1] " the"
## 
## [[3542]]
## character(0)
## 
## [[3543]]
## [1] " the" " the"
## 
## [[3544]]
## character(0)
## 
## [[3545]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[3546]]
## character(0)
## 
## [[3547]]
## character(0)
## 
## [[3548]]
## character(0)
## 
## [[3549]]
## character(0)
## 
## [[3550]]
## [1] " the" " the" " the"
## 
## [[3551]]
## character(0)
## 
## [[3552]]
## character(0)
## 
## [[3553]]
## character(0)
## 
## [[3554]]
## character(0)
## 
## [[3555]]
## [1] " the" " the"
## 
## [[3556]]
## [1] " the" " the" " the"
## 
## [[3557]]
## character(0)
## 
## [[3558]]
## [1] " the"
## 
## [[3559]]
## [1] " the"
## 
## [[3560]]
## [1] " the"
## 
## [[3561]]
## [1] " the" " the"
## 
## [[3562]]
## [1] " the" " the"
## 
## [[3563]]
## [1] " the" " the" " the" " the"
## 
## [[3564]]
## [1] " the"
## 
## [[3565]]
## [1] " the" " the" " the"
## 
## [[3566]]
## character(0)
## 
## [[3567]]
## character(0)
## 
## [[3568]]
## character(0)
## 
## [[3569]]
## [1] " the" " the"
## 
## [[3570]]
## character(0)
## 
## [[3571]]
## [1] " the" " the" " the" " the"
## 
## [[3572]]
## character(0)
## 
## [[3573]]
## character(0)
## 
## [[3574]]
## [1] " the"
## 
## [[3575]]
## character(0)
## 
## [[3576]]
## character(0)
## 
## [[3577]]
## character(0)
## 
## [[3578]]
## [1] " the" " the" " the"
## 
## [[3579]]
## character(0)
## 
## [[3580]]
## [1] " the" " the" " the" " the"
## 
## [[3581]]
## [1] " the" " the" " the"
## 
## [[3582]]
## character(0)
## 
## [[3583]]
## character(0)
## 
## [[3584]]
## [1] " the" " the" " the"
## 
## [[3585]]
## [1] " the"
## 
## [[3586]]
## character(0)
## 
## [[3587]]
## [1] " the" " the" " the"
## 
## [[3588]]
## [1] " the"
## 
## [[3589]]
## [1] " the"
## 
## [[3590]]
## character(0)
## 
## [[3591]]
## [1] " the" " the" " the"
## 
## [[3592]]
## character(0)
## 
## [[3593]]
## [1] " the"
## 
## [[3594]]
## character(0)
## 
## [[3595]]
## character(0)
## 
## [[3596]]
## [1] " the"
## 
## [[3597]]
## [1] " the" " the" " the" " the"
## 
## [[3598]]
## character(0)
## 
## [[3599]]
## character(0)
## 
## [[3600]]
## [1] " the" " the"
## 
## [[3601]]
## [1] " the"
## 
## [[3602]]
## [1] " the"
## 
## [[3603]]
## [1] " the"
## 
## [[3604]]
## [1] " the" " the"
## 
## [[3605]]
## character(0)
## 
## [[3606]]
## character(0)
## 
## [[3607]]
## [1] " the" " the" " the"
## 
## [[3608]]
## character(0)
## 
## [[3609]]
## [1] " the"
## 
## [[3610]]
## [1] " the" " the"
## 
## [[3611]]
## [1] " the" " the" " the" " the" " the" " the" " the"
## 
## [[3612]]
## [1] " the"
## 
## [[3613]]
## [1] " the" " the" " the"
## 
## [[3614]]
## character(0)
## 
## [[3615]]
## [1] " the"
## 
## [[3616]]
## [1] " the"
## 
## [[3617]]
## [1] " the"
## 
## [[3618]]
## character(0)
## 
## [[3619]]
## character(0)
## 
## [[3620]]
## [1] " the"
## 
## [[3621]]
## [1] " the"
## 
## [[3622]]
## [1] " the"
## 
## [[3623]]
## [1] " the"
## 
## [[3624]]
## character(0)
## 
## [[3625]]
## character(0)
## 
## [[3626]]
## [1] " the" " tre" " twe" " the"
## 
## [[3627]]
## [1] " the"
## 
## [[3628]]
## [1] " the"
## 
## [[3629]]
## [1] " the"
## 
## [[3630]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3631]]
## character(0)
## 
## [[3632]]
## character(0)
## 
## [[3633]]
## [1] " the"
## 
## [[3634]]
## [1] " the" " the"
## 
## [[3635]]
## [1] " the"
## 
## [[3636]]
## [1] " the" " the"
## 
## [[3637]]
## character(0)
## 
## [[3638]]
## [1] " the" " the"
## 
## [[3639]]
## [1] " the" " the" " the" " the"
## 
## [[3640]]
## character(0)
## 
## [[3641]]
## [1] " the"
## 
## [[3642]]
## [1] " the" " the"
## 
## [[3643]]
## [1] " the" " the"
## 
## [[3644]]
## character(0)
## 
## [[3645]]
## [1] " the"
## 
## [[3646]]
## character(0)
## 
## [[3647]]
## [1] " the"
## 
## [[3648]]
## character(0)
## 
## [[3649]]
## [1] " the"
## 
## [[3650]]
## character(0)
## 
## [[3651]]
## character(0)
## 
## [[3652]]
## [1] " the"
## 
## [[3653]]
## character(0)
## 
## [[3654]]
## character(0)
## 
## [[3655]]
## character(0)
## 
## [[3656]]
## [1] " the"
## 
## [[3657]]
## [1] " twe"
## 
## [[3658]]
## character(0)
## 
## [[3659]]
## [1] " the"
## 
## [[3660]]
## [1] " the"
## 
## [[3661]]
## [1] " the" " the"
## 
## [[3662]]
## [1] " the"
## 
## [[3663]]
## character(0)
## 
## [[3664]]
## character(0)
## 
## [[3665]]
## [1] " the"
## 
## [[3666]]
## [1] " the" " the" " the"
## 
## [[3667]]
## character(0)
## 
## [[3668]]
## [1] " the" " the"
## 
## [[3669]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[3670]]
## [1] " the" " the" " the"
## 
## [[3671]]
## [1] " the"
## 
## [[3672]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3673]]
## [1] " the" " the"
## 
## [[3674]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3675]]
## [1] " the"
## 
## [[3676]]
## character(0)
## 
## [[3677]]
## [1] " the" " tre"
## 
## [[3678]]
## character(0)
## 
## [[3679]]
## [1] " the" " the" " the"
## 
## [[3680]]
## [1] " the"
## 
## [[3681]]
## character(0)
## 
## [[3682]]
## [1] " the" " the"
## 
## [[3683]]
## character(0)
## 
## [[3684]]
## [1] " the"
## 
## [[3685]]
## [1] " the" " the" " the"
## 
## [[3686]]
## character(0)
## 
## [[3687]]
## character(0)
## 
## [[3688]]
## [1] " the"
## 
## [[3689]]
## character(0)
## 
## [[3690]]
## [1] " the" " the"
## 
## [[3691]]
## [1] " the" " the"
## 
## [[3692]]
## character(0)
## 
## [[3693]]
## [1] " the"
## 
## [[3694]]
## character(0)
## 
## [[3695]]
## [1] " the" " the"
## 
## [[3696]]
## [1] " the" " the"
## 
## [[3697]]
## character(0)
## 
## [[3698]]
## character(0)
## 
## [[3699]]
## character(0)
## 
## [[3700]]
## character(0)
## 
## [[3701]]
## character(0)
## 
## [[3702]]
## [1] " the" " the" " the"
## 
## [[3703]]
## [1] " the"
## 
## [[3704]]
## [1] " the" " the"
## 
## [[3705]]
## [1] " the" " the"
## 
## [[3706]]
## character(0)
## 
## [[3707]]
## [1] " the" " the" " the" " the"
## 
## [[3708]]
## [1] " the"
## 
## [[3709]]
## character(0)
## 
## [[3710]]
## character(0)
## 
## [[3711]]
## character(0)
## 
## [[3712]]
## [1] " the" " the"
## 
## [[3713]]
## character(0)
## 
## [[3714]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[3715]]
## character(0)
## 
## [[3716]]
## character(0)
## 
## [[3717]]
## character(0)
## 
## [[3718]]
## [1] " the" " the"
## 
## [[3719]]
## character(0)
## 
## [[3720]]
## character(0)
## 
## [[3721]]
## character(0)
## 
## [[3722]]
## [1] " the" " the"
## 
## [[3723]]
## character(0)
## 
## [[3724]]
## character(0)
## 
## [[3725]]
## [1] " the"
## 
## [[3726]]
## character(0)
## 
## [[3727]]
## [1] " the"
## 
## [[3728]]
## character(0)
## 
## [[3729]]
## [1] " the" " the"
## 
## [[3730]]
## [1] " the"
## 
## [[3731]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3732]]
## [1] " the"
## 
## [[3733]]
## character(0)
## 
## [[3734]]
## [1] " the"
## 
## [[3735]]
## [1] " the"
## 
## [[3736]]
## [1] " the" " the"
## 
## [[3737]]
## [1] " the" " the" " the"
## 
## [[3738]]
## character(0)
## 
## [[3739]]
## character(0)
## 
## [[3740]]
## [1] " the" " the" " the" " the"
## 
## [[3741]]
## [1] " the" " the"
## 
## [[3742]]
## [1] " the"
## 
## [[3743]]
## character(0)
## 
## [[3744]]
## character(0)
## 
## [[3745]]
## [1] " the"
## 
## [[3746]]
## [1] " the" " the"
## 
## [[3747]]
## character(0)
## 
## [[3748]]
## [1] " the" " the"
## 
## [[3749]]
## character(0)
## 
## [[3750]]
## character(0)
## 
## [[3751]]
## [1] " the"
## 
## [[3752]]
## [1] " the" " the"
## 
## [[3753]]
## character(0)
## 
## [[3754]]
## character(0)
## 
## [[3755]]
## [1] " the" " the" " the"
## 
## [[3756]]
## character(0)
## 
## [[3757]]
## [1] " the" " the" " tie"
## 
## [[3758]]
## [1] " the"
## 
## [[3759]]
## [1] " the"
## 
## [[3760]]
## character(0)
## 
## [[3761]]
## character(0)
## 
## [[3762]]
## [1] " the" " the" " the"
## 
## [[3763]]
## [1] " the"
## 
## [[3764]]
## character(0)
## 
## [[3765]]
## character(0)
## 
## [[3766]]
## [1] " the" " the" " the"
## 
## [[3767]]
## character(0)
## 
## [[3768]]
## character(0)
## 
## [[3769]]
## [1] " the"
## 
## [[3770]]
## [1] " the"
## 
## [[3771]]
## character(0)
## 
## [[3772]]
## [1] " the"
## 
## [[3773]]
## character(0)
## 
## [[3774]]
## character(0)
## 
## [[3775]]
## [1] " the" " the"
## 
## [[3776]]
## character(0)
## 
## [[3777]]
## character(0)
## 
## [[3778]]
## character(0)
## 
## [[3779]]
## [1] " the"
## 
## [[3780]]
## character(0)
## 
## [[3781]]
## character(0)
## 
## [[3782]]
## [1] " the"
## 
## [[3783]]
## character(0)
## 
## [[3784]]
## character(0)
## 
## [[3785]]
## [1] " the" " the" " the"
## 
## [[3786]]
## character(0)
## 
## [[3787]]
## [1] " the" " the" " the"
## 
## [[3788]]
## [1] " the"
## 
## [[3789]]
## [1] " the"
## 
## [[3790]]
## [1] " the" " the" " the" " the"
## 
## [[3791]]
## character(0)
## 
## [[3792]]
## character(0)
## 
## [[3793]]
## character(0)
## 
## [[3794]]
## character(0)
## 
## [[3795]]
## [1] " the"
## 
## [[3796]]
## [1] " the" " the" " the" " the"
## 
## [[3797]]
## character(0)
## 
## [[3798]]
## character(0)
## 
## [[3799]]
## character(0)
## 
## [[3800]]
## character(0)
## 
## [[3801]]
## character(0)
## 
## [[3802]]
## character(0)
## 
## [[3803]]
## [1] " the"
## 
## [[3804]]
## [1] " the"
## 
## [[3805]]
## character(0)
## 
## [[3806]]
## character(0)
## 
## [[3807]]
## [1] " the" " the"
## 
## [[3808]]
## character(0)
## 
## [[3809]]
## [1] " the" " the"
## 
## [[3810]]
## [1] " the" " the" " the"
## 
## [[3811]]
## character(0)
## 
## [[3812]]
## [1] " the"
## 
## [[3813]]
## [1] " the"
## 
## [[3814]]
## character(0)
## 
## [[3815]]
## character(0)
## 
## [[3816]]
## [1] " the"
## 
## [[3817]]
## character(0)
## 
## [[3818]]
## [1] " the" " the"
## 
## [[3819]]
## [1] " the" " the" " the" " the"
## 
## [[3820]]
## character(0)
## 
## [[3821]]
## [1] " the" " the" " tre" " the"
## 
## [[3822]]
## character(0)
## 
## [[3823]]
## character(0)
## 
## [[3824]]
## [1] " the"
## 
## [[3825]]
## [1] " the"
## 
## [[3826]]
## character(0)
## 
## [[3827]]
## [1] " the"
## 
## [[3828]]
## character(0)
## 
## [[3829]]
## [1] " the"
## 
## [[3830]]
## character(0)
## 
## [[3831]]
## [1] " the"
## 
## [[3832]]
## [1] " the"
## 
## [[3833]]
## character(0)
## 
## [[3834]]
## character(0)
## 
## [[3835]]
## [1] " the"
## 
## [[3836]]
## character(0)
## 
## [[3837]]
## character(0)
## 
## [[3838]]
## [1] " the" " the"
## 
## [[3839]]
## character(0)
## 
## [[3840]]
## [1] " the" " the" " the"
## 
## [[3841]]
## character(0)
## 
## [[3842]]
## [1] " the"
## 
## [[3843]]
## [1] " the" " the" " the"
## 
## [[3844]]
## character(0)
## 
## [[3845]]
## [1] " the" " the"
## 
## [[3846]]
## character(0)
## 
## [[3847]]
## [1] " the" " the"
## 
## [[3848]]
## [1] " the" " the" " the" " the"
## 
## [[3849]]
## [1] " the" " the"
## 
## [[3850]]
## character(0)
## 
## [[3851]]
## [1] " the" " the" " the" " the"
## 
## [[3852]]
## character(0)
## 
## [[3853]]
## [1] " the" " the"
## 
## [[3854]]
## [1] " the" " the"
## 
## [[3855]]
## character(0)
## 
## [[3856]]
## character(0)
## 
## [[3857]]
## character(0)
## 
## [[3858]]
## character(0)
## 
## [[3859]]
## [1] " the"
## 
## [[3860]]
## [1] " the" " the"
## 
## [[3861]]
## character(0)
## 
## [[3862]]
## [1] " the" " the" " the"
## 
## [[3863]]
## character(0)
## 
## [[3864]]
## [1] " the" " the"
## 
## [[3865]]
## [1] " the"
## 
## [[3866]]
## character(0)
## 
## [[3867]]
## [1] " the" " the"
## 
## [[3868]]
## character(0)
## 
## [[3869]]
## character(0)
## 
## [[3870]]
## character(0)
## 
## [[3871]]
## [1] " the" " the"
## 
## [[3872]]
## character(0)
## 
## [[3873]]
## character(0)
## 
## [[3874]]
## [1] " the"
## 
## [[3875]]
## [1] " the"
## 
## [[3876]]
## [1] " the"
## 
## [[3877]]
## character(0)
## 
## [[3878]]
## [1] " the"
## 
## [[3879]]
## [1] " the"
## 
## [[3880]]
## [1] " tee" " the"
## 
## [[3881]]
## character(0)
## 
## [[3882]]
## character(0)
## 
## [[3883]]
## [1] " the" " the" " the"
## 
## [[3884]]
## character(0)
## 
## [[3885]]
## [1] " the"
## 
## [[3886]]
## [1] " the" " the" " the"
## 
## [[3887]]
## [1] " the" " the" " the"
## 
## [[3888]]
## character(0)
## 
## [[3889]]
## [1] " the" " the"
## 
## [[3890]]
## [1] " the"
## 
## [[3891]]
## [1] " the" " the"
## 
## [[3892]]
## [1] " the"
## 
## [[3893]]
## [1] " the"
## 
## [[3894]]
## [1] " the" " the"
## 
## [[3895]]
## [1] " the" " tre" " tre"
## 
## [[3896]]
## [1] " the" " the"
## 
## [[3897]]
## [1] " the" " the"
## 
## [[3898]]
## [1] " the"
## 
## [[3899]]
## character(0)
## 
## [[3900]]
## character(0)
## 
## [[3901]]
## [1] " the" " the" " the" " the" " the"
## 
## [[3902]]
## character(0)
## 
## [[3903]]
## [1] " the" " the"
## 
## [[3904]]
## character(0)
## 
## [[3905]]
## [1] " the"
## 
## [[3906]]
## character(0)
## 
## [[3907]]
## [1] " the"
## 
## [[3908]]
## [1] " the"
## 
## [[3909]]
## [1] " the"
## 
## [[3910]]
## [1] " the"
## 
## [[3911]]
## [1] " the"
## 
## [[3912]]
## [1] " the"
## 
## [[3913]]
## character(0)
## 
## [[3914]]
## [1] " the" " the" " the"
## 
## [[3915]]
## [1] " the" " the"
## 
## [[3916]]
## [1] " the" " the"
## 
## [[3917]]
## [1] " the" " the" " the" " the"
## 
## [[3918]]
## character(0)
## 
## [[3919]]
## character(0)
## 
## [[3920]]
## [1] " the"
## 
## [[3921]]
## character(0)
## 
## [[3922]]
## [1] " the" " the"
## 
## [[3923]]
## [1] " the" " the"
## 
## [[3924]]
## [1] " the" " the"
## 
## [[3925]]
## character(0)
## 
## [[3926]]
## [1] " the" " the" " the"
## 
## [[3927]]
## [1] " the"
## 
## [[3928]]
## [1] " the"
## 
## [[3929]]
## [1] " the" " the" " the"
## 
## [[3930]]
## character(0)
## 
## [[3931]]
## character(0)
## 
## [[3932]]
## [1] " the"
## 
## [[3933]]
## character(0)
## 
## [[3934]]
## [1] " twe" " the" " the" " the"
## 
## [[3935]]
## [1] " the"
## 
## [[3936]]
## [1] " the" " the"
## 
## [[3937]]
## [1] " the"
## 
## [[3938]]
## character(0)
## 
## [[3939]]
## [1] " the" " the"
## 
## [[3940]]
## character(0)
## 
## [[3941]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[3942]]
## character(0)
## 
## [[3943]]
## character(0)
## 
## [[3944]]
## [1] " the" " the" " the"
## 
## [[3945]]
## character(0)
## 
## [[3946]]
## [1] " the"
## 
## [[3947]]
## character(0)
## 
## [[3948]]
## character(0)
## 
## [[3949]]
## [1] " the" " the"
## 
## [[3950]]
## [1] " the"
## 
## [[3951]]
## character(0)
## 
## [[3952]]
## [1] " the" " the"
## 
## [[3953]]
## [1] " the" " the" " the" " the"
## 
## [[3954]]
## character(0)
## 
## [[3955]]
## [1] " the"
## 
## [[3956]]
## [1] " the" " the" " the" " the"
## 
## [[3957]]
## character(0)
## 
## [[3958]]
## [1] " the" " the"
## 
## [[3959]]
## [1] " the"
## 
## [[3960]]
## [1] " the"
## 
## [[3961]]
## character(0)
## 
## [[3962]]
## [1] " the"
## 
## [[3963]]
## [1] " the"
## 
## [[3964]]
## character(0)
## 
## [[3965]]
## character(0)
## 
## [[3966]]
## character(0)
## 
## [[3967]]
## character(0)
## 
## [[3968]]
## character(0)
## 
## [[3969]]
## [1] " the" " the"
## 
## [[3970]]
## [1] " the" " the"
## 
## [[3971]]
## [1] " the"
## 
## [[3972]]
## [1] " the" " the" " the"
## 
## [[3973]]
## [1] " the"
## 
## [[3974]]
## character(0)
## 
## [[3975]]
## [1] " the"
## 
## [[3976]]
## [1] " the"
## 
## [[3977]]
## character(0)
## 
## [[3978]]
## character(0)
## 
## [[3979]]
## [1] " the" " the"
## 
## [[3980]]
## character(0)
## 
## [[3981]]
## [1] " the" " the"
## 
## [[3982]]
## [1] " the"
## 
## [[3983]]
## character(0)
## 
## [[3984]]
## [1] " the"
## 
## [[3985]]
## [1] " the"
## 
## [[3986]]
## [1] " the"
## 
## [[3987]]
## [1] " the"
## 
## [[3988]]
## character(0)
## 
## [[3989]]
## [1] " the" " the"
## 
## [[3990]]
## character(0)
## 
## [[3991]]
## character(0)
## 
## [[3992]]
## [1] " the" " the"
## 
## [[3993]]
## [1] " the" " the" " the"
## 
## [[3994]]
## [1] " the"
## 
## [[3995]]
## [1] " the"
## 
## [[3996]]
## character(0)
## 
## [[3997]]
## character(0)
## 
## [[3998]]
## character(0)
## 
## [[3999]]
## character(0)
## 
## [[4000]]
## [1] " the" " the" " the" " the"
## 
## [[4001]]
## [1] " the" " the"
## 
## [[4002]]
## character(0)
## 
## [[4003]]
## [1] " the"
## 
## [[4004]]
## character(0)
## 
## [[4005]]
## [1] " the"
## 
## [[4006]]
## [1] " the"
## 
## [[4007]]
## character(0)
## 
## [[4008]]
## [1] " the"
## 
## [[4009]]
## [1] " the" " the"
## 
## [[4010]]
## character(0)
## 
## [[4011]]
## [1] " the"
## 
## [[4012]]
## [1] " the" " the" " the"
## 
## [[4013]]
## character(0)
## 
## [[4014]]
## [1] " the"
## 
## [[4015]]
## character(0)
## 
## [[4016]]
## character(0)
## 
## [[4017]]
## character(0)
## 
## [[4018]]
## [1] " the"
## 
## [[4019]]
## [1] " the" " the"
## 
## [[4020]]
## [1] " the" " the" " the" " the"
## 
## [[4021]]
## [1] " the" " the"
## 
## [[4022]]
## [1] " the" " the" " the" " the"
## 
## [[4023]]
## character(0)
## 
## [[4024]]
## [1] " the"
## 
## [[4025]]
## character(0)
## 
## [[4026]]
## character(0)
## 
## [[4027]]
## [1] " the" " the"
## 
## [[4028]]
## [1] " the" " the"
## 
## [[4029]]
## [1] " the"
## 
## [[4030]]
## [1] " the" " tre"
## 
## [[4031]]
## [1] " the"
## 
## [[4032]]
## [1] " the"
## 
## [[4033]]
## character(0)
## 
## [[4034]]
## [1] " the" " the"
## 
## [[4035]]
## character(0)
## 
## [[4036]]
## character(0)
## 
## [[4037]]
## [1] " the"
## 
## [[4038]]
## [1] " the"
## 
## [[4039]]
## [1] " the"
## 
## [[4040]]
## [1] " the" " the"
## 
## [[4041]]
## character(0)
## 
## [[4042]]
## [1] " the"
## 
## [[4043]]
## [1] " the" " the"
## 
## [[4044]]
## [1] " the" " the" " the"
## 
## [[4045]]
## character(0)
## 
## [[4046]]
## [1] " the" " the"
## 
## [[4047]]
## character(0)
## 
## [[4048]]
## [1] " the" " the" " the"
## 
## [[4049]]
## character(0)
## 
## [[4050]]
## character(0)
## 
## [[4051]]
## [1] " the"
## 
## [[4052]]
## character(0)
## 
## [[4053]]
## character(0)
## 
## [[4054]]
## character(0)
## 
## [[4055]]
## [1] " the" " the" " the"
## 
## [[4056]]
## [1] " the"
## 
## [[4057]]
## [1] " the" " the"
## 
## [[4058]]
## character(0)
## 
## [[4059]]
## [1] " the" " the" " the"
## 
## [[4060]]
## [1] " the" " the"
## 
## [[4061]]
## [1] " the"
## 
## [[4062]]
## character(0)
## 
## [[4063]]
## [1] " the"
## 
## [[4064]]
## [1] " the" " the"
## 
## [[4065]]
## character(0)
## 
## [[4066]]
## [1] " the"
## 
## [[4067]]
## [1] " the"
## 
## [[4068]]
## character(0)
## 
## [[4069]]
## character(0)
## 
## [[4070]]
## [1] " the"
## 
## [[4071]]
## [1] " the" " the"
## 
## [[4072]]
## [1] " the" " the"
## 
## [[4073]]
## [1] " the" " the"
## 
## [[4074]]
## [1] " the" " the"
## 
## [[4075]]
## character(0)
## 
## [[4076]]
## character(0)
## 
## [[4077]]
## [1] " the"
## 
## [[4078]]
## [1] " the"
## 
## [[4079]]
## [1] " the"
## 
## [[4080]]
## [1] " the" " the"
## 
## [[4081]]
## [1] " the"
## 
## [[4082]]
## character(0)
## 
## [[4083]]
## character(0)
## 
## [[4084]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4085]]
## [1] " the" " the"
## 
## [[4086]]
## character(0)
## 
## [[4087]]
## [1] " the" " the"
## 
## [[4088]]
## [1] " the"
## 
## [[4089]]
## character(0)
## 
## [[4090]]
## character(0)
## 
## [[4091]]
## character(0)
## 
## [[4092]]
## character(0)
## 
## [[4093]]
## [1] " the" " the"
## 
## [[4094]]
## character(0)
## 
## [[4095]]
## character(0)
## 
## [[4096]]
## [1] " the" " the"
## 
## [[4097]]
## [1] " the"
## 
## [[4098]]
## [1] " the" " the"
## 
## [[4099]]
## [1] " the"
## 
## [[4100]]
## [1] " the" " the"
## 
## [[4101]]
## character(0)
## 
## [[4102]]
## [1] " the" " the" " the" " the"
## 
## [[4103]]
## [1] " the"
## 
## [[4104]]
## character(0)
## 
## [[4105]]
## [1] " the" " the"
## 
## [[4106]]
## [1] " the"
## 
## [[4107]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4108]]
## character(0)
## 
## [[4109]]
## character(0)
## 
## [[4110]]
## character(0)
## 
## [[4111]]
## [1] " the" " the"
## 
## [[4112]]
## character(0)
## 
## [[4113]]
## character(0)
## 
## [[4114]]
## character(0)
## 
## [[4115]]
## [1] " the"
## 
## [[4116]]
## [1] " the"
## 
## [[4117]]
## [1] " the"
## 
## [[4118]]
## [1] " the"
## 
## [[4119]]
## [1] " the" " the" " the" " the"
## 
## [[4120]]
## [1] " the" " the"
## 
## [[4121]]
## [1] " the"
## 
## [[4122]]
## [1] " the" " the" " the" " the"
## 
## [[4123]]
## [1] " the"
## 
## [[4124]]
## character(0)
## 
## [[4125]]
## character(0)
## 
## [[4126]]
## character(0)
## 
## [[4127]]
## [1] " the" " the" " the" " the"
## 
## [[4128]]
## character(0)
## 
## [[4129]]
## [1] " the" " the" " the" " the"
## 
## [[4130]]
## [1] " the"
## 
## [[4131]]
## character(0)
## 
## [[4132]]
## character(0)
## 
## [[4133]]
## [1] " the"
## 
## [[4134]]
## character(0)
## 
## [[4135]]
## [1] " the" " the"
## 
## [[4136]]
## [1] " the" " tre" " the"
## 
## [[4137]]
## character(0)
## 
## [[4138]]
## [1] " the" " the" " the" " the"
## 
## [[4139]]
## [1] " the"
## 
## [[4140]]
## character(0)
## 
## [[4141]]
## character(0)
## 
## [[4142]]
## character(0)
## 
## [[4143]]
## character(0)
## 
## [[4144]]
## character(0)
## 
## [[4145]]
## character(0)
## 
## [[4146]]
## [1] " the"
## 
## [[4147]]
## [1] " the"
## 
## [[4148]]
## character(0)
## 
## [[4149]]
## [1] " the" " the" " the"
## 
## [[4150]]
## character(0)
## 
## [[4151]]
## character(0)
## 
## [[4152]]
## character(0)
## 
## [[4153]]
## character(0)
## 
## [[4154]]
## [1] " the"
## 
## [[4155]]
## character(0)
## 
## [[4156]]
## [1] " the" " the"
## 
## [[4157]]
## [1] " the" " the" " the"
## 
## [[4158]]
## [1] " tre"
## 
## [[4159]]
## character(0)
## 
## [[4160]]
## [1] " the" " the" " the"
## 
## [[4161]]
## character(0)
## 
## [[4162]]
## [1] " the" " the"
## 
## [[4163]]
## character(0)
## 
## [[4164]]
## character(0)
## 
## [[4165]]
## character(0)
## 
## [[4166]]
## character(0)
## 
## [[4167]]
## [1] " the"
## 
## [[4168]]
## character(0)
## 
## [[4169]]
## [1] " the" " the"
## 
## [[4170]]
## character(0)
## 
## [[4171]]
## character(0)
## 
## [[4172]]
## character(0)
## 
## [[4173]]
## character(0)
## 
## [[4174]]
## character(0)
## 
## [[4175]]
## [1] " the"
## 
## [[4176]]
## [1] " the" " the"
## 
## [[4177]]
## character(0)
## 
## [[4178]]
## character(0)
## 
## [[4179]]
## character(0)
## 
## [[4180]]
## [1] " the"
## 
## [[4181]]
## character(0)
## 
## [[4182]]
## [1] " the" " the"
## 
## [[4183]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4184]]
## [1] " the"
## 
## [[4185]]
## character(0)
## 
## [[4186]]
## [1] " the"
## 
## [[4187]]
## character(0)
## 
## [[4188]]
## [1] " the"
## 
## [[4189]]
## [1] " the" " the"
## 
## [[4190]]
## character(0)
## 
## [[4191]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4192]]
## character(0)
## 
## [[4193]]
## [1] " the"
## 
## [[4194]]
## [1] " the" " the"
## 
## [[4195]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4196]]
## [1] " the"
## 
## [[4197]]
## [1] " the" " the"
## 
## [[4198]]
## character(0)
## 
## [[4199]]
## character(0)
## 
## [[4200]]
## [1] " the"
## 
## [[4201]]
## character(0)
## 
## [[4202]]
## character(0)
## 
## [[4203]]
## character(0)
## 
## [[4204]]
## [1] " the" " the" " the"
## 
## [[4205]]
## character(0)
## 
## [[4206]]
## [1] " the"
## 
## [[4207]]
## character(0)
## 
## [[4208]]
## character(0)
## 
## [[4209]]
## [1] " the"
## 
## [[4210]]
## [1] " the" " the" " the"
## 
## [[4211]]
## [1] " tre"
## 
## [[4212]]
## character(0)
## 
## [[4213]]
## [1] " the"
## 
## [[4214]]
## [1] " the" " the"
## 
## [[4215]]
## character(0)
## 
## [[4216]]
## character(0)
## 
## [[4217]]
## character(0)
## 
## [[4218]]
## [1] " the" " the" " the"
## 
## [[4219]]
## [1] " tre"
## 
## [[4220]]
## character(0)
## 
## [[4221]]
## character(0)
## 
## [[4222]]
## character(0)
## 
## [[4223]]
## [1] " the" " the"
## 
## [[4224]]
## character(0)
## 
## [[4225]]
## [1] " the"
## 
## [[4226]]
## character(0)
## 
## [[4227]]
## character(0)
## 
## [[4228]]
## [1] " the"
## 
## [[4229]]
## [1] " the"
## 
## [[4230]]
## character(0)
## 
## [[4231]]
## [1] " the"
## 
## [[4232]]
## [1] " the"
## 
## [[4233]]
## character(0)
## 
## [[4234]]
## character(0)
## 
## [[4235]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[4236]]
## [1] " the"
## 
## [[4237]]
## character(0)
## 
## [[4238]]
## [1] " the"
## 
## [[4239]]
## character(0)
## 
## [[4240]]
## character(0)
## 
## [[4241]]
## character(0)
## 
## [[4242]]
## character(0)
## 
## [[4243]]
## [1] " the" " the"
## 
## [[4244]]
## [1] " the" " the"
## 
## [[4245]]
## [1] " the" " the"
## 
## [[4246]]
## character(0)
## 
## [[4247]]
## [1] " the" " the"
## 
## [[4248]]
## [1] " the" " the" " the" " the"
## 
## [[4249]]
## [1] " the" " the"
## 
## [[4250]]
## character(0)
## 
## [[4251]]
## [1] " the" " the" " the"
## 
## [[4252]]
## [1] " the" " the" " the"
## 
## [[4253]]
## [1] " the" " the" " the" " the"
## 
## [[4254]]
## character(0)
## 
## [[4255]]
## character(0)
## 
## [[4256]]
## character(0)
## 
## [[4257]]
## [1] " the"
## 
## [[4258]]
## [1] " the"
## 
## [[4259]]
## [1] " the" " the" " the"
## 
## [[4260]]
## character(0)
## 
## [[4261]]
## [1] " the"
## 
## [[4262]]
## character(0)
## 
## [[4263]]
## character(0)
## 
## [[4264]]
## character(0)
## 
## [[4265]]
## [1] " the"
## 
## [[4266]]
## [1] " the" " the" " the"
## 
## [[4267]]
## character(0)
## 
## [[4268]]
## [1] " the" " the" " the"
## 
## [[4269]]
## character(0)
## 
## [[4270]]
## [1] " the" " the"
## 
## [[4271]]
## [1] " the"
## 
## [[4272]]
## character(0)
## 
## [[4273]]
## character(0)
## 
## [[4274]]
## [1] " the" " the"
## 
## [[4275]]
## character(0)
## 
## [[4276]]
## [1] " the" " the" " the" " the"
## 
## [[4277]]
## [1] " the" " the"
## 
## [[4278]]
## [1] " the"
## 
## [[4279]]
## character(0)
## 
## [[4280]]
## [1] " the"
## 
## [[4281]]
## character(0)
## 
## [[4282]]
## [1] " the"
## 
## [[4283]]
## [1] " the" " the" " the"
## 
## [[4284]]
## [1] " the" " the" " the"
## 
## [[4285]]
## character(0)
## 
## [[4286]]
## character(0)
## 
## [[4287]]
## [1] " the"
## 
## [[4288]]
## character(0)
## 
## [[4289]]
## character(0)
## 
## [[4290]]
## [1] " the"
## 
## [[4291]]
## character(0)
## 
## [[4292]]
## character(0)
## 
## [[4293]]
## character(0)
## 
## [[4294]]
## [1] " the" " the" " the"
## 
## [[4295]]
## [1] " the" " the" " the"
## 
## [[4296]]
## [1] " the" " the"
## 
## [[4297]]
## [1] " the"
## 
## [[4298]]
## character(0)
## 
## [[4299]]
## character(0)
## 
## [[4300]]
## [1] " the" " the" " the"
## 
## [[4301]]
## character(0)
## 
## [[4302]]
## [1] " the"
## 
## [[4303]]
## character(0)
## 
## [[4304]]
## [1] " the"
## 
## [[4305]]
## character(0)
## 
## [[4306]]
## [1] " the"
## 
## [[4307]]
## character(0)
## 
## [[4308]]
## [1] " the"
## 
## [[4309]]
## character(0)
## 
## [[4310]]
## [1] " the" " the" " the" " the"
## 
## [[4311]]
## [1] " the"
## 
## [[4312]]
## character(0)
## 
## [[4313]]
## [1] " the"
## 
## [[4314]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4315]]
## [1] " the" " the"
## 
## [[4316]]
## character(0)
## 
## [[4317]]
## character(0)
## 
## [[4318]]
## character(0)
## 
## [[4319]]
## character(0)
## 
## [[4320]]
## character(0)
## 
## [[4321]]
## [1] " the"
## 
## [[4322]]
## [1] " the" " the" " the"
## 
## [[4323]]
## character(0)
## 
## [[4324]]
## character(0)
## 
## [[4325]]
## character(0)
## 
## [[4326]]
## [1] " the" " the" " the"
## 
## [[4327]]
## [1] " the" " the" " the"
## 
## [[4328]]
## character(0)
## 
## [[4329]]
## [1] " the" " the"
## 
## [[4330]]
## [1] " the"
## 
## [[4331]]
## character(0)
## 
## [[4332]]
## character(0)
## 
## [[4333]]
## character(0)
## 
## [[4334]]
## character(0)
## 
## [[4335]]
## [1] " the" " the"
## 
## [[4336]]
## [1] " the"
## 
## [[4337]]
## character(0)
## 
## [[4338]]
## character(0)
## 
## [[4339]]
## character(0)
## 
## [[4340]]
## [1] " the"
## 
## [[4341]]
## character(0)
## 
## [[4342]]
## character(0)
## 
## [[4343]]
## character(0)
## 
## [[4344]]
## character(0)
## 
## [[4345]]
## [1] " the"
## 
## [[4346]]
## [1] " the" " the"
## 
## [[4347]]
## [1] " the"
## 
## [[4348]]
## [1] " the" " the"
## 
## [[4349]]
## [1] " the"
## 
## [[4350]]
## character(0)
## 
## [[4351]]
## character(0)
## 
## [[4352]]
## [1] " the"
## 
## [[4353]]
## character(0)
## 
## [[4354]]
## character(0)
## 
## [[4355]]
## character(0)
## 
## [[4356]]
## character(0)
## 
## [[4357]]
## character(0)
## 
## [[4358]]
## character(0)
## 
## [[4359]]
## [1] " the" " the"
## 
## [[4360]]
## character(0)
## 
## [[4361]]
## [1] " the"
## 
## [[4362]]
## character(0)
## 
## [[4363]]
## [1] " the" " the" " the"
## 
## [[4364]]
## character(0)
## 
## [[4365]]
## [1] " the"
## 
## [[4366]]
## character(0)
## 
## [[4367]]
## [1] " the" " the" " the" " the"
## 
## [[4368]]
## [1] " the" " the"
## 
## [[4369]]
## [1] " the" " the" " the"
## 
## [[4370]]
## character(0)
## 
## [[4371]]
## character(0)
## 
## [[4372]]
## [1] " the"
## 
## [[4373]]
## character(0)
## 
## [[4374]]
## [1] " the" " the"
## 
## [[4375]]
## character(0)
## 
## [[4376]]
## character(0)
## 
## [[4377]]
## character(0)
## 
## [[4378]]
## [1] " the"
## 
## [[4379]]
## [1] " the" " the"
## 
## [[4380]]
## character(0)
## 
## [[4381]]
## [1] " the"
## 
## [[4382]]
## [1] " the"
## 
## [[4383]]
## [1] " the" " the"
## 
## [[4384]]
## character(0)
## 
## [[4385]]
## [1] " the"
## 
## [[4386]]
## character(0)
## 
## [[4387]]
## character(0)
## 
## [[4388]]
## [1] " the"
## 
## [[4389]]
## character(0)
## 
## [[4390]]
## [1] " the"
## 
## [[4391]]
## [1] " the"
## 
## [[4392]]
## [1] " the"
## 
## [[4393]]
## [1] " the" " the"
## 
## [[4394]]
## [1] " the" " the"
## 
## [[4395]]
## [1] " the"
## 
## [[4396]]
## [1] " the"
## 
## [[4397]]
## [1] " the"
## 
## [[4398]]
## character(0)
## 
## [[4399]]
## character(0)
## 
## [[4400]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4401]]
## character(0)
## 
## [[4402]]
## character(0)
## 
## [[4403]]
## character(0)
## 
## [[4404]]
## [1] " the"
## 
## [[4405]]
## [1] " the"
## 
## [[4406]]
## [1] " the"
## 
## [[4407]]
## character(0)
## 
## [[4408]]
## character(0)
## 
## [[4409]]
## [1] " the"
## 
## [[4410]]
## [1] " the" " the" " the"
## 
## [[4411]]
## character(0)
## 
## [[4412]]
## character(0)
## 
## [[4413]]
## character(0)
## 
## [[4414]]
## [1] " the" " the" " the"
## 
## [[4415]]
## [1] " the" " the"
## 
## [[4416]]
## [1] " the"
## 
## [[4417]]
## character(0)
## 
## [[4418]]
## character(0)
## 
## [[4419]]
## character(0)
## 
## [[4420]]
## [1] " the"
## 
## [[4421]]
## character(0)
## 
## [[4422]]
## [1] " the"
## 
## [[4423]]
## character(0)
## 
## [[4424]]
## character(0)
## 
## [[4425]]
## [1] " the" " the" " the" " the"
## 
## [[4426]]
## [1] " the"
## 
## [[4427]]
## [1] " the" " the"
## 
## [[4428]]
## [1] " the"
## 
## [[4429]]
## [1] " the"
## 
## [[4430]]
## [1] " the" " the"
## 
## [[4431]]
## [1] " the"
## 
## [[4432]]
## [1] " the" " the"
## 
## [[4433]]
## character(0)
## 
## [[4434]]
## character(0)
## 
## [[4435]]
## [1] " the" " the"
## 
## [[4436]]
## character(0)
## 
## [[4437]]
## [1] " the"
## 
## [[4438]]
## character(0)
## 
## [[4439]]
## character(0)
## 
## [[4440]]
## [1] " the" " the"
## 
## [[4441]]
## [1] " the" " the"
## 
## [[4442]]
## character(0)
## 
## [[4443]]
## [1] " the" " the" " the"
## 
## [[4444]]
## character(0)
## 
## [[4445]]
## character(0)
## 
## [[4446]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4447]]
## character(0)
## 
## [[4448]]
## [1] " the"
## 
## [[4449]]
## [1] " the" " the"
## 
## [[4450]]
## character(0)
## 
## [[4451]]
## [1] " the"
## 
## [[4452]]
## [1] " the"
## 
## [[4453]]
## character(0)
## 
## [[4454]]
## character(0)
## 
## [[4455]]
## [1] " the"
## 
## [[4456]]
## character(0)
## 
## [[4457]]
## [1] " the" " the"
## 
## [[4458]]
## [1] " the" " the" " the"
## 
## [[4459]]
## character(0)
## 
## [[4460]]
## character(0)
## 
## [[4461]]
## character(0)
## 
## [[4462]]
## [1] " the" " the" " the" " the"
## 
## [[4463]]
## [1] " the" " the"
## 
## [[4464]]
## character(0)
## 
## [[4465]]
## [1] " the"
## 
## [[4466]]
## [1] " the"
## 
## [[4467]]
## [1] " the"
## 
## [[4468]]
## [1] " the" " the"
## 
## [[4469]]
## [1] " the" " the"
## 
## [[4470]]
## [1] " the"
## 
## [[4471]]
## character(0)
## 
## [[4472]]
## [1] " the"
## 
## [[4473]]
## character(0)
## 
## [[4474]]
## [1] " the"
## 
## [[4475]]
## character(0)
## 
## [[4476]]
## character(0)
## 
## [[4477]]
## character(0)
## 
## [[4478]]
## character(0)
## 
## [[4479]]
## [1] " the" " the"
## 
## [[4480]]
## character(0)
## 
## [[4481]]
## character(0)
## 
## [[4482]]
## [1] " the"
## 
## [[4483]]
## [1] " tre" " the"
## 
## [[4484]]
## character(0)
## 
## [[4485]]
## [1] " the" " the" " the" " the"
## 
## [[4486]]
## [1] " the" " the"
## 
## [[4487]]
## character(0)
## 
## [[4488]]
## character(0)
## 
## [[4489]]
## [1] " the" " the" " the" " the"
## 
## [[4490]]
## [1] " the" " the"
## 
## [[4491]]
## [1] " the"
## 
## [[4492]]
## character(0)
## 
## [[4493]]
## [1] " the"
## 
## [[4494]]
## [1] " the" " the" " tre" " the" " the"
## 
## [[4495]]
## [1] " the" " the"
## 
## [[4496]]
## character(0)
## 
## [[4497]]
## [1] " the"
## 
## [[4498]]
## [1] " the" " the" " the" " the"
## 
## [[4499]]
## character(0)
## 
## [[4500]]
## [1] " the"
## 
## [[4501]]
## character(0)
## 
## [[4502]]
## character(0)
## 
## [[4503]]
## character(0)
## 
## [[4504]]
## [1] " the"
## 
## [[4505]]
## [1] " the"
## 
## [[4506]]
## [1] " the"
## 
## [[4507]]
## [1] " the"
## 
## [[4508]]
## character(0)
## 
## [[4509]]
## [1] " the" " tre"
## 
## [[4510]]
## character(0)
## 
## [[4511]]
## [1] " the" " the" " the"
## 
## [[4512]]
## character(0)
## 
## [[4513]]
## character(0)
## 
## [[4514]]
## [1] " the" " the" " the"
## 
## [[4515]]
## [1] " the"
## 
## [[4516]]
## character(0)
## 
## [[4517]]
## character(0)
## 
## [[4518]]
## [1] " the"
## 
## [[4519]]
## [1] " the"
## 
## [[4520]]
## character(0)
## 
## [[4521]]
## [1] " the"
## 
## [[4522]]
## character(0)
## 
## [[4523]]
## [1] " the" " the" " the"
## 
## [[4524]]
## [1] " the" " the" " the"
## 
## [[4525]]
## [1] " the"
## 
## [[4526]]
## character(0)
## 
## [[4527]]
## character(0)
## 
## [[4528]]
## character(0)
## 
## [[4529]]
## [1] " the" " the"
## 
## [[4530]]
## character(0)
## 
## [[4531]]
## character(0)
## 
## [[4532]]
## character(0)
## 
## [[4533]]
## character(0)
## 
## [[4534]]
## [1] " the"
## 
## [[4535]]
## [1] " the" " the"
## 
## [[4536]]
## character(0)
## 
## [[4537]]
## [1] " the"
## 
## [[4538]]
## [1] " the"
## 
## [[4539]]
## [1] " the" " the"
## 
## [[4540]]
## character(0)
## 
## [[4541]]
## [1] " the"
## 
## [[4542]]
## [1] " the"
## 
## [[4543]]
## character(0)
## 
## [[4544]]
## [1] " the" " the"
## 
## [[4545]]
## [1] " tre"
## 
## [[4546]]
## character(0)
## 
## [[4547]]
## character(0)
## 
## [[4548]]
## [1] " the" " the" " the" " the"
## 
## [[4549]]
## character(0)
## 
## [[4550]]
## character(0)
## 
## [[4551]]
## character(0)
## 
## [[4552]]
## character(0)
## 
## [[4553]]
## [1] " the" " the"
## 
## [[4554]]
## [1] " the"
## 
## [[4555]]
## character(0)
## 
## [[4556]]
## [1] " the"
## 
## [[4557]]
## [1] " the"
## 
## [[4558]]
## [1] " the"
## 
## [[4559]]
## [1] " the"
## 
## [[4560]]
## [1] " the"
## 
## [[4561]]
## character(0)
## 
## [[4562]]
## [1] " the" " the"
## 
## [[4563]]
## character(0)
## 
## [[4564]]
## [1] " the"
## 
## [[4565]]
## [1] " the" " the" " the" " the"
## 
## [[4566]]
## [1] " the" " the" " the"
## 
## [[4567]]
## [1] " the"
## 
## [[4568]]
## [1] " the"
## 
## [[4569]]
## [1] " the"
## 
## [[4570]]
## character(0)
## 
## [[4571]]
## character(0)
## 
## [[4572]]
## [1] " the" " the"
## 
## [[4573]]
## [1] " the"
## 
## [[4574]]
## [1] " the" " the"
## 
## [[4575]]
## [1] " the"
## 
## [[4576]]
## [1] " the" " the" " the"
## 
## [[4577]]
## character(0)
## 
## [[4578]]
## [1] " the" " the" " the" " the"
## 
## [[4579]]
## [1] " the" " the"
## 
## [[4580]]
## [1] " the" " the"
## 
## [[4581]]
## [1] " the" " the" " the" " the"
## 
## [[4582]]
## [1] " the" " the" " the"
## 
## [[4583]]
## [1] " the" " the"
## 
## [[4584]]
## character(0)
## 
## [[4585]]
## character(0)
## 
## [[4586]]
## character(0)
## 
## [[4587]]
## [1] " the" " the" " the"
## 
## [[4588]]
## character(0)
## 
## [[4589]]
## [1] " the"
## 
## [[4590]]
## character(0)
## 
## [[4591]]
## character(0)
## 
## [[4592]]
## character(0)
## 
## [[4593]]
## [1] " the" " the"
## 
## [[4594]]
## [1] " the"
## 
## [[4595]]
## character(0)
## 
## [[4596]]
## [1] " the"
## 
## [[4597]]
## [1] " the" " the"
## 
## [[4598]]
## [1] " the" " the"
## 
## [[4599]]
## [1] " the" " the" " the" " the"
## 
## [[4600]]
## character(0)
## 
## [[4601]]
## character(0)
## 
## [[4602]]
## [1] " the"
## 
## [[4603]]
## [1] " the" " the" " the"
## 
## [[4604]]
## [1] " the" " the"
## 
## [[4605]]
## [1] " the" " the"
## 
## [[4606]]
## [1] " the"
## 
## [[4607]]
## [1] " the"
## 
## [[4608]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4609]]
## [1] " the" " the"
## 
## [[4610]]
## [1] " the"
## 
## [[4611]]
## character(0)
## 
## [[4612]]
## [1] " the" " the"
## 
## [[4613]]
## [1] " the"
## 
## [[4614]]
## character(0)
## 
## [[4615]]
## character(0)
## 
## [[4616]]
## character(0)
## 
## [[4617]]
## character(0)
## 
## [[4618]]
## [1] " the"
## 
## [[4619]]
## character(0)
## 
## [[4620]]
## character(0)
## 
## [[4621]]
## [1] " the" " the" " the" " the"
## 
## [[4622]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[4623]]
## [1] " the"
## 
## [[4624]]
## [1] " the" " the"
## 
## [[4625]]
## character(0)
## 
## [[4626]]
## [1] " the"
## 
## [[4627]]
## [1] " the" " the" " the"
## 
## [[4628]]
## [1] " the" " the" " the"
## 
## [[4629]]
## character(0)
## 
## [[4630]]
## [1] " the"
## 
## [[4631]]
## [1] " the"
## 
## [[4632]]
## character(0)
## 
## [[4633]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4634]]
## [1] " the"
## 
## [[4635]]
## [1] " the"
## 
## [[4636]]
## character(0)
## 
## [[4637]]
## [1] " the" " the"
## 
## [[4638]]
## [1] " the" " the" " the"
## 
## [[4639]]
## [1] " the" " the"
## 
## [[4640]]
## [1] " the" " the"
## 
## [[4641]]
## character(0)
## 
## [[4642]]
## [1] " the"
## 
## [[4643]]
## character(0)
## 
## [[4644]]
## [1] " the" " the"
## 
## [[4645]]
## [1] " tee" " tre"
## 
## [[4646]]
## [1] " the"
## 
## [[4647]]
## [1] " the" " the"
## 
## [[4648]]
## [1] " the" " the"
## 
## [[4649]]
## [1] " the"
## 
## [[4650]]
## [1] " the" " the"
## 
## [[4651]]
## [1] " the"
## 
## [[4652]]
## [1] " the"
## 
## [[4653]]
## [1] " the"
## 
## [[4654]]
## character(0)
## 
## [[4655]]
## character(0)
## 
## [[4656]]
## character(0)
## 
## [[4657]]
## [1] " the"
## 
## [[4658]]
## [1] " the"
## 
## [[4659]]
## [1] " the" " the" " the"
## 
## [[4660]]
## [1] " the" " the" " the" " the"
## 
## [[4661]]
## [1] " the"
## 
## [[4662]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4663]]
## character(0)
## 
## [[4664]]
## [1] " the"
## 
## [[4665]]
## character(0)
## 
## [[4666]]
## character(0)
## 
## [[4667]]
## [1] " tre" " the"
## 
## [[4668]]
## [1] " the"
## 
## [[4669]]
## character(0)
## 
## [[4670]]
## character(0)
## 
## [[4671]]
## [1] " the"
## 
## [[4672]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4673]]
## [1] " the"
## 
## [[4674]]
## character(0)
## 
## [[4675]]
## character(0)
## 
## [[4676]]
## character(0)
## 
## [[4677]]
## [1] " the"
## 
## [[4678]]
## character(0)
## 
## [[4679]]
## character(0)
## 
## [[4680]]
## character(0)
## 
## [[4681]]
## [1] " the"
## 
## [[4682]]
## character(0)
## 
## [[4683]]
## character(0)
## 
## [[4684]]
## [1] " the"
## 
## [[4685]]
## character(0)
## 
## [[4686]]
## [1] " the"
## 
## [[4687]]
## character(0)
## 
## [[4688]]
## [1] " the"
## 
## [[4689]]
## character(0)
## 
## [[4690]]
## character(0)
## 
## [[4691]]
## [1] " the" " the"
## 
## [[4692]]
## [1] " the" " the"
## 
## [[4693]]
## character(0)
## 
## [[4694]]
## character(0)
## 
## [[4695]]
## [1] " the"
## 
## [[4696]]
## character(0)
## 
## [[4697]]
## character(0)
## 
## [[4698]]
## [1] " the" " the"
## 
## [[4699]]
## character(0)
## 
## [[4700]]
## [1] " the"
## 
## [[4701]]
## character(0)
## 
## [[4702]]
## character(0)
## 
## [[4703]]
## character(0)
## 
## [[4704]]
## character(0)
## 
## [[4705]]
## [1] " the" " the" " the"
## 
## [[4706]]
## character(0)
## 
## [[4707]]
## [1] " the"
## 
## [[4708]]
## [1] " the"
## 
## [[4709]]
## character(0)
## 
## [[4710]]
## character(0)
## 
## [[4711]]
## [1] " the"
## 
## [[4712]]
## character(0)
## 
## [[4713]]
## character(0)
## 
## [[4714]]
## [1] " the"
## 
## [[4715]]
## [1] " the"
## 
## [[4716]]
## [1] " the"
## 
## [[4717]]
## character(0)
## 
## [[4718]]
## [1] " the"
## 
## [[4719]]
## character(0)
## 
## [[4720]]
## character(0)
## 
## [[4721]]
## [1] " the"
## 
## [[4722]]
## [1] " the" " the" " the"
## 
## [[4723]]
## [1] " the" " tre" " the" " the"
## 
## [[4724]]
## [1] " the" " the"
## 
## [[4725]]
## character(0)
## 
## [[4726]]
## character(0)
## 
## [[4727]]
## character(0)
## 
## [[4728]]
## [1] " the" " the" " the" " the"
## 
## [[4729]]
## character(0)
## 
## [[4730]]
## character(0)
## 
## [[4731]]
## character(0)
## 
## [[4732]]
## [1] " the"
## 
## [[4733]]
## [1] " the" " the"
## 
## [[4734]]
## [1] " the" " the" " the"
## 
## [[4735]]
## [1] " the"
## 
## [[4736]]
## [1] " the"
## 
## [[4737]]
## [1] " the"
## 
## [[4738]]
## [1] " the"
## 
## [[4739]]
## character(0)
## 
## [[4740]]
## [1] " the"
## 
## [[4741]]
## [1] " the"
## 
## [[4742]]
## [1] " the"
## 
## [[4743]]
## character(0)
## 
## [[4744]]
## [1] " the"
## 
## [[4745]]
## [1] " the" " the"
## 
## [[4746]]
## [1] " the" " the"
## 
## [[4747]]
## [1] " the" " the"
## 
## [[4748]]
## [1] " the" " the" " the"
## 
## [[4749]]
## [1] " the" " the" " the" " the"
## 
## [[4750]]
## [1] " the" " the"
## 
## [[4751]]
## [1] " the" " the" " the"
## 
## [[4752]]
## character(0)
## 
## [[4753]]
## character(0)
## 
## [[4754]]
## character(0)
## 
## [[4755]]
## [1] " the" " the" " the"
## 
## [[4756]]
## character(0)
## 
## [[4757]]
## [1] " the" " the"
## 
## [[4758]]
## [1] " the"
## 
## [[4759]]
## character(0)
## 
## [[4760]]
## [1] " tie"
## 
## [[4761]]
## [1] " the" " the"
## 
## [[4762]]
## character(0)
## 
## [[4763]]
## character(0)
## 
## [[4764]]
## [1] " the"
## 
## [[4765]]
## character(0)
## 
## [[4766]]
## [1] " the" " the"
## 
## [[4767]]
## [1] " the" " the"
## 
## [[4768]]
## character(0)
## 
## [[4769]]
## [1] " the"
## 
## [[4770]]
## character(0)
## 
## [[4771]]
## character(0)
## 
## [[4772]]
## [1] " the" " the"
## 
## [[4773]]
## [1] " the" " the" " the" " the"
## 
## [[4774]]
## [1] " the" " the" " the"
## 
## [[4775]]
## [1] " the" " the" " the"
## 
## [[4776]]
## [1] " the"
## 
## [[4777]]
## [1] " the" " tie" " the"
## 
## [[4778]]
## [1] " the"
## 
## [[4779]]
## [1] " the"
## 
## [[4780]]
## [1] " the"
## 
## [[4781]]
## [1] " the"
## 
## [[4782]]
## [1] " the"
## 
## [[4783]]
## [1] " the" " the"
## 
## [[4784]]
## character(0)
## 
## [[4785]]
## character(0)
## 
## [[4786]]
## character(0)
## 
## [[4787]]
## character(0)
## 
## [[4788]]
## [1] " the" " the" " the" " the"
## 
## [[4789]]
## [1] " the"
## 
## [[4790]]
## [1] " the" " the" " the" " the"
## 
## [[4791]]
## [1] " the"
## 
## [[4792]]
## character(0)
## 
## [[4793]]
## character(0)
## 
## [[4794]]
## character(0)
## 
## [[4795]]
## [1] " the"
## 
## [[4796]]
## [1] " the"
## 
## [[4797]]
## [1] " the" " the" " the"
## 
## [[4798]]
## [1] " the"
## 
## [[4799]]
## [1] " the"
## 
## [[4800]]
## character(0)
## 
## [[4801]]
## [1] " the" " the"
## 
## [[4802]]
## [1] " the" " the"
## 
## [[4803]]
## character(0)
## 
## [[4804]]
## [1] " the"
## 
## [[4805]]
## [1] " the" " the" " the"
## 
## [[4806]]
## character(0)
## 
## [[4807]]
## character(0)
## 
## [[4808]]
## character(0)
## 
## [[4809]]
## [1] " the" " the"
## 
## [[4810]]
## character(0)
## 
## [[4811]]
## character(0)
## 
## [[4812]]
## character(0)
## 
## [[4813]]
## [1] " the" " the"
## 
## [[4814]]
## character(0)
## 
## [[4815]]
## [1] " the"
## 
## [[4816]]
## [1] " the"
## 
## [[4817]]
## [1] " the"
## 
## [[4818]]
## [1] " the"
## 
## [[4819]]
## character(0)
## 
## [[4820]]
## character(0)
## 
## [[4821]]
## [1] " the" " the"
## 
## [[4822]]
## [1] " the" " the" " the" " the" " the"
## 
## [[4823]]
## [1] " the" " the"
## 
## [[4824]]
## [1] " the" " the" " the"
## 
## [[4825]]
## character(0)
## 
## [[4826]]
## [1] " the" " the"
## 
## [[4827]]
## [1] " the" " the" " the"
## 
## [[4828]]
## character(0)
## 
## [[4829]]
## character(0)
## 
## [[4830]]
## [1] " the"
## 
## [[4831]]
## [1] " the" " the" " the"
## 
## [[4832]]
## character(0)
## 
## [[4833]]
## character(0)
## 
## [[4834]]
## [1] " the"
## 
## [[4835]]
## [1] " the"
## 
## [[4836]]
## character(0)
## 
## [[4837]]
## [1] " the"
## 
## [[4838]]
## [1] " the"
## 
## [[4839]]
## character(0)
## 
## [[4840]]
## character(0)
## 
## [[4841]]
## [1] " the"
## 
## [[4842]]
## [1] " the"
## 
## [[4843]]
## [1] " the"
## 
## [[4844]]
## character(0)
## 
## [[4845]]
## character(0)
## 
## [[4846]]
## [1] " the"
## 
## [[4847]]
## character(0)
## 
## [[4848]]
## [1] " the"
## 
## [[4849]]
## character(0)
## 
## [[4850]]
## character(0)
## 
## [[4851]]
## character(0)
## 
## [[4852]]
## character(0)
## 
## [[4853]]
## character(0)
## 
## [[4854]]
## [1] " the"
## 
## [[4855]]
## [1] " the"
## 
## [[4856]]
## [1] " the" " the" " the"
## 
## [[4857]]
## character(0)
## 
## [[4858]]
## [1] " the"
## 
## [[4859]]
## [1] " the"
## 
## [[4860]]
## character(0)
## 
## [[4861]]
## [1] " the" " the" " the" " tre"
## 
## [[4862]]
## character(0)
## 
## [[4863]]
## [1] " the"
## 
## [[4864]]
## character(0)
## 
## [[4865]]
## [1] " the" " the"
## 
## [[4866]]
## [1] " the" " the" " the"
## 
## [[4867]]
## character(0)
## 
## [[4868]]
## character(0)
## 
## [[4869]]
## [1] " the" " the"
## 
## [[4870]]
## [1] " the" " the" " the"
## 
## [[4871]]
## [1] " the" " the"
## 
## [[4872]]
## [1] " the"
## 
## [[4873]]
## character(0)
## 
## [[4874]]
## character(0)
## 
## [[4875]]
## [1] " the" " the" " the" " the"
## 
## [[4876]]
## [1] " the" " the"
## 
## [[4877]]
## character(0)
## 
## [[4878]]
## [1] " the"
## 
## [[4879]]
## character(0)
## 
## [[4880]]
## character(0)
## 
## [[4881]]
## [1] " the" " the"
## 
## [[4882]]
## [1] " the" " the"
## 
## [[4883]]
## [1] " the" " the" " the"
## 
## [[4884]]
## [1] " tre" " the"
## 
## [[4885]]
## character(0)
## 
## [[4886]]
## character(0)
## 
## [[4887]]
## [1] " the" " the"
## 
## [[4888]]
## character(0)
## 
## [[4889]]
## [1] " the"
## 
## [[4890]]
## [1] " the"
## 
## [[4891]]
## [1] " the"
## 
## [[4892]]
## [1] " the" " the" " the" " the"
## 
## [[4893]]
## character(0)
## 
## [[4894]]
## character(0)
## 
## [[4895]]
## [1] " the" " the"
## 
## [[4896]]
## character(0)
## 
## [[4897]]
## [1] " the"
## 
## [[4898]]
## [1] " the"
## 
## [[4899]]
## character(0)
## 
## [[4900]]
## [1] " the"
## 
## [[4901]]
## character(0)
## 
## [[4902]]
## character(0)
## 
## [[4903]]
## character(0)
## 
## [[4904]]
## character(0)
## 
## [[4905]]
## [1] " tee"
## 
## [[4906]]
## [1] " the" " the" " the" " the"
## 
## [[4907]]
## character(0)
## 
## [[4908]]
## character(0)
## 
## [[4909]]
## character(0)
## 
## [[4910]]
## character(0)
## 
## [[4911]]
## character(0)
## 
## [[4912]]
## character(0)
## 
## [[4913]]
## [1] " the" " the"
## 
## [[4914]]
## character(0)
## 
## [[4915]]
## [1] " the" " the"
## 
## [[4916]]
## character(0)
## 
## [[4917]]
## character(0)
## 
## [[4918]]
## character(0)
## 
## [[4919]]
## [1] " the"
## 
## [[4920]]
## [1] " the"
## 
## [[4921]]
## [1] " the" " the"
## 
## [[4922]]
## [1] " the"
## 
## [[4923]]
## character(0)
## 
## [[4924]]
## character(0)
## 
## [[4925]]
## [1] " the" " the" " the"
## 
## [[4926]]
## [1] " the" " toe" " the"
## 
## [[4927]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[4928]]
## character(0)
## 
## [[4929]]
## [1] " the"
## 
## [[4930]]
## character(0)
## 
## [[4931]]
## character(0)
## 
## [[4932]]
## [1] " the"
## 
## [[4933]]
## [1] " the"
## 
## [[4934]]
## character(0)
## 
## [[4935]]
## [1] " twe" " the" " the" " the" " the" " the"
## 
## [[4936]]
## character(0)
## 
## [[4937]]
## [1] " the" " the" " the"
## 
## [[4938]]
## [1] " the"
## 
## [[4939]]
## character(0)
## 
## [[4940]]
## [1] " the" " the" " the"
## 
## [[4941]]
## character(0)
## 
## [[4942]]
## [1] " the"
## 
## [[4943]]
## [1] " the" " the" " the"
## 
## [[4944]]
## character(0)
## 
## [[4945]]
## [1] " the"
## 
## [[4946]]
## [1] " the"
## 
## [[4947]]
## [1] " the"
## 
## [[4948]]
## [1] " the"
## 
## [[4949]]
## [1] " the" " the" " the"
## 
## [[4950]]
## character(0)
## 
## [[4951]]
## [1] " the"
## 
## [[4952]]
## character(0)
## 
## [[4953]]
## character(0)
## 
## [[4954]]
## character(0)
## 
## [[4955]]
## character(0)
## 
## [[4956]]
## [1] " the" " the" " the" " the"
## 
## [[4957]]
## character(0)
## 
## [[4958]]
## character(0)
## 
## [[4959]]
## [1] " the" " the"
## 
## [[4960]]
## [1] " the" " the"
## 
## [[4961]]
## [1] " the" " the"
## 
## [[4962]]
## [1] " the" " the"
## 
## [[4963]]
## character(0)
## 
## [[4964]]
## [1] " the" " the"
## 
## [[4965]]
## character(0)
## 
## [[4966]]
## character(0)
## 
## [[4967]]
## character(0)
## 
## [[4968]]
## character(0)
## 
## [[4969]]
## character(0)
## 
## [[4970]]
## character(0)
## 
## [[4971]]
## character(0)
## 
## [[4972]]
## character(0)
## 
## [[4973]]
## [1] " the" " the"
## 
## [[4974]]
## character(0)
## 
## [[4975]]
## character(0)
## 
## [[4976]]
## [1] " the"
## 
## [[4977]]
## [1] " the"
## 
## [[4978]]
## [1] " the"
## 
## [[4979]]
## [1] " the"
## 
## [[4980]]
## character(0)
## 
## [[4981]]
## character(0)
## 
## [[4982]]
## [1] " the"
## 
## [[4983]]
## character(0)
## 
## [[4984]]
## [1] " the"
## 
## [[4985]]
## [1] " the"
## 
## [[4986]]
## [1] " the" " the" " the"
## 
## [[4987]]
## [1] " the" " the" " the" " the" " the" " the"
## 
## [[4988]]
## [1] " the"
## 
## [[4989]]
## character(0)
## 
## [[4990]]
## [1] " the"
## 
## [[4991]]
## [1] " the"
## 
## [[4992]]
## character(0)
## 
## [[4993]]
## character(0)
## 
## [[4994]]
## [1] " the"
## 
## [[4995]]
## character(0)
## 
## [[4996]]
## [1] " the" " the"
## 
## [[4997]]
## character(0)
## 
## [[4998]]
## [1] " the"
## 
## [[4999]]
## [1] " the" " the"
## 
## [[5000]]
## character(0)

와일드 메타 문자는 정규 표현식에서 가장 많이 사용되는 메타 문자 중 하나이지만 많은 실수의 이유가 되기도 합니다. 예를 들어, "e.g"와 일치하는 정규 표현식을 만들고 싶다고 가정해봅시다. 이 패턴은 “e.g”뿐만 아니라, “eng”, “e g”, “e-g”와도 일치할 수 있습니다.

왜?

왜냐하면 "."은 모든 것과 일치하는 메타 문자이기 때문입니다.

메타 문자 이스케이프

그렇다면 메타 문자 대신 리터럴 문자로서의 마침표를 찾아내고 매칭시킬 수 있을까요? 예를 들어, 다음과 같은 문자열 벡터가 있다고 가정해 봅시다.

dot_words <- c("e.g", "eng", "e  g", "e-g")

패턴 "e.g"를 사용하면, dot_words에 있는 모든 요소와 일치합니다.

str_extract_all(dot_words, "e.g")
## [[1]]
## [1] "e.g"
## 
## [[2]]
## [1] "eng"
## 
## [[3]]
## character(0)
## 
## [[4]]
## [1] "e-g"

따라서 리터럴 문자인 마침표와 매칭시키려면, 메타 문자를 이스케이프 처리해야 합니다.

대부분의 프로그래밍 언어에서 메타 문자를 이스케이프하는 방법은 메타 문자 앞에 백 슬래시 문자를 추가하는 것입니다. 메타 문자 앞에 백 슬래시를 붙이면 메타문자로서의 더 이상 특별한 의미를 가지지 않으며 리터럴 문자로서 인식하게 됩니다. 그러나 R은 조금 다릅니다. 단일 백슬래시를 넣는 것이 아니라 2개의 백 슬래시를 넣어야 합니다. : "e\\.g". 단일 백 슬래시 "\"가 R에서는 메타 문자로 다른 의미를 가지기 때문입니다.

str_extract_all(dot_words, "e\\.g")
## [[1]]
## [1] "e.g"
## 
## [[2]]
## character(0)
## 
## [[3]]
## character(0)
## 
## [[4]]
## character(0)

퀴즈

위키피디아 텍스트의 문자열 벡터 객체인 covid19_tw_sample$text에서 리터럴 문자,“a”,로 시작되는 세 글자 요소들을 모두 찾아내어 추출한 후, 각 요소의 등장 빈도수를 보여주는 명령어는 다음 중 무엇입니까?

  1. table(unlist(str_extract_all(covid19_tw_sample$text, "a..")))
  2. table(unlist(str_extract_all(covid19_tw_sample$text, "a ")))
  3. table(str_extract_all(covid19_tw_sample$text, "a.."))
  4. table(unlist(str_extract_all(covid19_tw_sample$text, "a\\.\\.")))
  5. table(str_extract_all(covid19_tw_sample$text, "a\\.\\."))

정규 표현식 연습

지금까지 메타 문자를 이스케이프 (탈출)하여 리터럴 문자로서 매칭하는 방법에 대해 학습하였습니다. 이제부터는 문자 집합을 정의하는데에 사용되는 메타 문자인 대괄호 []에 대해 알아보도록 하겠습니다.

가령, 우리가 “t”로 시작되어 “e”로 끝나는 세글자 단어 모두를 찾아내서 지워주고 싶다고 가정해 봅시다. 이 경우 우리는 중간에 올 수 있는 모든 알파벳 경우를 가정해서 단어 집합으로 구성된 정규 표현을 이용해 줄 수 있습니다. 하지만, 그러나 이러한 방식으로 우리가 원하는 모든 문자를 매칭하는 것은 매우 소모적인 일일 것입니다. 이 경우에 우리는 문자 그 자체와 일치하지는 않지만 원하는 문자들의 범위를 지정해주는 방법으로 패턴을 매칭하는 방법을 택할 수 있습니다.

문자 집합

문자 집합은 집합 안에 있는 다양한 문자 중 하나와 일치합니다. 즉, "[abc]"라는 표현은 문자 “a”, “b”, “c” 중 어떤 것과도 매칭됩니다. 여기서 대괄호 []는 문자 집합을 정의하는 표현입니다.

문자 집합 내의 문자 순서는 중요하지 않습니다. 중요한 것은 대괄호 안에 있는 문자의 종류입니다. 따라서 문자 집합 "[abc]""[cba]"와 같은 기능을 합니다.

문자 집합의 적용

"f[aeiou]n"라는 정규 표현 패턴으로 “fan”, “fin”, “fun”라는 단어 등이 속해있는 문자열 벡터에 매칭해봅시다.

library(stringr)
fns <- c("fan","fen","fin","fon","fun")
unlist(str_extract_all(fns, "f[aeiou]n")) #알파벳 모음 집합
## [1] "fan" "fen" "fin" "fon" "fun"

“f[aeiou]n” 집합은 fns의 모든 요소와 일치합니다. 이제 같은 문자 집합 패턴을 다른 벡터 fnx에 적용해 봅시다.

fnx <- c("fan","fin","fun","f0n","f.n","f1n","fain")
str_extract_all(fnx, "f[aeiou]{2,}n")
## [[1]]
## character(0)
## 
## [[2]]
## character(0)
## 
## [[3]]
## character(0)
## 
## [[4]]
## character(0)
## 
## [[5]]
## character(0)
## 
## [[6]]
## character(0)
## 
## [[7]]
## [1] "fain"

보다시피 fnx 안에 모음 문자가 있는 처음 세 요소만 일치합니다. 그리고 마지막 요소 “fain”은 일치하지 않습니다. 문자 집합은 하나의 문자로서 “a” 또는 “i” 에만 일치하고 “ai”는 매칭하지 않습니다.

문자 범위

위에서 설명한 문자 집합은 찾고자 하는 문자 모두를 지정합니다. 그렇다면 알파벳(대문자 또는 소문자)의 범위 또는 임의의 숫자 범위에 속하는 어떤 문자와도 매칭되는 문자 집합은 어떻게 구성할 수 있을까요?

메타 문자 하이픈을(hyphen) "-" 사용해서 문자 범위를 구성하면 이 문제를 해결할 수 있습니다. 즉, 매칭하고자 하는 문자들의 범위를 하이픈 "-" 기호로 지정하는 것입니다.

이러한 방식으로 다음과 같이 대문자, 소문자, 그리고 숫자 문자 집합을 정의할 수 있습니다.

uppercase <- "[A-Z]"

lowercase <- "[a-z]"

number <- "[0-9]"

*하이픈 기호는 문자 집합 안에 있을 때만 메타 문자입니다. 문자 집합 이외에서 쓰이는 하이픈은 리터럴 문자입니다.

이렇게 문자 범위로 구성된 정규 표현은 매우 유용합니다. 다음의 예를 함께 보실까요.

3개의 문자로 구성된 문자열을 가진 다음의 벡터 객체, triplets,를 상대로 문자 범위로 구성된 정규표현으로 매칭한 결과를 살펴봅시다.

triplets <- c("abc","the","ABC","The","010","070",":~)","^^;","^++++^","+_____+","^^^^^^^^","가나다", "ㄱㄴㄷ", "ㄱ3ㄴㅁ^")
unlist(str_extract_all(triplets, "[a-z][a-z][a-z]")) # 3개의 연속된 소문자 
## [1] "abc" "the"
unlist(str_extract_all(triplets, "[A-Z]{3}")) # 3개의 연속된 대문자 
## [1] "ABC"
unlist(str_extract_all(triplets, "[A-Z][a-z]?")) # 대문자를 먼저 쓰고 그 다음 소문자 1회 이상 
## [1] "A"  "B"  "C"  "Th"
unlist(str_extract_all(triplets, "[0-9]+$")) # 연속된 숫자 1회 이상이고 숫자로 종결
## [1] "010" "070"
unlist(str_extract_all(triplets, "[:~)^;]{3}"))
## [1] ":~)" "^^;" "^^^" "^^^"
unlist(str_extract_all(triplets, "[가-하]{3,}"))
## [1] "가나다"
"[^abc]{3}"
## [1] "[^abc]{3}"

이렇게 문자 범위로 구성된 문자 집합을 이용하면 편리하게 텍스트 패턴을 매칭할 수 있습니다. 하지만, 위의 문자 범위로는 구두점으로 구성된 웃음 표시 ":~)""^^;"를 매칭할 수는 없었네요.

부정 문자 집합

정규 표현식으로 텍스트를 처리할 때, 특정 문자 집합에서 벗어나는 즉, 문자 집합의 일부가 아닌 문자를 찾아내야 하는 상황은 빈번하게 발생합니다. 위키피디아 페이지의 전처리를 예를 들어 볼까요. 이 때 우리는 알파벳 이외의 문자 즉, 한글 또는 한자로 표시된 문자를 매칭해서 지워줘야 할 필요가 있었습니다. 이때 우리는 부정 문자 집합을 사용하여 우리가 원하는 문자 집합에 없는 문자를 찾아낼 수 있습니다. 이 부정 집합은 위해 메타 문자 캐럿 "^"으로 구성할 수 있습니다.

캐럿 "^"은 정규 표현식의 패턴에 하나 이상의 의미를 가지는 메타 문자 중 하나입니다. 그 중, 문자 집합 안의 첫번째 위치에 캐럿을 사용하면 : 예 : "[^a-z]", 다음의 문자 이외의 문자 즉, 부정 기능을 수행합니다. 따라서 알파벳 소문자를 제외한 모든 문자를 매칭합니다.

이렇게 부정 문자 범위를 사용하면 우리는 다음과 같은 "[^a-zA-Z0-9][^a-zA-Z0-9][^a-zA-Z0-9]" 패턴을 정의함으로써 문자와 숫자가 아닌 기호로 표시된 문자열인 웃음 표시 ":~)""^^;"를 매칭할 수 있습니다.

unlist(str_extract_all(triplets, "[^a-zA-Z0-9]{1,}")) # 문자 및 숫자 이외의 문자가 1회 이상 매칭되는 모든 요소
## [1] ":~)"      "^^;"      "^++++^"   "+_____+"  "^^^^^^^^" "가나다"   "ㄱㄴㄷ"  
## [8] "ㄱ"       "ㄴㅁ^"

캐럿은 문자 집합 안에 처음으로 오는 경우에만 부정을 의미하며, 그렇지 않으면 부정 문자 집합이 아닙니다. 가령,

unlist(str_extract_all(triplets, "[a-zA-Z0-9^]+")) # 문자/숫자/캐럿 1회 이상 연결되는 문자열 매칭
##  [1] "abc"      "the"      "ABC"      "The"      "010"      "070"     
##  [7] "^^"       "^"        "^"        "^^^^^^^^" "3"        "^"

이 경우, 패턴 "[a-zA-Z0-9^]"은 부정 집합 "[^a-zA-Z0-9]"과 완전히 다른 “문자 또는 숫자 또는 리터럴 캐럿 문자”를 의미합니다.

문자 집합 안의 메타 문자

지금까지 문자 집합이 무엇인지, 그리고 문자 범위를 정의하는 방법과 부정 문자 집합을 지정하는 방법에 대해 알아보았습니다. 이제 문자 집합 안에 메타 문자를 포함시킬 때 어떤 일이 일어나는지 보겠습니다.

문자 집합을 사용할 경우 첫 번째 위치에 있는 캐럿, 그리고 문자 범위를 지정하는 하이픈, 그리고 문자 집합 기호인 대괄호를 제외하고는, 문자 집합 내의 메타 문자는 리터럴 문자로서 기능합니다! 즉, 문자 집합 안에서는 이중 백 슬래시를 사용하여 이스케이프 처리할 필요가 없습니다.

예를 들어, fnx 문자열 벡터에서 “f” 와 “n” 사이에 위치하는 다양한 문자는 리터럴 문자인 마침표도 포함하죠. 이 때 우리가 “f.n”이라는 문자열을 매칭하기 위해서 구성할 수 있는 정규 표현은 메타문자를 이스케이프하거나 문자집합을 사용하는 것입니다.

unlist(str_extract_all(fnx, "f\\.n")) 
## [1] "f.n"
unlist(str_extract_all(fnx, "f[.]n")) 
## [1] "f.n"

문자 클래스

문자 범위 이외에도 문자 클래스는 특정 문자 집단을 매칭하는데 유용한 정규 표현 구조를 제공합니다. 그리고 문자 클래스의 구성은 이중 백슬래시와 이니셜 문자로 시작합니다. 대부분의 정규 표현식 엔진에서 사용되는 가장 일반적인 문자 클래스는 다음과 같습니다.

문자 일치 같은 표현
\\d 임의의 숫자 [0-9]
\\D 임의의 숫자 이외의 문자 [^0-9]
\\w 밑줄 문자 "_"를 포함하여 영어 단어의 일부로 간주되는 문자 [a-zA-Z0-9_]
\\W 영어 단어의 일부로 간주되지 않는 문자 [^a-zA-Z0-9_]
\\s 공백 문자 [\f\n\r\t\v]
\\S 비공백 문자 [^\f\n\r\t\v]

문자 클래스는 문자 집합을 쉽게 매치하는 메타 문자로 사용할 수 있습니다.

unlist(str_extract_all(triplets, "\\d{3}")) # 3개의 임의의 숫자 연결된 패턴
## [1] "010" "070"
unlist(str_extract_all(triplets, "\\D+")) # 1개 이상 연속된 비 숫자 패턴
##  [1] "abc"      "the"      "ABC"      "The"      ":~)"      "^^;"     
##  [7] "^++++^"   "+_____+"  "^^^^^^^^" "가나다"   "ㄱㄴㄷ"   "ㄱ"      
## [13] "ㄴㅁ^"
unlist(str_extract_all(triplets, "\\w+")) # 1개 이상 연속된 문자/숫자
##  [1] "abc"     "the"     "ABC"     "The"     "010"     "070"     "_____"  
##  [8] "가나다"  "ㄱㄴㄷ"  "ㄱ3ㄴㅁ"
unlist(str_extract_all(triplets, "\\W+")) # 1개 이상 연속된 비문자/숫자
## [1] ":~)"      "^^;"      "^++++^"   "+"        "+"        "^^^^^^^^" "^"
unlist(str_extract_all(triplets, "\\s+")) # 1개 이상 연속된 공백
## character(0)
unlist(str_extract_all(triplets, "\\S+")) # 1개 이상 연속된 비공백 문자
##  [1] "abc"      "the"      "ABC"      "The"      "010"      "070"     
##  [7] ":~)"      "^^;"      "^++++^"   "+_____+"  "^^^^^^^^" "가나다"  
## [13] "ㄱㄴㄷ"   "ㄱ3ㄴㅁ^"

텍스트 사전처리를 하다 보면 텍스트 공백이 다양한 방식의 문자 표현으로 구성되어 있다는 것을 발견하게 될 것입니다. 다음은 공백을 나타내는 문자를 보여주는 표입니다. :

문자 정의
\f 페이지 넘김
\n 줄바꿈
\r 캐리지 리턴
\t
\v 수직 탭

때로는 텍스트에 인쇄되지 않는 공백 문자가 포함됩니다. (\t, \n, \r\n) 그렇기 때문에 모든 공백 문자 유형을 일치시키기 위해 공백 문자 클래스 \\s를 사용해야합니다.

Mac OS는 \n을 사용하는 반면에, Window는 \r\n을 줄 끝 표시로 사용하는 운영체제입니다.

  • 페이지 넘김 \f는 다음 ‘페이지’ 또는 ’섹션’을 구분 기호로 사용하여 아래쪽으로 가는 것을 의미합니다.
  • 캐리지 리턴 \r은 줄의 처음으로 돌아가는 것입니다.

POSIX (Portable Operating System Interface) 문자 클래스

정규 표현식을 구성 방법을 마무리하기 위해 POSIX로 알려진 또 다른 유형의 문자 클래스를 소개합니다. 다음은 R에서 정규표현식 엔진이 지원하는 POSIX 문자 클래스 구조입니다. :

문자 일치 같은 구조
[[:alnum:]] 영숫자 [a-zA-Z0-9]
[[:alpha:]] 알파벳 문자 [a-zA-Z]
[[:digit:]] 숫자 [0-9]
[[:lower:]] 소문자 [a-z]
[[:upper:]] 대문자 [A-Z]
[[:word:]] 단어 (문자, 숫자, 언더스코어) [a-zA-Z0-9_]
[[:blank:]] 공백과 탭 [ \t]
[[:space:]] 모든 공백 문자(줄 바꿈 포함) [ \f\n\r\t\v]
[[:punct:]] 구두점과 기호
[[:graph:]] 공백을 제외한 모든 인쇄 가능한 문자 [:alnum:][:punct:]
[[:print:]] 인쇄 가능한 모든 문자 [:alnum:][:punct:][:space:]
[[:ascii:]] 모든 ASCII 문자 (알파벳)

POSIX 문자 클래스는 여는 대괄호 [, 뒤에 콜론 :, 키워드 뒤에 이어 콜론 :, 닫는 대괄호 ]로 구성됩니다.

R에서 사용하려면 문자 집합 안에 POSIX 클래스를 래핑해야 합니다. 즉, POSIX 클래스를 다른 쌍의 대괄호로 묶어야합니다. POSIX 클래스를 사용하여 triplets라는 문자 벡터의 요소를 매치시켜 봅시다.

triplets
##  [1] "abc"      "the"      "ABC"      "The"      "010"      "070"     
##  [7] ":~)"      "^^;"      "^++++^"   "+_____+"  "^^^^^^^^" "가나다"  
## [13] "ㄱㄴㄷ"   "ㄱ3ㄴㅁ^"
unlist(str_extract_all(triplets, "[^[:ascii:]]+"))
## [1] "가나다" "ㄱㄴㄷ" "ㄱ"     "ㄴㅁ"
unlist(str_extract_all(triplets, "[[:lower:]]+")) # 1개 이상의 연속된 문자
## [1] "abc" "the" "he"
unlist(str_extract_all(triplets, "[[:alpha:]]+"))
## [1] "abc"    "the"    "ABC"    "The"    "가나다" "ㄱㄴㄷ" "ㄱ"     "ㄴㅁ"
unlist(str_extract_all(triplets, "[[:digit:]]{1,3}")) # 1개 이상 3개 이하로 연속된 숫자
## [1] "010" "070" "3"
unlist(str_extract_all(triplets, "[[:punct:]~^]+")) # [:punct:] 리터럴 문자 캐럿 "^" "~"을 매칭하지 않습니다.
## [1] ":~)"      "^^;"      "^"        "^"        "_____"    "^^^^^^^^" "^"
unlist(str_extract_all(triplets, "[[:lower:][:punct:]]")) # 모든 단일 소문자/구두점
##  [1] "a" "b" "c" "t" "h" "e" "h" "e" ":" ")" ";" "_" "_" "_" "_" "_"